/* global */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#homepage__aboutMobile{
  display:none;
}

:root {
  --vseenBlue: #47b9ea;
  /*--vseenBlue: #00a8d0;*/
}

html,
body {
  max-width: 100%;
  color: white;
  background-color: #090909;
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  position: relative;
  scrollbar-gutter: stable;
  height: 100%;
}

body {
  font-family: area-normal, sans-serif;
  overflow-x: hidden;
  font-size: 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  max-width: 100%;
}

/* header */

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px 0px 76px;
  background-color: #00000000;
  position: fixed;
  top: 0;
  z-index: 999;
  max-width: 100%;
  width: 100%;
  transition: 1s;
  height: 79px;
}

/*.header__connect {
  border-radius: 30px;
  color: white;
  cursor: pointer;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.header__connect.header__btn a {
  padding: 0px 15px 2px 15px;
}*/

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 3;
  border-radius: 30px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  will-change: filter;
  transition: 0.5s;
  
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.header__btn a {
  text-transform: uppercase;
  /*padding: 0px 15px 2px 15px;*/
  padding: 5px 20px 7px 20px;
}


.header__btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    136.46% 686.33% at -14.68% -8.33%,
    #47b9ea 0%,
    #063572 100%
  );
  left: 0;
  top: 0;
  border-radius: 30px;
  overflow: visible;
}
/* glow */
.header__btn::before {
  content: "";
  background: linear-gradient(
    45deg,
    #193354,
    #184785,
    #143560,
    #142a47,
    #3374c7,
    #2f64a8,
    #47b9ea,
    #0b2241
  );
  position: absolute;
  top: 5%;
  left: 5%;
  background-size: 900%;
  z-index: -2;
  width: calc(90%);
  height: calc(90%);
  filter: blur(20px);
  -webkit-filter: blur(20px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  border-radius: 30px;
  overflow: visible;
}

.header__btn:hover {
  box-shadow: 0px 1px 21px -1px --vseenBlue;
}

/* hover */
.header__btn:hover::before {
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.header__scrolled {
  /*background-color: #090909;*/ /* Fully black */
  background-color: rgba(0,0,0,.7);
}

.header__container .header__currentLink {
  color: var(--vseenBlue);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  font-family: area-normal, sans-serif;
  height: 60px;
}

.header__nav > a {
  padding: 12px 0px;
  font-weight: 600;
  font-style: normal;
  color: white;
  text-transform: uppercase;
}

.header__nav > a:hover {
  color: var(--vseenBlue);
  transition: 0.8s ease;
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1;
  border: none;
}

/* Hamburger Bars */
.header__bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  transition: opacity 2s ease-in-out, background 1s ease, transform 1s ease;
}

/* Positioning the three lines */
.header__bar:nth-child(1) {
  top: 0;
}
.header__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__bar:nth-child(3) {
  bottom: 0;
}

/* Animate hamburger into "X" when menu is open */
.header__hamburger.header__open .header__bar:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}

.header__hamburger.header__open .header__bar:nth-child(2) {
  opacity: 0; /* Hide middle bar */
}

.header__hamburger.header__open .header__bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-16px);
}

.header__mobileBurgerMenu {
  display: none;
}

/* MOBILE MENU STYLING */
@media (max-width: 718px) {

	.desktop-break { display: none; } /*mta*/

  /* Show the hamburger menu */
  .header__hamburger {
    display: block;
    transition: opacity 1s ease;
  }

  .header__hamburger.header__open {
    opacity: 0;
  }

  /* Hide the nav by default */
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    background: #000;
    width: 100%;
    min-height: 100vh;
    padding: 40px 32px 80px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(200px);
    color: white;
    justify-content: flex-start;
    gap: 60px;
    overflow-y: auto;
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
    z-index: 2;
  }

  /* Show nav when open */
  .header__nav.header__open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header__nav .header__textBlock {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: start;
    color: white;
  }

  .header__textBlock p {
    font-weight: 500;
    line-height: 140%;
  }

  /* Adjust links inside menu */
  .header__nav a {
    text-decoration: none;
    transition: color 1s ease;
  }

  .header__nav a:hover {
    color: --vseenBlue;
  }

  .header__burgerLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-top: 12px;
  }

  .header__burgerLinks a {
    color: white;
    font-weight: 500;
    font-size: 14px;
  }

  .header__navServices {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .header__burgerLinks .header__ourServices {
    font-family: ivyora-display, serif;
    font-weight: 300;
    font-style: italic;
    font-size: 19px;
    line-height: 210%;
  }

  .header__servicesLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    gap: 6px;
  }

  .header__nav > a {
    padding: 0;
  }

  .header__servicesLinks a:nth-child(1):hover {
    color: --vseenBlue;
  }
  .header__servicesLinks a:nth-child(2):hover {
    color: #eaaf21;
  }
  .header__servicesLinks a:nth-child(3):hover {
    color: #b52144;
  }
  .header__servicesLinks a:nth-child(4):hover {
    color: #aea484;
  }

  .header__mobileBurgerMenu.header__nav {
    padding: 60px 44px 140px 44px;
    gap: 0px;
  }

  .header__textBlock {
    margin-top: 60px;
  }

  .header__burgerLinks {
    margin-top: 50px;
  }
}

/* home */

.homepage__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.homepage__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 10vh;
}

.image-fill-container {
  position: relative;
  width: 100%;
  height: 982px; /* or any height you need */
  overflow: hidden;
}

.image-fill-container .image-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 982px;
  object-fit: cover;
}

.homepage__hero > img {
  object-position: center;
}

.homepage__heroGradient {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;

  background: rgb(238, 165, 64);
  background: linear-gradient(
    0deg,
    rgba(238, 165, 64, 1) 46%,
    rgba(107, 133, 157, 1) 87%
  );
}

.homepage__heroOverlay {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;

  background: #090909;
  background: linear-gradient(
    360deg,
    rgba(9, 9, 9, 1) 0%,
    rgba(25, 16, 3, 0.225) 45%,
    rgba(9, 9, 9, 0.34) 75%
  );
}

.homepage__heroNy {
  z-index: 5;
  position: absolute;
  top: 290px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.homepage__heroText {
  z-index: 5;
  color: white;

  font-size: 1.35em;
  line-height: 26px;
  display: flex;
  text-align: end;
  flex-direction: column;
  width: 80%;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-end;

  gap: 28px;
  max-width: 1200px;
}

  .homepage__desktop{
  }

  .homepage__mobile{
    display: none;
  }

.homepage__heroText p {
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  max-width: 590px;
  min-width: 290px;
}

.homepage__about {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: white;
  gap: 80px;
  position: relative;
  height: fit-content;

  width: 80%;
  max-width: 1200px;
  padding: 90px 0px 60px 0px;
}

/*.homepage__aboutCompany {
  max-width: 690px;
  width: 100%;
  min-width: 680px;
    font-size: 1.75em;
  line-height: 1.5em;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.homepage__aboutCompany span {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
    font-size: 1.25em;
  line-height: 1em;
  letter-spacing: 1px;
  color: #eaeaea;
  max-width: 570px;
}*/


.homepage__asterisk, .ServicesPage__aboutAsterisk, .AboutPage__aboutAsterisk{
  margin-left: -8px;
}

.homepage__asterisk img, .ServicesPage__aboutAsterisk img, .AboutPage__aboutAsterisk img{
  height: 15px;
  width: 15px;
  margin-bottom: .2em;
  margin-left: .2em;
}

/*
.homepage__aboutCompany .homepage__asterisk {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: var(--vseenBlue);
  height: 30px;
  width: 15px;
  margin-left: -8px;
}

.homepage__aboutCompany .homepage__asterisk img {
  margin-bottom: 12px;
  margin-left: 2px;
}*/

.homepage__aboutCompany .homepage__and {
  color: var(--vseenBlue);
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
}

.homepage__aboutDetail {
  min-width: 609px;
  width: 100%;
  font-size: 18px;
  line-height: 44px;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.homepage__aboutCompany,
.homepage__aboutDetail {
  /*padding-left: 40px;*/
}

.homepage__aboutDetail .homepage__asterisk {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.aboutQuote {
  display: flex;
  align-self: flex-end;
  font-size: 5em;
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: #242424;
}

/*
.homepage__aboutQuote {
  display: flex;
  align-self: flex-end;
  color: white;
  font-size: 5em;
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: #242424;
}*/

.homepage__projectsSection {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(297.78deg, #761229 -1.25%, #000000 109.7%);
  gap: 20px;
  padding: 150px 0px 80px 0px;
}

.homepage__maxSizer {
  max-width: 1200px;
  width: 80%;
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}

.homepage__projectsSection h2 {
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.homepage__services {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  background-size: 35px 35px;
  background-image: linear-gradient(to right, #3c3c3c 1px, transparent 1px),
    linear-gradient(to bottom, #3c3c3c 1px, transparent 1px);
  background-position: fixed;
  border-top: 1px solid rgb(174, 174, 174);
  border-bottom: 1px solid rgb(174, 174, 174);
  background-position: top;
  gap: 20px;
  padding: 10vh 0px;
}

.homepage__servicesContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  min-width: 260px;
  gap: 60px;
  max-width: 1200px;
  
}

.homepage__servicesContainer h2 {
  width: 100%;
  font-size: 40px;
}

.homepage__servicesContainer div a {
  width: 100%;
}

.homepage__servicesContainer > p {
  width: 100%;
}

.servicesCallout{
	color: #fff;
    order: 7;
}

@media (max-width: 1080px){
  .servicesCallout{
    margin-top: 1em;    
  }

	.servicesCallout a{
    	display: block;
      margin: 0 !important;
    }
}

.servicesCallout strong{
	font-weight: 800;
}

.blueGlow{
    background: radial-gradient( 136.46% 686.33% at -14.68% -8.33%, #47b9ea 0%, #063572 100% );
}

.blueGlow:hover{
    -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 168, 208, 0.40);
    -moz-box-shadow: 0px 0px 10px 5px rgba(0, 168, 208, 0.40);
    box-shadow: 0px 0px 10px 5px rgba(0, 168, 208, 0.40);
}

.magentaGlow{
	background: radial-gradient( 136.46% 686.33% at -14.68% -8.33%, #b52144 0%, #4d111f 100% );
}

.magentaGlow:hover{
	-webkit-box-shadow: 0px 0px 10px 1px rgba(181, 33, 68, 0.40);
    -moz-box-shadow: 0px 0px 10px 1px rgba(181, 33, 68, 0.40);
    box-shadow: 0px 0px 10px 5px rgba(181, 33, 68, 0.40);
}

.btn{
    display: inline-flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    font-family: area-normal, sans-serif;
    font-weight: 800;
    font-style: normal;
    padding: 0px 15px 2px 15px;
    text-transform: uppercase;
    margin-left: 2em;
    font-size: .8rem;
}

@media (max-width: 1080px){
  .btn{
    /*display:block;*/
    margin-left: 0;
    margin-top: 15px;
  }
}


.homepage__service0 span:nth-child(2){
	background: radial-gradient(103.14% 313.57% at -3.14% 50%, #47b9ea 0%, #ebe2c8 100%);
}

.homepage__service1 span:nth-child(2){
	background: linear-gradient(270deg, #ebe2c8 1.47%, #c1840b 82.22%);
}

.homepage__service2 span:nth-child(2){
	background: linear-gradient(270deg, #ebe2c8 12.77%, #b52144 101.67%);
}

.homepage__service3 span:nth-child(2){
	background: linear-gradient(270.65deg, #d8d1be 16.44%, #726e64 103.89%);
}

.homepage__service0 span:nth-child(2), .homepage__service1 span:nth-child(2), .homepage__service2 span:nth-child(2), .homepage__service3 span:nth-child(2){
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 60px;
	text-transform: uppercase;
	font-family: area-normal, sans-serif;
	font-style: normal;
	letter-spacing: 0px;
/*	width: 670px; */
	min-width: 180px;
    font-weight: 900;
}

.homepage__faq {
  width: 100%;
  padding: 0px 8% 0px 0px;
  padding: 0px 0px 0px 0px; /*mta*/
  align-self: flex-start;
}

.homepage__faqAnswer > p {
  padding-bottom: 24px;
}

.homepage__faqItem {
  transition: background 0.1s ease;
  border: 1px solid #fff;
}

.homepage__faqQuestion {
  width: 100%;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-align: left;
}

.homepage__faqAnswer.homepage__open {
  max-height: 800px;
  opacity: 1;
  margin: 0;
  margin-top: -20px;
  padding-bottom: 20px;
  padding-right: 40px;
}

.homepage__box0 {
  background: radial-gradient(circle at 0% 100%, #042653 0%, #000000 100%);
  border-bottom: none;
}

.homepage__box1 {
  background: radial-gradient(circle at 0% 100%, #906308 0%, #000000 100%);
  border-bottom: none;
}
.homepage__box2 {
  background: radial-gradient(circle at 0% 90%, #4d111f 0%, #000000 100%);

  border-bottom: none;
}
.homepage__box3 {
  background: radial-gradient(circle at 0% 100%, #6f6b5e 0%, #000000 100%);
}

.homepage__closedTitle {
  background: #000000;
}

.homepage__faqAnswer.closed {
  max-height: 0;
  opacity: 0;
  transition: max-height 0s ease, opacity 0s ease-in-out;
}

.homepage__openTitle .homepage__faqQuestion span:nth-child(2) {
  color: #ebe2c8;
  background-clip: text;
  -webkit-text-fill-color: #ebe2c8;
}

.homepage__openTitle > * {
  color: #ebe2c8 !important;
}

.homepage__faqAnswer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  /*transition: max-height 0.8s linear, opacity 0s ease-in-out; */ /* MTA Taken out to remove in/out animation */
  padding-left: 94px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.homepage__faqAnswer h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

.homepage__faqAnswer hr {
  border: none;
  border-top: 1px solid white;
  margin-bottom: 15px;
  margin-top: 4px;
}

.homepage__faqAnswer p {

  line-height: 15px;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
}

.homepage__faqLists {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 4px;
  color: white;
  width: 100%;
  padding-left: 16px;
}

.homepage__faqLists ul {
  flex: 1;
  padding: 0;
  width: fit-content;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 33%;
}

.homepage__faqLists li {
  padding: 5px 0;
  padding: 2px 0; /* mta */
  line-height: 18px;
  width: fit-content;
}

.ConnectPage__header {
  /*display: none;*/
}

.homepage__service0 .homepage__toggleIcon {
/*
	background: radial-gradient(103.14% 313.57% at -3.14% 50%, #00a8d0 0%, #ebe2c8 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
*/
	color: var(--vseenBlue);
}

.homepage__service1 .homepage__toggleIcon {
/*
  background: radial-gradient(103.14% 313.57% at -3.14% 50%, #c1840b 0%, #ebe2c8 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
*/
	color: #c1840b;
}

.homepage__service2 .homepage__toggleIcon {
/*
	background: radial-gradient(103.14% 313.57% at -3.14% 50%, #b52144 0%, #ebe2c8 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
*/
	color: #b52144;
}

.homepage__service3 .homepage__toggleIcon {
/*
	background: radial-gradient(103.14% 313.57% at -3.14% 50%, #787058 0%, #ebe2c8 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
*/
	color: #787058;
}

.homepage__openTitle .homepage__faqQuestion .homepage__toggleIcon {
  color: #ebe2c8;
}

.homepage__toggleIcon {
  font-size: 1.5rem;
  width: 2em;
  transition: transform 0.3s ease;
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  padding: 0px 28px 0px 28px;
  margin-top: -8px;
}

.homepage__proofSection {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 60px;
  padding: 138px 0px 138px 0px;
  overflow-x: hidden;
}

.homepage__proofText {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 1200px;
}

.homepage__proofText h2 {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 29px;
  line-height: 65px;
}

.homepage__proofText p {
  font-family: ivyora-display, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1px;
}

.homepage__animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Grid Container */
.homepage__gridContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  width: 70vw;
  max-width: 1200px;
}

/* Each row of logos */
.homepage__logoRow {
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 9 columns */
  gap: 8px;
  opacity: 0;
  transform: translateY(50px);
}

.homepage__logoRow.homepage__visibleRow {
  transition: opacity 1s ease, transform 1s ease;
}

/* Different delays for staggered row animation */
.homepage__visibleRow.homepage__row0 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.homepage__visibleRow.homepage__row1 {
  transition-delay: 1s;
  opacity: 1;
  transform: translateY(0);
}

.homepage__visibleRow.homepage__row2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}

/* Logo Box (Same size for all logos) */
.homepage__logoBox {
  width: 110px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
}

.homepage__logoBox:hover {
  transform: scale(1.1);
}

/* Logo Images */
.homepage__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Keyframes for row animation */
@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid Container */

.homepage__gridContainer2 {
  display: grid;
  grid-template-rows: repeat(22, 1fr);
  grid-template-columns: 245px 332px 290px;
  gap: 14px;
  width: fit-content;
  /*height: 580px; MTA */
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.homepage__gridContainer2.homepage__visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shared Box Styles */
.homepage__Pbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #262626;
  color: white;
  border-radius: 0px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.homepage__Pbox p {
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:1.2em;

	/*added by MTA*/
	line-height: 1.30em;
	letter-spacing: .5px;
	word-spacing: .10em;
}

.homepage__Pbox > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.homepage__Pbox h3 {
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--vseenBlue);
  line-height: 30px;
  font-weight: 400;
  padding-top: .5em;
}

.homepage__Pbox h4 {
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
}

/* Box 1 - First 3 rows, first 6 columns */
.homepage__Pbox1 {
  grid-row: 1 / 9;
  grid-column: 1;
  transition-delay: 0.9s;
}

.homepage__Pbox.homepage__Pbox1 {
  padding-right: 40px;
}

.homepage__Pbox.homepage__Pbox5 {
  padding-right: 30px;
}

/* Box 2 - First 6 rows, next 6 columns */
.homepage__Pbox2 {
  grid-row: 1 / 14;
  grid-column: 2;
  transition-delay: 1.6s;
}

/* Box 3 - Last 4 rows, last 3 columns */
.homepage__Pbox3 {
  grid-row: 1 / 24;
  grid-column: 3;
  transition-delay: 2.3s;
  padding-right: 26px;
}

/* Box 4 - Last 7 rows, first 6 columns */
.homepage__Pbox4 {
  grid-row: 9 / 24;
  grid-column: 1;
  transition-delay: 2.8s;
}

/* Box 5 - Last 4 rows, last 9 columns */
.homepage__Pbox5 {
  grid-row: 14 / 24;
  grid-column: 2;
  transition-delay: 3.5s;
}

.homepage__showBox1 {
  transform: translateY(0px);
  opacity: 1;
}

.homepage__showBox2 {
  transform: translateY(0px);
  opacity: 1;
}

.homepage__showBox3 {
  transform: translateY(0px);
  opacity: 1;
}

.homepage__showBox4 {
  transform: translateY(0px);
  opacity: 1;
}

.homepage__showBox5 {
  transform: translateY(0px);
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.homepage__outerWrapper {
  margin-top: 60px;
  height: 100%;
}

.homepage__brMobile {
  display: none;
}

/* Top Left Image */
.homepage__topLeftImage {
  display: flex;
  position: absolute;
  top: -94px;
  left: -148px;
  rotate: 0deg;
  transform: translateY(50px);
  opacity: 0;
  z-index: 10; /* Higher than the grid */
  transition: opacity 1s ease, transform 2s ease;
  transition-delay: 0s;
}

/* Bottom Right Image */
.homepage__bottomRightImage {
  position: absolute;
  opacity: 0;
  bottom: -77px;
  right: -135px;
  z-index: 10; /* Higher than the grid */
  transition: opacity 1s ease, transform 2s ease;
  transition-delay: 3.9s;
  transform: translateY(50px);
  rotate: 180deg;
}

.homepage__showImage {
  opacity: 0.8;
  transform: translateY(0);
}

@keyframes shakeY {
  0%,
  100% {
    transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateY(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateY(5px);
  }
}

.homepage__arrowDown {
  display: none;
}

.homepage__mobileWorkTogether {
  display: none;
}

@media (max-width: 820px) {
  .homepage__hero {
    justify-content: center;
  }

  .homepage__heroText {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    right: unset;
    width: 100%;
    margin: 0;
    
    gap: 60px;
  }

  .homepage__heroText > p {
    display: none;
  }

  .homepage__heroNy {
    max-width: 302px;
    width: 80vw;
    top: 200px;
  }

  .homepage__arrowDown {
    position: relative;
    display: inline-block;
    animation: shakeY 22s ease-in-out infinite;
  }

  .homepage__heroOverlay {
    background: linear-gradient(
      0deg,
      rgba(9, 9, 9, 0.9791711956521739) 16%,
      rgba(9, 9, 9, 0) 100%
    );
  }

  .image-fill-container .image-fill {
    object-position: top;
  }

  .homepage__about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    width: 100%;
    overflow-x: hidden;
  }

  .homepage__main .homepage__aboutCompany {
    padding: 0;
    width: 100%;
    font-size: 1.75em;
	line-height: 1.34em;
    max-width: 314px;
    min-width: 314px;
    padding-left: 0px;
  }

  .homepage__aboutCompany span {
    font-size: 1.5em;
    line-height: 1em;
    letter-spacing: 1.4px;
  }

  .homepage__brMobile {
    display: block;
  }

  .homepage__aboutDetail {
    padding: 0;
    line-height: 18px;
    font-size: 14px;
    text-align: start;
    justify-content: flex-start;
    align-items: start;
    justify-self: start;
    gap: 0;
    /*max-width: 220px;*/
    width: 100%;
    min-width: 180px;
    position: relative;
    font-weight: 300;
  }

  .homepage__faq .homepage__faqQuestion {
    padding: 22px;
  }

  .homepage__aboutDetail .homepage__asterisk {
    /*position: absolute;
    width: 9px;
    height: 15px;
    padding: 0px;
    left: -10px;
    top: -4px;*/
  }

  .homepage__aboutDetail .homepage__asterisk img {
    padding: 0;
    /*width: 9px;*/
    padding-bottom: 5px;
  }

  .aboutQuote {
    position: relative;
    right: unset;
    align-self: center;
    padding-top: 80px;
  }

  .homepage__faq {
    flex-direction: row-reverse;
  }

  .homepage__servicesContainer
    .homepage__faqItem
    .homepage__faqQuestion
    .homepage__toggleIcon {
    font-family: area-normal, sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 45px;
    line-height: 45px;
    width: 26px;
    height: fit-content;
    padding: 0;
    overflow-y: visible;
    position: absolute;
    top: 29px;
    right: 20px;

  }

  .homepage__openTitle .homepage__faqQuestion span:nth-child(2) {
    -webkit-text-fill-color: transparent;
  }

  .homepage__faqItem .homepage__faqQuestion span:nth-child(2) {
    font-size: 22px;
    max-width: 205px;
    line-height: 26px;
    letter-spacing: 1px;
    justify-self: flex-start;
  }

  .homepage__mobileWorkTogether {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 80px;
    height: fit-content;
    justify-content: center;
    gap: 8px;
    padding: 66px 40px 30px 40px ;
  }

  .homepage__projectsSection .homepage__maxSizer {
    display: none;
  }

  .homepage__mobileWorkTogether h2 {
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    display: none;
  }

  .homepage__mobileWorkTogether h2 > span {
    font-family: ivyora-display, serif;
    font-weight: 100;
    font-style: italic;
    margin-left: 2px;
    font-size: 28px;
    line-height: 32px;
    font-weight: 100;
  }

  .homepage__mobileWorkTogether div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
  }

  .homepage__mobileWorkTogether div > span {
    font-size: 14px;
    align-self: center;
  }

  .homepage__faqQuestion {
    justify-content: space-between;
    overflow: visible;
    position: relative;
  }

  .homepage__faqAnswer {
    padding: 0px 40px 20px 20px;
  }

  .homepage__services {
    /*background-size: 15px 15px;*/
  }

  .homepage__faqLists {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
    padding: 0;
  }

  .homepage__faqLists ul {
    list-style: none;
    padding-left: 0;
  }

  .homepage__maxSizer {
    padding-inline: 40px;
  }

  .homepage__maxSizer div {
    display: none;
  }

  .homepage__projectsSection {
    gap: 16px;
  }

  .homepage__projectsSection h2 {
    margin-bottom: 20px;
  }

  .homepage__services {
    padding: 10vh 10vw;
    height: fit-content;
    
    background-image: linear-gradient(to right, #403E3ECC 1px, transparent 1px), linear-gradient(to bottom, #403E3ECC 1px, transparent 1px);
    
  }

  .homepage__faq .homepage__faqQuestion span {
    line-height: 28px;
  }

  .homepage__faqAnswer {
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .homepage__faqAnswer .homepage__faqLists {
    gap: 0;
    order: 3;
  }

  .homepage__faq .homepage__toggleIcon {
    height: fit-content;
    text-align: center;
    margin-top: -6px;
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
  }

  .homepage__faq {
    padding: 0;
  }

  .homepage__about {
    padding: 50px 8vw 85px 8vw;
  }

  .homepage__aboutQuote {
    color: #242424b2;
    min-width: 328px;
    align-self: center;
    
  }

  .homepage__faqAnswer > p {
    order: 1;
  }

  .homepage__faqAnswer hr {
    order: 2;
  }

  .homepage__faqAnswer div:nth-child(3) {
    order: 4;
  }

  .homepage__faq .homepage__faqItem .homepage__faqAnswer > div:nth-child(4) {
    display: none !important;
  }

  .homepage__faqAnswer {
    position: relative;
  }

  .homepage__faq
    .homepage__faqItem
    .homepage__faqAnswer
    .homepage__faqLists
    div:last-child {
    justify-self: flex-end;
    align-self: flex-end;
    position: absolute;
    right: 0px;
    bottom: -5px;
    display: flex;
  }

  .homepage__faqLists {
    position: relative;
    width: 100%;
    height: fit-content;
  }

  .homepage__faqItem .ProjectCard__company {
    display: none;
  }

  .homepage__faqLists li {
    padding: 0;
    line-height: 2em;
    font-size: 1em;
    text-transform: uppercase;
  }

  .homepage__faqLists ul {
    max-width: 100%;
  }

  .homepage__openTitle .homepage__open {
    padding-top: 16px;
  }

  .homepage__faqItem .homepage__faqAnswer > p {
    line-height: 18px;
    font-size: 14px;
    text-transform: none;
    padding-bottom: 16px;
  }

  .homepage__faq .homepage__faqItem {
    background: black;
  border: 1px solid #EBE2C8;

  }

  .homepage__faqItem .homepage__faqAnswer hr {
    border-top-width: 1px;
    margin-bottom: 16px;
  }

  .homepage__faqItem .homepage__faqAnswer {
    padding: 10px 20px 28px 20px;
  }

  .homepage__faqItem .homepage__faqAnswer a:last-child {
    order: 6;
    margin-top: 18px;
  }

  .homepage__faq .homepage__faqItem .homepage__closed {
    padding: 0;
    margin: 0;
  }

  .homepage__servicesContainer > div:last-child {
    justify-self: flex-end;
    justify-content: flex-end;
  }

  .homepage__projectsSection {
    min-height: unset;
    padding: 10vh 0px;
  }

  .homepage__projectsSection {
    background: linear-gradient(297.78deg, #4d111f -1.25%, #000000 109.7%);
  }

  .homepage__faqAnswer.open {
    max-height: 600px;
  }

  .homepage__aboutQuote {
    font-size: 2.8em;
  }

  .header__container {
    height: 80px;
    padding: 0px 30px 0px 30px;
  }
}

@media (min-width: 820px) and (max-width: 1080px) {
  .homepage__gridContainer2 {
    display: none;
  }

  .homepage__proofSection {
    min-height: unset;
  }

  .homepage__proofText h2 {
    font-size: 30px;
    line-height: 64px;
  }

  .homepage__proofText p {
    font-size: 28px;
  }
  .homepage__outerWrapper {
    display: none;
  }

  .homepage__aboutQuote {
    font-size: 60px;
  }
  .homepage__faqQuestion {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .homepage__faqAnswer {
    padding: 0px 40px 20px 20px;
  }

  .homepage__services {
    background-size: 20px 20px;
  }

  .homepage__faqLists {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
  }

  .homepage__faqLists ul {
    list-style: none;
    padding-left: 0;
  }

  .homepage__maxSizer {
    padding-inline: 40px;
  }

  .homepage__maxSizer div {
    display: none;
  }

  .homepage__projectsSection {
    gap: 16px;
  }

  .homepage__projectsSection h2 {
    margin-bottom: 20px;
  }

  .homepage__services {
    padding: 10vh 10vw;
    height: fit-content;
  }

  .homepage__faqAnswer {
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .homepage__faqAnswer .homepage__faqLists {
    gap: 0;
    order: 3;
  }

  .homepage__faq .homepage__toggleIcon {
    height: fit-content;
    text-align: center;
    padding-bottom: 10px;
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .homepage__faq {
    padding: 0;
  }

  .homepage__about {
    padding: 10vh 10vw;
  }

  .homepage__aboutQuote {
    color: #242424b2;
  }

  .homepage__faqAnswer > p {
    order: 1;
  }

  .homepage__faqAnswer hr {
    order: 2;
  }

  .homepage__faqAnswer div:nth-child(3) {
    order: 4;
  }

  .homepage__faq .homepage__faqItem .homepage__faqAnswer > div:nth-child(4) {
    display: none !important;
  }

  .homepage__faqAnswer {
    position: relative;
  }

  .homepage__faq
    .homepage__faqItem
    .homepage__faqAnswer
    .homepage__faqLists
    div:last-child {
    justify-self: flex-end;
    align-self: flex-end;
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
  }

  .homepage__faqLists {
    position: relative;
    width: 100%;
    height: fit-content;
  }

  .homepage__faqLists li {
    padding: 0;
    line-height: 21px;
    font-size: 10px;
    text-transform: uppercase;
  }

  .homepage__faqLists ul {
    max-width: 100%;
  }

  .homepage__openTitle .homepage__open {
    padding-top: 16px;
  }

  .homepage__faqItem .homepage__faqAnswer > p {
    line-height: 18px;
    font-size: 14px;
    text-transform: none;
    padding-bottom: 18px;
  }

  .homepage__faq .homepage__faqItem {
    background: black;
  }

  .homepage__faqItem .homepage__faqAnswer hr {
    border-top-width: 1px;
    margin-bottom: 16px;
  }

  .homepage__faqItem .homepage__faqAnswer {
    padding: 20px;
  }

  .homepage__faqItem .homepage__faqAnswer a:last-child {
    order: 6;
    margin-top: 16px;
  }

  .homepage__faq .homepage__faqItem .homepage__closed {
    padding: 0;
    margin: 0;
  }

  .homepage__servicesContainer > div:last-child {
    justify-self: flex-end;
    justify-content: flex-end;
    margin-top: 32px;
  }

  .homepage__projectsSection {
    min-height: unset;
    padding: 10vh 0px;
  }

  .homepage__projectsSection {
    background: linear-gradient(297.78deg, #4d111f -1.25%, #000000 109.7%);
  }

  .homepage__faqAnswer.open {
    max-height: 600px;
  }

}

@media (min-width: 1080px) and (max-width: 1500px) {
  .homepage__proofText {
    margin-left: 5vw;
  }

  .homepage__services {
    padding-inline: 9vw;
  }
}

@media (min-width: 500px) and (max-width: 820px) {
  .homepage__faqItem .homepage__faqQuestion span:nth-child(2) {
    max-width: 205px;
  }

  @media (max-width: 500px) {
    .homepage__faqItem .homepage__faqQuestion span:nth-child(2) {
      font-size: 18px;
    }
  }
}

/* ArrowLink */

.ArrowLink__container {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: transform 0.6s ease;
  width: fit-content;
  height: fit-content;
  margin-top: 1em; /*mta*/
}

.ArrowLink__container:hover {
  transform: translateX(8px);
}

.ArrowLink__container:hover a {
  box-shadow: 0px 1px 0px white;
}

.ArrowLink__container:hover img {
  transform: translateX(16px);
}

.ArrowLink__container img {
  margin-top: 0px;
  align-self: center;
  transition: 1s;
}

.ArrowLink__container a {
  color: white;
  font-family: area-normal, sans-serif;
  font-weight: 100;
  font-style: normal;
  z-index: 3;
  max-width: fit-content;
}

.ArrowLink__alignEnd {
  align-self: flex-end;
  text-align: end;
  justify-content: flex-end;
  justify-self: flex-end;
  width: 100%;
}

.ArrowLink__singleArrowBrown {
  display: none;
}

@media (max-width: 1080px) {
  .ArrowLink__container:hover {
    transform: translateX(0px);
  }

  .ArrowLink__container {
    justify-content: center;
    align-items: center;
  }

  .ArrowLink__container img {
    margin-top: 0px;
  }

  .ArrowLink__singleArrowBrown {
    display: flex;
    width: fit-content;
  }
}

.QuoteButton__connect {
  border-radius: 30px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.QuoteButton__connect.QuoteButton__btn a {
  /*padding: 8px 32px;*/
  

}

.QuoteButton__partner {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  width: fit-content;
  font-size: 16px;
  line-height: 18px;
}

.QuoteButton__request {
  border-radius: 30px;
  color: white;
  background: radial-gradient(
    136.46% 686.33% at -14.68% -8.33%,
    #47b9ea 0%,
    #063572 100%
  );

  font-weight: 600;
  cursor: pointer;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.QuoteButton__request.QuoteButton__btn a {
  padding: 12px 48px;
/*padding: 0px 15px 2px 15px;*/
  border-radius: 30px;
  font-weight: 800;
}

.connectPage__takeATour{
  width: 10em;
  margin-top: 10px;
}

.connectPage__takeATour.QuoteButton__btn a {
  padding: 8px 30px;;
  /*padding: 0px 15px 2px 15px;*/
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 12px;
}

.QuoteButton__work.QuoteButton__btn a {
  padding: 12px 48px;
  /*padding: 0px 15px 2px 15px;*/
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.QuoteButton__connect2 {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 12px;
}

.QuoteButton__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 3;
  border-radius: 30px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  will-change: filter;
  transition: 0.5s;
}

.QuoteButton__btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    136.46% 686.33% at -14.68% -8.33%,
    #47b9ea 0%,
    #063572 100%
  );
  left: 0;
  top: 0;
  border-radius: 30px;
  overflow: visible;
}

/* glow */
.QuoteButton__btn::before {
  content: "";
  background: linear-gradient(
    45deg,
    #193354,
    #184785,
    #143560,
    #142a47,
    #3374c7,
    #2f64a8,
    #47b9ea,
    #0b2241
  );
  position: absolute;
  top: 5%;
  left: 5%;
  background-size: 900%;
  z-index: -2;
  width: calc(90%);
  height: calc(90%);
  filter: blur(20px);
  -webkit-filter: blur(20px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  border-radius: 30px;
  overflow: visible;
}

.absolute.QuoteButton__btn {
  height: 100px;
  width: 100px;
  font-size: 60px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #0b1f39;
  background: --vseenBlue;
  padding: 0px;
  text-align: center;
  border-radius: 50%;
  line-height: 94px;
}

.absolute.QuoteButton__btn::after {
  background: --vseenBlue;
  border-radius: 50%;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.QuoteButton__btn:hover {
  box-shadow: 0px 1px 21px -1px --vseenBlue;
}

/* hover */
.QuoteButton__btn:hover::before {
  opacity: 1;
}

.QuoteButton__btn:active::after {
  background: transparent;
}

.QuoteButton__btn:active {
  color: #000;
  font-weight: bold;
}

.QuoteButton__btn a {
  color: white;
  padding: 12px 32px;
}

@media (max-width: 1080px) {
  .absolute {
    display: none;
  }

  .QuoteButton__btn a {
    font-size: 14px;
    padding: 8px 20px !important;
  }
}

.Footer__footer {
  position: relative;
  background-color: #ebe2c8;
  color: black;
  height: fit-content;
  display: flex;
  justify-content: center;
}

.Footer__footer > div {
  position: relative;
  max-width: 1280px;
  padding: 80px 0px 220px 0px;
}

.Footer__linksColumn {
  grid-area: a;
}

.Footer__otherColumn {
  grid-area: b;
}

.Footer__servicesColumn {
  grid-area: c;
}

.Footer__emailColumn {
  grid-area: d;
}

.Footer__addressColumn {
  grid-area: e;
}

.Footer__columns {
  display: grid;
  grid-template-columns: 100px 240px 340px 410px 170px;
  grid-template-areas: "a b c d e";
  width: 100%;
}

.Footer__column a {
  display: block;
  margin-bottom: 8px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}


.footerSecondRow{
    display: grid;
    grid-template-columns: 340px 340px 410px 170px;
    width: 100%;
}

.Footer__sisterCompanies{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Footer__sisterCompaniesLogos{
    display: flex;
    justify-content: center;
    align-items: center; 
}


.Footer__column a:hover {
  color: --vseenBlue;
}

.Footer__column .Footer__sustainability {
  font-family: ivyora-display, serif;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25em;
  margin-top: 58px;
  letter-spacing: 0px;
  max-width: 320px;
  font-size: 1.5em;
}

.Footer__column > h3 {
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Footer__column p {
  margin-bottom: 10px;
  line-height: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Footer__inputWrapper {
  position: relative;
  margin-bottom: 10px;
  margin-top: 20px;
}

.Footer__emailSubmit {
  position: absolute;
  right: 0px;
  top: calc(30% - 9px);
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.Footer__emailInput {
  width: 100%;
  border: none;
  background: transparent;
  padding: 5px 35px 5px 0;
  color: black;
  outline: none;
  border-bottom: 2px solid black;
  border-radius: none;
  box-shadow: none;
  background-size: 20px 20px;
}

.Footer__emailInput::placeholder {
  color: #b6ae96;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Footer__iconRow {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  /*margin-inline: 6px;*/
}

.Footer__iconRow a {
  position: relative;
}

.Footer__iconRow img {
  width: 35px;
  height: 35px;
}

.Footer__bottomLeftText {
  position: absolute;
  bottom: 20px;
  
  color: #3d3d3d;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.Footer__bottomRightText {
  position: absolute;
  bottom: 80px;
  right: 0px;
  color: #c4bca3;
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 60px;
}

.Footer__servicesFooter {
  margin-left: 16px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Footer__extendedColumn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.Footer__extendedColumn a:hover {
  color: var(--vseenBlue);
}

.Footer__servicesColumn a {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 32px;
  width: fit-content;
}

.Footer__servicesColumn a:nth-of-type(1):hover {
  color: var(--vseenBlue);
}

.Footer__servicesColumn a:nth-of-type(2):hover {
  color: #c1840b;
}

.Footer__servicesColumn a:nth-of-type(3):hover {
  color: #b52144;
}

.Footer__servicesColumn a:nth-of-type(4):hover {
  color: #726e64;
}

.Footer__column .Footer__phoneFooter {
  margin-top: 20px;
}

.Footer__column .Footer__address,
.Footer__column .Footer__phoneFooter {
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
}

.Footer__bottomRightText {
  display: none;
}
.Footer__bottomRightText.Footer__textLimited {
  display: flex;
}

@media (max-width: 1240px) {
  .Footer__footer {
    min-width: 100%;
    padding-top: 30px;
  }
  .Footer__footer > div {
    padding: 0px 40px 120px 40px;
  }






  .Footer__linksColumn,
  .Footer__sustainability,
  .Footer__otherColumn {
    display: none;
  }

  .Footer__columns {
    grid-template-areas: "e e" "c d";
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    column-gap: 18px;
  }

  .Footer__columns .Footer__addressColumn {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

.footerSecondRow{
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
}




  .Footer__addressColumn .Footer__phoneFooter {
    display: none;
  }

  .Footer__servicesFooter {
    margin-left: 0;
  }

  .Footer__bottomLeftText {
    font-size: 12px;
  }

  .Footer__bottomRightText {
    font-size: 2.5em;
    bottom: 60px;
    right: 10vw;
  }

  .Footer__addressColumn .Footer__address {
    line-height: 18px;
    font-size: 14px;
  }

  .Footer__iconRow {
    gap: 16px;
    margin: 0;
  }

  .Footer__footer .Footer__columns .Footer__emailColumn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .Footer__iconRow a img {
    width: 20px;
    height: 20px;
  }

  .Footer__footer .Footer__columns .Footer__column * {
    font-family: area-normal, sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 18px;
    font-size: 14px;
  }



  .Footer__footer .Footer__columns .Footer__servicesColumn > p {
    font-family: area-normal, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 18px;
  }

  .Footer__footer .Footer__servicesColumn .Footer__servicesFooter a {
    margin: 0;
    font-family: area-normal, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
  }

  .Footer__emailInput::placeholder {
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
  }

  .Footer__bottomLeftText {
    font-size: 8px;
    bottom: 4px;
    left: 8px;
  }

}

.ProjectCard__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 230px;
}

.ProjectCard__container .ProjectCard__image {
  position: relative;
  width: 100%;
  height: 184px;
}

.ProjectCard__image img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ProjectCard__text {
  background-color: white;
  color: black;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 12px;
  padding: 12px 15px;
  line-height: 20px;
  height: 46;
}

.ProjectCard__text h3{
  text-transform: uppercase;
}

.ProjectCard__company{
text-transform: none;
}

.ProjectCard__mobile {
  display: none;
}

.ProjectCard__container.ProjectCard__services {
  width: 100%;
  height: 340px;
}

.ProjectCard__services .ProjectCard__image {
  height: 260px;
}

.ProjectCard__services .ProjectCard__text {
  height: 80px;
}

.ProjectCard__services .ProjectCard__text h4 {
  font-size: 20px;
  line-height: 21px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 4px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-transform: uppercase;
}

.ProjectCard__services .ProjectCard__text p {
  line-height: 21px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  font-style: normal;
}

.ProjectCard__container.ProjectCard__work .ProjectCard__text {
  background-color: black;
  box-shadow: inset 0 0 0 1px white;
  z-index: 2;
  color: white;

}

.ProjectCard__container.ProjectCard__work .ProjectCard__image {
  max-height: 245px;
}

.ProjectCard__container.ProjectCard__work {
}

.ProjectCard__container.ProjectCard__work .ProjectCard__text {
  height: fit-content;
}

.ProjectCard__work .ProjectCard__text h4 {
  margin-top: 6px;
  font-size: 1.25em;
  line-height: 26px;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.ProjectCard__work .ProjectCard__text p {
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 26px;
}

@media (max-width: 1160px) {
  .ProjectCard__mobile {
    display: flex;
  }

  .ProjectCard__container.ProjectCard__services {
    width: 100%;
    height: 226px;
  }

  .ProjectCard__services .ProjectCard__image {
    height: 195px;
  }

  .ProjectCard__services .ProjectCard__text {
    height: 40px;
  }

  .ProjectCard__services .ProjectCard__text h4 {
    font-size: 12px;
    line-height: 16px;
    font-family: area-normal, sans-serif;
    font-weight: 800;
    font-style: normal;
  }

  .ProjectCard__services .ProjectCard__text p {
    display: none;
  }
}

@media (max-width: 900px) {
  .ProjectCard__container.ProjectCard__work .ProjectCard__text h4 {
    margin-top: 0;
    font-family: area-normal, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
  }

  .ProjectCard__container.ProjectCard__work .ProjectCard__text p {
    display: none;
  }

  .ProjectCard__container.ProjectCard__work .ProjectCard__text {
    height: fit-content;
    padding: 16px;
  }
}

@media (min-width: 900px) and (max-width: 1500px) {
  .ProjectCard__container.ProjectCard__work .ProjectCard__text h4 {
    margin-top: 0;
    font-family: area-normal, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
  }



  .ProjectCard__container.ProjectCard__work .ProjectCard__text {
    height: fit-content;
  }
}

/* About us */

.AboutPage__hero {
  position: relative;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow-y: hidden;
}

.AboutPage__hero .AboutPage__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    /*background-color: rgba(0, 0, 0, 0.618);*/
  background: linear-gradient(
    0deg,
    rgba(9, 9, 9, 1) 4%,
    rgba(9, 9, 9, 0.371) 32%,
    rgba(9, 9, 9, 0.106) 91%
  );
}

.AboutPage__hero > img {
    object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}


.AboutPage__about {
  background-color: #090909;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  width: 100%;
  padding: 25vh 0px 85px 0px;
}

.AboutPage__about .AboutPage__aboutContainer > div, .AboutPage__about > div {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/*.AboutPage__about .AboutPage__aboutContainer > p, .AboutPage__about > p {
  align-self: flex-end;
  font-size: 80px;
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: #242424;
}*/

.AboutPage__aboutText, .ServicesPage__aboutText, .homepage__aboutCompany{
  width: 730px;
	font-size: 1.75em;
	line-height: 1.34em;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -1%;
  align-self: start;
  /*padding-left: 40px;*/
}

.AboutPage__aboutText > span, .ServicesPage__aboutText > span, .homepage__aboutCompany > span{
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  letter-spacing: 1px;
    font-size: 1.25em;
	line-height: 1em;
  letter-spacing: 4%;
}

/*.AboutPage__aboutAsterisk {
  display: flex;
  gap: 12px;
  font-size: 1.5em;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  align-items: flex-start;
}*/

/*
.AboutPage__asterisk1,
.AboutPage__asterisk2 {
  position: relative;
  width: 15px;
  height: 40px;
}

.AboutPage__asterisk1 img {
  position: absolute;
  left: -24px;
  top: 13px;
}

.AboutPage__asterisk2 img {
  position: absolute;
  top: 4px;
}*/

/*.AboutPage__aboutText span:first-child {
  padding-right: 28px;
}*/

.AboutPage__timelineDesktop {
  background-size: 38px 38px;
  background-image: linear-gradient(to right, #212121cc 1px, transparent 1px),
    linear-gradient(to bottom, #212121cc 1px, transparent 1px);
  border-top: 1px solid rgb(174, 174, 174);
  border-bottom: 1px solid rgb(174, 174, 174);
  background-position: top;
  gap: 20px;
  overflow-x: scroll;
  position: relative;
  user-select: none;
}

.AboutPage__activeGrab {
  cursor: grabbing !important;
}

.AboutPage__timelineMobile {
  display: none;
}

.AboutPage__timelineTitle {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.AboutPage__timelineDesktop .AboutPage__relative {
  width: 3831px;
  height: 936px;
  position: relative;
  user-select: none;
}

.AboutPage__timelineDesktop .AboutPage__timelineCTA {
  position: absolute;
  top: 390px;
  right: 120px;
  z-index: 2;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.AboutPage__timelineCTA h2 {
  font-size: 30px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.AboutPage__timelineCTA h2 span {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: 1px;
}

.AboutPage__timelineCTA h2 span span {
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: var(--vseenBlue);
}

.AboutPage__timelineDesktop {
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
}

.AboutPage__timelineDesktop::-webkit-scrollbar {
  display: none;
}

.AboutPage__relative::-webkit-scrollbar-track {
  background-color: #00000000; /* fully transparent */
}

.AboutPage__timelineDesktop::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* semi-transparent scrollbar */
  border-radius: 4px;
}

.AboutPage__team {
  padding: 10vh 0px;
  background: linear-gradient(297.78deg, #4d111f -1.25%, #000000 109.7%);

  border-bottom: 1px solid rgb(211, 211, 211);
}

.AboutPage__team > h2 {
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1px;
  width: 100%;
  padding-inline: 10vw;
  margin-bottom: 90px;
}

.AboutPage__teamCarousel {
  display: flex;
  gap: 24px;
  /*padding-inline: 24px;*/
  /*padding-inline: 100px; left right padding to the overall carousel  */
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
  scrollbar-width: none;
  /* Firefox */
}

.AboutPage__teamCarousel .AboutPage__card {
  display: flex;
  flex-direction: column;
  /*box-shadow: 13.86px 13.86px 13.86px 4.16px #00000066;*/
}

.AboutPage__teamCarousel .AboutPage__card > img {
  object-fit: cover;
  max-height: 420px;
  margin-bottom: .5em;
}

.AboutPage__cardInfo {
  display: flex;
  flex-direction: column;
/*  background-color: white;*/
  padding: 0px 15px;
}

.AboutPage__cardLinks {
  align-self: flex-end;
  /*display: flex;*/
  display: none;
  gap: 7px;
  margin-top: -26px;
  transition: none !important;
}

.Project__slide:hover .AboutPage__cardLinks{
  display: flex;
}

.AboutPage__cardInfo h3 {
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: #FFF;
  font-size: 2em;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.AboutPage__cardInfo > p {
  font-size: .9em;
  /*line-height: 28px;*/
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ebe2c8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.AboutPage__values {
  display: flex;
  flex-direction: column;
  padding: 10vh 10vw;
  background-size: 38px 38px;
  background-image: linear-gradient(to right, #212121cc 1px, transparent 1px),
    linear-gradient(to bottom, #212121cc 1px, transparent 1px);
  border-bottom: 1px solid rgb(174, 174, 174);
  background-position: top;
}

.AboutPage__values h2 {
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1px;
  margin-bottom: 92px;
}

.AboutPage__values > span {
  width: fit-content;
  align-self: center;
  text-align: center;
  margin-top: 84px;
}

.AboutPage__valuesContainer {
  display: flex;
  justify-content: space-between;
  height: fit-content;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  align-self: center;
}

.AboutPage__vBox {
  max-width: 338px;
  min-width: 338px;
  height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  	line-height: 20px;
	letter-spacing: .5px;
	font-weight: 100;
}

.AboutPage__vBox h3 {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2em;
  line-height: 30px;
}

.AboutPage__vBox p {
  font-size: 16px;
  line-height: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 100;
  font-style: normal;
  margin-top: 16px;
}

.AboutPage__arrowDown {
  display: none;
}

.AboutPage__aboutMobile {
  display: none;
}

.AboutPage__timelineDesktop .AboutPage__relative .AboutPage__timelineBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  user-select: none;
}

.AboutPage__timelineBox {
  background-color: #33323299;
  gap: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  position: absolute;
  opacity: 0;
}

.AboutPage__timelineBox h3 {
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 2em;
}

.AboutPage__timelineBox p {
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.35em;
}

.AboutPage__timelineBox > img {
  user-select: none;
}

.AboutPage__timelineDesktop .AboutPage__tBox1 {
  width: 310px;
  left: 790px;
  top: 235px;
}

.AboutPage__timelineDesktop .AboutPage__tBox2 {
  width: 320px;
  left: 1090px;
  top: 502px;
}

.AboutPage__timelineDesktop .AboutPage__tBox3 {
  width: 360px;
  left: 1420px;
  top: 272px;
}

.AboutPage__timelineDesktop .AboutPage__tBox4 {
  width: 320px;
  left: 1750px;
  top: 502px;
}

.AboutPage__timelineDesktop .AboutPage__tBox5 {
  width: 310px;
  left: 2050px;
  top: 206px;
}

.AboutPage__timelineDesktop .AboutPage__tBox6 {
  width: 450px;
  left: 2340px;
  top: 502px;
}

.AboutPage__timelineDot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--vseenBlue);
  position: absolute;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot1 {
  left: 10px;
  bottom: -45px;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot2 {
  top: -45px;
  bottom: -45px;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot3 {
  left: 10px;
  bottom: -45px;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot4 {
  top: -45px;
  bottom: -45px;
  background-color: #eaaf21;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot5 {
  left: 10px;
  bottom: -45px;
  background-color: #b52144;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot6 {
  top: -45px;
  background-color: #b6ae96;
}

.AboutPage__timelineDesktop .AboutPage__timelineDot7 {
  bottom: -81px;
  animation: growAndShrink 4s ease-in-out infinite;
}

.AboutPage__timelineTitle {
  top: 128px;
  left: 10vw;
}

.AboutPage__timelineTitle h2 {
  font-size: 40px;
  line-height: 40px;
  text-transform: uppercase;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.AboutPage__timelineTitle p {
  font-family: ivyora-display, serif;
  font-weight: 300;
  font-style: italic;
  text-transform: capitalize;
  font-size: 45px;
  color: var(--vseenBlue);
}
.AboutPage__valuesContainer .AboutPage__vBox {
  opacity: 0;
  transform: translateX(100);
  transition: all 1s linear;
}



.AboutPage__valuesContainer.AboutPage__visibleValues .AboutPage__vBox {
  transform: translateX(0);
  opacity: 1;
  gap: 40px;
  justify-content: flex-start;
}

.AboutPage__vBox img {
  height: 97px;
  width: fit-content;
  object-fit: contain;
}

.AboutPage__valuesContainer.AboutPage__visibleValues > div:nth-child(1) {
  transition-delay: 0.2s;
}

.AboutPage__valuesContainer.AboutPage__visibleValues > div:nth-child(2) {
  transition-delay: 0.5s;
}

.AboutPage__valuesContainer.AboutPage__visibleValues > div:nth-child(3) {
  transition-delay: 0.8s;
}

@media (max-width: 800px) {
  .AboutPage__aboutDesktop {
    display: none;
  }

  .AboutPage__overlay {
    background: rgb(9, 9, 9);
    background: linear-gradient(
      0deg,
      rgba(9, 9, 9, 1) 19%,
      rgba(9, 9, 9, 0.6878453038674033) 42%,
      rgba(9, 9, 9, 0.5828729281767956) 91%
    );
  }

  .AboutPage__arrowDown {
    position: absolute;
    bottom: 5vh;
    z-index: 2;
    display: inline-block;
    animation: shakeY 22s ease-in-out infinite;
  }

  .AboutPage__heroText2 > span {
    font-size: 34px;
  }

  .AboutPage__heroText2 {
    gap: 8px;
  }

  .AboutPage__about {
    border-bottom: 1px solid rgb(174, 174, 174);
    padding: 10vh 10vw;
  }

  .AboutPage__aboutText {
    /*max-width: 300px;*/
    max-width: 19em;
    /*font-size: 18px;
    line-height: 28px;*/
    
    font-size: 1.5em;
    line-height: 1.5em;
    letter-spacing: .02em;

    /*width: 300px;*/
    width: 100%;
    padding-left: 0px;
  }

  .AboutPage__aboutText > span {
    /*font-size: 22px;
    letter-spacing: 1px;
    line-height: 28px;*/

    font-size: 1.4em;
    letter-spacing: .05em;
    line-height: unset;
  }

  .AboutPage__aboutMobile .AboutPage__aboutText .homepage__asterisk{
    /*margin-left: -.2em;*/
  }

  .AboutPage__aboutMobile {
    display: flex;
  }

  .AboutPage__asterisk1 {
    top: -10px;
    left: 12px;
  }

  .AboutPage__asterisk2 {
    top: -6px;
  }

  .AboutPage__aboutAsterisk {
    gap: 0px;
  }

  .AboutPage__about .AboutPage__aboutContainer > p, .AboutPage__about > p, .aboutQuote {
    font-size: 9vw;
    
  }

  .AboutPage__aboutAsterisk {
    font-size: 12px;
  }

  .AboutPage__team {
    padding: 10vh 0px;
  }

  .AboutPage__team > h2 {
    font-size: 2em;
    line-height: 20px;
    margin-bottom: 50px;
  }

  .AboutPage__card {
    width: 265px;
    height: 420px;
  }

  .AboutPage__card > img {
    width: 265px;
    height: 344px;
  }

  .AboutPage__cardInfo h3 {
    font-size: 19px;
  }

  .AboutPage__cardInfo > p {
    font-size: 12px;
  }

  .AboutPage__cardLinks a img {
    transform: scale(0.8);
  }

  .AboutPage__cardLinks {
    gap: 4px;
  }

  .AboutPage__values {
    padding: 10vh 10vw;
    background-size: 38px 38px;
    background-image: linear-gradient(to right, #212121cc 1px, transparent 1px),
      linear-gradient(to bottom, #212121cc 1px, transparent 1px);
    overflow-x: hidden;
  }

  .AboutPage__values > h2 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 50px;
  }

  .AboutPage__valuesContainer {
    flex-direction: column;
    align-items: center;
  }

  .AboutPage__valuesContainer .AboutPage__vBox {
    max-width: 300px;
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    min-width: unset;
  }

  .AboutPage__vBox h3 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
  }

  .AboutPage__vBox > div > p {
    font-size: 12px;
    line-height: 20px;
    max-width: 230px;
  }

  .AboutPage__vBox div {
    display: flex;
    flex-direction: column;
  }

  .AboutPage__vBox > img {
    padding: 0;
  }

  .AboutPage__values > span {
    width: fit-content;
    align-self: center;
    text-align: center;
    margin-top: 84px;
  }

  .AboutPage__timelineDesktop {
    display: none;
  }

  .AboutPage__timelineMobile {
    display: flex;
    height: 1400px;
    overflow-x: hidden;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    background-size: 38px 38px;
    background-image: linear-gradient(to right, #212121cc 1px, transparent 1px),
      linear-gradient(to bottom, #212121cc 1px, transparent 1px);
    border-bottom: 1px solid rgb(174, 174, 174);
    background-position: top;
  }

  .AboutPage__timelineMobile .AboutPage__relative {
    position: relative;
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .AboutPage__timelineMobile .AboutPage__relative > img {
    object-fit: fill;
    object-position: center;
  }

  .AboutPage__timelineMobile .AboutPage__timelineTitle {
    max-width: 290px;
    width: 290px;
    top: 90px;
    left: 268px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineTitle h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineTitle p {
    font-size: 25px;
    line-height: 26px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineCTA h2 {
    font-size: 16px;
    line-height: 22px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineCTA h2 > span {
    font-size: 20px;
    line-height: 22px;
    color: #cbcbcb;
  }

  .AboutPage__timelineMobile .AboutPage__timelineCTA h2 > span span {
    font-size: 20px;
    line-height: 22px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineCTA {
    max-width: 290px;
    width: 290px;
    bottom: 135px;
    left: 288px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineCTA > span {
    font-size: 10px;
    padding-block: 6px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineBox {
    width: 240px;
    left: 420px;
    gap: 8px;
    padding: 12px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineBox h3 {
    font-size: 15px;
    line-height: 16px;
  }

  .AboutPage__timelineMobile .AboutPage__timelineBox p {
    font-size: 1em;
    line-height: 1.3em;
  }

  .AboutPage__tBox1 {
    top: 190px;
  }

  .AboutPage__tBox2 {
    top: 338px;
  }

  .AboutPage__tBox3 {
    top: 466px;
  }

  .AboutPage__tBox4 {
    top: 564px;
    animation-fill-mode: forwards;
  }

  .AboutPage__tBox5 {
    top: 738px;
    animation-fill-mode: forwards;
  }

  .AboutPage__tBox6 {
    top: 910px;
  }

  .AboutPage__open .AboutPage__tBox1 {
    top: 190px;
  }

  .AboutPage__open .AboutPage__tBox2 {
    top: 338px;
    transform: translateX(-100px);
    animation: moveBoxes 1s linear;
    animation-fill-mode: forwards;
    display: none;
  }

  .AboutPage__open .AboutPage__tBox3 {
    top: 466px;
    transform: translateX(-100px);
    animation: moveBoxes 1s linear;
    animation-fill-mode: forwards;
    display: none;
  }

  .AboutPage__timelineDot {
    width: 10px;
    height: 10px;
    left: -25px;
    top: 20px;
    transition: transform 1s linear;
  }

  .AboutPage__timelineDot1 {
    opacity: 1;
  }

  .AboutPage__timelineMobile .AboutPage__timelineDot2 {
    top: 408px;
    left: 295px;

    animation: growAndShrink 2s ease-in-out infinite;
  }

  .AboutPage__timelineMobile .AboutPage__timelineDot3 {
    top: 455px;
    left: 295px;

    animation: growAndShrink 2s ease-in-out infinite;
  }

  .AboutPage__timelineDot4 {
    background-color: #eaaf21;
  }

  .AboutPage__timelineDot5 {
    background-color: #b52144;
  }

  .AboutPage__timelineDot6 {
    background-color: #b6ae96;
  }

  .AboutPage__timelineMobile .AboutPage__relative .AboutPage__timelineDot7 {
    top: -35px;
    left: 60px;
    padding-block: 0;
    animation: growAndShrink 4s ease-in-out infinite;
  }

  .AboutPage__open {
    transition: transform 1s linear;
  }

  .AboutPage__timelineMobile.AboutPage__open .AboutPage__timelineDot2 {
    animation: moveDots1 1s linear;
    animation-fill-mode: forwards;
  }

  .AboutPage__timelineMobile.AboutPage__open .AboutPage__timelineDot3 {
    animation: moveDots2 1s linear;
    animation-fill-mode: forwards;
  }

  .AboutPage__timelineMobile.AboutPage__open .AboutPage__tBox4 {
    animation: shiftBox1 1s linear;
    animation-fill-mode: forwards;
  }

  .AboutPage__timelineMobile.AboutPage__open .AboutPage__tBox5 {
    animation: shiftBox2 1s linear;
    animation-fill-mode: forwards;
  }
}

@keyframes growAndShrink {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
    /* adjust growth size */
  }
}

@keyframes shiftBox1 {
  from {
    opacity: 1;
    transform: translate(-100px, 0px);
  }

  to {
    opacity: 1;
    transform: translate(-100px, 46px);
  }
}

@keyframes shiftBox2 {
  from {
    opacity: 1;
    transform: translate(-100px, 0px);
  }

  to {
    opacity: 1;
    transform: translate(-100px, 24px);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveDots1 {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-55px);
  }
}

@keyframes moveDots2 {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(30px);
  }
}

@keyframes moveBoxes {
  from {
    animation: none;
    opacity: 1;
    transform: translateX(-100px);
    transform: translateY(0px);
  }

  to {
    animation: none;
    transform: translateY(55px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}

.AboutPage__slideUp {
  animation: slideUp 1.2s ease-out forwards;
  opacity: 1;
}

.AboutPage__slideDown {
  animation: slideDown 1.2s ease-out forwards;
  opacity: 1;
}

.AboutPage__slideLeft {
  -webkit-animation: slide-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-fill-mode: forwards;
}

@media (max-width: 1080px) {
  .AboutPage__aboutDesktop .AboutPage__aboutContainer > p {
    font-size: 64px;
  }

  .AboutPage__about {
    gap: 50px;
  }

  .AboutPage__about.AboutPage__aboutMobile > div {
    gap: 80px;
}
}

@media (max-width: 1400px) {
  .AboutPage__about {
    padding: 50px 8vw 85px 8vw;
  }
  .AboutPage__valuesContainer {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 72px;
  }


  .AboutPage__valuesContainer .AboutPage__vBox {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    min-width: unset;
    height: fit-content;
  }

  .AboutPage__vBox h3 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 0;
  }

  .AboutPage__vBox > div > p {
    font-size: 14px;
    line-height: 18px;
    max-width: 330px;
  }

  .AboutPage__vBox div {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
  }

  .AboutPage__vBox > img {
    padding: 0;
    width: 80px;
    align-self: flex-start;
    margin-top: auto;
    transform: scale(1);
    margin-bottom: auto;
  }
}

/* SERVICES PAGE */

.ServicesPage__hero {
  position: relative;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow-y: hidden;
}

.ServicesPage__hero .ServicesPage__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.618);*/
  background: linear-gradient(
    0deg,
    rgba(9, 9, 9, 1) 4%,
    rgba(9, 9, 9, 0.371) 32%,
    rgba(9, 9, 9, 0.106) 91%
  );
}

.ServicesPage__hero > img {
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ServicesPage__about {
  background-color: #090909;
  padding: 25vh 8vw 85px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.ServicesPage__about > div, .ServicesPage__about .ServicesPage__aboutContainer > div {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/*
.ServicesPage__about > p, .ServicesPage__about .ServicesPage__aboutContainer > p {
  align-self: flex-end;
  font-size: 80px;
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-style: italic;
  color: #242424;
}*/

/*.ServicesPage__aboutText {
  width: 831px;
  font-size: 1.75em;
  line-height: 1.5em;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.ServicesPage__aboutText > span {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 1.25em;
  line-height: 1em;
}*/




/*.ServicesPage__aboutAsterisk {
  display: flex;
  gap: 12px;
  font-size: 20px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  align-items: flex-start;
}*/

/*.ServicesPage__asterisk1,
.ServicesPage__asterisk2 {
  position: relative;
  width: 15px;
  height: 40px;
}

.ServicesPage__asterisk1 img {
  position: absolute;
  left: -28px;
  top: 13px;
}*/

/*.ServicesPage__asterisk2 img {
  position: absolute;
  top: 4px;
}*/

/*.ServicesPage__aboutText span:first-child {
  padding-right: 28px;
}*/

.ServicesPage__aboutMobile {
  display: none;
}

.ServicesPage__processContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15vh 5vw;
  gap: 140px;
}

.ServicesPage__processText {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1.75em;
  line-height: 1.5em;
  max-width: 830px;
}

.ServicesPage__processText span {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  font-size: 1.5em;
  line-height: 1.25em;
  letter-spacing: 1px;
}

.ServicesPage__processCardsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ServicesPage__processCardsContainer .ServicesPage__card {
  width: 400px;
  height: 575px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 40px 30px 40px 30px;
  background-color: #262626cc;
  
  
      width: 31%;
    aspect-ratio: 400 / 575;
}

.ServicesPage__card .ServicesPage__number {
  font-family: area-normal, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 120px;
  color: #333232;
  line-height: 100px;
  vertical-align: top;
}

.ServicesPage__card .ServicesPage__bottomContainer h2 {
  font-size: 1.8em;
  line-height: 36px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-top: 40px;
}

.ServicesPage__card .ServicesPage__bottomContainer p {
  /*line-height: 25px;*/
  margin-top: 12px;
  font-family: area-normal, sans-serif;
  font-weight: 100;
  font-style: normal;
    font-size: 1.2em;
    line-height: 1.25em;
    height: 10.5em;	/*mta*/
    letter-spacing: .02em;
}

.ServicesPage__processTextMobile {
  display: none;
}

.ServicesPage__services {
  display: none;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}

.ServicesPage__servicesContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  min-width: 260px;
  gap: 48px;
}

.ServicesPage__servicesContainer h2 {
  width: 100%;
  font-size: 40px;
}

.ServicesPage__servicesContainer div a {
  width: 100%;
}

.ServicesPage__servicesContainer > p {
  width: 100%;
}

.ServicesPage__service0 span:nth-child(2) {
  background: radial-gradient(
    103.14% 313.57% at -3.14% 50%,
    #47b9ea 0%,
    #ebe2c8 100%
  );

  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  line-height: 60px;
  text-transform: uppercase;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1px;
  width: 670px;
  min-width: 180px;
}

.ServicesPage__service1 span:nth-child(2) {
  background: linear-gradient(270deg, #ebe2c8 1.47%, #c1840b 82.22%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  text-transform: uppercase;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 60px;

  width: 670px;
  min-width: 180px;
}

.ServicesPage__service2 span:nth-child(2) {
  background: linear-gradient(270deg, #ebe2c8 12.77%, #b52144 101.67%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  text-transform: uppercase;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 60px;
  width: 670px;
  min-width: 180px;
}

.ServicesPage__service3 span:nth-child(2) {
  background: linear-gradient(270.65deg, #d8d1be 16.44%, #726e64 103.89%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 60px;
  width: 670px;
  min-width: 180px;

  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.ServicesPage__faq {
  width: 100%;
  padding: 0px 8% 0px 0px;
}

.ServicesPage__faqAnswer > p {
  padding-bottom: 24px;
}

.ServicesPage__faqItem {
  transition: background 0.1s ease;
}

.ServicesPage__openTitle .ServicesPage__faqQuestion span:nth-child(2) {
  color: #ebe2c8;
  background-clip: text;
  -webkit-text-fill-color: #ebe2c8;
}

.ServicesPage__openTitle > * {
  color: #ebe2c8 !important;
}

.ServicesPage__faqQuestion {
  width: 100%;
  background: none;
  border: none;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  padding: 40px;
  text-align: left;
  height: 188px;
  position: relative;
}

.ServicesPage__faqQuestion img {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.5);
}

.ServicesPage__faqAnswer.ServicesPage__open {
  max-height: 540px;
  opacity: 1;
  margin: 0;
  margin-top: -20px;
  padding-bottom: 20px;
  padding-right: 40px;
}

.ServicesPage__box0 {
  background: radial-gradient(
    90.44% 138.56% at -9.92% 120.06%,
    #063572 0%,
    #000000 100%
  );
  border-bottom: none;
}

.ServicesPage__box1 {
  background: radial-gradient(
      102.34% 173.72% at -33% 159.23%,
      #c1840b 0%,
      #000000 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  border-bottom: none;
}

.ServicesPage__box2 {
  background: radial-gradient(
      94.16% 184.49% at -3.54% 106.25%,
      #4d111f 0%,
      #000000 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  border-bottom: none;
}

.ServicesPage__box3 {
  background: radial-gradient(
      84.92% 169.25% at -11.21% 133.94%,
      #b6ae96 0%,
      #000000 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.ServicesPage__closedTitle {
  background: #000000;
}

.ServicesPage__faqAnswer.ServicesPage__closed {
  max-height: 0;
  opacity: 0;
  transition: max-height 0s ease, opacity 0s ease-in-out;
}

.ServicesPage__faqAnswer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 1s linear, opacity 0s ease-in-out;
  padding-left: 74px;
  font-family: area-normal, sans-serif;
  font-weight: 100;
  font-style: normal;
  color: white;
}

.ServicesPage__faqAnswer h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 5px;
}

.ServicesPage__faqAnswer hr {
  border: none;
  border-top: 1px solid white;
  margin-bottom: 15px;
}

.ServicesPage__faqAnswer p {
  font-size: 15px;
  line-height: 15px;
  color: white;
  text-transform: uppercase;
}

.ServicesPage__faqLists {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 4px;
  color: white;
  width: 100%;
}

.ServicesPage__faqLists ul {
  flex: 1;
  padding: 0;
  width: fit-content;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 33%;
}

.ServicesPage__faqLists li {
  padding: 5px 0;
  font-size: 16px;
  line-height: 18px;
  width: fit-content;
}

.ServicesPage__service0 .ServicesPage__toggleIcon {
  color: --vseenBlue;
}

.ServicesPage__service1 .ServicesPage__toggleIcon {
  color: #c1840b;
}

.ServicesPage__service2 .ServicesPage__toggleIcon {
  color: #b52144;
}

.ServicesPage__service3 .ServicesPage__toggleIcon {
  color: #575246;
  background-clip: none;
}

.ServicesPage__openTitle .ServicesPage__faqQuestion .ServicesPage__toggleIcon {
  color: #ebe2c8;
}

.ServicesPage__toggleIcon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  padding: 20px 16px 0px 20px;
  margin-bottom: -46px;
}

.ServicesPage__processVisible {
  transition: all 1s linear;
}

.ServicesPage__processCardsContainer .ServicesPage__card {
  opacity: 0;
  transform: translateX(100);
  transition: all 1s linear;
}

.ServicesPage__processCardsContainer.ServicesPage__processVisible
  .ServicesPage__card {
  transform: translateX(0);
  opacity: 1;
}

.ServicesPage__processCardsContainer.ServicesPage__processVisible
  .ServicesPage__card1 {
  transition-delay: 0.5s;
}

.ServicesPage__processCardsContainer.ServicesPage__processVisible
  .ServicesPage__card2 {
  transition-delay: 1s;
}

.ServicesPage__processCardsContainer.ServicesPage__processVisible
  .ServicesPage__card3 {
  transition-delay: 1.5s;
}

.ServicesPage__ourApproach {
  display: none;
}

@media (max-width: 1160px) {
  .ServicesPage__services {
    display: flex;
  }

  .ServicesPage__processContainer {
    align-items: flex-start;
  }

  .ServicesPage__ourApproach {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    font-family: area-normal, sans-serif;
    font-size: 20px;
    color: white;
    text-align: start;
  }

  .ServicesPage__aboutDesktop {
    display: none;
  }

  .ServicesPage__overlay {
    background: rgb(9, 9, 9);
    background: linear-gradient(
      0deg,
      rgba(9, 9, 9, 1) 19%,
      rgba(9, 9, 9, 0.6878453038674033) 42%,
      rgba(9, 9, 9, 0.2828729281767956) 91%
    );
  }

  .ServicesPage__arrowDown {
    position: absolute;
    bottom: 5vh;
    z-index: 2;
    display: inline-block;
    animation: shakeY 22s ease-in-out infinite;
  }

  .ServicesPage__heroText1 > span {
    font-size: 34px;
    font-family: ivyora-display, serif;
    font-weight: 100;
    font-style: italic;
  }

  .ServicesPage__heroText2 {
    gap: 8px;
  }

  .ServicesPage__about {
    padding: 50px 8vw 85px 8vw;
  }

  .ServicesPage__aboutText {
    max-width: 300px;
    font-size: 18px;
    line-height: 28px;
    width: 300px;
  }

  .ServicesPage__aboutText > span {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 28px;
  }

  .ServicesPage__aboutMobile {
    display: flex;
  }

  .ServicesPage__processContainer .QuoteButton__work {
    align-self: center;
  }

  .ServicesPage__asterisk1 {
    top: -10px;
    left: 12px;
  }

  .ServicesPage__asterisk2 {
    top: -6px;
  }

  .ServicesPage__aboutAsterisk {
    gap: 0px;
  }

  .ServicesPage__about > p {
    align-self: center;
    text-align: center;
    width: 320px;
  }

  .ServicesPage__aboutAsterisk {
    font-size: 12px;
  }

  .ServicesPage__processContainer {
    padding: 90px 40px;
    gap: 80px;
  }

  .ServicesPage__processText {
    display: none;
  }

  .ServicesPage__processTextMobile {
    display: inline;
    font-size: 17px;
    line-height: 28px;
    font-family: area-normal, sans-serif;
    font-weight: 800;
    font-style: normal;
    max-width: 324px;
    min-width: 324px;
  }

  .ServicesPage__processTextMobile > span {
    font-family: ivyora-display, serif;
    font-weight: 100;
    font-style: italic;
    font-size: 22px;
    line-height: 28px;
  }

  .ServicesPage__processCardsContainer {
    display: flex;
    gap: 24px;
    justify-content: unset;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    scrollbar-width: none;
    width: 100%;
    /* Firefox */
    margin-top: 20px;
    padding: 0px 20px 0px 0px;
  }

  .ServicesPage__processCardsContainer::-webkit-scrollbar {
    display: none;
  }

  .ServicesPage__processCardsContainer .ServicesPage__card {
    width: 234px;
    height: 350px;
  }

  .ServicesPage__processCardsContainer .ServicesPage__card {
    position: relative;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 252px;
    min-height: 324px;
  }

  .ServicesPage__card .ServicesPage__number {
    font-size: 80px;
    line-height: 100px;
  }

  .ServicesPage__card img {
    position: absolute;
    top: 16px;
    right: 16px;
    height: 20px;
    width: fit-content;
  }

  .ServicesPage__card .ServicesPage__bottomContainer > p {
    font-size: 14px;
    line-height: 18px;
    margin-top: 8px;
  }

  .ServicesPage__card .ServicesPage__bottomContainer > h2 {
    font-size: 16px;
    line-height: 18px;
    margin-top: 8px;
  }

  .ServicesPage__processContainer > span {
    font-size: 12px;
  }

  .ServicesPage__faq {
    flex-direction: row-reverse;
  }

  .ServicesPage__faqItem .ServicesPage__faqQuestion span:nth-child(1) {
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    padding-bottom: 4px;
  }

  .ServicesPage__openTitle .ServicesPage__faqQuestion span:nth-child(2) {
    -webkit-text-fill-color: transparent;
  }

  .ServicesPage__faqItem .ServicesPage__faqQuestion span:nth-child(2) {
    font-size: 28px;
    max-width: 205px;
    line-height: 30px;
    letter-spacing: 0px;
  }

  .ServicesPage__faqQuestion {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .ServicesPage__faqAnswer {
    padding: 0px 40px 20px 20px;
  }

  .ServicesPage__faqLists {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0;
  }

  .ServicesPage__faqLists ul {
    list-style: none;
    padding-left: 0;
  }

  .ServicesPage__faq .ServicesPage__faqQuestion span {
    line-height: 28px;
  }

  .ServicesPage__faqAnswer {
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .ServicesPage__faqAnswer .ServicesPage__faqLists {
    gap: 0;
    order: 3;
  }

  .ServicesPage__faq .ServicesPage__toggleIcon {
    height: fit-content;
    text-align: center;
    padding-bottom: 10px;
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .ServicesPage__faq {
    padding: 0;
  }

  .ServicesPage__faqAnswer > p {
    order: 1;
  }

  .ServicesPage__faqAnswer hr {
    order: 2;
  }

  .ServicesPage__faqAnswer div:nth-child(3) {
    order: 4;
  }

  .ServicesPage__faqAnswer {
    position: relative;
  }

  .ServicesPage__faqAnswer div:nth-child(4) {
    order: 8;
  }

  .ServicesPage__faq
    .ServicesPage__faqItem
    .ServicesPage__faqAnswer
    .ServicesPage__faqLists
    div:last-child {
    justify-self: flex-end;
    align-self: flex-end;
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
  }

  .ServicesPage__faqLists {
    position: relative;
    width: 100%;
    height: fit-content;
  }

  .ServicesPage__faqLists li {
    padding: 0;
    line-height: 21px;
    font-size: 10px;
    text-transform: uppercase;
  }

  .ServicesPage__faqLists ul {
    max-width: 100%;
  }

  .ServicesPage__openTitle .ServicesPage__open {
    padding-top: 16px;
  }

  .ServicesPage__faqItem .ServicesPage__faqAnswer > p {
    line-height: 18px;
    font-size: 14px;
    text-transform: none;
    padding-bottom: 18px;
  }

  .ServicesPage__faq .ServicesPage__faqItem {
    background: rgb(9, 9, 9);
  }

  .ServicesPage__faqItem .ServicesPage__faqAnswer hr {
    border-top-width: 1px;
    margin-bottom: 22px;
  }

  .ServicesPage__faqItem .ServicesPage__faqAnswer {
    padding: 22px 40px 40px 40px;
  }

  .ServicesPage__faqItem .ServicesPage__faqAnswer a:last-child {
    order: 6;
    margin-top: 0px;
  }

  .ServicesPage__faq .ServicesPage__faqItem .ServicesPage__closed {
    padding: 0;
    margin: 0;
  }

  .ServicesPage__servicesContainer > div:last-child {
    justify-self: flex-end;
    justify-content: flex-end;
    /*margin-top: 32px;*/
  }

  .ServicesPage__projectsSection {
    min-height: unset;
    padding: 10vh 0px;
  }

  .ServicesPage__projectsSection {
    background: linear-gradient(297.78deg, #4d111f -1.25%, #000000 109.7%);
  }

  .ServicesPage__faqAnswer.ServicesPage__open {
    max-height: 800px;
  }

  .ServicesPage__serviceProjectsContainer {
    width: 100%;
    height: fit-content;
    display: flex;
    order: 6;
    gap: 26px;
    margin-bottom: 22px;
  }

  .ServicesPage__faqQuestion {
    position: relative;
    padding: 36px 40px 36px 40px;
  }

  .ServicesPage__openTitle .ServicesPage__faqQuestion {
    padding: 36px 40px 22px 40px;
    height: 120px;

  }

  .ServicesPage__faqQuestion span {
    z-index: 3;
  }

  .ServicesPage__faqQuestion img {
    z-index: 0;
    opacity: 0.2;
    transition: opacity 0.3s linear;
  }

  .ServicesPage__openTitle .ServicesPage__faqQuestion img {
    opacity: 0;
  }

  .ServicesPage__faqAnswer .ServicesPage__faqLists {
    margin-bottom: 22px;
  }
}

@media (min-width: 760px) and (max-width: 1160px) {
  .ServicesPage__processCardsContainer {
    justify-content: center;
  }
}

.ServicesAccordion__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 800px;
  width: 100%;
  transition: grid-template-columns 0.5s ease;
}

.ServicesAccordion__serviceCard {
  position: relative;
  overflow: hidden;
/*  cursor: pointer;*/
  display: flex;
  justify-content: space-between;
  z-index: 2;
  transition: all 1s linear;
}

.ServicesAccordion__serviceCard h2 {
  font-size: 42px;
  line-height: 1em; /*52px;*/
  text-transform: uppercase;
  font-family: area-normal, sans-serif;

  font-style: normal;
  letter-spacing: 1px;
  color: white;
  max-width: 100%;
  overflow: hidden;
  max-width: 320px;
  background-color: rgba(255, 255, 255, 0);
  transition: 2s linear;
}

.ServicesAccordion__closed h2{
	writing-mode: vertical-lr;
}

.ServicesAccordion__open .ServicesAccordion__cardContainer {
  padding: 0;
  min-width: 0;
  width: 0;
}

.ServicesAccordion__cardContainer {
  padding: 30px 10px 30px 30px;
  min-width: 100%;
  width: 100%;
}

.ServicesAccordion__cardPrint::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: -4;
  background: linear-gradient(195.5deg, #000000 44.41%, #013f8f 104.39%);
}

.ServicesAccordion__cardCreative::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: -4;
  background: linear-gradient(193.22deg, #000000 14.83%, #c1840b 108.96%);
}

.ServicesAccordion__cardLuxury::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: -4;
  background: linear-gradient(192.62deg, #000000 45.3%, #b52144 97.94%);
}

.ServicesAccordion__cardEvents::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: -4;
  background: linear-gradient(195.5deg, #000000 44.41%, #c4bca3 104.39%);
}

.ServicesAccordion__cardPrint:hover::before,
.ServicesAccordion__cardCreative:hover::before,
.ServicesAccordion__cardLuxury:hover::before,
.ServicesAccordion__cardEvents:hover::before {
  opacity: 1;
}

.ServicesAccordion__open.ServicesAccordion__cardPrint:hover::before,
.ServicesAccordion__open.ServicesAccordion__cardCreative:hover::before,
.ServicesAccordion__open.ServicesAccordion__cardLuxury:hover::before,
.ServicesAccordion__open.ServicesAccordion__cardEvents:hover::before {
  opacity: 0;
}

.ServicesAccordion__serviceCard.ServicesAccordion__open
  .ServicesAccordion__cardBg {
  display: none;
}

.ServicesAccordion__serviceCard.ServicesAccordion__open {
  background-color: black;
}

.ServicesAccordion__cardBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: -2;
}

.ServicesAccordion__cardOverlay {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
}

.ServicesAccordion__open h2 {
  display: none;
}

.ServicesAccordion__cardExpandedSection.ServicesAccordion__expanded {
  transition: opacity 2.1s ease-in;
  opacity: 1;
}

.ServicesAccordion__expandedButtons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 3;
  align-items: center;
  margin-top: -22px;
  align-self: flex-end;
}

.ServicesAccordion__goBackButton {
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  pointer-events: auto;
}

.ServicesAccordion__goBackButton img {
  transform: rotate(180deg);
}

.ServicesAccordion__cardExpandedSection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  gap: 30px;
  position: relative;
  justify-content: flex-start;
}

/* .ServicesAccordion__expandedButtons {
margin-top: auto;
} */

.ServicesAccordion__container.ServicesAccordion__open
  .ServicesAccordion__cardBg {
  display: none;
}

.ServicesAccordion__expandedMainSection {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
  height: 100%;
}

.ServicesAccordion__divider {
  background: #ffffff4d;
  width: 1px;
/*  height: 380px;*/
  margin-inline: 20px;
  /*margin-top: -15px;*/
}

.ServicesAccordion__expandedSubServices {
  max-width: 280px;
  width: 280px;
}

.ServicesAccordion__expandedMainSection
  .ServicesAccordion__expandedSubServices
  li {
  list-style: none;
  font-size: 15px;
  line-height: 35px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.ServicesAccordion__serviceCard.ServicesAccordion__cardPrint:hover h2 {
  background: linear-gradient(90deg, #47b9ea 0%, #ebe2c8 79.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ServicesAccordion__cardCreative:hover h2 {
  background: linear-gradient(90deg, #c1840b 0%, #ebe2c8 79.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ServicesAccordion__cardLuxury:hover h2 {
  background: linear-gradient(90deg, #b52144 0%, #ebe2c8 79.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ServicesAccordion__cardEvents:hover h2 {
  background: linear-gradient(90deg, #787058 0%, #ebe2c8 58.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ServicesAccordion__serviceCard .ServicesAccordion__cardExpandedSection h3 {
  font-size: 3em;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.ServicesAccordion__serviceCard
  .ServicesAccordion__cardExpandedSection
  .ServicesAccordion__expandedText {
  font-size: 1.6em;
  line-height: 38px;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.ServicesAccordion__cardPrint h3 {
  color: --vseenBlue;
}
.ServicesAccordion__cardCreative h3 {
  color: #eaaf21;
}
.ServicesAccordion__cardLuxury h3 {
  color: #b52144;
}
.ServicesAccordion__cardEvents h3 {
  color: #aea484;
}

.ServicesAccordion__expandedProjects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  height: 100%;
  min-width: 400px;
  width: 100%;
}

.ServicesAccordion__expandedProjects > a {
  height: 470px;
  width: 280px;
}

.ServicesAccordion__cardExpandedSection.ServicesAccordion__expanded {
  padding: 30px 50px 30px 50px;
}

.ServicesAccordion__serviceCard {
  height: 100%;
}

.ServicesAccordion__cardContainer {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.ServicesAccordion__cardExpanderLink {
  align-self: flex-end;
  justify-self: flex-end;
}

@media (max-width: 1160px) {
  .ServicesAccordion__container {
    display: none;
  }
}

@media (min-width: 1161px) and (max-width: 1600px) {
  .ServicesAccordion__serviceCard .ServicesAccordion__cardExpandedSection h3 {
    font-size: 80px;
  }
  .ServicesAccordion__serviceCard
    .ServicesAccordion__cardExpandedSection
    p.ServicesAccordion__expandedText {
    font-size: 24px;
    line-height: 34px;
    padding-block: 20px;
  }
  .ServicesAccordion__serviceCard h2 {
    font-size: 32px;
    line-height: 40px;
    max-width: 286px;
  }
  .ServicesAccordion__cardExpandedSection {
    gap: 20px;
  }
  .ServicesAccordion__expandedMainSection
    .ServicesAccordion__expandedSubServices
    li {
    font-size: 14px;
    line-height: 32px;
  }
  .ServicesAccordion__expandedProjects {
    min-width: 600px;
    max-width: 1000px;
  }
}

.ServicesAccordion__container .ProjectCard__image {
  height: 100%;
}
.ServicesAccordion__container .ProjectCard__container {
  height: 100%;
}

/* Work page */

.WorkPage__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.WorkPage__hero {
  position: relative;
  height: 750px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.WorkPage__hero .WorkPage__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(9, 9, 9, 1) 4%,
    rgba(9, 9, 9, 0.371) 32%,
    rgba(9, 9, 9, 0.106) 91%
  );
}

.WorkPage__hero > img {
  object-fit: cover;
  object-position: top;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.WorkPage__hero h2 {
  display: none;
}

.WorkPage__wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.WorkPage__mainSection {
  display: flex;
  flex-direction: column;
  padding: 100px 40px;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 150px;
  height: fit-content;
}

.WorkPage__mainSection > h2 {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1.75em;
  line-height: 1.5em;
}

.WorkPage__mainSection > h2 span {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  font-size: 1.25em;
  line-height: 1em;
  letter-spacing: 1px;
}

@media (max-width: 1360px) {
  .WorkPage__overlay {
    background: rgb(0, 0, 0);
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 1) 19%,
      rgba(0, 0, 0, 0.6878453038674033) 42%,
      rgba(0, 0, 0, 0.2828729281767956) 91%
    );
  }
}

@media (max-width: 800px) {
  .WorkPage__mainSection {
    padding-inline: 5vw;
    gap: 60px;
  }
  .WorkPage__hero {
    max-height: 50vh;
    height: 50vh;
  }
  .WorkPage__mainSection > h2 {
    display: none;
  }

  .WorkPage__hero h2 {
    z-index: 1;
    padding-bottom: 15vh;
    width: 310px;
    font-size: 26px;
    font-family: area-normal, sans-serif;
    font-weight: 800;
    font-style: normal;
    color: #ebe2c8;
    display: flex;
    flex-direction: column;
  }

  .WorkPage__hero h2 > span:first-child {
    padding-right: 30px;
  }

  .WorkPage__hero h2 strong {
    font-family: ivyora-display, serif;
    font-weight: 100;
    font-style: italic;
    font-size: 30px;
    letter-spacing: 1px;
    margin-left: 10px;
    padding-left: 30px;
  }
}

.WorkLogoCarousel__carouselWrapper {
  overflow: hidden;
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -10px;
  z-index: 100;
}

.WorkLogoCarousel__row {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #090909;

}

.WorkLogoCarousel__track {
  display: flex;
  width: max-content;
  animation: WorkLogoCarousel__scroll-left 50s linear infinite;
}

.WorkLogoCarousel__row[data-direction="right"] .WorkLogoCarousel__track {
  animation: WorkLogoCarousel__scroll-right 50s linear infinite;
}

.WorkLogoCarousel__logo {
  flex: 0 0 auto;
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.WorkLogoCarousel__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Animations */
@keyframes WorkLogoCarousel__scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes WorkLogoCarousel__scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Desktop: only show first row */
@media (min-width: 769px) {
  .WorkLogoCarousel__row:nth-child(2) {
    display: none;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .WorkLogoCarousel__carouselWrapper {
    display: flex;
    flex-direction: column;
  }
  .WorkLogoCarousel__track {
    animation-duration: 50s;
  }
  .WorkLogoCarousel__logo {
    width: 80px;
    height: 80px;
  }
}

/* (Nice-to-have) Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .WorkLogoCarousel__track {
    animation: none;
    transform: none;
  }
}

.FilterButtons__filterContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.FilterButtons__buttonsContainer {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.FilterButtons__button {
  padding: 16px 0px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid white;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.8s ease;
  text-align: center;
  width: 155px;
  color: #ebe2c8;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
}

.FilterButtons__button:hover {
  color: white;
}

.FilterButtons__button.FilterButtons__gifts:hover {
  background-color: #4d111f;
}
.FilterButtons__button.FilterButtons__events:hover {
  background-color: #7d765e;
}
.FilterButtons__button.FilterButtons__print:hover {
  background-color: var(--vseenBlue);
}
.FilterButtons__button.FilterButtons__creative:hover {
  background-color: #b98817;
}

.FilterButtons__active.FilterButtons__print {
  background-color: var(--vseenBlue);
  color: white;
}
.FilterButtons__active.FilterButtons__creative {
  background-color: #b98817;
  color: white;
}
.FilterButtons__active.FilterButtons__events {
  background-color: #7d765e;
  color: white;
}
.FilterButtons__active.FilterButtons__gifts {
  background-color: #4d111f;
  color: white;
}

.FilterButtons__clearFilters {
  cursor: pointer;
  text-transform: uppercase;
  color: #747373;
}

@media (max-width: 700px) {
  .FilterButtons__buttonsContainer {
    gap: 12px;
  }
}

.WorkGrid__contentBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: -80px;
  gap: 100px;
  max-width: 1200px;
}

.WorkGrid__projectsRow {
  display: flex;
  gap: 40px;
  width: 100%;
  height: fit-content;
}

.WorkGrid__caseStudyRow {
  width: 100%;
  height: fit-content;
}

@media (max-width: 800px) {
  .WorkGrid__projectsRow a:last-child {
    display: none;
  }

  .WorkGrid__projectsRow .ProjectCard__container .ProjectCard__text h3 {
    font-size: 1.25em;
    text-transform: uppercase;
    line-height: 140%;
  }

  .WorkGrid__projectsRow .ProjectCard__container .ProjectCard__text {
    padding: 10px;
  }
  
  .WorkGrid__projectsRow {
    gap: 20px;
  }

  .WorkGrid__contentBlock {
    gap: 20px;
  }

  .WorkPage__hero .WorkPage__overlay {
    background: #090909;
  }
}

.CaseCard__container {
  width: 100%;
  height: 400px;
  min-height: 400px;
  color: white;
  display: flex;
  border: 1px solid white;
}

.CaseCard__organizer {
  width: 100%;
  height: 100%;
  padding: 50px 80px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.486);
}

.CaseCard__overlay {
  width: 100%;
  height: 100%;
  z-index: 3;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.353);
}

.CaseCard__organizer > img {
  object-fit: cover;
  object-position: center;
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.CaseCard__content {
  z-index: 3;
  
  display: flex;
  gap: 60px;
  font-size: 16px;
      width: 50%;
    position: absolute;
    
    font-size: 16px;
     left: 600px;
    bottom: 50px;
}

.CaseCard__heading {
  z-index: 3;
  position: absolute;
    bottom: 50px;
	width: 60%;
    left: 50px;
}

.CaseCard__heading h2 {
  font-size: 2.75em;
  line-height: 1.25em;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

.CaseCard__heading p {
  font-size: 2em;
  line-height: 1.25em;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  margin-top: 6px;
}

.CaseCard__industry p {
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  font-size: 1em;
}

.CaseCard__contentTitle {
  line-height: 140%;
}

.CaseCard__type ul li {
  list-style: none;
  line-height: 1.5em;
  text-transform: capitalize;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.CaseCard__content div > span {
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.CaseCard__smallContainer {
  min-width: 347px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.CaseCard__imageContainer {
  width: 100%;
  min-width: 347px;

  height: 245px;
  position: relative;
}

.CaseCard__imageContainer img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.CaseCard__transparentText h3 {
  margin-top: 0;
  font-size: 20px;
  line-height: 32px;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: black;
  text-transform: uppercase;
}

.CaseCard__transparentText p {
  font-family: area-normal, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: black;
}

.CaseCard__mobileHeading {
  display: none;
}

.CaseCard__containerHomepage {
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
}

.CaseCard__containerHomepage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: absolute;
  inset: 0;
}

.CaseCard__textOverlay {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  position: relative;
}

.CaseCard__textOverlay h3 {
  font-size: 2.5em;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  color: white;
}

.CaseCard__textOverlay p {
  font-size: 20px;
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: white;
}

.CaseCard__textOverlay p em {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  font-size: 25px;
  color: white;
}

.CaseCard__containerHomepage .CaseCard__textOverlay {
  /*background: linear-gradient(180deg, rgba(130, 130, 130, 0) 0%, #000000 100%);*/
}

@media (max-width: 1080px) {
  .CaseCard__textOverlay h3 {
    font-size: 20px;
  }
  .CaseCard__textOverlay p {
    font-size: 16px;
    display:none;
  }
}

@media (max-width: 1100px) {

  .CaseCard__content {
    display: none;
  }
}

@media (max-width: 800px) {
  .CaseCard__organizer {
    justify-content: flex-end;
    padding: 25px;
  }
  .CaseCard__overlay {
    background-color: #00000071;
  }
  .CaseCard__heading,
  .CaseCard__content {
    display: none;
  }
  .CaseCard__mobileHeading {
    display: flex;
    flex-direction: column;
    z-index: 3;
    gap: 0px;
  }
  .CaseCard__mobileHeading h2 {
    font-size: 16px;
    line-height: 130%;
    font-family: area-normal, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
  }
  .CaseCard__mobileHeading p {
    font-size: 14px;
    font-family: area-normal, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}

@media (min-width: 800px) and (max-width: 1500px) {
  /* empty for now */
}

/* Modal  */

.no-scroll {
  overflow: hidden;
}

.WorkModal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.775);
  z-index: 99999;
  width: 100%;
  height: 100%;
}

.WorkModal {
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(100vw - 32px, 960px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 24px;
  outline: none;
}

.WorkModal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.CaseStudy__modal {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
  z-index: 99999;
  display: flex;
  flex-direction: column;
}

.CaseStudy__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.CaseStudy__page {
  background: #fff;
  border-radius: 0;
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.CaseStudy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.CaseStudy__block img {
  width: 100%;
  height: 100%;
  display: block;
}

.CaseStudy__description,
.CaseStudy__descriptionMain {
  line-height: 1.4;
  font-size: 0.9rem;
}

#WorkModalMount {
  z-index: -9999;
}

body.CaseStudy__is-open #WorkModalMount {
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: 9999;
  padding: 140px 20px;
  display: flex;
  justify-content: center;
  overflow-y: auto;

  background: #0000007a;
}

.CaseStudy__backdrop {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #00000093;
}

body.CaseStudy__is-open {
  overflow: hidden;
}

/* Container mirrors your CaseStudy top block */
.Project__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  padding: 20px 0px;
}

.Project__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.Project__images img {
  width: 524px;
  height: 410px;
  border-radius: 0px;
  object-fit: cover;
}

.Project__text h1 p {
  font-size: 32px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: black;
  line-height: 1.3em;
}

.Project__text h1 p em {
  font-family: ivyora-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
}

.Project__text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5em;
}

.Project__meta {
  display: flex;
  justify-content: space-between;
  color: black;
}

.Project__brand {
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  color: black;
  text-transform: uppercase;
}

.Project__year {
  font-size: 30px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  line-height: 38px;
  font-style: normal;
  color: black;
  align-self: flex-end;
}

.Project__content {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.Project__text {
  max-width: 70%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.Project__text p {
  font-size: 16px;
  line-height: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.Project__meta {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.Project__meta div {
  font-size: 16px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
}

.Project__meta div strong {
  font-size: 12px;
  text-transform: uppercase;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.Project__meta div:last-child {
  width: 160px;
}

.WorkItemModal {
  background: #ece2cc;
  max-width: 1200px;
  width: 100%;
  border-radius: 20px;
  padding: 80px 100px;
  position: relative;
  animation: fadeIn 1s ease;
  display: flex;
  flex-direction: column;
  gap: 0px;
  height: fit-content;
  z-index: 99999999;
  overflow-x: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.WorkItemModal__close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.CaseStudy__header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 32px;
  line-height: 36px;
  padding: 20px 38px 20px 38px;
  align-items: center;
  border: 1px solid black;
}

.CaseStudy__content {
  display: flex;
  gap: 16px;
  padding: 32px 38px;
  flex-direction: column;
  /*border: 1px solid black;*/
  width: 100%;
  margin-top: -4px;
}

.CaseStudy__meta {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: black;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.CaseStudy__meta .CaseStudy__type {
  max-width: 120px;
}

.CaseStudy__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 40px;
  position: relative;
}

.CaseStudy__galleryRelativeContainer {
  position: relative;
  width: 100%;
  height: 340px;
}

.CaseStudy__gallery > div:nth-child(3),
.CaseStudy__gallery > div:nth-child(4) {
  height: 500px;
}

.CaseStudy__gallery img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.CaseStudy__footerImage img {
  width: 100%;
}

.CaseStudy__footerText {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  padding: 30px 55px;
  font-size: 18px;
  line-height: 26px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: white;
  box-shadow: inset 0 0 0 1px black;
}

.CaseStudy__related {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.CaseStudy__relatedGrid {
  display: flex;
  overflow-x: auto;
  gap: 80px;
  min-width: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  touch-action: pan-y;
}

.CaseStudy__relatedGrid {
  scrollbar-width: none;
} /* Firefox */
.CaseStudy__relatedGrid::-webkit-scrollbar {
  display: none;
}

.CaseStudy__relatedCard img {
  width: 100%;
  border-radius: 4px;
}

.CaseStudy__relatedCard strong {
  display: block;
  margin-top: 0.5rem;
}

.CaseStudy__relatedCard p {
  font-size: 0.85rem;
  color: #444;
}

.CaseStudy__topContainer {
  background-color: white;
  color: black;
  box-shadow: inset 0 0 0 1px black;
  width: 100%;
}

.CaseStudy__brand {
  font-size: 32px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
}

.CaseStudy__year {
  font-size: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.CaseStudy__content h1 {
  font-size: 32px;
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.CaseStudy__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.CaseStudy__meta > p {
  max-width: 70%;
  width: 60%;
  line-height: 24px;
}

.CaseStudy__industry strong,
.CaseStudy__type strong {
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 12px;
}

.CaseStudy__meta .CaseStudy__industry,
.CaseStudy__meta .CaseStudy__type {
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  font-size: 16px;
}

.CaseStudy__industry {
  margin-right: 10px;
}

.CaseStudy__type {
  min-width: 160px;
}

.CaseStudy__popup hr {
  border-bottom: 1px solid rgb(54, 54, 54);
  margin-block: 40px;
}

.CaseStudy__related h2 {
  font-family: area-normal, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  line-height: 45px;
  color: black;
  margin-top: 50px;
}

.CaseStudy__title {
  width: 100%;
}

.CaseStudy__title p {
  width: 100%;
}

.CaseStudy__title em {
  font-family: ivyora-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 36px;
}

.WorkItemModal hr,
.CaseStudyPage__main hr {
  margin: 50px 0px;
  height: 1px;
  border: none;
  border-bottom: 1px solid black;
}

.CaseStudy__mainImage {
  min-width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid black;
  box-sizing: border-box;
}

.CaseStudy__description {
  padding: 20px;
  border: 1px solid black;
  background-color: white;
  color: black;
  font-weight: 500;
  width: 100%;
  height: 100%;
  grid-row: 2;
}

.CaseStudy__galleryItem {
  display: grid;
  grid-template-rows: auto; /* image height auto, caption takes the rest */
}

.CaseStudy__galleryItem img {
  object-fit: cover;
}

.CaseStudy__bottomLandscapes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.Project__carousel {
  position: relative;
  overflow: hidden; /* clip edges */
}

.Project__track {
  display: flex;
  /*gap: 16px;*/ /* match JS gap detection */
  gap: 25px;
  overflow-x: auto;
  /* still useful if users wheel/trackpad */
  scroll-behavior: smooth; /* used for keyboard/buttons */
  -webkit-overflow-scrolling: touch;
}

.Project__slide {
  height: 410px;
  scroll-snap-stop: always;
}

[data-drag-carousel] {
  cursor: grab;
  touch-action: pan-y;
}
[data-drag-carousel].is-dragging {
  cursor: grabbing;
}

.Project__track::-webkit-scrollbar {
  display: none;
}
.Project__track {
  scrollbar-width: none;
} /* Firefox */

.Project__slideImg {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; /* makes dragging easier; remove if slide has links */
}

/* Drag feedback */
[data-drag-carousel] {
  cursor: grab;
}
[data-drag-carousel].is-dragging {
  cursor: grabbing;
}

.AboutPage__card img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.AboutPage__teamCarousel .Project__slide {
  flex: 0 0 300px;
  height: 465px;
  background-color: #000;
}

/*Leadership Responsive CSS*/
@media (max-width: 820px) {
  .AboutPage__teamCarousel {
    padding-inline: 14vw;
    gap:1em;
  }

  .Project__track {
    gap: 0;
  }
}


/* The viewport that scrolls horizontally */
.AboutPage__timelineScroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  touch-action: auto; /* allow vertical page scroll, custom horizontal */
  cursor: grab;
  position: relative;
}

/* add feedback while dragging */
.AboutPage__timelineScroller.is-dragging {
  cursor: grabbing;
}

/* The wide canvas. Give it a fixed wide width or size it from the bg image (JS below). */
.AboutPage__timelineCanvas {
  position: relative;
  height: 936px; /* set to your design’s height */
  min-width: 3836px; /* <- make this wide enough for your timeline */
}

/* Background sits behind everything, spans the canvas */
.AboutPage__timelineBg {
  position: absolute;
  inset: 0;
  width: 3832px;
  height: 100%;
  object-fit: contain; /* or 'contain' depending on your SVG/art */
  pointer-events: none;
}

/* Boxes & dots are absolutely positioned within the canvas */
.AboutPage__timelineBox,
.AboutPage__timelineTitle,
.AboutPage__timelineCTA,
.AboutPage__timelineDot {
  position: absolute;
  /* leave your existing left/top per item */
}

/* Optional: hide native scrollbar */
.AboutPage__timelineScroller::-webkit-scrollbar {
  display: none;
}
.AboutPage__timelineScroller {
  scrollbar-width: none;
}

@media only screen and (max-width: 800px) {
  .ConnectPage__header {
    display: flex;
    width: 100%;
    height: fit-content;
  }

  .ConnectPage__header span{
  display:block; margin-left: 50px;
}

    .ServicesPage__hero {
      height: 100vh;
  }

  .AboutPage__hero {
/*  height: 740px;*/
    height: 100vh;
  }

  body.CaseStudy__is-open #WorkModalMount {
    padding: 0px;
  }

  .WorkItemModal {
    padding: 40px 20px;
    max-width: 100%;
    height: fit-content;
    border-radius: 0;
    min-height: 100vh;
  }

  .Project__brand, .CaseStudy__brand {
    font-size: 18px;
  }

  .Project__year, .CaseStudy__year {
    font-size: 16px;
  }

  .Project__slide {
          margin-right: 15px;
    /*flex: 0 0 300px;*/
    height: 350px;
  }

  .Project__meta {
    display: none;
  }

  .Project__text {
    max-width: 100%;
  }

  .Project__content {
    margin-top: 36px;
  }

  .Project__content .Project__title p,
  .CaseStudy__title p {
    font-size: 18px;
    font-weight: 800;
  }

  .Project__content .Project__title p em,
  .CaseStudy__title p em {
    font-size: 21px;
  }

  .Project__content .Project__text > p:last-child {
    font-size: 14px;
    font-weight: 500;
  }

  .CaseStudy__relatedGrid {
    display: flex;
    overflow-x: scroll;
    gap: 40px;
  }

  .CaseStudy__gallery {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .CaseStudy__topContainer,
  .CaseStudy__header,
  .CaseStudy__content,
  .CaseStudy__topContainer {
    background-color: transparent;
    border: 0;
    box-shadow: unset;
  }

  .CaseStudy__header {
    padding: 20px 0px;
  }

  .CaseStudy__content {
    padding: 0;
    gap: 8px;
    margin-top: 30px;
  }

  .CaseStudy__meta {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    grid-template-rows: auto auto;
  }

  .CaseStudy__meta .CaseStudy__descriptionMain p {
    font-size: 14px;
  }

  .CaseStudy__meta > :first-child {
    grid-column: 1 / -1;
  }

  .CaseStudy__meta > :nth-child(2),
  .CaseStudy__meta > :nth-child(3) {
    align-self: start;
    justify-self: start;
  }

  .CaseStudy__industry span,
  .CaseStudy__type span {
    font-size: 14px;
  }

  .CaseStudy__related h2 {
    font-size: 18px;
    font-weight: 700;
  }

  .CaseCard__imageContainer {
    min-width: 230px;
    width: 100%;
    height: 148px;
  }

  .CaseCard__image{
    object-fit: cover;
  }

  .CaseCard__smallContainer {
    min-width: 230px;
    height: 206px;
    gap: 0;
    overflow-y: hidden;
  }

  .CaseCard__smallContainer .CaseCard__transparentText {
    border: 1px solid black;
    padding: 0px 8px 4px 8px;
  }

  .CaseCard__transparentText h3 {
    font-size: 14px;
    line-height: 22px;
    padding-top: 4px;
  }

  .CaseCard__transparentText p {
    font-size: 12px;
  }

  .AboutPage__card.Project__slide {
    height: fit-content;
    flex: 0 0 265px;
    padding-bottom: 1em;
  }

  .AboutPage__card > img {
    width: 265px;
    height: 344px;
    object-position: top;
  }
}

.ConnectPage__wrapper {
  display: flex;
  gap: 3rem;
  padding: 120px 10vw;
  background: #000;
  color: #fff;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.ConnectPage__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 440px;
  min-height: 1323px;
  justify-content: space-between;
  height: 100%;
}

.ConnectPage__heading {
  font-size: 40px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ebe2c8;
  /*min-width: 440px;
  max-width: 440px;*/
}

.ConnectPage__heading span {
  /*margin-left: 40px;*/
  color: #ebe2c8;
}

.ConnectPage__heading em {
  font-family: ivyora-display, serif;
  font-weight: 300;
  font-style: italic;
  color: #ebe2c8;
  font-size: 52px;
  margin-left: 8px;
  letter-spacing: 1px;
}

.ConnectPage__mapBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ConnectPage__infoBox {
  padding: 0px 26px;
  font-size: 0.95rem;
  line-height: 1.35;
/*  border: 1px solid white;
  background-size: 38px 38px;
  background-image: linear-gradient(to right, #403E3ECC 1px, transparent 1px),
    linear-gradient(to bottom, #403E3ECC 1px, transparent 1px); */
  font-family: area-normal, sans-serif;
  font-weight: 100;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ConnectPage__findUs {
  gap: 10px;
  /*gap: 90px;*/
}

.ConnectPage__infoBox h3 {
  font-size: 26px;
  line-height: 26px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 15px;
}

.ConnectPage__emailSignup {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ConnectPage__emailSignup input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #888;
  padding: 0.5rem;
  color: #fff;
  font-size: 0.95rem;
}

.ConnectPage__emailSignup button {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
}

.ConnectPage__socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  /*width: 100%;*/
  margin-left: auto;
  margin-right: auto;
  /*justify-content: space-between;*/
}

.ConnectPage__socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: underline;
}

.ConnectPage__right {
  width: 100%;
  max-width: 800px;
}

.ConnectPage__findUs {
  display: flex;
  flex-direction: column;
}

.ConnectPage__findUsInfo {
  display: flex;
  justify-content: space-between;
  
}

.ConnectPage__phoneEmail {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.ConnectPage__findUsInfo .findUsHeader{
  padding-top: 10px;
  padding-bottom: 7px;
  text-transform: uppercase;
  font-weight: bold;
}

.ConnectPage__address address {
  font-style: normal;
}

.ConnectPage__phoneEmail a {
  color: white;
}

.ConnectPage__inputWrapper {
  position: relative;
}

.ConnectPage__inputWrapper img {
  position: absolute;
  right: 0px;
  top: -13px;
  cursor: pointer;
}

.ConnectPage__emailInput {
  width: 100%;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  padding: 5px 35px 5px 0;
  color: white;
  outline: none;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  background-size: 20px 20px;
}

.ConnectPage__emailInput::placeholder {
  color: #ffffff80;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 820px) {
  .ConnectPage__wrapper {
/*    flex-direction: column-reverse; */
    align-items: center;
  }
  .ConnectPage__header {
    display: flex;
    width: 100%;
    /*max-width: 280px;*/
    max-width: 300px;
    height: fit-content;
  }
  .ConnectPage__header .ConnectPage__heading {
    font-size: 25px;
    min-width: 280px;
    margin: 0px;
  }

  .ConnectPage__heading em {
    font-size: 30px;
  }

  h1.ConnectPage__heading {
    display: none;
  }
}

@media (min-width: 821px) and (max-width: 1435px) {
  .ConnectPage__wrapper {
/*    flex-direction: column-reverse;*/
    align-items: center;
  }
  .ConnectPage__header {
    display: flex;
    width: 100%;
    max-width: 610px;
    height: fit-content;
  }
  .ConnectPage__right {
    width: fit-content;
  }
  .ConnectPage__left {
    gap: 30px;
    justify-content: flex-start;
    height: fit-content;
    min-height: unset;
  }
  .ConnectPage__header .ConnectPage__heading {
    font-size: 35px;
    min-width: 380px;
    margin: 0px;
  }

  .ConnectPage__heading em {
    font-size: 40px;
  }

  h1.ConnectPage__heading {
    display: none;
  }
}

.ConnectForm__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  color: #fff;
  border: 1px solid grey;
  padding: 34px;
  background: radial-gradient(
    163.54% 150.47% at 0% 102.48%,
    rgba(6, 53, 114, 0.9) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  min-width: 320px;
  max-width: 1100px;
}

.ConnectForm__form h2 {
  font-size: 28px;
  line-height: 35px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  
  /*mta*/
  font-size: 20px;
}

.ConnectForm__form label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;

/*mta*/
font-size: 18px;
font-family: area-normal;
font-weight: bold;
}

.ConnectForm__form input[type="text"],
.ConnectForm__form input[type="email"],
.ConnectForm__form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #999;
  color: #fff;
  font-size: 20px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;

  /*mta*/
  font-size: 14px;

}

.ConnectForm__form textarea::placeholder {
  font-size: 16px;
}

.ConnectForm__form textarea {
  resize: none;
  height: 100px;
  
  
}

.ConnectForm__form input::placeholder,
.ConnectForm__form textarea::placeholder {
  color: #aaa;
}

.ConnectForm__gridTwoAlternative {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.ConnectForm__gridTwo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ConnectForm__simpleContainer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ConnectForm__field {
  display: flex;
  flex-direction: column;
}

.ConnectForm__field textarea {
  height: 48px;
  margin-top: 80px;
  overflow-y: scroll;
  scrollbar-width: none;
  
  /*mta*/
  margin-top: 0px;
}

.ConnectForm__field textarea::-webkit-scrollbar {
  display: none;
}

.ConnectForm__field textarea:focus {
  border: none;
}

.ConnectForm__field > label {
  font-size: 24px;
  line-height: 30px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  
  /*mta*/
  font-size: 18px;
}

.ConnectForm__checkboxGroup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  
  /*mta*/
  gap: 6px;
}

.ConnectForm__checkboxGroup label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  /*mta*/
  font-size: 14px;
}

.ConnectForm__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
  /*mta*/
  gap:0;
}

.ConnectForm__serviceDetails {
  background: #494a5566;
  border-radius: 4px;
  padding: 10px;
  font-size: 0.85rem;
  height: fit-content;
  width: fit-content;
}

.ConnectForm__serviceDetails ul {
  list-style: disc;
  color: #ccc;
  padding-left: 16px;
  padding-right: 40px;
  width: fit-content;
}

.ConnectForm__serviceDetails ul li {
  font-size: 14px;
  line-height: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: fit-content;
  
  /*mta*/
  font-size: 12px;
    line-height: 18px;
}

.ConnectForm__checkboxGroup .ConnectForm__whatServices {
  font-size: 24px;
  line-height: 30px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  
  /*mta*/
  font-size: 18px;
}

.ConnectForm__charCount {
  text-align: right;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 0.25rem;
}

.ConnectForm__fileInput {
  margin-top: 0.5rem;
}

.ConnectForm__fileName {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: #ccc;
}

.ConnectForm__checkboxWithTooltip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.ConnectForm__checkboxWithTooltip > label {
  font-size: 20px;
  gap: 20px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #afabab;
  
  /*mta*/
  font-size: 14px;
}

.ConnectForm__tooltipTrigger {
  background: #393939;
  color: #fff;
  border-radius: 3px;
  font-size: 0.75rem;
  width: 28px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  
  
}

.ConnectForm__tooltipText {
  position: absolute;
  top: -5px;
  left: 120%;
  width: 200px;
  background: #222;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.5rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.ConnectForm__tooltipTrigger:hover .ConnectForm__tooltipText {
  opacity: 1;
}

.ConnectForm__submitWrap {
  display: flex;
  justify-content: center;
}

.ConnectForm__form button {
  background: #000;
  color: #fff;
  padding: 10px 0px 14px 0px;
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  border: 1px solid #d9d9d9;
  text-transform: uppercase;
  color: #ffffff80;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ConnectForm__form button:hover {
  opacity: 0.8;
}

.ConnectForm__checkboxWithInput {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ConnectForm__form .ConnectForm__checkboxInlineInput .ConnectForm__otherInput {
  background: transparent;
  border: none;
/*  border-bottom: 1px solid #999;*/
  color: #fff;
  font-size: 16px;
  width: 100%;
}

.ConnectForm__otherInput, .ConnectForm__otherInput::placeholder {
  color: #aaa;
  font-size: 14px !important;
  margin-left: 0px;
}

.ConnectForm__otherInput::placeholder {
/*padding-left: .7em;*/
}


.ConnectForm__checkboxInlineInput {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 2fr;
  position: relative;
  height: fit-content;
}

.ConnectForm__absoluteCheckbox {
  position: absolute;
  left: 0px;
}

.ConnectForm__otherInput {
  background: transparent;
  border: none;
  border-bottom: 1px solid #999;
  color: #fff;
  font-size: 1rem;
  flex: 1;
}

.ConnectForm__otherInput::placeholder {
  color: #aaa;
}

.ConnectForm__form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 0px;
  outline: none;
  background-color: #00000000;
  accent-color: #00c3ff;
}

.ConnectForm__checkboxInlineInput input::placeholder {
  font-size: 16px;
}

.ConnectForm__form
  .ConnectForm__checkboxGroup
  .ConnectForm__checkboxInlineInput.ConnectForm__noMargin {
  margin-top: 0px;
}

.ConnectForm__form input:focus,
.ConnectForm__form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid grey;
}

.ConnectForm__gridTwo .ConnectForm__checkboxGroup label, 
.ConnectForm__gridTwo .ConnectForm__checkboxGroup > div {
  gap: 16px;
  font-size: 16px;
  font-family: area-normal, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #afabab;
  height: fit-content;
  
  
  /*mta*/
  font-size: 14px;
  
}

.ConnectForm__form .ConnectForm__checkboxGroup .ConnectForm__followUs {
  font-size: 24px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
}

.ConnectForm__form .ConnectForm__fileInput {
  margin-top: 20px;
}

.ConnectForm__form .ConnectForm__fileInput::file-selector-button {
  background-color: black;
  border: none;
  box-shadow: none;
  color: #afabab;
  padding: 8px 32px 8px 16px;
  border: 1px solid #d9d9d9;
}

.ConnectForm__form.ConnectForm__connectPage input[type="text"],
.ConnectForm__form.ConnectForm__connectPage input[type="email"],
.ConnectForm__form.ConnectForm__connectPage textarea {
  font-size: 16px;
}

.ConnectForm__checkboxWithTooltip > label {
  /*font-size: 16px; mta*/
}

.ConnectForm__form.ConnectForm__connectPage .ConnectForm__whatServices {
  font-size: 20px;
}

.ConnectForm__form.ConnectForm__connectPage .ConnectForm__field > label,
.ConnectForm__form.ConnectForm__connectPage .ConnectForm__followUs,
.ConnectForm__form.ConnectForm__connectPage .ConnectForm__howDidYou {
  font-size: 20px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  
  /*mta*/
  font-size: 18px !important;
}

.ConnectForm__form.ConnectForm__connectPage
  .ConnectForm__section
  .ConnectForm__checkboxInlineInput
  .ConnectForm__otherInput,
.ConnectForm__form.ConnectForm__connectPage
  .ConnectForm__section
  .ConnectForm__checkboxInlineInput
  .ConnectForm__otherInput::placeholder,
.ConnectForm__form.ConnectForm__connectPage
  .ConnectForm__section
  .ConnectForm__checkboxGroup
  label {
  font-size: 16px;
}

.ConnectForm__form.ConnectForm__connectPage .ConnectForm__newsletter,
.ConnectForm__form.ConnectForm__connectPage .ConnectForm__submitWrap button {
  font-size: 16px;
}

@media only screen and (max-width: 1435px) {
  .ConnectForm__form input::placeholder,
  .ConnectForm__form textarea::placeholder,
  .ConnectForm__gridTwo .ConnectForm__checkboxGroup label,
  .ConnectForm__gridTwo .ConnectForm__checkboxGroup label {
    font-size: 16px;
    
    
    /*mta*/
    font-size: 14px;
  }

  .ConnectForm__form h2,
  .ConnectForm__checkboxGroup .ConnectForm__whatServices,
  .ConnectForm__field > label,
  .ConnectForm__form .ConnectForm__checkboxGroup .ConnectForm__followUs,
  .ConnectForm__form button,
  .ConnectForm__form label {
    font-size: 18px;
    font-family: area-normal, sans-serif;
    font-weight: 500;
    font-style: normal;
    
    /*mta*/
    font-size: 14px;
  }

  .ConnectForm__field small {
    font-family: area-normal, sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    margin-top: 4px;
  }

  h1.ConnectPage__heading {
    display: none;
  }

  .ConnectPage__left {
    justify-content: flex-start;
  }

  .ConnectPage__infoBox,
  .ConnectPage__findUs {
    background-image: none;
    border: none;
  }

  .ConnectPage__mapBox img {
    height: 100%;
  }

  .ConnectForm__field textarea {
    margin-top: 20px;
  }

  .ConnectPage__left {
    border: 1px solid white;
    height: fit-content;
    min-height: unset;
  }

  .ConnectPage__findUs h3,
  .ConnectPage__infoBox h3 {
    font-size: 18px;
    font-weight: 700;
  }

  .ConnectPage__findUsInfo > * {
    font-size: 15px;
  }

  .ConnectPage__inputWrapper {
    /*margin-bottom: 70px;*/
  }

  .ConnectPage__findUs {
    gap: 20px;
  }

  .ConnectPage__infoBox {
    gap: 20px;
  }

  .ConnectForm__form {
  }

  .ConnectPage__wrapper {
    padding: 120px 16px;
  }

  .ConnectPage__heading span {
  }

  .ConnectPage__right {
    width: fit-content;
  }
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

.carousel__slide {
  flex: 0 0 auto;
  width: 417px;
  height: 236px;
  margin-right: 15px;
  position: relative;
}

.carousel__slideImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  padding: 10px;
  transition: opacity 0.3s ease;
}

.carousel__slide:hover .carousel__overlay {
  opacity: 1;
}

/* Infinite scroll keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* shift by half the content */
}

/* Pause when hovering the carousel */
.CaseStudiesCarousel__leftHalf {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}

.CaseStudiesCarousel__rightHalf {
  width: 55%;
  height: 100%;
  position: relative;
}

.CaseStudiesCarousel__arrowLeft,
.CaseStudiesCarousel__arrowRight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  z-index: 10;
  background-color: #c4bca34d;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.CaseStudiesCarousel__arrowLeft {
  left: 8px;
}
.CaseStudiesCarousel__arrowLeft img {
  transform: rotate(180deg);
}
.CaseStudiesCarousel__arrowRight {
  right: 8px;
}

.CaseStudiesCarousel__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

/* Responsive */
/* Container/track */
.CaseStudiesCarousel__carousel {
  position: relative;
  width: 100%;
}
.CaseStudiesCarousel__viewport {
  overflow: hidden;
  width: 100%;
}
.CaseStudiesCarousel__track {
  display: flex;
  align-items: center;
  gap: 24px; /* adjust */
  transition: transform 420ms ease;
  will-change: transform;
  touch-action: pan-y; /* allow horizontal drag */
  cursor: grab;
}
.CaseStudiesCarousel__track.is-dragging {
  transition: none;
  cursor: grabbing;
}

/* Slides: center active, grey neighbors visible */
.CaseStudiesCarousel__slide {
  flex: 0 0 80%; /* peek prev/next; adjust to taste */
  max-width: 1200px;
  height: 502px;
  user-select: none;
  opacity: 0.35;
  transform: scale(0.96);
  transition: opacity 240ms ease, transform 240ms ease;
}
.CaseStudiesCarousel__slide.is-neighbor {
  opacity: 0.6;
  transform: scale(0.98);
}
.CaseStudiesCarousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* During drag, don't trigger links */
.CaseStudiesCarousel__track.is-dragging a {
  pointer-events: none;
}

/* Dots (both bars share identical classes/styles) */
.CaseStudiesCarousel__dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.CaseStudiesCarousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: white;
  opacity: 0.45;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}
.CaseStudiesCarousel__dot.is-active {
  opacity: 1;
  background: gray;
  transform: scale(1.15);
}

/* Responsive tweak */
/* Container/track */
.CaseStudiesCarousel__carousel {
  position: relative;
  width: 100%;
}
.CaseStudiesCarousel__viewport {
  overflow: hidden;
  width: 100%;
}
.CaseStudiesCarousel__track {
  display: flex;
  align-items: center;
  gap: 24px; /* adjust */
  transition: transform 420ms ease;
  will-change: transform;
  touch-action: pan-y; /* allow horizontal drag */
  cursor: grab;
  position: relative;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}
.CaseStudiesCarousel__track.is-dragging {
  transition: none;
  cursor: grabbing;
}

/* Slides: center active, grey neighbors visible */
.CaseStudiesCarousel__slide {
  flex: 0 0 80%; /* peek prev/next; adjust to taste */
  
  user-select: none;
  opacity: 0.35;
  transform: scale(1);
  transition: opacity 340ms ease, transform 340ms ease;
}
.CaseStudiesCarousel__slide.is-neighbor {
  opacity: 0.6;
  transform: scale(1);
}
.CaseStudiesCarousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* During drag, don't trigger links */
.CaseStudiesCarousel__track.is-dragging a {
  pointer-events: none;
}

/* Dots (both bars share identical classes/styles) */
.CaseStudiesCarousel__dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.CaseStudiesCarousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: white;
  opacity: 0.45;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
  border: 0px;
  cursor: pointer;
}
.CaseStudiesCarousel__dot.is-active {
  opacity: 1;
  background: rgb(75, 75, 75);
  transform: scale(1.15);
}

/* Responsive tweak */
@media (max-width: 1080px) {
  .CaseStudiesCarousel__slide {
    flex-basis: 70%;
    height: 496px;
  }

  .QuotePage__heading {
    font-size: 20px;
  }

  .CaseStudiesCarousel__slide .CaseCard__textOverlay{
    padding:20px;
  }

  .CaseStudiesCarousel__slide .CaseCard__textOverlay h3 {
    font-size: 2em;
    font-weight: 800;
  }

  .CaseStudiesCarousel__slide .CaseCard__textOverlay .CaseCard__title {
    font-size: 14px;
  }

  .CaseStudiesCarousel__slide .CaseCard__textOverlay .CaseCard__title em {
    font-size: 18px;
  }

  .carousel__slide {
    width: 222px;
    height: 118px;
  }
}

/* REMOVE this — it can stick on and kill clicks */
.CaseStudiesCarousel__track.is-dragging a {
  pointer-events: none;
}

.CaseStudiesCarousel__track {
  touch-action: pan-y;
}
.CaseStudiesCarousel__slide,
.CaseStudiesCarousel__slide a,
.CaseStudiesCarousel__slide img {
  touch-action: pan-y;
  user-select: none;
}
.CaseStudiesCarousel__slide img {
  -webkit-user-drag: none;
}

.carousel__slide:hover,
.carousel__track:hover {
  animation-play-state: paused;
}

.carousel__overlay .carousel__leftText {
  font-size: 15px;
  font-weight: 500;
}

.carousel__overlay .carousel__rightText {
  font-family: ivyora-display, serif;
  font-weight: 100;
  font-style: italic;
  font-size: 1.5em;
  letter-spacing: .06em;
  text-align: right;
}

.CaseStudiesCarousel__slide .CaseCard__containerHomepage > img {
  width: 1100px;
  height: 660px;
}

.CaseStudiesCarousel__slide .CaseCard__containerHomepage {
  overflow: hidden;
}
.CaseStudiesCarousel__slide {
  overflow: hidden;
}

.ConnectPage__wrapper .ConnectPage__right {
}

.ConnectForm__serviceDetails {
}

.ConnectForm__serviceDetails ul {
  padding-right: 20px;
}

.ConnectPage__wrapper {
  width: 100%;
}

/* Always occupy space */
.ConnectForm__serviceDetails {
  box-sizing: border-box;
  width: 250px;
  min-width: 250px; /* don’t let flex shrink it */
  height: 266px;
  overflow: auto; /* scroll if list is taller */
  display: block;

  /* visual hide instead of display:none */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
  
  /*mta*/
  height: auto;
}

/* Visible state (same classname, toggled via aria) */
.ConnectForm__serviceDetails[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Lists: only show the active one */
.ConnectForm__serviceDetails > ul {
  margin: 0;
  padding-left: 1.1rem;
}
.ConnectForm__serviceDetails > ul[hidden] {
  display: none;
}

/* If the parent is a flex row, this ensures a fixed 250px column */
.ConnectForm__serviceDetails {
  flex: 0 0 250px;
  align-self: flex-start;
  
  /*mta*/
    flex: 0 0 275px;
}

.QuotePage__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: fit-content;
}

.QuotePage__heading {
  font-family: area-normal, sans-serif;
  font-weight: 800;
  font-size: 2.5em;
  margin-bottom: 1em;
  text-align: center;
}

/* Container hidden by default */

.ConnectPopUp__container {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overscroll-behavior: contain;
  overflow: auto;
  overflow-y: auto;
}

.ConnectPopUp__container.active {
  display: flex;
}

/* Overlay */
.ConnectPopUp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.334);
  z-index: 0;
  height: 100vh;
  width: 100%;
}

/* Content */
.ConnectPopUp__body{
	width: 100%;
}

.ConnectPopUp__content {
  position: relative;
  background: black;
    max-width: 1100px;
    width: 100%;
  border-radius: 20px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*margin-top: 120px;
  padding: 40px;*/  
  margin-top: 40px;
  padding: 20px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 1s ease;

  /*box-shadow: 0 8px 24px rgba(43, 43, 43, 0.422);*/ /* for contrast */
  box-shadow: 0 0px 25px rgba(43, 43, 43, 1); /* for contrast */
}

/* Close button */
.ConnectPopUp__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.ConnectPopUp__close img {
  width: 30px;
  height: 30px;
}

body.ConnectPopUp--open {
  overflow: hidden; /* desktop browsers */
}

/* Top drop-in success toast */
.ConnectForm__successToast {
  display: none;
  position: fixed;
  left: 50%;
  top: 130px;
  transform: translateX(-50%) translateY(-16px);
  opacity: 0;
  pointer-events: none;
  z-index: 2147483647; /* above everything */
  transition: transform 260ms ease, opacity 260ms ease;
}
.ConnectForm__successToast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  display: block;
  pointer-events: auto;
}
.ConnectForm__successToastInner {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 14px 14px;

  /* Transparent glass effect */
  background: rgba(255, 255, 255, 0.354); /* semi-transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  border: 1px solid rgba(255, 255, 255, 0.281);
  border-radius: 12px; /* keep it soft, adjust if you want sharp */
  max-width: min(90vw, 940px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); /* for contrast */
}

.ConnectForm__successIcon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  flex: 0 0 22px;
}
.ConnectForm__successText {
  display: grid;
  gap: 2px;
}
.ConnectForm__successText strong {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #111;
  font-family: ivyora-display, serif;
}
.ConnectForm__successText span {
  font-size: 16px;
  color: #1f1f1f;
  font-family: area-normal, sans-serif;
  font-weight: 400;
}
.ConnectForm__successClose {
  margin-left: 10px;
  background: none;
  border: 0;
  padding: 4px;
  line-height: 0;
  cursor: pointer;
  opacity: 0.8;
}
.ConnectForm__successClose:hover {
  opacity: 1;
}
.ConnectForm__successClose img {
  width: 10px;
  height: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .ConnectForm__successToast,
  .ConnectForm__successToast.is-visible {
    transition: none;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Partner popup */
.PartnerPopUp__container {
  position: fixed;
  inset: 0;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 9999;
}
.PartnerPopUp__container.PartnerPopUp__active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.PartnerPopUp__overlay {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.PartnerPopUp__content {
  position: relative;
  background: black;
  max-width: 1200px;
  width: 90%;
  border-radius: 20px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  padding: 40px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 1s ease;

  box-shadow: 0 8px 24px rgba(43, 43, 43, 0.422); /* for contrast */
}

.PartnerPopUp__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: 0;
  cursor: pointer;
}
.PartnerPopUp__close img {
  width: 30px;
  height: 30px;
}

/* Simple layout atoms reusing your naming */
.PartnerForm__gridTwo {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 780px) {
  .PartnerForm__gridTwo {
    grid-template-columns: 1fr;
  }
}

.PartnerForm__field input,
.PartnerForm__field textarea {
  width: 100%;
  background: transparent;
  color: #ddd;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
/*  padding: 10px 4px;*/
  outline: none;
}
.PartnerForm__field textarea {
  /*min-height: 120px;*/
  resize: vertical;
}

.PartnerForm__checkboxGroup {
  gap: 8px;
}
.PartnerForm__checkboxInlineInput {
  display: flex;
  gap: 10px;
}
.PartnerForm__absoluteCheckbox {
  width: 18px;
  height: 18px;
}
.PartnerForm__submitWrap {
  margin-top: 24px;
}
.PartnerForm__submitWrap button {
  width: 100%;
  padding: 8px 18px;
  background: #111;
  color: #fff;
  border: 1px solid #444;
  cursor: pointer;
  font-size: 20px;
}

.PartnerForm__gridTwo.PartnerForm__fullWidth {
  width: 100%;
  grid-template-columns: 1fr;
}

form.PartnerForm__form {
  background: radial-gradient(
      163.54% 150.47% at 0% 102.48%,
      rgba(77, 17, 31, 0.9) 0%,
      rgba(0, 0, 0, 0.9) 100%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.PartnerForm__field.ConnectForm__field textarea {
  /*margin-top: 20px;*/
}

.PartnerForm__howDidYou.ConnectForm__howDidYou {
  font-size: 24px;
  line-height: 30px;
  font-family: area-normal, sans-serif;
  font-weight: 700;
  font-style: normal;
  
  /*mta*/
  font-size: 18px !important;
}

.PartnerForm__otherInput.ConnectForm__otherInput {
  min-width: max-content;
}

.PartnerForm__checkboxInlineInput {
  grid-template-columns: 1fr;
}

.PartnerPopUp__container,
.ConnectPopUp__container {
  position: fixed;
  inset: 0;
}

.ConnectPopUp__overlay,
.PartnerPopUp__overlay {
  position: fixed;
  min-height: 100vh;
  width: 100vw;
}
.QuotePage__main {
  padding: 120px 60px 80px 60px;
}

.ProjectPage__main,
.CaseStudyPage__main {
  padding: 120px 60px 80px 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ebe2c8;
  
  /*mta*/
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
}

/* Responsive tweak */
@media (max-width: 1080px) {
  .QuotePage__heading {
    font-size: 20px;
  }

  .QuotePage__main {
    padding: 120px 20px 80px 20px;
  }

  .ProjectPage__main,
  .CaseStudyPage__main {
    padding: 15vh 20px;
  }
}

.ProjectPage__main .Project__topContainer,
.ProjectPage__main .Project__content {
  width: 100%;
  max-width: 1200px;
}

.CaseStudyPage__main .CaseStudy__related {
  align-self: flex-start;
}

.SimplePage {
  padding: 120px 60px 80px 60px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
}

.SimplePage h1 {
  font-family: ivyora-display, serif;
  font-weight: 500;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.SimplePage h2 {
  font-family: ivyora-display, serif;
  font-weight: 300;
  font-size: 2em;
  margin-bottom: 12px;
}

.SimplePage p,
.SimplePage li {
  font-family: area-normal, sans-serif;
  font-weight: 400;

  margin-bottom: 12px;
}

.SimplePage li{
	margin-left: 2em;
}

@media screen and (max-width: 780px) {
  .SimplePage {
    padding: 120px 20px 80px 20px;
  }

  .SimplePage h1 {
    font-size: 32px;
  }

  .SimplePage h2 {
    font-size: 24px;
  }

  .SimplePage p,
  .SimplePage li {

  }

  .ConnectForm__form {
    padding: 20px;
    min-width: 300px;
  }
}

@media only screen and (min-width: 1080px) {
  .homepage__faqAnswer .ProjectCard__mobile {
    display: none;
  }
}

.CaseStudyPage__main .CaseCard__card {
  max-width: 347px;
}

@media (max-width: 768px) {
  .grecaptcha-badge {
    visibility: hidden !important; /* don't consume clicks */
  }
}

@media only screen and (min-width: 860px) and (max-width: 1635px) {
  .ConnectPage__wrapper {
    padding: 120px 20px 80px 20px;
    gap: 70px;
    justify-content: center;
  }
}

.Footer__emailMsg {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.9;
  height: 18px;
}
.Footer__emailMsg.is-ok {
  color: #2e7d32;
}
.Footer__emailMsg.is-err {
  color: #c62828;
}

.Footer__noGap {
  display: flex;
  gap: 8px;
  width: fit-content;
}

.Footer__footer .Footer__otherColumn {
  margin-right: 94px;
}

.Footer__footer .Footer__emailColumn {
  margin-right: 90px;
}

.Footer__column .Footer__servicesFooter a {
  margin-bottom: 0px;
}

@media (min-width: 1240px){
	/*added by mta*/
  	.image-fill-container .image-fill {
    	transform: scale(1.25, 1.25);
        transform-origin: top center;
    }
}

@media (min-width: 2600px){
	/*added by mta*/
  	.image-fill-container .image-fill {
    	transform: scale(1.5, 1.5);
        transform-origin: top center;
    }
}


@media (min-width: 1240px) and (max-width: 1610px) {
  .Footer__columns {
    grid-template-columns: 100px 219px 325px 365px 170px;
  }

  .Footer__footer .Footer__otherColumn {
    margin-right: 75px;
  }

  .Footer__footer .Footer__column.Footer__emailColumn {
    margin-right: 75px;
  }
}

@media only screen and (max-width: 1260px) {
  .homepage__proofSection {
    display: none;
  }
}

@media only screen and (max-width: 350px) {
  .homepage__about {
    padding: 250px 20px 85px 20px;
  }
}


@media only screen and (max-width: 1240px) {
    .Footer__footer .Footer__columns .Footer__emailColumn { 

      margin-right: 0px;
    }

      .Footer__emailMsg {
    margin-top: 0px;
  }

  .Footer__inputWrapper {
    margin-bottom: 0px;
  }

	.WorkPage__mainSection .QuoteButton__btn.QuoteButton__work {
  		margin-top: 80px;
	}

}

.ConnectForm__field small {
  margin-top: 8px;
}


.ConnectForm__form input[type="checkbox"] {
  appearance: none;         /* Remove default styles */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;    /* Firefox */

  width: 20px;
  height: 20px;
  border-radius: 0;               /* no rounding */
  border: 2px solid #D9D9D9;      /* border color */
  background-color: transparent;  /* fully transparent background */
  cursor: pointer;
  outline: none;
  position: relative;             /* needed for checkmark positioning */
}

.ConnectForm__form input[type="checkbox"]:checked {
  background-color: #47b9ea;  /* fill color when checked */
}

.ConnectForm__form input[type="checkbox"]:checked::after {
  content: "✓";               /* checkmark */
  color: #000;                /* black checkmark */
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;  
           /* ensure proper vertical centering */
}




.PartnerForm__form input[type="checkbox"] {
  appearance: none;         /* Remove default styles */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;    /* Firefox */

  width: 20px;
  height: 20px;
  border-radius: 0;               /* no rounding */
  border: 2px solid #D9D9D9;      /* border color */
  background-color: transparent;  /* fully transparent background */
  cursor: pointer;
  outline: none;
  position: relative;             /* needed for checkmark positioning */
}

.PartnerForm__form input[type="checkbox"]:checked {
  background-color: #47b9ea;  /* fill color when checked */
}

.PartnerForm__form input[type="checkbox"]:checked::after {
  content: "✓";               /* checkmark */
  color: #000;                /* black checkmark */
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;  
           /* ensure proper vertical centering */
}


.AboutPage__main {
  background-color: #090909;
}


.AboutPage__about.AboutPage__aboutDesktop > p {
  width: fit-content;

}

.AboutPage__aboutContainer {
  max-width: 1200px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
}

.AboutPage__aboutContainer > div {
 align-self: flex-start;
}

.AboutPage__aboutContainer > p {
  /*align-self: flex-end;*/
}

.ServicesPage__aboutContainer {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 80%;
  gap: 110px;
}

/* Let grid/flex children shrink so ellipsis can work */
/*
Changed this so it would work on Services page as well as Work -MTA

.WorkGrid__projectsRow .ProjectCard__container,
.WorkGrid__projectsRow .ProjectCard__text { */
 .ProjectCard__container, .ProjectCard__text {
  min-width: 0;              /* CRITICAL for grid/flex children */
}

/* Single-line truncate for title + subtitle */
.WorkGrid__projectsRow .ProjectCard__text h3,
.WorkGrid__projectsRow .ProjectCard__text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

/* keep your sizes */
.WorkGrid__projectsRow .ProjectCard__text h3 { font-size: 1.25em; }
.WorkGrid__projectsRow .ProjectCard__text p  {  }


.ConnectPage__socials {
  margin-top: -10px;
}

.ConnectForm__checkboxGroup .ConnectForm__newsletter {
  display: flex;
  align-items: flex-start;
  line-height: 130%;
  font-size: 16px;
}

.ConnectForm__checkboxGroup .ConnectForm__newsletter input {
  margin-top: 4px;
}


.ConnectForm__checkboxInlineInput.ConnectForm__noMargin .ConnectForm__otherInput, .PartnerForm__checkboxInlineInput.PartnerForm__noMargin .PartnerForm__otherInput, .ConnectForm__checkboxInlineInput .ConnectForm__otherInput, .PartnerForm__checkboxInlineInput .PartnerForm__otherInput {
  margin-left: -40px;
  margin-top: 4px;
  padding-left: 38px;
  padding-bottom: 8px;
}


/*added by MTA */

/* add dropshadow */
.CaseStudiesCarousel__slide {
	filter: drop-shadow(10px 10px 7px black);

margin-bottom: 30px;
}
    
@media (max-width: 1080px) {
	.CaseStudiesCarousel__slide {
		height: 496px;
        margin-bottom: 0px;
    }
}

/* About Page Carousel Buttons */
#scrollTimelineButtons, #scrollLeadershipButtons, #projectCarouselButtons{
  position: absolute;
  width: 100%;
  z-index:10;
}

#projectCarouselButtons{
  margin-top: 150px;
}

#scrollTimelineButtons{
  margin-top: -45em;
}

#scrollLeadershipButtons{
  margin-top: -250px;
}

#scrollLeadershipButtons{
    bottom: unset;
}

#timelineMoveLeftButton, #timelineMoveRightButton, #projectCarouselMoveLeftButton, #projectCarouselMoveRightButton {
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  background-position: center;
  margin: 1em;
  text-align: center;
  position: absolute;
  height: 27px;
  width: 27px;
}

#leadershipMoveLeftButton, #leadershipMoveRightButton {
  cursor: pointer;
  margin: 1em;
  text-align: center;
  position: absolute;
}




#timelineMoveLeftButton, #projectCarouselMoveLeftButton{
  left: 1em;
}

#leadershipMoveLeftButton{
  left: 5px;
}

#timelineMoveRightButton{
  right: 1em;
}

#leadershipMoveRightButton{
  right: 10px;
}

#projectCarouselMoveRightButton{
  left:78%;
}

#timelineMoveLeftButton img, #leadershipMoveLeftButton img, #projectCarouselMoveLeftButton img{
    margin-right: 0px;
    margin-top: 3px;
}

#leadershipMoveRightButton img, #timelineMoveRightButton img, #projectCarouselMoveRightButton img{
    margin-right: 2px;
    margin-top: 3px;
}

/* Changes to leadership tiles */

.headshot{
    max-width: 300px; width: 100%; height: auto;
    aspect-ratio: 333 / 433;
}

.AboutPage__cardInfo{
	max-width: 300px; width: 100%; height: auto;
}

/* Begin control h1 tags for About, Services, and Work pages */
.AboutPage__hero h1, .ServicesPage__hero h1, .WorkPage__hero h1{
	font-family: area-normal, sans-serif;
	z-index: 1;
	font-size: 70px;
	letter-spacing: 1px;
	font-weight: 800;
	font-style: normal;
	color: #ebe2c8;
	margin-top: auto;
	margin-bottom: auto;
}

.AboutPage__hero h1, .ServicesPage__hero h1 {
	display: flex;
	flex-direction: column;
	width: 710px;
    position: absolute;
    top: 5em;
}

.ServicesPage__hero h1 {
  top: 3.84em;
  
}

.WorkPage__hero h1 {
	height: 70px;
	width: fit-content;
    position: absolute;
    top: 5em;
}

.AboutPage__heroText1, .AboutPage__heroText2, .ServicesPage__heroText1, .ServicesPage__heroText2{
	display: flex;
}

.AboutPage__heroText1, .ServicesPage__heroText1 {
	align-self: flex-start;
    line-height: 110%;
}

.AboutPage__heroText2, .ServicesPage__heroText2 {
	align-self: flex-end;
    line-height: 140%;
	gap: .5em;
}

.AboutPage__heroText2 > span, .ServicesPage__heroText1 > span, .WorkPage__hero h1 span{
	font-family: ivyora-display, serif;
	font-style: italic;
/*    font-size: 80px;*/

    font-weight: 400;
    letter-spacing: 1%;
}

@media (max-width: 800px) {
    .AboutPage__hero h1, .ServicesPage__hero h1{
      letter-spacing: 0px;
      font-size: 30px;
      max-width: 310px;
      line-height: 120%;
    }

    .AboutPage__hero h1{
      position: relative;
      top: unset;
    }

  .ServicesPage__hero h1{
  
/*    position: relative;*/
    top: 35%;
  }


    .WorkPage__hero h1 {
        display: none;
    }
}
/* End control h1 tags for About, Services, and Work pages */


/* Center and crop to first project image. Fixes ladscapes with a lot of whitespace. */
@media (max-width: 800px) {
  .Project__slide:first-of-type img{
    max-width: 480px;
    object-fit: cover;
  }
}

/* Begin updated form styles */
/* Begin form properties */
.ConnectForm__form{
	padding: 3em;
	border: none;
    background-image: linear-gradient(to bottom right, rgba(20, 20, 20), rgba(6, 53, 114));
}

#ConnectForm__container{
	display: flex;
    gap:8em;
}

.ConnectForm__field > label{
	line-height: unset;
}

#ConnectForm__leftColumn, #ConnectForm__rightColumn{
	width: 50%;
}

.ConnectForm__gridTwo{
	display: flex;
    gap: 6em;
}

#ConnectFormServicesCheckboxes{
	display: grid;
    grid-template-columns: auto auto;
}

.ConnectForm__howDidYou, .ConnectForm__whatServices, .PartnerForm__howDidYou{
	font-size: 14px !important;
}

.ConnectForm__checkboxGroup label{
	font-size: 12px !important;
}
/* End form properties */

/* Begin "Choose Files" input styles */
.ConnectForm__fileInput {
	display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 5px 10px 8px 10px;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: normal !important;
    text-align: center;
}
/* End "Choose Files" input styles */

/* Begin button styles */
.ConnectForm__form button{
    padding: 6px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: opacity 0.5s ease;
    width: 100%;
    text-transform: uppercase;
    font-family: area-normal, sans-serif;
    font-weight: bold;
}

.custom-file-upload, .ConnectForm__form button{
  color: #FFF;
  font-weight: bold;
	/*border: 1px solid rgba(255, 255, 255, 0.40);*/
  background-color: var(--vseenBlue);
    /*-webkit-box-shadow:0px 0px 10px 1px rgba(255, 255, 255,0.40);
	-moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);
	box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);*/
}

.custom-file-upload:hover, .ConnectForm__form button:hover{
  -webkit-box-shadow:0px 0px 10px 1px rgba(255, 255, 255,0.40);
	-moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);
	box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);
/*    border: 1px solid rgba(0, 168, 208, 0.40);*/
/*
	-webkit-box-shadow:0px 0px 10px 1px rgba(0, 168, 208,0.40);
	-moz-box-shadow: 0px 0px 10px 1px rgba(0, 168, 208,0.40);
	box-shadow: 0px 0px 10px 1px rgba(0, 168, 208,0.40);*/
}

.PartnerForm__form button{
  background-color: rgb(181, 33, 68);
}

.PartnerForm__form button:hover{
  -webkit-box-shadow:0px 0px 10px 1px rgba(255, 255, 255,0.40);
	-moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);
	box-shadow: 0px 0px 10px 1px rgba(255, 255, 255,0.40);
	/*-webkit-box-shadow:0px 0px 10px 1px rgba(181, 33, 68, 0.40);
	-moz-box-shadow: 0px 0px 10px 1px rgba(181, 33, 68, 0.40);
	box-shadow: 0px 0px 10px 1px rgba(181, 33, 68, 0.40);*/
}

.ConnectForm__submitWrap{
	padding-top: 2em;
}
/* End button styles */

/* Begin single line text & email input styles */
input[type="text"], input[type="email"]{
	padding-bottom: .5em;
    margin-bottom: 2em;
}
/* End single line text & email input styles */

/* Begin checkbox styles */
input[type="checkbox"]{
   border: 1px solid rgba(255, 255, 255, 0.40) !important;
   width: 15px !important;
   height: 15px !important;
   vertical-align:middle !important;
}
/* End checkbox styles */

/* Begin styles for file upload/newsletter optin */
#fileAndOptIn{
	padding-top: 2em;
}

#fileAndOptIn h3{
	padding-bottom: 1em;
    font-size: 1em;
    font-weight: bold;
}

.chosenFiles{
	color: #999;
}

#chosenFilesDesktop{ display: block; }

 #chosenFilesMobile{ display: none; }

.ConnectForm__checkboxGroup .ConnectForm__newsletter{
	align-items: center;
    line-height: 1em;
}
/* End styles for file upload/newsletter optin */

/* Begin service details box*/
.ConnectForm__serviceDetails{
	width: 200px !important;
    min-width: 200px !important;
	flex: 0 0 200px !important;
}

.ConnectForm__serviceDetails li{
	font-size: 10px !important;
}
/* End service details box*/

/* Begin checkboxes with open response */
input[type="text"].customCheckBox{
    padding-bottom: 0em;
    margin-bottom: 0;
    font-size: 12px !important;
}

.customCheckBox{
	border: none !important;
}

.ConnectForm__checkboxInlineInput{
	padding-bottom: .25em;
    border-bottom: 1px solid #999;
}

.customCheckBox, .customCheckBox::placeholder{
	font-size: 12px !important;
    color: #afabab !important;
}
/* End checkboxes with open response */

.ConnectForm__otherInput{
	margin-top: 0px !important;
}

.ConnectForm__checkboxInlineInput .ConnectForm__otherInput{
	margin-left: 0px !important;
	padding-left: 0px !important;
}

/* Begin "Tell Us" question styling */
textarea, textarea::placeholder {
	font-size: 14px !important;
    color: #afabab !important;
}

.ConnectForm__form textarea {
	height: 2.25em;
}

.ConnectForm__charCount{
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* End "Tell Us" question styling */

.ConnectForm__tooltipTrigger{
	width: 15px !important;
}

#ConnectForm__howDidYouHear .ConnectForm__checkboxGroup{
	width:50%;
}

.ConnectForm__checkboxGroup label{
    width: 100%;
}

@media screen and (max-width: 1000px) {
	#ConnectForm__container{
		flex-direction: column;
        gap:1em;
	}

	#ConnectForm__leftColumn, #ConnectForm__rightColumn{
		width:100% !important;
	}
   
    .ConnectForm__tooltipTrigger{
    	display: none;
	}
    
    .ConnectForm__gridTwo{
    	gap: 1em;
	}
}

@media screen and (max-width: 480px) {
	.rightCheckboxArea{
    	display:none;
    }
   
    #fileAndOptIn, #ConnectForm__howDidYouHear{
        width: 100%;
        flex-direction: column;
    }
    
    #ConnectForm__howDidYouHear .ConnectForm__checkboxGroup{
		width:100%;
	}
    
    .ConnectForm__checkboxInlineInput{
    	padding: 0;
    }
    
    #chosenFilesDesktop{
 		display: none;
	}
    
    #chosenFilesMobile{
 		display: block;
	}
}

.ConnectForm__checkboxWithoutTooltip{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
/* End updated form styles */

@media screen and (max-width: 820px) {

  .AboutPage__valuesContainer.AboutPage__visibleValues .AboutPage__vBox {
    gap: 1em;
  }

  .ServicesPage__about > p.aboutQuote {
    width: unset;
    align-self: flex-end;
  }

  .homepage__desktop{
    display: none;
  }

  #homepage__aboutMobile{
    display: flex;
  }
}

/* Control stylized text in one place */
.homepage__aboutCompany span, .AboutPage__aboutText span, .ServicesPage__processTextMobile span{
    font-size: 1.75em;
    line-height: 1.34em;
    font-family: area-normal, sans-serif;
    font-weight: 800;
}

.homepage__aboutCompany span, .AboutPage__aboutText span, .ServicesPage__processTextMobile span{
    font-family: ivyora-display, serif;
    font-weight: 100;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 1.25em;
    line-height: 1em;
}

@media screen and (max-width: 820px) {
  .homepage__aboutCompany span, .AboutPage__aboutText span, .ServicesPage__processTextMobile span{
      font-size: 1.75em;
      line-height: 1.34em;
      font-family: area-normal, sans-serif;
      font-weight: 800;
  }

  .homepage__aboutCompany span, .AboutPage__aboutText span, .ServicesPage__processTextMobile span{
      font-family: ivyora-display, serif;
      font-weight: 100;
      font-style: italic;
      letter-spacing: 1px;
      font-size: 1.20em;
      line-height: 1em;
  }
}

.Footer__footer{
  font-size: 13px;
}

/* Tour Modal */
.TakeATour__container {
  position: fixed;
  inset: 0;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 9999;
      width: 40em;
    margin-left: auto;
    margin-right: auto;
}
.TakeATour__container.TakeATour__active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.TakeATour__overlay {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.TakeATour__content {
  position: relative;
  background: #ebe2c8;
  color: #000;
  max-width: 1200px;
  width: 90%;
  border-radius: 20px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  padding: 40px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 1s ease;

  box-shadow: 0 8px 24px rgba(43, 43, 43, 0.422); /* for contrast */
}

.TakeATour__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 0;
  cursor: pointer;
}

.TakeATour__close img {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 820px) {

  .TakeATour__container {
    width: 95%;
  }
}


/* Hide the recaptcha badge*/
.grecaptcha-badge {
    visibility: hidden;
}

/* Honeypot form field */
#ConnectForm__website {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
