@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoBlack.woff2") format("woff2"),
    url("../fonts/GazpachoBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoHeavy.woff2") format("woff2"),
    url("../fonts/GazpachoHeavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoBold.woff2") format("woff2"),
    url("../fonts/GazpachoBold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoLight.woff2") format("woff2"),
    url("../fonts/GazpachoLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoMedium.woff2") format("woff2"),
    url("../fonts/GazpachoMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoRegular.woff2") format("woff2"),
    url("../fonts/GazpachoRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gazpacho";
  src: url("../fonts/GazpachoThin.woff2") format("woff2"),
    url("../fonts/GazpachoThin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* fsdfsd */
@font-face {
  font-family: "Monument Grotesk";
  src: url("../fonts/MonumentGrotesk-Bold.woff2") format("woff2"),
    url("../fonts/MonumentGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Grotesk";
  src: url("../fonts/MonumentGrotesk-Medium.woff2") format("woff2"),
    url("../fonts/MonumentGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Grotesk";
  src: url("../fonts/MonumentGrotesk-Regular.woff2") format("woff2"),
    url("../fonts/MonumentGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Schmalfette Grotesk Trial Bd Cond";
  src: url("../fonts/SchmalfetteGrotesk-Trial.woff2") format("woff2"),
    url("../fonts/SchmalfetteGrotesk-Trial.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Schmalfette Grotesk";
  src: url("../fonts/SchmalfetteGrotesk.woff2") format("woff2"),
    url("../fonts/SchmalfetteGrotesk.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Monument Grotesk";
  src: url("../fonts/ABCMonumentGrotesk-Regular.woff2") format("woff2"),
    url("../fonts/ABCMonumentGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Monument Grotesk";
  src: url("../fonts/ABCMonumentGrotesk-Medium.woff2") format("woff2"),
    url("../fonts/ABCMonumentGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  display: none;
}

/* html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
} */

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* global */
h1 {
  font-family: "ABC Monument Grotesk";
  font-weight: 700;
  font-style: Bold;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: -2.16px;
  color: #141414;
}
h2 {
  font-family: "Schmalfette Grotesk";
  font-weight: 700;
  /* font-size: 6.6vw;
    line-height: 6vw; */
  font-size: 126px;
  line-height: 110px;
  letter-spacing: 2px;
  /*    text-align: center;*/
  text-transform: uppercase;
}
ul,
li {
  list-style-type: none;
}

/* text animation */
.text-container .line {
  overflow: hidden;
}
.text-container .line .line-cs {
  transition: all 0.9s ease-out;
  transform: translateY(100%);
}
.text-container.active .line .line-cs {
  transform: translateY(0);
}
/* text animation ends */

/* Loader */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Circle */
.circle {
  width: 200px;
  height: 200px;
  animation: rotate 6s linear infinite;
}

/* SVG text */
text {
  fill: white;
  font-family: "ABC Monument Grotesk";
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  max-width: 620px;
  width: 100%;
  letter-spacing: 3px;
}

/* Rotation animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111; /* dark background */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  z-index: 9999;
  /* transition: opacity 0.6s ease, visibility 0.6s ease; */
  transition: all 0.6s ease;
  padding: 0 20px;
}
#page-loader .loader {
  font-family: "Gazpacho";
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0;
}
#page-loader .one {
  transform: translateX(50%);
  animation: fadeIn 0.6s ease-in 0.3s forwards !important;
  opacity: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(50%);
    color: #dad6d280;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    color: #dad6d2;
  }
}
#page-loader .two {
  animation: fadeInn 0.6s ease-in 0.5s forwards !important;
  transform: translateX(50%);
  opacity: 0;
}
@keyframes fadeInn {
  0% {
    opacity: 0;
    transform: translateX(50%);
    color: #dad6d280;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    color: #dad6d2;
  }
}
#page-loader.hide {
  opacity: 1;
  top: -100vh;
  pointer-events: none;
}

/* coming soon */
.coming-soon {
  background-image: url("../images/coming-soon-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}
.coming-soon img {
  width: 100%;
  margin-bottom: 80px;
}
.coming-soon p {
  font-family: "ABC Monument Grotesk";
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  max-width: 620px;
  width: 100%;
  margin: 40px auto;
}

/* header */
header {
  background-color: #e6dfd6;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.2s ease;
 
}
header .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*    border-bottom: 0.25px solid #141414;*/
  min-height: 80px;
  opacity: 1 !important;
}
header.up {
  position: sticky !important;
  opacity: 1 !important;
  z-index: 9999 !important;
  animation: headslide 0.3s ease-out forwards;
}
header.up .row {
  opacity: 1 !important;
}

@keyframes headslide {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
header .row a {
  display: flex;
}
header .row .logo {
  min-width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2px;
  min-height: -webkit-fill-available;
  /*    border-right: 1px solid #141414;*/
  min-height: 80px;
}

header .row .logo .spin {
  transition: all 0.3s ease;
}
header .row .logo:hover .spin {
  transform: rotate(180deg);
}
header .row .logo:hover {
  background-color: #ededed;
}
header .row .menu-wrapper {
  width: 100%;
}
header .row .menu-wrapper ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  justify-content: center;
  column-gap: 48px;
}
header .row .menu-wrapper ul li a {
  font-family: Gazpacho;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #141414;
}
header .row .hamburger {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  text-align: center;
  align-items: center;
  /*    border-left: 1px solid #141414;*/
  min-height: -webkit-fill-available;
  cursor: pointer;
  min-height: 80px;
}
header .row .hamburger:hover {
  background-color: #ededed;
}
header .row .hamburger span {
  width: 48px;
  display: flex;
  background-color: #141414;
  height: 1.6px;
}
header .row .hamburger span:nth-child(3) {
  display: none;
}
/* header css */

/* header popup */
.header-popup .footer-wrap {
  z-index: 9999;
  top: 0;
  /* transform: translateY(-200vh); */
  left: 0;
  height: inherit;
  /* transition: all .8s ease; */
  display: none;
}
.header-popup .footer-wrap.open {
  transform: translateY(0);
}
.header-popup .footer-wrap .row {
  opacity: 1;
  justify-content: start;
  height: 100dvh;
}
.header-popup .footer-wrap .col-left ul li a {
  font-size: 5.3vw;
  line-height: 5vw;
}
.header-popup .close-bar {
  border-bottom: 1px solid #eee2c8;
  display: flex;
  align-items: center;
  justify-content: end;
}
.header-popup .close-bar .icon-close {
  min-height: 80px;
  align-items: center;
  width: 150px;
  margin-left: 0;
  display: flex;
  justify-content: center;
  border-left: 1px solid #eee2c8;
  cursor: pointer;
}
.header-popup .footer-wrap img {
  margin: auto 0 0;
}
/* header popup ends */

/* split animations */
.btn--split {
  overflow: hidden;
  display: inline-block;
  text-transform: uppercase;
}
.btn--split .word {
  position: relative;
}
.btn--split .whitespace {
  width: 5px;
}
.btn--split .word .char {
  display: inline-block;
  transform: translateY(-100%);
  transition: all 500ms cubic-bezier(0, 0.97, 0.43, 1);
  opacity: 0;
}
.btn--split .word .full-text {
  position: absolute;
  left: 0;
  transform: translateY(0);
  transition: all 500ms cubic-bezier(0, 0.97, 0.43, 1);
}
.btn--split:hover .word .char {
  /* color: #141414; */
  transform: translateY(0);
  transition: all 500ms cubic-bezier(0, 0.97, 0.43, 1)
    calc(250ms * var(--char-index) / var(--char-total));
  opacity: 1;
}
.btn--split:hover .word .full-text {
  transform: translateY(100%);
  transition: all 500ms cubic-bezier(0, 0.97, 0.43, 1);
  opacity: 0;
}
/* split animations ends */

/* text reveal */
.text-anim {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 100%);
  transition: transform 0.6s ease-out;
  opacity: 0;
}
.text-anim.visible {
  transform: translate(0px, 0);
  opacity: 1;
}
/* text reaveal ends */

/* home banner */
.home-wrap {
  background-color: #e6dfd6;
  height: 100dvh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
  will-change: transform;
  transition: none;

}

/*span.Typewriter__cursor {*/
/*    position: relative;*/
/*    font-size: 0;*/
/*}*/

/*span.Typewriter__cursor::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 22px;*/
/*    height: 70px;*/
/*    background: #141414;*/
/*    bottom: 0px;*/
/*}*/

.home-banner .row {
  width: 100%;
  height: 100%;
  margin: auto;
  padding-top: 120px;
  padding-left: 40px;
}
.home-banner .upper-txt h1 {
  max-width: 800px;
  width: 100%;
  font-size: 100px;
  line-height: 85px;
  color: #141414;
  text-transform: uppercase;
  font-weight: 100 !important;
}

.home-banner .upper-txt h1 span.bold-text {
  color: #141414;
  text-transform: uppercase;
  font-weight: 500;
}

.home-banner .upper-txt h1 span.heading-text {
  color: #141414;
  text-transform: uppercase;
  font-style: italic;
}

/* section bnr btm */
.bnr-btm-img {
  position: relative;
  height: 100vh;
  margin-top: 100vh;
  position: sticky;
  top: 0;
}
.bnr-btm-img.home.parallax-section {
  margin-top: 537px;
  padding: 0 25px;
}
.bnr-btm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.parallax-section {
  overflow: hidden;
  position: relative !important;
}
.parallax-content {
  will-change: transform;
}
/* section bnr btm ends */

section#content-text p {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  letter-spacing: -2px;
}

p.text-container.mobile-copy {
  display: none;
}

/* companies */
.companies {
  position: sticky;
  top: 0;
  height: 100%;
  padding: 0;
  background-color: #e6dfd6;
  padding: 100px 40px;
}

.companies.offer {
  background-color: #abb6b3;
  position: relative;
  z-index: 1;
}
.companies.offer::after {
  content: "";
  position: absolute;
}

.companies.offer h4 {
  color: #141414;
}
.companies.offer h2 {
  color: #141414;
  max-width: 100%;
}
.companies.offer h2 .color {
  color: #141414b2;
}

.companies.offer p span.gather-wrapper {
    font-style: italic;
}

.companies.offer p {
  color: #141414;
  max-width: 785px;
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 35px auto;
  font-family: "ABC Monument Grotesk";
  text-transform: uppercase;
}

section#content-text spacer {
  margin-left: 180px;
}

.companies.offer p span.text-bold {
  font-weight: bold;
}

.companies.approch .container {
  align-items: center;
}

/* Base Styles */

/* Spinner */
.spinner-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.main-img {
  width: 100%;
  height: auto;
}

.approch .row,
.offer .row {
  display: flex;
  justify-content: flex-start;
}

.companies.approch {
  background-color: #2d2d32;
  position: relative;
  z-index: 1;
}
.companies.approch::after {
  content: "";
  position: absolute;
}
.companies.approch h2 {
  /*    color: #fff;*/
  /*max-width: 100%;
    padding-left: 40px;*/
}
.companies.approch h2 .color {
  color: #edededa6;
}
.companies h4 {
  font-family: "Gazpacho";
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ededed;
  text-transform: uppercase;
}
.companies.approch h4 .color {
  display: block;
}
.companies.approch p {
  color: #ededed;
  max-width: 785px;
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  width: 100%;
  padding: 0;
  margin: 40px auto 40px;
  font-family: "ABC Monument Grotesk";
  text-transform: uppercase;
}

.companies.approch p span.approch-wrapper {
    font-style: italic;
}


span.indent {
  display: inline-block;
  padding-left: 116px;
}

.companies.approch .container {
  align-items: self-start;
}

.image-text-section-approch .section-item-img {
  display: flex;
  justify-content: flex-start;
  padding-top: 80px;
}
.image-text-section-approch .section-item-img img {
  width: 555px !important;
  height: 555px;
  animation: expandWidth 2s ease-in-out forwards;
}

p.mobile-copy {
  display: none !important;
}

span.color {
  display: block;
}

.companies .container {
  max-width: 100%;
  /*    min-height: 100vh;*/
  padding: 0;
  /*display: flex;
    justify-content: center;
    align-items: center;*/
}

.companies .section-origin h4 {
  color: #141414;
}

.companies h2 {
  margin: 0 auto;
  color: #ededed;
  width: 100%;
}


/*.companies.offer h2  {*/
/* font-weight: 700;*/
/*    font-size: 160px;*/
/*    line-height: 130px;*/

/*}*/



.companies .row {
  gap: 284px;
}
.companies h2.text-anim {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}
.companies h2 .color {
  color: #edededb2;
}
.companies h2 .vector {
  width: 100%;
  max-height: 105px;
  max-width: 300px;
  height: -webkit-fill-available;
  display: flex;
}
.companies h2.vc .line-cs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.companies h2.text-container.active img {
  width: 100%;
}
.companies h2.text-container.aos-animate img {
  width: 100%;
}
.companies h2 .vector img {
  transition: all 0.6s ease-out;
}
.companies h2.visible .vector img {
  width: 100%;
}
.companies h2 .vector img {
  height: 100%;
  display: flex;
  object-fit: contain;
  width: 74px;
  border-radius: 250px;
  margin-left: 12px;
  min-height: 100%;
}

.companies p {
  font-family: "Gazpacho";
  font-weight: 400;
  font-size: 56px;
  line-height: 65px;
  letter-spacing: 0;
  /* text-align: center; */
  color: #141414;
  max-width: 934px;
  width: 100%;
  margin: 40px 40px 100px;
  /*    letter-spacing: -2px;*/
}

.image-text-section .section-item p {
  font-family: "ABC Monument Grotesk" !important;
  font-size: 28px !important;
  line-height: 34px !important;
  color: #141414;
  margin: 0;
  padding-top: 25px;
  letter-spacing: 1px !important;
  max-width: 100% !important;
  font-weight: 300 !important;
}

.image-text-section .section-item p.textReveal {
  span.inr {
    display: block;
    animation: textReveal ease-in forwards;
    animation-timeline: view();
    animation-range: cover contain 25%;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 0.62%) calc(var(--colorStop) - var(--blur)),
      hsl(32deg 19% 87% / 0%) var(--colorStop)
    );
    /* background-image: linear-gradient(to right, hsl(var(--text)) calc(var(--colorStop) - var(--blur)), hsl(var(--text) / 20%) var(--colorStop)); */
  }
}

.image-text-section .section-item h3.textReveal {
  span.inr {
    display: block;
    animation: textReveal ease-in forwards;
    animation-timeline: view();
    animation-range: cover contain 25%;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(
      to bottom,
      hsl(0deg 0% 0.62%) calc(var(--colorStop) - var(--blur)),
      hsl(32deg 19% 87% / 0%) var(--colorStop)
    );
    /* background-image: linear-gradient(to right, hsl(var(--text)) calc(var(--colorStop) - var(--blur)), hsl(var(--text) / 20%) var(--colorStop)); */
  }
}

.companies p .bold {
  font-weight: 500;
}
.companies p strong {
  font-weight: 500;
}
.companies a {
  text-decoration: none;
  margin: 0 auto;
}

.image-text-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.image-text-section .section-item {
  width: 58%;
}

.image-text-section .section-item img {
  width: 100%;
  max-width: 550px;
  display: block;
}

.image-text-section .section-item h3 {
  font-family: "ABC Monument Grotesk";
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  color: #141414;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding-top: 40px;
}

.image-text-section .section-item p.section-text {
  font-family: "ABC Monument Grotesk";
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 2px;
  color: #141414;
  margin: 0;
  max-width: 650px;
  /*    text-transform: capitalize;*/
  padding-top: 25px;
}


.Services {
    background: rgba(189, 165, 117, 1);
    padding: 120px 40px;
  }

  .Services h2 {
    font-family: "Gazpacho";
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #141414;
    padding: 0 0 33px;
    margin: 0;
  }

  .Services .Service-tab {
    padding: 47px 0 20px 47px;
    border-bottom: 1px solid rgba(237, 237, 237, .3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    will-change: height;
    /*margin-bottom: 48px;*/
  }
  
  .Services .Service-tab:hover {
    background: #ccbb9a;
}
 
  .Services .Service-tab.active {
    height: auto !important;
  }

  .Services .tab-cont-left {
    max-width: 670px;
  }

  .Services .tab-cont-left h3 {
    font-family: "ABC Monument Grotesk", sans-serif;
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
    color: rgba(20, 20, 20, 1);
    text-transform: uppercase;
    margin: 0 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .Services .tab-cont-left h3 img {
    width: 60px;
    margin-right: 20px;
    display: none;
}
 .Services .active .tab-cont-left h3 img {
    display: block;
}
.Services .tab-cont-left h3 span {
    width: 60px;
    margin-right: 20px;
}

.Services .active .tab-cont-left h3 span {
    width: 50px;
    margin-right: 15px;
    display: none;
}


.Services .tab-cont-left h3 span {
  margin-right: 15px;
}

.Services .tab-body {
    padding-left: 67px;
}

  .Services .tab-cont-left h4 {
    font-family: "ABC Monument Grotesk", sans-serif;
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    color: rgba(20, 20, 20, 1);
    text-transform: uppercase;
    margin: 0 0 32px;
  }

  .Services .tab-cont-left h5 {
    font-family: "ABC Monument Grotesk", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: rgba(20, 20, 20, 1);
    text-transform: uppercase;
    margin: 0 0 10px;
  }

  .Services .tab-cont-left p {
    font-family: "ABC Monument Grotesk", sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: rgba(20, 20, 20, 1);
    margin: 0 0 32px;
  }

  .tab-bnr {
    width: 325px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
        margin-top: -15px;
  }


.Service-tab.active .tab-bnr {
    width: 440px;
    height: 440px;
}

/* base image */
.tab-bnr img {
  width: 100%;
  height:100%;
  object-fit: cover;
  transform: scale(1) translateY(0px);
  transition: transform 0.8s ease;
  will-change: transform;
  height: 100%;
}

/* active zoom */
.Service-tab.active .tab-bnr img {
  transform: scale(1.12) translateY(0px);
}

.tab-arrow {
    position: absolute;
    right: 5px;
    top: 25px;
    transform: rotate(90deg);
    width: 50px;
    display: none;
}
.tab-arrow img {
    max-width: 100%;
}

.active .tab-arrow {
    transform: rotate(270deg);
}


/* buttton */
.btn-white {
  font-family: "ABC Monument Grotesk";
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #ededed;
  padding: 25px 40px;
  border-radius: 60px;
  display: flex;
  width: fit-content;
  color: #ededed;
  text-decoration: none;
}

.btn-white:hover {
  background-color: #ededed;
  border: 1px solid #ededed;
  color: #141414;
}
.btn-white:focus {
  background-color: #c2c2c2;
  border: 1px solid #c2c2c2;
  color: #141414;
}
/* button */

/* buttton */
.btn-black {
  font-family: "ABC Monument Grotesk";
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #141414;
  padding: 25px 40px;
  border-radius: 60px;
  display: flex;
  width: fit-content;
  color: #141414;
  text-decoration: none;
}

.btn-black:hover {
  background-color: #141414;
  border: 1px solid #141414;
  color: #eee2c8;
}
.btn-black:focus {
  background-color: #403d38;
  border: 1px solid #403d38;
  color: #eee2c8;
}
/* button */

/* companies ends */

/* footer */
.ftr {
  /* height: 100vh; */
  padding-bottom: 100vh;
}
/* .ftr.fix{
    padding-bottom: 100vh;
    height: auto;
} */
.footer-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #2d2d32;
  background-image: url(../images/footer-bg-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}
.footer-wrap .overlay {
  width: 100%;
  height: 100%;
  background-color: #2d2d32;
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.footer-wrap .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.footer-wrap.active {
  z-index: 0;
}
.footer-wrap .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px;
}
.footer-wrap .col-left .copyright {
  display: none;
}
.footer-wrap .col-left ul li a {
  font-family: "Schmalfette Grotesk";
  font-weight: 700;
  font-size: 6.6vw;
  line-height: 5.8vw;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #eee2c8;
}
.footer-wrap .col-left ul li a:hover {
  color: #ededed;
}
.footer-wrap .copyright {
  font-family: "ABC Monument Grotesk";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #eee2c8;
  margin-bottom: 40px;
  display: block;
}
.footer-wrap .get-in-touch {
  font-family: "ABC Monument Grotesk";
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #eee2c8;
}
.footer-wrap .get-in-touch a {
  color: #eee2c8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-wrap .get-in-touch a:hover {
  color: #ededed;
}
.footer-wrap .get-in-touch a br {
  display: none;
}
.footer-wrap .social-links {
  display: flex;
  gap: 10px;
  justify-content: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer-wrap .col-right {
  position: relative;
}
.footer-wrap .social-links a {
  background-color: #eee2c8;
  display: flex;
  align-items: center;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-wrap .social-links a:hover {
  background-color: #ededed;
}
.footer-wrap .social-links svg path {
  fill: #2d2d32;
}
.footer-wrap img {
  width: 100%;
}
/* footer ends */

@media (max-width: 1400px) {
  /*.home-banner .row .upper-txt {*/
  /*  scale: 0.7;*/
  /*}*/
  .home-banner .row {
    padding-top: 6%;
  }
  /*.companies .row {*/
  /*  scale: 0.7;*/
  /*}*/
}
@media (max-width: 1350px) {
  .companies h2 {
    font-size: 80px;
    line-height: 70px;
  }
  .companies .row {
    scale: 1;
  }
  .home-banner .row {
    padding-top: 10%;
  }
  .home-banner .upper-txt h1 {
    font-size: 60px;
    line-height: 57px;
    max-width: 500px;
  }
  .home-banner .row .upper-txt {
    scale: 1;
  }
}

@media (max-width: 1200px) {
  .home-banner .row {
    padding-top: 14%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #page-loader .loader {
    font-size: 35px;
  }
  .home-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  section#content-text p br {
    display: none;
  }
  .companies {
    padding: 80px 40px;
  }
  section#content-text spacer {
    margin-left: 170px;
  }
  .companies h2 .vector {
    max-height: 65px;
  }
}
.companies p {
  font-size: 47px;
  line-height: 60px;
  margin: 40px 40px 80px;
  /* letter-spacing: -2px; */
}
@media (max-width: 1024px) {
  #page-loader .loader {
    font-size: 30px;
  }

  .content-text h2,
  .content-text h3,
  .content-text p,
  .content-text b {
    font-size: 20px;
    line-height: 28px;
  }
  .image-text-section-approch .section-item-img {
    padding-top: 50px;
  }
  span.indent {
    padding-left: 60px;
  }
  .Services {
    padding: 100px 30px;
}
    .Services h2 {
        font-size: 40px;
        padding: 0 0 30px;
    }
    .Services .tab-cont-left h3 {
        font-size: 35px;
        line-height: 40px;
        margin: 0 0 30px;
    }
    .Services .tab-cont-left h4 {
        font-size: 25px;
        line-height: 30px;
        margin: 0 0 30px;
    }
    .Service-tab .tab-bnr {
        width: 300px;
        height: 300px;
    }
    .Services .Service-tab {
        padding: 40px 0 40px 10px;
        height: 115px !important;
    }
    .Services .tab-cont-left h3 img {
        width: 35px;
    }
    .Services .tab-body {
    padding-left: 50px;
}
.Services .Service-tab {  
    gap: 0px;
  }
  .Services .tab-cont-left {
    padding-right: 15px;
}
}

/* RESPONSIVE */


/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
    
    .bnr-btm-img.home.parallax-section {
        padding: 0;
    }
    .companies.offer .vector img:nth-of-type(2) {
    display: none;
  }
  .companies .row {
    gap: 20px;
  }

  .approch .row,
  .offer .row {
    flex-direction: column;
  }

  header .row .menu-wrapper ul {
    display: none;
  }
  header .row {
    min-height: 60px;
  }
  header .row .logo svg {
    width: 16px;
  }
  header .row .logo .spin svg {
    width: 24px;
  }
  header .row .logo {
    min-height: 60px;
    min-width: 100px;
  }
  header .row .hamburger {
    min-height: 60px;
    min-width: 100px;
  }
  header .row .hamburger span {
    width: 27px;
  }
  .image-text-section-approch .section-item-img img {
    margin: 0 auto;
  }

  .companies {
    padding: 40px 20px;
  }
  .companies p {
    font-size: 30px;
    line-height: 36px;
  }
  .companies h2 {
    max-width: 100%;
  }
  .companies h2 .vector {
    max-height: 68px;
  }
  .home-banner .row {
    padding-top: 60px;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .companies .row {
    width: 100%;
    padding: 0 20px;
  }
  
  
   .Services {
    padding: 90px 20px;
}
    .Services h2 {
        font-size: 30px;
        padding: 0 0 25px;
    }
    .Services .tab-cont-left h3 {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 30px;
    }
    .Services .tab-cont-left h4 {
        font-size: 20px;
        line-height: 25px;
        margin: 0 0 25px;
    }
    .Service-tab .tab-bnr {
       display: none;
    }
    .Services .Service-tab {
        padding: 30px 10px;
        height: 115px !important;
    }
    
    .Services .Service-tab {
    margin-bottom: 0;
}
  
  .tab-arrow {
      display: block;
      width: 40px;
  }

  
  .footer-wrap .col-left .copyright {
    display: block;
    margin: 45px 0 0;
    padding-top: 6px;
    border-top: 1px solid #eee2c8;
  }
  .footer-wrap .col-right .copyright {
    display: none;
  }
  .footer-wrap .content {
    flex-direction: column-reverse;
  }
  .footer-wrap .col-right {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .footer-wrap .content {
    padding: 40px 20px;
  }
  .footer-wrap .social-links {
    position: relative;
  }
  .footer-wrap .col-left ul li a {
    font-size: 80px;
    line-height: 75px;
  }
  .footer-wrap .row {
    height: 100%;
  }
  .footer-wrap .row .content {
    height: 100%;
  }
  .header-popup .footer-wrap .col-left ul li a {
    font-size: 60px;
    line-height: 60px;
  }
  .header-popup .close-bar .icon-close {
    min-height: 60px;
    width: 100px;
  }
  .header-popup .close-bar .icon-close svg {
    width: 22px;
  }
  #page-loader .loader {
    font-size: 3.4vw;
  }
  .bnr-btm-img.home.parallax-section {
    margin-top: 100vh !important;
  }

  /* RESET anything weird */
  .companies.offer .text-container .line,
  .companies.offer .text-container .line-cs {
    display: block !important;
    position: static !important;
  }

  /* LINE 1 = ROOTED IN */
  .companies.offer .text-container .line:nth-of-type(1) {
    display: block !important;
  }

  /* LINE 2 = THE OLD SCHOOL */
  .companies.offer .text-container .line:nth-of-type(2) {
    display: block !important;
  }

  /* LINE 3 = BUT + IMAGES ✅ */
  .companies.offer .text-container .line:nth-of-type(3) {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  /* Keep "BUT" inline */
  .companies.offer .text-container .line:nth-of-type(3) .color {
    white-space: nowrap;
  }

  /* IMAGES next to BUT */
  .companies.offer .text-container .line:nth-of-type(3) .line-cs {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }

  /* LINE 4 = TOTALLY MODERN */
  .companies.offer .text-container .line:nth-of-type(4) {
    display: block !important;
  }

  /* Prevent images from breaking layout */
  .companies.offer .text-container img {
    display: block;
    /*height: auto;*/
    width: auto;
  }

  /* Target the line that contains images instead */
  .companies.offer .text-container .line:has(.line-cs) {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .home-banner .upper-txt h1 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.96px;
  }
  .home-banner .upper-txt img {
    width: 32px;
  }
  .companies h2 {
   font-size: 55px;
    line-height: 55px;
    letter-spacing: 0.3px;
  }
  .companies.offer p {
    font-size: 16px;
    line-height: 20px;
    margin: 40px auto 24px;
    padding: 0;
    max-width: 260px;
  }
  .origin-wrp {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-end;
  }
  .companies.offer p:last-child {
    margin-bottom: 0;
    margin-top: 0;
  }
  .btn-white {
    font-size: 16px;
    line-height: 14px;
    padding: 22px 30px;
  }
  .companies h2 .vector {
    width: 77%;
    max-height: 50px;
  }
  .companies h2 .vector img {
    width: 20px;
    height: 52px;
    margin-left: 5px;
  }
  .companies .row {
    padding: 0;
  }
  .companies h2.vc .line-cs {
    column-gap: 10px;
  }

  .home-wrap {
    height: auto;
    height: 410px;
  }
  .home-banner .row {
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .bnr-btm-img.home.parallax-section {
    margin-top: 40vh !important;
    height: 50vh;
  }
  .bnr-btm-img img {
    height: 100vh;
  }
  section#content-text p.textReveal {
    margin-bottom: 40px;
  }
  section#content-text p.textReveal {
    font-size: 24px;
    line-height: 100%;
  }
  section#content-text p.textReveal br {
    display: none;
  }
  section#content-text spacer {
    margin-left: 36px;
  }
  .companies h4 {
    font-size: 16px;
    line-height: 100%;
    display: flex;
  }
  .text-container .line {
    padding-right: 5px;
  }
  .image-text-section .section-item p {
    font-size: 16px !important;
    line-height: 100% !important;
    margin: 0;
    padding-top: 12px !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
  }
  .image-text-section .section-item {
    max-width: 260px;
    
  }
  .image-text-section .section-item {
    width: 75%;
}
  .image-text-section {
    flex-direction: inherit;
  }

  .image-text-section .section-item h3 {
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    padding-top: 20px;
  }

  p.text-container.desktop-copy {
    display: none;
  }
  p.text-container.mobile-copy {
    display: block !important;
  }
  .image-text-section-approch .section-item-img {
    padding-top: 40px;
    display: flex;
    justify-content: flex-end !important;
  }
  .image-text-section-approch {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }

  .companies.approch p {
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
    margin: 32px auto 24px;
    letter-spacing: 0.2px;
  }

  .companies.approch p:last-child {
    margin-bottom: 0;
  }
  span.indent {
    padding-left: 20px;
  }

  p.mobile-copy {
    display: block !important;
  }
  p.desktop-copyy {
    display: none !important;
  }

  .companies.approch p .line {
    padding-right: 0;
  }
  .approch-wrap {
    max-width: 260px;
  }
  .companies.approch p br {
    display: none;
  }

  .image-text-section-approch .section-item-img img {
    width: 204px !important;
  }

  .companies.offer h4 {
    padding-bottom: 0px;
  }

  .btn-black {
    font-size: 16px;
    line-height: 14px;
    padding: 22px 30px;
  }

  .Services .Service-tab {
      padding: 20px 10px;
      height: 90px !important;
  }

  .Services .tab-cont-left h3 span {
      margin-right: 10px;
      width: 50px;
  }
      .Services .tab-cont-left h3 {
        font-size: 30px;
    }


.Services .tab-cont-left h4 {
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 10px;
    }

    .Services .tab-cont-left p {
      font-size: 18px;
      line-height: 25px;
      margin: 0 0 20px;
  }
  .Services .tab-cont-left h5 {
    font-size: 20px;
    line-height: 25px;
}

  .footer-wrap .get-in-touch {
    width: 170px;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
  }
  .footer-wrap .get-in-touch a br {
    display: block;
  }
  .footer-wrap .col-left .copyright {
    font-size: 12px;
  }
  #page-loader {
    flex-direction: column;
  }
  #page-loader .loader {
    font-size: 6vw;
    line-height: 10vw;
  }
}

/* Responsiveness ends */
