@charset "UTF-8";
@-webkit-keyframes RightToLeft {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes RightToLeft {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes RightToLeftImg {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(calc(0px - 50% - 60px));
    transform: translateX(calc(0px - 50% - 60px));
  }
}
@keyframes RightToLeftImg {
  from {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(calc(0px - 50% - 60px));
    transform: translateX(calc(0px - 50% - 60px));
  }
}
@-webkit-keyframes LeftToRightImg {
  from {
    -webkit-transform: translateX(calc(0px - 50% - 60px));
    transform: translateX(calc(0px - 50% - 60px));
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes LeftToRightImg {
  from {
    -webkit-transform: translateX(calc(0px - 50% - 60px));
    transform: translateX(calc(0px - 50% - 60px));
  }
  to {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@-webkit-keyframes bounce {
  0%, 10%, 25%, 40%, 100% {
    -webkit-transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-30px);
  }
  30% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 10%, 25%, 40%, 100% {
    -moz-transform: translateY(0);
  }
  20% {
    -moz-transform: translateY(-30px);
  }
  30% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 10%, 25%, 40%, 100% {
    -o-transform: translateY(0);
  }
  20% {
    -o-transform: translateY(-30px);
  }
  30% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 10%, 25%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-30px);
  }
  30% {
    transform: translateY(-15px);
  }
}
.bg-black {
  background-color: black;
  color: white;
}

.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
  margin-top: 60px;
}
.social-links span {
  font-weight: 500;
  margin-right: 10px;
}
.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  position: relative;
}
.social-links a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  opacity: 0;
}
.social-links a:hover::before {
  opacity: 0.2;
}
.social-links a img {
  width: 100%;
  height: auto;
}

body button:not(.splide__arrow) {
  color: #000;
  background: transparent;
  border: 1px solid #000;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 40px;
  padding: 0 1.5rem;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  display: inline-block;
}
body button:not(.splide__arrow)::after {
  content: "";
  position: absolute;
  background: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: left 0.3s ease, background 0.3s ease;
  z-index: 0;
}
body button:not(.splide__arrow):hover {
  color: #fff;
}
body button:not(.splide__arrow):hover::after {
  left: 0;
}
body button:not(.splide__arrow) span {
  position: relative;
  z-index: 1;
}

.bg-black button {
  color: #fff !important;
  border-color: #fff !important;
}
.bg-black button:hover {
  color: #000 !important;
}
.bg-black button::after {
  background: #fff !important;
}

.tab-section {
  position: relative;
  z-index: 2;
}
.tab-section .tabbed-navigation .tab {
  padding: 28px;
  cursor: pointer;
}
.tab-section .tabbed-navigation .tab.active {
  background: #fff;
  color: #000;
  cursor: default;
  pointer-events: none;
}
.tab-section .tabbed-navigation .tab h3 {
  text-align: center;
  pointer-events: none;
}
.tab-section .tabbed-content {
  padding: 120px 0;
  background: #fff;
  position: relative;
}
.tab-section .tabbed-content .tab-content {
  display: none;
  position: relative;
}
.tab-section .tabbed-content .tab-content .col {
  gap: 0;
  position: relative;
  z-index: 2;
}
.tab-section .tabbed-content .tab-content h2 {
  margin-bottom: 50px;
  max-width: 1170px;
  background: white;
}
.tab-section .tabbed-content .tab-content p {
  margin-bottom: 0.5rem;
  max-width: 750px;
  background: white;
}
.tab-section .tabbed-content .tab-content p.fs-26 {
  margin-bottom: 1rem;
}
.tab-section .tabbed-content .tab-content p:not(.fs-26) {
  font-size: 18px;
}
.tab-section .tabbed-content .tab-content li {
  margin-bottom: 0.25rem;
  max-width: 750px;
}
.tab-section .tabbed-content .tab-content li::before {
  font-weight: 600;
}
.tab-section .tabbed-content .tab-content.active {
  display: block;
}
.tab-section .tabbed-content .tab-content > div {
  width: 70%;
  gap: 20px;
}
@media screen and (max-width: 1080px) {
  .tab-section .tabbed-content .tab-content > div {
    width: 100%;
  }
}
.tab-section .tabbed-content .cube-holder {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
}
@media (max-width: 980px) {
  .tab-section .tabbed-content .cube-holder {
    display: none;
  }
}
.tab-section.mobile {
  display: none;
}
@media (max-width: 767px) {
  .tab-section.mobile {
    display: block;
  }
  .tab-section.mobile .container {
    padding: 0;
  }
  .tab-section.mobile .tab {
    width: 100%;
  }
  .tab-section.mobile .tab h3 {
    background: black;
    color: white;
    width: 100%;
    padding: 22px 20px;
    border-bottom: 1px solid white;
  }
  .tab-section.mobile .tab .tab-content {
    display: none;
  }
  .tab-section.mobile .tab.active h3 {
    background: white;
    color: black;
  }
  .tab-section.mobile .tab.active .tab-content {
    display: flex;
    padding: 20px;
    gap: 15px;
  }
  .tab-section.desktop {
    display: none;
  }
}

.video-banner__wrapper {
  width: 100%;
  height: 100vh;
  background: black;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  padding: 0;
}
.video-banner__wrapper .container {
  align-items: center;
  justify-content: center;
}
.video-banner__wrapper .container h1, .video-banner__wrapper .container p {
  text-align: center;
  z-index: 1;
}
.video-banner__wrapper .container .video-banner__content {
  max-width: 1430px;
  gap: 30px;
  z-index: 1;
}
.video-banner__wrapper .container .video-banner__content h1, .video-banner__wrapper .container .video-banner__content h3, .video-banner__wrapper .container .video-banner__content p {
  color: white;
  text-align: center;
  position: relative;
}

@media (max-width: 1000px) {
  .our-work .video-banner__wrapper {
    height: auto;
    min-height: 0;
  }
  .our-work .video-banner__wrapper iframe, .our-work .video-banner__wrapper video {
    position: static !important;
  }
}
@media (max-width: 767px) {
  .responsibility .video-banner__wrapper {
    height: auto;
    padding: 80px 0;
  }
  .responsibility .bg-black.fullscreen-section {
    padding: 0;
  }
  .responsibility .bg-black.fullscreen-section .un-container {
    align-items: flex-start;
    margin-top: 20px;
  }
  .responsibility .bg-black.fullscreen-section .un-container .un-text {
    flex-direction: column;
    align-items: flex-start;
  }
  .responsibility .bg-black.fullscreen-section .un-container .un-text .divider {
    display: none;
  }
}
@media (max-width: 600px) {
  .responsibility .video-banner__wrapper h1 {
    font-size: 30px;
  }
  .responsibility .video-banner__wrapper .mt-60 {
    margin-top: 20px;
  }
}
.our-solutions .video-banner__wrapper {
  height: 91vh;
}

.about-us .video-banner__wrapper iframe, .about-us .video-banner__wrapper video {
  height: 88%;
}
.about-us .video-banner__wrapper .video-banner__content {
  height: 100%;
  justify-content: space-between;
  padding-top: 40vh;
  padding-bottom: 40px;
}

.faq-section h2 {
  margin-bottom: 40px;
}
.faq-section .faq-row {
  border-top: 1px solid #000;
  padding: 20px 0;
  height: 70px;
  overflow: hidden;
  width: 100%;
  display: block;
  transition: height 0.3s ease;
  cursor: pointer;
}
.faq-section .faq-row .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-section .faq-row .faq-question .faq-icon {
  width: 30px;
  height: 30px;
  position: relative;
}
.faq-section .faq-row .faq-question .faq-icon img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  transition: all 0.3s ease;
  transform-origin: center;
  opacity: 1;
}
.faq-section .faq-row .faq-question .faq-icon img#faq-close {
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq-section .faq-row .faq-answer {
  padding: 1em 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-section .faq-row:last-child {
  border-bottom: 1px solid #000;
}
.faq-section .faq-row:hover .faq-icon #faq-open {
  transform: rotate(90deg);
}
.faq-section .faq-row.active {
  height: 100%;
}
.faq-section .faq-row.active .faq-question .faq-icon #faq-close {
  opacity: 1;
}
.faq-section .faq-row.active .faq-question .faq-icon #faq-open {
  opacity: 0;
  transform: rotate(90deg);
}
.faq-section .faq-row.active .faq-answer {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
}

.client-testimonials .testimonial-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  gap: 16px;
  z-index: 10;
}
.client-testimonials .testimonial-nav .testimonial-nav-item {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  cursor: pointer;
}
.client-testimonials .testimonial-nav .testimonial-nav-item.active {
  background: #fff;
}
.client-testimonials h2 {
  margin-bottom: 60px;
}
.client-testimonials .testimonial-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.client-testimonials .testimonial-slider .testimonial-item {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.client-testimonials .testimonial-slider .testimonial-item.active {
  opacity: 1;
  transition: opacity 0.3s ease;
  position: static;
}

.posts-slider h2 {
  text-align: center;
  margin-bottom: 40px;
}
.posts-slider button {
  display: block !important;
  margin: 40px auto 0;
}
.posts-slider .splide__arrow {
  background: white;
  width: 3em;
  height: 3em;
  margin: 0;
  text-align: center;
}
.posts-slider .splide__arrow svg {
  height: 3em;
  width: 1.5em;
}
.posts-slider .splide__arrow:hover {
  background-color: #000;
}
.posts-slider .splide__arrow:hover svg {
  fill: white;
}
.posts-slider .splide__list {
  align-items: center;
}
.posts-slider .splide__list h3 {
  text-transform: uppercase;
  font-size: 18px;
  padding: 15px 0;
}
.posts-slider .splide__list .is-active.is-visible {
  width: 26% !important;
}
.posts-slider .splide__list .is-active.is-visible h3 {
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .posts-slider .splide__list .is-active.is-visible {
    width: 36% !important;
  }
}
@media (max-width: 768px) {
  .posts-slider .splide__list .is-active.is-visible {
    width: calc(75% - 20px) !important;
  }
  .posts-slider .splide__list .is-active.is-visible h3 {
    font-size: 20px;
  }
}
.posts-slider .splide__list .is-visible.is-prev, .posts-slider .splide__list .is-visible.is-next {
  width: 23% !important;
}
.posts-slider .splide__list .is-visible.is-prev h3, .posts-slider .splide__list .is-visible.is-next h3 {
  font-size: 22px;
}
@media (max-width: 1024px) {
  .posts-slider .splide__list .is-visible.is-prev, .posts-slider .splide__list .is-visible.is-next {
    width: 33% !important;
  }
}
@media (max-width: 768px) {
  .posts-slider .splide__list .is-visible.is-prev, .posts-slider .splide__list .is-visible.is-next {
    width: calc(70% - 20px) !important;
  }
  .posts-slider .splide__list .is-visible.is-prev h3, .posts-slider .splide__list .is-visible.is-next h3 {
    font-size: 16px;
  }
}
.posts-slider .splide__list .post-image-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.posts-slider .splide__list .post-image-holder img {
  width: 100%;
  aspect-ratio: 3.7/4;
  object-fit: cover;
}
.posts-slider .splide__list .post-image-holder h4 {
  padding: 6px 12px;
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  color: black;
}
.posts-slider .splide__list a:hover h3 {
  text-decoration: none;
  background: black;
  color: white;
}

.cube-container .cube-holder {
  width: 100%;
}
@media (max-width: 800px) {
  .cube-container .cube-holder {
    width: 450px;
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .cube-container {
    text-align: center;
  }
}

.three-cubes {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.three-cubes .one-third {
  width: 33%;
}

@media (max-width: 800px) {
  .home-page .three-cubes .one-third {
    display: none;
  }
  .home-page .three-cubes .one-third:first-child {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
  }
}
@media (max-width: 1080px) {
  .hello .three-cubes {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hello .three-cubes .one-third {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hello .three-cubes .one-third .address-holder {
    gap: 30px !important;
  }
  .hello .three-cubes .one-third .cube-container .cube-holder {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .hello .three-cubes .one-third {
    flex-direction: column;
  }
  .hello .three-cubes .one-third .cube-container .cube-holder {
    max-width: 300px;
  }
}

.ink-transition-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.3s ease;
  background: none;
  pointer-events: none;
}

.infinite-integrations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-bottom: 100px;
}
.infinite-integrations h2 {
  white-space: nowrap;
  -webkit-animation: RightToLeft 16s infinite linear;
  animation: RightToLeft 16s infinite linear;
}
.infinite-integrations div {
  white-space: nowrap;
  -webkit-animation: RightToLeftImg 36s infinite linear;
  animation: RightToLeftImg 36s infinite linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 120px;
  width: auto;
}
.infinite-integrations div img {
  max-height: 50px;
  max-width: 150px;
}
.infinite-integrations.left-to-right {
  margin-top: 150px;
}
.infinite-integrations.left-to-right div {
  -webkit-animation: LeftToRightImg 36s infinite linear;
  animation: LeftToRightImg 36s infinite linear;
}

.home-banner-content {
  width: 1300px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.home-banner-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  top: 40px;
  left: 0;
}
.home-banner-content .mobile-placeholder {
  display: none;
}
@media (max-width: 1680px) {
  .home-banner-content {
    width: 1200px;
  }
}
@media (max-width: 1360px) {
  .home-banner-content {
    width: 1000px;
  }
}
@media (max-width: 1080px) {
  .home-banner-content {
    width: 100%;
  }
}
@media (max-width: 800px) {
  .home-banner-content {
    padding-top: 12vh;
  }
  .home-banner-content #background-video, .home-banner-content #splash-text {
    position: static !important;
    margin-bottom: 30px;
  }
  .home-banner-content span {
    display: block;
  }
  .home-banner-content span.mobile-placeholder {
    display: inline-block;
    margin-left: -7px;
  }
  .home-banner-content span.end-of-line {
    position: static !important;
  }
  .home-banner-content h2:not(.swap-holder) {
    max-width: 250px;
  }
}

#splash-text {
  position: absolute;
  bottom: 15px;
  left: 0;
}
#splash-text .swap-holder {
  width: 635px;
  display: inline-block;
  transition: width 0.4s ease;
  position: relative;
}
#splash-text .swap-holder .end-of-line {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 800px) {
  #splash-text .swap-holder .end-of-line {
    position: static !important;
  }
}
#splash-text .text-swap {
  display: none;
}
#splash-text .text-swap:first-child {
  width: 333px;
}
#splash-text .text-swap:nth-child(2) {
  width: 285px;
}
#splash-text .text-swap:nth-child(3) {
  width: 341px;
}
#splash-text .text-swap:nth-child(4) {
  width: 230px;
}
#splash-text .text-swap:last-child {
  width: 284px;
}
#splash-text .text-swap.text-visible {
  display: inline-block;
}
@media (max-width: 1360px) {
  #splash-text .text-swap:first-child {
    width: 310px;
  }
  #splash-text .text-swap:nth-child(2) {
    width: 263px;
  }
  #splash-text .text-swap:nth-child(3) {
    width: 318px;
  }
  #splash-text .text-swap:nth-child(4) {
    width: 207px;
  }
  #splash-text .text-swap:last-child {
    width: 261px;
  }
}

.scroll-holder.col {
  position: absolute;
  right: 2rem;
  bottom: 20px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.scroll-holder.col img {
  width: 23px;
  height: auto;
  animation: bounce 4s infinite 3s;
  -webkit-animation: bounce 4s infinite 3s;
  -moz-animation: bounce 4s infinite 3s;
  -o-animation: bounce 4s infinite 3s;
}

.bottom-page-links {
  background: #1f1f1f;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  width: 100%;
}
.bottom-page-links .container {
  gap: 50px;
}
.bottom-page-links .container > a {
  display: none;
}
.bottom-page-links .container .row {
  width: 50%;
  align-items: center;
  gap: 30px;
}
.bottom-page-links .container .row img {
  width: auto;
  height: auto;
  max-height: 250px;
}
.bottom-page-links .container .row .col {
  gap: 20px;
}
.bottom-page-links .container .row h3 {
  max-width: 300px;
}
@media (max-width: 1200px) {
  .bottom-page-links .container {
    gap: 40px;
  }
  .bottom-page-links .container .row img {
    max-height: 190px;
  }
  .bottom-page-links .container .row h3 {
    font-size: 32px;
  }
}
@media (max-width: 950px) {
  .bottom-page-links .container {
    gap: 30px;
  }
  .bottom-page-links .container .row {
    gap: 20px;
  }
  .bottom-page-links .container .row img {
    max-height: 175px;
  }
  .bottom-page-links .container .row h3 {
    font-size: 28px;
    max-width: 220px;
  }
}
@media (max-width: 780px) {
  .bottom-page-links .container {
    flex-direction: column;
  }
  .bottom-page-links .container .row {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .bottom-page-links .container .row img {
    max-height: 120px;
  }
  .bottom-page-links .container .row h3 {
    font-size: 24px;
  }
  .bottom-page-links .container > a {
    display: block !important;
    margin: 0 auto;
  }
  .bottom-page-links .container .col a {
    display: none;
  }
}

.our-solutions .bottom-page-links {
  background: #000;
}

.contact-banner {
  background: white;
  color: black;
  width: 100%;
  padding: 80px 0;
}
.contact-banner .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 20px !important;
}
.contact-banner .container .col {
  gap: 20px;
}
.contact-banner .container .lh-column a {
  margin-top: 20px;
  padding-left: 8px;
  display: inline-block;
}
.contact-banner .container h2:not(.fs-76) {
  font-size: 160px;
  line-height: 0.7;
  margin-bottom: 20px;
}
@media (max-width: 1360px) {
  .contact-banner .container h2:not(.fs-76) {
    font-size: 120px;
  }
}
@media (max-width: 1360px) {
  .contact-banner .container h2:not(.fs-76) {
    font-size: 120px;
  }
}
@media (max-width: 1060px) {
  .contact-banner .container h2:not(.fs-76) {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .contact-banner .container h2:not(.fs-76) {
    font-size: 56px;
  }
}
.contact-banner .container .divider {
  width: 1px;
  background: black;
  margin: 0 80px 0 120px;
}
@media (max-width: 1360px) {
  .contact-banner .container .divider {
    margin: 0 60px 0 90px;
  }
}
@media (max-width: 960px) {
  .contact-banner .container .divider {
    margin: 0 40px;
  }
}
.contact-banner .container .banner-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-banner .container a img {
  height: 21px;
  display: inline-block;
  margin-right: 10px;
}
.contact-banner .container a span {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.contact-banner .container a span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  height: 1.5px;
  background: black;
  width: 100%;
  transition: left 0.3s ease;
}
.contact-banner .container a:hover {
  text-decoration: none;
}
.contact-banner .container a:hover span::before {
  left: 0;
}
@media (max-width: 800px) {
  .contact-banner {
    padding: 60px 0;
  }
}
@media (max-width: 680px) {
  .contact-banner {
    padding: 40px 0;
  }
  .contact-banner .container {
    flex-direction: column;
  }
  .contact-banner .container .lh-column h2 {
    margin-left: -2px;
  }
  .contact-banner .container .lh-column a {
    padding-left: 0;
  }
  .contact-banner .container .divider {
    width: 100%;
    margin: 20px 0;
    height: 1px;
  }
  .contact-banner .container .banner-links {
    gap: 20px;
  }
}

footer {
  background: black;
  color: white;
  width: 100%;
  padding: 80px 40px;
  display: block;
}
footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
footer .footer-content .footer-lh {
  flex-basis: 450px;
  display: flex;
  flex-direction: row;
}
footer .footer-content .footer-lh .footer-logo {
  width: 105px;
}
footer .footer-content .footer-lh .timezone-social-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  margin-left: 30px;
  border-left: 1px solid #808080;
}
footer .footer-content .footer-lh .timezone-social-col .timezone {
  margin-bottom: 10px;
}
footer .footer-content .footer-rh {
  flex-grow: 2;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 30px;
}
footer .footer-content .footer-rh h4 {
  margin-bottom: 20px;
  color: #9F9F9F;
}
footer .footer-content .footer-rh .footer-site-links {
  padding-left: 30px;
  border-left: 1px solid #808080;
}
footer .footer-content .footer-rh .footer-site-links h4 {
  margin-bottom: 25px;
}
footer .footer-content .footer-rh .footer-site-links > div {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
footer .footer-content .footer-rh .footer-site-links > div .lh-links, footer .footer-content .footer-rh .footer-site-links > div .rh-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .footer-content .footer-rh .footer-site-links > div .lh-links .f-700:not(:first-of-type), footer .footer-content .footer-rh .footer-site-links > div .rh-links .f-700:not(:first-of-type) {
  margin-top: 10px;
}
footer .footer-content .footer-rh .footer-legal-links {
  display: flex;
  flex-direction: column;
  color: white;
  padding-left: 30px;
  border-left: 1px solid #808080;
  gap: 5px;
}
footer .footer-content .footer-rh .footer-legal-links p {
  margin-top: 24px;
}
@media (max-width: 1260px) {
  footer {
    font-size: 14px;
    padding: 40px 20px;
  }
}
@media (max-width: 960px) {
  footer .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  footer .footer-content .footer-lh {
    flex-basis: auto;
    width: 100%;
  }
  footer .footer-content .footer-rh {
    width: 100%;
    justify-content: flex-start;
  }
  footer .footer-content .footer-rh .footer-site-links {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 580px) {
  footer {
    padding: 40px 0;
  }
  footer .footer-content .footer-lh {
    padding: 0 20px;
  }
  footer .footer-content .footer-rh {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-content .footer-rh .footer-site-links {
    border-left: none;
    padding: 20px;
    border-top: 1px solid #808080;
  }
  footer .footer-content .footer-rh .footer-legal-links {
    padding: 20px;
    border-top: 1px solid #808080;
    border-left: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 15;
  display: none;
  justify-content: center;
  align-items: center;
}
.overlay.active {
  display: flex;
}
.overlay.video {
  background: rgba(0, 0, 0, 0.9);
}
.overlay .overlay-close-video {
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 20;
  width: 3%;
  height: 30px;
}
.overlay .overlay-content {
  background: black;
  padding: 2rem;
  border-radius: 0px;
  color: white;
  max-width: 90%;
  width: 1280px;
  position: relative;
  box-sizing: border-box;
}
.overlay .overlay-content h3 {
  font-size: 2.3rem;
  margin: 0 0 1rem;
}
.overlay .overlay-content h3#success-message {
  font-size: 1.8rem;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: 50%;
  transform: translateY(50%);
  max-width: 785px;
}
.overlay .overlay-content > p {
  font-size: 24px;
}
.overlay .overlay-content p {
  margin: 0 0 1rem;
}
.overlay .overlay-content .overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 20;
}
.overlay .overlay-content form label {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
  font-style: normal;
}
.overlay .overlay-content form label span {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
.overlay .overlay-content form p, .overlay .overlay-content form textarea {
  width: 100%;
  margin-bottom: 0;
  box-sizing: border-box;
}
.overlay .overlay-content form .one-half {
  padding-right: 1rem;
  width: 50%;
}
.overlay .overlay-content form .one-half:last-child {
  padding-right: 0;
  padding-left: 1rem;
}
.overlay .overlay-content form .one-half:last-child textarea {
  height: 228px;
}
.overlay .overlay-content form .one-half .flex.row {
  gap: 10px;
}
.overlay .overlay-content form .one-half .flex.row p {
  width: 48%;
  flex-grow: 1;
}
.overlay .overlay-content form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.overlay .overlay-content form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.overlay .overlay-content form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  width: auto;
}
.overlay .overlay-content form .wpcf7-checkbox .wpcf7-list-item label span {
  margin-top: 0;
  margin-left: 10px;
}
.overlay .overlay-content form input, .overlay .overlay-content form textarea {
  padding: 8px;
  font-size: 0.9rem;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border: none;
  font-family: "Inter";
}
.overlay .overlay-content form .final-row input[type=submit] {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  border: 1px solid white;
  width: 90px;
  line-height: 1;
  padding: 14px 0;
  background: black;
  color: white;
  cursor: pointer;
  margin-top: 12px;
}
.overlay .overlay-content form .final-row input[type=submit]:hover {
  background: white;
  color: black;
}
.overlay .overlay-content form .final-row input[type=checkbox] {
  accent-color: #00D098;
}
.overlay .overlay-content form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #FF6C00;
}
.overlay .overlay-content form .wpcf7-not-valid:not(.wpcf7-checkbox) {
  border: 1px solid #FF6C00 !important;
}
.overlay .overlay-content form .wpcf7-response-output {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}
.overlay .overlay-content form.invalid .wpcf7-response-output {
  border: 1px solid #FF6C00 !important;
}
.overlay .overlay-content form.sent .wpcf7-response-output {
  display: none;
}
@media (max-width: 800px) {
  .overlay .overlay-content {
    padding: 1rem;
    max-width: 95vw;
  }
  .overlay .overlay-content form {
    height: 55vh;
    overflow-y: scroll;
  }
  .overlay .overlay-content form textarea {
    height: 100px;
  }
  .overlay .overlay-content form > .flex.row {
    flex-direction: column;
  }
  .overlay .overlay-content form > .flex.row .one-half {
    padding-right: 0 !important;
    width: 100%;
  }
  .overlay .overlay-content form > .flex.row .one-half:last-child {
    padding-left: 0 !important;
  }
}

.bottom-page-links, .contact-banner, footer {
  position: relative;
  z-index: 2;
}

header {
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  background: transparent;
  z-index: 10;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}
header > * {
  pointer-events: auto;
}
header .form-trigger {
  mix-blend-mode: difference;
}
header #logo {
  transition: opacity 0.3s ease;
}
header #logo a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 5px;
}
header #logo a #header-white-logo {
  display: none;
}
header #logo a img {
  height: 50px;
  width: auto;
  padding-bottom: 1.5px;
}
header #logo a img:last-child {
  margin-left: -2px;
}
header #logo a span img {
  height: 52px;
  padding-bottom: 0;
}
header #header-nav-trigger {
  position: relative;
  width: 50px;
  height: 30px;
  margin-left: 103px;
  cursor: pointer;
  z-index: 15;
  background: transparent;
}
header #header-nav-trigger div {
  height: 2px;
  background: #000;
  border-radius: 99px;
  width: 100%;
  transition: all 0.8s cubic-bezier(0.62, 0.04, 0.3, 1.56);
  transition-delay: 100ms;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: difference;
}
header #header-nav-trigger div.top-line {
  top: 0;
  width: 70%;
}
header #header-nav-trigger.expanded div {
  background: white;
  transition: all 0.8s cubic-bezier(0.62, 0.04, 0.3, 1.56);
}
header #header-nav-trigger.expanded div.top-line {
  width: 100%;
  transform: rotate(45deg);
  top: 50%;
}
header #header-nav-trigger.expanded div.bottom-line {
  transform: rotate(-45deg);
  bottom: 50%;
}
header nav {
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: -100%;
  padding-left: 80px;
  padding-top: 15vh;
  width: 40vw;
  min-width: 470px;
  width: 50%;
  height: 100vh;
  transition: all 0.8s ease-in-out;
  z-index: 10;
}
header nav ul {
  list-style: none;
}
header nav ul li {
  color: #9A9A9A;
  font-family: "Tomorrow", sans-serif;
  font-weight: 200;
  font-size: 46px;
  line-height: 1.8;
  text-transform: uppercase;
}
header nav ul li:hover {
  color: #fff;
}
header nav ul li:hover a {
  text-decoration: none;
}
header nav ul li li {
  font-size: 26px;
  line-height: 1;
}
header nav ul.primary-nav-menu {
  list-style: none;
}
header nav ul.primary-nav-menu > li {
  padding-left: 0;
}
header nav ul.primary-nav-menu > li::before {
  display: none;
}
header nav.expanded {
  right: 0;
  transition: all 0.8s ease-in-out;
}
@media (max-width: 800px) {
  header nav {
    width: 100vw;
    right: -125vw;
    min-width: 0px;
    padding-top: 15vh;
  }
  header nav ul {
    padding-left: 0;
  }
  header nav ul li {
    font-size: 2rem;
  }
}
header.dark-bg .form-trigger {
  border-color: white;
  color: white;
  background: black !important;
}
header.dark-bg .form-trigger::after {
  background: white;
}
header.dark-bg .form-trigger:hover {
  color: black;
}
header.dark-bg #logo #header-white-logo {
  display: block;
}
header.dark-bg #logo #header-black-logo {
  display: none;
}
header.dark-bg #header-nav-trigger div {
  background: white;
}
@media (max-width: 1440px) {
  header {
    padding: 0 20px;
  }
}
@media (max-width: 800px) {
  header.collapsed {
    height: 50px;
  }
  header.collapsed button {
    line-height: 30px;
    padding: 0 0.5rem;
  }
  header.collapsed button .hide-mobile {
    display: none;
  }
  header.collapsed #logo a img {
    height: 32px;
  }
  header.collapsed #header-nav-trigger {
    width: 36px;
    height: 20px;
    margin-left: 71px;
  }
}

.home-page header #logo {
  opacity: 0;
}

html {
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100%;
  padding: 60px 0;
}

.mw-1400 {
  max-width: 1400px;
}

.mt-60 {
  margin-top: 60px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .container {
    padding: 40px 20px;
  }
}

.row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.w-1290 {
  max-width: 1290px;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.homepage-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
}
.homepage-section .container {
  align-items: center;
}
.homepage-section .container > div:not(.three-cubes):not(.home-banner-content) {
  width: 50%;
  gap: 30px;
}
.homepage-section .container .w-50.col {
  gap: 30px;
  width: 50%;
  height: 100%;
  justify-content: center;
}
.homepage-section .container.mid-align {
  justify-content: center;
  gap: 30px;
  align-items: flex-start;
}
.homepage-section.contact {
  min-height: 0;
}
.homepage-section.contact .container {
  width: 100%;
}
.homepage-section.contact .container .col {
  gap: 50px !important;
}
.homepage-section.contact .container .col div p:first-child {
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .homepage-section.contact .col {
    z-index: 5;
  }
  .homepage-section.contact .cube-container {
    position: absolute;
    right: 0;
  }
  .homepage-section.contact .cube-container canvas {
    position: absolute;
    right: 0;
  }
}
@media (max-width: 600px) {
  .homepage-section.contact .cube-container {
    display: none;
  }
}
.homepage-section.bg-black {
  min-height: 105vh;
}
.homepage-section#who-we-are .container.mid-align {
  align-items: center;
}
@media (max-width: 800px) {
  .homepage-section .container {
    flex-direction: column;
  }
  .homepage-section .container.reverse-col {
    flex-direction: column-reverse;
  }
  .homepage-section .container > div:not(.three-cubes):not(.home-banner-content), .homepage-section .container .w-50.col {
    width: 100%;
  }
}

.fullscreen-section {
  min-height: 100vh;
  justify-content: center;
}

@media (max-width: 767px) {
  .responsibility .fullscreen-section > .container.row {
    flex-direction: column;
    gap: 30px;
  }
}
.center {
  align-items: center;
}
.center h2, .center p {
  text-align: center;
}

.work-section {
  padding-top: 0;
  padding-bottom: 120px;
}
.work-section .center {
  justify-content: center;
  gap: 30px;
}
.work-section .center h2, .work-section .center p {
  max-width: 1060px;
}

/* PROGRESSIVE THINKING PAGE LAYOUTS*/
.top-split-section {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
.top-split-section .bg-black, .top-split-section .bg-white {
  width: 100%;
  z-index: 1;
  min-height: 100vh;
  padding: 100px 0;
}
.top-split-section .bg-black .container {
  padding-top: 15vh;
}
.top-split-section .bg-black h2, .top-split-section .bg-black h1, .top-split-section .bg-black p {
  background: black;
  width: auto;
  display: inline-block;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}
.top-split-section .bg-black p {
  margin-top: 100px;
}
.top-split-section .bg-white {
  display: flex;
}
.top-split-section .bg-white .container {
  justify-content: center;
}
.top-split-section .bg-white p {
  padding: 0 12px;
  position: relative;
  z-index: 2;
  position: relative;
  max-width: 100%;
  background: white;
}
.top-split-section .bg-white p:first-child {
  width: 495px;
  margin: 0;
}
.top-split-section .bg-white p:nth-child(2) {
  width: 715px;
  margin: 0;
}
.top-split-section .bg-white p:nth-child(3) {
  width: 1145px;
  margin: 40px 0;
}
.top-split-section .cube-holder {
  position: absolute;
  width: 65%;
  right: -5%;
  top: 10%;
  z-index: 0;
}

.what-is {
  overflow-y: hidden;
  padding-top: 80px !important;
}
.what-is h2 {
  margin: 40px 0;
}
.what-is .row {
  margin-top: 80px;
  align-items: flex-start;
  justify-content: space-between;
}
.what-is .row .third-block {
  width: 27%;
  align-items: center;
}
.what-is .row .third-block .col-content {
  max-width: 365px;
  gap: 30px;
  align-items: center;
  width: 100%;
}
.what-is .row .third-block .col-content div p {
  margin-bottom: 0.5rem;
}
.what-is .row .third-block img {
  width: auto;
  max-height: 100px;
}
.what-is .row .third-block .anim {
  width: 100px;
  height: 100px;
}
.what-is .row .third-block .seperator {
  background: white;
  height: 1px;
  width: 100%;
}
.what-is .row .third-block p, .what-is .row .third-block ul {
  width: 100%;
}
.what-is .row .third-block p li::before, .what-is .row .third-block ul li::before {
  font-size: 22px;
}
.what-is .row > p {
  padding-top: 95px;
}
@media (max-width: 768px) {
  .what-is .row {
    flex-direction: column;
    gap: 40px;
  }
  .what-is .row > p {
    display: none;
  }
  .what-is .row .third-block {
    width: 100%;
  }
}
.what-is .fs-96.bg-white {
  text-align: center;
  display: block;
  padding: 100px 0;
}
.what-is .fs-96.bg-white p {
  color: black;
  line-height: 0.8;
  display: inline-block;
  background: white;
  padding: 12px 16px 16px;
}

.lh-fixed-rh-scroll .container {
  height: 100%;
}
.lh-fixed-rh-scroll .container .lh-fixed {
  width: 45%;
  position: sticky;
  top: 0;
  padding-top: 35vh;
}
.lh-fixed-rh-scroll .container .rh-scroll {
  padding-top: 90vh;
  padding-bottom: 35vh;
  width: 55%;
}
.lh-fixed-rh-scroll .container .rh-scroll ul {
  margin: 60px 0 40px;
}
.lh-fixed-rh-scroll .container .rh-scroll ul li {
  margin-bottom: 0.5em;
  padding-left: 30px;
}
.lh-fixed-rh-scroll .container .rh-scroll ul li::before {
  margin-top: -4px;
  font-family: "Tomorrow";
  font-weight: 300;
  font-size: 35px;
}
.lh-fixed-rh-scroll .container .rh-scroll p:last-child {
  margin-top: 20px;
}
.lh-fixed-rh-scroll .container .rh-scroll div.fs-96.f-500 {
  display: inline-block;
  padding: 12px 16px 16px;
  background-color: white;
  color: black;
  margin-top: 40px;
}
.lh-fixed-rh-scroll .container .rh-scroll div.fs-96.f-500 p {
  margin: 0;
  padding: 0;
  line-height: 0.75;
}
.lh-fixed-rh-scroll.bg-black .container .lh-fixed {
  width: 35%;
}
@media (max-width: 1260px) {
  .lh-fixed-rh-scroll.bg-black .container .lh-fixed {
    min-width: 420px;
  }
}
@media (max-width: 1080px) {
  .lh-fixed-rh-scroll.bg-black .container .lh-fixed {
    min-width: 370px;
  }
}
@media (max-width: 800px) {
  .lh-fixed-rh-scroll.bg-black .container .lh-fixed {
    min-width: 290px;
  }
}
.lh-fixed-rh-scroll.bg-black .container .rh-scroll {
  width: 65%;
  padding-bottom: 0;
}
.lh-fixed-rh-scroll.bg-black .container .rh-scroll .fs-36 {
  margin-bottom: 60px;
}
.lh-fixed-rh-scroll.bg-black .container .rh-scroll p {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .lh-fixed-rh-scroll .container {
    flex-direction: column;
  }
  .lh-fixed-rh-scroll .container .lh-fixed, .lh-fixed-rh-scroll .container .rh-scroll {
    width: 100% !important;
  }
  .lh-fixed-rh-scroll .container .lh-fixed {
    padding: 80px 0 20px;
    z-index: 1;
    background: white;
  }
  .lh-fixed-rh-scroll .container .lh-fixed h2 {
    position: static;
  }
  .lh-fixed-rh-scroll .container .rh-scroll {
    padding-top: 40px;
  }
  .lh-fixed-rh-scroll.bg-black .container .lh-fixed {
    background: black;
  }
}

.responsibility-banner {
  height: 400px;
  width: 100%;
  background: black;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.responsibility-banner iframe {
  width: 100%;
  object-position: center;
  z-index: 0;
}
.responsibility-banner .col {
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  gap: 20px;
}
.responsibility-banner .col h2 {
  color: white;
  position: relative;
}
.responsibility-banner .col button {
  color: white;
  border-color: white;
}
.responsibility-banner .col button::after {
  background: white;
}
.responsibility-banner .col button:hover {
  color: black;
  text-decoration: none;
}
@media (max-width: 767px) {
  .responsibility-banner {
    height: 270px;
  }
}

/* responsibility page */
.space-between {
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.un-container {
  margin-top: 100px;
}
@media (max-width: 1150px) {
  .un-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
  }
  .un-container .un-text p {
    width: auto;
  }
}

.un-text {
  gap: 60px;
  align-items: center;
}
.un-text img {
  height: 190px;
}
.un-text .divider {
  width: 1px;
  height: 190px;
  background: white;
}
.un-text p {
  width: 550px;
}

.resp-text {
  max-width: 1080px;
  margin-bottom: 1em;
}

.w-33 {
  width: 33%;
  padding: 0 20px;
}
.w-33 h3 {
  margin-bottom: 1em;
}
.w-33 p {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .w-33 {
    width: 100%;
  }
}

.tree-planting {
  padding: 120px 0;
}
.tree-planting .w-50 {
  width: 50%;
}
.tree-planting .w-50.col {
  gap: 30px;
  padding-right: 30px;
}
@media (max-width: 900px) {
  .tree-planting {
    padding: 80px 0;
  }
  .tree-planting .container {
    flex-direction: column;
    gap: 30px;
  }
  .tree-planting .container .w-50 {
    width: 100%;
  }
  .tree-planting .container .w-50 > div {
    max-width: 700px;
  }
}

/* Our work */
.our-work {
  position: relative;
  padding: 0;
}
.our-work h1 {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 0.75;
  padding: 16px;
}

.work-container {
  padding-top: 150px;
}
.work-container .container {
  gap: 50px;
  margin-bottom: 100px;
}

/* Contact page */
.scrolling-text {
  overflow: hidden;
  width: 100%;
  z-index: 2;
  padding-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scrolling-text h2 {
  white-space: nowrap;
  -webkit-animation: RightToLeft 24s infinite linear;
  animation: RightToLeft 24s infinite linear;
}

.timezone-cubes .one-third .cube-container {
  position: relative;
}
.timezone-cubes .one-third .cube-container.shift-left {
  margin-left: -50px;
}
.timezone-cubes .one-third .timezone {
  background: black;
  color: white;
  padding: 5px 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.timezone-cubes .one-third .address-holder {
  align-items: center;
  gap: 50px;
}
.timezone-cubes .one-third .address-holder .map-link {
  display: inline-block;
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
}

.form-holder form label {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 10px;
  width: 100%;
  display: inline-block;
  font-style: normal;
}
.form-holder form label span {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
}
.form-holder form p, .form-holder form textarea {
  width: 100%;
  margin-bottom: 0;
  box-sizing: border-box;
}
.form-holder form .one-half {
  padding-right: 1rem;
  width: 50%;
}
.form-holder form .one-half:last-child {
  padding-right: 0;
  padding-left: 1rem;
}
.form-holder form .one-half .flex.row {
  gap: 10px;
}
.form-holder form .one-half .flex.row p {
  width: 48%;
  flex-grow: 1;
}
.form-holder form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
}
.form-holder form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.form-holder form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  width: auto;
}
.form-holder form .wpcf7-checkbox .wpcf7-list-item label span {
  margin-top: 0;
  margin-left: 10px;
}
.form-holder form input, .form-holder form textarea {
  padding: 8px;
  font-size: 0.9rem;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border: none;
  font-family: "Inter";
}
.form-holder form .phone-number-row span:first-of-type {
  width: 15%;
}
.form-holder form .phone-number-row span:last-of-type {
  width: calc(85% - 20px);
  margin-left: 20px;
}
.form-holder form .final-row input[type=submit] {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  border: 1px solid white;
  width: 90px;
  line-height: 1;
  padding: 14px 0;
  background: black;
  color: white;
  cursor: pointer;
  margin-top: 12px;
}
.form-holder form .final-row input[type=submit]:hover {
  background: white;
  color: black;
}
.form-holder form .final-row input[type=checkbox] {
  accent-color: #00D098;
}
.form-holder form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #FF6C00;
}
.form-holder form .wpcf7-not-valid:not(.wpcf7-checkbox) {
  border: 1px solid #FF6C00 !important;
}
.form-holder form .wpcf7-response-output {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}
.form-holder form.invalid .wpcf7-response-output {
  border: 1px solid #FF6C00 !important;
}
.form-holder form.sent .wpcf7-response-output {
  display: none;
}
.form-holder.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-holder.contact-page > .col {
  align-items: center;
}
.form-holder.contact-page > .col h2 {
  margin-bottom: 60px;
  text-align: center;
  display: block;
}
.form-holder.contact-page > .col .flex.row {
  gap: 20px;
}
@media (max-width: 550px) {
  .form-holder.contact-page > .col .flex.row {
    gap: 0;
    flex-wrap: wrap;
  }
}
.form-holder.contact-page > .col .final-row.submit p:last-child {
  text-align: center;
}

/**/
.advantage-button {
  padding: 12px 16px 16px;
  width: auto !important;
}
.advantage-button p {
  line-height: 0.75;
  margin: 0;
  padding: 0;
}

/* text / legal pages */
.text-page .container {
  padding: 150px 20px;
}
.text-page .container h1 {
  margin-bottom: 60px;
}
.text-page .container h3 {
  margin: 2rem 0 0.5rem;
}
.text-page .container p, .text-page .container ul {
  margin-bottom: 0.5rem;
}

.news-insights-page .insights-header {
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 15vh 0 40px;
}
.news-insights-page .insights-header .post-filter {
  gap: 30px;
  padding: 30px 0;
}
.news-insights-page .insights-header .post-filter div {
  font-size: 18px;
  font-weight: 700;
  padding: 8px 12px;
  border: 2px solid transparent;
  color: #585858;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}
.news-insights-page .insights-header .post-filter div.active {
  border: 2px solid white;
  color: white;
}
.news-insights-page .row {
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}
.news-insights-page .row .post-tile {
  width: 32.333%;
  gap: 20px;
  padding-bottom: 20px;
}
.news-insights-page .row .post-tile .post-link {
  width: 100%;
  gap: 20px;
  transition: background-color 0.2s linear;
}
.news-insights-page .row .post-tile .post-link:hover {
  text-decoration: none;
}
.news-insights-page .row .post-tile:nth-child(5n+1), .news-insights-page .row .post-tile:nth-child(5n+2) {
  width: 49%;
}
.news-insights-page .row .post-tile:nth-child(5n+1) h3, .news-insights-page .row .post-tile:nth-child(5n+2) h3 {
  font-size: 36px;
}
.news-insights-page .row .post-tile .post-meta {
  text-transform: uppercase;
}
.news-insights-page .row .post-tile .post-image-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.news-insights-page .row .post-tile .post-image-holder img {
  width: 100%;
  transition: transform 0.2s linear;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.news-insights-page .row .post-tile .post-image-holder h4 {
  padding: 6px 12px;
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  color: black;
  text-transform: uppercase;
}
.news-insights-page .row .post-tile:hover .post-link {
  background-color: white;
}
.news-insights-page .row .post-tile:hover .post-link img {
  transform: scale(1.1);
}
.news-insights-page .row .post-tile:hover .post-link h3, .news-insights-page .row .post-tile:hover .post-link .post-meta {
  color: black;
}
@media (max-width: 767px) {
  .news-insights-page .row .post-tile {
    width: 49%;
  }
  .news-insights-page .row .post-tile h3 {
    font-size: 24px;
  }
  .news-insights-page .row .post-tile:nth-child(5n+1) h3, .news-insights-page .row .post-tile:nth-child(5n+2) h3 {
    font-size: 24px;
  }
}
.news-insights-page .load-more-button {
  display: block;
  margin: 40px auto;
}

.post-header {
  padding: 150px 0 50px;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: uppercase;
}
.post-header h4 {
  font-size: 0.7rem;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}
.post-header p {
  color: #9F9F9F;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.post-header .container {
  justify-content: flex-start;
}
.post-header .container .post-header-content {
  padding-right: 30px;
  width: 70%;
}
.post-header .container .post-header-content .mobile {
  display: none;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.post-header .container .sidebar {
  width: 30%;
  position: relative;
}
.post-header .container .sidebar img {
  position: absolute;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.post-header .container .post-author {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  font-size: 18px;
  color: #9F9F9F;
}
@media (max-width: 767px) {
  .post-header {
    padding-top: 60px;
  }
  .post-header .container .post-header-content {
    padding-right: 0;
    width: 100%;
  }
  .post-header .container .post-header-content h1 {
    font-size: 30px;
  }
  .post-header .container .post-header-content .mobile {
    display: block;
    max-width: 500px;
  }
  .post-header .container .post-header-content .post-author {
    font-size: 16px;
  }
  .post-header .container .sidebar {
    display: none;
  }
}

.post-content .content {
  width: 70%;
  padding: 2rem 3rem 4rem 0;
}
.post-content .content h2, .post-content .content h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin: 2rem 0 1rem;
}
.post-content .content h4, .post-content .content h5 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin: 1.5rem 0 0.5rem;
}
.post-content .content b, .post-content .content strong {
  font-weight: 700;
}
.post-content .content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.post-content .content p.has-medium-font-size {
  font-size: 24px !important;
}
.post-content .content ul {
  font-size: 16px;
}
.post-content .content .social h3 {
  font-weight: 200;
  font-size: 26px;
  font-family: "Tomorrow";
}
.post-content .content .social .social-share {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.post-content .content .social .social-share img {
  width: 36px;
  height: auto;
}
.post-content .content .social .social-share img:hover {
  opacity: 0.7;
}
.post-content .sidebar {
  width: 30%;
  padding: 2rem 0 4rem;
  padding-top: 150px;
}
.post-content .sidebar h3 {
  margin: 1rem 0;
}
.post-content .sidebar h3:last-of-type {
  margin-top: 3rem;
}
.post-content .sidebar a.related-posts {
  display: block;
  padding: 1rem;
  border: 1px solid black;
  transition: all 0.25s ease-out;
  margin-bottom: 20px;
}
.post-content .sidebar a.related-posts:hover {
  text-decoration: none;
}
.post-content .sidebar a.related-posts h3 {
  margin: 1rem 0;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 200;
}
.post-content .sidebar a.related-posts:hover {
  background: black;
  color: white;
}
.post-content .sidebar img {
  margin-top: -70%;
}
@media (max-width: 1080px) {
  .post-content .row {
    flex-direction: column !important;
  }
  .post-content .row .content, .post-content .row .sidebar {
    max-width: 100% !important;
    width: 100%;
  }
  .post-content .row .content {
    padding-bottom: 0;
    padding-right: 0;
  }
  .post-content .row .sidebar {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .post-content .sidebar {
    padding-top: 40px;
  }
}

.post-navigation {
  color: white;
  padding: 16px 0;
  font-weight: 700;
}
.post-navigation .container {
  align-items: center;
  justify-content: space-between;
}
.post-navigation .container a:hover {
  text-decoration: none;
}
.post-navigation .container a:hover span {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .post-navigation .container a span {
    max-width: 70px;
    vertical-align: middle;
    display: inline-block;
    margin: 0 5px;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/Inter_18pt-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../../assets/fonts/Inter_18pt-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url("../../assets/fonts/Inter_24pt-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Tomorrow";
  font-style: normal;
  font-weight: 200;
  src: url("../../assets/fonts/Tomorrow-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Tomorrow";
  font-style: normal;
  font-weight: 300;
  src: url("../../assets/fonts/Tomorrow-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Tomorrow";
  font-style: normal;
  font-weight: 500;
  src: url("../../assets/fonts/Tomorrow-Medium.ttf") format("truetype");
}
html {
  font-size: 16px;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  white-space: normal;
  /*  @media (max-width: 600px) {
      font-size: 14px;
    } */
}
html ::selection {
  background: black;
  color: white;
}
html .bg-black ::selection {
  background: white;
  color: black;
}
html li {
  position: relative;
  padding-left: 20px;
}
html li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 300;
  font-family: "Tomorrow";
  content: "›";
  font-size: 20px;
  line-height: 1;
}
html h1 {
  line-height: 1;
}

.tomorrow {
  font-family: "Tomorrow", sans-serif;
  line-height: 1;
}

.f-200 {
  font-weight: 200;
}

.f-300 {
  font-weight: 300;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.f-700, b, strong {
  font-weight: 700;
}

.fs-18 {
  font-size: 18px;
}

.fs-26 {
  font-size: 26px;
}

.fs-36 {
  font-size: 36px;
}

.fs-46 {
  font-size: 46px;
}

.fs-52 {
  font-size: 52px;
}

.fs-76 {
  font-size: 76px;
}

.fs-96 {
  font-size: 96px;
}

.fs-146 {
  font-size: 146px;
}

@media (max-width: 1360px) {
  .fs-36 {
    font-size: 32px;
  }
  .fs-46 {
    font-size: 42px;
  }
  .fs-52 {
    font-size: 46px;
  }
  .fs-76 {
    font-size: 64px;
  }
  .fs-96 {
    font-size: 82px;
  }
  .fs-146 {
    font-size: 110px;
  }
}
@media (max-width: 1080px) {
  .fs-26 {
    font-size: 24px;
  }
  .fs-36 {
    font-size: 28px;
  }
  .fs-46 {
    font-size: 36px;
  }
  .fs-52 {
    font-size: 42px;
  }
  .fs-76 {
    font-size: 54px;
  }
  .fs-96 {
    font-size: 72px;
  }
  .fs-146 {
    font-size: 92px;
  }
}
@media (max-width: 800px) {
  .fs-26 {
    font-size: 20px;
  }
  .fs-36 {
    font-size: 24px;
  }
  .fs-46 {
    font-size: 28px;
  }
  .fs-52 {
    font-size: 36px;
  }
  .fs-76 {
    font-size: 42px;
  }
  .fs-96 {
    font-size: 54px;
  }
  .fs-146 {
    font-size: 72px;
  }
}
@media (max-width: 550px) {
  .fs-26 {
    font-size: 18px;
  }
  .fs-36 {
    font-size: 20px;
  }
  .fs-46 {
    font-size: 24px;
  }
  .fs-52 {
    font-size: 28px;
  }
  .fs-76 {
    font-size: 36px;
  }
  .fs-96 {
    font-size: 42px;
  }
  .fs-146 {
    font-size: 48px;
  }
  .advantage-mobile, .advantage-button {
    font-size: 9vw;
  }
}
p, ul, ol, li {
  line-height: 1.4;
}

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

button {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
}

.split-letter, .lineParent {
  overflow: hidden;
}

/*# sourceMappingURL=main.css.map */
