/* FONTS */
/* VARIABLES BREAK POINTS */
/* VARIABLES COLORS */
/* VARIABLES FONTS */
/* TYPINGS*/
/* FUNCTIONS COLORS */
/* FUNCTIONS FONTS */
/* BASE */
html {
  scroll-behavior: smooth;
  overflow-x: hidden; }
  @media (max-width: 1199px) {
    html.toggle-menu {
      overflow: hidden; } }

body {
  background: #F5FAFC;
  font-size: 18px;
  line-height: 23px;
  font-family: "Roboto", sans-serif;;
  overflow-x: hidden; }

a {
  text-decoration: none; }

b, strong {
  font-weight: 800; }

figure {
  margin: 0; }

img {
  display: block;
  max-width: 100%;
  margin: 0 auto; }

p {
  margin: 0; }

sup {
  top: -0.75em;
  font-size: 0.5em; }

/* COLORS */
.c-blue-darker {
  color: #0A2C45 !important; }

.c-blue-dark {
  color: #04406B !important; }

.c-blue {
  color: #0069B4 !important; }

.c-blue-light {
  color: #009FE3 !important; }

.c-green-light {
  color: #00CCCD !important; }

.c-green-lighter {
  color: #CCF3F5 !important; }

.c-yellow-dark {
  color: #F2921E !important; }

.c-gray-lighter {
  color: #F5FAFC !important; }

.c-white {
  color: #FFFFFF !important; }

.c-black {
  color: #000000 !important; }

.c-background {
  color: #F5FAFC !important; }

/* MARGINS */
.m-0-auto {
  margin: 0 auto; }

/* PADDINGS */
/* BG */
.bg-blue-darker {
  background: #0A2C45; }
.bg-blue-dark {
  background: #04406B; }
.bg-blue {
  background: #0069B4; }
.bg-blue-light {
  background: #009FE3; }
.bg-green-light {
  background: #00CCCD; }
.bg-green-lighter {
  background: #CCF3F5; }
.bg-yellow-dark {
  background: #F2921E; }
.bg-gray-lighter {
  background: #F5FAFC; }
.bg-white {
  background: #FFFFFF; }
.bg-black {
  background: #000000; }
.bg-background {
  background: #F5FAFC; }

/* HEIGHTS */
.h-100vh {
  height: 100vh; }

.min-h-auto {
  min-height: auto !important; }

.h-100p {
  height: 100%; }

/* WIDTHS */
.max-w-none {
  max-width: none !important; }

.w-auto {
  width: auto !important; }

/* BORDERS */
/* FONTS */
.f-primary {
  font-family: "Roboto", sans-serif; !important; }

.f-secondary {
  font-family: "Poppins", sans-serif; !important; }

.ft-uppercase {
  text-transform: uppercase; }

.ft-lowercase {
  text-transform: lowercase; }

.ft-full-width {
  text-transform: full-width; }

.ft-none {
  text-transform: none; }

/* BG */
.v-a-top {
  vertical-align: top; }

/* POSITIONS */
.pos--abs {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }
.pos--rel {
  position: relative; }

/* UNDERSCORES */
/* BUTTONS */
.button {
  position: relative;
  z-index: 100;
  display: block;
  width: 260px;
  padding: 35px 20px;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  clip-path: polygon(50% 0%, 100% 17.5%, 100% 82.5%, 50% 100%, 0% 82.5%, 0% 17.5%);
  background: transparent; }
  @media (max-width: 1399px) {
    .button {
      width: 200px;
      padding: 20px 10px; } }
  .button::before {
    transition: all 0.5s ease 0s;
    position: absolute;
    content: "";
    z-index: 2;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 17.5%, 100% 82.5%, 50% 100%, 0% 82.5%, 0% 17.5%);
    border-radius: 30%; }
  .button::after {
    transition: all 0.5s ease 0s;
    position: absolute;
    content: "";
    z-index: 3;
    display: block;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    clip-path: polygon(50% 0%, 100% 17.5%, 100% 82.5%, 50% 100%, 0% 82.5%, 0% 17.5%);
    border-radius: 30%; }
  .button span {
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 100;
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-family: "Poppins", sans-serif;;
    text-transform: uppercase;
    font-weight: bold; }
    @media (max-width: 1399px) {
      .button span {
        font-size: 15px;
        line-height: 26px; } }
  .button__wrapper--center {
    text-align: center; }
  .button__wrapper--right {
    text-align: right; }
  .button.inactive {
    cursor: not-allowed; }
@keyframes growing-underline {
  from {
    width: 0; }
  to {
    width: 100%; } }
  .button__green-light::before {
    background: rgba(0, 204, 205, 0.17); }
  .button__green-light::after {
    background: #00CCCD; }
  .button__green-light span {
    color: #FFFFFF; }
  .button__green-light:hover::before {
    background: #00CCCD; }
  .button__green-light:hover::after {
    background: #CCF3F5; }
  .button__green-light:hover span {
    color: #00CCCD; }

/* RADIO */
.radio input[type="radio"] {
  position: absolute;
  left: -9999px; }
  .radio input[type="radio"]:checked ~ label::after {
    display: block; }
.radio label {
  position: relative;
  padding: 0 0 0 45px;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #000000; }
  @media (max-width: 991px) {
    .radio label {
      font-size: 18px;
      line-height: 22px; } }
  .radio label::before {
    flex-shrink: 0;
    content: "";
    position: absolute;
    top: -5px;
    left: 0px;
    width: 32px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/input-polygon-outer-blue.svg"); }
  .radio label::after {
    flex-shrink: 0;
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 18px;
    height: 21px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: none;
    background-image: url("../img/input-polygon-inner-blue.svg"); }
.radio__white label {
  color: #FFFFFF; }
  .radio__white label::before {
    background-image: url("../img/input-polygon-outer-white.svg"); }
  .radio__white label::after {
    background-image: url("../img/input-polygon-inner-white.svg"); }

/* CHECKBOX */
.checkbox {
  position: relative; }
  .checkbox input[type="checkbox"] {
    position: absolute;
    left: -9999px; }
    .checkbox input[type="checkbox"]:checked ~ label::after {
      display: block; }
    .checkbox input[type="checkbox"]:disabled ~ label {
      opacity: 0.5; }
  .checkbox label {
    position: relative;
    padding: 0 0 0 45px;
    cursor: pointer;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #000000; }
    @media (max-width: 991px) {
      .checkbox label {
        font-size: 18px;
        line-height: 22px; } }
    .checkbox label::before {
      flex-shrink: 0;
      content: "";
      position: absolute;
      top: -5px;
      left: 0px;
      width: 32px;
      height: 35px;
      background-repeat: no-repeat;
      background-position: center;
      background-image: url("../img/input-polygon-outer-blue.svg"); }
    .checkbox label::after {
      flex-shrink: 0;
      content: "";
      position: absolute;
      left: 7px;
      top: 2px;
      width: 18px;
      height: 21px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      display: none;
      background-image: url("../img/input-polygon-inner-blue.svg"); }
    .checkbox label a {
      color: #0069B4; }
  .checkbox__white label {
    color: #FFFFFF; }
    .checkbox__white label::before {
      background-image: url("../img/input-polygon-outer-white.svg"); }
    .checkbox__white label::after {
      background-image: url("../img/input-polygon-inner-white.svg"); }
  .checkbox.hiddeable {
    position: relative;
    height: 40px;
    overflow: hidden; }
    .checkbox.hiddeable:has(.error-info) {
      overflow: visible !important; }
    .checkbox.hiddeable label {
      top: 5px;
      line-height: 27px;
      padding-right: 30px; }
    .checkbox.hiddeable .toggler {
      color: #0069B4;
      background: transparent;
      display: block;
      padding: 5px 10px;
      position: absolute;
      right: 5px;
      bottom: 0;
      cursor: pointer;
      transform: rotate(-90deg);
      font-size: 30px;
      z-index: 99; }
    .checkbox.hiddeable.show {
      height: auto;
      overflow: hidden; }
      .checkbox.hiddeable.show .toggler {
        transform: rotate(-270deg);
        right: 0; }

/* INPUTS */
.input {
  position: relative; }
  .input.mask-shell-correction .shell span {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    font-size: 18px;
    line-height: 22px; }
  .input textarea {
    display: block;
    width: 100%;
    height: 250px;
    padding: 25px;
    background: white;
    border: 3px solid #0069B4;
    color: #000000;
    font-family: "Roboto", sans-serif;;
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
    margin: 10px 0;
    box-shadow: none;
    border-radius: 5px;
    outline: 0;
    resize: none; }
  .input input[type="text"], .input input[type="tel"], .input input[type="password"], .input select {
    display: block;
    width: 100%;
    padding: 25px;
    background: transparent;
    border: 3px solid #0069B4;
    color: #000000;
    font-family: "Roboto", sans-serif;;
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
    margin: 10px 0;
    box-shadow: none;
    border-radius: 5px;
    outline: 0; }
    .input input[type="text"]::placeholder, .input input[type="tel"]::placeholder, .input input[type="password"]::placeholder, .input select::placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .input input[type="text"]:focus, .input input[type="tel"]:focus, .input input[type="password"]:focus, .input select:focus {
      outline: none; }
  .input:has(#phone) {
    position: relative;
    border-radius: 5px; }
    .input:has(#phone)::before {
      content: "+48";
      position: absolute;
      left: 0;
      height: 100%;
      background: #0069B4;
      color: #FFFFFF;
      padding: 10px 15px;
      font-size: 20px;
      line-height: 55px;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .input:has(#phone) input {
      padding-left: 85px; }
  .input__white input[type="text"], .input__white input[type="password"], .input__white select {
    border: 3px solid #FFFFFF;
    color: #FFFFFF; }
    .input__white input[type="text"]::placeholder, .input__white input[type="password"]::placeholder, .input__white select::placeholder {
      color: rgba(255, 255, 255, 0.5); }

.ui-helper-hidden-accessible {
  display: none !important; }

.ui-autocomplete {
  background: #FFFFFF;
  z-index: 100;
  width: 400px !important;
  max-height: 300px !important;
  overflow: hidden;
  overflow-y: scroll !important;
  border: 0;
  border-radius: 10px;
  padding: 10px 15px;
  list-style: none;
  color: #000000 !important; }
  .ui-autocomplete li {
    color: #0069B4;
    font-size: 16px;
    line-height: 27px;
    margin: 0;
    padding: 5px;
    cursor: pointer; }
  .ui-autocomplete div {
    color: !important;
    font-size: 20px;
    line-height: 27px; }

/* FIGURES */
/* LISTS */
.list-ordered ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: custom-counter; }
.list-ordered li {
  position: relative;
  padding: 20px 5px 15px 50px;
  margin: 0;
  counter-increment: custom-counter; }
  .list-ordered li::before {
    position: absolute;
    left: 0;
    top: 15px;
    content: counter(custom-counter) ".";
    display: block;
    width: 33px;
    height: 33px;
    background: #ffd400;
    background: -webkit-linear-gradient(#ffd400 0%, #f37032 100%);
    background: -o-linear-gradient(#ffd400 0%, #f37032 100%);
    background: linear-gradient(#ffd400 0%, #f37032 100%);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 33px;
    font-family: "Roboto", sans-serif;;
    text-align: center; }

.list ul {
  padding: 0;
  margin: 25px 0;
  list-style: none; }
  @media (max-width: 767px) {
    .list ul {
      margin: 15px 0; } }
.list li {
  position: relative;
  padding: 10px 5px 10px 30px;
  margin: 0; }
  @media (max-width: 767px) {
    .list li {
      padding: 5px 5px 5px 25px; } }
  .list li::before {
    position: absolute;
    left: 0;
    top: 17.5px;
    content: "";
    display: block;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%; }
    @media (max-width: 767px) {
      .list li::before {
        top: 10px; } }

/* ERROR INFO */
.error-info {
  font-size: 11px;
  line-height: 13px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-105%);
  color: red; }

/* BASE */
.jwplayer {
  background-color: white !important; }

.jw-error {
  background-color: white !important; }

.jw-title {
  background: transparent !important; }

/* header */
.header {
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 0 15px;
  min-height: 90px;
  box-shadow: 0 3px 67px #0069B4;
  transition: all 1s ease 0s; }
  .header-hidden .header {
    transition: all 1s ease 0s;
    transform: translateY(-150%); }
  @media (max-width: 1399px) {
    .header {
      min-height: 75px; } }
  @media (max-width: 1199px) {
    .header {
      min-height: 60px; } }
  @media (max-width: 767px) {
    .header {
      display: flex; } }
  .header__content {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end; }
    @media (max-width: 1199px) {
      .header__content {
        width: 100%;
        align-items: center; } }
    @media (max-width: 767px) {
      .header__content {
        max-width: none; } }
  .header__brand a {
    display: block;
    padding: 15px 0; }
    @media (max-width: 1399px) {
      .header__brand a {
        padding: 10px 0; }
        .header__brand a img {
          max-height: 50px; } }
  @media (max-width: 1199px) {
    .header__navigation {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      transform: translateX(-100%);
      opacity: 0;
      z-index: 991;
      transition: all 0.7s ease 0s;
      padding-top: 50px;
      background: #F5FAFC; }
      .header__navigation.toggle-menu {
        opacity: 1;
        transform: translateX(0); } }
  .header__navigation > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end; }
    @media (max-width: 1199px) {
      .header__navigation > ul {
        flex-direction: column; } }
    .header__navigation > ul > li {
      list-style: none;
      position: relative; }
      .header__navigation > ul > li.active a {
        font-weight: bold; }
      .header__navigation > ul > li.active > a::after {
        opacity: 1 !important; }
      .header__navigation > ul > li > a {
        margin: 0 10px;
        padding: 40px 15px 27.5px;
        display: block;
        font-size: 20px;
        line-height: 30px;
        position: relative;
        white-space: nowrap;
        color: #0069B4;
        position: relative;
        font-family: "Poppins", sans-serif;; }
        .header__navigation > ul > li > a.opinions-link {
          position: relative;
          color: #FFFFFF;
          font-weight: bold; }
          .header__navigation > ul > li > a.opinions-link::before {
            content: "";
            position: absolute;
            z-index: -1;
            left: 0;
            right: 0;
            top: 55%;
            bottom: 0;
            transform: translateY(-50%);
            height: 60px;
            background: #009FE3;
            border-radius: 15px; }
            @media (max-width: 1199px) {
              .header__navigation > ul > li > a.opinions-link::before {
                top: 50%; } }
          .header__navigation > ul > li > a.opinions-link::after {
            display: none !important; }
        @media (max-width: 1399px) {
          .header__navigation > ul > li > a {
            padding: 15px;
            font-size: 18px;
            line-height: 28px; } }
        @media (max-width: 991px) {
          .header__navigation > ul > li > a {
            padding: 15px 25px; } }
        .header__navigation > ul > li > a::after {
          transition: all 0.7s ease 0s;
          opacity: 0;
          content: "";
          position: absolute;
          left: 50%;
          bottom: -15px;
          transform: translateX(-50%);
          width: 64px;
          height: 30px;
          background-image: url("../img/icon-header-anchor-active.svg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover; }
          @media (max-width: 1399px) {
            .header__navigation > ul > li > a::after {
              width: 48px;
              height: 22.5px; } }
          @media (max-width: 1199px) {
            .header__navigation > ul > li > a::after {
              display: none; } }
        .header__navigation > ul > li > a:hover::after {
          opacity: 1; }
  .header__hamburger {
    width: 60px;
    display: none;
    position: relative;
    z-index: 990;
    padding: 15px;
    float: right; }
    @media (max-width: 1199px) {
      .header__hamburger {
        display: block;
        opacity: 1; }
        .toggle-menu .header__hamburger {
          opacity: 0; } }
    .header__hamburger input[type="checkbox"] {
      position: absolute;
      left: -9999px; }
    .header__hamburger label {
      position: relative;
      display: block;
      cursor: pointer; }
      .header__hamburger label span {
        display: block;
        height: 4px;
        margin: 6px 0;
        border-radius: 5px;
        background: #0069B4; }
  .header__close-menu {
    color: #0069B4;
    display: none;
    position: fixed;
    z-index: 9992;
    padding: 15px 5px;
    font-weight: 300;
    font-size: 50px;
    width: 40px;
    top: 2.5px;
    right: 25px; }
    @media (max-width: 1199px) {
      .toggle-menu .header__close-menu {
        display: block; } }

/* footer */
.footer {
  position: relative;
  background-color: #F5FAFC;
  padding: 180px 0 0;
  overflow: hidden; }
  @media (max-width: 767px) {
    .footer {
      padding: 30px 0 15px; } }
  .footer::before {
    position: absolute;
    left: 0;
    right: 5%;
    top: 40px;
    height: 100%;
    content: "";
    background-image: url("../img/footer-bg.webp");
    background-repeat: no-repeat;
    background-position: right top; }
    @media (max-width: 1399px) {
      .footer::before {
        right: 0; } }
    @media (max-width: 767px) {
      .footer::before {
        background: none; } }
  .footer__container {
    position: relative;
    z-index: 9;
    margin: 0 auto;
    max-width: 1410px;
    padding: 15px; }
  .footer__content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 150px; }
    @media (max-width: 991px) {
      .footer__content {
        max-width: none;
        flex-direction: column;
        gap: 50px; } }
  .footer__logo {
    position: relative;
    flex-shrink: 0; }
    .footer__logo img {
      margin: 0; }
  .footer__menu {
    flex-shrink: 0; }
    @media (max-width: 575px) {
      .footer__menu {
        margin: 25px 0 0; } }
  .footer__navigation ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .footer__navigation li {
    margin: 0 0 20px;
    padding: 0; }
    @media (max-width: 991px) {
      .footer__navigation li {
        margin: 10px 0; } }
  .footer__navigation a, .footer__navigation p {
    padding: 5px;
    margin: 5px;
    font-size: 18px;
    line-height: 18px;
    font-weight: normal;
    color: #000000;
    text-decoration: none;
    cursor: pointer; }
    @media (max-width: 991px) {
      .footer__navigation a, .footer__navigation p {
        padding: 5px 0;
        margin: 10px 0; } }
  .footer__others {
    margin: 0; }
    .footer__others p {
      font-size: 18px;
      line-heigth: 22px;
      color: #000000; }
  .footer__products {
    margin: 30px 0 0;
    padding: 45px 15px 10px;
    background-color: #F5FAFC;
    position: relative;
    z-index: 9; }
    @media (max-width: 1399px) {
      .footer__products {
        padding: 30px 0 0; } }
    .footer__products__container {
      margin: 0 auto;
      max-width: 1410px;
      display: flex;
      gap: 15px;
      padding: 0 15px; }
      @media (max-width: 991px) {
        .footer__products__container {
          flex-direction: column; } }
    .footer__products__item {
      flex: 1; }
      .footer__products__item h5 {
        color: #04406B;
        font-weight: bold;
        font-size: 14px;
        line-height: 19px;
        margin: 0 0 30px;
        position: relative; }
        .footer__products__item h5::after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: -10px;
          height: 1px;
          border-top: 1px solid #000000; }
      .footer__products__item h6 {
        font-size: 14px;
        line-height: 17px;
        margin: 25px 0; }
        .footer__products__item h6 b {
          font-size: 16px;
          line-height: 21px; }
      .footer__products__item p {
        font-size: 14px;
        line-height: 17px;
        margin: 15px 0; }
        .footer__products__item p b {
          line-height: 19px; }
  .footer__provision {
    margin: 30px 0 0;
    padding: 50px 30px 125px;
    background-color: #FFFFFF;
    position: relative;
    z-index: 9; }
    @media (max-width: 1399px) {
      .footer__provision {
        padding: 50px 15px 125px; } }
    .page__gate .footer__provision {
      margin: 25px 0; }
    .footer__provision__container {
      margin: 0 auto;
      max-width: 1380px; }
    .footer__provision p {
      font-size: 14px;
      line-heigth: 18px;
      color: #000000; }

/* main */
.main {
  margin-top: 125px;
  transition: all 1s ease 0s; }
  .header-hidden .main {
    margin-top: 0; }
  @media (max-width: 1399px) {
    .main {
      margin-top: 75px; } }
  @media (max-width: 1199px) {
    .main {
      margin-top: 65px; } }
  .main--no-menu {
    margin-top: 0; }

/* section */
/* PRELOADER */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999; }
  .preloader__container {
    position: fixed;
    width: 200px;
    height: 200px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0.35, 0.35); }
  .preloader__item {
    width: 100px;
    height: 100px;
    position: absolute; }
  .preloader__item-1 {
    background-color: #000000;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-animation: item-1_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
    animation: item-1_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite; }
  .preloader__item-2 {
    background-color: #00CCCD;
    top: 0;
    right: 0;
    -webkit-animation: item-2_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
    animation: item-2_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite; }
  .preloader__item-3 {
    background-color: #0069B4;
    bottom: 0;
    right: 0;
    z-index: 1;
    -webkit-animation: item-3_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
    animation: item-3_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite; }
  .preloader__item-4 {
    background-color: #F2921E;
    bottom: 0;
    left: 0;
    -webkit-animation: item-4_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite;
    animation: item-4_move 1.8s cubic-bezier(0.6, 0.01, 0.4, 1) infinite; }
@-webkit-keyframes item-1_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); }
  50% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px); }
  75% {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0); } }
@keyframes item-1_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); }
  50% {
    -webkit-transform: translate(100px, 100px);
    transform: translate(100px, 100px); }
  75% {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0); } }
@-webkit-keyframes item-2_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0); }
  50% {
    -webkit-transform: translate(-100px, 100px);
    transform: translate(-100px, 100px); }
  75% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); } }
@keyframes item-2_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0); }
  50% {
    -webkit-transform: translate(-100px, 100px);
    transform: translate(-100px, 100px); }
  75% {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px); } }
@-webkit-keyframes item-3_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px); }
  50% {
    -webkit-transform: translate(-100px, -100px);
    transform: translate(-100px, -100px); }
  75% {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0); } }
@keyframes item-3_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px); }
  50% {
    -webkit-transform: translate(-100px, -100px);
    transform: translate(-100px, -100px); }
  75% {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0); } }
@-webkit-keyframes item-4_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0); }
  50% {
    -webkit-transform: translate(100px, -100px);
    transform: translate(100px, -100px); }
  75% {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px); } }
@keyframes item-4_move {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  25% {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0); }
  50% {
    -webkit-transform: translate(100px, -100px);
    transform: translate(100px, -100px); }
  75% {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px); } }
/* HAMBURGER */
.hamburger {
  width: 60px;
  display: none;
  position: relative;
  z-index: 9999;
  padding: 15px;
  float: right; }
  @media (max-width: 1199px) {
    .hamburger {
      display: block; }
      .toggle-menu .hamburger {
        display: none; } }
  .hamburger input[type="checkbox"] {
    position: absolute;
    left: -9999px; }
  .hamburger label {
    position: relative;
    display: block;
    cursor: pointer; }
    .hamburger label span {
      display: block;
      height: 4px;
      margin: 6px 0;
      border-radius: 5px;
      background: #000000; }

/* breadcrumbs */
/* FOOTNOTES */
/* VIDEO MODAL */
.video-modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  display: none; }
  .video-modal--active {
    display: block; }
  .video-modal__content {
    position: absolute;
    max-width: 992px;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 15px; }
    @media (max-width: 767px) {
      .video-modal__content {
        position: relative;
        top: 70px;
        left: auto;
        transform: none; } }
  .video-modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 50px;
    line-height: 50px;
    cursor: pointer;
    z-index: 99; }
    @media (max-width: 767px) {
      .video-modal__close {
        font-size: 30px;
        line-height: 30px; } }

/* CAROUSEL */
.fade-right-anim {
  transform: translateX(50px);
  transition: 1s;
  opacity: 0; }

.fade-right-anim-play {
  transform: translateX(0px);
  opacity: 1; }

.insta-modal {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .insta-modal .close {
    position: absolute;
    text-shadow: none;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: .3s;
    opacity: .75;
    z-index: 9999;
    border-radius: 50%;
    border: 1px solid #FFFFFF; }
    .insta-modal .close svg {
      transform: scale(0.8); }
      .insta-modal .close svg path {
        fill: white; }
    .insta-modal .close:hover {
      opacity: 1 !important; }

.insta-slider .slick-arrow {
  z-index: 9999;
  position: fixed;
  top: 45%;
  width: 50px;
  height: 50px;
  color: transparent;
  background: rgba(255, 255, 255, 0.6);
  border: 0; }
  .insta-slider .slick-arrow::after {
    content: "";
    text-align: center;
    display: block;
    width: 50px;
    height: 50px;
    color: #0069B4;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url("../img/arrow-right.png");
    background-position: center;
    background-repeat: no-repeat; }
  .insta-slider .slick-arrow.slick-disabled {
    opacity: 0 !important;
    pointer-events: none; }
  .insta-slider .slick-arrow:before {
    transition: .3s; }
  .insta-slider .slick-arrow:focus:before {
    opacity: .75; }
  .insta-slider .slick-arrow:hover:before {
    opacity: 1; }
.insta-slider .slick-prev {
  left: 1rem; }
  .insta-slider .slick-prev::after {
    background-image: url("../img/arrow-left.png");
    background-position: center;
    background-repeat: no-repeat; }
.insta-slider .slick-next {
  right: 1rem; }
@media only screen and (max-width: 575px) {
  .insta-slider .slick-prev {
    left: .15rem; }
  .insta-slider .slick-next {
    right: .15rem; } }

.insta-slide {
  display: flex !important;
  justify-content: center;
  align-items: center; }
  .insta-slide.slick-current .insta-box {
    transform: scale(1); }
    .insta-slide.slick-current .insta-box:after {
      opacity: 0; }

.insta-box {
  transform: scale(0.925);
  transition: .3s;
  position: relative;
  margin: 17.5% 15px 0;
  overflow: hidden;
  background-color: black;
  max-width: 450px;
  width: 22.5vw; }
  @media (max-width: 767px) {
    .insta-box {
      max-width: 350px;
      width: auto; } }
  .insta-box .main {
    margin: 0; }
  .insta-box .main-img {
    image-rendering: -webkit-optimize-contrast;
    max-height: calc(100vh - 3rem);
    max-width: calc(100vw - 3rem); }
  .insta-box .anim {
    position: absolute;
    left: 0;
    max-width: 100%;
    z-index: 1; }
    @media (max-width: 991px) {
      .insta-box .anim {
        max-width: 85%; } }
    @media (max-height: 767px) {
      .insta-box .anim {
        max-width: 85%; } }
  .insta-box:hover:after {
    opacity: .25; }
  .insta-box:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    pointer-events: none;
    opacity: .5;
    transition: .6s;
    z-index: 2; }

.insta-box[id="0"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="1"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="2"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="3"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="4"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="5"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="6"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="7"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="8"] .anim-1 {
  bottom: 4%;
  left: 9%; }

.insta-box[id="9"] .anim-1 {
  top: 8%;
  left: 8%; }

/* go up */
.go-up {
  position: fixed;
  right: 15px;
  bottom: 15px;
  cursor: pointer;
  z-index: 9900; }
  @media (max-width: 1399px) {
    .go-up {
      max-width: 50px; } }

/* modal */
.modal-content {
  background: transparent;
  border: 0;
  border-radius: 0; }
.modal-backdrop.show {
  opacity: 0.85; }
.modal-close {
  display: none !important; }

/* NOT FOUND */
.not-found__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10% 15px; }
  .not-found__content h1 {
    text-align: center;
    font-size: 46px;
    line-height: 63px; }
    @media (max-width: 991px) {
      .not-found__content h1 {
        font-size: 30px;
        line-height: 38px; } }

/* QUIZ INTRO */
.footnotes {
  padding: 15px; }
  .footnotes__content {
    margin: 75px auto 0;
    max-width: 1350px; }
    @media (max-width: 767px) {
      .footnotes__content {
        margin: 40px auto 0; } }
    .footnotes__content p {
      margin: 5px 0;
      font-size: 16px;
      line-height: 22px;
      font-weight: normal; }
      @media (max-width: 991px) {
        .footnotes__content p {
          font-size: 14px;
          line-height: 21px; } }

/* GATE */
.gate {
  background: #0069b4;
  background-image: url("../img/hero-tiles-bg.webp"), linear-gradient(to top right, #0069b4 0%, #009fe3 70%, #0069b4 100%);
  background-position: right top, right center;
  background-repeat: no-repeat, no-repeat;
  padding: 30px 15px 60px; }
  @media (max-width: 991px) {
    .gate {
      background-image: linear-gradient(to top right, #0069b4 0%, #009fe3 70%, #0069b4 100%); } }
  @media (max-width: 767px) {
    .gate {
      padding: 15px; } }
  .gate__content {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .gate__content {
        max-width: none; } }
  .gate__image {
    flex-shrink: 0;
    max-width: 640px;
    width: 31.25vw; }
    @media (max-width: 767px) {
      .gate__image {
        display: none; } }
  .gate__logo {
    margin: 0 0 50px;
    max-width: 505px;
    width: 25.75vw; }
    @media (max-width: 1199px) {
      .gate__logo {
        max-width: 400px; } }
    @media (max-width: 767px) {
      .gate__logo {
        margin: 20px 0; } }
    .gate__logo img {
      margin: 0; }
  .gate__info {
    margin: 50px 0 0;
    max-width: 850px; }
    @media (max-width: 767px) {
      .gate__info {
        margin: 20px 0 0;
        padding: 0; } }
    .gate__info p {
      font-size: 15px;
      line-height: 18px;
      color: #FFFFFF; }
  .gate__form__professions-list {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    gap: 30px; }
    @media (max-width: 767px) {
      .gate__form__professions-list {
        flex-direction: column;
        gap: 20px; } }
    .gate__form__professions-list div {
      flex-shrink: 0; }
    .gate__form__professions-list p {
      font-size: 20px;
      line-height: 26px;
      font-weight: bold;
      color: #FFFFFF; }
  .gate__form__professions-fields {
    margin: 50px 0 20px;
    max-width: 460px; }
  .gate__form__submit-button {
    margin: 50px 0; }
    @media (max-width: 767px) {
      .gate__form__submit-button {
        margin: 20px 0; } }
  .gate__form__statements {
    margin: 20px 0;
    max-width: 850px; }

/* HERO */
.hero {
  background-image: url("../img/hero-bg.webp");
  background-position: right -80px bottom;
  background-repeat: no-repeat;
  padding: 55px 15px 155px; }
  @media (max-width: 1399px) {
    .hero {
      background-position: center bottom;
      padding: 25px 15px 100px; } }
  .hero__content {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    @media (max-width: 767px) {
      .hero__content {
        max-width: none; } }
  .hero__description {
    max-width: 515px; }
    @media (max-width: 767px) {
      .hero__description {
        max-width: none; } }
    .hero__description h1 {
      position: relative;
      font-size: 20px;
      line-height: 24px;
      font-weight: 400;
      color: #FFFFFF;
      margin: 20px 0 0;
      padding: 40px 0 0; }
      @media (max-width: 767px) {
        .hero__description h1 {
          text-align: center; } }
      .hero__description h1::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 35px;
        height: 5px;
        background: #009FE3; }
        @media (max-width: 767px) {
          .hero__description h1::before {
            left: 50%;
            transform: translateX(-50%); } }
    .hero__description a {
      transition: 0.5s ease 0s;
      display: block;
      width: 70px;
      height: 70px;
      border: 5px solid #009FE3;
      border-radius: 50%;
      text-align: center;
      line-height: 60px;
      margin: 20% 0 0; }
      @media (max-width: 1399px) {
        .hero__description a {
          margin: 30px 0 0; } }
      @media (max-width: 767px) {
        .hero__description a {
          margin: 30px auto 0; } }
      .hero__description a:hover {
        background: #009FE3; }
      .hero__description a img {
        display: inline-block; }
  .hero__image {
    flex-shrink: 0;
    max-width: 640px;
    width: 31.25vw; }
    @media (max-width: 767px) {
      .hero__image {
        display: none; } }
  .hero__logo {
    max-width: 505px;
    width: 25.75vw; }
    @media (max-width: 767px) {
      .hero__logo {
        max-width: 380px;
        width: 50vw;
        margin: 0 auto; } }

/* PRODUCTS INTRO */
.products-intro {
  padding: 15px;
  margin: 7.5% 0; }
  @media (max-width: 1399px) {
    .products-intro {
      margin: 5% 0; } }
  .products-intro__content {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 55px; }
    @media (max-width: 767px) {
      .products-intro__content {
        max-width: none; } }
  .products-intro__description h1 {
    font-family: "Poppins", sans-serif;;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    color: #0069B4;
    margin: 35px 0; }
    @media (max-width: 1399px) {
      .products-intro__description h1 {
        font-size: 32px;
        line-height: 48px;
        margin: 15px 0; } }
    @media (max-width: 767px) {
      .products-intro__description h1 {
        font-size: 28px;
        line-height: 36px; } }
  .products-intro__description h2 {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000000;
    padding: 0 0 0 55px; }
    .products-intro__description h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 15px;
      width: 35px;
      height: 1px;
      border-top: 2px solid #000000; }
  .products-intro__description p {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 30px; }
    @media (max-width: 1399px) {
      .products-intro__description p {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 15px; } }
  .products-intro__description a {
    margin: 50px 0 0; }
    @media (max-width: 1399px) {
      .products-intro__description a {
        margin: 30px 0 0; } }
  .products-intro__image {
    flex-shrink: 0;
    width: 36.7vw;
    max-width: 705px; }
    @media (max-width: 1199px) {
      .products-intro__image {
        flex-shrink: 0.5; } }
    @media (max-width: 767px) {
      .products-intro__image {
        display: none; } }

/* WHY VISCOPLAST INTRO */
.qahwcag_whiteBackground .insta-modal .qahwcag-exception__whiteBackground.close {
  background: #0069B4 !important; }

.qahwcag_whiteBackground .insta-modal .qahwcag-exception__whiteBackground.svg {
  background: #0069B4 !important; }

.why-viscoplast-intro {
  padding: 15px;
  margin: 7.5% 0;
  background-image: url("../img/tiles-gray-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }
  @media (max-width: 1399px) {
    .why-viscoplast-intro {
      margin: 2.5% 0; } }
  @media (max-width: 1199px) {
    .why-viscoplast-intro {
      background-position: left center;
      padding: 50px 15px; } }
  @media (max-width: 767px) {
    .why-viscoplast-intro {
      background-position: right top 20px; } }
  .why-viscoplast-intro::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 100px;
    background: white;
    z-index: -1; }
    @media (max-width: 1399px) {
      .why-viscoplast-intro::before {
        top: 45px;
        bottom: 35px; } }
    @media (max-width: 1199px) {
      .why-viscoplast-intro::before {
        top: 0;
        bottom: 0; } }
  .why-viscoplast-intro__content {
    position: relative;
    z-index: 9;
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 55px; }
    @media (max-width: 767px) {
      .why-viscoplast-intro__content {
        max-width: none; } }
  .why-viscoplast-intro__description h1 {
    font-family: "Poppins", sans-serif;;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    color: #0069B4;
    margin: 35px 0;
    text-align: right; }
    @media (max-width: 1399px) {
      .why-viscoplast-intro__description h1 {
        font-size: 32px;
        line-height: 48px;
        margin: 15px 0; } }
    @media (max-width: 1199px) {
      .why-viscoplast-intro__description h1 {
        text-align: left; } }
    @media (max-width: 767px) {
      .why-viscoplast-intro__description h1 {
        font-size: 28px;
        line-height: 36px; } }
  .why-viscoplast-intro__description h2 {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000000;
    padding: 0 55px 0 0;
    text-align: right; }
    @media (max-width: 1199px) {
      .why-viscoplast-intro__description h2 {
        text-align: left;
        padding: 0 0 0 55px; } }
    .why-viscoplast-intro__description h2::before {
      content: "";
      position: absolute;
      right: 0;
      top: 15px;
      width: 35px;
      height: 1px;
      border-top: 2px solid #000000; }
      @media (max-width: 1199px) {
        .why-viscoplast-intro__description h2::before {
          right: auto;
          left: 0; } }
  .why-viscoplast-intro__description a {
    margin: 50px 0 0;
    margin-right: 0;
    margin-left: auto; }
    @media (max-width: 1399px) {
      .why-viscoplast-intro__description a {
        margin: 15px 0 0;
        margin-right: 0;
        margin-left: auto; } }
    @media (max-width: 767px) {
      .why-viscoplast-intro__description a {
        margin: 30px 0 20px; } }
  .why-viscoplast-intro__image {
    flex-shrink: 0;
    width: 32.8vw;
    max-width: 630px; }
    @media (max-width: 1199px) {
      .why-viscoplast-intro__image {
        flex-shrink: 0.5; } }
    @media (max-width: 767px) {
      .why-viscoplast-intro__image {
        display: none; } }

/* QUIZ INTRO */
.quiz-intro {
  padding: 15px;
  margin: 7.5% 0 5%;
  background-image: url("../img/tiles-white-bg.webp");
  background-position: right 200px bottom 100px;
  background-repeat: no-repeat; }
  @media (max-width: 1399px) {
    .quiz-intro {
      margin: 5% 0; } }
  @media (max-width: 767px) {
    .quiz-intro {
      background-position: right bottom; } }
  .quiz-intro__content {
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 55px; }
    @media (max-width: 767px) {
      .quiz-intro__content {
        max-width: none; } }
  .quiz-intro__description h1 {
    font-family: "Poppins", sans-serif;;
    font-size: 40px;
    line-height: 60px;
    font-weight: 700;
    color: #0069B4;
    margin: 35px 0; }
    @media (max-width: 1399px) {
      .quiz-intro__description h1 {
        font-size: 32px;
        line-height: 48px;
        margin: 15px 0; } }
    @media (max-width: 767px) {
      .quiz-intro__description h1 {
        font-size: 28px;
        line-height: 36px; } }
    .quiz-intro__description h1 span {
      font-size: 67px;
      line-height: 71px;
      font-weight: 700; }
      @media (max-width: 1399px) {
        .quiz-intro__description h1 span {
          font-size: 50px;
          line-height: 60px; } }
      @media (max-width: 767px) {
        .quiz-intro__description h1 span {
          font-size: 40px;
          line-height: 50px; } }
  .quiz-intro__description h2 {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000000;
    padding: 0 0 0 55px; }
    .quiz-intro__description h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 15px;
      width: 35px;
      height: 1px;
      border-top: 2px solid #000000; }
  .quiz-intro__description p {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 30px; }
    @media (max-width: 1399px) {
      .quiz-intro__description p {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 15px; } }
  .quiz-intro__description a {
    margin: 50px 0 30px; }
    @media (max-width: 1399px) {
      .quiz-intro__description a {
        margin: 30px 0 20px; } }
    .quiz-intro__description a:not(.button) {
      color: #000000;
      font-size: 18px;
      line-height: 24px;
      text-decoration: underline; }
  .quiz-intro__image {
    flex-shrink: 0;
    width: 26.5vw;
    max-width: 510px; }
    @media (max-width: 1199px) {
      .quiz-intro__image {
        flex-shrink: 0.5; } }
    @media (max-width: 767px) {
      .quiz-intro__image {
        display: none; } }

/* HEADING */
.heading {
  background-image: url("../img/hero-bg.webp");
  background-position: right -80px bottom;
  background-repeat: no-repeat;
  padding: 100px 15px; }
  @media (max-width: 1399px) {
    .heading {
      padding: 15px 15px 75px;
      background-position: center bottom; } }
  @media (max-width: 991px) {
    .heading {
      padding: 50px 15px 100px; } }
  .heading__content {
    max-width: 75%;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .heading__content {
        max-width: none; } }
    .heading__content h1 {
      position: relative;
      font-size: 60px;
      line-height: 67px;
      font-weight: bold;
      color: #FFFFFF;
      margin: 0;
      text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }
      @media (max-width: 1399px) {
        .heading__content h1 {
          font-size: 24px;
          line-height: 28px; } }

/* PRODUCTS */
.products {
  margin: 100px 0 0; }
  @media (max-width: 1399px) {
    .products {
      margin: 50px 0 0; } }
  @media (max-width: 767px) {
    .products {
      margin: 0; } }
  .products__names__content {
    max-width: 95%;
    margin: 0 auto;
    border-bottom: 1px solid #009FE3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-shrink: 0; }
    @media (max-width: 767px) {
      .products__names__content {
        max-width: none; } }
    .products__names__content.active-0::after {
      left: 10%; }
    .products__names__content.active-1::after {
      left: 30%; }
    .products__names__content.active-2::after {
      left: 50%; }
    .products__names__content.active-3::after {
      left: 70%; }
    .products__names__content.active-4::after {
      left: 90%; }
    .products__names__content::after {
      transition: all 1s ease 0s;
      content: "";
      position: absolute;
      z-index: 99;
      left: -999px;
      transform: translate(-50%);
      bottom: -15px;
      width: 64px;
      height: 30px;
      background-image: url("../img/icon-carousel-slide-active.svg");
      background-position: center;
      background-repeat: no-repeat; }
  .products__names__item {
    width: 20%; }
    .products__names__item h1 {
      font-size: 30px;
      line-height: 35px;
      color: #0069B4;
      text-align: center;
      padding: 30px 0;
      font-family: "Poppins", sans-serif;;
      cursor: pointer;
      font-weight: 400; }
      @media (max-width: 1399px) {
        .products__names__item h1 {
          font-size: 24px;
          line-height: 30px; } }
      @media (max-width: 991px) {
        .products__names__item h1 {
          font-size: 19px;
          line-height: 25px; } }
      @media (max-width: 767px) {
        .products__names__item h1 {
          font-size: 14px;
          line-height: 18px;
          word-break: break-all;
          padding: 30px 5px; } }
      .products__names__item h1.active {
        font-weight: bold; }
  .products__videos {
    background: #FFFFFF;
    position: relative;
    z-index: 0;
    margin: 0 0 25px; }
    .products__videos video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      margin: 0;
      padding: 0; }
    .products__videos__carousel {
      max-width: 75%;
      margin: 0 auto; }
      @media (max-width: 767px) {
        .products__videos__carousel {
          max-width: none; } }
  .products__packshots {
    background-image: url("../img/tiles-white-bg.webp");
    background-position: right 200px center;
    background-repeat: no-repeat; }
    .products__packshots__carousel {
      max-width: 75%;
      margin: 0 auto;
      position: relative;
      z-index: 99; }
      @media (max-width: 767px) {
        .products__packshots__carousel {
          max-width: none; } }
    .products__packshots__item {
      display: flex;
      flex-direction: row;
      gap: 70px;
      align-items: flex-end;
      justify-content: flex-start; }
      @media (max-width: 767px) {
        .products__packshots__item {
          flex-direction: column;
          align-items: center;
          gap: 15px; } }
      .products__packshots__item__image {
        flex-shrink: 0;
        width: 24vw;
        max-width: 500px; }
        @media (max-width: 1199px) {
          .products__packshots__item__image {
            flex-shrink: 0.5; } }
        @media (max-width: 991px) {
          .products__packshots__item__image {
            max-width: 300px; } }
        @media (max-width: 767px) {
          .products__packshots__item__image {
            max-width: 200px; } }
      .products__packshots__item__text {
        max-width: 480px; }
        @media (max-width: 767px) {
          .products__packshots__item__text {
            max-width: none; } }
        .products__packshots__item__text h2 {
          font-size: 32px;
          line-height: 36px;
          font-weight: bold;
          color: #0069B4;
          font-family: "Poppins", sans-serif;; }
          @media (max-width: 1399px) {
            .products__packshots__item__text h2 {
              font-size: 26px;
              line-height: 32px; } }
          @media (max-width: 991px) {
            .products__packshots__item__text h2 {
              font-size: 24px;
              line-height: 30px; } }
          @media (max-width: 767px) {
            .products__packshots__item__text h2 {
              text-align: center;
              font-size: 20px;
              line-height: 26px; } }
        .products__packshots__item__text h1 {
          font-size: 67px;
          line-height: 72px;
          font-weight: bold;
          color: #0069B4;
          font-family: "Poppins", sans-serif;; }
          @media (max-width: 1399px) {
            .products__packshots__item__text h1 {
              font-size: 40px;
              line-height: 47px; } }
          @media (max-width: 991px) {
            .products__packshots__item__text h1 {
              font-size: 36px;
              line-height: 42px; } }
          @media (max-width: 767px) {
            .products__packshots__item__text h1 {
              font-size: 24px;
              line-height: 30px;
              text-align: center; } }

/* QUIZ THANK YOU */
.quiz-thank-you {
  padding: 7.5% 15px 0;
  background-image: url("../img/tiles-white-bg.webp");
  background-position: right 80px top 20px;
  background-repeat: no-repeat; }
  @media (max-width: 767px) {
    .quiz-thank-you {
      background: transparent; } }
  .quiz-thank-you__content {
    max-width: 670px;
    margin: 0 auto; }
    .quiz-thank-you__content h1 {
      font-family: "Poppins", sans-serif;;
      font-size: 32px;
      line-height: 48px;
      font-weight: bold;
      color: #0069B4;
      margin: 35px 0; }
      @media (max-width: 767px) {
        .quiz-thank-you__content h1 {
          font-size: 28px;
          line-height: 36px; } }
    .quiz-thank-you__content h2 {
      position: relative;
      font-family: "Poppins", sans-serif;;
      font-size: 20px;
      line-height: 30px;
      font-weight: bold;
      color: #000000;
      padding: 0 0 0 55px; }
      .quiz-thank-you__content h2::before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 35px;
        height: 1px;
        border-top: 2px solid #000000; }
    .quiz-thank-you__content p {
      font-size: 24px;
      line-height: 29px;
      color: #000000;
      margin: 0 0 30px; }
      @media (max-width: 767px) {
        .quiz-thank-you__content p {
          font-size: 20px;
          line-height: 24px; } }

/* VIDEO QUIZ */
.video-quiz {
  margin: 7.5% 0 5%;
  padding: 15px;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 200px top 30px;
  background-repeat: no-repeat; }
  @media (max-width: 1399px) {
    .video-quiz {
      margin: 5% 0; } }
  .video-quiz__multimedia {
    max-width: 50%;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .video-quiz__multimedia {
        max-width: none; } }
  .video-quiz__info p {
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin: 15px 0; }
  .video-quiz__link a {
    margin: 0 auto; }

/* QUIZ */
.quiz {
  padding: 15px;
  background-image: url("../img/tiles-white-bg.webp"), url("../img/tiles-four-white-bg.webp");
  background-position: right 200px bottom 100px, right 200px top 30px;
  background-repeat: no-repeat, no-repeat; }
  .quiz form {
    outline: 0; }
  .quiz__content {
    max-width: 75%;
    margin: 7.5% auto 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 55px; }
    @media (max-width: 767px) {
      .quiz__content {
        max-width: none;
        display: block; } }
  .quiz__head {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000000;
    padding: 0 0 0 55px; }
    .quiz__head::before {
      content: "";
      position: absolute;
      left: 0;
      top: 15px;
      width: 35px;
      height: 1px;
      border-top: 2px solid #000000; }
  .quiz__question {
    font-size: 32px;
    line-height: 48px;
    font-weight: bold;
    color: #0069B4;
    margin: 20px 0; }
    @media (max-width: 767px) {
      .quiz__question {
        font-size: 20px;
        line-height: 28px; } }
  .quiz__answer {
    margin: 35px 0; }
    .quiz__answer label {
      font-size: 24px;
      line-height: 29px; }
      @media (max-width: 767px) {
        .quiz__answer label {
          font-size: 18px;
          line-height: 23px; } }
  .quiz__image {
    flex-shrink: 0;
    width: 26.5vw;
    max-width: 510px; }
    @media (max-width: 1199px) {
      .quiz__image {
        flex-shrink: 0.5; } }
    @media (max-width: 767px) {
      .quiz__image {
        display: none; } }
  .quiz__carousel {
    width: 40vw;
    max-width: 750px; }
    @media (max-width: 767px) {
      .quiz__carousel {
        width: auto;
        max-width: none; } }
  .quiz__form {
    max-width: 1024px;
    margin: 7.5% auto 5%; }
    .quiz__form h1 {
      font-size: 32px;
      line-height: 48px;
      font-weight: bold;
      color: #0069B4;
      margin: 20px 0 50px; }
    .quiz__form h2 {
      position: relative;
      font-family: "Poppins", sans-serif;;
      font-size: 20px;
      line-height: 30px;
      font-weight: bold;
      color: #000000;
      padding: 0 0 0 55px; }
      .quiz__form h2::before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 35px;
        height: 1px;
        border-top: 2px solid #000000; }
    .quiz__form h3 {
      font-size: 24px;
      line-height: 29px;
      font-weight: 400;
      color: #000000;
      margin: 20px 0; }
    .quiz__form p {
      font-size: 18px;
      line-height: 25px;
      font-weight: 400;
      color: #000000;
      margin: 20px 0; }
    .quiz__form .checkbox label {
      font-size: 15px;
      line-height: 19px; }
      .quiz__form .checkbox label p {
        font-size: 15px;
        line-height: 19px;
        margin: 10px 0; }
    .quiz__form .radio, .quiz__form .checkbox {
      margin: 15px 0; }
  .quiz__statements {
    margin-left: 50px; }

/* VIDEO LIST */
.video-list {
  margin: 0;
  padding: 15px;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 100px top 30px;
  background-repeat: no-repeat; }
  .video-list__content {
    max-width: 75%;
    margin: 0 auto;
    background-image: url("../img/tiles-white-bg.webp");
    background-position: right 10px center;
    background-repeat: no-repeat; }
    @media (max-width: 767px) {
      .video-list__content {
        max-width: none; } }
  .video-list__item {
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-end;
    margin: 10% 0; }
    @media (max-width: 1199px) {
      .video-list__item {
        align-items: center; } }
    @media (max-width: 991px) {
      .video-list__item {
        flex-direction: column; } }
    @media (max-width: 767px) {
      .video-list__item {
        gap: 30px; } }
    .video-list__item__image {
      flex-shrink: 0;
      width: 21vw;
      max-width: 417px; }
      @media (max-width: 1199px) {
        .video-list__item__image {
          flex-shrink: 0.5; } }
      @media (max-width: 767px) {
        .video-list__item__image {
          flex-shrink: 0;
          max-width: 350px; } }
      @media (max-width: 575px) {
        .video-list__item__image {
          max-width: 250px; } }
    .video-list__item__title {
      font-size: 40px;
      line-height: 60px;
      font-weight: bold;
      color: #0069B4; }
      @media (max-width: 1399px) {
        .video-list__item__title {
          font-size: 26px;
          line-height: 34px; } }
      @media (max-width: 991px) {
        .video-list__item__title {
          text-align: center; } }
    .video-list__item__description {
      font-size: 24px;
      line-height: 29px;
      color: #000000;
      margin: 30px 0 45px; }
      @media (max-width: 1399px) {
        .video-list__item__description {
          font-size: 18px;
          line-height: 24px;
          margin: 20px 0; } }
      @media (max-width: 991px) {
        .video-list__item__description {
          text-align: center; } }
    .video-list__item__controls {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      gap: 30px; }
      @media (max-width: 767px) {
        .video-list__item__controls {
          flex-direction: column; } }
    .video-list__item__duration {
      display: flex;
      flex-direction: row;
      gap: 15px;
      align-items: center; }
      .video-list__item__duration__text {
        font-size: 20px;
        line-height: 30px;
        font-weight: bold; }
    .video-list__item__download {
      display: flex;
      flex-direction: row;
      gap: 15px;
      align-items: center; }
      @media (max-width: 767px) {
        .video-list__item__download {
          flex-direction: column; } }
      .video-list__item__download__text {
        font-size: 20px;
        line-height: 30px;
        font-weight: bold;
        color: #00CCCD; }

/* VIDEO */
.video {
  margin: 2.5% 0;
  padding: 15px;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 100px top 30px;
  background-repeat: no-repeat; }
  .video video {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0; }
  .video__content {
    max-width: 50%;
    margin: 0 auto;
    background-image: url("../img/tiles-white-bg.webp");
    background-position: right 10px center;
    background-repeat: no-repeat; }
    @media (max-width: 767px) {
      .video__content {
        max-width: none; } }
  .video__title {
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
    color: #0069B4; }
    @media (max-width: 1399px) {
      .video__title {
        font-size: 26px;
        line-height: 34px; } }
    @media (max-width: 767px) {
      .video__title {
        text-align: center; } }
  .video__description {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 15px; }
    @media (max-width: 1399px) {
      .video__description {
        font-size: 18px;
        line-height: 24px;
        margin: 20px 0; } }
    @media (max-width: 767px) {
      .video__description {
        text-align: center; } }
  .video__link a {
    margin: 20px auto; }

/* LEAVE OPINION */
.leave-opinion {
  background-image: url("../img/tiles-white-triangle.webp"), url("../img/tiles-four-white-bg.webp");
  background-position: right 15px bottom 35%, right top;
  background-repeat: no-repeat, no-repeat;
  /*
  ############
  ###### INTRO
  ############
  */
  /*
  ############
  ##### SURVEY
  ############
  */
  /*
  ############
  ## THANK YOU
  ############
  */ }
  .leave-opinion .slick-slide {
    padding: 0 5px; }
  @media (max-width: 1199px) {
    .leave-opinion {
      padding: 0; } }
  .leave-opinion__intro {
    padding: 50px 0; }
    @media (max-width: 1199px) {
      .leave-opinion__intro {
        padding: 0; } }
    .leave-opinion__intro h1 {
      font-size: 40px;
      line-height: 60px;
      font-weight: bold;
      color: #0069B4;
      margin: 15px 0; }
      @media (max-width: 767px) {
        .leave-opinion__intro h1 {
          font-size: 26px;
          line-height: 34px; } }
    .leave-opinion__intro h2 {
      font-size: 30px;
      line-height: 40px;
      color: #0069B4;
      margin: 15px 0;
      font-weight: 400; }
      @media (max-width: 767px) {
        .leave-opinion__intro h2 {
          font-size: 22px;
          line-height: 28px; } }
    .leave-opinion__intro p {
      font-size: 24px;
      line-height: 29px;
      color: #000000;
      margin: 0 0 45px; }
      @media (max-width: 767px) {
        .leave-opinion__intro p {
          font-size: 18px;
          line-height: 24px;
          margin: 0 0 25px; } }
    .leave-opinion__intro__info {
      max-width: 1430px;
      margin: 30px auto;
      padding: 15px;
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      justify-content: flex-start;
      gap: 15px; }
      @media (max-width: 991px) {
        .leave-opinion__intro__info {
          flex-direction: column;
          align-items: center;
          gap: 45px; } }
    .leave-opinion__intro__text {
      max-width: 770px; }
      @media (max-width: 991px) {
        .leave-opinion__intro__text {
          max-width: none; } }
    .leave-opinion__intro__img {
      flex-shrink: 0; }
      @media (max-width: 767px) {
        .leave-opinion__intro__img {
          max-width: 300px; } }
    .leave-opinion__intro__anchors {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 15px; }
      @media (max-width: 767px) {
        .leave-opinion__intro__anchors {
          flex-direction: column;
          align-items: flex-start; } }
      .leave-opinion__intro__anchors__regulation a {
        font-size: 18px;
        line-height: 24px;
        color: #04406B !important;
        text-decoration: underline; }
    .leave-opinion__intro__products-list {
      max-width: 1430px;
      margin: 30px auto;
      padding: 15px; }
      @media (max-width: 767px) {
        .leave-opinion__intro__products-list {
          margin: 0 auto; } }
      .leave-opinion__intro__products-list__img {
        position: relative;
        display: inline-block;
        padding-right: 80px; }
        @media (max-width: 991px) {
          .leave-opinion__intro__products-list__img {
            padding: 0; } }
        .leave-opinion__intro__products-list__img::before {
          content: "";
          position: absolute;
          top: 150px;
          bottom: 90px;
          left: -1000px;
          right: 0;
          background: #0069B4;
          border-radius: 20px;
          z-index: -1; }
          @media (max-width: 991px) {
            .leave-opinion__intro__products-list__img::before {
              display: none; } }
        .leave-opinion__intro__products-list__img img {
          margin: 15px 0; }
  .leave-opinion__survey h1 {
    font-size: 32px;
    line-height: 48px;
    font-weight: bold;
    color: #0069B4;
    margin: 15px 0; }
    .leave-opinion__survey h1.break-letters {
      word-break: break-word; }
    @media (max-width: 767px) {
      .leave-opinion__survey h1 {
        font-size: 24px;
        line-height: 30px; } }
  .leave-opinion__survey h2 {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    margin: 45px 0 15px;
    font-weight: 400;
    padding: 0 0 0 55px; }
    .leave-opinion__survey h2::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      width: 35px;
      height: 1px;
      border-top: 1px solid #000000; }
      @media (max-width: 767px) {
        .leave-opinion__survey h2::before {
          width: 25px; } }
    @media (max-width: 767px) {
      .leave-opinion__survey h2 {
        font-size: 16px;
        line-height: 20px;
        padding: 0 0 0 35px;
        margin: 0 0 15px; } }
  .leave-opinion__survey p {
    margin: 20px 0 0; }
  .leave-opinion__survey .answers {
    margin: 0 0 50px; }
    .leave-opinion__survey .answers div {
      margin: 30px 0; }
  .leave-opinion__survey .info-message {
    opacity: 0;
    display: none;
    color: #FF0000;
    font-size: 14px;
    line-height: 18px;
    margin: -16px 0 -17px; }
    .leave-opinion__survey .info-message.show {
      opacity: 1;
      display: block; }
  .leave-opinion__survey .number-of-characters {
    text-align: right;
    font-size: 18px;
    line-hegith: 22px;
    color: rgba(0, 0, 0, 0.5); }
  .leave-opinion__survey__content {
    max-width: 1600px;
    margin: 30px auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 75px;
    padding: 15px; }
    @media (max-width: 991px) {
      .leave-opinion__survey__content {
        flex-direction: column-reverse;
        align-items: center; } }
  @media (max-width: 1399px) {
    .leave-opinion__survey__img {
      max-width: 400px; } }
  @media (max-width: 1199px) {
    .leave-opinion__survey__img {
      max-width: 300px; } }
  .leave-opinion__survey__quiz {
    flex-shrink: 0;
    max-width: 670px; }
    @media (max-width: 1199px) {
      .leave-opinion__survey__quiz {
        max-width: 500px; } }
    @media (max-width: 991px) {
      .leave-opinion__survey__quiz {
        max-width: 100%;
        flex-shrink: 1; } }
  .leave-opinion__thank-you__message {
    max-width: 650px;
    margin: 75px auto -125px;
    padding: 15px; }
    @media (max-width: 1399px) {
      .leave-opinion__thank-you__message {
        margin: 50px auto; } }
    .leave-opinion__thank-you__message h1 {
      font-size: 32px;
      line-height: 48px;
      font-weight: bold;
      color: #0069B4;
      margin: 15px 0; }
      @media (max-width: 767px) {
        .leave-opinion__thank-you__message h1 {
          font-size: 26px;
          line-height: 34px; } }
    .leave-opinion__thank-you__message h2 {
      position: relative;
      font-size: 20px;
      line-height: 30px;
      color: #000000;
      margin: 45px 0 15px;
      font-weight: bold;
      padding: 0 0 0 55px; }
      .leave-opinion__thank-you__message h2::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        width: 35px;
        height: 1px;
        border-top: 1px solid #000000; }
        @media (max-width: 767px) {
          .leave-opinion__thank-you__message h2::before {
            width: 25px; } }
      @media (max-width: 767px) {
        .leave-opinion__thank-you__message h2 {
          font-size: 16px;
          line-height: 20px;
          padding: 0 0 0 35px;
          margin: 0 0 15px; } }
    .leave-opinion__thank-you__message p {
      font-size: 24px;
      line-height: 29px;
      color: #000000;
      margin: 0 0 45px; }
      @media (max-width: 767px) {
        .leave-opinion__thank-you__message p {
          font-size: 18px;
          line-height: 24px;
          margin: 0 0 25px; } }

/* OPINIONS HERO */
.opinions-hero {
  padding: 15px;
  background-color: #F5FAFC;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 100px top 30px;
  background-repeat: no-repeat; }
  .opinions-hero__container {
    max-width: 1400px;
    margin: 100px auto 0; }
    @media (max-width: 991px) {
      .opinions-hero__container {
        margin: 50px auto 0; } }
  .opinions-hero__text {
    max-width: 950px; }
  .opinions-hero h1 {
    font-size: 40px;
    line-height: 40px;
    color: #0069B4;
    font-weight: 800;
    font-family: "Poppins", sans-serif;; }
    @media (max-width: 991px) {
      .opinions-hero h1 {
        font-size: 30px;
        line-height: 36px; } }
  .opinions-hero h2 {
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #0069B4;
    font-family: "Poppins", sans-serif;; }
    @media (max-width: 991px) {
      .opinions-hero h2 {
        font-size: 25px;
        line-height: 31px; } }
  .opinions-hero p {
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin: 30px 0; }
    @media (max-width: 991px) {
      .opinions-hero p {
        font-size: 18px;
        line-height: 24px; } }

/* OPINIONS INFO */
.opinions-info {
  padding: 15px;
  background-color: #FFFFFF; }
  .opinions-info__container {
    max-width: 1400px;
    margin: 50px auto 0; }
  .opinions-info__list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 50px auto; }
    @media (max-width: 767px) {
      .opinions-info__list {
        flex-direction: column;
        align-items: center; } }
    .opinions-info__list__item {
      max-width: 360px;
      width: 100%; }
  .opinions-info h1 {
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;;
    color: #0069B4;
    text-align: center; }
    @media (max-width: 991px) {
      .opinions-info h1 {
        font-size: 25px;
        line-height: 31px; } }
  .opinions-info p {
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    margin: 15px 0;
    text-align: center; }
    @media (max-width: 991px) {
      .opinions-info p {
        font-size: 18px;
        line-height: 24px; } }
  .opinions-info img {
    margin: 0 auto; }

/* OPINIONS PRODUCTS COMMENTS */
.opinions-products-comments {
  background-color: #F5FAFC;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: left 100px bottom 30px;
  background-repeat: no-repeat;
  padding: 50px 0; }
  .opinions-products-comments .opinions-product {
    display: none;
    opacity: 0; }
    .opinions-products-comments .opinions-product.active {
      display: block;
      opacity: 1; }
  .opinions-products-comments__item__product {
    max-width: 1400px;
    margin: 0 auto;
    background-image: url("../img/tiles-white-bg.webp");
    background-position: left 32.5% top 20%;
    background-repeat: no-repeat; }
    @media (max-width: 1399px) {
      .opinions-products-comments__item__product {
        padding: 0 15px; } }
    .opinions-products-comments__item__product__header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 20px; }
      @media (max-width: 767px) {
        .opinions-products-comments__item__product__header {
          flex-wrap: wrap; } }
      .opinions-products-comments__item__product__header h1 {
        flex-shrink: 0;
        font-size: 40px;
        line-height: 40px;
        font-family: "Poppins", sans-serif;;
        margin: 0; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__product__header h1 {
            font-size: 30px;
            line-height: 30px; } }
        @media (max-width: 575px) {
          .opinions-products-comments__item__product__header h1 {
            flex-shrink: 1; } }
      .opinions-products-comments__item__product__header h2 {
        flex-shrink: 0;
        font-size: 24px;
        line-height: 24px;
        font-family: "Roboto", sans-serif;;
        margin: 0; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__product__header h2 {
            font-size: 18px;
            line-height: 18px; } }
        @media (max-width: 575px) {
          .opinions-products-comments__item__product__header h2 {
            flex-shrink: 1; } }
      .opinions-products-comments__item__product__header div {
        width: 100%;
        border-top: 1px solid #0069B4;
        height: 1px; }
      .opinions-products-comments__item__product__header button {
        flex-shrink: 0;
        border: 0;
        background: none;
        outline: none; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__product__header button {
            max-width: 70px; } }
    .opinions-products-comments__item__product__content {
      margin: 100px auto 0;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 80px; }
      @media (max-width: 991px) {
        .opinions-products-comments__item__product__content {
          margin: 50px auto 0;
          gap: 50px; } }
      @media (max-width: 991px) {
        .opinions-products-comments__item__product__content {
          flex-direction: column;
          align-items: center;
          justify-content: center; } }
      @media (max-width: 575px) {
        .opinions-products-comments__item__product__content {
          margin: 25px auto 0;
          gap: 25px; } }
    .opinions-products-comments__item__product__image {
      flex-shrink: 0; }
      @media (max-width: 1199px) {
        .opinions-products-comments__item__product__image {
          flex-shrink: 0.75; } }
      @media (max-width: 991px) {
        .opinions-products-comments__item__product__image {
          flex-shrink: 1;
          max-width: 400px; } }
      @media (max-width: 575px) {
        .opinions-products-comments__item__product__image {
          max-width: 200px; } }
    .opinions-products-comments__item__product__info__progressbar {
      display: flex;
      flex-direction: row;
      gap: 30px;
      align-items: center;
      justify-content: flex-start;
      margin: 15px auto 35px; }
      @media (max-width: 767px) {
        .opinions-products-comments__item__product__info__progressbar {
          flex-direction: column; } }
      .opinions-products-comments__item__product__info__progressbar__graph .progressbar {
        position: relative;
        width: 210px;
        height: 210px;
        border-radius: 50%;
        transform: rotateZ(95deg);
        background: #F5FAFC; }
        .opinions-products-comments__item__product__info__progressbar__graph .progressbar-ring {
          transform: rotate(-90deg); }
        .opinions-products-comments__item__product__info__progressbar__graph .progressbar-ring-bg {
          fill: none;
          stroke: #F5FAFC; }
        .opinions-products-comments__item__product__info__progressbar__graph .progressbar-steps-group .step {
          fill: rgba(0, 159, 227, 0.25);
          transition: fill 0.5s ease-in-out; }
        .opinions-products-comments__item__product__info__progressbar__graph .progressbar-steps-group .step.completed {
          fill: #009FE3; }
        .opinions-products-comments__item__product__info__progressbar__graph .progressbar-percentage-text {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%) rotateZ(-95deg);
          font-size: 40px;
          line-height: 40px;
          font-weight: bold;
          font-family: "Poppins", sans-serif;;
          color: #0A2C45; }
      .opinions-products-comments__item__product__info__progressbar p {
        font-size: 24px;
        line-height: 36px;
        max-width: 400px; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__product__info__progressbar p {
            font-size: 18px;
            line-height: 24px; } }
        @media (max-width: 767px) {
          .opinions-products-comments__item__product__info__progressbar p {
            max-width: none;
            text-align: center; } }
    .opinions-products-comments__item__product__info__warning {
      display: flex;
      flex-direction: row;
      gap: 40px;
      padding: 0 30px; }
      @media (max-width: 767px) {
        .opinions-products-comments__item__product__info__warning {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 15px; } }
      .opinions-products-comments__item__product__info__warning__image {
        flex-shrink: 0; }
      .opinions-products-comments__item__product__info__warning__text p {
        margin: 15px 0;
        font-size: 24px;
        line-height: 36px;
        max-width: 500px; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__product__info__warning__text p {
            font-size: 18px;
            line-height: 24px; } }
        @media (max-width: 767px) {
          .opinions-products-comments__item__product__info__warning__text p {
            max-width: none;
            text-align: center; } }
  @media (max-width: 1399px) {
    .opinions-products-comments__item__comments {
      padding: 0 15px; } }
  .opinions-products-comments__item__comments__header {
    padding: 35px 15px;
    border-radius: 10px;
    max-width: 1400px;
    margin: 50px auto 25px;
    background: #009FE3; }
    .opinions-products-comments__item__comments__header h3 {
      font-size: 32px;
      line-height: 38px;
      font-weight: 400;
      font-family: "Poppins", sans-serif;;
      color: #FFFFFF;
      margin: 0;
      text-align: center; }
      @media (max-width: 991px) {
        .opinions-products-comments__item__comments__header h3 {
          font-size: 25px;
          line-height: 31px; } }
  .opinions-products-comments__item__comments__content {
    overflow: hidden; }
  .opinions-products-comments__item__comments__list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 7000px;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }
    .opinions-products-comments__item__comments__list:hover {
      animation-play-state: paused; }
      @media (max-width: 1199px) {
        .opinions-products-comments__item__comments__list:hover {
          animation-play-state: running; } }
    .opinions-products-comments__item__comments__list:nth-child(1) {
      animation-name: scrollLeft;
      animation-duration: 75s; }
    .opinions-products-comments__item__comments__list:nth-child(2) {
      animation-name: scrollRight;
      animation-duration: 100s; }
    .opinions-products-comments__item__comments__list:nth-child(3) {
      animation-name: scrollLeft;
      animation-duration: 80s; }
@keyframes scrollLeft {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }
@keyframes scrollRight {
  from {
    transform: translateX(-50%); }
  to {
    transform: translateX(0); } }
    .opinions-products-comments__item__comments__list__item {
      padding: 30px 15px 15px 30px;
      height: 185px;
      min-width: 215px;
      max-width: 1300px;
      background: #FFFFFF;
      border-radius: 10px;
      margin: 15px 0; }
      @media (max-width: 991px) {
        .opinions-products-comments__item__comments__list__item {
          width: 100%;
          max-width: 768px; } }
      .opinions-products-comments__item__comments__list__item img {
        margin: 0; }
      .opinions-products-comments__item__comments__list__item p {
        font-size: 16px;
        line-height: normal;
        font-style: italic;
        font-weight: 600;
        color: #0A2C45;
        font-family: "Poppins", sans-serif;;
        margin: 20px 0 0; }
        @media (max-width: 991px) {
          .opinions-products-comments__item__comments__list__item p {
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden; } }
  .opinions-products-comments__item__footnotes {
    max-width: 1400px;
    margin: 30px auto 0; }
    @media (max-width: 1399px) {
      .opinions-products-comments__item__footnotes {
        padding: 0 15px; } }
    .opinions-products-comments__item__footnotes p {
      font-size: 14px;
      line-height: 21px;
      color: #000000;
      margin: 0; }

/* SCHOOLING INTRO */
.schooling-intro {
  padding: 15px;
  margin: 7.5% 0;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative; }
  @media (max-width: 1399px) {
    .schooling-intro {
      margin: 2.5% 0; } }
  @media (max-width: 1199px) {
    .schooling-intro {
      background-position: left center;
      padding: 50px 15px; } }
  @media (max-width: 767px) {
    .schooling-intro {
      background-position: right top 20px; } }
  .schooling-intro::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 100px;
    z-index: -1; }
    @media (max-width: 1399px) {
      .schooling-intro::before {
        top: 45px;
        bottom: 35px; } }
    @media (max-width: 1199px) {
      .schooling-intro::before {
        top: 0;
        bottom: 0; } }
  .schooling-intro__content {
    position: relative;
    z-index: 9;
    max-width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 55px; }
    @media (max-width: 767px) {
      .schooling-intro__content {
        max-width: none; } }
  .schooling-intro__description h1 {
    font-family: "Poppins", sans-serif;;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    color: #0069B4;
    margin: 35px 0;
    text-align: right; }
    @media (max-width: 1399px) {
      .schooling-intro__description h1 {
        font-size: 32px;
        line-height: 48px;
        margin: 15px 0; } }
    @media (max-width: 1199px) {
      .schooling-intro__description h1 {
        text-align: left; } }
    @media (max-width: 767px) {
      .schooling-intro__description h1 {
        font-size: 28px;
        line-height: 36px; } }
  .schooling-intro__description h2 {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: #000000;
    padding: 0 55px 0 0;
    text-align: right; }
    @media (max-width: 1199px) {
      .schooling-intro__description h2 {
        text-align: left;
        padding: 0 0 0 55px; } }
    .schooling-intro__description h2::before {
      content: "";
      position: absolute;
      right: 0;
      top: 15px;
      width: 35px;
      height: 1px;
      border-top: 2px solid #000000; }
      @media (max-width: 1199px) {
        .schooling-intro__description h2::before {
          right: auto;
          left: 0; } }
  .schooling-intro__description p {
    position: relative;
    font-family: "Poppins", sans-serif;;
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    text-align: right; }
    @media (max-width: 1199px) {
      .schooling-intro__description p {
        text-align: left; } }
  .schooling-intro__description a {
    margin: 50px 0 0;
    margin-right: 0;
    margin-left: auto; }
    @media (max-width: 1399px) {
      .schooling-intro__description a {
        margin: 15px 0 0;
        margin-right: 0;
        margin-left: auto; } }
    @media (max-width: 767px) {
      .schooling-intro__description a {
        margin: 30px 0 20px; } }
  .schooling-intro__image {
    flex-shrink: 0;
    width: 32.8vw;
    max-width: 630px; }
    @media (max-width: 1199px) {
      .schooling-intro__image {
        flex-shrink: 0.5; } }
    @media (max-width: 767px) {
      .schooling-intro__image {
        display: none; } }

/* SCHOOLING LIST */
.schooling-list {
  margin: 0;
  padding: 15px;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 100px top 30px;
  background-repeat: no-repeat; }
  .schooling-list__intro {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 15px; }
    .schooling-list__intro h1 {
      text-align: center;
      margin: 30px 0;
      font-size: 40px;
      line-height: 60px;
      font-weight: 700;
      color: #0069B4; }
      @media (max-width: 1199px) {
        .schooling-list__intro h1 {
          font-size: 24px;
          line-height: 30px; } }
    .schooling-list__intro h2 {
      text-align: center;
      margin: 30px 0;
      font-size: 24px;
      line-height: 39px;
      font-weight: 400;
      color: #000000; }
      @media (max-width: 1199px) {
        .schooling-list__intro h2 {
          font-size: 18px;
          line-height: 24px; } }
  .schooling-list__content {
    background-image: url("../img/tiles-white-bg.webp");
    background-position: right 10px center;
    background-repeat: no-repeat; }
    @media (max-width: 767px) {
      .schooling-list__content {
        max-width: none; } }
  .schooling-list__item {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: flex-end;
    position: relative;
    z-index: 9; }
    .schooling-list__item::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: white;
      z-index: -1; }
    @media (max-width: 1199px) {
      .schooling-list__item {
        align-items: center;
        gap: 60px; } }
    @media (max-width: 767px) {
      .schooling-list__item {
        flex-direction: column;
        gap: 45px; } }
    @media (max-width: 767px) {
      .schooling-list__item {
        gap: 30px; } }
    .schooling-list__item-wrapper {
      margin: 30px auto;
      padding: 30px 15px;
      position: relative; }
      .schooling-list__item-wrapper::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: white;
        z-index: -1; }
    .schooling-list__item__image {
      flex-shrink: 0;
      width: 21vw;
      max-width: 280px;
      min-width: 220px; }
      @media (max-width: 1199px) {
        .schooling-list__item__image {
          flex-shrink: 0.5; } }
      @media (max-width: 767px) {
        .schooling-list__item__image {
          flex-shrink: 0;
          max-width: 270px; } }
      @media (max-width: 575px) {
        .schooling-list__item__image {
          max-width: 240px; } }
    .schooling-list__item__title {
      margin: 15px 0 25px;
      font-size: 24px;
      line-height: 29px;
      font-weight: 400;
      color: #0069B4; }
      @media (max-width: 1199px) {
        .schooling-list__item__title {
          font-size: 18px;
          line-height: 24px; } }
    .schooling-list__item__description {
      position: relative;
      padding: 0 0 0 55px;
      font-size: 20px;
      line-height: 30px;
      font-weight: 700;
      color: #000000;
      margin: 0; }
      .schooling-list__item__description::before {
        content: "";
        position: absolute;
        left: 0;
        top: 15px;
        width: 35px;
        height: 1px;
        border-top: 2px solid #000000; }
        @media (max-width: 1199px) {
          .schooling-list__item__description::before {
            top: 10px; } }
      @media (max-width: 1199px) {
        .schooling-list__item__description {
          font-size: 14px;
          line-height: 21px;
          margin: 20px 0; } }
    .schooling-list__item__controls {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin: 15px 0 0;
      gap: 30px; }
      @media (max-width: 767px) {
        .schooling-list__item__controls {
          flex-direction: column; } }

/* SCHOOLING */
.schooling {
  margin: 2.5% 0;
  padding: 15px;
  background-image: url("../img/tiles-four-white-bg.webp");
  background-position: right 100px top 30px;
  background-repeat: no-repeat; }
  .schooling video {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0; }
  .schooling__content {
    max-width: 50%;
    margin: 0 auto;
    background-image: url("../img/tiles-white-bg.webp");
    background-position: right 10px center;
    background-repeat: no-repeat; }
    @media (max-width: 767px) {
      .schooling__content {
        max-width: none; } }
  .schooling__title {
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
    color: #0069B4; }
    @media (max-width: 1399px) {
      .schooling__title {
        font-size: 26px;
        line-height: 34px; } }
    @media (max-width: 767px) {
      .schooling__title {
        text-align: center; } }
  .schooling__description {
    font-size: 24px;
    line-height: 29px;
    color: #000000;
    margin: 0 0 15px; }
    @media (max-width: 1399px) {
      .schooling__description {
        font-size: 18px;
        line-height: 24px;
        margin: 20px 0; } }
    @media (max-width: 767px) {
      .schooling__description {
        text-align: center; } }
  .schooling__link a {
    margin: 20px auto; }

/* ABOUT AUTHOR */
.about-author__content {
  max-width: 1550px;
  margin: 15px auto;
  padding: 15px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center; }
  @media (max-width: 767px) {
    .about-author__content {
      flex-direction: column; } }
.about-author__image {
  flex-shrink: 0;
  width: 17.2vw;
  max-width: 330px;
  min-width: 220px; }
  @media (max-width: 767px) {
    .about-author__image {
      flex-shrink: 0.5; } }
.about-author__description p {
  position: relative;
  font-family: "Poppins", sans-serif;;
  font-size: 24px;
  line-height: 29px;
  color: #000000; }
  @media (max-width: 1399px) {
    .about-author__description p {
      font-size: 18px;
      line-height: 24px; } }
  @media (max-width: 767px) {
    .about-author__description p {
      font-size: 14px;
      line-height: 21px; } }

/* INFOGRAPHIC */
.infographic__hero {
  background-image: url("../img/bg-purple-skew.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 15px 1px;
  margin: 0 0 175px; }
  @media (max-width: 767px) {
    .infographic__hero {
      margin: 0 0 100px; } }
  .infographic__hero__container {
    max-width: 1920px;
    margin: 0 auto; }
  .infographic__hero__content {
    max-width: 1000px;
    margin: 0 auto; }
  @media (max-width: 1199px) {
    .infographic__hero__separator {
      max-width: 70%; } }
  @media (max-width: 767px) {
    .infographic__hero__separator {
      display: none; } }
  .infographic__hero__separator img {
    margin: 0 0 80px; }
    @media (max-width: 991px) {
      .infographic__hero__separator img {
        margin: 0 0 35px; } }
  .infographic__hero__title {
    margin: 15px 0 30px;
    font-size: 60px;
    line-height: 82px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center; }
    @media (max-width: 991px) {
      .infographic__hero__title {
        font-size: 30px;
        line-height: 36px; } }
    .infographic__hero__title img {
      max-height: 40px;
      display: inline-block;
      vertical-align: baseline; }
      @media (max-width: 991px) {
        .infographic__hero__title img {
          max-height: 21px; } }
  .infographic__hero__description {
    margin: 30px 0 75px;
    font-size: 46px;
    line-height: 63px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center; }
    @media (max-width: 991px) {
      .infographic__hero__description {
        font-size: 22px;
        line-height: 30px; } }
  .infographic__hero__image {
    margin: 0 auto -120px; }
    @media (max-width: 767px) {
      .infographic__hero__image {
        margin: 0 auto -50px; } }
.infographic__prevelance {
  position: relative;
  margin: 250px 0 150px; }
  @media (max-width: 767px) {
    .infographic__prevelance {
      margin: 150px 0 100px; } }
  @media (max-width: 575px) {
    .infographic__prevelance {
      margin: 100px 0 25px; } }
  .infographic__prevelance::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    right: 47.5%;
    top: 0;
    bottom: 0;
    background: #F2921E; }
    @media (max-width: 575px) {
      .infographic__prevelance::after {
        right: 0; } }
  .infographic__prevelance::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    right: 0;
    top: -50px;
    bottom: -50px;
    background-image: url("../img/infographic/prevelance.png");
    background-repeat: no-repeat;
    background-position: left center; }
    @media (max-width: 575px) {
      .infographic__prevelance::before {
        display: none; } }
  .infographic__prevelance__content {
    max-width: 1300px;
    margin: 0 auto; }
  .infographic__prevelance__info {
    max-width: 50%;
    text-align: right;
    padding: 50px;
    position: relative;
    z-index: 1; }
    @media (max-width: 575px) {
      .infographic__prevelance__info {
        max-width: none;
        padding: 35px; } }
    .infographic__prevelance__info p {
      font-size: 46px;
      line-height: 63px;
      font-weight: normal;
      text-align: center; }
      @media (max-width: 991px) {
        .infographic__prevelance__info p {
          font-size: 22px;
          line-height: 30px; } }
      .infographic__prevelance__info p span {
        font-size: 60px;
        line-height: 82px; }
        @media (max-width: 991px) {
          .infographic__prevelance__info p span {
            font-size: 28px;
            line-height: 38px; } }
    @media (max-width: 575px) {
      .infographic__prevelance__info img {
        max-width: 50%; } }
.infographic__ovulation {
  padding: 15px; }
  .infographic__ovulation__content {
    max-width: 1150px;
    margin: 0 auto; }
  .infographic__ovulation__list {
    margin: 45px 0 70px; }
    @media (max-width: 991px) {
      .infographic__ovulation__list {
        margin: 30px 0 45px; } }
    .infographic__ovulation__list__item {
      margin: 10px 0;
      padding: 5px 15px; }
      .infographic__ovulation__list__item:nth-child(1) {
        background: #F2921E; }
      .infographic__ovulation__list__item p {
        font-size: 36px;
        line-height: 49px;
        font-weight: normal;
        text-align: center;
        margin: 0; }
        @media (max-width: 991px) {
          .infographic__ovulation__list__item p {
            font-size: 18px;
            line-height: 26px; } }
  .infographic__ovulation h1 {
    font-size: 46px;
    line-height: 63px;
    font-weight: normal;
    text-align: center;
    margin: 30px 0; }
    @media (max-width: 991px) {
      .infographic__ovulation h1 {
        font-size: 22px;
        line-height: 30px;
        margin: 15px 0; } }
  @media (max-width: 991px) {
    .infographic__ovulation img {
      max-width: 600px; } }
  @media (max-width: 767px) {
    .infographic__ovulation img {
      max-width: 100%; } }
.infographic__working {
  padding: 15px; }
  .infographic__working__content {
    max-width: 1150px;
    margin: 75px auto 0; }
    @media (max-width: 991px) {
      .infographic__working__content {
        margin: 25px auto 0; } }
  .infographic__working h1 {
    font-size: 46px;
    line-height: 63px;
    font-weight: normal;
    text-align: center; }
    @media (max-width: 991px) {
      .infographic__working h1 {
        font-size: 22px;
        line-height: 30px; } }
    @media (max-width: 767px) {
      .infographic__working h1 {
        margin: 15px 0; } }
  .infographic__working img {
    margin: 45px auto 0; }
    @media (max-width: 991px) {
      .infographic__working img {
        max-width: 600px;
        margin: 25px auto 0; } }
    @media (max-width: 767px) {
      .infographic__working img {
        max-width: 100%; } }
.infographic__effectiveness {
  padding: 15px; }
  .infographic__effectiveness__content {
    max-width: 950px;
    margin: 25px auto 0; }
  .infographic__effectiveness h1 {
    font-size: 46px;
    line-height: 63px;
    font-weight: normal;
    text-align: center;
    margin: 0 0 45px; }
    @media (max-width: 991px) {
      .infographic__effectiveness h1 {
        font-size: 22px;
        line-height: 30px;
        margin: 15px 0; } }
  .infographic__effectiveness h2 {
    font-size: 36px;
    line-height: 49px;
    font-weight: normal;
    text-align: center;
    margin: 45px 0 0; }
    @media (max-width: 991px) {
      .infographic__effectiveness h2 {
        font-size: 20px;
        line-height: 28px;
        margin: 15px 0; } }
  .infographic__effectiveness p {
    font-size: 30px;
    line-height: 41px;
    font-weight: 800;
    text-align: center;
    margin: 30px 0; }
    @media (max-width: 991px) {
      .infographic__effectiveness p {
        font-size: 18px;
        line-height: 26px;
        margin: 15px 0; } }
  @media (max-width: 991px) {
    .infographic__effectiveness img {
      max-width: 600px; } }
  @media (max-width: 767px) {
    .infographic__effectiveness img {
      max-width: 100%; } }
.infographic__safety {
  padding: 15px; }
  .infographic__safety__content {
    max-width: 1450px;
    margin: 25px auto 0; }
    @media (max-width: 767px) {
      .infographic__safety__content {
        margin: 0 auto; } }
  .infographic__safety__info {
    margin: 45px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5%; }
    @media (max-width: 767px) {
      .infographic__safety__info {
        flex-direction: column;
        margin: 30px 0; } }
    .infographic__safety__info--reverse {
      flex-direction: row-reverse; }
      @media (max-width: 767px) {
        .infographic__safety__info--reverse {
          flex-direction: column; } }
    .infographic__safety__info__image {
      width: 47.5%; }
      @media (max-width: 767px) {
        .infographic__safety__info__image {
          width: 100%; } }
      .infographic__safety__info__image img {
        margin-left: auto;
        margin-right: 0; }
        @media (max-width: 767px) {
          .infographic__safety__info__image img {
            margin: 0 auto; } }
      .infographic__safety__info__image--left img {
        margin: 0; }
        @media (max-width: 767px) {
          .infographic__safety__info__image--left img {
            margin: 0 auto; } }
    .infographic__safety__info__description {
      width: 47.5%; }
      @media (max-width: 767px) {
        .infographic__safety__info__description {
          width: 100%;
          padding: 15px 0; } }
      .infographic__safety__info__description p {
        font-size: 30px;
        line-height: 41px;
        font-weight: normal;
        color: #000000;
        text-align: left;
        margin: 0; }
        @media (max-width: 991px) {
          .infographic__safety__info__description p {
            font-size: 22px;
            line-height: 30px; } }
        .infographic__safety__info__description p span {
          font-weight: 700; }
      .infographic__safety__info__description--right p {
        text-align: right; }
        @media (max-width: 767px) {
          .infographic__safety__info__description--right p {
            text-align: left; } }
  .infographic__safety__list {
    margin: 60px auto;
    max-width: 800px; }
    @media (max-width: 991px) {
      .infographic__safety__list {
        margin: 30px auto 45px; } }
    .infographic__safety__list__item {
      margin: 10px 0;
      padding: 5px 15px; }
      .infographic__safety__list__item:nth-child(1) {
        background: #F2921E; }
      .infographic__safety__list__item p {
        font-size: 36px;
        line-height: 49px;
        font-weight: 700;
        text-align: center;
        margin: 0; }
        @media (max-width: 991px) {
          .infographic__safety__list__item p {
            font-size: 18px;
            line-height: 26px; } }
  .infographic__safety h1 {
    font-size: 46px;
    line-height: 63px;
    font-weight: normal;
    text-align: center;
    margin: 0 0 30px; }
    @media (max-width: 991px) {
      .infographic__safety h1 {
        font-size: 22px;
        line-height: 30px;
        margin: 15px 0; } }
.infographic__indications {
  margin: 350px 0 0; }
  @media (max-width: 991px) {
    .infographic__indications {
      margin: 425px 0 0; } }
  .infographic__indications__content {
    max-width: 1375px;
    margin: 0 auto; }
  .infographic__indications__description {
    position: relative;
    max-width: 1050px;
    margin-left: auto;
    margin-right: 0;
    padding: 40px 110px 75px;
    background: #F2921E; }
    @media (max-width: 767px) {
      .infographic__indications__description {
        padding: 35px; } }
    .infographic__indications__description::before {
      content: "";
      position: absolute;
      left: -52.5%;
      top: -300px;
      width: 635px;
      height: 598px;
      background-image: url("../img/infographic/indications.png");
      background-size: contain;
      background-position: center top;
      background-repeat: no-repeat;
      z-index: -1; }
      @media (max-width: 1399px) {
        .infographic__indications__description::before {
          left: -15%; } }
      @media (max-width: 991px) {
        .infographic__indications__description::before {
          left: 50%;
          transform: translateX(-50%);
          top: -375px; } }
      @media (max-width: 767px) {
        .infographic__indications__description::before {
          width: 80%; } }
    .infographic__indications__description h1 {
      font-size: 60px;
      line-height: 82px;
      font-weight: normal;
      margin: 0;
      text-align: left; }
      @media (max-width: 991px) {
        .infographic__indications__description h1 {
          font-size: 26px;
          line-height: 32px; } }
    .infographic__indications__description p {
      font-size: 36px;
      line-height: 49px;
      font-weight: normal;
      margin: 0; }
      @media (max-width: 991px) {
        .infographic__indications__description p {
          font-size: 26px;
          line-height: 32px; } }
      .infographic__indications__description p span {
        font-weight: 700; }
    .infographic__indications__description img {
      margin: 15px 0 20px; }
      @media (max-width: 767px) {
        .infographic__indications__description img {
          max-width: 50%; } }
.infographic__dosage {
  margin: 350px 0 0; }
  @media (max-width: 991px) {
    .infographic__dosage {
      margin: 425px 0 0; } }
  .infographic__dosage__content {
    max-width: 1375px;
    margin: 0 auto; }
  .infographic__dosage__description {
    position: relative;
    max-width: 1050px;
    padding: 40px 110px; }
    @media (max-width: 767px) {
      .infographic__dosage__description {
        padding: 35px; } }
    .infographic__dosage__description::before {
      content: "";
      position: absolute;
      right: -52.5%;
      top: -300px;
      width: 635px;
      height: 598px;
      background-image: url("../img/infographic/dosage.png");
      background-size: contain;
      background-position: center top;
      background-repeat: no-repeat;
      z-index: -1; }
      @media (max-width: 1399px) {
        .infographic__dosage__description::before {
          right: -15%; } }
      @media (max-width: 991px) {
        .infographic__dosage__description::before {
          left: 50%;
          transform: translateX(-50%);
          top: -375px; } }
      @media (max-width: 767px) {
        .infographic__dosage__description::before {
          width: 80%; } }
    .infographic__dosage__description h1 {
      font-size: 60px;
      line-height: 82px;
      font-weight: normal;
      margin: 0;
      text-align: left; }
      @media (max-width: 991px) {
        .infographic__dosage__description h1 {
          font-size: 26px;
          line-height: 32px; } }
    .infographic__dosage__description ul {
      padding-left: 30px; }
    .infographic__dosage__description li {
      font-size: 36px;
      line-height: 49px;
      margin: 35px 0; }
      @media (max-width: 991px) {
        .infographic__dosage__description li {
          font-size: 26px;
          line-height: 32px;
          margin: 15px 0; } }
    .infographic__dosage__description p {
      font-size: 36px;
      line-height: 49px;
      font-weight: normal;
      margin: 0; }
      @media (max-width: 991px) {
        .infographic__dosage__description p {
          font-size: 26px;
          line-height: 32px; } }
      .infographic__dosage__description p span {
        font-weight: 700; }
    .infographic__dosage__description img {
      margin: 15px 0 20px; }
      @media (max-width: 767px) {
        .infographic__dosage__description img {
          max-width: 50%; } }
.infographic__prescription {
  padding: 35px 0;
  margin: 115px 0 25px; }
  @media (max-width: 991px) {
    .infographic__prescription {
      padding: 25px 0;
      margin: 50px 0; } }
  .infographic__prescription__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .infographic__prescription__content h1 {
      font-size: 60px;
      line-height: 82px;
      color: #FFFFFF;
      text-align: center;
      margin: 0; }
      @media (max-width: 991px) {
        .infographic__prescription__content h1 {
          font-size: 30px;
          line-height: 36px; } }

/* ARTICLE */
.article__download {
  position: fixed;
  right: 50px;
  bottom: 50px;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid;
  border-radius: 50%;
  z-index: 99; }
  @media (max-width: 1399px) {
    .article__download {
      right: 10px;
      width: 175px;
      height: 175px; } }
  @media (max-width: 1199px) {
    .article__download {
      width: 150px;
      height: 150px; } }
  @media (max-width: 991px) {
    .article__download {
      width: 100px;
      height: 100px; } }
  @media (max-width: 767px) {
    .article__download {
      left: 0;
      right: 0;
      bottom: 0;
      border: 0;
      border-radius: 0;
      width: 100%;
      height: auto; } }
  .article__download__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 90%;
    height: 90%; }
    @media (max-width: 767px) {
      .article__download__content {
        border-radius: 0;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 15px; } }
  .article__download__info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    @media (max-width: 767px) {
      .article__download__info {
        border-radius: 0;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px; } }
  .article__download p {
    font-size: 20px;
    line-height: 24px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    margin: 0; }
    @media (max-width: 1399px) {
      .article__download p {
        font-size: 18px;
        line-height: 22px; } }
    @media (max-width: 1199px) {
      .article__download p {
        font-size: 16px;
        line-height: 20px; } }
    @media (max-width: 991px) {
      .article__download p {
        font-size: 10px;
        line-height: 13px; } }
    @media (max-width: 767px) {
      .article__download p {
        font-size: 16px;
        line-height: 20px;
        text-align: left; } }
  .article__download img {
    margin: 10px auto -15px; }
    @media (max-width: 1199px) {
      .article__download img {
        max-width: 20px; } }
    @media (max-width: 991px) {
      .article__download img {
        max-width: 10px;
        margin: 5px auto -10px; } }
    @media (max-width: 767px) {
      .article__download img {
        max-width: 100%;
        margin: 0; } }
.article__hero {
  padding: 40px 15px; }
  .article__hero__content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 5%;
    align-items: center;
    justify-content: center; }
    @media (max-width: 767px) {
      .article__hero__content {
        flex-direction: column; } }
  .article__hero__image {
    flex-shrink: 0; }
    @media (max-width: 991px) {
      .article__hero__image {
        flex-shrink: 0.5;
        max-width: 250px; } }
  .article__hero__info {
    padding: 30px 15px 0; }
    .article__hero__info h1 {
      font-size: 60px;
      line-height: 65px;
      font-weight: normal;
      color: #FFFFFF; }
      @media (max-width: 991px) {
        .article__hero__info h1 {
          font-size: 30px;
          line-height: 36px; } }
      @media (max-width: 767px) {
        .article__hero__info h1 {
          text-align: center; } }
.article__introduction--justified {
  text-align: justify; }
.article__introduction__content {
  max-width: 975px;
  margin: 45px auto;
  padding: 15px; }
  @media (max-width: 991px) {
    .article__introduction__content {
      margin: 0 auto; } }
.article__introduction h2 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-align: center; }
.article__introduction p {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  margin: 32.5px 0 0; }
  @media (max-width: 991px) {
    .article__introduction p {
      font-size: 18px;
      line-height: 22px; } }
.article__paragraph--justified {
  text-align: justify; }
.article__paragraph__content {
  max-width: 975px;
  margin: 45px auto;
  padding: 15px; }
  @media (max-width: 991px) {
    .article__paragraph__content {
      margin: 0 auto; } }
.article__paragraph h3 {
  font-size: 46px;
  line-height: 63px;
  font-weight: 400; }
  @media (max-width: 991px) {
    .article__paragraph h3 {
      font-size: 28px;
      line-height: 33px; } }
.article__paragraph p {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: #000000;
  margin: 22.5px 0 0; }
  @media (max-width: 991px) {
    .article__paragraph p {
      font-size: 18px;
      line-height: 22px; } }
.article__paragraph ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .article__paragraph ul li {
    position: relative;
    padding-left: 50px; }
    @media (max-width: 991px) {
      .article__paragraph ul li {
        padding-left: 40px; } }
    .article__paragraph ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12.5px;
      height: 1px;
      width: 27.5px;
      border-top: 1px solid #000000; }
      @media (max-width: 991px) {
        .article__paragraph ul li::before {
          top: 10px;
          width: 20px; } }
.article__figure__content {
  position: relative;
  max-width: 1340px;
  margin: 45px auto;
  padding: 15px; }
  @media (max-width: 991px) {
    .article__figure__content {
      margin: 0 auto; } }
  .article__figure__content::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    height: 255px;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 767px) {
      .article__figure__content::before {
        height: 150px; } }
