/* Page Setup + Mixins */
@import url(reset.css);
* {
  box-sizing: border-box; }

img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */ }

.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

.text-l {
  text-align: left; }

.text-c {
  text-align: center; }

.text-r {
  text-align: right; }

.float-l {
  float: left; }

.float-r {
  float: right; }

/* General Styles */
body {
  font-family: "franklin-gothic-urw", sans-serif;
  color: #3A3A3A;
  background: #f0f0f0; }

a {
  color: #2196F3;
  text-decoration: none;
  -webkit-transition: all 200ms;
  transition: all 200ms; }
  a:hover {
    color: #0a6ebd; }

.button {
  border: 3px solid #2196F3;
  font-size: 1.2rem;
  padding: 10px;
  display: inline-block; }
  .button:hover {
    background: #2196F3;
    color: white; }

header {
  padding: 20px;
  background: white;
  position: relative; }
  @media all and (max-width: 700px) {
    header {
      text-align: center; } }
  @media all and (max-width: 580px) {
    header {
      padding: 20px 10px; } }

.main-language {
  position: absolute;
  top: 30px;
  right: 40px; }
  @media all and (max-width: 580px) {
    .main-language {
      position: static;
      margin-top: 20px; } }
  .main-language li {
    display: inline-block;
    margin-left: 5px; }
    .main-language li.active a {
      color: #aaaaaa;
      border-bottom: 2px solid #aaaaaa; }
    .main-language li a {
      font-weight: bold;
      color: #ddd;
      border-bottom: 2px solid transparent; }
      .main-language li a:hover {
        color: #aaaaaa;
        border-bottom: 2px solid #aaaaaa; }

h1 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.085em; }
  @media all and (max-width: 580px) {
    h1 {
      font-size: 1.2rem; } }
  h1 span {
    letter-spacing: 0.2em; }

h2 {
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media all and (max-width: 700px) {
    h2 {
      font-size: 1.8rem; } }

h3 {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.3; }

main h3 {
  color: #2196F3; }

h4 {
  font-weight: bold;
  font-size: 1.2rem; }

p span {
  color: #2196F3; }

.main-logo {
  display: inline-block;
  border: 4px solid #2196F3; }
  .main-logo:hover {
    border: 4px solid #0a6ebd; }
  .main-logo a {
    display: block;
    padding: 15px; }

.main-nav {
  float: right; }
  @media all and (max-width: 700px) {
    .main-nav {
      float: none; } }
  .main-nav ul {
    margin-top: 50px; }
    @media all and (max-width: 700px) {
      .main-nav ul {
        margin-top: 10px; } }
    .main-nav ul li {
      display: inline-block; }
      .main-nav ul li.current-menu-item a, .main-nav ul li a:hover {
        border-bottom: 2px solid #0a6ebd;
        color: #0a6ebd; }
      .main-nav ul li a {
        display: block;
        font-weight: bold;
        padding: 10px 20px;
        border-bottom: 2px solid transparent; }

.home-banner {
  background-size: cover !important;
  text-align: center;
  color: white;
  position: relative;
  height: 0;
  padding-bottom: 50%; }
  .home-banner a {
    color: white; }
  @media all and (min-width: 1400px) {
    .home-banner {
      height: 700px;
      padding-bottom: 0; } }
  @media all and (max-width: 700px) {
    .home-banner {
      padding-bottom: 80%; } }
  .home-banner:after {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0a6ebd;
    opacity: 0.5; }
  .home-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 10; }
    @media all and (max-width: 580px) {
      .home-banner .banner-content {
        width: 80%; } }

.scroll-more {
  display: inline-block;
  margin-top: 30px; }
  .scroll-more a {
    font-size: 1.3em;
    padding: 5px 0;
    border-bottom: 2px solid transparent; }
    .scroll-more a:hover {
      border-bottom: 2px solid white; }

main {
  padding: 100px 0;
  line-height: 1.5; }
  main h1, main h2, main h5, main h6, main p, main ul, main ol, main aside, main blockquote {
    padding-bottom: 15px; }
  main h3 {
    padding-bottom: 5px; }
  main ul {
    list-style: disc;
    margin-left: 20px; }
  @media all and (max-width: 700px) {
    main {
      padding: 50px 0; } }

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 30px; }
  @media all and (max-width: 700px) {
    .inner {
      padding: 30px; } }
  @media all and (max-width: 580px) {
    .inner {
      padding: 30px 10px; } }

.two-col {
  width: 50%;
  float: left;
  display: block; }
  .two-col:nth-child(2n) {
    padding-left: 30px; }
  @media all and (max-width: 700px) {
    .two-col {
      width: 100%;
      margin-bottom: 40px;
      padding: 0 !important; } }

.about-photo {
  max-width: 100%;
  margin: 20px 0; }

hr {
  outline: 0;
  border: 0;
  height: 1px;
  margin: 20px 0;
  background: #999; }

footer {
  background: #3A3A3A;
  text-align: center;
  padding: 20px 0 40px 0;
  color: white;
  font-size: 0.9em;
  line-height: 1.5;
  position: relative; }
  footer .language-switcher {
    margin-bottom: 0px;
    position: absolute;
    bottom: 20px;
    right: 20px; }
  footer a {
    color: white; }
    footer a:hover {
      color: #2196F3; }

.footer-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px; }
  .footer-inner .two-col:nth-of-type(1) {
    text-align: left; }
    @media all and (max-width: 700px) {
      .footer-inner .two-col:nth-of-type(1) {
        text-align: center; } }
  .footer-inner .two-col:nth-of-type(2) {
    text-align: right; }
    @media all and (max-width: 700px) {
      .footer-inner .two-col:nth-of-type(2) {
        text-align: center; } }

.language-switcher li {
  display: inline-block;
  margin: 0 0 0 5px; }
.language-switcher li a {
  color: #757575; }
  .language-switcher li a:hover {
    color: white; }
.language-switcher li.active a {
  color: #fff; }

.footer-nav li.current-menu-item a {
  color: #2196F3; }

.footer-copy {
  margin-top: 30px;
  color: #828282;
  font-size: 0.9em; }
  .footer-copy a {
    color: #828282; }
    .footer-copy a:hover {
      color: white; }

.services-container .service-block {
  background: #fff;
  margin-bottom: 20px; }
  .services-container .service-block > .cf {
    padding: 20px; }
  .services-container .service-block h3 {
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    color: white;
    font-size: 30px; }
    @media all and (max-width: 768px) {
      .services-container .service-block h3 {
        font-size: 18px; } }
  .services-container .service-block .service-title {
    height: 0;
    padding-bottom: 50%;
    background-size: cover !important;
    position: relative; }
    @media all and (max-width: 768px) {
      .services-container .service-block .service-title {
        padding-bottom: 70%; } }
    .services-container .service-block .service-title:after {
      content: "";
      position: absolute;
      z-index: 5;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: #0a6ebd;
      opacity: 0.3; }
    .services-container .service-block .service-title h3 {
      position: absolute;
      z-index: 10;
      top: 50%;
      left: 20px;
      width: calc(100% - 40px); }

b, strong {
  font-weight: bold; }

i, em {
  font-style: italic; }

.contact-form {
  background: white;
  padding: 20px; }
  .contact-form form {
    border-right: 2px solid #ddd;
    padding-right: 20px; }

input[type="text"], input[type="email"], textarea {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 0;
  outline: 0;
  margin-bottom: 10px;
  border: 2px solid #e6e6e6;
  padding: 10px;
  font-size: 20px;
  font-family: "franklin-gothic-urw", sans-serif; }
  input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    background: #e6e6e6; }

.styled-select {
  position: relative; }
  .styled-select:after {
    content: '';
    display: block;
    width: 19px;
    height: 15px;
    background: url("../img/triangle.svg") no-repeat center center;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 12px;
    z-index: 10;
    pointer-events: none; }

select {
  display: block;
  width: 100%;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #f2f2f2;
  border: 0;
  outline: 0;
  border-radius: 0;
  margin-bottom: 10px;
  border: 2px solid #e6e6e6;
  font-size: 20px;
  font-family: "franklin-gothic-urw", sans-serif; }
  select:hover {
    cursor: pointer;
    background: #e6e6e6; }

input[type="submit"] {
  outline: 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: inline-block;
  padding: 10px 40px;
  font-size: 20px;
  background: #2196F3;
  color: white; }
  input[type="submit"]:hover {
    cursor: pointer;
    background: #0c7cd5; }

textarea {
  resize: none; }

#form-messages {
  font-size: 1.5em; }

/*# sourceMappingURL=styles.css.map */