:root {
    --green: #4ab848;
  }
  *{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
  }
  html{
    height:100%
  }
  body {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: Barlow, sans-serif;
    color: #535c62;
    font-size: 18px;
    line-height: 170%;
    font-weight: 400;
    letter-spacing: 0.13px;
    margin:0;
    min-height:100%;
    background-color:#fff;
}
   
h1 {
    margin-top: 0px;
    margin-bottom: 28px;
    color: #101b22;
    font-size: 70px;
    line-height: 100%;
    font-weight: 500;
    letter-spacing: -1.4px;
  }
  
  h2 {
    margin-top: 0px;
    margin-bottom: 26px;
    color: #101b22;
    font-size: 58px;
    line-height: 107%;
    font-weight: 500;
    letter-spacing: -1.4px;
  }
  
  h3 {
    margin-top: 0px;
    margin-bottom: 22px;
    color: #101b22;
    font-size: 46px;
    line-height: 110%;
    font-weight: 500;
    letter-spacing: -1.4px;
  }
  
  h4 {
    margin-top: 0px;
    margin-bottom: 20px;
    color: #101b22;
    font-size: 36px;
    line-height: 115%;
    font-weight: 500;
    letter-spacing: -1.2px;
  }
  
  h5 {
    margin-top: 0px;
    margin-bottom: 18px;
    color: #101b22;
    font-size: 26px;
    line-height: 120%;
    font-weight: 500;
    letter-spacing: -0.8px;
  }
  
  h6 {
    margin-top: 0px;
    margin-bottom: 16px;
    color: #101b22;
    font-size: 18px;
    line-height: 130%;
    font-weight: 500;
    letter-spacing: -0.2px;
  }
  
  p {
    margin-bottom: 28px;
  }
  
  a {
    color: #101b22;
    text-decoration: underline;
  }
  
  ul {
    margin-top: 0px;
    margin-bottom: 28px;
    padding-left: 34px;
  }
  
  ol {
    margin-top: 0px;
    margin-bottom: 28px;
    padding-left: 34px;
  }
  
  li {
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 7px;
  }
  
.inline-block{
    max-width:100%;
    display:inline-block
  }
  .white {
    color: white !important;
    text-decoration: none !important;
  }
  .green{
    color: var(--green);
  }
  .text-center{
    text-align:center!important
  }
  .text-right{
    text-align: start !important
  }

/*==========================================================================
                                    NAVBAR
========================================================================== */
.float-button {
  text-decoration: none;
  position: fixed;
  padding: 10px;
  bottom: 30px;
  right: 30px;
  color: #fff;
  background-color:var(--green);
  border-radius: 25px;
  z-index: 100;
  font-family: Arial;
  font-size: 40px;
  box-shadow: 1px 2px 5px 2px rgba(30,30,30,0.3);
  border: none;
  cursor: pointer;
  display: none;
}
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  margin: 40% auto;
  padding: 20px;
  width: 85%;
  border-radius: 8px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover,
.close:focus {
  color: #ff5b5b;
}


.navbar {
    position: fixed;
    left: 22px;
    top: 24px;
    right: 22px;
    display: flex;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 10px 70px 0 rgba(16, 27, 34, 0.08);
    transform: translateY(5px);
    animation: navbaranimation 0.8s ease-in 0.8s 1 normal forwards;
    z-index:1000

  }

  .nav-block {
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .nav {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .logo {
    height: 45px;
    font-family: proxima-nova, sans-serif;
  }
  
  .brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin-right: 18px;
    margin-left: 18px;
    padding: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    position:relative;
    float:left;
    text-decoration:none;
    color:#333333
  }
  
  .nav-menu {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  
  .nav-link {
    display: flex;
    padding: 27px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    opacity: 1;
    color: #101b22;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position:relative;
    display:inline-block;
    vertical-align:top;
    text-decoration:none;
    color:#222222;
    padding:20px;
    text-align:left;
    margin-left:auto;
    margin-right:auto
  }
  
  .nav-link:hover {
    opacity: 0.65;
  }
  
  .nav-link.w--current {
    color: #101b22;
  }
  
  .nav-button {

    display: flex;
    margin-left: 15px;
    padding: 27px 35px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color:  #4ab848;
    text-decoration: none;
  }

  @media screen and (max-width:767px){
    .w-nav-brand{
        padding-left:10px
    }
  }

  .dropdown {
    float: left;
    overflow: hidden;
  }
  .dropdown {
    float: left;
    overflow: hidden;
  }
    .dropdown .dropbtn {
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
    display: block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content1, .dropdown-content2, .dropdown-content3 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 300px;
    right: -300px;
    top: 11px;
    box-shadow: 14px 14px 20px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .dropdown-content1 a, .dropdown-content2 a, .dropdown-content2 a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  .dropdown-content2 a:hover {
    background-color: #ddd;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown1:hover .dropdown-content1 {
    display: block;
  }
  .dropdown2:hover .dropdown-content2 {
    display: block;
  }
  .dropdown3:hover .dropdown-content3 {
    display: block;
  }
  .text-button-contact {
    color: #fff;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .icon-button {
    width: 4px;
    height: 14px;
    max-width: none;
    margin-left: 5px;
    color: white;
    -o-object-fit: contain;
    object-fit: contain;
  }
/*==========================================================================
                                    sevtion top
========================================================================== */


  .section-hero-a {
    width: 100%;
    height: 97vh;
     position: relative;
     z-index: 10;
     display: flex;
     width: 100%;
     min-height: 85vh;
     margin-bottom: 14px;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -webkit-flex-direction: column;
     flex-direction: column;
     -webkit-box-pack: end;
     -webkit-justify-content: flex-end;
     justify-content: flex-end;
     -webkit-box-align: center;
     -webkit-align-items: center;
     align-items: center;
     background-color: #f0f6f8;
   }

   .block-hero-a {
    position: relative;
    z-index: 20;
    display: flex;
    width: 100%;
    padding: 140px 50px 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    animation: fade-in 0.8s ease-in 0.8s 1 normal forwards;
    opacity: 0;

  }
  .hero-a {
    z-index: 20;
    width: 100%;
    max-width: 1200px;
   animation: textheaderanimation 0.8s ease-in 0.8s 1 normal forwards;

  }
  .heading-hero {
    max-width: 730px;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    opacity: 0;
    animation: textheaderanimation 0.8s ease-in 0.8s 1 normal forwards;

  }
  .heading-child {
   max-width: 730px;
   color: #fff;
   font-size: 30px;
   display: flex;
    align-items: flex-end;
 }
 .centered-ctrl {
  margin-left: 5px;
  margin-right: 5px;
  } 
 .heading-hero.size-vw {
    font-size: 3.5vw;
  }
  
  .heading-hero.dark {
    color: #101b22;
  }
  
  .grid-hero-services {
    display: grid;
    margin-top: 80px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-auto-columns: 2fr;
  }

  
  .text-hero-service {
    color: #fff;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .link-hero-service {
    position: relative;
    width: 100%;
    text-decoration: none;
  }
  .grid-hero-services {
    margin-top: 80px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
  }
  .hero-service {

    display: flex;
    padding-bottom: 12px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .icon-arrow {
    position: relative;
    display: flex;
    color: white;
    height: 10px;
    margin-left: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .icon-arrow-b {
    position: absolute;
    width: 10px;
    height: 10px;
    max-width: none;
    
  }
  .line-block {
    position: relative;
    display: flex;
    width: 100%;
    height: 3px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .line-full {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    background-color: white;
  }
     
  .line-1px {
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  
  .line-1px.dark {
    background-color: #101b22;
  }
  
  .line-1px.opacity {
    background-color: #101b22;
    opacity: 0.2;
  }

  .w-background-video{
    position:relative;
    overflow:hidden;
    height:500px;
    color:white;
    opacity: 0;
    animation: fade-in 0.8s ease-in 0s 1 normal forwards;

  }
  .w-background-video>div{
    background-image: url("../images/gccbanner.jpg");
    background-size:cover;
    background-position:50% 50%;
    position:absolute;
    margin:auto;
    width:100%;
    height:100%;
    right:-100%;
    bottom:-100%;
    top:-100%;
    left:-100%;
    object-fit:cover;
    z-index:-100
    
  }
  .background-video {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
  }
  .w-background-video>div::-webkit-media-controls-start-playback-button{
    display:none !important;
    -webkit-appearance:none
  }
  

  /*==========================================================================
                                    sevtion about
========================================================================== */
.section {
    display: flex;
    width: 100%;
    margin-bottom: 14px;
    padding: 50px 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .section.background {
    background-color: #f0f6f8;
  }
  .content {
    width: 100%;
    max-width: 1200px;
  }
  .grid-2-columns {
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
     display: grid;
     grid-auto-columns: 2fr;
     grid-template-columns: 1fr 1fr;
  }
  .image-block {
    position: relative;
    width: 100%;
  }
  .image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    scale: 0.8; opacity: 0;
    animation: fade-in linear forwards;
     animation-timeline: view();
     animation-range: 125px 250px;
    
  }
  .image-absolute {
    position: absolute;
    left: auto;
    top: auto;
    right: -3%;
    bottom: -3%;
    width: 54%;
    height: 60%;
    box-shadow: 0 35px 120px 0 rgba(16, 27, 34, 0.25);
    -o-object-fit: cover;
    object-fit: cover;
    scale: 0.8; opacity: 0;
    animation: fade-in linear forwards;
     animation-timeline: view();
     animation-range: 125px 250px;
  }
  .block-right {
    display: flex;
    padding: 45px 3% 45px 10%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    animation: fade-right 2s ease 0s 1 normal forwards;
     animation-timeline: view();
     animation-range: normal 70%;
  }
  .subtitle {
    display: flex;
    margin-bottom: 8px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
     
  .line-subtitle {
    width: 27px;
    height: 1px;
    background-color: #1f4052;
    color: #fff;
  }
  
  .line-subtitle.white {
    background-color: #fff;
  }
  
  .line-subtitle.center {
    width: 14px;
  }
  
  .text-subtitle {
    margin-left: 12px;
    color: #1f4052;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .text-subtitle.white {
    color: #fff;
  }
  
  .text-subtitle.center {
    margin-right: 12px;
  }
  .paragraph {
    max-width: 500px;
    margin-bottom: 36px;
  }
  .paragraph.white {
    color: #ffffff;
  }
  
  .paragraph.dark {
    color: #fff;
  }
  .block-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 45px 10% 45px 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    animation: fade-left 2s ease 0s 1 normal forwards;
     animation-timeline: view();
     animation-range: normal 70%;
  }
  .heading {
    max-width: 1000px;
    color: #1f4052;
    font-size: 55px;
    font-weight: 300;
  }

    /*==========================================================================
                                    section services
========================================================================== */
.section-full {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .grid-full {
    width: 100%;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    background-color: #101b22;
    display: grid;
    grid-auto-columns: 2fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
  }
     
  .image-bg-services {
    width: 100%;
    min-height: 670px;
    background-image: url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg"), -webkit-gradient(linear, right top, left top, from(#101b22), color-stop(30%, transparent)), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
    background-image: url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg"), linear-gradient(270deg, #101b22, transparent 30%), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
    background-position: 65% 50%, 0px 0px, 60% 50%;
    background-size: cover, auto, cover;
    background-repeat: no-repeat, repeat, repeat;
    background-attachment: fixed, scroll, scroll;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .block-full {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 160px 10%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .services-grid {
    grid-column: 2 / 4;
  }
  .block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 550px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .services-block {
    width: 100% !important;
    max-width: 100% !important;
   }
   .full-size{
    width: 100% !important;
    max-width: 100% !important;
  
  }
  .box-header{
  background-color: #4ab848;
  border-radius: 2px;
  
}
.small-font {
    font-size: 0.9rem !important;
  }
  .dot {
    color: #7db748;
  }
  .block-full.newblock-full {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: white;
  }
  .block-full-copy {
    display: flex;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .col-image {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;

  }
  .col-lg-image {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;

  }
  .block-full-copy.newblock-full {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: white;
  }
  
  .block-full-copy.newblock-full-copy {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: white;
  }

  .image-2 {
    overflow: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .image-2:hover{
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  }
 
  .button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 23px 35px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #d6c1ad;
    text-decoration: none;
  }
  .text-button {
    color: #1f4052;
    font-size: 14px;
    line-height: 130%;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .paragraph-testimonials {
    max-width: 500px;
    margin-bottom: 36px;
    color: #95a3b2;
    font-size: 20px;
    line-height: 170%;
    font-style: italic;
  }

  .grid-2-columns-full {
    width: 100%;
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    grid-template-rows: auto;
     display: grid;
     grid-auto-columns: 2fr;
     -ms-grid-columns: 1fr 1fr;
     grid-template-columns: 1fr 1fr;
     -ms-grid-rows: auto auto;
     grid-template-rows: auto auto;
  }
     
   .image-bg-banner {
     background-image: url("../images/ndt.jpg");
     background-position: 50% 50%;
     background-size: cover;
   }
   
   .block-banner {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     padding: 80px 17%;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
     -webkit-flex-direction: column;
     -ms-flex-direction: column;
     flex-direction: column;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: start;
     -webkit-align-items: flex-start;
     -ms-flex-align: start;
     align-items: flex-start;
     background-color: #1f4052;
   }
   
   .heading-banner {
     max-width: 700px;
     margin-bottom: 38px;
     color: #fff;
     font-weight: 300;
   }
   .bold-text-2 {
    color: #fff;
  }
  .button.accent {
    background-color: #fff;
  }
  .section-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: auto;
    padding: 25px 50px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #4ab848;
  }
  .container {
    position: relative;
    margin-top: 24px;
  }
  .map-container {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .map{
    width: 100%;
    height: 100%;
  }
  .footer-down-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
   justify-content: center;
    margin-top: 40px;
    padding-top: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: space-around;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
    border-top: 1px solid white;
  }
  .service-logo{
    transform: translateY(6px);
  }
  
  .footer-down {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .paragraph-footer {
    color: white;
  }

  

  .toggle_btn{
    color: var(--green);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    width: 100%;    
  }
  .open{
    display: block !important;
  }

  .menu-button {
    padding: 20px;
    background-color: #fdc23e;
    -webkit-transition: color 250ms cubic-bezier(.215, .61, .355, 1), background-color 250ms cubic-bezier(.215, .61, .355, 1);
    transition: color 250ms cubic-bezier(.215, .61, .355, 1), background-color 250ms cubic-bezier(.215, .61, .355, 1);
    color: #101b22;
    font-size: 22px;
    line-height: 100%;
  }
    .w-nav-overlay{
        overflow:hidden;
        display: none;
        top:100%;
        left:0;
        right:0;
        width:100%;
        height: 100%;
        transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        
      }

      .nav-open{
        display: block !important;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:white;
        text-align:center;
        overflow:visible;
        min-width:200px
      

      }
.link-open{
    position: relative;
    display: flex;
}
.section-top-img {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 75vh;
  margin-bottom: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #f0f6f8;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: fade-in 0.8s ease-in 0s 1 normal forwards;
}

.block-top-img {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  padding: 140px 50px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}
.background-image {
    
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.block-heading-text {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;  
}
.content.slim {
  max-width: 770px;
}
.content.medium {
 max-width: 1000px;
}
.grid-image-about {
  width: 100%;
  height: 740px;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  display: grid;
  grid-auto-columns: 2fr;
}
.background-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #011627;
  opacity: 0.5;
}
.header-contenair{
  display: flex;
  margin-bottom: 8%;
  position: relative;
 }
 .map-container {
  width: 100%;
  height: 100%;
  display: flex;
}
.map{
  width: 100%;
  height: 100%;
}
.map-iframe{
  height: 480px;
  transition-duration: 1s;
}

.image-bg-about-a1 {
  background-position: 50% 50%;
  background-size: cover;
  grid-row-start: span 2;
  grid-row-end: span 2;
  grid-column-start:span 2;
}

.image-bg-about-a2 {
  background-position: 50% 50%;
  background-size: cover;
  grid-row-start: span 2;
  grid-row-end: span 2;
  grid-column-start:span 1;
}

.image-bg-about-a3 {
  background-position: 50% 50%;
  background-size: cover;
}

.image-bg-about-a4 {
  background-position: 50% 50%;
  background-size: cover;
}
.section-top-img.background1{
  background-image: url(../images/contact.jpg) !important;
}

.section-top-img.background2{
  background-image: url(../images/nos_references.jpg) !important;
}

.section-top-img.background3{
  background-image: url(../images/consulting.jpg) !important;
}
label{
  display:block;
  margin-bottom:5px;
  font-weight:bold
}
.form-control{
  display:block;
  width:100%;
  padding:.375rem .75rem;
  font-size:1rem;
  font-weight:400;
  line-height:1.5;
  color:#212529;
  background-color:#fff;
  background-clip:padding-box;
  border:1px solid #ced4da;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  border-radius:.25rem;
  transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .form-control{
      transition:none
  }
}
.form-control[type=file]{
  overflow:hidden
}
.form-control[type=file]:not(:disabled):not([readonly]){
  cursor:pointer
}
.form-control:focus{
  color:#212529;
  background-color:#fff;
  border-color:#86b7fe;
  outline:0;
  box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}
.form-control::-webkit-date-and-time-value{
  height:1.5em
}
.form-control::-moz-placeholder{
  color:#6c757d;
  opacity:1
}
.form-control::placeholder{
  color:#6c757d;
  opacity:1
}
.form-control:disabled,.form-control[readonly]{
  background-color:#e9ecef;
  opacity:1
}
.form-control::file-selector-button{
  padding:.375rem .75rem;
  margin:-.375rem -.75rem;
  -webkit-margin-end:.75rem;
  margin-inline-end:.75rem;
  color:#212529;
  background-color:#e9ecef;
  pointer-events:none;
  border-color:inherit;
  border-style:solid;
  border-width:0;
  border-inline-end-width:1px;
  border-radius:0;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .form-control::file-selector-button{
      transition:none
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button{
  background-color:#dde0e3
}
.form-control::-webkit-file-upload-button{
  padding:.375rem .75rem;
  margin:-.375rem -.75rem;
  -webkit-margin-end:.75rem;
  margin-inline-end:.75rem;
  color:#212529;
  background-color:#e9ecef;
  pointer-events:none;
  border-color:inherit;
  border-style:solid;
  border-width:0;
  border-inline-end-width:1px;
  border-radius:0;
  -webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .form-control::-webkit-file-upload-button{
      -webkit-transition:none;
      transition:none
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{
  background-color:#dde0e3
}
.form-control-plaintext{
  display:block;
  width:100%;
  padding:.375rem 0;
  margin-bottom:0;
  line-height:1.5;
  color:#212529;
  background-color:transparent;
  border:solid transparent;
  border-width:1px 0
}
.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{
  padding-right:0;
  padding-left:0
}
.form-control-sm{
  min-height:calc(1.5em + (.5rem + 2px));
  padding:.25rem .5rem;
  font-size:.875rem;
  border-radius:.2rem
}
.form-control-sm::file-selector-button{
  padding:.25rem .5rem;
  margin:-.25rem -.5rem;
  -webkit-margin-end:.5rem;
  margin-inline-end:.5rem
}
.form-control-sm::-webkit-file-upload-button{
  padding:.25rem .5rem;
  margin:-.25rem -.5rem;
  -webkit-margin-end:.5rem;
  margin-inline-end:.5rem
}
.form-control-lg{
  min-height:calc(1.5em + (1rem + 2px));
  padding:.5rem 1rem;
  font-size:1.25rem;
  border-radius:.3rem
}
.form-control-lg::file-selector-button{
  padding:.5rem 1rem;
  margin:-.5rem -1rem;
  -webkit-margin-end:1rem;
  margin-inline-end:1rem
}
.form-control-lg::-webkit-file-upload-button{
  padding:.5rem 1rem;
  margin:-.5rem -1rem;
  -webkit-margin-end:1rem;
  margin-inline-end:1rem
}
textarea.form-control{
  min-height:calc(1.5em + (.75rem + 2px))
}
textarea.form-control-sm{
  min-height:calc(1.5em + (.5rem + 2px))
}
textarea.form-control-lg{
  min-height:calc(1.5em + (1rem + 2px))
}
.form-control-color{
  max-width:3rem;
  height:auto;
  padding:.375rem
}
.form-control-color:not(:disabled):not([readonly]){
  cursor:pointer
}
.form-control-color::-moz-color-swatch{
  height:1.5em;
  border-radius:.25rem
}
.form-control-color::-webkit-color-swatch{
  height:1.5em;
  border-radius:.25rem
}
.form-select{
  display:block;
  width:100%;
  padding:.375rem 2.25rem .375rem .75rem;
  -moz-padding-start:calc(0.75rem - 3px);
  font-size:1rem;
  font-weight:400;
  line-height:1.5;
  color:#212529;
  background-color:#fff;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right .75rem center;
  background-size:16px 12px;
  border:1px solid #ced4da;
  border-radius:.25rem;
  transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none
}
@media (prefers-reduced-motion:reduce){
  .form-select{
      transition:none
  }
}
.form-select:focus{
  border-color:#86b7fe;
  outline:0;
  box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}
.form-select[multiple],.form-select[size]:not([size="1"]){
  padding-right:.75rem;
  background-image:none
}
.form-select:disabled{
  background-color:#e9ecef
}
.form-select:-moz-focusring{
  color:transparent;
  text-shadow:0 0 0 #212529
}
.form-select-sm{
  padding-top:.25rem;
  padding-bottom:.25rem;
  padding-left:.5rem;
  font-size:.875rem
}
.form-select-lg{
  padding-top:.5rem;
  padding-bottom:.5rem;
  padding-left:1rem;
  font-size:1.25rem
}
.form-check{
  display:block;
  min-height:1.5rem;
  padding-left:1.5em;
  margin-bottom:.125rem
}
.form-check .form-check-input{
  float:left;
  margin-left:-1.5em
}
.form-check-input{
  width:1em;
  height:1em;
  margin-top:.25em;
  vertical-align:top;
  background-color:#fff;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  border:1px solid rgba(0,0,0,.25);
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  -webkit-print-color-adjust:exact;
  color-adjust:exact
}
.form-check-input[type=checkbox]{
  border-radius:.25em
}
.form-check-input[type=radio]{
  border-radius:50%
}
.form-check-input:active{
  filter:brightness(90%)
}
.form-check-input:focus{
  border-color:#86b7fe;
  outline:0;
  box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}
.form-check-input:checked{
  background-color:#0d6efd;
  border-color:#0d6efd
}
.form-check-input:checked[type=checkbox]{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}
.form-check-input:checked[type=radio]{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}
.form-check-input[type=checkbox]:indeterminate{
  background-color:#0d6efd;
  border-color:#0d6efd;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}
.form-check-input:disabled{
  pointer-events:none;
  filter:none;
  opacity:.5
}
.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{
  opacity:.5
}
.form-switch{
  padding-left:2.5em
}
.form-switch .form-check-input{
  width:2em;
  margin-left:-2.5em;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position:left center;
  border-radius:2em;
  transition:background-position .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .form-switch .form-check-input{
      transition:none
  }
}
.form-switch .form-check-input:focus{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
}
.form-switch .form-check-input:checked{
  background-position:right center;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}
.form-check-inline{
  display:inline-block;
  margin-right:1rem
}
.btn-check{
  position:absolute;
  clip:rect(0,0,0,0);
  pointer-events:none
}
.btn-check:disabled+.btn,.btn-check[disabled]+.btn{
  pointer-events:none;
  filter:none;
  opacity:.65
}
.form-range{
  width:100%;
  height:1.5rem;
  padding:0;
  background-color:transparent;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none
}
.form-range:focus{
  outline:0
}
.form-range:focus::-webkit-slider-thumb{
  box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
}
.form-range:focus::-moz-range-thumb{
  box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
}
.form-range::-moz-focus-outer{
  border:0
}
.form-range::-webkit-slider-thumb{
  width:1rem;
  height:1rem;
  margin-top:-.25rem;
  background-color:#0d6efd;
  border:0;
  border-radius:1rem;
  -webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance:none;
  appearance:none
}
@media (prefers-reduced-motion:reduce){
  .form-range::-webkit-slider-thumb{
      -webkit-transition:none;
      transition:none
  }
}
.form-range::-webkit-slider-thumb:active{
  background-color:#b6d4fe
}
.form-range::-webkit-slider-runnable-track{
  width:100%;
  height:.5rem;
  color:transparent;
  cursor:pointer;
  background-color:#dee2e6;
  border-color:transparent;
  border-radius:1rem
}
.form-range::-moz-range-thumb{
  width:1rem;
  height:1rem;
  background-color:#0d6efd;
  border:0;
  border-radius:1rem;
  -moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -moz-appearance:none;
  appearance:none
}
@media (prefers-reduced-motion:reduce){
  .form-range::-moz-range-thumb{
      -moz-transition:none;
      transition:none
  }
}
.form-range::-moz-range-thumb:active{
  background-color:#b6d4fe
}
.form-range::-moz-range-track{
  width:100%;
  height:.5rem;
  color:transparent;
  cursor:pointer;
  background-color:#dee2e6;
  border-color:transparent;
  border-radius:1rem
}
.form-range:disabled{
  pointer-events:none
}
.form-range:disabled::-webkit-slider-thumb{
  background-color:#adb5bd
}
.form-range:disabled::-moz-range-thumb{
  background-color:#adb5bd
}
.form-floating{
  position:relative
}
.form-floating>.form-control,.form-floating>.form-select{
  height:calc(3.5rem + 2px);
  line-height:1.25
}
.form-floating>label{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  padding:1rem .75rem;
  pointer-events:none;
  border:1px solid transparent;
  transform-origin:0 0;
  transition:opacity .1s ease-in-out,transform .1s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .form-floating>label{
      transition:none
  }
}
.form-floating>.form-control{
  padding:1rem .75rem
}
.form-floating>.form-control::-moz-placeholder{
  color:transparent
}
.form-floating>.form-control::placeholder{
  color:transparent
}
.form-floating>.form-control:not(:-moz-placeholder-shown){
  padding-top:1.625rem;
  padding-bottom:.625rem
}
.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){
  padding-top:1.625rem;
  padding-bottom:.625rem
}
.form-floating>.form-control:-webkit-autofill{
  padding-top:1.625rem;
  padding-bottom:.625rem
}
.form-floating>.form-select{
  padding-top:1.625rem;
  padding-bottom:.625rem
}
.form-floating>.form-control:not(:-moz-placeholder-shown)~label{
  opacity:.65;
  transform:scale(.85) translateY(-.5rem) translateX(.15rem)
}
.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{
  opacity:.65;
  transform:scale(.85) translateY(-.5rem) translateX(.15rem)
}
.form-floating>.form-control:-webkit-autofill~label{
  opacity:.65;
  transform:scale(.85) translateY(-.5rem) translateX(.15rem)
}
.input-group{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items:stretch;
  width:100%
}
.input-group>.form-control,.input-group>.form-select{
  position:relative;
  flex:1 1 auto;
  width:1%;
  min-width:0
}
.input-group>.form-control:focus,.input-group>.form-select:focus{
  z-index:3
}
.input-group .btn{
  position:relative;
  z-index:2
}
.input-group .btn:focus{
  z-index:3
}
.input-group-text{
  display:flex;
  align-items:center;
  padding:.375rem .75rem;
  font-size:1rem;
  font-weight:400;
  line-height:1.5;
  color:#212529;
  text-align:center;
  white-space:nowrap;
  background-color:#e9ecef;
  border:1px solid #ced4da;
  border-radius:.25rem
}
.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{
  padding:.5rem 1rem;
  font-size:1.25rem;
  border-radius:.3rem
}
.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{
  padding:.25rem .5rem;
  font-size:.875rem;
  border-radius:.2rem
}
.input-group-lg>.form-select,.input-group-sm>.form-select{
  padding-right:3rem
}
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){
  border-top-right-radius:0;
  border-bottom-right-radius:0
}
.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){
  border-top-right-radius:0;
  border-bottom-right-radius:0
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
  margin-left:-1px;
  border-top-left-radius:0;
  border-bottom-left-radius:0
}
.valid-feedback{
  display:none;
  width:100%;
  margin-top:.25rem;
  font-size:.875em;
  color:#198754
}
.valid-tooltip{
  position:absolute;
  top:100%;
  z-index:5;
  display:none;
  max-width:100%;
  padding:.25rem .5rem;
  margin-top:.1rem;
  font-size:.875rem;
  color:#fff;
  background-color:rgba(25,135,84,.9);
  border-radius:.25rem
}
.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{
  display:block
}
.form-control.is-valid,.was-validated .form-control:valid{
  border-color:#198754;
  padding-right:calc(1.5em + .75rem);
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right calc(.375em + .1875rem) center;
  background-size:calc(.75em + .375rem) calc(.75em + .375rem)
}
.form-control.is-valid:focus,.was-validated .form-control:valid:focus{
  border-color:#198754;
  box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.was-validated textarea.form-control:valid,textarea.form-control.is-valid{
  padding-right:calc(1.5em + .75rem);
  background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}
.form-select.is-valid,.was-validated .form-select:valid{
  border-color:#198754
}
.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{
  padding-right:4.125rem;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position:right .75rem center,center right 2.25rem;
  background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}
.form-select.is-valid:focus,.was-validated .form-select:valid:focus{
  border-color:#198754;
  box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.form-check-input.is-valid,.was-validated .form-check-input:valid{
  border-color:#198754
}
.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{
  background-color:#198754
}
.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{
  box-shadow:0 0 0 .25rem rgba(25,135,84,.25)
}
.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{
  color:#198754
}
.form-check-inline .form-check-input~.valid-feedback{
  margin-left:.5em
}
.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{
  z-index:1
}
.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{
  z-index:3
}
.invalid-feedback{
  display:none;
  width:100%;
  margin-top:.25rem;
  font-size:.875em;
  color:#dc3545
}
.invalid-tooltip{
  position:absolute;
  top:100%;
  z-index:5;
  display:none;
  max-width:100%;
  padding:.25rem .5rem;
  margin-top:.1rem;
  font-size:.875rem;
  color:#fff;
  background-color:rgba(220,53,69,.9);
  border-radius:.25rem
}
.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{
  display:block
}
.form-control.is-invalid,.was-validated .form-control:invalid{
  border-color:#dc3545;
  padding-right:calc(1.5em + .75rem);
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat:no-repeat;
  background-position:right calc(.375em + .1875rem) center;
  background-size:calc(.75em + .375rem) calc(.75em + .375rem)
}
.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{
  border-color:#dc3545;
  box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{
  padding-right:calc(1.5em + .75rem);
  background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}
.form-select.is-invalid,.was-validated .form-select:invalid{
  border-color:#dc3545
}
.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{
  padding-right:4.125rem;
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position:right .75rem center,center right 2.25rem;
  background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}
.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{
  border-color:#dc3545;
  box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.form-check-input.is-invalid,.was-validated .form-check-input:invalid{
  border-color:#dc3545
}
.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{
  background-color:#dc3545
}
.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{
  box-shadow:0 0 0 .25rem rgba(220,53,69,.25)
}
.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{
  color:#dc3545
}
.form-check-inline .form-check-input~.invalid-feedback{
  margin-left:.5em
}
.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{
  z-index:2
}
.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{
  z-index:3
}
table{
  caption-side:bottom;
  border-collapse:collapse
}
caption{
  padding-top:.5rem;
  padding-bottom:.5rem;
  color:#6c757d;
  text-align:left
}
th{
  text-align:inherit;
  text-align:-webkit-match-parent
}
tbody,td,tfoot,th,thead,tr{
  border-color:inherit;
  border-style:solid;
  border-width:0
}
.table-bordered>:not(caption)>*{
  border-width:1px 0
}
.table-bordered>:not(caption)>*>*{
  border-width:0 1px;
  font-size: 16px;
  
}
.table{
  --bs-table-bg:transparent;
  --bs-table-accent-bg:transparent;
  --bs-table-striped-color:#212529;
  --bs-table-striped-bg:rgba(0, 0, 0, 0.05);
  --bs-table-active-color:#212529;
  --bs-table-active-bg:rgba(0, 0, 0, 0.1);
  --bs-table-hover-color:#212529;
  --bs-table-hover-bg:rgba(0, 0, 0, 0.075);
  width:100%;
  margin-bottom:1rem;
  color:#212529;
  vertical-align:top;
  border-color:#dee2e6
}
.table>thead{
  vertical-align:bottom
}

.table>:not(:last-child)>:last-child>*{
  border-bottom-color:currentColor
}

.table>:not(caption)>*>*{
  padding:.5rem .5rem;
  background-color:var(--bs-table-bg);
  border-bottom-width:1px;
  box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)
}
.table-bordered>:not(caption)>*>*{
  border-width:0 1px
}




.btn{
  display:inline-block;
  font-weight:400;
  line-height:1.5;
  color:#212529;
  text-align:center;
  text-decoration:none;
  vertical-align:middle;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  user-select:none;
  background-color:transparent;
  border:1px solid transparent;
  padding:.375rem .75rem;
  font-size:1rem;
  border-radius:.25rem;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}
@media (prefers-reduced-motion:reduce){
  .btn{
      transition:none
  }
}
.btn:hover{
  color:#212529
}
.btn-check:focus+.btn,.btn:focus{
  outline:0;
  box-shadow:0 0 0 .25rem rgba(13,110,253,.25)
}
.btn.disabled,.btn:disabled,fieldset:disabled .btn{
  pointer-events:none;
  opacity:.65
}


.btn-success{
  color:#fff;
  background-color:#4ab848;
  border-color:#4ab848
}
.btn-success:hover{
  color:#fff;
  background-color:#368b35;
  border-color:#368b35
}
.btn-check:focus+.btn-success,.btn-success:focus{
  color:#fff;
  background-color:#368b35;
  border-color:#368b35;
  box-shadow:0 0 0 .25rem rgba(60,153,110,.5)
}
.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{
  color:#fff;
  background-color:#368b35;
  border-color:#368b35
}
.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{
  box-shadow:0 0 0 .25rem rgba(60,153,110,.5)
}

.dark-blue{
  color: #535c62;
}
.required-label{
  color: #ff0000;
  font-weight: bold;
}
.back-green{
  background-color: #4ab848;
}
   
   /*==========================================================================
                                    responsive
========================================================================== */
@media screen and (max-width:767px){
    .w-nav-brand{
        padding-left:10px
    }
  }
  @media screen and (max-width:991px){
    .w-nav[data-collapse="medium"] .w-nav-menu{
        display:none
    }
    .w-nav[data-collapse="medium"] .w-nav-button{
        display:block
    }
    .float-button{
      display: flex;
    }

    .section-footer .order-sm-3 {
      padding: 0 !important;
    }
    .heading-hero {
      text-align: center !important;
      font-size: 50px !important;
    }
    .heading-child{
      font-size: 20px !important;
      text-align: center !important;
      justify-content: center !important;
    }


  }

  @media screen and (max-width:767px){
    .w-nav[data-collapse="small"] .w-nav-menu{
        display:none
    }
    .w-nav[data-collapse="small"] .w-nav-button{
        display:block
    }
    .w-nav-brand{
        padding-left:10px
    }
    .float-button{
      display: flex;
    }
  }
  @media screen and (max-width:479px){
    .w-nav[data-collapse="tiny"] .w-nav-menu{
        display:none
    }
    .w-nav[data-collapse="tiny"] .w-nav-button{
        display:block
    }
  }
  @media screen and (max-width:479px){
    .w-tab-link{
        display:block
    }
  }
  
  @media screen and (max-width: 991px) {
    body {
      padding: 10px;
    }
  
    h1 {
      font-size: 60px;
    }
  
    h2 {
      font-size: 48px;
    }
  
    h3 {
      font-size: 38px;
    }
  
    h4 {
      font-size: 30px;
    }
  
    h5 {
      font-size: 24px;
    }
  
    .section-hero-a {
      margin-bottom: 10px;
    }
  
    .brand {
      margin-right: 10px;
      margin-left: 10px;
    }
  
    .nav-menu {
      background-color: #f0f6f8;
    }
  
    .nav-link {
      padding: 20px 10px;
    }
  
    .nav-button {
      margin-left: 0px;
      padding: 20px 10px;
    }
  
    .menu-button {
      padding: 20px;
      background-color: #fdc23e;
      -webkit-transition: color 250ms cubic-bezier(.215, .61, .355, 1), background-color 250ms cubic-bezier(.215, .61, .355, 1);
      transition: color 250ms cubic-bezier(.215, .61, .355, 1), background-color 250ms cubic-bezier(.215, .61, .355, 1);
      color: #101b22;
      font-size: 22px;
      line-height: 100%;
    }
    .grid-full {
      grid-template-columns: 1fr;
    }
  
    .menu-button.w--open {
      background-color: #101b22;
      color: #fff;
    }
  
    .dropdown-toggle {
      padding: 20px 10px;
    }
  
    .dropdown-link {
      text-align: center;
    }
  
    .heading-hero.size-vw {
      margin-bottom: 14px;
    }
  
    .grid-hero-services {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .section {
      margin-bottom: 10px;
      padding: 90px 30px;
    }
  
    .section.padding {
      padding-top: 40px;
      padding-bottom: 50px;
    }
  
    .grid-2-columns {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .grid-stats {
      grid-auto-flow: row;
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      grid-template-columns: 1fr;
    }
  
    .numbers-stats {
      font-size: 48px;
    }
  
    .numbers-stats.full {
      font-size: 58px;
    }
  
    .section-full {
      margin-bottom: 10px;
    }
  
    .block-full {
      padding: 120px 14%;
    }
  
    .image-bg-services {
      background-image: -webkit-gradient(linear, right top, left top, from(#101b22), color-stop(30%, transparent)), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
      background-image: linear-gradient(270deg, #101b22, transparent 30%), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
      background-position: 0px 0px, 60% 50%;
      background-size: auto, cover;
      background-repeat: repeat, repeat;
      background-attachment: scroll, scroll;
    }
  
    .grid-3-columns-full {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .grid-4-columns {
      grid-column-gap: 20px;
      grid-row-gap: 60px;
      grid-template-columns: 1fr 1fr;
    }
  
    .block-heading.top {
      margin-bottom: 30px;
    }
  
    .collection-list-project {
      grid-column-gap: 20px;
    }
  
    .image-project {
      height: 350px;
    }
  
    .image-project.large {
      height: 500px;
    }
  
    .collection-list-blog {
      grid-column-gap: 20px;
    }
  
    .grid-2-columns-full {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .block-banner {
      padding: 70px 14%;
    }
  
    .section-footer {
      padding-top: 90px;
      padding-bottom: 62px;
    }
  
    .block-hero-a {
      padding-right: 30px;
      padding-bottom: 30px;
      padding-left: 30px;
    }
  
    .section-hero-b {
      margin-bottom: 10px;
    }
  
    .grid-hero-b {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .hero-b {
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
    }
  
    .extra {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  
    .block-accent {
      padding: 120px 14%;
    }
  
    .section-hero-c {
      margin-bottom: 10px;
    }
  
    .grid-hero-c {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      grid-template-columns: 1fr;
    }
  
    .block-hero-c {
      padding: 100px 14%;
    }
  
    .grid-image-hero-c {
      min-height: 600px;
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .section-top {
      margin-bottom: 10px;
      padding: 180px 30px 90px;
    }
  
    .grid-services {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .collection-list-blog-page {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .collection-list-project-page {
      grid-column-gap: 20px;
      grid-row-gap: 60px;
    }
  
    .section-top-img {
      min-height: 50vh;
      margin-bottom: 10px;
    }
  
    .block-top-img {
      padding-right: 40px;
      padding-bottom: 15px;
      padding-left: 40px;
    }
  
    .grid-stats-full {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .grid-4-columns-full {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  
    .grid-image-about {
      height: 900px;
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  
    .grid-project-page {
      margin-bottom: 10px;
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .project-content {
      padding: 90px 14% 55px;
    }
  
    .image-project-page {
      position: static;
      height: 80vh;
    }
  
    .utility-page-wrap {
      min-height: 70vh;
      margin-bottom: 10px;
      padding: 180px 30px 90px;
    }
  
    .block-full-copy {
      padding: 120px 14%;
    }
    .mobile-hide{
      display: none;
    }
  }
  
  @media screen and (max-width: 767px) {
    h1 {
      font-size: 52px;
    }
  
    h2 {
      font-size: 40px;
    }
  
    h3 {
      font-size: 32px;
    }
  
    h4 {
      font-size: 26px;
    }
  
    h5 {
      font-size: 22px;
    }
  
    .heading-hero.size-vw {
      font-size: 6vw;
    }
  
    .grid-hero-services {
      margin-top: 50px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .description {
      display: none;
    }
  
    .section {
      padding-top: 70px;
      padding-bottom: 70px;
    }
  
    .section.padding {
      padding-top: 30px;
      padding-bottom: 30px;
    }
  
    .grid-2-columns {
      grid-row-gap: 60px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .grid-stats {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .block-right {
      padding: 0px 7%;
    }
  
    .numbers-stats.full {
      font-size: 40px;
    }
  
    .block-left {
      padding: 0px 7%;
    }
  
    .grid-full {
      grid-template-columns: 1fr;
    }
  
    .block-full {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .image-bg-services {
      min-height: 500px;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#101b22), color-stop(30%, transparent)), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/61db21c1b66b12a3009b79fe_img_3.jpg");
      background-image: linear-gradient(0deg, #101b22, transparent 30%), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/61db21c1b66b12a3009b79fe_img_3.jpg");
      background-position: 0px 0px, 50% 50%;
      background-size: auto, cover;
    }
  
    .grid-3-columns-full {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .image-gallery {
      height: 40vw;
    }
  
    .block-heading {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  
    .block-heading-button {
      margin-left: 0px;
    }
  
    .image-bg-testimonials {
      min-height: 500px;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#101b22), color-stop(30%, transparent)), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/61db21c1b66b1245d89b7a0f_img_4.jpg");
      background-image: linear-gradient(0deg, #101b22, transparent 30%), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/61db21c1b66b1245d89b7a0f_img_4.jpg");
      background-position: 0px 0px, 50% 50%;
      background-size: auto, cover;
    }
  
    .collection-list-project {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .link-image-project {
      margin-bottom: 20px;
    }
  
    .image-project {
      height: 450px;
    }
  
    .heading-project {
      max-width: none;
    }
  
    .text-project-type {
      margin-bottom: 6px;
    }
  
    .collection-list-blog {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .text-blog-date {
      margin-bottom: 6px;
    }
  
    .heading-blog {
      max-width: none;
    }
  
    .paragraph-summary {
      max-width: none;
    }
  
    .grid-2-columns-full {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .image-bg-banner {
      height: 300px;
    }
  
    .block-banner {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  
    .section-footer {
      padding: 70px 14% 50px;
    }
  
    .grid-footer {
      grid-row-gap: 50px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .footer-down-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
    }
  
    .footer-down {
      padding-top: 8px;
      padding-bottom: 8px;
    }
  
    .heading-footer {
      margin-bottom: 16px;
    }
  
    .grid-hero-b {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  
    .extra {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .block-accent {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .image-bg-accent {
      min-height: 400px;
    }
  
    .image-services {
      height: 300px;
    }
  
    .block-hero-c {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .section-top {
      padding-top: 170px;
      padding-bottom: 70px;
    }
  
    .grid-services {
      grid-row-gap: 30px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .services-page {
      min-height: 550px;
    }
  
    .collection-list-blog-page {
      grid-row-gap: 30px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .image-blog {
      height: 300px;
    }
  
    .collection-list-project-page {
      grid-row-gap: 55px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .form {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .image-bg-map {
      min-height: 500px;
    }
  
    .grid-contacts {
      grid-row-gap: 30px;
    }
  
    .image-bg-about {
      min-height: 400px;
    }
  
    .grid-image-about {
      height: 700px;
    }
  
    .project-content {
      padding-top: 70px;
      padding-bottom: 40px;
    }
  
    .utility-page-wrap {
      padding-top: 170px;
      padding-bottom: 70px;
    }
  
    .grid-colors {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  
    .grid-button {
      grid-auto-flow: row;
    }
  
    .grid-licensing {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  
    .block-full-copy {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }
  
  @media screen and (max-width: 479px) {
    body {
      padding: 6px;
    }
  
    h1 {
      font-size: 42px;
    }
  
    h2 {
      font-size: 34px;
    }
  
    h3 {
      font-size: 28px;
    }
  
    h4 {
      font-size: 23px;
    }
  
    h5 {
      font-size: 20px;
    }
  
    h6 {
      font-size: 17px;
    }
  
    .section-hero-a {
      margin-bottom: 6px;
    }
  
    .navbar {
      left: 22px;
      top: 24px;
      right: 22px;
    }
  
    .heading-hero.size-vw {
      margin-bottom: 0px;
    }
  
    .section {
      margin-bottom: 6px;
      padding: 55px 16px;
    }
  
    .section.padding {
      padding-top: 25px;
      padding-bottom: 25px;
    }
  
    .grid-stats {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .subtitle {
      margin-top: 0px;
      padding-top: 0px;
    }
  
    .numbers-stats {
      font-size: 40px;
    }
  
    .numbers-stats.full {
      font-size: 36px;
    }
  
    .section-full {
      margin-bottom: 6px;
    }
  
    .block-full {
      padding-top: 65px;
      padding-bottom: 65px;
    }
  
    .block-full.newblock-full {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      padding-top: 55px;
      padding-bottom: 0px;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .image-bg-services {
      min-height: 350px;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#101b22), color-stop(30%, transparent)), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
      background-image: linear-gradient(0deg, #101b22, transparent 30%), url("https://uploads-ssl.webflow.com/61db21c1b66b125a619b79b9/625b9d139899be0b6fa3155f_GCS_9.jpg");
      background-position: 0px 0px, 70% 50%;
    }
  
    .grid-3-columns-full {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .grid-4-columns {
      grid-row-gap: 50px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .block-heading.top {
      margin-bottom: 20px;
    }
  
    .expertise.full {
      padding-right: 10%;
      padding-left: 10%;
    }
  
    .heading-expertise {
      max-width: none;
    }
  
    .paragraph-expertise {
      max-width: none;
    }
  
    .image-project {
      height: 350px;
    }
  
    .image-project.large {
      height: 350px;
    }
  
    .grid-2-columns-full {
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
      -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
      align-content: stretch;
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .image-bg-banner {
      height: 250px;
    }
  
    .section-footer {
      padding-top: 55px;
      padding-bottom: 30px;
    }
  
    .footer-down-block {
      margin-top: 50px;
    }
  
    .paragraph-footer {
      margin-bottom: 10px;
    }
  
    .section-hero-b {
      margin-bottom: 6px;
    }
  
    .grid-hero-b {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .extra {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  
    .block-accent {
      display: block;
      padding: 65px 16px;
    }
  
    .image-bg-accent {
      min-height: 350px;
    }
  
    .section-hero-c {
      margin-bottom: 6px;
    }
  
    .grid-hero-c {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .block-hero-c {
      padding-top: 55px;
      padding-bottom: 55px;
    }
  
    .grid-image-hero-c {
      min-height: 450px;
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .section-top {
      margin-bottom: 6px;
      padding-right: 16px;
      padding-bottom: 55px;
      padding-left: 16px;
    }
  
    .grid-services {
      grid-row-gap: 16px;
    }
  
    .collection-list-blog-page {
      grid-row-gap: 16px;
    }
  
    .image-blog {
      height: 250px;
    }
  
    .image-bg-map {
      min-height: 400px;
    }
  
    .text-contact {
      font-size: 16px;
    }
  
    .section-top-img {
      margin-bottom: 6px;
    }
  
    .block-top-img {
      padding-right: 30px;
      padding-bottom: 6px;
      padding-left: 30px;
    }
  
    .grid-stats-full {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .image-bg-about {
      min-height: 350px;
    }
  
    .grid-4-columns-full {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .grid-image-about {
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .grid-project-page {
      margin-bottom: 6px;
      grid-column-gap: 6px;
      grid-row-gap: 6px;
    }
  
    .project-content {
      padding: 55px 8% 20px;
    }
  
    .image-project-page {
      height: 70vh;
    }
  
    .utility-page-wrap {
      margin-bottom: 6px;
      padding: 150px 16px 55px;
    }
  
    .grid-colors {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .grid-licensing {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
    }
  
    .slider-2 {
      position: relative;
      width: 95%;
      height: auto;
      max-width: 100%;
      min-height: auto;
      min-width: auto;
      margin: -92px 0px 20px;
      -o-object-fit: fill;
      object-fit: fill;
    }
  
    .slide-4 {
      overflow: scroll;
      width: 150px;
      min-width: 95%;
      padding-left: 0px;
      -o-object-fit: fill;
      object-fit: fill;
    }
  
    .column {
      display: block;
    }
  
    .image-3 {
      width: 100%;
      min-width: 100%;
    }
  
    .image-4 {
      -o-object-fit: fill;
      object-fit: fill;
    }
  
    .mask-2 {
      overflow: visible;
      max-width: 25%;
      margin-right: 0px;
      margin-left: -8px;
      padding-left: 0px;
    }
  
    .grid {
      -ms-grid-columns: 0.75fr 0.5fr;
      grid-template-columns: 0.75fr 0.5fr;
    }
  
    .button-copy {
      padding-right: 15px;
      padding-left: 15px;
      text-align: center;
    }
  
    .text-block {
      padding-top: 0px;
      padding-bottom: 0px;
    }
  
    .bold-text-3 {
      line-height: 110%;
    }
  
    .bold-text-4 {
      line-height: 110%;
    }
  
    .block-full-copy {
      padding-top: 65px;
      padding-bottom: 65px;
    }
  
    .block-full-copy.newblock-full {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      padding-top: 55px;
      padding-bottom: 0px;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .block-full-copy.newblock-full-copy {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      padding-top: 55px;
      padding-bottom: 0px;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .paragraph-2 {
      margin-top: 30px;
      margin-bottom: 30px;
    }
  
    .paragraph-3 {
      margin-top: 30px;
      margin-bottom: 30px;
    }
  
    .bold-text-6 {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
  
    .list-item {
      padding-top: 10px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .list-item-2 {
      padding-top: 10px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .list {
      padding-left: 19px;
    }
    .mobile-hide{
      display: none;
    }
  }
  
  @media screen and (max-width:991px){
    .w-nav .link-close{
        display:none
    }
    
    .w-nav .nav .toggle_btn{
      display:block
  }
  .image-bg-services{
    display: none;
  }
  .grid-service{
    grid-auto-columns: auto;
  }
  }
  @media screen and (max-width:767px){
    .w-nav .link-close{
      display:none
  }
  .w-nav .nav .toggle_btn{
    display:block
}
    .w-nav-brand{
        padding-left:10px
    }
  }
  @media screen and (max-width:479px){
    .w-nav .link-close{
      display:none
  }

  .w-nav .nav .toggle_btn{
    display:block
}
  }

  /*==========================================================================
                                    animation
========================================================================== */
.nav-button:hover {
  animation: color-change 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  .icon-button{
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  .text-button-contact{
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  }
}
@keyframes color-change {
  0% {
    background-color: #4ab848;
  }
  100% {
    background-color: #359334;
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes textheaderanimation {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
  
}
@keyframes navbaranimation {
  0% {
    
    transform: translateY(5px);
  }

  100% {
    
    transform: translateY(-5px);
  }
  
}
@keyframes fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
  
}
@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in{
  to { scale: 1; opacity: 1;}
 }

 @keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.logo:hover {
	animation: jello-horizontal 0.9s both;
}
  
 .fade-right{
  animation: fade-right 2s ease 0s 1 normal forwards;
  animation-timeline: view();
  animation-range: normal 50%;
 }
 .fade-left{
  animation: fade-left 2s ease 0s 1 normal forwards;
  animation-timeline: view();
  animation-range: normal 70%;
 }
 .fade-bottom{
  animation: fade-bottom 2s ease 0s 1 normal forwards;
  animation-timeline: view();
  animation-range: normal 70%;
 }
