/* Author: Asquare Consultants (Mohammed Shahnawaz) 15/02/2024 */

/* Below classes are for main structure, forms & layout only */
:root {
  --acquair-primary: #ff0000;
  --acquair-secondary: #ff0000;
  --acquair-border: 1px solid #dfdfdf;
  --acquair-radius: 8px;
  --Inter: "Inter", sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

input,
select,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
  -webkit-transition-delay: 9999s;
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--Inter);
}

a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

body,
html {
  font-family: var(--Inter);
  font-weight: 400;
  letter-spacing: normal;
}

.loader__wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--acquair-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

.acquiar__grid {
  width: 100%;
  height: auto;
  max-width: 1366px;
  margin-inline: auto;
}

header {
  width: 100%;
  height: 140px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 1400px) {
  header {
    padding: 0 24px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 16px;
    height: 100px;
  }
}

header.sticky {
  height: 100px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

@media (max-width: 767px) {
  header.sticky {
    height: 90px;
  }
}

.header__row {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  width: 100px;
  height: 100px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 1400px) {
  header .logo {
    width: 80px;
    height: 80px;
  }
}

header.sticky .logo {
  width: 70px;
  height: 70px;
}

/* 
@media (max-width:767px) {
    header .logo {
        width: 60px;
        height: 60px;
    }

    header.sticky .logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width:575px) {
    header .logo {
        width: 30px;
        height: 30px;
    }

    header.sticky .logo {
        width: 40px;
        height: 40px;
    }
} */

header ul {
  list-style: none;
  text-align: right;
}

header ul li a {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

header ul li a.clr-white {
  color: #000000;
}

@media (max-width: 767px) {
  header ul li a {
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  header ul li a {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  header ul li a {
    font-size: 12px;
  }
}

header ul li a:hover,
header ul li a.active {
  color: #e3005c;
  text-decoration: none;
}

footer {
  width: 100%;
  height: auto;
  padding: 50px 10px 40px;
  background-color: #f8f8f8;
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}

footer span {
  font-size: 14px;
  font-weight: 400px;
  color: #000000;
}

footer .footer-last {
  text-align: right;
}

@media (max-width: 767px) {
  footer .footer-line,
  footer .footer-last {
    text-align: center;
  }
}

footer span a {
  text-decoration: underline;
  color: #000000;
}

footer span a:hover {
  color: #e3005c;
}

main {
  width: 100%;
  height: auto;
}

section {
  width: 100%;
  height: auto;
  min-height: 100vh;
}

section h2.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  color: #707070;
}

@media (max-width: 768px) {
  section h2.section-title {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 475px) {
  section h2.section-title {
    font-size: 24px;
    line-height: 30px;
  }
}

section h5.section-sub-title {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #707070;
}

@media (max-width: 768px) {
  section h5.section-sub-title {
    font-size: 16px;
    line-height: 19px;
  }
}

#acquair-main {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  position: relative;
  margin-inline: auto;
  overflow: hidden;
}

#acquair-main .scroll--next {
  width: 50px;
  height: auto;
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  cursor: pointer;
}

@media (max-width: 991px) {
  #acquair-main {
    height: 100vh;
  }
}

#acquair-main .cloud {
  width: 100%;
  height: 50vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: url("../../assets/img/cloud.jpg");
  background-repeat: repeat-x;
  background-position: left top;
  animation: animatecloud 50s linear infinite;
  opacity: 0.5;
}

@keyframes animatecloud {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 1920px 0;
  }
}

#acquair-main .road--bg {
  width: 100%;
  height: 50vh;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: url("../img/road.jpg") no-repeat top center,
    url("../img/road_texture.jpg") repeat bottom center;

  background-size: calc(100% + 4px);
}

@media (max-width: 991px) {
  #acquair-main .road--bg {
    height: 50%;
  }
}

/* #acquair-main .road--bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10%;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #565656;
} */

@media (max-width: 991px) {
  #acquair-main .road--bg {
    background: url("../img/road_1.svg") no-repeat top center,
      url("../img/road_texture.jpg") repeat bottom center;
    height: 50%;
  }
}

/* @media (max-width:768px) {
    #acquair-main .road--bg {
        height: 400px;
    }
}

@media (max-width:575px) {
    #acquair-main .road--bg {
        height: 300px;
    }
}

@media (max-width:475px) {
    #acquair-main .road--bg {
        height: 250px;
    }
}

@media (max-width:375px) {
    #acquair-main .road--bg {
        height: 200px;
    }
} */

#acquair-main .stroke--dashed {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 60px;
  height: 50%;
  background-image: url("../img/road-strip.svg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: contain;
  clip-path: polygon(0% 100%, 40% 0%, 60% 0%, 100% 100%);
}

@media (max-width: 991px) {
  #acquair-main .stroke--dashed {
    height: 50%;
    width: 30px;
  }
}

@media (max-width: 768px) {
  #acquair-main .stroke--dashed {
    /*         height: 400px;
        width: 20px; */
    clip-path: polygon(0% 100%, 46% 0%, 54% 0%, 100% 100%);
  }
}

@media (max-width: 575px) {
  #acquair-main .stroke--dashed {
    /*     height: 300px;
        width: 20px; */
    clip-path: polygon(0% 100%, 46% 0%, 54% 0%, 100% 100%);
  }
}

@media (max-width: 475px) {
  #acquair-main .stroke--dashed {
    /*         height: 250px;
        width: 20px; */
    clip-path: polygon(0% 100%, 46% 0%, 54% 0%, 100% 100%);
  }
}

@media (max-width: 375px) {
  #acquair-main .stroke--dashed {
    /*         height: 200px;
        width: 20px; */
    clip-path: polygon(0% 100%, 46% 0%, 54% 0%, 100% 100%);
  }
}

#acquair-main .stroke--dashed.running {
  animation: animateStripe 1s linear infinite;
}

@keyframes animateStripe {
  0% {
    background-position: 0px 0px;
  }

  100% {
    background-position: 0 50vh;
  }
}

#acquair-main .truck--back {
  /* display: none; */
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
  z-index: 4;
  width: 350px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  #acquair-main .truck--back {
    width: 300px;
  }
}

/* 
@media (max-width:767px) {
    #acquair-main .truck--back {
        width: 150px;
    }
}

@media (max-width:575px) {
    #acquair-main .truck--back {
        width: 120px;
    }
}

@media (max-width:375px) {
    #acquair-main .truck--back {
        width: 100px;
    }
} */

#acquair-main .truck--back img {
  width: 100%;
  height: auto;
  transform-origin: top center;
}

#acquair-main .truck--back.running {
  animation: animateTruck 0.3s linear infinite;
}

@keyframes animateTruck {
  0% {
    bottom: 20px;
  }

  100% {
    bottom: 22px;
  }
}

#acquair-main .truck--back img {
  position: relative;
  bottom: 50px;
  transition: all 2s ease-in-out;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -ms-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
}

#acquair-main .milestone {
  width: 100%;
  height: 50vh;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.16);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  gap: 180px;
  display: none;
}

@media (max-width: 991px) {
  #acquair-main .milestone {
    height: 50%;
  }
}

/* 
@media (max-width:768px) {
    #acquair-main .milestone {
        height: 400px;
    }
}

@media (max-width:575px) {
    #acquair-main .milestone {
        height: 300px;
    }
}

@media (max-width:475px) {
    #acquair-main .milestone {
        height: 250px;
    }
}

@media (max-width:375px) {
    #acquair-main .milestone {
        height: 200px;
    }
} */

#acquair-main .milestone .milestone__anim__wrapper {
  width: 100%;
  height: calc(100% + 600px);
  position: relative;
  display: flex;
  justify-content: center;
}

#acquair-main .milestone .milestoneImg {
  position: relative;
  width: 20px;
  height: 100%;
  /* background-color: rgba(98, 177, 38, 0.1); */
}

#acquair-main .milestone .milestone__anim__wrapper .milestoneImg:nth-child(1) {
  right: 110px;
  transform: rotate(58deg);
  transform-origin: top right;
}

#acquair-main .milestone .milestone__anim__wrapper .milestoneImg:nth-child(2) {
  left: 110px;
  transform: rotate(-58deg);
  transform-origin: top left;
}

@media (max-width: 991px) {
  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(1) {
    transform: rotate(37deg);
  }

  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(2) {
    transform: rotate(-37deg);
  }
}

@media (max-width: 767px) {
  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(1) {
    right: 80px;
  }

  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(2) {
    left: 80px;
  }
}

@media (max-width: 575px) {
  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(1) {
    right: 60px;
  }

  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(2) {
    left: 60px;
  }
}

@media (max-width: 375px) {
  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(1) {
    right: 40px;
  }

  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(2) {
    left: 40px;
  }
}

#acquair-main .milestone .milestoneImg img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

#acquair-main
  .milestone
  .milestone__anim__wrapper
  .milestoneImg:nth-child(1)
  img {
  transform: rotate(-58deg);
  transform-origin: bottom right;
}

#acquair-main
  .milestone
  .milestone__anim__wrapper
  .milestoneImg:nth-child(2)
  img {
  transform: rotate(58deg);
  transform-origin: bottom left;
}

@media (max-width: 991px) {
  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(1)
    img {
    transform: rotate(-37deg);
  }

  #acquair-main
    .milestone
    .milestone__anim__wrapper
    .milestoneImg:nth-child(2)
    img {
    transform: rotate(37deg);
  }
}

#acquair-main .milestone .anim--text {
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: auto;
  font-size: 22px;
  line-height: 24px;
  color: #619be9;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 1280px) {
  #acquair-main .milestone .anim--text {
    top: -250px;
  }
}

@media (max-width: 991px) {
  #acquair-main .milestone .anim--text {
    top: -270px;
  }
}

@media (max-width: 767px) {
  #acquair-main .milestone .anim--text {
    top: -140px;
    width: calc(100% - 40px);
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  #acquair-main .milestone .anim--text {
    top: -200px;
    width: calc(100% - 20px);
    font-size: 14px;
    line-height: 18px;
  }
}

#acquair-main .milestone .anim--text span {
  display: block;
  font-weight: 700;
  color: #e3005c;
}

#acquair-works {
  background-color: #f8f8f8;
  padding: 75px 20px 0;
}

@media (max-width: 768px) {
  #acquair-works {
    min-height: auto;
  }
}

.animation__wrapper {
  width: 100%;
  height: auto;
  min-height: calc(100vh - 250px);
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .animation__wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .animation__wrapper {
    min-height: calc(100vh - 300px);
  }
}

.animation__wrapper .anim__circle {
  width: 600px;
  height: 600px;
  border: 1px solid #707070;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim__circle {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 1200px) {
  .animation__wrapper .anim__circle {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 475px) {
  .animation__wrapper .anim__circle {
    width: 250px;
    height: 250px;
  }
}

.animation__wrapper .anim__circle .circle__slides {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation__wrapper .anim__circle .circle__slides .slide {
  opacity: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.animation__wrapper .anim__circle .circle__slides .slide .circle-slide-title {
  width: calc(100% - 100px);
  height: auto;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #62b126;
  text-align: center;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim__circle .circle__slides .slide .circle-slide-title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 1200px) {
  .animation__wrapper .anim__circle .circle__slides .slide .circle-slide-title {
    font-size: 16px;
    line-height: 19px;
  }
}

@media (max-width: 475px) {
  .animation__wrapper .anim__circle .circle__slides .slide .circle-slide-title {
    width: calc(100% - 40px);
    font-size: 14px;
    line-height: 18px;
  }
}

.animation__wrapper .anim__circle .circle__slides .slide img {
  width: calc(100% - 200px);
  height: auto;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim__circle .circle__slides .slide img {
    width: calc(100% - 150px);
  }
}

@media (max-width: 475px) {
  .animation__wrapper .anim__circle .circle__slides .slide img {
    width: calc(100% - 100px);
  }
}

.animation__wrapper .anim__circle .truck {
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border: 1px solid transparent;
  border-radius: 0%;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 10;
  background-image: url("../img/truck.svg");
  background-repeat: no-repeat;
  background-position: center top 10px;
  /*     border: 1px solid #000; */
}

@media (max-width: 1499px) {
  .animation__wrapper .anim__circle .truck {
    background-size: 120px;
  }
}

@media (max-width: 1200px) {
  .animation__wrapper .anim__circle .truck {
    background-size: 100px;
    background-position: center top 15px;
  }
}

.animation__wrapper .anim-text-container {
  width: 100%;
  height: auto;
  max-width: 360px;
  min-height: 50px;
  position: relative;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim-text-container {
    max-width: 300px;
  }
}

@media (max-width: 1200px) {
  .animation__wrapper .anim-text-container {
    max-width: 275px;
  }
}

@media (max-width: 991px) {
  .animation__wrapper .anim-text-container:first-child {
    display: none !important;
  }
}

.animation__wrapper .anim-text-container .slide {
  width: 100%;
  height: auto;
  display: none;
  position: relative;
  left: 100px;
  opacity: 0;
}

.animation__wrapper .anim-text-container .anim-text-title {
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #e3005c;
  text-transform: uppercase;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim-text-container .anim-text-title {
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width: 1200px) {
  .animation__wrapper .anim-text-container .anim-text-title {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 991px) {
  .animation__wrapper .anim-text-container .anim-text-title {
    text-align: center;
  }
}

.animation__wrapper .anim-text-container .anim-text-desc {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #707070;
}

@media (max-width: 1499px) {
  .animation__wrapper .anim-text-container .anim-text-desc {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 991px) {
  .animation__wrapper .anim-text-container .anim-text-desc {
    text-align: center;
  }
}

.animation__wrapper .anim-text-container:first-child .anim-text-title,
.animation__wrapper .anim-text-container:first-child .anim-text-desc {
  text-align: right;
}

.animation__wrapper .anim-text-container:first-child .slide {
  left: auto;
  right: 100px;
}

#acquair-consultancy {
  min-height: 600px;
  padding: 100px 0;
}

@media (max-width: 767px) {
  #acquair-consultancy {
    padding: 60px 0;
  }
}

#acquair-consultancy h2 {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #707070;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  #acquair-consultancy h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 40px;
  }
}

.consultancy-box {
  width: 100%;
  height: auto;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 991px) {
  .consultancy-box {
    max-width: 100%;
  }

  .consultancy-box.custom-margin {
    margin-bottom: 40px;
  }
}

.consultancy-box img {
  width: auto;
  height: 80px;
}

.consultancy-box .consultancy-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #e3005c;
  margin: 40px 0 10px;
}

.consultancy-box .consultancy-desc {
  border-top: 1px solid #707070;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #707070;
}

#acquair-parallax {
  min-height: 800px;
  padding: 200px 0;
  display: flex;
  align-items: center;
  background-image: url("../img/parallax.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 767px) {
  #acquair-parallax {
    min-height: 200px;
    padding: 60px 0;
    background-image: url("../img/parallax_767.jpg");
    background-attachment:initial;
  }
}

.parallax-title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 767px) {
  .parallax-title {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (max-width: 575px) {
  .parallax-title {
    font-size: 24px;
    line-height: 36px;
  }
}

/* CONTACT */
#contact-banner {
  width: 100%;
  height: auto;
  min-height: 300px;
  background-color: #000000;
  background-image: url("../img/contact_banner.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 1280px) {
  #contact-banner {
    min-height: 450px;
  }
}

@media (max-width: 991px) {
  #contact-banner {
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  #contact-banner {
    min-height: 250px;
  }
}

#get-touch {
  width: 100%;
  height: auto;
  padding: 90px 0;
}

@media (max-width: 767px) {
  #get-touch {
    padding: 40px 0;
  }
}

#get-touch h2 {
  font-size: 30px;
  font-weight: 700;
  color: #707070;
}

@media (max-width: 767px) {
  #get-touch h2 {
    font-size: 24px;
  }
}

.get__in__touch {
  width: 100%;
  height: auto;
  background-color: #003f8e;
  padding: 50px 100px;
}

@media (max-width: 1200px) {
  .get__in__touch {
    padding: 50px;
  }
}

@media (max-width: 575px) {
  .get__in__touch {
    padding: 20px;
  }
}

.get__in__touch h2 {
  color: #62b126 !important;
}

.get__in__touch form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .get__in__touch form {
    gap: 20px;
  }
}

.form-row {
  width: 100%;
  height: auto;
}

.form-row span.error {
  color: #e3001b;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.get__in__touch form input,
.get__in__touch form textarea {
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
}

.get__in__touch form textarea {
  height: 100px;
  padding: 20px;
}

.get__in__touch form span.message {
  color: #62b126;
  font-size: 14px;
  font-weight: 400;
  display: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #cbcbcb;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #cbcbcb;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #cbcbcb;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #cbcbcb;
}

.form__footer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .form__footer {
    flex-direction: column;
    gap: 20px;
  }
}

.form__footer span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.form__footer button {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #62b126;
  font-size: 14px;
  font-weight: 400;
  color: #62b126;
  text-transform: uppercase;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.update__wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .update__wrapper {
    margin-bottom: 30px;
  }
}

.update__wrapper a {
  text-align: center;
}

.update__wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  color: #e3005c !important;
  text-align: center;
}

.update__wrapper img.stand {
  width: 100px;
}

@media (max-width: 767px) {
  .update__wrapper img.stand {
    width: 60px;
  }
}

.image__frame {
  width: 100%;
  height: auto;
  max-width: 400px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.45) inset;
  padding: 10px;
  background-color: #f1f2f2;
}

#map-form {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  #map-form {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
    #map-form {
      margin-bottom: 40px;
    }
  }

#map-form h3 {
  color: #e3001b;
  font-size: 72px;
  font-weight: 700;
  margin-top: 30px;
}

@media (max-width: 767px) {
  #map-form h3 {
    font-size: 54px;
  }
}

@media (max-width: 575px) {
  #map-form h3 {
    font-size: 42px;
  }
}

#map-form .map-col {
  width: 100%;
  height: auto;
}

#map-form .map-col iframe {
  width: 100%;
  aspect-ratio: 1;
}

#map-form .map-col .address__wrapper {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 50px;
}

@media (max-width: 575px) {
  #map-form .map-col .address__wrapper {
    padding: 20px;
  }
}

.address__wrapper .address--block {
  width: 100%;
  height: auto;
  padding-top: 10px;
}

.address__wrapper .address--block h6 {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
}

.address__wrapper .address--block h4 {
  max-width: 410px;
  color: #707070;
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .address__wrapper .address--block h4 {
    font-size: 30px;
    line-height: 36px;
  }
}

.globe--block {
  width: 100%;
  height: auto;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.globe--block .globe-row {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 575px) {
  .globe--block .globe-row {
    flex-direction: column;
  }
}

.globe--block .globe-row .globe-col {
  width: 100%;
  height: auto;
  color: #707070;
}

.globe--block .globe-row .globe-col .globe-title {
  font-size: 18px;
  font-weight: 700;
}

.globe--block .globe-row .globe-col .glober-address {
  font-size: 16px;
  font-weight: 500;
}

.globe-address {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.globe-address a {
  color: #707070;
}

.globe-socials {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
}

.globe-socials img.qr-code {
  width: 100%;
  max-width: 100px;
  height: auto;
}

.globe-socials .social-icon {
  width: 30px;
  height: 30px;
  border: 2px solid #e3001b;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.globe-socials .social-icon img {
  width: 20px;
}

.globe-socials .social-icon:last-child {
  border-right: 2px solid #e3001b;
}

#fancybox-title-over {
  width: calc(100% - 20px);
}

img.top--text {
  width: 400px;
}

@media (max-width: 768px) {
  img.top--text {
    width: 300px;
  }
}

@media (max-width: 575px) {
  img.top--text {
    width: 200px;
  }
}

@media (max-width: 440px) {
  img.top--text {
    width: 170px;
  }
}

#footer-logo {
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 20px 0;
}

#footer-logo img {
  height: 70px;
  width: auto;
  margin: 10px 0;
}
.get__in__touch {
  position: relative;
}
.get__in__touch .form-disabled {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}
.get__in__touch .form-disabled.show {
  display: flex;
}
.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--acquair-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#fancybox-title{
    display:none !important;
}



#acquair-download {
  background-color: #038585;
  min-height: auto;
  padding: 100px 0;
}
@media (max-width: 1280px) {
  #acquair-download {
    padding: 100px 50px;
  }
}
@media (max-width: 991px) {
  #acquair-download {
    padding: 60px 40px;
  }
}
@media (max-width: 675px) {
  #acquair-download {
    padding: 40px 20px;
  }
}
.download__wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 440px) {
  .download__wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

.download__wrapper .download--left {
  width: calc(100% - 225px);
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 991px) {
  .download__wrapper .download--left {
    gap: 30px;
  }
}
@media (max-width: 675px) {
  .download__wrapper .download--left {
    width: calc(100% - 140px);
    gap: 20px;
  }
}
@media (max-width: 440px) {
  .download__wrapper .download--left {
    width: 100%;
  }
}
.download__wrapper .download--left h4 {
  font-size: 36px;
  line-height: 42px;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 991px) {
  .download__wrapper .download--left h4 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 675px) {
  .download__wrapper .download--left h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
.download__wrapper .download--left img {
  width: 75px;
}
@media (max-width: 991px) {
  .download__wrapper .download--left img {
    width: 60px;
  }
}
@media (max-width: 675px) {
  .download__wrapper .download--left img {
    width: 50px;
  }
}
.download__wrapper .download--right {
  width: 175px;
  height: auto;
}
.download__wrapper .download--right img {
  width: 100%;
}
@media (max-width: 768px) {
  .download__wrapper .download--right {
    width: 150px;
  }
}
@media (max-width: 675px) {
  .download__wrapper .download--right {
    width: 120px;
  }
}
@media (max-width: 440px) {
  .download__wrapper .download--right {
    width: 100%;
    padding-left: 70px;
  }
  .download__wrapper .download--right img {
    max-width: 150px;
  }
}
