:root {
  --icl--primary: #002846;
  --icl--secondary: #00b5d3;
  --icl--complementary: #8fe6e5;
  --default--white: white;
  --default--off-white: #f8fafc;
  --default--success: #52c41a;
  --default--error: #ff3d3f;
  --default--dark-grey: #47474e;
  --default--medium-grey: #bfc9d0;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: var(--icl--primary);
  font-family: Inter variablefont, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

h2 {
  text-transform: none;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: Demo, sans-serif;
  font-size: 1.313rem;
  font-weight: 500;
  line-height: 1.625rem;
}

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

a {
  color: var(--icl--secondary);
  font-weight: 700;
  text-decoration: none;
}

ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 40px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: lower-roman;
}

li {
  margin-bottom: .5rem;
  padding-left: .5rem;
}

strong {
  font-weight: bold;
}

.banner-hero {
  height: 94vh;
  background-color: var(--icl--complementary);
  background-image: linear-gradient(to right, #002846, #00b5d3 50%, #8fe6e5);
  margin-top: 70px;
}

.banner-hero__container {
  height: 100%;
  max-width: 1196px;
  flex-direction: row;
  justify-content: space-around;
  display: flex;
  position: relative;
}

.body {
  color: var(--icl--primary);
  font-family: Inter variablefont, sans-serif;
  font-size: 1rem;
  line-height: 1.313rem;
}

.hero__heading {
  max-width: none;
  color: var(--default--white);
  margin-bottom: 1.5rem;
  margin-left: 0;
  margin-right: auto;
  font-family: Demo, sans-serif;
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 5.5rem;
}

.hero__heading.on-white-bg {
  color: var(--icl--primary);
  margin-top: 1rem;
  font-size: 4rem;
  line-height: 4.5rem;
}

.hero__paragraph {
  margin-bottom: 1rem;
  font-family: Demo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
}

.hero-container__text-content {
  z-index: 100;
  max-width: 580px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: 0;
  padding-right: 2rem;
  line-height: 5.5rem;
  display: flex;
  position: relative;
}

.button {
  background-color: var(--icl--primary);
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 50px;
  margin-top: .5rem;
  margin-bottom: 1rem;
  padding: 15px 36px 14px;
  font-family: Demo, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: border-color .24s ease-in, background-color .24s ease-in;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0);
  border-color: #fff;
}

.button:active {
  background-color: var(--icl--primary);
}

.button.cyan {
  background-color: var(--icl--secondary);
}

.button.cyan:hover {
  background-color: rgba(0, 181, 211, 0);
}

.button.cyan-white-bg {
  background-color: var(--icl--secondary);
  text-align: center;
  border-color: rgba(0, 181, 211, 0);
  transition: color .24s ease-in, border-color .24s ease-in, background-color .24s ease-in;
}

.button.cyan-white-bg:hover {
  border-color: var(--icl--secondary);
  color: var(--icl--secondary);
  background-color: rgba(0, 181, 211, 0);
}

.button.cyan-white-bg:active {
  background-color: var(--icl--complementary);
  color: var(--icl--primary);
}

.button.cyan-white-bg.compact {
  padding: 10px 40px 11px;
}

.button.cyan-white-bg.compact.full {
  width: 100%;
}

.button.cyan-white-bg.less-space {
  margin-top: 0;
  margin-bottom: 0;
}

.button.form {
  max-height: 48px;
  min-width: 160px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 9px;
}

.button.cyan-outline {
  border-color: var(--icl--secondary);
  color: var(--icl--secondary);
  text-align: center;
  background-color: rgba(0, 181, 211, 0);
  transition: color .24s ease-in, border-color .24s ease-in, background-color .24s ease-in;
}

.button.cyan-outline:hover {
  border-color: var(--icl--secondary);
  background-color: var(--icl--secondary);
  color: var(--default--white);
}

.button.cyan-outline:active {
  border-color: var(--icl--secondary);
  background-color: var(--icl--complementary);
  color: var(--icl--primary);
}

.button.cyan-outline {
  border-color: var(--icl--secondary);
  color: var(--icl--secondary);
  text-align: center;
  background-color: rgba(0, 181, 211, 0);
  transition: color .24s ease-in, border-color .24s ease-in, background-color .24s ease-in;
}

.button.cyan-outline:hover {
  border-color: var(--icl--secondary);
  background-color: var(--icl--secondary);
  color: var(--default--white);
}

.button.cyan-outline:active {
  border-color: var(--icl--secondary);
  background-color: var(--icl--complementary);
  color: var(--icl--primary);
}

.button.cookies-bar {
  padding-top: 8px;
  padding-bottom: 7px;
  font-weight: 400;
}

.button.cookies-bar:hover {
  border-color: var(--icl--secondary);
  background-color: var(--icl--secondary);
}

.button.cookies-bar.outline {
  border-color: var(--icl--primary);
  color: var(--icl--primary);
  background-color: rgba(0, 0, 0, 0);
  transition: color .24s ease-in, border-color .24s ease-in, background-color .24s ease-in;
}

.button.cookies-bar.outline:hover {
  background-color: var(--icl--primary);
  color: var(--default--white);
}

.button.minimal {
  color: var(--icl--primary);
  background-color: rgba(255, 255, 255, 0);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 36px;
  padding-right: 36px;
  transition: border-color .24s ease-in, background-color .24s ease-in;
}

.button.minimal:hover {
  background-color: #f0f0f0;
}

.hero-container__image-block {
  height: 90vh;
  object-fit: fill;
  position: relative;
}

.banner-hero__bg-image {
  width: 100%;
  height: 100%;
  max-width: 50vw;
  margin-left: auto;
  display: block;
  position: static;
  bottom: auto;
  left: 0;
  overflow: hidden;
}

.bg-image__content {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

.container-horizontal {
  max-width: 1196px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container-horizontal.align-top {
  align-items: flex-start;
}

.clubs-slider__block {
  width: 290px;
  height: 336px;
  background-color: var(--default--white);
  color: var(--icl--primary);
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(183, 183, 183, .24);
}

.clubs-slider__img-container {
  width: 100%;
  height: 132px;
  background-color: var(--default--off-white);
  position: relative;
  overflow: hidden;
}

.clubs-slider__default-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem 3rem;
  position: absolute;
}

.clubs-slider__hover-image {
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  position: absolute;
}

.our-clubs-slider__title {
  max-height: 108px;
  font-family: Demo, sans-serif;
  font-size: 1.313rem;
  font-weight: 500;
  line-height: 1.625rem;
  overflow: hidden;
}

.our-clubs-slider__content {
  height: 204px;
  padding: 1.5rem;
  position: relative;
}

.our-clubs-slider__read-more {
  width: 84%;
  justify-content: space-between;
  display: flex;
  position: absolute;
  bottom: 1.5rem;
}

.read-more__text {
  color: var(--icl--secondary);
  border-bottom: 1px solid rgba(0, 181, 211, 0);
  font-family: Demo, sans-serif;
  font-weight: 500;
  line-height: 1.5rem;
}

.div-block-2 {
  position: absolute;
  right: 0;
}

.clubs-slider__mask {
  width: 290px;
  height: 420px;
  max-width: 880px;
  padding-left: 12px;
  overflow: visible;
}

.clubs-slider__single-slide {
  width: auto;
  margin-top: 1rem;
  margin-left: .75rem;
  margin-right: .75rem;
}

.clubs-slider__element {
  width: 880px;
  height: 400px;
  max-width: 880px;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 1.5rem;
  position: static;
  overflow: visible;
}

.clubs-slider__nav {
  bottom: -12px;
}

.slider-gradient-fade__left {
  z-index: 10;
  width: 80px;
  height: 100%;
  background-image: linear-gradient(to right, #fff, #fff 40%, rgba(255, 255, 255, 0));
  position: absolute;
  left: -4px;
}

.slider-gradient-fade__left.right {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), var(--default--white) 60%, var(--default--white));
  left: auto;
  right: -4px;
}

.clubs-slider-block {
  padding-right: 1rem;
  position: relative;
  overflow: hidden;
}

.left-arrow {
  z-index: 100;
  top: 180px;
  left: -16px;
}

.right-arrow {
  z-index: 100;
  top: 180px;
  right: -16px;
}

.small-heading {
  font-family: Demo, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.688rem;
}

.small-heading.newsletter {
  color: var(--default--white);
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.small-heading.sign-up-banner {
  color: var(--default--white);
}

.small-heading.less-padding {
  margin-top: 1rem;
}

.small-heading.less-padding.lp {
  margin-bottom: 0;
}

.large-subtitle {
  color: var(--icl--secondary);
  margin-bottom: 1rem;
  font-family: Demo, sans-serif;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 3.2rem;
}

.large-subtitle.white {
  color: var(--default--white);
}

.large-subtitle__bold {
  font-weight: 500;
}

.small-content-section {
  max-width: 320px;
  padding-left: 1rem;
}

.section-default-padding {
  padding-top: 2.5rem;
  padding-bottom: 0;
}

.section-default-padding.reverse {
  max-width: 100%;
  overflow: hidden;
}

.section-default-padding.first-section {
  margin-top: 80px;
}

.container-vertical {
  max-width: 1196px;
  flex-direction: column;
  display: flex;
  position: relative;
}

.div-block-4 {
  margin-top: 2rem;
}

.materials-card {
  max-width: 384px;
  background-color: var(--default--white);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  transition: box-shadow .24s ease-in;
  display: flex;
  box-shadow: 0 0 20px rgba(183, 183, 183, .24);
}

.materials-card:hover {
  box-shadow: 0 0 24px 6px rgba(0, 181, 211, .12);
}

.materials-card__icon {
  width: 55px;
  height: 55px;
}

.materials-card__img {
  height: 55px;
  object-fit: contain;
}

.materials-card__title {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-family: Demo, sans-serif;
  font-size: 1.313rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.materials-card__body {
  text-align: center;
  font-size: .938rem;
  line-height: 1.313rem;
}

.slide-nav, .right-arrow-2, .left-arrow-2 {
  display: none;
}

.materials-slider__single {
  width: 384px;
  height: 208px;
  margin-left: 0;
  margin-right: 0;
}

.mask-2 {
  max-height: 1440px;
  max-width: 1196px;
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  overflow: visible;
}

.slider-2 {
  width: auto;
  height: auto;
  max-height: 764px;
  max-width: 1196px;
  background-color: rgba(0, 0, 0, 0);
}

.larger-content-section {
  max-width: 812px;
  padding-left: 1rem;
}

.larger-content-section.white {
  color: var(--default--white);
}

.paragraph__medium {
  margin-bottom: 1rem;
  font-size: 1.313rem;
  line-height: 1.875rem;
}

.sign-up-cta-banner {
  min-height: 400px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  display: flex;
  position: relative;
}

.container-single {
  max-width: 1196px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.safe-width {
  width: 1164px;
}

.medium-content-section {
  max-width: 532px;
  margin-left: 2rem;
  margin-right: auto;
  padding-right: 1rem;
}

.medium-content-section.alternate {
  margin-left: 0;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 0;
}

.questions-section {
  margin-left: -16vw;
}

.questions-section.alternate {
  max-height: 480px;
  margin-left: 0;
  margin-right: -16vw;
}

.newsletter-banner {
  background-color: var(--icl--primary);
  background-image: linear-gradient(to right, #002846, #00b5d3 40%, #8fe6e5);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.newsletter-banner__text-content {
  max-width: 380px;
  margin-left: 0;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.form__item {
  width: 280px;
  position: relative;
}

.questions-section__image {
  aspect-ratio: auto;
  object-fit: contain;
}

.form-item__label {
  z-index: -10;
  opacity: 0;
  position: absolute;
}

.form-item__field {
  min-height: 3rem;
  color: var(--icl--primary);
  border: 2px solid rgba(0, 40, 70, 0);
  border-radius: 6px;
  transition: border-color .24s ease-in, background-color .24s ease-in;
  position: static;
}

.form-item__field:hover {
  background-color: var(--default--off-white);
}

.form-item__field:focus {
  border-color: var(--icl--secondary);
}

.form-item__field::-ms-input-placeholder {
  color: rgba(0, 40, 70, .5);
}

.form-item__field::placeholder {
  color: rgba(0, 40, 70, .5);
}

.form-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.newsletter-form-section {
  margin-right: 1rem;
}

.newsletter-form {
  max-width: 720px;
  margin-bottom: .5rem;
}

.form-success-message {
  max-width: 740px;
  border: 2px solid var(--default--white);
  background-color: var(--default--success);
  border-radius: 10px;
}

.form-message__text {
  color: var(--default--white);
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
}

.form-message-container {
  grid-column-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-message__icon {
  width: 32px;
  object-fit: cover;
}

.form-message__icon.error {
  width: 48px;
}

.form-error-message {
  max-width: 740px;
  border: 2px solid var(--default--white);
  background-color: var(--default--error);
  border-radius: 10px;
}

.paragraph__smallest {
  color: var(--default--white);
  font-size: .688rem;
  line-height: 1rem;
}

.link {
  color: var(--default--white);
  transition: color .24s ease-in;
}

.link:hover {
  color: var(--icl--primary);
}

.medium-subtitle {
  color: var(--default--white);
  margin-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
  font-family: Demo, sans-serif;
  font-size: 1.313rem;
  font-weight: 300;
  line-height: 1.875rem;
}

.footer {
  background-color: var(--default--dark-grey);
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
}

.footer-number__divider {
  width: 2px;
  height: 1rem;
  background-color: var(--default--white);
  border-radius: 4px;
}

.footer-number {
  grid-column-gap: 1rem;
  color: var(--default--white);
  align-items: center;
  font-family: Demo, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  display: flex;
}

.social-icon-block {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  transition: background-color .24s ease-in;
  display: flex;
}

.social-icon-block:hover {
  background-color: var(--icl--secondary);
}

.social-icon-block:active {
  background-color: var(--icl--complementary);
}

.social-icon__img.bigger {
  min-height: 24px;
}

.social-icons-buttons {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

.footer-logo {
  margin-left: -60px;
  padding-left: 0;
}

.footer__copyright {
  grid-column-gap: 1rem;
  margin-right: auto;
  display: flex;
}

.footer-copyright__text {
  color: var(--default--white);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.125rem;
}

.footer__copyright-left {
  grid-column-gap: 1rem;
  margin-left: auto;
  font-family: Demo, sans-serif;
  display: flex;
}

.footer__copyright-link {
  color: var(--default--white);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.125rem;
  text-decoration: none;
  transition: color .24s ease-in;
}

.footer__copyright-link:hover {
  color: var(--icl--complementary);
  text-decoration: underline;
}

.footer__1st-row {
  max-width: 1196px;
  grid-column-gap: 4rem;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1rem;
  padding-left: 1rem;
  display: flex;
  position: relative;
}

.footer__2nd-row {
  max-width: 1196px;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.footer-container {
  max-width: 100%;
  margin-top: 2rem;
  overflow: hidden;
}

.footer-social {
  position: absolute;
  right: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--default--white);
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
}

.submenu-content {
  max-width: 1196px;
  grid-column-gap: 3rem;
  grid-row-gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.submenu__item {
  width: 248px;
  border-bottom: 2px solid var(--icl--secondary);
  color: var(--icl--primary);
  padding-bottom: .75rem;
  text-decoration: none;
}

.submenu__item:hover {
  color: var(--icl--secondary);
}

.submenu__item.mobile {
  width: auto;
  border-bottom-width: 1px;
  font-family: Demo, sans-serif;
}

.header-links {
  font-family: Demo, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  transition: color .24s ease-in;
}

.header-links.sub {
  font-weight: 400;
}

.submenu-section {
  width: 100%;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, .94);
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  display: block;
  position: static;
  top: 0;
  left: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, .05);
}

.dropdown-list {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dropdown-list.w--open {
  z-index: 1000;
  width: 100vw;
  position: absolute;
  top: 83px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.menu-dropdown {
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.dropdown-toggle {
  padding: 30px 1rem;
}

.dropdown-toggle:hover {
  color: var(--icl--secondary);
}

.dropdown-toggle.w--open {
  color: var(--icl--secondary);
  padding-right: 1rem;
}

.menu-item {
  color: var(--icl--primary);
  text-align: center;
  cursor: pointer;
  padding: .5rem 1rem;
  text-decoration: none;
  transition: color .24s ease-in;
}

.menu-item:hover {
  color: var(--icl--secondary);
}

.menu-item.mobile {
  width: 100%;
  border-bottom: 1px solid var(--icl--secondary);
  text-align: left;
  padding: 1rem 0 1.25rem;
}

.menu-item.highlighted {
  color: var(--icl--secondary);
  border-radius: 25px;
  transition: background-color .24s ease-in, color .24s ease-in;
}

.menu-item.highlighted:hover {
  background-color: #e1edf8;
}

.menu-container__links {
  grid-column-gap: .5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: flex;
}

.menu-container {
  width: 100%;
  max-width: 1196px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 1rem 4px;
  display: flex;
}

.logo-menu {
  margin-top: -16px;
}

.logo-menu.mobile {
  max-height: 40px;
  margin-top: 0;
}

.menu-desktop {
  z-index: 1950;
  width: 100%;
  height: 96px;
  background-color: var(--default--white);
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  box-shadow: 6px 0 6px rgba(0, 0, 0, .05);
}

.navbar {
  width: 100%;
  overflow: hidden;
}

.menu-mobile {
  z-index: 1000;
  width: 100%;
  background-color: var(--default--white);
  display: none;
  position: fixed;
  top: 0;
  box-shadow: 0 6px 6px rgba(0, 0, 0, .05);
}

.menu-mobile__content {
  justify-content: space-between;
  margin-left: 2rem;
  margin-right: 2rem;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  display: flex;
}

.mobile-menu__trigger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.breadcrumbs {
  z-index: 100;
  grid-column-gap: .75rem;
  align-items: center;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: absolute;
  top: 1rem;
}

.breadcrumbs.logged-in {
  position: relative;
}

.breadcrumbs.institutional {
  position: static;
}

.breadcrumbs__home {
  color: var(--icl--primary);
  justify-content: center;
  line-height: 1.125rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-underline-center {
  width: 100%;
  height: 1px;
  background-color: var(--icl--primary);
  position: absolute;
  bottom: -2px;
  left: auto;
}

.breadcrumbs__links {
  color: var(--icl--primary);
  font-family: Demo, sans-serif;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.125rem;
  text-decoration: none;
  transition: color .24s ease-in;
}

.breadcrumbs__links:hover {
  color: var(--icl--secondary);
}

.breadcrumbs__links.current-page {
  font-weight: 400;
}

.breadcrumbs__links.white {
  color: var(--default--white);
}

.breadcrumbs__arrow {
  max-height: 12px;
}

.hero-experts-clubs__links {
  grid-column-gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0;
  display: flex;
}

.hero-experts-clubs__image {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
}

.hero-experts-clubs__image-container {
  width: 100%;
  height: 100%;
  max-width: 60vw;
  margin-left: auto;
  display: block;
  position: relative;
  bottom: auto;
  left: 0;
  overflow: hidden;
}

.hero-experts-clubs__image-block {
  height: 100%;
  object-fit: fill;
  position: absolute;
  right: 0;
}

.hero-experts-clubs__container {
  max-width: 550px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  display: flex;
  position: static;
}

.hero-lp-banner {
  width: 100vw;
  height: 90vh;
  max-width: 100%;
  align-items: center;
  margin-top: 90px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-experts-clubs__logo {
  max-width: 380px;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.large-image-absolute {
  width: auto;
  max-width: 48vw;
  object-fit: fill;
  margin-right: auto;
  position: static;
  left: 0;
  right: auto;
}

.default-content-section {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  position: static;
  left: 50vw;
}

._2col-content {
  max-width: 100vw;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.large-image-absolute__content {
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
  overflow: hidden;
}

.large-image-absolute__content.mobile {
  display: none;
}

.sign-up-cta-banner__bg-image {
  z-index: -100;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  overflow: hidden;
}

.hero-experts-clubs_logged-in {
  width: 100%;
  height: 80vh;
  align-items: center;
  margin-top: 90px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-experts-clubs-logged-in__image-block {
  width: 100%;
  height: 80vh;
  max-width: 100vw;
  object-fit: cover;
  overflow: visible;
}

.hero-experts-clubs-logged-in__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 100%;
  margin-left: auto;
}

.hero-experts-clubs-logged-in__container {
  max-width: 550px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  display: block;
  position: absolute;
  top: -60px;
  left: 2rem;
}

.link-underline-center__logged-in {
  width: 100%;
  height: 1px;
  background-color: var(--default--white);
  position: absolute;
  bottom: -2px;
  left: auto;
}

.experts-logged-seminav {
  z-index: 1000;
  background-color: #f3f3f3;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 96px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .05);
}

.text-block {
  color: var(--icl--secondary);
  margin-right: 0;
  font-family: Demo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.experts-logged-seminav__container {
  max-width: 1196px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.seminav__link {
  color: var(--icl--primary);
  flex: none;
  font-family: Demo, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.563rem;
  text-decoration: none;
  transition: color .24s ease-in;
}

.seminav__link:hover {
  color: var(--icl--secondary);
}

.seminav__link-container {
  min-height: 40px;
  grid-column-gap: 3rem;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 300;
  display: flex;
  overflow: auto;
}

.icon-title__img {
  max-height: 55px;
  max-width: 100%;
}

.icon-title {
  grid-column-gap: 2rem;
  align-items: center;
  display: flex;
}

.large-heading-h2 {
  color: var(--icl--secondary);
  margin-top: .75rem;
  margin-bottom: .5rem;
  font-family: Demo, sans-serif;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 3.25rem;
}

.experts-logged-card__title {
  max-height: 52px;
  color: var(--icl--primary);
  margin-top: .25rem;
  margin-bottom: .5rem;
  font-family: Demo, sans-serif;
  font-size: 1.313rem;
  font-weight: 500;
  line-height: 1.625rem;
  text-decoration: none;
  overflow: hidden;
}

.experts-logged-card {
  width: 33%;
  max-width: 380px;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: 10px;
  flex-direction: column;
  padding: 16px;
  transition: background-color .24s ease-in;
  display: flex;
}

.experts-logged-card:hover {
  background-color: var(--default--off-white);
}

.experts-logged-card__text {
  margin-top: auto;
  text-decoration: none;
}

.experts-logged-card__podcast {
  max-height: 120px;
}

.embed-content {
  height: auto;
}

.experts-logged-card__video {
  position: relative;
}

.play-button__icon {
  height: 20px;
  margin-left: 4px;
}

.video-play-button {
  width: 48px;
  height: 48px;
  background-color: var(--default--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transition: background-color .24s ease-in;
  display: flex;
  position: absolute;
  top: 40%;
  bottom: 0%;
  left: 40%;
  right: 40%;
}

.video-play-button:hover {
  background-color: var(--icl--secondary);
}

.video-thumbnail {
  width: 100%;
  height: 196px;
  object-fit: cover;
  border-radius: 9px;
}

.experts-tab__content {
  grid-column-gap: .5rem;
  grid-row-gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.experts-logged__tab-link {
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #000;
  border-bottom: 2px solid rgba(0, 181, 211, 0);
  flex: none;
  padding: 0 4px;
  font-weight: 300;
}

.experts-logged__tab-link.w--current {
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: #00b5d3;
  font-weight: 500;
}

.experts-logged-tab__menu {
  min-height: 40px;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  overflow: auto;
}

.experts-logged-tab {
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.load-more {
  max-width: 800px;
  min-width: 80vw;
  justify-content: center;
  align-items: center;
  margin-top: -.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tab-content__empty {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--default--off-white);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.paragraph__large {
  color: var(--icl--secondary);
  margin-bottom: 1rem;
  font-family: Demo, sans-serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 2.85rem;
}

.icon-64 {
  max-height: 64px;
}

.offset-fix {
  height: 200px;
  margin-top: -196px;
  position: absolute;
}

.offset-fix.smaller {
  margin-top: -100px;
}

.experts-logged-download-card {
  width: 18%;
  max-width: 186px;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: 10px;
  flex-flow: column;
  flex: none;
  transition: background-color .24s ease-in;
  display: flex;
  position: relative;
}

.experts-logged-download-card:hover {
  background-color: var(--default--off-white);
}

.experts-logged-download-card__content {
  width: 100%;
  height: 200px;
  background-image: linear-gradient(45deg, #002745, #357f91 85%, #4192a1 100%, #6ddae0);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.experts-logged-card-download__btn {
  grid-column-gap: 0px;
  display: flex;
}

.download-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.download-card__hover-bg {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 40, 70, .78);
  position: absolute;
}

.download-card__title {
  z-index: 10;
  color: var(--default--white);
  padding-left: .5rem;
  padding-right: .5rem;
  font-family: Demo, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  position: absolute;
  bottom: .75rem;
}

.download-button__img {
  max-height: 18px;
  grid-column-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.download-button__text {
  color: var(--icl--secondary);
  font-family: Demo, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  text-decoration: none;
}

.hero-institutional {
  max-width: 100%;
  min-height: 90vh;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-institutional__image {
  height: 100%;
  object-fit: fill;
  position: absolute;
  left: 0;
}

.hero-institutional__image.fixed {
  z-index: -1;
  position: fixed;
  top: 86px;
}

.hero-institutional__img {
  width: 44vw;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

.hero-institutional__image-container {
  width: 100%;
  height: 90vh;
  max-width: 60vw;
  margin-left: auto;
  display: block;
  position: relative;
  bottom: auto;
  left: 0;
  overflow: hidden;
}

.hero-institutional__content-section {
  max-width: 620px;
  margin-left: 44vw;
  margin-right: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  overflow: hidden;
}

.experts-logged__section-text {
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-long-text {
  max-width: 996px;
  overflow: hidden;
}

.section-long-text {
  padding-top: 1rem;
  padding-bottom: 0;
}

.long-text__paragraph-list {
  margin-bottom: 1.25rem;
  font-family: Inter variablefont, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.long-text__paragraph-list.upper {
  max-width: 280px;
  min-width: 280px;
  text-transform: uppercase;
  flex: none;
  margin-bottom: 0;
  margin-right: 2rem;
  font-family: Demo, sans-serif;
  font-weight: 500;
}

.long-text__large-paragraph {
  color: var(--icl--secondary);
  font-family: Demo, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.long-text__section {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.long-text__box {
  background-color: #f3faff;
  border: 1px solid #d4ecff;
  border-radius: 6px;
  align-items: center;
  margin-bottom: .75rem;
  padding: 1.5rem;
  display: flex;
}

.long-text__paragraph-boxed {
  border-left: 1px solid #d4ecff;
  padding-left: 2rem;
  font-family: Inter variablefont, sans-serif;
  font-size: 1rem;
  line-height: 1.313rem;
}

.long-text__link {
  color: var(--icl--secondary);
  font-weight: 500;
  text-decoration: underline;
}

.rich-text-long-text {
  line-height: 1.625rem;
}

.rich-text-long-text ol {
  list-style-type: lower-roman;
}

.rich-text-long-text h2 {
  text-transform: uppercase;
}

.rich-text-long-text a {
  font-weight: 600;
  text-decoration: underline;
  transition: color .24s ease-in;
}

.rich-text-long-text a:hover {
  color: var(--icl--primary);
}

.long-text__table-title {
  font-family: Demo, sans-serif;
  font-weight: 500;
}

.long-text__grid-table {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f3faff;
  border: 1px solid #d4ecff;
  border-radius: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 2.5fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  display: grid;
  overflow: auto;
}

.long-text__grid-table.alt {
  grid-template-columns: .25fr .5fr 1fr;
}

.long-text__table-content {
  line-height: 1.315rem;
}

.default-form__container {
  width: 100%;
  height: 3.5rem;
  margin-top: .75rem;
  margin-bottom: .75rem;
  position: relative;
}

.default-form__label {
  z-index: 1;
  color: var(--default--dark-grey);
  font-size: .75rem;
  font-weight: 400;
  line-height: 1rem;
  position: absolute;
  top: .35rem;
  left: 1.125rem;
}

.default-form__field {
  width: 100%;
  height: 100%;
  border: 1px solid var(--default--medium-grey);
  background-color: var(--default--white);
  color: var(--icl--primary);
  border-radius: 6px;
  margin-bottom: 0;
  padding: 2rem 1rem 1.15rem;
  font-size: 1rem;
  line-height: 1.125rem;
  transition: background-color .24s ease-in, border-color .24s ease-in;
  position: absolute;
}

.default-form__field:hover {
  background-color: var(--default--off-white);
}

.default-form__field:focus {
  border-color: var(--icl--secondary);
}

.default-form__field::-ms-input-placeholder {
  color: rgba(0, 40, 70, .68);
}

.default-form__field::placeholder {
  color: rgba(0, 40, 70, .68);
}

.default-form__dropdown {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.default-form__dropdown.small {
  width: 32%;
  flex: none;
}

.default-form__dropdown-btn {
  width: 100%;
  height: 3.5rem;
  background-color: var(--default--white);
  color: var(--icl--primary);
  border: 1px solid #bfc9d0;
  border-radius: 6px;
  align-items: center;
  padding: .25rem 1rem;
  font-size: 1rem;
  line-height: 1.125rem;
  transition: background-color .24s ease-in, border-color .24s ease-in;
  display: flex;
  position: relative;
}

.default-form__dropdown-btn:hover {
  background-color: var(--default--off-white);
}

.default-form__dropdown-btn::-ms-input-placeholder {
  color: rgba(0, 40, 70, .68);
}

.default-form__dropdown-btn::placeholder {
  color: rgba(0, 40, 70, .68);
}

.default-form__dropdown-content {
  width: 100%;
  border: 1px solid var(--default--medium-grey);
  background-color: var(--default--white);
  border-radius: 0 0 6px 6px;
  padding-top: .5rem;
  padding-bottom: .75rem;
}

.default-form__checkbox-field {
  background-color: var(--default--white);
  align-items: center;
  margin-bottom: 0;
  padding: .25rem 1rem .5rem;
  display: flex;
}

.default-form__checkbox-field:hover {
  background-color: var(--default--off-white);
}

.default-form__checkbox-field.lp {
  padding-left: 0;
}

.default-form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #eaeaeb;
  border-radius: 2px;
  flex: none;
  margin-left: 0;
  margin-right: .5rem;
  overflow: hidden;
}

.default-form__checkbox:hover {
  border-color: var(--icl--secondary);
  background-color: var(--default--medium-grey);
}

.default-form__checkbox-label {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1.125rem;
}

.drop-down-list__transparent {
  background-color: rgba(0, 0, 0, 0);
}

.drop-down-list__transparent.w--open {
  z-index: 10;
  top: 3.25rem;
}

.default-form__dropdown-arrow {
  position: absolute;
  right: 1rem;
}

.default-form__title {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-family: Demo, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.125rem;
}

.default-form__title.no-space {
  margin-top: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.default-form__container-small {
  width: 32%;
  height: 3.5rem;
  flex: none;
  margin-top: .5rem;
  margin-bottom: .5rem;
  position: relative;
}

.default-form__container-small.select {
  height: 4rem;
}

.link-small {
  color: var(--icl--primary);
  font-family: Inter variablefont, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.313rem;
  text-decoration: underline;
  transition: color .24s ease-in;
}

.link-small:hover {
  color: var(--icl--secondary);
}

.default-form__2-col-div {
  height: 3.5rem;
  grid-column-gap: 1rem;
  align-items: center;
  margin-top: .75rem;
  margin-bottom: .75rem;
  display: flex;
}

.default-form__small-text {
  color: var(--default--dark-grey);
  margin-top: -.25rem;
  font-size: .625rem;
  line-height: .815rem;
}

.default-form__tile-bold {
  font-weight: 500;
}

.default-form__submission-text {
  color: var(--icl--primary);
  font-size: .688rem;
  line-height: 1rem;
}

.link-semi-bold {
  font-weight: 500;
}

.link-semi-bold.alt {
  text-decoration: underline;
  transition: color .24s ease-in;
}

.link-semi-bold.alt:hover {
  color: var(--icl--primary);
}

.form-sign-in-section {
  width: 100%;
  grid-column-gap: 1rem;
  border-top: 1px solid #eaeaeb;
  padding-top: 1.5rem;
  font-size: .875rem;
  line-height: 1.125rem;
  display: flex;
}

.form-sign-in-section.login-modal {
  border: 1px #000;
  padding-top: 0;
  padding-bottom: .5rem;
}

.white-fade-out-bottom {
  width: 100%;
  height: 80px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .86) 55%, #fff);
  margin-bottom: -2rem;
  overflow: hidden;
}

.modal-bg {
  width: 110%;
  height: 110%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, .9);
  margin-top: -5%;
  margin-left: -5%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.modal-login {
  z-index: 5000;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-box {
  z-index: 10;
  width: 384px;
  max-height: 100vh;
  min-height: 434px;
  background-color: var(--default--white);
  border-radius: 14px;
  margin: 1rem;
  position: relative;
  box-shadow: 0 0 20px rgba(37, 56, 123, .1);
}

.modal-login__content {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
  padding-bottom: 1rem;
}

.modal-login__title-section {
  flex-direction: column;
  align-items: center;
  margin-top: 3.5rem;
  padding-bottom: 1rem;
  display: flex;
}

.login-modal__form {
  margin-bottom: 0;
}

.modal__close-btn {
  width: 2rem;
  height: 2rem;
  background-color: var(--default--white);
  cursor: pointer;
  background-image: url('../images/close-icon__blue.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-radius: 2rem;
  transition: background-color .24s ease-in;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
}

.modal__close-btn:hover {
  background-color: var(--icl--primary);
  background-image: url('../images/close-icon__white.svg');
}

.modal__close-btn.inverted {
  background-color: rgba(255, 255, 255, 0);
  background-image: url('../images/close-icon__dark.svg');
  right: 1rem;
}

.modal__close-btn.inverted:hover {
  background-color: var(--icl--primary);
  background-image: url('../images/close-icon__white.svg');
}

.mobile-menu__expanded {
  z-index: -1;
  width: 100vw;
  min-height: 100vh;
  background-color: var(--default--white);
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.menu-dropdown__sublinks {
  grid-row-gap: 1.25rem;
  opacity: 0;
  flex-direction: column;
  margin-bottom: 3rem;
  display: flex;
}

.mobile-menu__content {
  flex-direction: column;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;
  padding-top: 80px;
  display: flex;
}

.menu-dropdown__mobile {
  width: 100%;
  border-bottom: 1px solid var(--icl--secondary);
  padding: 1rem 0 1.25rem;
  display: flex;
}

.mobile-menu__dropdown {
  width: 100%;
  border: 1px #000;
  flex-direction: column;
  padding-bottom: .5rem;
  position: relative;
}

.menu-dropdown__arrow {
  height: 10px;
  max-height: 18px;
  margin-left: auto;
}

.menu-dropdown__list {
  top: 20px;
}

.menu-dropdown__list.w--open {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-mobile__sign-up {
  margin-top: 1.25rem;
  margin-right: auto;
}

.mobile-menu__logged-in {
  margin-bottom: .5rem;
  margin-right: auto;
  display: none;
}

.mobile-menu__lottie {
  height: 40px;
}

.sign-up-banner {
  z-index: 990;
  width: 100vw;
  height: 54px;
  background-color: var(--icl--secondary);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 75px;
  left: 0;
}

._404-page__content {
  width: 100%;
  min-height: 90vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
}

.desktop-menu__logged-out {
  align-items: center;
  display: flex;
}

.desktop-menu__logged-in {
  align-items: center;
  display: none;
}

._404-page__image {
  height: 128px;
  margin-bottom: 1.5rem;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.cookies-modal__container {
  z-index: 10000;
  width: 100%;
  max-width: 1366px;
  min-height: 80px;
  background-color: var(--icl--complementary);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  box-shadow: 0 0 20px rgba(37, 56, 123, .1);
}

.cookies-modal__content {
  width: 100%;
  max-width: 1260px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2rem;
  display: flex;
}

.cookies-modal__text {
  font-size: .875rem;
  line-height: 1.25rem;
}

.cookies-modal__link {
  color: var(--icl--primary);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: underline;
}

.cookies-modal__buttons {
  grid-column-gap: 1rem;
  align-items: center;
  display: flex;
}

.cookies-modal__text-container {
  padding-right: .5rem;
}

.cookies-modal__buttons-group {
  grid-column-gap: 1.25rem;
  display: flex;
}

.modal__close-btn__inverted {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  background-image: url('../images/close-icon__dark.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-radius: 2rem;
  transition: background-color .24s ease-in;
  position: absolute;
  top: 1rem;
  right: 1.75rem;
}

.modal__close-btn__inverted:hover {
  background-color: var(--icl--primary);
  background-image: url('../images/close-icon__white.svg');
}

.modal__close-btn__inverted.inverted {
  background-color: rgba(255, 255, 255, 0);
  background-image: url('../images/close-icon__dark.svg');
  right: 1rem;
}

.modal__close-btn__inverted.inverted:hover {
  background-color: var(--icl--primary);
  background-image: url('../images/close-icon__white.svg');
}

.fixed-buttons {
  z-index: 1001;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
}

.fixed-buttons__scroll-to-top {
  width: 45px;
  height: 45px;
  background-color: var(--icl--secondary);
  cursor: pointer;
  background-image: url('../images/icon_scroll-to-top.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 45px;
  transition: background-color .24s ease-in;
}

.fixed-buttons__scroll-to-top:hover {
  background-color: var(--icl--primary);
}

.fixed-buttons__whatsapp {
  width: 45px;
  height: 45px;
  cursor: pointer;
  background-color: #25d366;
  background-image: url('../images/icon_whatsapp.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 45px;
  transition: background-color .24s ease-in;
}

.fixed-buttons__whatsapp:hover {
  background-color: var(--icl--primary);
}

.slider-gradient-fade__right {
  z-index: 10;
  width: 80px;
  height: 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 60%, #fff);
  position: absolute;
  left: auto;
  right: -4px;
}

.slider-gradient-fade__right.right {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), var(--default--white) 60%, var(--default--white));
  left: auto;
  right: -4px;
}

.cookies-modal {
  z-index: 12000;
  width: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  bottom: 0;
}

.select-field {
  width: 100%;
  height: 100%;
}

.default-form__select {
  width: 100%;
  height: 100%;
  border: 1px solid var(--default--medium-grey);
  background-color: var(--default--white);
  color: var(--icl--primary);
  border-radius: 6px;
  line-height: 1.25rem;
}

.default-form__select-field {
  border-radius: 6px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 2px 8px 6px;
  transition: background-color .24s ease-in;
}

.default-form__select-field:hover {
  background-color: rgba(0, 181, 211, .12);
}

.default-form__select-field:active {
  background-color: rgba(0, 181, 211, .35);
}

.hero-lp-banner__foreground {
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 65vh;
  max-width: 85%;
  object-fit: contain;
  position: absolute;
  top: 12%;
}

.hero-lp-banner__background {
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
  position: relative;
  left: 5rem;
}

.lp-banner__image-container {
  width: 100%;
  height: 100%;
  max-width: 66vw;
  margin-left: auto;
  display: block;
  position: relative;
  bottom: auto;
  left: 5rem;
}

.lp__links {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.lp-tabs__button-text {
  white-space: nowrap;
  word-break: keep-all;
  font-family: Demo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.lp-tabs__button {
  background-color: var(--default--white);
  border: 2px solid rgba(0, 181, 211, 0);
  border-radius: 50px;
  transition: background-color .24s ease-in, color .24s ease-in, border-color .24s ease-in;
}

.lp-tabs__button:hover {
  background-color: var(--default--off-white);
  color: var(--icl--secondary);
}

.lp-tabs__button.w--current {
  border: 2px solid var(--icl--secondary);
  background-color: var(--default--off-white);
  color: var(--icl--secondary);
}

.gimme-space {
  height: 50vh;
}

.lp-product-tabs__menu {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  flex-wrap: nowrap;
  align-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: .5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  overflow: auto;
}

.lp-product-tabs {
  margin-bottom: 2rem;
  padding-top: 6rem;
  position: relative;
}

.lp-tab-single__img {
  width: 100%;
  max-width: 50vw;
  background-image: url('../images/product-bg-shape-full.png');
  background-position: 100%;
  background-size: auto 100%;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.image {
  width: 100%;
  height: 100%;
}

.image-2 {
  position: absolute;
}

.lp-tab-single__img-container {
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
  position: static;
  bottom: 2rem;
  left: 22vw;
}

.lp-tab-single__img-container.alt {
  justify-content: flex-start;
}

.lp-tab-single {
  align-items: stretch;
  display: flex;
}

.lp-tab-single__content {
  max-width: 680px;
  flex-direction: column;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  display: flex;
}

.lp-tab-single__content.alt {
  margin-top: 4rem;
}

.lp-tab-single__product-logo {
  height: 88px;
}

.lp-tab-single__product-title {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
}

.product-name {
  color: var(--icl--secondary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: Demo, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 3.5rem;
}

.product-name.white {
  color: var(--default--white);
}

.trademark {
  font-size: 2.5rem;
  font-weight: 300;
}

.lp-product-tabs__content {
  margin-top: 2.5rem;
}

.lp-tab-single__certif-img {
  height: 80px;
  max-height: 80px;
}

.lp-product__small-heading {
  color: var(--icl--secondary);
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-family: Demo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.688rem;
}

.lp-product__small-heading.newsletter {
  color: var(--default--white);
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.lp-product__small-heading.sign-up-banner {
  color: var(--default--white);
}

.lp-product__small-heading.less-padding {
  margin-top: 1rem;
}

.lp-product__small-heading.produbeef {
  color: #00764c;
}

.paragraph__small {
  margin-bottom: .5rem;
  font-size: 1.2rem;
  line-height: 1.75rem;
  list-style-type: none;
}

.lp-tab-single__content-item {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  display: flex;
}

.list {
  margin-top: 0;
  padding-left: 0;
}

.lp-product-tabs__component {
  flex-direction: column;
  align-items: stretch;
}

.lp-tab-single__product-img {
  height: 100%;
  max-height: 520px;
}

.lp-tab-single__warranty-seals {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.lp-tab-single__warranty-seals.hidden {
  display: none;
}

.lp-tab-single__content-section {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.tab-prev {
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: var(--icl--secondary);
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transition: background-color .18s ease-in;
  display: flex;
  position: static;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.tab-prev:hover {
  background-color: var(--icl--primary);
}

.tab-nav__icon {
  height: 20px;
  margin-left: -2px;
}

.tab-nav__icon.next {
  margin-left: 2px;
}

.tab-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: var(--icl--secondary);
  cursor: pointer;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  transition: background-color .18s ease-in;
  display: flex;
}

.tab-next:hover {
  background-color: var(--icl--primary);
}

.tab-nav-arrows {
  width: 100%;
  max-width: 1360px;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: top .24s ease-out;
  display: flex;
  position: absolute;
  top: 153px;
}

.tab-nav {
  width: 100%;
  justify-content: center;
}

.section-title {
  color: var(--default--medium-grey);
  text-align: center;
  margin-bottom: 1.25rem;
}

.small-heading-faded {
  font-family: Demo, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2rem;
}

.small-heading-faded.newsletter {
  color: var(--default--white);
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 2.5rem;
}

.small-heading-faded.sign-up-banner {
  color: var(--default--white);
}

.small-heading-faded.less-padding {
  margin-top: 1rem;
}

.lp-content__img-container {
  width: 100%;
  height: 100%;
  min-height: 540px;
  background-image: url('../images/Image-Content.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-right: -16vw;
}

.lp-content__img-container.alternate {
  max-height: 480px;
  margin-left: 0;
  margin-right: -16vw;
}

.lp__container-horizontal {
  max-width: 1196px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.lp__container-horizontal.align-top {
  align-items: flex-start;
}

.lp__container-horizontal.align-middle {
  align-items: center;
}

.hero-lp-banner_container {
  max-width: 550px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  display: flex;
  position: static;
}

.hero-lp-banner__img-block {
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  right: 0;
}

.lp-institutional-section {
  padding-top: 6rem;
  padding-bottom: 0;
  overflow: hidden;
}

.lp-institutional-section.reverse {
  max-width: 100%;
  overflow: hidden;
}

.lp-institutional-section.first-section {
  margin-top: 80px;
}

.default-form__multi-selection {
  border: 1px solid var(--default--medium-grey);
  border-radius: 6px;
  margin-bottom: .8rem;
  padding-top: .5rem;
  padding-bottom: 1rem;
}

.lp-form-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 800px;
  background-image: url('../images/form-image.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  margin-right: -16vw;
}

.lp-form-image.alternate {
  max-height: 480px;
  margin-left: 0;
  margin-right: -16vw;
}

.bold {
  font-weight: 500;
}

.contact-content-section {
  max-width: 580px;
  margin-left: 2rem;
  margin-right: auto;
  padding-right: 1rem;
}

.contact-content-section.alternate {
  margin-left: 0;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 0;
}

.lp-main-banner {
  width: 100vw;
  height: 90vh;
  max-width: 100%;
  align-items: center;
  margin-top: 90px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.list-item__paragraph {
  background-image: url('../images/Checkmark.svg');
  background-position: 4px 7px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-attachment: scroll;
  margin-bottom: .5rem;
  padding-left: 36px;
  font-size: 1.2rem;
  line-height: 1.75rem;
  list-style-type: none;
}

.lp-product__description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.lp-product__description p {
  margin-bottom: .5rem;
  line-height: 1.75rem;
}

.lp-product__description ul {
  margin-top: .5rem;
  padding-left: 0;
}

.lp-product__description li {
  background-image: url('../images/Checkmark.svg');
  background-position: 4px 7px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  margin-bottom: .5rem;
  padding-left: 36px;
}

.lp-product__description strong {
  color: var(--icl--secondary);
  font-weight: 700;
}

.lp-tab-single__certif {
  max-width: 460px;
  grid-column-gap: .75rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  display: flex;
}

.lp-tab-single__logo-img {
  max-height: 48px;
}

.lp-tab-single__logo-img.pro-fertility {
  max-height: 88px;
}

.lp-tab-single__logo-img.maxxi {
  max-height: 92px;
}

.lp-tab-single__logo-img.producote {
  max-height: 88px;
}

@media screen and (min-width: 1280px) {
  .hero-container__image-block {
    left: -20vh;
  }

  .small-heading, .medium-subtitle {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__1st-row {
    padding-left: 0;
  }

  .footer__2nd-row {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-experts-clubs__container {
    width: 1196px;
    max-width: 1196px;
  }

  .hero-lp-banner {
    justify-content: center;
  }

  .hero-experts-clubs__content {
    max-width: 580px;
  }

  .default-content-section {
    margin-left: -2vw;
  }

  .hero-experts-clubs_logged-in {
    justify-content: center;
  }

  .hero-experts-clubs-logged-in__container {
    width: 1196px;
    max-width: 1196px;
    left: auto;
  }

  .experts-logged-seminav__container, .seminav__link-container, .icon-title {
    padding-left: 0;
    padding-right: 0;
  }

  .experts-tab__content {
    grid-column-gap: 1rem;
  }

  .experts-logged-tab {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-institutional {
    justify-content: center;
  }

  .hero-institutional__content-section {
    padding-left: 0;
    padding-right: 0;
  }

  .white-fade-out-bottom {
    overflow: hidden;
  }

  .cookies-modal__content {
    max-width: 1360px;
    position: relative;
  }

  .modal__close-btn__inverted {
    right: -1rem;
  }

  .lp-product__small-heading, .small-heading-faded {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-lp-banner_container {
    width: 1196px;
    max-width: 1196px;
  }

  .hero-lp-banner__content {
    max-width: 580px;
  }

  .lp-main-banner {
    justify-content: center;
  }
}

@media screen and (min-width: 1440px) {
  .hero-lp-banner__background {
    width: 100%;
    object-position: 0% 100%;
    right: 0;
  }

  .lp-tab-single__img {
    max-width: 44vw;
  }

  .tab-nav-arrows {
    top: 52%;
  }
}

@media screen and (min-width: 1920px) {
  .banner-hero {
    position: relative;
  }

  .hero-container__text-content {
    width: 580px;
    margin-top: 30vh;
    margin-left: 60vw;
    position: absolute;
  }

  .hero-container__image-block {
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .banner-hero__bg-image {
    max-width: 50vw;
    position: absolute;
    right: auto;
  }

  .questions-section {
    margin-left: -200px;
  }

  .footer-container {
    z-index: 10;
    position: relative;
  }

  .hero-experts-clubs__image-container {
    max-width: 60vw;
  }

  .hero-experts-clubs__container {
    align-items: flex-start;
  }

  .hero-lp-banner {
    justify-content: center;
  }

  .hero-experts-clubs__content {
    margin-right: auto;
    position: static;
  }

  .large-image-absolute {
    max-width: 38vw;
    margin-right: 16vw;
  }

  .default-content-section {
    margin-left: -6vw;
  }

  .large-image-absolute__content {
    object-fit: cover;
  }

  .hero-experts-clubs_logged-in {
    height: 82vh;
    justify-content: center;
  }

  .hero-experts-clubs-logged-in__image-block {
    height: 82vh;
  }

  .hero-experts-clubs-logged-in__container {
    align-items: flex-start;
    margin-right: auto;
    overflow: hidden;
  }

  .experts-logged-card {
    width: 33%;
  }

  .hero-institutional {
    justify-content: center;
  }

  .hero-institutional__image.fixed {
    overflow: hidden;
  }

  .hero-institutional__image-container {
    max-width: 60vw;
  }

  .hero-institutional__content-section {
    max-width: 600px;
    margin-top: 2rem;
    margin-left: 24vw;
    overflow: hidden;
  }

  .white-fade-out-bottom {
    height: 120px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .79) 49%, var(--default--white));
    margin-bottom: -2rem;
    padding-bottom: 0;
    overflow: hidden;
  }

  .cookies-modal {
    width: 100vw;
  }

  .hero-lp-banner__background {
    width: 100%;
    object-fit: cover;
    object-position: 0% 100%;
    right: 0;
  }

  .lp-banner__image-container {
    max-width: 66vw;
    left: 2rem;
  }

  .tab-nav-arrows {
    align-items: center;
  }

  .hero-lp-banner_container {
    align-items: flex-start;
  }

  .hero-lp-banner__content {
    margin-right: auto;
    position: static;
  }

  .hero-lp-banner__img-block {
    width: 100vw;
    margin-left: auto;
  }

  .lp-institutional-section {
    width: 100%;
    overflow: hidden;
  }

  .lp-form-image {
    margin-right: -24vw;
  }

  .lp-main-banner {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .banner-hero {
    height: auto;
    min-height: 90vh;
    background-image: linear-gradient(to top, #8fe6e5, #00b5d3 50%, #002846);
  }

  .banner-hero__container {
    flex-direction: column;
  }

  .hero__heading.on-white-bg {
    text-align: center;
    margin-bottom: 1rem;
    margin-left: auto;
  }

  .hero-container__text-content {
    max-width: none;
    align-items: center;
    margin-right: auto;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .button.cookies-bar {
    width: 50%;
    text-align: center;
  }

  .hero-container__image-block {
    display: block;
    position: relative;
    left: 0;
    overflow: hidden;
  }

  .banner-hero__bg-image {
    max-width: none;
    position: static;
    left: 0;
  }

  .bg-image__content {
    padding-right: 2rem;
  }

  .container-horizontal {
    flex-direction: column;
    overflow: hidden;
  }

  .container-horizontal.reverse {
    flex-direction: column-reverse;
  }

  .clubs-slider__mask {
    height: 400px;
  }

  .clubs-slider__element {
    width: 100vw;
    overflow: hidden;
  }

  .slider-gradient-fade__left, .slider-gradient-fade__left.right {
    display: none;
  }

  .clubs-slider-block {
    margin-top: .25rem;
    padding-right: 0;
  }

  .small-heading {
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .small-heading.newsletter {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .small-heading.modal {
    margin-left: auto;
    padding-left: 0;
  }

  .large-subtitle {
    margin-right: auto;
  }

  .small-content-section {
    max-width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-default-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-default-padding.first-section.institutional, .slider-nav__icon {
    display: none;
  }

  .container-vertical {
    max-width: 100vw;
    overflow: hidden;
  }

  .materials-card {
    height: 228px;
    max-width: 360px;
  }

  .materials-slider__single {
    width: 360px;
    height: 230px;
  }

  .larger-content-section {
    max-width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sign-up-cta-banner {
    min-height: 480px;
  }

  .container-single {
    flex-direction: column;
  }

  .safe-width {
    width: 100vw;
  }

  .medium-content-section {
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .questions-section {
    max-height: 420px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .questions-section.alternate {
    margin-left: -16vw;
    margin-right: 0;
  }

  .newsletter-banner {
    background-image: linear-gradient(45deg, #002846, #00b5d3 40%, #8fe6e5);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .newsletter-banner__text-content {
    max-width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .questions-section__image {
    object-fit: scale-down;
  }

  .newsletter-form, .newsletter-privacy {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .medium-subtitle {
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-number {
    order: 1;
  }

  .footer-logo {
    width: 73%;
    margin-left: 0;
  }

  .footer__copyright {
    margin-left: 0;
    padding-left: 0;
  }

  .footer__copyright-left {
    margin-bottom: 1rem;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
  }

  .footer__1st-row {
    grid-column-gap: 0rem;
    grid-row-gap: .5rem;
    flex-flow: column wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    overflow: hidden;
  }

  .footer__2nd-row {
    flex-direction: column-reverse;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-social {
    margin-top: .5rem;
    margin-left: 0;
    position: absolute;
    top: 0;
    right: 2rem;
  }

  .footer-divider {
    width: 92%;
  }

  .submenu-content {
    justify-content: space-around;
    align-items: stretch;
  }

  .menu__logo.mobile {
    margin-left: auto;
    margin-right: auto;
    padding-right: 40px;
  }

  .logo-menu.mobile {
    margin-left: 0;
  }

  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    min-height: 76px;
    display: block;
  }

  .breadcrumbs {
    display: none;
  }

  .hero-experts-clubs__links {
    margin-top: -1rem;
  }

  .hero-experts-clubs__image {
    width: 100%;
    height: auto;
    padding-left: 2rem;
  }

  .hero-experts-clubs__image-container {
    max-width: none;
    position: static;
    left: 0;
  }

  .hero-experts-clubs__image-block {
    width: 100vw;
    height: auto;
    display: block;
    position: relative;
    left: 0;
    overflow: visible;
  }

  .hero-experts-clubs__container {
    max-width: 100vw;
    flex-direction: column;
    padding: 2rem 2rem 3rem;
  }

  .hero-lp-banner {
    height: auto;
    flex-direction: column;
    margin-top: 32px;
  }

  .hero-experts-clubs__content {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .large-image-absolute {
    width: 100vw;
    height: auto;
    max-width: 80vw;
    margin-right: auto;
    display: block;
    position: relative;
    left: 0;
    overflow: visible;
  }

  .default-content-section {
    max-width: 100vw;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  ._2col-content {
    flex-direction: column-reverse;
  }

  .large-image-absolute__content {
    width: 100%;
    height: auto;
    padding-left: 0;
    display: none;
  }

  .large-image-absolute__content.mobile {
    display: block;
  }

  .hero-experts-clubs_logged-in {
    height: auto;
    flex-direction: column;
    margin-top: 32px;
  }

  .hero-experts-clubs-logged-in__image-block {
    height: auto;
  }

  .hero-experts-clubs-logged-in__container {
    max-width: 100vw;
    flex-direction: column;
    padding: 2rem 2rem 3rem;
  }

  .experts-logged-seminav {
    z-index: 990;
    top: 76px;
  }

  .experts-logged-seminav__container {
    max-width: none;
    flex-direction: row;
    overflow: hidden;
  }

  .icon-title {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .experts-logged-card {
    width: auto;
    max-width: 44vw;
  }

  .experts-tab__content {
    grid-column-gap: 1rem;
    flex-flow: wrap;
  }

  .experts-logged-tab__menu {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .experts-logged-tab {
    padding-left: 0;
    padding-right: 0;
  }

  .experts-logged-tab___content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .paragraph__large {
    margin-right: auto;
  }

  .offset-fix.smaller {
    margin-top: -128px;
  }

  .experts-logged-download-card {
    width: auto;
    max-width: 160px;
    min-width: 160px;
  }

  .experts-logged-download-card__content, .experts-logged-card-download__btn {
    flex: none;
  }

  .download-card__title {
    font-size: .875rem;
    line-height: 1.275rem;
  }

  .hero-institutional {
    height: auto;
    min-height: 0;
    flex-direction: column;
    margin-top: 76px;
  }

  .hero-institutional__image {
    width: 100vw;
    height: auto;
    display: block;
    position: relative;
    left: 0;
    overflow: visible;
  }

  .hero-institutional__image.fixed {
    width: 90vw;
    margin-top: 48px;
    margin-right: auto;
    position: static;
    top: 40px;
    left: auto;
    right: 0;
  }

  .hero-institutional__img {
    width: 100%;
    height: auto;
    padding-left: 0;
    padding-right: 2rem;
  }

  .hero-institutional__image-container {
    height: auto;
    max-width: none;
    position: static;
    left: 0;
  }

  .hero-institutional__content-section {
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-left: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .container-long-text {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-long-text {
    margin-top: 64px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .long-text__paragraph-list.upper {
    max-width: 200px;
    min-width: 200px;
  }

  .modal__close-btn.inverted {
    top: .75rem;
  }

  .mobile-menu__expanded {
    z-index: -1;
    opacity: 0;
    display: none;
  }

  .menu-dropdown__arrow {
    max-width: none;
  }

  .mobile-menu__logged-in {
    color: var(--icl--secondary);
  }

  .sign-up-banner {
    display: flex;
  }

  .cookies-modal__container {
    padding: 3rem 1rem 1rem;
  }

  .cookies-modal__content {
    grid-row-gap: .5rem;
    flex-direction: column;
    padding-right: 0;
  }

  .cookies-modal__buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .cookies-modal__text-container {
    padding-right: 0;
  }

  .modal__close-btn__inverted.inverted {
    top: .75rem;
  }

  .fixed-buttons {
    line-height: 1.5rem;
  }

  .fixed-buttons__scroll-to-top {
    width: 36px;
    height: 36px;
    background-size: 16px;
  }

  .fixed-buttons__whatsapp {
    width: 36px;
    height: 36px;
    background-size: 20px;
  }

  .slider-gradient-fade__right, .slider-gradient-fade__right.right {
    display: none;
  }

  .hero-lp-banner__foreground {
    height: 400px;
    top: 120px;
  }

  .hero-lp-banner__background {
    width: 100%;
    height: 100%;
    object-position: 0% 100%;
    padding-left: 0;
  }

  .lp-banner__image-container {
    max-width: none;
    position: static;
    left: 0;
  }

  .lp__links {
    grid-row-gap: .5rem;
    justify-content: center;
    margin-top: 1rem;
  }

  .lp-product-tabs__menu {
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .lp-product-tabs {
    margin-bottom: 1rem;
    padding-top: 2rem;
  }

  .lp-tab-single__img {
    max-width: 96vw;
    background-position: 100%;
    background-repeat: no-repeat;
    justify-content: center;
    padding: 1.5rem 0 2.5rem 4vw;
  }

  .lp-tab-single__img-container {
    align-items: center;
    margin-top: 1rem;
  }

  .lp-tab-single {
    flex-direction: column;
  }

  .lp-tab-single__content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    align-items: center;
  }

  .lp-tab-single__content.alt {
    margin-top: 0;
  }

  .lp-tab-single__product-title {
    padding-top: 3rem;
  }

  .product-name {
    margin-right: auto;
  }

  .lp-product__small-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-product__small-heading.newsletter {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-product__small-heading.modal {
    margin-left: auto;
    padding-left: 0;
  }

  .lp-tab-single__product-img {
    max-height: 380px;
  }

  .lp-tab-single__warranty-seals {
    align-items: center;
  }

  .tab-nav-arrows {
    top: 440px;
  }

  .small-heading-faded {
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .small-heading-faded.newsletter {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .small-heading-faded.modal {
    margin-left: auto;
    padding-left: 0;
  }

  .lp-content__img-container {
    max-height: 420px;
    margin-top: 1rem;
    margin-bottom: 0;
    margin-left: 1.5vw;
    overflow: hidden;
  }

  .lp-content__img-container.alternate {
    margin-left: -16vw;
    margin-right: 0;
  }

  .lp__container-horizontal {
    flex-direction: column-reverse;
    overflow: hidden;
  }

  .lp__container-horizontal.reverse, .lp__container-horizontal.contact {
    flex-direction: column-reverse;
  }

  .hero-lp-banner_container {
    max-width: 100vw;
    flex-direction: column;
    padding: 1rem 2rem 0;
  }

  .hero-lp-banner__content {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero-lp-banner__img-block {
    width: 100vw;
    height: 600px;
    margin-left: 0;
    display: block;
    position: relative;
    left: 0;
    overflow: visible;
  }

  .lp-institutional-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .lp-institutional-section.first-section.institutional {
    display: none;
  }

  .lp-form-image {
    max-height: 420px;
    min-height: 440px;
    margin-bottom: 0;
    margin-left: 4vw;
    overflow: hidden;
  }

  .lp-form-image.alternate {
    margin-left: -16vw;
    margin-right: 0;
  }

  .contact-content-section {
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
  }

  .lp-main-banner {
    height: auto;
    flex-direction: column-reverse;
    margin-top: 32px;
  }

  .form-block {
    margin-top: -16px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    margin-top: 2rem;
    font-size: 1.125rem;
    line-height: 1.313rem;
  }

  p {
    margin-bottom: .75rem;
    font-size: .875rem;
    line-height: 1.313rem;
  }

  ul {
    padding-left: 24px;
  }

  li {
    font-size: .875rem;
    line-height: 1.313rem;
  }

  .hero__heading {
    margin-bottom: .5rem;
    font-size: 3.125rem;
    line-height: 3.5rem;
  }

  .hero__heading.on-white-bg {
    margin-bottom: .5rem;
    font-size: 3rem;
  }

  .hero__paragraph {
    text-align: center;
  }

  .hero-container__text-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .button.cyan {
    margin-left: auto;
    margin-right: auto;
  }

  .button.cyan-white-bg {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .button.cyan-white-bg.compact {
    width: 100%;
    display: block;
  }

  .button.form {
    max-height: none;
    min-height: 48px;
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .button.cyan-outline {
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .button.cyan-outline.loadmore {
    margin-top: .25rem;
    font-size: .875rem;
    line-height: 1rem;
    display: block;
  }

  .bg-image__content {
    padding-right: 1rem;
  }

  .clubs-slider__block {
    width: 244px;
    height: 288px;
  }

  .clubs-slider__img-container {
    height: 132px;
  }

  .our-clubs-slider__title {
    max-height: 84px;
    font-size: 1.125rem;
    line-height: 1.313rem;
    overflow: visible;
  }

  .our-clubs-slider__content {
    height: 156px;
  }

  .our-clubs-slider__read-more {
    bottom: 1rem;
  }

  .clubs-slider__mask, .clubs-slider__element {
    height: 360px;
  }

  .clubs-slider-block {
    margin-top: 1rem;
  }

  .small-heading {
    padding-left: 0;
    padding-right: 0;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .small-heading.newsletter {
    margin-top: 0;
  }

  .small-heading.experts-logged {
    display: none;
  }

  .large-subtitle {
    font-size: 2rem;
    line-height: 2.188rem;
  }

  .small-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-default-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .section-default-padding.reverse {
    margin-top: 1rem;
  }

  .div-block-4 {
    margin-top: 1.5rem;
  }

  .materials-card {
    width: 244px;
    height: 244px;
    max-width: none;
    align-items: flex-start;
  }

  .materials-card__title {
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.313rem;
  }

  .materials-card__body {
    text-align: left;
  }

  .slide-nav {
    display: block;
  }

  .materials-slider__single {
    width: 244px;
    height: 244px;
    margin-left: 1rem;
    margin-right: .5rem;
  }

  .mask-2 {
    width: 268px;
    height: 268px;
    max-height: none;
    max-width: none;
    display: inline;
    overflow: hidden;
  }

  .slider-2 {
    width: 100vw;
    height: 288px;
  }

  .larger-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .larger-content-section.white {
    flex-direction: column;
    display: flex;
  }

  .paragraph__medium {
    font-size: 1rem;
    line-height: 1.438rem;
  }

  .paragraph__medium.white {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .medium-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .questions-section {
    margin-bottom: .5rem;
  }

  .newsletter-banner {
    padding-bottom: 3.5rem;
  }

  .newsletter-banner__text-content {
    max-width: 100vw;
    margin-left: 0;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 0;
  }

  .form__item {
    width: 100%;
  }

  .form-item__field {
    max-width: 100%;
  }

  .form-row {
    grid-row-gap: .25rem;
    flex-direction: column;
  }

  .newsletter-form {
    max-width: 100vw;
    flex-flow: column wrap;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .paragraph__smallest {
    line-height: 1rem;
  }

  .newsletter-privacy {
    margin-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .medium-subtitle {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .footer__1st-row {
    flex-direction: column;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-social {
    right: 1.5rem;
  }

  .header-links {
    font-size: 1rem;
  }

  .menu-mobile__content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hero-experts-clubs__links {
    margin-top: -1.5rem;
  }

  .hero-experts-clubs__image {
    padding-left: 1rem;
  }

  .hero-experts-clubs__container {
    padding: 1rem 1rem 2rem;
  }

  .default-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .large-image-absolute__content {
    padding-left: 1rem;
  }

  .large-image-absolute__content.mobile {
    padding-left: 0;
  }

  .hero-experts-clubs-logged-in__container {
    padding: 1rem 1rem 2rem;
  }

  .experts-logged-seminav {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .text-block, .seminav__link {
    font-size: .875rem;
  }

  .seminav__link-container {
    min-height: 24px;
    grid-column-gap: 2rem;
  }

  .icon-title__img {
    max-height: 36px;
  }

  .icon-title {
    grid-column-gap: .8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .large-heading-h2 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2rem;
  }

  .experts-logged-card__title {
    text-align: left;
    font-size: 1rem;
    line-height: 1.313rem;
  }

  .experts-logged-card {
    width: 84vw;
    max-width: none;
  }

  .video-play-button {
    left: 44%;
    right: 44%;
  }

  .video-thumbnail {
    height: 42vw;
  }

  .experts-tab__content {
    grid-row-gap: .5rem;
    flex-direction: row;
    justify-content: center;
  }

  .experts-logged-tab__menu {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .experts-logged-tab {
    margin-top: .25rem;
  }

  .experts-logged-tab___content {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph__large {
    font-size: 2rem;
    line-height: 2.188rem;
  }

  .offset-fix {
    height: 156px;
    margin-top: -152px;
  }

  .hero-institutional__image.fixed {
    width: 80vw;
  }

  .hero-institutional__img {
    padding-left: 0;
    padding-right: 1rem;
  }

  .hero-institutional__content-section {
    margin-top: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-long-text {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .long-text__paragraph-list.upper {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: .5rem;
    margin-right: 0;
    font-size: .875rem;
    line-height: 1.313rem;
  }

  .long-text__box {
    flex-direction: column;
    margin-bottom: .5rem;
    padding: 1rem;
  }

  .long-text__paragraph-boxed {
    border-top: 1px solid #d4ecff;
    border-left-width: 0;
    padding-top: .5rem;
    padding-left: 0;
    font-size: .75rem;
    line-height: 1.125rem;
  }

  .long-text__table-title {
    font-size: .75rem;
    line-height: 1.125rem;
  }

  .long-text__grid-table {
    overflow: scroll;
  }

  .long-text__grid-table.alt {
    margin-bottom: 1.5rem;
  }

  .long-text__table-content {
    font-size: .75rem;
    line-height: 1.125rem;
  }

  .form-sign-in-section {
    margin-bottom: 2rem;
  }

  .form-sign-in-section.login-modal {
    margin-bottom: .25rem;
  }

  .white-fade-out-bottom {
    display: none;
  }

  .modal-box {
    min-height: 428px;
  }

  .modal-login__content {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-bottom: 1rem;
  }

  .modal-login__title-section {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: .25rem;
  }

  .modal__close-btn {
    right: 1rem;
  }

  .mobile-menu__content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .modal__close-btn__inverted {
    right: 1rem;
  }

  .hero-lp-banner__foreground {
    height: 320px;
    top: 106px;
  }

  .hero-lp-banner__background {
    padding-left: 1rem;
    left: auto;
  }

  .lp__links {
    margin-top: 0;
  }

  .lp-tabs__button-text {
    font-size: 1.25rem;
  }

  .lp-tabs__button {
    padding: 6px 20px;
  }

  .lp-product-tabs__menu {
    grid-column-gap: .75rem;
    grid-row-gap: .5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lp-tab-single__img-container {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .lp-tab-single__content {
    margin-top: 1rem;
  }

  .lp-tab-single__product-logo {
    height: 54px;
  }

  .lp-tab-single__product-title {
    padding-top: 1rem;
  }

  .product-name {
    font-size: 3rem;
    line-height: 2rem;
  }

  .lp-product-tabs__content {
    margin-top: 1.5rem;
  }

  .lp-product__small-heading {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.25rem;
    line-height: 1.25rem;
  }

  .lp-product__small-heading.newsletter {
    margin-top: 0;
  }

  .lp-product__small-heading.experts-logged {
    display: none;
  }

  .paragraph__small {
    font-size: 1rem;
    line-height: 1.438rem;
  }

  .paragraph__small.white {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .tab-nav-arrows {
    top: 360px;
  }

  .small-heading-faded {
    padding-left: 0;
    padding-right: 0;
    font-size: 1.75rem;
    line-height: 1.5rem;
  }

  .small-heading-faded.newsletter {
    margin-top: 0;
  }

  .small-heading-faded.experts-logged {
    display: none;
  }

  .lp-content__img-container {
    min-height: 420px;
    margin-bottom: 0;
    margin-left: 4vw;
  }

  .hero-lp-banner_container {
    padding: 0 2rem 2rem;
  }

  .hero-lp-banner__img-block {
    height: 480px;
  }

  .lp-institutional-section {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .lp-institutional-section.reverse {
    margin-top: 1rem;
  }

  .lp-form-image {
    min-height: 320px;
    margin-bottom: .5rem;
  }

  .contact-content-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .list-item__paragraph {
    background-position: 4px 4px;
    padding-left: 32px;
    font-size: 1rem;
    line-height: 1.438rem;
  }

  .list-item__paragraph.white {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.625rem;
  }

  .lp-product__description p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lp-product__description li {
    background-position: 4px 4px;
    font-size: 1rem;
    line-height: 1.438rem;
  }

  .lp-tab-single__logo-img {
    max-height: 40px;
  }

  .lp-tab-single__logo-img.pro-fertility {
    max-height: 80px;
  }

  .lp-tab-single__logo-img.maxxi {
    max-height: 72px;
  }

  .lp-tab-single__logo-img.producote {
    max-height: 76px;
  }
}

@media screen and (max-width: 479px) {
  .hero__heading {
    font-size: 2.65rem;
    line-height: 3rem;
  }

  .hero__heading.on-white-bg {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .hero__paragraph {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .button {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .button.cyan-white-bg.less-space, .button.minimal {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .large-subtitle {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  .sign-up-cta-banner {
    min-height: 408px;
  }

  .medium-content-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-number {
    grid-column-gap: .5rem;
  }

  .social-icons-buttons {
    grid-column-gap: 0rem;
  }

  .footer-number__text {
    font-size: 1rem;
  }

  .footer-divider {
    width: 82%;
  }

  .menu__logo.mobile {
    margin-left: auto;
  }

  .hero-experts-clubs__logo {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }

  .experts-logged-card {
    width: 94vw;
  }

  .video-thumbnail {
    height: 46vw;
  }

  .experts-tab__content {
    grid-column-gap: .75rem;
  }

  .container-long-text {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .default-form__tile-bold.padding {
    overflow-wrap: break-word;
  }

  ._404-page__content {
    min-height: 40vh;
    margin-top: 80px;
  }

  ._404-page__image {
    height: 64px;
    margin-bottom: .5rem;
  }

  .hero-lp-banner__foreground {
    height: 280px;
    margin-left: 1rem;
    top: 60px;
  }

  .lp__links {
    justify-content: center;
  }

  .lp-tabs__button-text {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  .lp-product-tabs__menu {
    grid-column-gap: .5rem;
    grid-row-gap: .25rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lp-product-tabs {
    margin-bottom: 0;
    padding-top: 1rem;
  }

  .lp-tab-single__img {
    max-width: none;
    background-position: 50%;
    padding-left: 0;
  }

  .lp-tab-single__content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .lp-tab-single__product-logo {
    height: 48px;
  }

  .lp-tab-single__product-title {
    margin-bottom: -.75rem;
  }

  .product-name {
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 2.2rem;
  }

  .trademark {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .lp-tab-single__certif-img {
    max-height: 64px;
  }

  .lp-tab-single__product-img {
    max-height: 348px;
  }

  .tab-prev {
    width: 32px;
    height: 32px;
  }

  .tab-nav__icon {
    height: 14px;
  }

  .tab-next {
    width: 32px;
    height: 32px;
  }

  .tab-nav-arrows {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .lp-content__img-container {
    min-height: 280px;
    margin-top: 0;
    margin-left: 4vw;
  }

  .hero-lp-banner_container {
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-lp-banner__img-block {
    height: 360px;
  }

  .lp-institutional-section {
    padding-top: 1.5rem;
  }

  .lp-form-image {
    min-height: 200px;
    margin-bottom: 0;
  }

  .contact-content-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .list-item__paragraph, .lp-product__description li {
    background-size: 14px 14px;
    padding-left: 28px;
  }

  .lp-tab-single__logo-img {
    max-height: 32px;
    max-width: 348px;
  }

  .lp-tab-single__logo-img.pro-fertility, .lp-tab-single__logo-img.maxxi {
    max-height: 64px;
  }

  .lp-tab-single__logo-img.producote {
    max-height: 68px;
  }
}


@font-face {
  font-family: 'Inter variablefont';
  src: url('../fonts/Inter-VariableFont.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Demo';
  src: url('../fonts/Demo-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Demo';
  src: url('../fonts/Demo-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Demo';
  src: url('../fonts/Demo-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}