:root {
  --primary-color:#14203b;
  --secondary-color:  #CAA260;
  --footer-color:  #CAA260;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --heading-color: #2A2A2A;
  /* --light-bg-color: #fbf9f9; */
  --light-bg-color: #F9F9F9;
  --p-text-color: #666666;
  --p-darker-color: #8A8A8A;
  --p-darkest-color: #626262;

  --border-color: #F2EFEA;
  --grey-color: #8b8b8b;
  --lighter-grey-color: #F8F8F8;
  /* --green: #165a52; */
  --green: #164f47;
  --h1-size: clamp(40px, 9vw, 70px);
  --h2-size: clamp(36px, 6vw, 44px);
  --p-size: 18px;
  --a-size: 12px;
  --small-text: 12px;
  --small-letter-spacing: .3em;
  --x-spacing: clamp(2.5rem, 5vw, 5rem);
  --line-height-p: 2.5;

  --heading-font: Marcellus;
}

@font-face {
  font-family: Effra;
  src: url(../fonts/effra/EFFRA_LT.TTF);
}

@font-face {
  font-family: Effra-Regular;
  src: url(../fonts/effra/EFFRA_RG.TTF);
}

@font-face {
  font-family: Montserrat;
  src: url(../fonts/montserrat/Montserrat.ttf);
}

@font-face {
  font-family: Marcellus;
  src: url(../fonts/marcellus/Marcellus.ttf);
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  outline: none;
  border: none;
  box-shadow: unset;
 }
 
::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 20px;
  outline: none;
}

/* html {
  scroll-behavior: smooth;
} */

.text-dark-color {
  color: var(--heading-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
}

h1,h2,h3,h4,h5{
  font-family: Marcellus;
}

h1, .h1-size {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 24px;
  font-weight: 400;
}

h6 {
  font-family: Effra;
  font-size: var(--small-text);
  letter-spacing: var(--small-letter-spacing);
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: uppercase;
}

p {
  font-size: var(--p-size);
  letter-spacing: var(--p-letter-spacing);
  font-family: Effra;
  color: var(--p-text-color);
}

.p-size {
  font-size: var(--p-size);
}

.p-dark {
  color: var(--p-darker-color);
}

.p-darkest {
  color: var(--p-darkest-color);
}

.effra-regular {
  font-family: Effra-Regular;
}

.row-gap-2 {
  row-gap: 1.7rem;
}

.careers-accordion .accordion-button {
  border: unset !important;
  padding: 2rem 0;
  transition: all .3s ease;
}

.careers-accordion .accordion-item {
  border: unset !important;
  border-bottom: 1px solid var(--border-color) !important;
  
}
.careers-accordion .accordion-item-hover {
  position: relative;
  overflow-x: hidden;
}

.careers-accordion .accordion-item-hover::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--secondary-color);
  transition: all .3s ease;
}

.careers-accordion .accordion-item-hover.active::before  {
  width: 100%;
}

.careers-accordion .accordion-item-hover:hover::before {
  width: 100%;
}

.top-divider {
  height: 1px;
  background-color: var(--border-color);
  width: 100%;
  margin-bottom: 0
}

.careers-accordion .accordion-item-hover:hover .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B29063'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.careers-accordion .accordion-body {
  padding: 0 0 2rem 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B29063'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.benefits-slide-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width: 992px) {
  .benefits-slide-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}

.benefits-swiper .benefits-slide-number {
  top: -2rem;
  position: absolute;
  right: 2rem;
}

.benefits-swiper .swiper--navigation {
  position: relative;
  right: unset;
  top: unset;
  left: unset;
  bottom: unset;
}
.benefits-section .arrow-svg {
  stroke: black;
  will-change: transform;
}

li {
  font-size: var(--p-size);
  letter-spacing: var(--p-letter-spacing);
  font-family: Effra;
  color: var(--p-text-color);
}

a {
  text-decoration: none;
  font-family: Effra;
  font-size: var(--a-size);
}

a:hover {
  cursor: pointer !important;
}

.culture-section .content {
  z-index: 3;
  position: relative;
}


.innerServiceSwiper a {
  color: inherit;
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 80vh;
  overflow: hidden;
}

@media(min-width: 768px) {
  .innerServiceSwiper a {
    padding-top: 60vh;
  }
}

@media(min-width: 992px) {
  .innerServiceSwiper a {
    padding-top: 80vh;
  }
}

@media(min-width: 1200px) {
  .innerServiceSwiper a {
    padding-top: 60vh;
  }
}

@media(min-width: 1400px) {
  .innerServiceSwiper a {
    padding-top: 80vh;
  }
}

.innerServiceSwiper img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  width: 100%;
  transform-origin: center center;
  transform: scale(1);
  transition: transform .45s cubic-bezier(.61,1,.88,1);
}

.innerServiceSwiper a:hover img{
  transform: scale(1.02); ;
}

h6 > a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

h6 > a:hover {
  color: inherit;
}

.secondary-bg {
  background-color: var(--secondary-color);
}

.green-bg {
  background-color: var(--green) !important;
}

.grey-bg {
  background-color: var(--lighter-grey-color);
}

.grey-darker-bg {
  background-color: var(--grey-color);
}

.light-bg {
  background-color: var(--light-bg-color);
}

.bg-none {
  background: unset !important;
}

.full-bg-video-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer-color {
  color: var(--footer-color);
}

.box-title {
  width: fit-content;
  display: inline-block;
  /* Allow long words (e.g., German compounds) to hyphenate/wrap on small screens */
  hyphens: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.subtitle {
  margin-bottom: 16px;
}

.p-small {
  font-size: var(--small-text);
  letter-spacing: 6px;
}

.centered-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  min-height: 30%;
}

.bottom-absolute {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  min-height: 30%;
}

.section-padding, .section-padding--small {
  padding-left: clamp(1rem, 5vw, 2.5rem);
  padding-right: clamp(1rem, 5vw, 2.5rem);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-padding-y {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-padding-bottom {
  padding-bottom: 4rem;
}

@media(min-width: 992px) {
  .section-padding, .section-padding--small {
    padding-left: clamp(1rem, 5vw, 2.5rem);
    padding-right: clamp(1rem, 5vw, 2.5rem);
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .section-padding-y {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  
  .section-padding-bottom {
    padding-bottom: 7.5rem;
  }
}


.section-title {
  margin-bottom: 50px;
}

.section-title span {
  color: var(--secondary-color);
}

.cta-button {
  padding: .8rem 4rem;
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  text-align: center;
  font-size: 12px;
  width: fit-content;
  /* max-width: 250px; */
  transition: all .3s ease;
  color: white;
  letter-spacing: .1em;
}

.cta-white {
  border: 1px solid white;
  background-color: transparent;
}

/* .cta-black {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
} */

.cta-secondary {
  /* background-color: var(--secondary-color); */
  background-color: transparent;
  color: black;
  border: 1px solid var(--secondary-color);
}

.cta-secondary:hover {
  /* background-color: transparent; */
  background-color: var(--secondary-color);
  color: white;
}

.cta-white:hover {
  background-color: white;
  color: black;
}

.cta-black:hover {
  background-color: #000;
  color: #fff;
}

.navbar-brand {
  margin-left: -6px;
  margin-right: 0;
}
#navbarNavDropdown{
  position: absolute;
  background-color: var(--white-color);
  width: 100%;
  top: 71px;
  left: 0px;
  z-index: 99;
}
.navbar-toggler {
border: none;
outline: none;
}
.navbar-brand img{
width: 9.4rem;
}
.nav-link{
font-size: 0.875rem;
color: var(--black-color);
transition: padding .3s ease-out;
}
.nav-dropdown{
padding-top: 0.2rem;
padding-bottom: 0.2rem;
min-height: 2.5rem;
}
.nav-dropdown:not(.collapsed){
padding-left: 2.5rem;
position: relative;
overflow: hidden;
}
.nav-dropdown::before{
content: '';
width: 1.87rem;
position: absolute;
top: 0;
background-color: var(--black-color);
height: 1px;
top: calc(50% - 1px);
opacity: 0;
transition: opacity .3s ease-out;
left: -2.5rem;
transition: left .3s ease-out,right .3s ease-out;
}
.nav-dropdown:not(.collapsed)::before{
opacity: 1;
left: 0;
}
.nav-dropdown .nav-dropdown-arrow{
transition: transform .3s ease-out;
font-size: 1.25rem;
}
.nav-dropdown:not(.collapsed) .nav-dropdown-arrow{
transform: rotate(90deg);
}
.dropdown-menu{
margin-top: 0;
}
.nav-subitem a{ 
color: var(--secondary-color);
text-transform: uppercase;
/* letter-spacing: .6em; */
font-size: 0.75rem;
}
.dropdown-menu li a:visited, .dropdown-menu li a:focus, .dropdown-menu li a:active, .dropdown-menu li a:focus-visible {
  background-color: unset;
  border: unset;
  outline: none;
}
.swiper-wrapper:hover {
  cursor: grab;
}
/* SWITCH BUTTON MOBILE */

#toggleButton:focus{
  box-shadow: none;
}

.switch-button {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  position: relative;
}

.switch-button:before,
.switch-button:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
}

.switch-button:before {
  transform: translateY(-8px);
}

.switch-button:after {
  transform: translateY(8px);
}

.navbar-toggler:not(.collapsed) .switch-button {
  transform: rotate(0);
  background-color: transparent; 
  transition: transform 0.3s ease-in-out, background-color 0.1s ease-in-out; 
}

.navbar-toggler:not(.collapsed) .switch-button:before {
  transform: translateY(0) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .switch-button:after {
  transform: translateY(0) rotate(-45deg);
}



/* CLOSE BUTTON */

.btn-close svg{
fill: none;
stroke: var(--white-color);
}  
.btn-close .svg.svg-close line:nth-child(1) {
transition-delay: 0s;
}
.svg-close line:nth-child(2) {
transition-delay: .2s;
}
.svg-close line {
stroke-dasharray: 30;
stroke-dashoffset: 0;
transition: stroke-dashoffset .6s ease;
}
svg.svg-close:hover line {
stroke-dashoffset: 60;
}

.social-icons a{
  background-color: var(--secondary-color);
  color: var(--black-color);
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 500;
  height: 30px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  transition: color .3s ease-out,background-color .3s ease-out;
  width: 1.875rem;
  text-decoration: none;
}
.social-icons a:hover{
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.image-hover img {
  transition: transform .5s ease;
  will-change: transform;
}

.image-hover:hover img {
  transform: scale(1.04);
}

/* ARROW SVG */
.arrow-svg--arrow {
  transition: transform .3s ease;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.arrow-svg:hover .arrow-svg--arrow, .arrow-link-cont:hover .arrow-svg--arrow{
  /* transform: translateX(8px); */
  transform: translate3d(8px , 0, 0);
}

a:hover .arrow-link-cont .arrow-svg--arrow{
  transform: translate3d(8px , 0, 0);
}

.arrow-link-cont--rotate .arrow-svg{
  transform: rotate(180deg);
}

.arrow-link-cont {
  display: flex;
  align-items: center;
  gap: 20px;
  color: black;
  width: max-content;
}
.arrow-link-cont:hover {
  color: black;
}
.arrow-link-cont svg {
  stroke: black;
  width: 15px;
  opacity: 1;
  height: 100%;
  stroke-width: 2px;
  overflow: visible;
  will-change: transform;
}
.arrow-link-cont.arrow-white svg {
  stroke: white;
}

.arrow-link--donwload svg {
  width: 20px;
  height: 20px;
  stroke-width: 1;
}

.testimonial-quote svg path {
  fill: var(--secondary-color);
}

.opp-two-col-grid, .opp-two-col-grid--big {
  display: grid;
  grid-template-columns: 1fr;
}

@media(min-width: 768px) {
  .opp-two-col-grid {
    grid-template-columns: .3fr 1fr;
  }
}

@media(min-width: 992px) {
  .opp-two-col-grid {
    grid-template-columns: .2fr 1fr;
  }

  .opp-two-col-grid--big {
    grid-template-columns: .25fr 1fr;
  }
}

.arrow-svg {
  display: block;
  fill: none;
  width: 20px;
  stroke: white;
  transition: all .3s ease;
  position: relative;
  overflow: visible;
  stroke-width: 2px;
  will-change: transform;
}

.arrow-svg > * {
  will-change: transform !important;
}

.justify-hyphen {
  text-align: justify;
  hyphens: auto;
}

#backToTopBtn {
  background-color: #fff;
  bottom: 3.375rem;
  height: 2.5rem;
  width: 2.5rem;
  margin: 0;
  opacity: 0;
  border: none;
  position: fixed;
  right: 3.25rem;
  visibility: hidden;
  z-index: 99;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#backToTopBtn .arrow-svg {
  transform: rotate(-90deg);
  stroke: black;
  stroke-width: 2px;
  width: 100%;
  position: relative;
  transition: all .3s ease-out;
}

@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 2rem;
    right: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}

/* /ARROW SVG */

@media (min-width: 992px) {
  .arrow-svg {
    width: 30px;
  }
 
/* SWITCH BUTTON DESKTOP*/
.slide-switch-wrapper {
  font-size: 12px;
  padding-left: 50px;
  border: none;
  border-left: 1px solid var(--border-color);
  border-radius: 0;
  font-family: Effra;
}  
.slide-switch-wrapper:focus,
.slide-switch-wrapper:active {
  box-shadow: none;
  border: none;
  border-left: 1px solid var(--border-color) !important;
}  
.slide-switch {
  position: relative;
  display: inline-block;
}  

.slide-switch-first {
  display: inline-block;
  width: 40px; 
  height: 40px;
  background-image: url("../icons/plus-thin.svg");
  background-size: cover;
}
.slide-switch-second {
  display: inline-block;
  width: 40px; 
  height: 40px;
  background-image: url("../icons/plus-thin.svg");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
} 
.slide-switch-wrapper:hover .slide-switch-second {
  transform:rotate(45deg) scale(0);
  opacity: 0;
}
.slide-switch-wrapper:hover {
  border-left-color: var(--border-color);
}
#navbarNavDropdown{
  top: 104px;
}
.nav-grid {
  display: flex;
  /* display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px; */
  border-bottom: 1px solid var(--border-color);
}    
.nav-grid-item1 { 
  grid-area: 1 / 1 / 4 / 2; 
}
.nav-grid-item2 { 
  grid-area: 1 / 2 / 2 / 10; 
}
.nav-grid-item3 { 
  grid-area: 2 / 2 / 4 / 10; 
}  

/* .dropdown-menu {
  transition: transform 0.3s ease-in-out;
}   */
.dropdown-menu.show {
  transform: translateY(0);
}
.dropdown-toggle::after{
  margin: 0 33px;
}
.nav-item.dropdown {
  position: unset;
}
.nav-item .dropdown-toggle::after{
  display: none;
}
.navbar-brand img {
  width: 13.5rem;
}
.nav-left{
  display: flex;
  border-right: 1px solid var(--border-color);
  /* padding: 1.75rem 0; */
}
.nav-top-links a{
  font-size: 13px;
  color: var(--secondary-color);
  position: relative;
  padding: 0 5.5rem 0 1.875rem;
  align-self: center;
  letter-spacing: .1em;
}
.dropdown-small a{
  font-size: 12px;
  color: #262626;
  letter-spacing: .1em;
}
.dropdown-small .nav-link{
  padding: 12px 0;
}
.dropdown-small a::after{
  margin: 0 0 0 14px;
  width: 4px;
  height: 4px;
  border-top: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  border-left: none;
  transform: rotate(135deg)
}
.dropdown-small .dropdown-menu{
  border: 1px solid var(--border-color);
  border-radius: 0;
  min-width: unset;
  /* width: 90px; */
  right: 50%;
  left: unset;
  transform: translateX(50%);
}  
.dropdown-small .dropdown-menu a:hover{
  background-color: transparent;
  color: var(--grey-color);
}  
.nav-top-links a:hover{
  color: var(--grey-color);
}
.nav-bottom{
  padding: 0;
}
.nav-bottom-image{
  border-left: 1px solid var(--border-color);
  height: 100%;
  padding-left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-bottom-image img{
  width: 100%;
  max-width: 150px;
  object-fit: contain;
}
.navbar-nav .dropdown-menu, .subdropdown-menu{
  border:1px solid  var(--border-color);
  border-radius: 0;
  padding: 26px 36px 23px 36px;
  min-width: fit-content;
  margin-top: 0;
  position: relative;
}
.navbar-nav .dropdown .nav-link{
  font-size: var(--a-size);
  color: var(--black-color);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 2em;
  letter-spacing: .1em;
  margin-right: 1.125rem;
  padding-left: 1rem !important;
  overflow: hidden;
}
/* .navbar-nav .dropdown a::before{
  content: '';
  width: 1.15rem;
  position: absolute;
  top: 0;
  background-color: var(--black-color);
  height: 1px;
  top: calc(50% - 1px);
  opacity: 0;
  transition: opacity .3s ease-out;
  left: -5rem;
  transition: left .3s ease-out,right .3s ease-out;
}
.navbar-nav .dropdown a:hover::before{
  opacity: 1;
  left: 0;
}
.navbar-nav .dropdown .active::before{
  opacity: 1;
  left: 0;
}
.navbar-nav .dropdown a:not(:first-child){
  margin-left: 33px;
} */

.navbar-nav .dropdown-menu a:hover{
  /* padding-left: 2.5rem; */
  background-color: transparent;
}
/* .navbar-nav .dropdown-menu a::before{
  content: '';
  width: 1.87rem;
  position: absolute;
  top: 0;
  background-color: var(--secondary-color);
  height: 1px;
  top: calc(50% - 1px);
  opacity: 0;
  transition: opacity .3s ease-out;
  left: -5rem;
  transition: left .3s ease-out,right .3s ease-out;
} */
/* .navbar-nav .dropdown-menu a:hover::before{
  opacity: 1;
  left: 0;
} */
}

@media (min-width: 1200px){
  .navbar-nav .dropdown .nav-link{
    margin-right: 12px;
  }
  .navbar-brand{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0.5rem 1rem;
    margin-left: 0;
  }

  .navbar-brand img{
    width: 100%;
    max-width: 300px;
    min-width: 100px;
  }

  .nav-top{
    border-bottom:1px solid var(--border-color);
    padding: 0 3.125rem;
    padding-left: 1.5rem;
  }

  .nav-bottom{
    padding-left: 0;
  }
  .nav-bottom{
    padding: 0 1rem;
  }
}

.quote-icon {
  text-align: center;
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
  margin-bottom: 30px;
}

@media (min-width: 1300px) {
  .navbar-nav .dropdown .nav-link {
    padding-left: 1.5rem !important;
  }
}

@media(min-width: 1600px) {
  .navbar-brand img{
    width: 270px;
  }
  .navbar-expand-lg .navbar-nav{
    padding-right: 40px;
  }
  .nav-grid {
    grid-template-columns: repeat(7, 1fr)
  }

  /* .nav-grid-item2 {
    grid-area: 1 / 2 / 2 / 8;
  }

  .nav-grid-item3 {
    grid-area: 2 / 2 / 4 / 8;
  } */

  /* .navbar-brand{
    padding: 0.5rem 2.12rem;
  } */

  .navbar-nav .dropdown .nav-link {
    padding-left: 2.5rem !important;
    margin-right: 30px;
  }

  /* .navbar-nav .dropdown a::before {
    width: 1.87rem;
  } */

  .nav-top {
    padding: 0 3.25rem;
  }

  .nav-bottom{
    padding: 0 2.125rem 0 0;
  }

}
.marcellus {
  font-family: var(--heading-font);
}

/* Disable manual line breaks in headings on very small screens */
@media (max-width: 480px) {
  h1 br,
  h2 br,
  .box-title br {
    display: none;
  }
}

/* Custom Cursor */
/* Disable default cursor globally */
* {
  cursor: none !important;
}


/* Use native grab/grabbing cursor when dragging */
body.using-grab, body.using-grab * { cursor: grabbing !important; }
body.using-grab .custom-cursor { display: none; }

/* Show grab cursor on hover over draggables without hiding custom cursor */
body.using-grab-hover, body.using-grab-hover * { cursor: grab !important; }

/* Custom Cursor Responsive */
@media (max-width: 767px) {
    .custom-cursor {
        display: none;
    }
}

/* Custom Cursor (provided spec - add-only) */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  /* Ensure the custom cursor renders above cookie banner/modal (z-index ~20000) */
  z-index: 30010;
  user-select: none;
  pointer-events: none;
  background-color: rgba(218, 190, 143, 0.8);
  height: 12px; 
  width: 12px;
  border-radius: 50%;
  transition: background-color .3s ease;
}

.drag {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  /* Above cookie layers */
  z-index: 30010;
  user-select: none;
  pointer-events: none;
  color: rgba(218, 190, 143, 0.8);
  font-weight: 600;
  font-family: var(--lexend);
  font-size: 1rem;
  /* transform: translate(-50%, -50%); */
}

.circle-big {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(218, 190, 143, 0.8);
  border-radius: 50%;
  opacity: .2;
  /* Above cookie layers but below inner dot/label */
  z-index: 30005;
  user-select: none;
  pointer-events: none;
  transform-origin: center;
}

    /* Responsive About video sizing */
    .about-video--height { height: 520px; }
    @media (min-width: 576px) { .about-video--height { height: 520px; } }
    @media (min-width: 768px) { .about-video--height { height: 560px; } }
    @media (min-width: 992px) { .about-video--height { height: 600px; } }
    .about-video--media { height: 100%; object-fit: cover; }
    .about-video--text { max-width: 550px; }
    @media (max-width: 767.98px) { .about-video--text { max-width: 90%; } }
    /* CTA position: bottom-right on md+, below paragraph on mobile */
    .about-video--cta { position: absolute; bottom: 0; right: 0; margin: 1rem; }
    @media (min-width: 768px) { .about-video--cta { margin: 2rem; } }
    @media (max-width: 767.98px) {
        .about-video--cta { position: static; margin: 0; }
    }