@-webkit-keyframes pop-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pop-in {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  75% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

body {
  font-family: Lato, sans-serif; }

#main-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 2.0rem 0;
  z-index: 16;
  transition: padding 0.5s, box-shadow 0.5s;
  box-shadow: 0 0 8px 4px rgba(140, 140, 140, 0.5); }
  #main-header:before {
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    transition: background 0.25s; }
  #main-header.slim {
    padding: 0.4rem 0; }
  #main-header .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative; }
  #main-header .header-logo {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: block;
    background-image: url(../assets/lynx-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    font-size: 0;
    height: 6.4rem;
    width: 16rem; }
  #main-header .header-search {
    width: 3.2rem;
    height: 3.2rem;
    display: block;
    background: #283891;
    border-radius: 100%;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 3.2rem;
    text-align: center;
    margin-left: 1.6rem; }
    #main-header .header-search .search-label {
      font-size: 0; }

body.home #main-header:not(.slim) {
  box-shadow: none; }
  body.home #main-header:not(.slim):before {
    background: transparent; }
  body.home #main-header:not(.slim) #header-nav a:not(.active) {
    color: #ffffff; }

#header-nav a {
  padding: 2.4rem;
  position: relative;
  color: #000000;
  transition: color 0.5s; }
  #header-nav a:hover {
    color: #1173ba; }
  #header-nav a.active {
    color: #1173ba; }

#main-header + * {
  margin-top: 10.8rem; }

#main-header + #home {
  margin-top: 0; }

#home {
  background: #000000; }
  #home .home-slider {
    padding: 0; }
    #home .home-slider .slick-list {
      max-width: none; }
    #home .home-slider .slick-arrow {
      color: #ffffff;
      border-color: #ffffff;
      transition: background 0.5s, border-color 0.75s, color 0.5s; }
      #home .home-slider .slick-arrow:hover {
        border-color: #1173ba; }
    #home .home-slider li {
      min-height: 72rem;
      background-color: #616161;
      background-position: center;
      background-size: cover;
      position: relative; }
      #home .home-slider li:nth-child(1) {
        background-image: url(../assets/home-slider-01.jpg); }
      #home .home-slider li:nth-child(2) {
        background-image: url(../assets/home-slider-02.jpg); }
    #home .home-slider .container {
      text-align: center;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      color: #f7f7f7;
      padding: 8.0rem 0 0; }
    #home .home-slider .subtitle {
      font-size: 2.0rem;
      line-height: 2.4rem; }
    #home .home-slider .title {
      font-weight: 700;
      font-size: 4.8rem;
      line-height: 6.4rem;
      margin: 1.6rem 0 3.2rem; }
    #home .home-slider .link {
      display: inline-block;
      background: #1173ba;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 2.8rem;
      padding: 1.6rem 4.4rem;
      transition: box-shadow 0.5s, -webkit-transform 0.5s;
      transition: box-shadow 0.5s, transform 0.5s;
      transition: box-shadow 0.5s, transform 0.5s, -webkit-transform 0.5s; }
      #home .home-slider .link:hover {
        box-shadow: 0 0 8px 4px rgba(0, 174, 239, 0.25);
        -webkit-transform: scale(1.05);
        transform: scale(1.05); }
      #home .home-slider .link:active {
        -webkit-transform: scale(0.95);
        transform: scale(0.95); }

.section-default {
  padding: 8.0rem 0;
  overflow: hidden; }
  .section-default h1 {
    font-family: Raleway, sans-serif;
    text-align: center;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 4.4rem;
    margin: 0 0 6rem;
    padding-left: 3.0rem; }
    .section-default h1:before {
      content: '';
      display: inline-block;
      position: relative;
      top: -4px;
      width: 4px;
      height: 4rem;
      background: currentColor;
      margin-right: 2.4rem;
      vertical-align: middle;
      margin-left: -3.0rem; }
    .section-default h1:after {
      content: '';
      display: block;
      width: 14.0rem;
      height: 1px;
      background: currentColor;
      margin: 2.8rem auto 0; }

.article-default {
  padding: 6.4rem 0; }
  .article-default h1 {
    font-family: Raleway, sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 4.8rem;
    letter-spacing: 0.05em;
    line-height: 4.4rem;
    margin: 0 0 4.8rem;
    color: #26272d; }
    .article-default h1:after {
      content: '';
      display: block;
      width: 12rem;
      height: 4px;
      background: #283891;
      margin: 2rem auto 0; }

form .form-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1.6rem; }
  form .form-row .form-input {
    margin: 0 1.6rem 3.2rem;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    background: #f5f5f5; }
    form .form-row .form-input input,
    form .form-row .form-input select,
    form .form-row .form-input textarea {
      border: 1px solid transparent;
      width: 100%;
      padding: 2.0rem;
      font-family: Raleway, sans-serif;
      font-weight: 600;
      font-size: 1.8rem;
      line-height: 2.0rem;
      color: #26272d;
      letter-spacing: 0.05rem;
      transition: background 0.5s ease 0.25s, border-color 0.5s ease 0.25s; }
      form .form-row .form-input input:hover,
      form .form-row .form-input input:hover,
      form .form-row .form-input input:hover,
      form .form-row .form-input select:hover,
      form .form-row .form-input select:hover,
      form .form-row .form-input select:hover,
      form .form-row .form-input textarea:hover,
      form .form-row .form-input textarea:hover,
      form .form-row .form-input textarea:hover {
        border-color: rgba(40, 56, 145, 0.15); }
      form .form-row .form-input input:focus,
      form .form-row .form-input input:focus,
      form .form-row .form-input input:focus,
      form .form-row .form-input select:focus,
      form .form-row .form-input select:focus,
      form .form-row .form-input select:focus,
      form .form-row .form-input textarea:focus,
      form .form-row .form-input textarea:focus,
      form .form-row .form-input textarea:focus {
        border-color: #283891;
        background: #ffffff; }
    form .form-row .form-input textarea {
      min-height: 24rem; }
/* line 312, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
form .form-buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  form .form-buttons input {
    margin: 0.4rem;
    background: #283891;
    color: #ffffff;
    width: 100%;
    max-width: 40rem;
    height: 8rem;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    transition: box-shadow 0.5s, -webkit-transform 0.5s;
    transition: box-shadow 0.5s, transform 0.5s;
    transition: box-shadow 0.5s, transform 0.5s, -webkit-transform 0.5s; }
    form .form-buttons input:hover {
      box-shadow: 0 0 8px 4px rgba(0, 174, 239, 0.25);
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
    form .form-buttons button:active {
      -webkit-transform: scale(0.95);
      transform: scale(0.95); }

@media screen and (max-width: 703px) {
  form .form-row {
    display: block; } }

.slick-slider .slick-list {
  max-width: 117.4rem;
  margin: auto; }

.slick-slider .slick-arrow {
  position: absolute;
  font-size: 0;
  width: 4.0rem;
  height: 13.6rem;
  background: #4c4c4c;
  color: #ffffff;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: background 0.5s;
  z-index: 2; }
  .slick-slider .slick-arrow:hover {
    background: #1173ba; }
  .slick-slider .slick-arrow:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 3.6rem;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .slick-slider .slick-arrow.slick-prev {
    left: 0; }
    .slick-slider .slick-arrow.slick-prev:after {
      content: "\f104"; }
  /* line 386, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .slick-slider .slick-arrow.slick-next {
    right: 0; }
    /* line 388, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider .slick-arrow.slick-next:after {
      content: "\f105"; }

/* line 393, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.slick-slider.slider-round-buttons {
  padding: 0 8rem; }
  /* line 395, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .slick-slider.slider-round-buttons .slick-arrow {
    margin: 3.2rem;
    width: 4.0rem;
    height: 4.0rem;
    border-radius: 100%;
    background: transparent;
    border: 2px solid #1173ba;
    color: #1173ba;
    transition: background 0.5s, color 0.5s; }
    /* line 404, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider.slider-round-buttons .slick-arrow:after {
      font-size: 2.4rem;
      top: -0.1rem;
      position: relative; }
    /* line 409, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider.slider-round-buttons .slick-arrow.slick-next:after {
      left: 0.1rem; }
    /* line 412, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider.slider-round-buttons .slick-arrow.slick-prev:after {
      left: -0.1rem; }
    /* line 415, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider.slider-round-buttons .slick-arrow:hover {
      background: #1173ba;
      color: #ffffff; }

/* line 421, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.slick-slider .slick-dots {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
  margin: 8rem auto 0; }
  /* line 430, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .slick-slider .slick-dots li {
    width: 1.2rem;
    height: 1.2rem;
    background: #1173ba;
    opacity: .75;
    margin: 0 1.2rem;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s; }
    /* line 439, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .slick-slider .slick-dots li.slick-active {
      opacity: 1;
      -webkit-transform: scale(1.25);
      transform: scale(1.25); }

/* line 449, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.container.full-width .slick-slider {
  margin: 0 -2rem; }

/* line 452, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.container.full-width .slick-slider .contents {
  padding: 0 4.8rem;
  margin: auto; }

/* line 458, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#about-us {
  padding: 6.0rem 0;
  background: #0094ff;
  color: #ffffff; }
  /* line 462, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  /* line 470, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us h1 {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0;
    margin-right: 4.8rem;
    font-size: 3.0rem;
    line-height: 3.2rem; }
    /* line 478, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #about-us h1:after {
      display: none; }
  /* line 482, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us .contents {
    font-size: 1.8rem;
    font-style: oblique;
    line-height: 3.2rem;
    text-align: justify; }

/* line 492, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#services-list h1:before {
  background: #0094ff; }

/* line 495, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#services-list h1:after {
  background: #dbdbdb; }

/* line 499, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#services-list .services-slider li {
  text-align: center; }
  /* line 501, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li .image-container {
    max-width: 28rem;
    margin: 2.4rem auto 5.2rem;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s; }
    /* line 507, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #services-list .services-slider li .image-container .image {
      padding-top: 100%;
      border-radius: 100%;
      background-color: #0094ff;
      background-position: center;
      background-size: cover; }
  /* line 515, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 3.2rem;
    transition: color 0.5s; }
    /* line 521, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #services-list .services-slider li h3:after {
      content: '';
      display: block;
      width: 14.0rem;
      height: 1px;
      background: currentColor;
      margin: 2.8rem auto;
      background: #dbdbdb; }
  /* line 531, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li p {
    color: #999999;
    line-height: 2.8rem;
    max-width: 32.0rem;
    margin: auto; }
  /* line 538, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li:hover .image-container {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  /* line 542, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li:hover h3 {
    color: #1173ba; }

/* line 549, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#services {
  background: #ffc536;
  color: #ffffff;
  padding: 6.0rem 0;
  font-family: Raleway, sans-serif; }
  /* line 554, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services .services-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: -2.4rem; }
    /* line 565, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #services .services-list li {
      -webkit-flex: 0 0 24.8rem;
      -ms-flex: 0 0 24.8rem;
      flex: 0 0 24.8rem;
      text-align: center; }
      /* line 570, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #services .services-list li .icon {
        width: 8.0rem;
        height: 8.0rem;
        background-size: contain;
        margin: 0 auto; }
      /* line 576, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #services .services-list li p {
        margin: 2.8rem 0;
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 2.4rem; }

/* line 587, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#case-studies .case-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

/* line 595, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#case-studies .case-contents {
  -webkit-flex: 0 1 58rem;
  -ms-flex: 0 1 58rem;
  flex: 0 1 58rem;
  margin-right: 3.2rem; }
  /* line 600, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-contents h1 {
    text-align: left;
    color: #1173ba;
    font-weight: 500;
    margin-bottom: 4rem; }
    /* line 605, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #case-studies .case-contents h1:after {
      display: none; }
    /* line 608, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #case-studies .case-contents h1 strong {
      color: #4a4b4b;
      font-weight: inherit; }
  /* line 613, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-contents p {
    color: #a7a6a6;
    font-size: 1.8rem;
    line-height: 2.4rem;
    text-align: justify;
    margin-bottom: 1em; }

/* line 621, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#case-studies .case-image {
  max-width: 40rem;
  -webkit-flex: 0 1 40rem;
  -ms-flex: 0 1 40rem;
  flex: 0 1 40rem; }
  /* line 626, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-image .case-image-container {
    padding-top: 85%;
    padding-top: 100%;
    position: relative; }
    /* line 630, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #case-studies .case-image .case-image-container .image {
      background: #1173ba;
      border-radius: 100%;
      position: absolute;
      background-position: center;
      background-size: cover; }
      /* line 636, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #case-studies .case-image .case-image-container .image:after {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border: 4px solid #1173ba;
        border-radius: 100%;
        position: absolute;
        content: '';
        transition: border 0.5s, opacity 0.5s; }
      /* line 647, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #case-studies .case-image .case-image-container .image:hover:after {
        border-width: 8px;
        opacity: .75; }
      /* line 651, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #case-studies .case-image .case-image-container .image.image-tl {
        top: 2.5%;
        left: 0;
        width: 40%;
        height: 40%; }
      /* line 657, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #case-studies .case-image .case-image-container .image.image-bl {
        left: 0;
        bottom: 25%;
        width: 27.5%;
        height: 27.5%; }
      /* line 663, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #case-studies .case-image .case-image-container .image.image-br {
        right: 0;
        bottom: 5%;
        width: 70%;
        height: 70%; }

/* line 675, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.home #case-studies .case-contents {
  opacity: 0;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
  transition: opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, opacity 0.5s ease 0s;
  transition: transform 0.5s ease 0s, opacity 0.5s ease 0s, -webkit-transform 0.5s ease 0s; }

/* line 684, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.home #case-studies .slick-active .case-contents {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: opacity 0.5s ease 1s, -webkit-transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s, opacity 0.5s ease 1s;
  transition: transform 0.5s ease 1s, opacity 0.5s ease 1s, -webkit-transform 0.5s ease 1s; }

/* line 692, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.home #case-studies .slick-active .case-image .case-image-container .image {
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-name: pop-in;
  animation-name: pop-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }
  /* line 701, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.home #case-studies .slick-active .case-image .case-image-container .image.image-tl {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s; }
  /* line 705, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.home #case-studies .slick-active .case-image .case-image-container .image.image-bl {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s; }
  /* line 709, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.home #case-studies .slick-active .case-image .case-image-container .image.image-br {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s; }

/* line 718, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.cases #case-studies li {
  margin-bottom: 4.8rem; }

/* line 721, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.cases #case-studies .case-contents {
  -webkit-flex: 0 1 64rem;
  -ms-flex: 0 1 64rem;
  flex: 0 1 64rem; }
  /* line 725, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.cases #case-studies .case-contents h1 {
    font-size: 3.6rem;
    line-height: 4.0rem;
    font-weight: 600; }
    /* line 729, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.cases #case-studies .case-contents h1 span {
      display: none; }
    /* line 732, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.cases #case-studies .case-contents h1:before {
      content: '';
      display: block;
      width: 5px;
      height: 4rem;
      background: #1173ba;
      float: left;
      margin-right: 3.2rem; }

/* line 743, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.cases #case-studies li:nth-child(even) .case-container {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
  /* line 747, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.cases #case-studies li:nth-child(even) .case-container h1 {
    text-align: right; }
    /* line 749, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.cases #case-studies li:nth-child(even) .case-container h1:before {
      float: right;
      margin: 0;
      margin-left: 3.2rem; }
  /* line 755, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.cases #case-studies li:nth-child(even) .case-container .case-contents {
    margin-left: 3.2rem;
    margin-right: 0; }

/* line 762, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#testimonies {
  background: #0094ff;
  color: #ffffff; }
  /* line 765, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #testimonies blockquote {
    text-align: center; }
    /* line 767, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #testimonies blockquote .testimony-quote {
      font-size: 2.4rem;
      line-height: 1.5;
      font-style: italic; }
    /* line 772, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #testimonies blockquote footer {
      margin: 4.0rem auto 0;
      font-size: 1.8rem;
      line-height: 2.4rem; }
      /* line 776, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #testimonies blockquote footer .testimony-icon {
        width: 9.2rem;
        height: 9.2rem;
        border-radius: 100%;
        background: #ffffff;
        color: #0094ff;
        margin: 0 auto 1.6rem;
        background-position: center;
        background-size: cover;
        background-image: url(../assets/testimony.jpg); }
      /* line 788, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #testimonies blockquote footer .testimony-name,
      #testimonies blockquote footer .testimony-company {
        -webkit-transform: translateY(-1.6rem);
        transform: translateY(-1.6rem);
        opacity: 0;
        transition: opacity 0.5s ease 1.25s, -webkit-transform 0.5s ease 1.25s;
        transition: transform 0.5s ease 1.25s, opacity 0.5s ease 1.25s;
        transition: transform 0.5s ease 1.25s, opacity 0.5s ease 1.25s, -webkit-transform 0.5s ease 1.25s; }
    /* line 797, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #testimonies blockquote .slick-slider .slick-arrow {
      background: #ffffff;
      color: #0094ff;
      transition: background 0.5s, height 0.5s;
      top: calc(50% - 7.2rem); }
      /* line 802, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #testimonies blockquote .slick-slider .slick-arrow:hover {
        background: rgba(255, 255, 255, 0.95);
        height: 16rem; }

/* line 811, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#testimonies .slick-active blockquote footer .testimony-icon {
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-name: pop-in;
  animation-name: pop-in;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 1.0s;
  animation-delay: 1.0s; }

/* line 824, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#testimonies .slick-active blockquote footer .testimony-name,
#testimonies .slick-active blockquote footer .testimony-company {
  -webkit-transform: none;
  transform: none;
  opacity: 1; }

/* line 831, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#main-footer {
  background: #f7f7f7;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.4rem; }
  /* line 836, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-logo {
    display: inline-block;
    background-image: url(../assets/lynx-logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 0;
    height: 12.0rem;
    width: 34.0rem;
    max-width: 100%; }
  /* line 847, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-social {
    text-align: center;
    padding: 4.0rem 0; }
  /* line 851, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .nav-social {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 6.0rem 0 0; }
    /* line 859, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .nav-social a {
      display: block;
      font-size: 2.4rem;
      color: #1173ba;
      border: 2px solid #1173ba;
      border-radius: 100%;
      width: 4.8rem;
      height: 4.8rem;
      position: relative;
      margin: 0 1.6rem;
      transition: background 0.5s ease, color 0.25s ease, -webkit-transform 0.5s ease;
      transition: transform 0.5s ease, background 0.5s ease, color 0.25s ease;
      transition: transform 0.5s ease, background 0.5s ease, color 0.25s ease, -webkit-transform 0.5s ease; }
      /* line 872, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .nav-social a i {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      /* line 879, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .nav-social a:hover {
        background: #1173ba;
        color: #ffffff;
        -webkit-transform: scale(1.15);
        transform: scale(1.15); }
  /* line 887, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact {
    padding: 4.0rem 0; }
    /* line 889, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .container {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    /* line 897, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact h3 {
      font-size: 2.4rem;
      line-height: 2.8rem;
      font-weight: 700;
      color: #1173ba;
      margin: 0 0 1.6rem; }
    /* line 904, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .address-info {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      max-width: 44.8rem; }
      /* line 915, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .footer-contact .address-info h3 {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; }
      /* line 920, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .footer-contact .address-info em {
        margin-right: 0.4rem;
        font-style: normal; }
      /* line 924, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .footer-contact .address-info a {
        margin-right: 0.8rem;
        line-height: 2.8rem;
        transition: color 0.5s; }
        /* line 928, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
        #main-footer .footer-contact .address-info a:hover {
          color: #1173ba; }
    /* line 934, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .footer-newsletter h3 {
      font-weight: 400;
      text-align: right; }
    /* line 938, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .footer-newsletter .newsletter-form {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      border: 1px solid #1173ba;
      width: 44rem;
      max-width: 100%; }
      /* line 945, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .footer-contact .footer-newsletter .newsletter-form input {
        font-weight: 300;
        font-size: 1.6rem;
        line-height: 2.0rem;
        padding: 1.2rem 2rem;
        width: 100%; }
      /* line 952, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #main-footer .footer-contact .footer-newsletter .newsletter-form button {
        background: #1173ba;
        color: #ffffff;
        font-size: 1.6rem;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 2.0rem;
        padding: 1.2rem 2.4rem; }
  /* line 964, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-copyrights {
    background: #ececec;
    padding: 3.2rem 0;
    text-align: center; }
    /* line 968, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-copyrights a {
      font-weight: 500;
      color: #1173ba; }

/* line 975, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.header-toggle-nav {
  width: 3.2rem;
  height: 3.2rem;
  background: #283891;
  border-radius: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  margin-left: 1.6rem;
  display: none; }

/* [S] Contact */
/* line 990, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
.contact-map {
  height: 44rem;
  background: #fafafa;
  position: relative;
  margin-top: 0 !important; }
  /* line 995, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .contact-map #contact-map {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

@media screen and (max-width: 703px) {
  /* line 1005, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .contact-map {
    height: 32rem; } }

/* [S] Services */
/* line 1014, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.services article .container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

/* line 1019, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.services article .services-navigation {
  -webkit-flex: 0 0 34.8rem;
  -ms-flex: 0 0 34.8rem;
  flex: 0 0 34.8rem;
  margin-right: 5.2rem;
  font-family: Raleway, sans-serif; }
  /* line 1025, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-navigation section {
    margin-bottom: 5.2rem; }
    /* line 1027, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation section .navigation-header {
      background: #1173ba;
      color: #ffffff;
      font-size: 1.8rem;
      font-weight: 600;
      text-transform: uppercase; }
      /* line 1033, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation section .navigation-header i {
        padding: 1.6rem 3.2rem; }
    /* line 1037, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation section ul {
      border: 1px solid;
      border-top: none;
      color: #afafaf; }
      /* line 1041, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation section ul li {
        transition: color 0.5s ease 0.25s, background-color 0.5s ease 0.25s, border-color 0.5s ease 0.25s; }
        /* line 1043, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
        body.services article .services-navigation section ul li:hover {
          color: #1173ba; }
  /* line 1049, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-navigation .services-navigation-categories ul {
    padding: 0.8rem 0; }
    /* line 1051, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation .services-navigation-categories ul li {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      font-size: 1.4rem;
      font-weight: 600;
      padding: 1.2rem 2rem; }
      /* line 1061, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation .services-navigation-categories ul li:after {
        content: '>';
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\f105"; }
      /* line 1071, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation .services-navigation-categories ul li.active {
        color: #1173ba; }
  /* line 1076, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-navigation .services-navigation-tags ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.8rem; }
    /* line 1084, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation .services-navigation-tags ul li {
      border: 1px solid #efefef;
      margin: 0.8rem;
      font-size: 1.4rem;
      line-height: 1.6rem; }
      /* line 1089, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation .services-navigation-tags ul li a {
        display: block;
        padding: 1.2rem; }
      /* line 1093, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation .services-navigation-tags ul li.active {
        background: #1173ba;
        border-color: #1173ba;
        color: #ffffff; }

/* line 1101, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
body.services article .services-list > li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #908e8e;
  margin-bottom: 3.2rem; }
  /* line 1106, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-list > li .service-image {
    padding-top: 52.5%;
    background-position: center;
    background-size: cover; }
  /* line 1111, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-list > li h2 {
    margin: 3.2rem 0 2.4rem;
    color: #1173ba;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    font-size: 2.4rem; }
  /* line 1118, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-list > li p {
    margin: 0 0 1em; }
  /* line 1121, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-list > li p + ul {
    margin: -1em 0 1em; }
  /* line 1124, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-list > li ul li {
    position: relative;
    padding-left: 1.6rem;
    margin: 0.4rem; }
    /* line 1128, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-list > li ul li:before {
      content: '';
      width: 0.8rem;
      height: 0.8rem;
      position: absolute;
      background: #1173ba;
      left: 0;
      top: 0;
      border-radius: 100%;
      margin: 0.8rem 0; }

@media screen and (max-width: 959px) {
  /* line 1145, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .container {
    display: block; }
  /* line 1148, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-navigation {
    margin: 0;
    position: relative;
    height: 6.4rem; }
    /* line 1152, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation section {
      overflow: hidden;
      max-height: 4.8rem;
      margin: 0;
      position: absolute;
      width: calc(50% - 0.8rem);
      background: rgba(255, 255, 255, 0.95);
      transition: max-height 0.5s, width 0.15s; }
      /* line 1160, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation section .navigation-header {
        cursor: pointer; }
        /* line 1162, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
        body.services article .services-navigation section .navigation-header i {
          padding: 1.6rem; }
      /* line 1166, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation section ul {
        overflow: auto;
        max-height: 18rem;
        z-index: 2; }
      /* line 1171, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.services article .services-navigation section.opened {
        max-height: 24rem; }
    /* line 1175, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation .services-navigation-categories {
      left: 0; }
    /* line 1178, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.services article .services-navigation .services-navigation-tags {
      right: 0; } }

@media screen and (max-width: 703px) {
  /* line 1186, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.services article .services-navigation section.opened {
    width: 100%;
    z-index: 4; } }

/* [S] Responsivity */
@media screen and (max-width: 1023px) {
  /* line 1199, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #home .home-slider .subtitle {
    max-width: 64rem;
    margin: auto; }
  /* line 1203, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #home .home-slider .title {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 4.8rem;
    margin: 2rem auto 6rem; }
  /* line 1211, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li .image-container {
    max-width: 24rem; } }

@media screen and (max-width: 959px) {
  /* line 1217, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .header-toggle-nav {
    display: block; }
  /* line 1220, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #header-nav {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(40, 56, 145, 0.95);
    font-size: 2.0rem;
    margin-top: 0rem;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    transition: margin 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, margin 0.5s;
    transition: transform 0.5s, margin 0.5s, -webkit-transform 0.5s;
    z-index: -1; }
    /* line 1240, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #header-nav a {
      color: rgba(255, 255, 255, 0.75); }
      /* line 1242, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #header-nav a.active {
        color: #ffffff; }
      /* line 1245, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #header-nav a:hover {
        color: #ffffff; }
      /* line 1248, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      #header-nav a:after {
        left: -0.4rem;
        top: calc(50% - 0.4rem);
        background: #ffffff; }
  /* line 1255, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #header-nav.visible {
    margin-top: 10.4rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  /* line 1260, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.home #main-header:not(.slim):before {
    background: rgba(255, 255, 255, 0.95); }
  /* line 1263, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .slim #header-nav.visible {
    margin-top: 7.2rem;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  /* line 1269, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us .container {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
  /* line 1274, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us .contents {
    text-align: center; }
  /* line 1277, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #about-us h1 {
    margin: 0 0 3.2rem; }
  /* line 1281, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services .services-list li {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }
  /* line 1287, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-container {
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  /* line 1292, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-contents {
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    margin: 0 !important; }
  /* line 1298, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-image {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  /* line 1305, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.cases #case-studies .case-contents {
    text-align: center; }
    /* line 1307, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.cases #case-studies .case-contents h1 {
      text-align: center !important; }
      /* line 1309, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.cases #case-studies .case-contents h1:before {
        display: none; }
      /* line 1312, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      body.cases #case-studies .case-contents h1:after {
        display: block;
        background: #1173ba; }
    /* line 1317, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    body.cases #case-studies .case-contents p {
      text-align: center;
      margin: 0 auto 1em;
      max-width: 74rem; }
  /* line 1323, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  body.cases #case-studies .case-image {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 100%;
    max-width: 32rem; }
  /* line 1334, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #testimonies blockquote .testimony-quote {
    font-size: 2.0rem;
    margin: 0 1.6rem; }
  /* line 1338, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact .address-info em {
    margin-left: -2rem; }
  /* line 1341, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact .address-info span {
    padding-left: 2rem; } }

@media screen and (max-width: 703px) {
  /* line 1348, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #home .home-slider .subtitle {
    font-size: 1.8rem;
    line-height: 2.4rem;
    padding: 0 1.6rem; }
  /* line 1353, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #home .home-slider .title {
    font-size: 3.6rem;
    line-height: 4.0rem; }
  /* line 1357, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #home .home-slider .slick-arrow {
    display: none !important; }
  /* line 1361, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .section-default {
    padding: 6.0rem 0; }
    /* line 1363, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .section-default h1 {
      font-size: 2.4rem;
      line-height: 3.6rem;
      margin: 0 0 3.2rem;
      padding: 0; }
      /* line 1368, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      .section-default h1:after {
        margin-top: 1.6rem; }
      /* line 1371, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
      .section-default h1:before {
        display: none; }
  /* line 1376, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  .article-default {
    padding: 4.0rem 0; }
    /* line 1378, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    .article-default h1 {
      font-size: 3.2rem;
      line-height: 3.6rem; }
  /* line 1383, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services-list .services-slider li .image-container {
    max-width: 20rem;
    margin-bottom: 2.4rem; }
  /* line 1388, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #services .services-list li {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
    /* line 1392, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #services .services-list li p {
      margin: 2.4rem auto;
      max-width: 24rem; }
  /* line 1399, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .cases-slider {
    padding: 0; }
    /* line 1401, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #case-studies .cases-slider .slick-arrow {
      top: initial;
      bottom: -8.8rem; }
  /* line 1406, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-image {
    max-width: 24rem; }
  /* line 1410, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-contents h1 {
    font-size: 2.4rem;
    padding: 0;
    margin: 0 0 1.6rem; }
    /* line 1414, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #case-studies .case-contents h1 span {
      display: block;
      margin: 1.6rem 0 -1.6rem;
      font-size: 0.75em; }
  /* line 1420, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #case-studies .case-contents p {
    font-size: 1.6rem;
    line-height: 2.0rem; }
  /* line 1427, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #testimonies .testimonies-slider .slick-arrow {
    background: transparent; }
  /* line 1430, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #testimonies blockquote .testimony-quote {
    margin: 0;
    font-size: 1.7rem; }
  /* line 1434, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #testimonies blockquote footer .testimony-icon {
    width: 6.0rem;
    height: 6.0rem; }
  /* line 1440, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-social {
    padding-bottom: 0; }
  /* line 1444, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact .container {
    display: block; }
  /* line 1447, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact .address-info {
    max-width: none; }
  /* line 1450, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #main-footer .footer-contact .footer-newsletter {
    padding: 3.2rem 0 0; }
    /* line 1452, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .footer-newsletter h3 {
      text-align: center; }
    /* line 1455, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
    #main-footer .footer-contact .footer-newsletter .newsletter-form {
      margin: auto; } }

@media screen and (max-width: 374px) {
  /* line 1464, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  html {
    font-size: 50%; } }

/* line 1469, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#youtube > .fullscreen-close {
  background: #1173ba;
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin: 1.6rem; }

/* line 1476, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#youtube-video > iframe {
  width: 100vw;
  height: 100vh; }

/* line 1481, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#projects .project-description {
  display: none; }

/* line 1487, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view .project-description .image {
  position: absolute;
  left: 4rem;
  right: 4rem;
  top: 8rem;
  bottom: 8rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
  transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s;
  transition: transform 0.5s ease 0.5s, opacity 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0; }

/* line 1503, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view .project-description .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 33, 33, 0.9);
  padding: 4rem 1.6rem 6rem;
  text-align: center;
  transition: -webkit-transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s, -webkit-transform 0.5s ease 1s;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%); }

/* line 1517, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view .project-description h3 {
  color: #1173ba;
  font-weight: 500;
  font-size: 2.8rem;
  margin: 0 0 2.4rem; }

/* line 1523, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view .project-description p {
  max-width: 96rem;
  margin: auto;
  font-size: 2.0rem;
  line-height: 2.4rem; }

/* line 1531, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view.visible .project-description .image {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

/* line 1536, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view.visible .project-description .text {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

@media screen and (max-width: 703px) {
  /* line 1545, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #project-view .project-description p {
    font-size: 1.4rem;
    line-height: 1.6rem; }
  /* line 1549, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #project-view .project-description h3 {
    font-size: 2.0rem;
    margin: 0 0 0.8rem; }
  /* line 1553, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #project-view .project-description .text {
    padding: 2rem 1.6rem 3.2rem; }
  /* line 1556, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
  #project-view .project-description .image {
    left: 1.6rem;
    right: 1.6rem; } }

/* line 1563, D:/xampp/htdocs/lynx/wp-content/themes/lynx/styles/lynx.main.scss */
#project-view .project-description .text {
  display: none; }

/*# sourceMappingURL=lynx.main.css.map */