@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.fade-in {
  animation: fade-in 1s cubic-bezier(0, 0, 0.58, 1) both;
}

.fade-up {
  animation: fade-up 1s cubic-bezier(0, 0, 0.58, 1) both;
}

.fade-down {
  animation: fade-down 1s cubic-bezier(0, 0, 0.58, 1) both;
}

.trials-subhead {
  justify-content: center;
}
.trials-subhead h2 {
  font-weight: 500;
  font-size: clamp(1.75rem, 2.75vw, 2.75rem);
  color: #f5911e;
  padding-bottom: 1em;
}

h3 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
}

.trials-wrapper {
  column-gap: 4em;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .trials-wrapper {
    column-gap: 1em;
  }
}
@media (max-width: 800px) {
  .trials-wrapper {
    column-gap: 0;
    flex-direction: column;
  }
}
.trials-wrapper .trial-tile {
  width: 33%;
  height: auto;
  background: #fff;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 800px) {
  .trials-wrapper .trial-tile.trial-tile-body {
    padding-bottom: 0;
  }
}
@media (max-width: 800px) {
  .trials-wrapper .trial-tile {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 1.5em;
  }
}
.trials-wrapper .trial-name {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em 0.25em;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.trials-wrapper .trial-name--fuscha {
  background: #d119c8;
}
.trials-wrapper .trial-name--teal {
  background: #00bbef;
}
.trials-wrapper .trial-desc {
  padding: 1.5em 1.25em;
  display: flex;
  flex-direction: column;
  position: relative;
}
.trials-wrapper .trial-desc p {
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  margin: 0 0 1em;
  line-height: 1.4;
}
.trials-wrapper .trial-logo {
  width: 100%;
  height: 80px;
  margin-inline: auto;
}
.trials-wrapper .trial-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.trials-wrapper hr {
  border: none;
  display: block;
  border-top: 1px solid #babcbe;
  margin-block: 1em 1.5em;
}
.trials-wrapper .trial-tile-bottom {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  padding-bottom: 1.5em;
  padding-inline: 1.25em;
}
@media (max-width: 800px) {
  .trials-wrapper .trial-tile-bottom {
    position: relative;
  }
}
.trials-wrapper .trial-tile-bottom hr {
  margin-top: 1.85em;
}
.trials-wrapper .trial-tile-bottom p {
  margin: 0;
  font-weight: 500;
}
.trials-wrapper .trial-tile-bottom .trial-email {
  text-decoration: none;
  transition: 0.3s filter ease;
}
.trials-wrapper .trial-tile-bottom .trial-email:hover {
  filter: brightness(0.85);
}

.hero {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  padding-block: 2em 6em;
}
@media (max-width: 800px) {
  .hero {
    padding-bottom: 2em;
  }
}
.hero .hero-lifestyle-img {
  width: 100%;
  position: relative;
}
.hero .hero-lifestyle-img img {
  position: absolute;
  right: 0;
  width: 800px;
  top: 10em;
  z-index: 3;
}
@media (max-width: 1680px) {
  .hero .hero-lifestyle-img img {
    width: 600px;
  }
}
@media (max-width: 1360px) {
  .hero .hero-lifestyle-img img {
    width: 500px;
  }
}
@media (max-width: 1190px) {
  .hero .hero-lifestyle-img img {
    width: 400px;
  }
}
@media (max-width: 1024px) {
  .hero .hero-lifestyle-img img {
    width: 350px;
  }
}
@media (max-width: 800px) {
  .hero .hero-lifestyle-img img {
    display: none;
  }
}
.hero .wrapper {
  z-index: 1;
}
.hero .hero-logo {
  justify-content: center;
  padding-block: 0 2em;
}
.hero .hero-logo img {
  width: 180px;
}
@media (max-width: 480px) {
  .hero .hero-logo img {
    width: 120px;
  }
}
.hero .hero-text-wrapper {
  padding-block: 5em;
  color: #fff;
  column-gap: 2em;
}
@media (max-width: 800px) {
  .hero .hero-text-wrapper {
    column-gap: 0;
    flex-direction: column;
    row-gap: 2em;
    padding-block: 1em 2em;
  }
}
.hero .hero-text-wrapper h1 {
  font-weight: 400;
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  line-height: 1;
  white-space: nowrap;
}
.hero .hero-text-wrapper h1:after {
  content: "";
  width: 60%;
  display: block;
  border-bottom: 1px solid #fff;
  margin: 1em auto;
}
@media (max-width: 480px) {
  .hero .hero-text-wrapper h1 {
    font-size: 10vw;
  }
}
.hero .hero-text-wrapper p {
  font-size: clamp(0.9rem, 1.25vw, 1.25rem);
  margin: 0 0 1em;
  line-height: 1.4;
}
.hero .hero-text-wrapper__left {
  width: 50%;
  text-align: center;
}
@media (max-width: 800px) {
  .hero .hero-text-wrapper__left {
    width: 100%;
  }
}
.hero .hero-text-wrapper__right {
  width: 50%;
  display: none;
}
.hero .hero-text-wrapper__right img {
  width: 100%;
}
@media (max-width: 800px) {
  .hero .hero-text-wrapper__right {
    display: block;
    width: 100%;
    padding-inline: 10%;
  }
}
.hero .hero-img-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-img-wrapper img, .hero .hero-img-wrapper video {
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .trials-subhead h2 {
  padding-bottom: 0;
}
@media (max-width: 800px) {
  .hero .trials-subhead {
    display: none;
  }
}
.hero .trial-tile {
  background: none;
  box-shadow: none;
}

.trial-names-hero {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 800px) {
  .trial-names-hero {
    display: none;
  }
}

/* START Cookie consent banner styles */
.termsfeed-com---nb-simple {
  max-width: 100% !important;
  width: 100%;
}

.cc-nb-main-container {
  padding: 15px 20px !important;
}
@media all and (min-width: 801px) {
  .cc-nb-main-container {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}

.cc-nb-okagree, .cc-nb-reject, .cc-cp-foot-save {
  background-color: #00bbef !important;
  font-size: 0.8em !important;
  color: #fff !important;
}
.cc-nb-okagree:focus, .cc-nb-reject:focus, .cc-cp-foot-save:focus {
  box-shadow: 0 0 0 2px #00bbef !important;
}
@media all and (max-width: 600px) {
  .cc-nb-okagree, .cc-nb-reject, .cc-cp-foot-save {
    font-size: 0.7em !important;
  }
}

.cc-cp-foot-byline {
  font-size: 0.7em !important;
}

.cc-pc-head-lang-select {
  font-size: 0.8em !important;
}

.termsfeed-com---pc-dialog .cc-pc-head-title p {
  font-size: 1em !important;
}

.cc-nb-changep {
  font-size: 0.8em !important;
}
.cc-nb-changep:focus {
  box-shadow: 0 0 0 2px #00bbef !important;
}
@media all and (max-width: 600px) {
  .cc-nb-changep {
    font-size: 0.725em !important;
  }
}

.cc-pc-head-lang-select:focus {
  box-shadow: 0 0 0 2px #00bbef !important;
}

.cc-nb-title, .cc-cp-body-content-entry-title {
  display: none;
}

.cc-nb-text, .cc-cp-body-content-entry-text {
  font-size: 0.8em !important;
  line-height: 125% !important;
}
@media all and (max-width: 600px) {
  .cc-nb-text, .cc-cp-body-content-entry-text {
    font-size: 0.75em !important;
  }
}

.cc-nb-text {
  display: none;
}

.cc-nb-text-container::after {
  content: "We use cookies and other tracking technologies to improve your browsing experience on our website, to analyze our website traffic, and to understand where our visitors are coming from.";
  font-size: 0.8em;
  line-height: 125%;
  padding-right: 1em;
  display: block;
}
@media all and (max-width: 800px) {
  .cc-nb-text-container::after {
    font-size: 0.75em;
    padding-right: 0;
    margin-bottom: 1.25em;
  }
}

/* END Cookie consent banner styles */
footer .wrapper {
  justify-content: space-between;
  padding-block: 3em;
  align-items: center;
}
@media (max-width: 800px) {
  footer .wrapper {
    flex-direction: column;
    text-align: center;
    row-gap: 2em;
    padding-top: 0;
  }
  footer .wrapper span {
    display: none;
  }
  footer .wrapper p a {
    display: block;
    margin-top: 1em;
  }
}
footer .wrapper .ftr-logo {
  width: 180px;
}
@media (max-width: 800px) {
  footer .wrapper .ftr-logo {
    width: 120px;
  }
}
footer .wrapper p {
  font-size: clamp(0.85rem, 1vw, 1rem);
}
footer .wrapper p a {
  text-decoration: none;
  transition: 0.3s color ease;
  color: #2300ff;
  font-weight: 500;
}
footer .wrapper p a:hover {
  color: #00bbef;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", serif;
  background: #f0f0f1;
}

.dkblue {
  color: #2300ff;
}

.fuscha {
  color: #d119c8;
}

.teal {
  color: #00bbef;
}

.pill-btn {
  border-radius: 25px;
  color: #fff;
  width: 100%;
  padding-block: 0.5em;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  margin-block: 0.35em;
  background-color: #2300ff;
  text-decoration: none;
  text-align: center;
  transition: filter 0.3s ease;
  display: block;
}
.pill-btn:hover {
  filter: brightness(0.85);
}
.pill-btn.bg-fuscha {
  background-color: #d119c8;
}
.pill-btn.bg-dkblue {
  background-color: #2300ff;
}
.pill-btn.bg-teal {
  background-color: #00bbef;
}

.wrapper {
  position: relative;
  display: flex;
  width: min(1400px, 90%);
  margin-inline: auto;
}
.wrapper.col {
  flex-direction: column;
  gap: 0;
}

section.body-content {
  padding-block: 2em;
}
@media (min-width: 801px) {
  section.body-content {
    padding-top: 0;
  }
  section.body-content .trials-subhead, section.body-content .trial-name {
    display: none;
  }
}
