.nav {
  position: fixed;
  width: 80px;
  left: 50px;
  text-align: center;
  top: 50px;
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.4);
  z-index: 3;
  padding: 10px;
  backdrop-filter: blur(10px);
  transition: all 600ms ease;
}
.nav.scrolled {
  top: -100px;
}
.nav svg {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 10px;
}
.nav .col-10 {
  padding-left: 0px;
}
.nav .nav-background {
  background-color: #414141;
  border-radius: 6px;
  padding: 18px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
.nav .nav-background ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.nav .nav-background ul li {
  display: inline-block;
  padding-right: 30px;
}
.nav .nav-background ul li:last-child {
  padding-right: 0px;
}
.nav .nav-background ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}

.hero-banner .col-sm-12 {
  padding: 30px;
}
.hero-banner .col-sm-12 .pad-box-grad {
  padding: 0.5px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.hero-banner .col-sm-12 .pad-box-grad .grad-infinite {
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
  height: 160vh;
  width: 100%;
  transform: translate(0);
  position: absolute;
  animation: rotate 30s linear forwards infinite;
  z-index: 0;
  top: 50%;
  transform-origin: top center;
  filter: blur(30px);
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-banner .col-sm-12 .hero-box {
  height: 90vh;
  width: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-banner .col-sm-12 .hero-box h1 {
  font-size: 65px;
  color: #fff;
  font-weight: 300;
  padding-top: 35vh;
}
.hero-banner .col-sm-12 .hero-box .serif {
  font-family: "source-serif-pro", serif;
  font-style: italic;
}
.hero-banner .col-sm-12 .hero-box .background-video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.hero-banner .col-sm-12 .hero-box .background-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: none;
}

.hero-video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.hero-video-foreground {
  height: 100%;
  width: 1000%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-aspect-ratio: 16/9) {
  .hero-video-foreground {
    height: 1000%;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    /* 100 / (16/9) */
  }
}
.hero-video-foreground iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: none;
  pointer-events: none;
}

.hero-poster {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.content-top {
  padding-top: 30px;
  padding-bottom: 30px;
}
.content-top p {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}
.content-top h3 {
  color: #fff;
  font-family: "source-serif-pro", serif;
  font-size: 25px;
  line-height: 45px;
}

.about-us {
  margin-top: 80px;
}
.about-us h3 {
  font-size: 32px;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  color: #fff;
  margin-top: 30px;
}
.about-us p {
  font-size: 22px;
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
}
.about-us .outline-btn {
  overflow: hidden;
  position: relative;
  display: inline-block;
  padding: 0.5px;
  border-radius: 1000px;
  height: 69px;
}
.about-us .outline-btn .outline-content {
  background-color: #1c1c1c;
  color: #fff;
  font-size: 18px;
  padding: 20px 55px 20px 55px;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  z-index: 2;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  display: inline-block;
}
.about-us .outline-btn .outline-move {
  content: "";
  display: block;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
  height: 130px;
  width: 100%;
  transform: translate(0);
  position: absolute;
  animation: rotate 15s linear forwards infinite;
  z-index: 0;
  top: 50%;
  transform-origin: top center;
  filter: blur(30px);
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.text-card {
  height: 384px;
  background-color: #232323;
  border: 1px solid #5b5a5a;
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 10px;
}
.text-card h4 {
  font-size: 22px;
  font-weight: 300;
  color: #fff;
}
.text-card .top-line {
  height: 1px;
  background-color: #5b5a5a;
  display: inline-block;
  width: 120px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.box {
  height: auto;
  padding: 24px;
  padding-bottom: 18px;
  margin-bottom: 12px;
  background-color: #1b1b1b;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.box h3 {
  font-size: 40px;
  font-style: italic;
  color: white;
  opacity: 0.5;
  font-family: "source-serif-pro", serif;
  font-style: italic;
}
.box p {
  color: #aaa;
  font-size: 22px;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 0px !important;
}
.box.highlight {
  border-color: white;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}
.box.highlight p {
  opacity: 1;
}
.box.highlight h3 {
  opacity: 1;
}

.introduction-to-us {
  margin-bottom: 90px;
  margin-top: 90px;
}
.introduction-to-us h2 {
  font-size: 32px;
  color: #fff;
  font-family: "source-serif-pro", serif;
  font-style: italic;
}
.introduction-to-us p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}

.fullscreen-button {
  position: absolute;
  z-index: 1;
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  top: auto !important;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.fullscreen-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.stacking-cards {
  margin-bottom: 90px;
}
.stacking-cards h2 {
  font-size: 32px;
  color: #fff;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 40px;
}
.stacking-cards h3 {
  color: #fff;
  font-family: "source-serif-pro", serif;
  font-style: italic;
}
.stacking-cards p {
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  margin-right: 50px;
}
.stacking-cards .video-block {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.stacking-cards .video-block iframe {
  width: 100%;
}
.stacking-cards .stacking-card {
  display: block;
  min-height: 450px;
  background: #2C2C2C;
  margin-bottom: 50px;
  border: 1px solid #5b5a5a;
  width: 100%;
  padding: 15px;
  position: sticky;
  top: 30px;
  border-radius: 10px;
}
.stacking-cards .stacking-card:nth-child(2) {
  top: 60px;
  background: #393939;
}
.stacking-cards .stacking-card:nth-child(3) {
  top: 90px;
  background: #434343;
}
.stacking-cards .stacking-card:nth-child(4) {
  top: 120px;
  background: #4B4B4B;
}
.stacking-cards .stacking-card:nth-child(5) {
  top: 150px;
  background: #606060;
}
.stacking-cards .stacking-card:nth-child(6) {
  top: 190px;
  background: #6d6d6d;
}
.stacking-cards .stacking-card:nth-child(7) {
  top: 230px;
  background: #787878;
}
.stacking-cards .stacking-card:nth-child(8) {
  top: 200px;
  background: #8d8d8d;
}

.slider-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  will-change: transform;
}
.slider-track .slider-item {
  font-weight: 300;
  height: 70px;
  margin-bottom: 30px;
  background-color: #2C2C2C;
  border: 1px solid #5b5a5a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 10px;
  padding-right: 15px;
}
.slider-track .slider-item .squared {
  background-color: white;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.icon-slider {
  position: relative;
  margin-bottom: 90px;
}
.icon-slider h2 {
  font-size: 32px;
  color: #fff;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 40px;
}
.icon-slider .grad-left {
  position: absolute;
  background: linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgb(28, 28, 28) 100%);
  left: 0;
  height: 100%;
  width: 140px;
  z-index: 10;
}
.icon-slider .grad-right {
  position: absolute;
  background: linear-gradient(90deg, rgba(28, 28, 28, 0) 0%, rgb(28, 28, 28) 100%);
  right: 0;
  height: 100%;
  width: 140px;
  z-index: 10;
}

.your-contacts {
  margin-bottom: 40px;
}
.your-contacts .call-card {
  background-color: #232323;
  border: 1px solid #5b5a5a;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  min-height: 375px;
}
.your-contacts .call-card .icon-top {
  border: 1px solid #5b5a5a;
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.your-contacts .call-card .icon-top i {
  vertical-align: middle;
}
.your-contacts .call-card .contact-bottom {
  margin-top: 150px;
}
.your-contacts .call-card .contact-bottom h3 {
  font-family: "source-serif-pro", serif;
  font-style: italic;
  color: #fff;
}
.your-contacts .call-card .contact-bottom a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.your-contacts .call-card .contact-bottom address {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}
.your-contacts .contacts {
  background-color: #232323;
  border: 1px solid #5b5a5a;
  padding: 25px;
  border-radius: 10px;
}
.your-contacts .contacts h2 {
  font-family: "source-serif-pro", serif;
  font-style: italic;
  color: #fff;
  margin-bottom: 30px;
  margin-top: 10px;
}
.your-contacts .contacts .contact-content {
  padding: 20px;
  padding-top: 25px;
  color: white;
}
.your-contacts .contacts .contact-content h3 {
  font-family: "source-serif-pro", serif;
  font-style: italic;
}
.your-contacts .contacts .contact-content h4 {
  font-weight: 300;
}
.your-contacts .contacts .contact-content a {
  padding-top: 30px;
  font-weight: 300;
  display: block;
  color: #fff;
}
.your-contacts .background-box {
  height: 450px;
  width: 100%;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
}

.logos {
  margin-top: 90px;
  margin-bottom: 190px;
}

.logo-item {
  flex: 0 0 auto;
  max-width: 100px;
  width: 100px;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  max-height: 50px;
  vertical-align: middle;
}
.logo-item:hover {
  opacity: 1;
  filter: none;
}

.slick-track {
  display: flex;
}

.slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

.small-background-video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #5b5a5a;
  margin-bottom: 90px;
  overflow: hidden;
}
.small-background-video iframe {
  pointer-events: none;
}

.quotation p {
  color: #1c1c1c;
}

.quotation ul li {
  font-size: 18px;
}

.proposal-button.scrolled {
  top: -100px;
}

.proposal-button {
  position: fixed;
  width: 180px;
  right: 50px;
  text-align: center;
  top: 50px;
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.4);
  z-index: 3;
  padding: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
  backdrop-filter: blur(10px);
  transition: all 600ms ease;
  color: #fff;
  font-weight: 300;
}

.proposal-button:hover {
  color: #fff;
}

.prev {
  margin-right: 10px;
}

.prev,
.next {
  background-color: rgb(209, 208, 200);
  border: 1px solid rgb(185, 183, 175);
  color: #1c1c1c;
  padding: 16px;
  font-size: 18px;
  border-radius: 10px;
  padding-left: 22px;
  padding-right: 22px;
  margin-top: 20px;
}

.our-process {
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
}

.our-process p {
  color: #1c1c1c;
  font-weight: 300;
  margin-bottom: 0;
}

.our-process h3 {
  margin-bottom: 15px !important;
}

.our-process .stepped-slider {
  padding-top: 40px;
}

/* the slides */
.our-process .slick-slide {
  margin: 0 27px;
}

/* the parent */
.our-process .slick-list {
  margin: 0 -27px;
}

.slide-card {
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  padding: 15px;
  height: 100%;
  min-height: 350px;
  background-color: rgb(209, 208, 200);
  border: 1px solid rgb(185, 183, 175);
  color: #fff;
  font-size: 24px;
  border-radius: 10px;
  width: 100%;
}

.your-proposal {
  background-color: #dad9d3;
  padding-top: 90px;
  margin-bottom: 90px;
  padding-bottom: 90px;
}

.slide-card .numbered {
  border: 1px solid rgb(185, 183, 175);
  width: 60px;
  height: 60px;
  color: #1c1c1c;
  border-radius: 4px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-card .card-content {
  font-family: "source-serif-pro", serif;
  font-style: italic;
  color: #1c1c1c;
}

.larger-h4 {
  font-size: 40px !important;
}

.your-proposal h3 {
  font-size: 32px;
  color: #1c1c1c;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 40px;
}

.your-proposal h4 {
  font-size: 32px;
  color: #1c1c1c;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 10px;
}

.your-proposal .intro-box {
  background-color: rgb(209, 208, 200);
  border: 1px solid rgb(185, 183, 175);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.your-proposal .intro-box p {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 300;
}

.your-goals {
  margin-top: 60px;
}

.your-goals h4 {
  margin-bottom: 30px;
  display: block;
}

.goals-blocks {
  height: 384px;
  background-color: rgb(209, 208, 200);
  border: 1px solid rgb(185, 183, 175);
  margin-bottom: 30px;
  padding: 15px;
  border-radius: 10px;
}

.goals-blocks .top-line {
  height: 1px;
  background-color: rgb(185, 183, 175);
  display: inline-block;
  width: 120px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.goals-blocks h5 {
  font-size: 32px;
  color: #1c1c1c;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 10px;
}

.goals-blocks p {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 300;
}

.expertise {
  margin-top: 60px;
  margin-bottom: 30px;
}

.expertise p {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 300;
}

.expertise-card {
  background-color: rgb(209, 208, 200);
  border: 1px solid rgb(185, 183, 175);
  margin-bottom: 30px;
  padding: 25px;
  border-radius: 10px;
}

.expertise-card h5 {
  font-size: 32px;
  color: #1c1c1c;
  font-family: "source-serif-pro", serif;
  font-style: italic;
  margin-bottom: 10px;
}

.expertise-card p {
  margin-bottom: 0px;
  color: #1c1c1c;
}

.squared.red {
  background-color: #C34D64 !important;
}

.squared.green {
  background-color: #619B80 !important;
}

.squared.purple {
  background-color: #66607F !important;
}

.squared.orange {
  background-color: #DB9A63 !important;
}

.squared.blue {
  background-color: #0E5281 !important;
}

@media only screen and (max-width: 768px) {
  .custom-cursor {
    display: none !important;
  }
  .hero-banner .col-sm-12 {
    padding: 10px;
  }
  .hero-banner .col-sm-12 .hero-box {
    height: 80vh;
    padding: 10px;
  }
  .hero-banner .col-sm-12 .hero-box h1 {
    font-size: 40px;
  }
}
html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

.italic {
  font-style: italic;
}

a {
  border-bottom: none;
  text-decoration: none;
  font-size: 18px;
}

/* NAV -- This is the main styles for the navigation */
.home-nav {
  position: absolute;
  width: 100%;
  padding-top: 15px;
  top: 0;
  z-index: 1;
}
.home-nav ul {
  padding-left: 0px;
}
.home-nav ul li a {
  color: #fff;
  font-size: 16px;
  position: relative;
}
.home-nav ul li a:after {
  height: 2px;
  display: block;
  width: 0%;
  background: #FFAAFF;
  content: "";
  transition: 0.5s;
  position: absolute;
}
.home-nav ul li a:hover:after {
  width: 99%;
  transition: 0.5s;
}
.home-nav ul li a:nth-child(1) {
  margin-right: 20px;
}

.int-nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  padding-top: 25px;
  transition: all 300ms ease;
}
.int-nav.fixed {
  position: fixed !important;
  background-color: #16223B;
  z-index: 100;
  top: -100px;
}
.int-nav.hidden {
  top: 0px;
}
.int-nav .home-menu ul {
  padding-top: 10px;
}
.int-nav .home-menu ul li:nth-child(1) {
  padding-right: 10px;
}
.int-nav .home-menu ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  position: relative;
}
.int-nav .home-menu ul li a:after {
  height: 2px;
  display: block;
  width: 0%;
  background: #FFAAFF;
  content: "";
  transition: 0.5s;
  position: absolute;
}
.int-nav .home-menu ul li a:hover:after {
  width: 99%;
  transition: 0.5s;
}
.int-nav .hero-menu {
  margin-top: -5px;
}
.int-nav .hero-menu ul {
  position: relative;
  z-index: 1;
}
.int-nav .hero-menu ul li:nth-child(1) a {
  background-color: #FFAAFF;
  color: #16223B;
  padding: 15px 25px;
  border-radius: 1000px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  transition: all 300ms ease;
}
.int-nav .hero-menu ul li:nth-child(1) a:hover {
  color: #fff;
  background-color: rgba(255, 170, 255, 0.4588235294);
}
.int-nav .hero-menu ul li:nth-child(2) a {
  background-color: #6FB896;
  color: #16223B;
  padding: 15px 25px;
  border-radius: 1000px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  transition: all 300ms ease;
}
.int-nav .hero-menu ul li:nth-child(2) a:hover {
  color: #fff;
  background-color: rgba(111, 184, 150, 0.4588235294);
}
.int-nav .hero-menu ul li:nth-child(3) a {
  background-color: #6FB8B4;
  color: #16223B;
  padding: 15px 25px;
  border-radius: 1000px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  transition: all 300ms ease;
}
.int-nav .hero-menu ul li:nth-child(3) a:hover {
  color: #fff;
  background-color: rgba(111, 184, 180, 0.4588235294);
}

.mob-nav {
  background-color: #16223B;
  position: fixed;
  top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 100;
}
.mob-nav img {
  width: 120px;
}
.mob-nav .mob-green-btn {
  background-color: #6FB896;
  color: #16223B;
  padding: 15px 25px;
  border-radius: 1000px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  transition: all 300ms ease;
  outline: none;
  border: none;
}
.mob-nav .mob-green-btn i {
  padding-left: 10px;
}

.mob-nav-bar {
  background-color: #16223B;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 105;
  padding-top: 10px;
  right: -1000px;
  transition: all 300ms ease;
}
.mob-nav-bar.visiblebar {
  right: 0;
}
.mob-nav-bar .mob-menu {
  padding-top: 30px;
}
.mob-nav-bar .mob-menu ul li {
  display: block;
  padding-bottom: 10px;
}
.mob-nav-bar .mob-menu ul li a {
  color: #fff;
  font-size: 25px;
}
.mob-nav-bar .mob-green-btn {
  background-color: #6FB896;
  color: #16223B;
  padding: 15px 25px;
  border-radius: 1000px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  transition: all 300ms ease;
  outline: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  .hero-header h1 {
    font-size: 45px;
  }
  .hero-header .hero-menu ul li a {
    margin-top: 20px;
  }
  .stacked-img {
    margin-bottom: 40px;
    padding-right: 20px;
  }
  .pad-left {
    padding-left: 0px !important;
  }
  .hero-header.wcontact .name-input {
    width: 40%;
  }
  .hero-header.wcontact .email-input {
    width: 80%;
  }
  .bullets-content .dbwp-btn {
    margin-bottom: 30px;
  }
  .content_slider .tar {
    text-align: left !important;
  }
  .content_slider .tar .controls-cslider {
    padding-left: 0px;
  }
  footer .thrive-splat {
    bottom: 80px !important;
  }
  footer .thrive-splat img {
    width: 100% !important;
  }
  .middle-content p strong {
    margin-bottom: -15px;
    display: block;
  }
  footer .mailing-list {
    padding-top: 20px !important;
  }
  footer .mailing-list .wpcf7-submit {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .thrive-splat {
    bottom: 0px !important;
  }
}
.ppw-post-password-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ppw-post-password-form {
  background-color: #232323;
  border: 1px solid #5b5a5a;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  max-width: 400px;
}

.ppw-ppf-desc {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.ppw-pwd-label {
  line-height: 0px;
  display: grid;
  color: transparent;
}
.ppw-pwd-label input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.ppw-ppf-field-container {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.ppw-pwd-submit-btn {
  border-radius: 10px;
  background: rgba(13, 13, 13, 0.4);
  z-index: 3;
  padding: 10px;
  backdrop-filter: blur(10px);
  transition: all 600ms ease;
  color: #fff;
  font-weight: 300;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ppw-ppf-error-msg {
  margin-top: 10px;
}

body {
  font-family: "source-sans-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden !important;
  background: #1c1c1c;
  color: #1c1c1c;
  scroll-behavior: smooth;
  text-rendering: optimizelegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  cursor: none; /* Hide native cursor */
}

* {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, transform 0.05s linear;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor .cursor-text {
  color: rgb(0, 0, 0);
  font-size: 18px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 10px;
}
.custom-cursor .cursor-text .serif {
  font-style: italic;
  font-weight: 300;
}

.custom-cursor.text-visible .cursor-text {
  opacity: 1;
}

.custom-cursor.hovered {
  width: 160px;
  height: 70px;
  border-radius: 35px;
}

[x-cloak] {
  display: none !important;
}

.hero-menu ul {
  padding-left: 0px;
}

p {
  color: #16223B;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-rendering: optimizelegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

.pad-left {
  padding-left: 40px;
}

.middle-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.serif {
  font-family: "source-serif-pro", serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.bg-dark {
  background-color: #1c1c1c !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.member-content {
  padding-bottom: 90px;
}

.b2t {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transition: all ease 300ms;
  background: white;
  color: black;
  border: none;
  mix-blend-mode: difference;
  border-radius: 100%;
}
.b2t.display-button {
  opacity: 1;
}

.modal-content {
  background: #1c1c1c;
}

.modal-header h5 {
  color: #fff;
}

.btn-close {
  color: #fff;
}

.modal-header {
  border-bottom: none !important;
}

/* Footer */
/*
.casestudies-block {
	.col-sm-4 {
		img{
	cursor: url(images/cursor.svg), url(images/cursor.svg), auto !important;

}

}
}*/

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