@font-face {
  font-family: 'Futura PT Medium';
  font-style: normal;
  font-weight: normal;
  src: local('Futura PT Medium'), url('Ffonts/uturaCyrillicMedium.woff') format('woff');
}
@font-face {
  font-family: 'Futura PT Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Futura PT Bold'), url('fonts/FuturaCyrillicBold.woff') format('woff');
}
@font-face {
  font-family: 'Fira Sans Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Fira Sans Regular'), url('FiraSans-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Fira Sans Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Fira Sans Bold'), url('FiraSans-Bold.woff') format('woff');
}
@font-face {
  font-family: 'Fira Sans Light';
  font-style: normal;
  font-weight: normal;
  src: local('Fira Sans Light'), url('FiraSans-Light.woff') format('woff');
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Fira Sans Regular", "helvetica neue",Arial,sans-serif;
  --dark-blue: #304a70;
  --semi-dark-blue: #44699E; 
  --pale-blue: #819CB5;
  --light-blue: #89B0E8;
  --shining-light-blue:#5682D1;
  font-size: calc(5px + 1vw);
  line-height: 1.5em;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  color: #333333;
}
a {
  color: var(--dark-blue);
  text-decoration: none;
}

a:hover {
  color: #00cc95;
  text-decoration: none;
}
.font-futura-normal { font-family: "Futura PT Medium", "helvetica neue",Arial,sans-serif; }
.font-fira-normal { font-family: "Fira Sans Regular", "helvetica neue",Arial,sans-serif; }

p,li{ font-size: 0.9em; line-height: 1.5; }
p strong, li strong{ font-family: "Fira Sans Bold", "helvetica neue",Arial,sans-serif; }
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Futura PT Medium", "helvetica neue",Arial,sans-serif;
  line-height: 1.3em;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong{  font-family: 'Futura PT Bold'; }
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }

  .back-to-top:hover {
    background: #00c28e;
    color: #fff;
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    top: 20px;
  }

  #header .header-container {
    background: transparent;
  }

  #header.header-scrolled {
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
  }

  #header .logo {
    overflow: hidden;
    padding: 16px 30px 12px 30px;
  }

  #header .logo h1 {
    font-size: 26px;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    font-family: "Futura PT Medium", "helvetica neue",Arial,sans-serif;
  }

  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }

  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 35px;
  }

  @media (max-width: 992px) {
    #header {
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      top: 0;
      background: var(--dark-blue);
    }

    #header.header-scrolled,
    #header .header-container {
      background: var(--dark-blue);
    }

    #header .logo {
      padding-left: 0;
    }

    #header .logo h1 {
      font-size: 24px;
    }
  }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    color: #36343a;
    transition: 0.3s;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--dark-blue);
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--dark-blue);
    padding: 10px 25px;
    margin-left: 30px;
    margin-right: 15px;
    border-radius: 50px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #00b383;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    font-weight: 500;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--dark-blue);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }

  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }

  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }

    .navbar ul {
      display: none;
    }
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(29, 28, 31, 0.1);
    transition: 0.3s;
    z-index: 999;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }

  .navbar-mobile ul li{
    max-width: 300px;
    display: block !important;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #36343a;
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: var(--dark-blue);
  }

  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }

  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 0 20px;
    padding: 0 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
  }

  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }

  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }

  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }

  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: var(--dark-blue);
  }

  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
  #hero{ 
    position:relative; 
    padding:  0;
  }
  .main-slider {
    position: relative;
    width: 100%;
    min-height: 8vw;
    opacity: 0;
    visibility: hidden;
    transition: all 1.2s ease;
  }
  .main-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
  }
  .slick-slide {
    position: relative;
    height: 50vw;
    max-height: 100vh;
  }
  .slick-slide::before {
    background-image: linear-gradient(to bottom, rgb(255,255,255,0.8), rgba(0,0,0,0.1), rgba(0,0,0,0.1));
    opacity: 1;
    z-index: 1;
  }
  .slick-slide video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
  }
  .slick-slide iframe {
    position: relative;
    pointer-events: none;
  }
  .slick-slide figure {
    position: relative;
    height: 100%;
  }
  .slick-slide .slide-image {
    opacity: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
  }
  .slick-slide .slide-image.show {
    opacity: 1;
  }
  .slick-slide .image-entity {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
  .slick-slide .loading {
    position: absolute;
    top: 44%;
    left: 0;
    width: 100%;
  }
  .slick-slide .slide-media {
    -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
            animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  }
  .slick-slide.slick-active {
    z-index: 1;
  }
  .slick-slide.slick-active .slide-media {
    -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
            animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
  }
  .slick-slide.slick-active .caption {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
  }

  .caption {
    position: absolute;
    text-align: center;
    padding: 20px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
    opacity: 0;
    z-index: 1;
    transition: all 0.3s ease;
    transform: translateY(100px);
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }

  .slick-dots {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0;
  }
  .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
  }
  .slick-dots li button {
    width: 16px;
    height: 16px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: transparent;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0.4;
  }
  .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover {
    opacity: 1;
  }
  .slick-dots li.slick-active button {
    border-color: #2d3042;
    box-shadow: 0 0 0 2px #fff;
    opacity: 1;
  }

  /* Text Overlay */
  .main-slider .caption h2 {
    font-size: 3em;
  }
  .main-slider .caption {
    position: absolute;
    color: #FFF;
    width: 100%;
    text-shadow: 1px 1px 9px rgba(0,0,0,0.6);
  }

  .main-slider .caption .container {
    text-align: center;
    margin: 0px auto;
/*    background-color: #669900;*/
  }
  .banner-logo {
    position: absolute;
    bottom: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    filter: brightness(4);
    z-index: 999;
    height: 6vw;
    min-height: 50px;
  }
  .banner-logo img{ height:100%; width: auto; }

  @media screen and (max-width:767px) {
    .slick-slide{ min-height: 400px; }
    .main-slider .caption h2 {
      font-size: 2em;
    }
    .main-slider .caption p {
      font-size: .9em;
    }
    #header{ min-height: 58px; }
    .main-slider { margin-top: 58px; }
    .banner-logo{ min-height: 30px; }
  }
  @-webkit-keyframes slideIn {
    from {
      filter: blur(15px);
    }
    to {
      filter: blur(0);
    }
  }

  @keyframes slideIn {
    from {
      filter: blur(15px);
    }
    to {
      filter: blur(0);
    }
  }
  @-webkit-keyframes slideOut {
    from {
      filter: blur(0);
    }
    to {
      filter: blur(15px);
    }
  }
  @keyframes slideOut {
    from {
      filter: blur(0);
    }
    to {
      filter: blur(15px);
    }
  }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
  .text-dark-blue{ color: var(--dark-blue); }
  .bg-dark-blue{ background-color: var(--dark-blue); }
  .text-semi-dark-blue{ color: var(--semi-dark-blue); }
  .bg-semi-dark-blue{ background-color: var(--semi-dark-blue); }
  .text-shining-light-blue{ color: var(--shining-light-blue); }
  .bg-shining-light-blue{ background-color: var(--shining-light-blue); }
  .text-pale-blue{ color: var(--pale-blue); }
  .bg-pale-blue{ background-color: var(--pale-blue); }
  .text-light-blue{ color: var(--light-blue); }
  .bg-light-blue{ background-color: var(--light-blue); }
  div.lazy {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  div.lazy.contain{ background-size: contain; }
  .swiper-horizontal {
    width: 100%;
    height: 100%;
  }
  .swiper-pagination-bullet {
    background: #FFF;
    opacity: 1;
    width: 12px;
    height: 12px;
  }
  .swiper-pagination-bullet-active{ background: var(--semi-dark-blue); }
  section {
    padding: calc(-15px + 5vw) 0;
    overflow: hidden;
  }
  .section-bg {
    background-color: #f6f6f7;
  }

  .section-title {
    padding-bottom: 30px;
  }

  .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }

  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--dark-blue);
    bottom: 0;
    left: 0;
  }

  .section-title p {
    margin-bottom: 0;
  }
  .content-box {
    padding: 3% 8%;
    color: #fff;
    margin: 3% 0;
  }
  .content h2 {
    font-weight: 500;
    font-size: 2.1em;
    line-height: 60px;
    margin-bottom: 20px;
  }
  .content h3 {
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.8em;
  }
  .content h4 {
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.6em;
  }
  .sticky-bg {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 18vw 0;
    min-height: 50vh;
  }
  .form-group{ margin-bottom: 20px; }
  .form-control {
    padding: 1em;
    background-color: transparent;
    background-clip: padding-box;
    border: #949494 2px solid;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
  .clients {
    background: #f6f6f7;
    text-align: center;
    padding: 5px 0;
  }

  .clients img {
    width: 40%;
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
  }

  .clients img:hover {
    filter: none;
    transform: scale(1.1);
  }
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
  #about {
    background: url('../img/spaces-that-enrich-your-life.jpg') no-repeat bottom center / 100%;
    padding-bottom: 20vw;
  }

  .about .content ul {
    list-style: none;
    padding: 0;
  }

  .about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
  }

  .about .content ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: var(--dark-blue);
  }

  .about .content p:last-child {
    margin-bottom: 0;
  }
  .about h3, .about h4{ font-weight: 700; font-size: 2.3em; }
  .about .features { padding-top: 40px; }
  .about .features h4{ font-size: 1.6em; margin: 28px 0 15px;}
  @media screen and (min-width:998px){
    .about .features h4 span{ display: block; }
  }
  .about .features > div { margin: 20px 0; }
  .about .features .item{
    height: 100%;
    margin: 10px;
    border: #666 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    text-align: center;
  }

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
  .counts{ color: #FFF; }
  .counts .counters > div{ padding: 0 4%; border-right: #FFF 1px solid; margin-top: 10px; margin-bottom: 10px;  }
  .counts .counters > div:last-child{ border-right: none; }
  .counts .counters span {
    font-size: 3em;
    display: block;
    font-weight: 500;
    line-height:  1em;
  }

  .counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 15px;
    font-weight: 500;
  }
  @media (max-width: 767px){ #counts { padding: 20px 0; } }
/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
  .project-img-carousel {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 0;
    min-height: 30vw;
  }
  .project-details{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5%;
  }
  .project-details h3{ font-size: 1.5em; letter-spacing: 0.1em; font-weight: 600; font-family: 'Futura PT Bold'; }
  .project-details p{
    display: flex;
    align-items: center;
    margin: 1vmax 0;
  }
  .project-details p.location:before {
    background: url(../img/icons/location.png) no-repeat center center / contain;
    content: '';
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  .project-details p.size:before {
    background: url(../img/icons/size.png) no-repeat center center / contain;
    content: '';
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  .project-details p.status:before {
    background: url(../img/icons/status.png) no-repeat center center / contain;
    content: '';
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  .project-details p.pre-launch:before {
    background: url(../img/icons/pre-launch.png) no-repeat center center / contain;
    content: '';
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }

  #projects .sr-only {
    position: absolute;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
    color: transparent;
  }

  #projects input {
    position: absolute;  
    opacity: 0;
    margin-top: 50vh;
    cursor: pointer;
  }

  #projects label {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: solid 2px white;
    border-radius: 999px;
    background-color: transparent;
    margin: 50vh 6px 0 6px;
    z-index: 2;
    cursor: pointer;
    transition-duration: .4s;
    box-shadow: 0 0 20px 0 #000;
  }

  #projects input:checked + label{
    background-color: white;
  }

  #projects input + label::after{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='100' style='fill:white'%3E%3Cpath d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center 55%;
    background-size: 80px 80px;
    line-height: 100vh;
    transition: background-size 200ms;
    position: absolute;
    color: white;
    height: calc(50vh - 12px);
    width: 80px;
    top: 0;
    left: 0;
    z-index: 20;
    opacity: 0;
  }

  #projects input + label:hover::after {
    background-size: 90px 90px;
  }

  #projects input:checked + label::after {
    background-image: none;
    width: 100vw;
    left: 0;
    z-index: 10;
  }

  #projects input:checked + label + .slide ~ input + label::after {
    display: none;
  }

  #projects input:checked + label + .slide + input + label::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='100' fill='white'%3E%3Cpath d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z' /%3E%3C/svg%3E");
    display: block;
    width: 80px;
    right: 0;
    left: auto;
  }

  #projects input:focus + label{
    box-shadow: 0 0 0 2px teal, 0 0 18px white;
  }

  #projects .slide {
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition-duration: .4s;
    opacity: 1;
  }

  #projects input:checked ~ .slide {
    transform: translateX(100%);
  }

  #projects input:checked + label + .slide {
    transform: translateX(0);
    opacity: 1;
  }
/*--------------------------------------------------------------
# Find your country side
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
  .blue-box{ background: url('../img/content-bg-semi-transparent.jpg') no-repeat center center / cover; }
   .blue-box{ background: url('../img/content-bg-semi-transparent.png?v2') no-repeat center center / cover; }
  .cta h2 {
    color: #fff;
    font-size: 2.6em;
    font-weight: 500;
  }

  .cta p {
    color: #fff;
  }

  .cta .cta-btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
  }

  .cta .cta-btn:hover {
    background: var(--dark-blue);
    border: 2px solid var(--dark-blue);
  }
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
  .why-us .content {
    padding: 30px;
    background: var(--dark-blue);
    border-radius: 4px;
    color: #fff;
  }

  .why-us .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
  }

  .why-us .content p {
    margin-bottom: 30px;
  }

  .why-us .content .more-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
  }

  .why-us .content .more-btn i {
    font-size: 14px;
  }

  .why-us .content .more-btn:hover {
    color: var(--dark-blue);
    background: #fff;
  }

  .why-us .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    transition: 0.3s;
  }

  .why-us .icon-boxes .icon-box i {
    font-size: 40px;
    color: var(--dark-blue);
    margin-bottom: 30px;
  }

  .why-us .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }

  .why-us .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
  }

  .why-us .icon-boxes .icon-box:hover {
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
  }

/*--------------------------------------------------------------
# Our Story
--------------------------------------------------------------*/
  #our-story{
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    min-height: 100vh;
  }
  #our-story {
    display: flex;
    align-items: center;
  }
  #our-story .md-profile {
    height: 24vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #our-story .md-profile h3{
    font-family: "Fira Sans medium", "helvetica neue",Arial,sans-serif;
    font-weight: 600;
    font-size: 1.8em;
  }
/*--------------------------------------------------------------
# Our Dna
--------------------------------------------------------------*/
  picture.fullscren{ max-height: 75vh; overflow: hidden; }
  #our-dna h3{ font-size: 2em; }
  #our-dna .content-box{
    padding: calc(15px + 4vw);
    margin: 0;
  }
  @media (max-width: 767px){
    #our-dna .content-box + div.lazy {
      min-height: 70vw;
      width: 100%;
    }
  }
  .sub-heading {
    font-family: 'Futura PT Medium';
    font-size: 1.1em;
  }
/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/
  #brand .heading {
    background-color: var(--shining-light-blue);
    color: white;
    width: 100%;
    padding: 3vw 20px;
    text-align: center;
    margin-top: -8vw;
  }

/*--------------------------------------------------------------
# Standards
--------------------------------------------------------------*/
  #standards .blue-box{ background-image: linear-gradient(#020040b5, #0a076cd9); }
  .standards {
    display: flex;
    border: #4d4d4d 2px solid;
    padding: 10px;
    margin-bottom: 3vh;
  }
  .standards > * {
    padding: 5px 4%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .standards picture{
    padding: 0 7%;
    border-right: #4d4d4d 2px solid;
    min-width: 124px;
    max-width: 22%;
    align-items: center;
  }
  .standards p { margin: 0; }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
  @media screen and (min-width: 997px){
    .team {
      background: linear-gradient(90deg, #FFF 13%, #EFEFEF 10%);
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }
  .team p big{ font-size: 1.5em; }
  .team picture{ text-align: center; }

/*--------------------------------------------------------------
# Connect Land
--------------------------------------------------------------*/
  #connect-land .container{ margin-top: -10vh; padding: 30px 15%; }
  @media (max-width: 992px){
    #connect-land .container{ padding: 20px 4%; }
  }
/*--
/*--------------------------------------------------------------
# Careers
--------------------------------------------------------------*/
  #careers .border{ border-color: #666 !important; border-width: 2px !important; padding: 2%; }
  #careers a.btn{ border-radius: 0 !important; }
  @media (max-width: 992px){
    #connect-land .container{ padding: 20px 4%; }
  }
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 9em;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto 20px;
}

.testimonials .testimonial-item p.user {
  font-size: 0.9em;
  position: relative;
  width: max-content;
  float: right;
  text-align: left;
}

.testimonials .testimonial-item p.user span {
  display: block;
}
.testimonials .testimonial-item p.user span:first-child {
  color: var(--dark-blue);
}
.testimonials .testimonial-item p.user span:first-child::before {
  position: absolute;
  left: -25px;
  content: '-';
  font-size: 2em;
  line-height: 0.8em;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #304a70;
  font-size: 16px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--dark-blue);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--dark-blue);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #36343a;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686470;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit], .quick-link {
  background: var(--dark-blue);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.quick-link {
  font-size: 1em;
  padding: 5px 30px;
  margin-top: 20px;
  transition: 2s all;
}
.quick-link i{ font-size: 0.8em; }
.quick-link:hover i{ margin-left: 2px; }
.contact .php-email-form button[type=submit]:hover {
  background: #00805d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f6f7;
  margin-top: 100px;
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #f1f0f2;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9f8f9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00c28e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--dark-blue);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--dark-blue);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--dark-blue);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1360px){ .container { max-width: 1280px;  }}
@media screen and (min-width: 1480px){ .container { max-width: 1360px;  }}
@media screen and (min-width: 1620px){ .container { max-width: 1480px;  }}
@media screen and (min-width: 1800px){ .container { max-width: 1680px;  }}
@media screen and (max-width: 992px){
  body{ font-size: calc(10px + 1vw); }
}
@media screen and (max-width: 767px){
  body{ font-size: calc(14px + 1vw); }
  .content h2{ font-size: 1.6em; line-height: 1.2; }
  .content h3{ font-size: 1.4em; line-height: 1.2; }
  .counts .counters span {
    font-size: 2em;
    font-family: "Fira Sans Bold", "helvetica neue",Arial,sans-serif; 
  }
  #about {
    background-size: 150%;
    padding-bottom: 30vw;
  }
  .project-details{ justify-content: start; padding-left: 20px; }
  .project-details p.location::before,
  .project-details p.size::before,
  .project-details p.status::before,
  .project-details p.pre-launch::before { width: 20px; height: 20px; margin-right: 10px; }
  .project-img-carousel{ min-height: 300px; }
  .cta{ padding: 122px 0; }
  .about .features{ padding-top: 0; }
  .about .features h4 { font-size: 1.3em; }
  #our-story { background-size: 170vw; }
  #our-story .md-profile {
    padding-top: 39vw;
    align-items: center;
    text-align: center;
  }
}



.caption, .slick-slide::before, .slick-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slick-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0 5%;
  text-align: left;
  z-index: 1;
}
header h1 {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  padding-top: 18px;
}
header nav {
  display: inline-block;
  float: right;
}
header nav ul li {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
}
header nav ul li a {
  display: block;
  padding: 24px 15px;
}
header nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.18);
}