*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 20px;
}
@media (max-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 800px) or (max-height: 600px) {
  html {
    font-size: 16px;
  }
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "barlow-condensed", arial, sans-serif;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1;
  font-weight: 600;
}

h1 {
  font-size: 7rem;
  font-weight: 600;
}
@media (max-width: 1700px) {
  h1 {
    font-size: 6rem;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin: 0 0 1rem;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

img {
  display: block;
}

#navbar {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.burger-menu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.burger-menu:hover {
  opacity: 0.8;
}
.burger-menu.light .bar {
  background-color: #ffffff;
}
.burger-menu .bar {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #0077BE;
  transition: all 0.3s ease;
}
.burger-menu.open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #ffffff;
}
.burger-menu.open .bar:nth-child(2) {
  opacity: 0;
}
.burger-menu.open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #ffffff;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #0077BE;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
  scrollbar-width: none;
}
.nav-overlay::-webkit-scrollbar {
  display: none;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay .nav-links {
  list-style: none;
  padding: 4rem 0;
  text-align: center;
  width: 90%;
  margin: auto;
}
.nav-overlay .nav-links li {
  margin: 1rem 0;
  padding: 0 0 1rem;
}
.nav-overlay .nav-links li:nth-of-type(-n+3) {
  border-bottom: 2px solid #FFF;
}
.nav-overlay .nav-links li img {
  width: 75%;
  max-width: 200px;
  max-height: 10vh;
  margin: 2rem auto 0;
}
.nav-overlay .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(2rem, 9vh, 5rem);
  font-weight: 600;
  text-transform: uppercase;
}
.nav-overlay .nav-links a:hover {
  opacity: 0.8;
}
@media (max-width: 800px) {
  .nav-overlay .nav-links a {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .nav-overlay .nav-links a {
    font-size: 1.75rem;
  }
}

#hero {
  min-height: 90vh;
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #bfdef1;
}

.spiral-bg {
  position: absolute;
  top: calc(50% - 2.75rem);
  left: 50%;
  width: 275vh;
  height: 275vh;
  background: url(../images/spiral.svg) center no-repeat;
  background-size: cover;
  transform: translate(-50%, -50%);
  animation: spin 10s linear infinite;
  opacity: 0.2;
  z-index: 0;
}
@media (max-width: 800px) {
  .spiral-bg {
    top: calc(50% - 2.75rem);
    width: 150vh;
    height: 150vh;
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes scrollArrow {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(5px);
    opacity: 0;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(-1px, -1px);
  }
  60% {
    transform: translate(1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0);
  }
}
.hero-content {
  text-align: center;
  z-index: 1;
  color: #0077BE;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content h1 {
  margin: 1rem 0 0;
}
.hero-content h1 img {
  display: block;
  max-width: 75%;
  margin: 1rem auto;
}
@media (max-width: 800px) {
  .hero-content h1 img {
    max-width: 90%;
  }
}
.hero-content h1 img.top {
  max-width: 56%;
  margin: 0 auto 1.5%;
}
@media (max-width: 800px) {
  .hero-content h1 img.top {
    max-width: 66%;
  }
}
.hero-content h1 img:not(.top) {
  animation: vibrate 0.2s linear infinite;
}
.hero-content h2 {
  font-weight: 500;
}
.hero-content .scroll-cta {
  display: flex;
  flex-flow: column;
  margin: 4rem auto 2rem;
  font-size: 1rem;
  color: #0077BE;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-content .scroll-cta img {
  height: 0.5rem;
  width: auto;
  margin: 1rem auto 0;
  display: block;
  animation: scrollArrow 2s ease-in-out infinite;
}

#scroll-trigger {
  height: 100vh;
  position: relative;
  margin-top: -10%;
}
@media (max-width: 800px) {
  #scroll-trigger {
    margin-top: -6rem;
  }
}
#scroll-trigger:after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0077BE;
  z-index: 1;
}

.intro-runway {
  position: relative;
  background-color: #0077BE;
}

#intro-woman {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #0077BE;
  width: 100%;
  height: 100vh;
  margin: 0;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 800px) {
  #intro-woman {
    height: calc(100vh + 2rem);
  }
}

.intro-woman-scaler {
  width: 100%;
  height: calc(100% + 2rem);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transform: translateY(-2rem);
}
@media (max-width: 800px) {
  .intro-woman-scaler {
    overflow: hidden;
  }
}
.intro-woman-scaler img {
  display: block;
  width: 90%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 25px;
  transform-origin: center 25%;
  will-change: transform, opacity;
}

#fixed-overlay {
  position: fixed;
  top: 0;
  left: 5%;
  width: 90%;
  height: 100%;
  z-index: 500;
}
@media (max-width: 800px) {
  #fixed-overlay {
    width: 90%;
    left: 5%;
  }
}
#fixed-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.fixed-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fixed-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center top;
  transform-origin: center top;
}
.fixed-container .blue-content img {
  border-radius: 100%;
}

.blue-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transform-origin: center 25%;
  background-color: #0077BE;
}

.blue-inner {
  max-width: 1200px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.blue-inner:after {
  content: "";
  position: absolute;
  width: 105vw;
  padding-bottom: 105vw;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #0077BE;
  border-radius: 100%;
  box-shadow: 0px 0px 100px #0077BE, 0px 0px 50px #0077BE, 0px 0px 10px #0077BE, 0px 0px 100px #0077BE, 0px 0px 50px #0077BE;
}
@media (max-width: 1200px) and (min-height: 600px) {
  .blue-inner:after {
    width: 166vh;
    height: 166vh;
  }
}
@media (max-width: 800px) {
  .blue-inner:after {
    width: 125vh;
    height: 125vh;
  }
}
.blue-inner h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

#blueContent {
  display: none;
}

.content-columns {
  display: flex;
  gap: 40px;
}
.content-columns p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

#what-is {
  background: #0077BE;
  color: #ffffff;
  padding: 4rem 0;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}

.what-is-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  z-index: 2;
}
@media (max-width: 800px) {
  .what-is-wrap {
    flex-flow: column;
  }
}
.what-is-wrap .what-is-image {
  position: relative;
}
@media (min-width: 800px) {
  .what-is-wrap .what-is-image {
    transform: scale(1.2) translateY(5%);
    transform-origin: top left;
  }
}
@media (max-width: 800px) {
  .what-is-wrap .what-is-image {
    transform: scale(1) translateY(0);
    margin-bottom: -4.1rem;
  }
}
.what-is-wrap .what-is-image img {
  width: 100%;
  height: auto;
}
@media (min-width: 800px) {
  .what-is-wrap .what-is-text {
    width: 55%;
  }
  .what-is-wrap .what-is-image {
    width: 45%;
    align-self: flex-end;
  }
}
@media (max-width: 1200px) and (min-width: 800px) {
  .what-is-wrap .what-is-image {
    transform: scale(1.2) translateY(15%);
  }
}

.what-is-text {
  position: relative;
  z-index: 2;
}
.what-is-text h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}
.what-is-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .what-is-text {
    margin-top: 150px;
  }
}

.what-is-inner {
  max-width: 1200px;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.what-is-columns {
  display: flex;
  gap: 40px;
}
.what-is-columns p {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.badge-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  min-width: 150px;
  z-index: 3;
  animation: badgePulse 2s ease-in-out infinite;
  cursor: pointer;
}
.badge-circle:hover {
  animation: none;
  transform: scale(1.1) !important;
}
.badge-circle img {
  width: 100%;
  height: auto;
}

.badge-circle-fixed-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 150px;
  z-index: 999;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.badge-circle-fixed-wrap.visible {
  pointer-events: auto;
  transform: scale(1);
}

.badge-circle-fixed {
  display: block;
  cursor: pointer;
  animation: badgePulse 2s ease-in-out infinite;
}
.badge-circle-fixed:hover {
  animation: none;
  transform: scale(1.1);
}
.badge-circle-fixed img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  border: 4px solid #0077BE;
}

#quiz {
  background: #bfdef1;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.quiz-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz-container .slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}
.quiz-container .slide-in-right {
  animation: slideInRight 0.4s ease forwards;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.quiz-container #quiz-intro {
  max-width: 750px;
  margin: 0 auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.quiz-container #quiz-intro h2 {
  color: #0077BE;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.quiz-container #quiz-intro h2 img {
  max-width: 100%;
  margin: 1rem auto 2rem;
}
.quiz-container #quiz-intro .faces {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.quiz-container #quiz-intro .faces .face {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quiz-container #quiz-intro .faces .face .face-icon {
  width: 80%;
  margin-bottom: 1rem;
}
.quiz-container #quiz-intro .faces .face .face-icon img {
  width: 100%;
  height: auto;
}
.quiz-container #quiz-intro .faces .face span {
  position: relative;
  color: #0077BE;
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 800px) {
  .quiz-container #quiz-intro .faces .face span {
    font-size: 1.5rem;
  }
}
.quiz-container #quiz-intro .faces .face span::before {
  content: "";
  display: block;
  width: 2px;
  height: 2rem;
  background-color: #0077BE;
  top: -2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.quiz-container #quiz-intro .faces .face span::after {
  content: "";
  position: absolute;
  width: 450%;
  height: 2px;
  background-color: #0077BE;
  top: 0;
}
@media (min-width: 1200px) {
  .quiz-container #quiz-intro .faces .face span::after {
    width: 300%;
  }
}
@media (max-width: 800px) {
  .quiz-container #quiz-intro .faces .face span::after {
    width: 200%;
  }
}
.quiz-container #quiz-intro .faces .face:nth-of-type(1) span:after {
  left: 50%;
}
.quiz-container #quiz-intro .faces .face:nth-of-type(2) span:after {
  width: 200%;
  left: -50%;
}
.quiz-container #quiz-intro .faces .face:nth-of-type(3) span:after {
  right: 50%;
}
.quiz-container #quiz-intro .btn-quiz {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 75%;
  max-width: 400px;
  margin-top: 2rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  animation: badgePulse 2s ease-in-out infinite;
}
@media (min-width: 800px) {
  .quiz-container #quiz-intro .btn-quiz:hover {
    animation: none;
    transform: scale(1.05);
  }
}
.quiz-container #quiz-intro .btn-quiz img {
  width: 100%;
  height: auto;
  text-decoration: none;
}
.quiz-container #quiz-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.quiz-container #quiz-questions .question-track {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quiz-container #quiz-questions .question-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.quiz-container #quiz-questions .question-slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}
.quiz-container #quiz-questions .question-slide.slide-in-right {
  transition: none;
  animation: slideInRight 0.4s ease forwards;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.quiz-container #quiz-questions .question-header {
  margin-bottom: 1rem;
}
.quiz-container #quiz-questions .question-header .q-number {
  font-size: 2rem;
  font-weight: bold;
  color: #0077BE;
}
.quiz-container #quiz-questions h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #0077BE;
  text-transform: uppercase;
  margin: 0 auto 3rem;
  max-width: 80%;
  line-height: 1.2;
}
@media (max-width: 800px) {
  .quiz-container #quiz-questions h3 {
    font-size: 1.8rem;
  }
}
.quiz-container #quiz-questions .quiz-options {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .quiz-container #quiz-questions .quiz-options {
    gap: 1rem;
  }
}
.quiz-container #quiz-questions .quiz-options .btn-option {
  background: #ffffff;
  color: #0077BE;
  border: none;
  outline: none;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  width: 50%;
  min-width: 8rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 2px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 800px) {
  .quiz-container #quiz-questions .quiz-options .btn-option {
    min-width: 8rem;
  }
}
.quiz-container #quiz-questions .quiz-options .btn-option img {
  height: 2.5rem;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .quiz-container #quiz-questions .quiz-options .btn-option img {
    height: 2rem;
  }
}
.quiz-container #quiz-questions .quiz-options .btn-option:hover {
  transform: scale(1.1);
}
.quiz-container #quiz-questions .quiz-options .btn-option:active {
  transform: scale(0.98);
}
.quiz-container #quiz-questions .progress-section {
  width: 100%;
  max-width: 500px;
  margin-top: auto;
  padding-top: 2rem;
}
.quiz-container #quiz-questions .progress-section .progress-container {
  width: 100%;
  height: 1rem;
  background-color: #FFF;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}
.quiz-container #quiz-questions .progress-section .progress-container .step-divider {
  position: absolute;
  top: 16.66%;
  width: 2px;
  height: 66%;
  background-color: #0079C1;
  z-index: 2;
  pointer-events: none;
  margin-left: -2px;
}
.quiz-container #quiz-questions .progress-section .progress-container .progress-bar {
  height: 100%;
  width: 0%;
  background-color: #0077BE;
  transition: width 0.3s ease;
  position: relative;
  z-index: 1;
}
.quiz-container #quiz-questions .progress-section .progress-text {
  font-size: 0.9rem;
  color: #0077BE;
  font-weight: 500;
  text-align: left;
}
.quiz-container #quiz-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.quiz-container #quiz-result .result-icon-container {
  width: 6rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.quiz-container #quiz-result .result-icon-container img {
  width: 100%;
  height: auto;
}
.quiz-container #quiz-result h2 {
  color: #0077BE;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.quiz-container #quiz-result h2 img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
@media (max-width: 800px) {
  .quiz-container #quiz-result h2 {
    font-size: 2rem;
  }
}
.quiz-container #quiz-result p {
  color: #0077BE;
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .quiz-container #quiz-result p {
    font-size: 1rem;
  }
}
.quiz-container #quiz-result .btn-result {
  background: #ffffff;
  color: #0077BE;
  text-decoration: none;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1.2rem;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 4px 2px 2px rgba(0, 0, 0, 0.2);
}
.quiz-container #quiz-result .btn-result:hover {
  transform: scale(1.05);
}

#get-rid {
  background: #0077BE;
  color: #ffffff;
  padding: 4rem 0 8rem;
  position: relative;
  z-index: 4;
}

.get-rid-container {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.get-rid-container .image-side {
  flex: 1;
}
.get-rid-container .image-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 25px;
}
.get-rid-container .text-side {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.get-rid-container .text-side h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
@media (min-width: 1200px) {
  .get-rid-container .text-side h2 {
    font-size: 4rem;
  }
}
.get-rid-container .text-side p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .get-rid-container .text-side p {
    font-size: 1rem;
  }
}

#cta-section {
  text-align: center;
  margin: 4rem 0 0;
  position: relative;
  z-index: 4;
}
#cta-section .cta-bar {
  background: #ffffff;
  max-width: 90%;
  color: #0077BE;
  padding: 0.66rem 2rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  display: table;
  margin: 0 auto;
  transition: all 0.2s ease;
}
@media (min-width: 1200px) {
  #cta-section .cta-bar {
    font-size: 2rem;
    padding-top: 0.5rem;
  }
}
#cta-section .cta-bar:hover {
  transform: scale(1.1);
}
#cta-section .cta-bar span, #cta-section .cta-bar img {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
#cta-section .cta-bar img {
  height: 1em;
  width: auto;
  margin: 0.1em 0.25em 0;
}
@media (max-width: 600px) {
  #cta-section .cta-bar img {
    display: block;
    margin: 0.25em auto -0.25em;
  }
}
#cta-section .cta-bar strong {
  font-weight: 900;
}
#cta-section .cta-subtext {
  display: block;
  color: #ffffff;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: underline;
}
#cta-section .cta-subtext:hover {
  opacity: 0.9;
}
#cta-section a {
  text-decoration: none;
}

#reviews {
  background: #bfdef1;
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 4;
}

.reviews-scroll-runway {
  position: relative;
}

.reviews-sticky {
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6rem 0 0;
}
.reviews-sticky::-webkit-scrollbar {
  display: none;
}
@media (max-width: 800px) {
  .reviews-sticky {
    position: relative;
    height: auto;
    padding: 0;
    min-height: unset;
  }
}

@media (max-width: 800px) {
  #reviewsRunway {
    height: auto !important;
  }
}

.reviews-container {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 2rem;
  will-change: transform;
  scrollbar-width: none;
}
@media (max-width: 800px) {
  .reviews-container {
    width: 100%;
    overflow: auto;
    transform: translateX(0) !important;
  }
}
.reviews-container::-webkit-scrollbar {
  display: none;
}

.reviews-header {
  flex-shrink: 0;
  min-width: 50vw;
  max-width: 600px;
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
@media (max-width: 800px) {
  .reviews-header {
    min-width: 30vw;
    padding: 2rem;
  }
}
.reviews-header span {
  margin-right: 0;
  display: flex;
  flex-flow: column;
}
@media (max-width: 800px) {
  .reviews-header span {
    margin-right: 0;
  }
}
.reviews-header h2 {
  color: #0077BE;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  display: table;
}
@media (min-width: 1200px) {
  .reviews-header h2 {
    font-size: 4.5rem;
  }
}
.reviews-header p {
  color: #0077BE;
  font-size: 1rem;
}

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

.reviews-header-mobile {
  display: none;
}
@media (max-width: 800px) {
  .reviews-header-mobile {
    display: block;
    text-align: center;
    padding: 4rem 2rem 1rem;
  }
}
.reviews-header-mobile h2 {
  color: #0077BE;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}
.reviews-header-mobile p {
  color: #0077BE;
  font-size: 1rem;
  margin: 0;
}

.review-card {
  font-family: Arial, sans-serif;
  background: #ffffff;
  width: 20%;
  max-width: 50vw;
  min-width: 250px;
  height: 20rem;
  padding: 0;
  border-radius: 12px;
  flex-shrink: 0;
  margin: 0 1rem 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 800px) {
  .review-card {
    width: 75vw;
    height: 30rem;
  }
}
.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #CCC;
}
.review-card .review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #bfdef1;
  color: #0077BE;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-card .review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.review-card .review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.review-card .review-location {
  font-size: 0.8rem;
  color: #999;
}
.review-card .review-rating, .review-card .review-date, .review-card .review-title, .review-card .review-body {
  padding: 0 1rem;
}
.review-card .review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.review-card .review-stars {
  display: flex;
  gap: 2px;
}
.review-card .review-stars .tp-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 2;
  border-radius: 3px;
}
.review-card .review-stars .tp-star.filled {
  background: #00b67a;
  color: #ffffff;
}
.review-card .review-stars .tp-star.empty {
  background: #dcdce6;
  color: #ffffff;
}
.review-card .review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #00b67a;
  font-size: 0.85rem;
  font-weight: 500;
}
.review-card .review-verified .checkmark {
  font-weight: 700;
}
.review-card .review-title {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.review-card .review-body {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.review-card .review-date {
  font-size: 0.8rem;
  color: #000;
  margin-top: auto;
  align-self: start;
  margin-left: 1rem;
  border-radius: 5px;
  padding: 0.1rem 0.5rem 0.2rem;
  background-color: #E7E7E6;
  margin-bottom: 1rem;
}

.reviews-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 0 6rem;
}

.reviews-arrow {
  background: transparent;
  border: none;
  color: #0077BE;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
  font-family: Arial, sans-serif;
  line-height: 1;
}
@media (min-width: 800px) {
  .reviews-arrow:hover {
    transform: scale(1.2);
  }
}
.reviews-arrow.hidden {
  opacity: 0.3;
  pointer-events: none;
}

.loading, .error {
  padding: 20px;
  color: #666;
}

footer {
  background: #FFF;
  padding: 6rem 2rem;
  color: #0077BE;
  text-align: center;
  position: relative;
  z-index: 4;
}
footer h3 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 800px) {
  footer h3 {
    font-sized: 1.75rem;
  }
}
footer h4, footer p {
  color: #4D4D4F;
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
}
footer h4 {
  font-size: 1.5rem;
  margin: 2rem auto 1rem;
}
footer img {
  display: block;
  width: 75%;
  max-width: 200px;
  margin: 3rem auto 0;
}

@media (max-width: 800px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .what-is-columns, .content-columns {
    flex-direction: column;
  }
  .get-rid-container {
    flex-direction: column-reverse;
  }
  .get-rid-container .text-side {
    padding: 2rem 0;
  }
  .fixed-container {
    left: 0;
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */