* {
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-color: #e5f2ff;
  font-family: "Inter", sans-serif;
}

.content-container {
  width: 100%;
  max-width: 112.4rem;
  transition: all 0.5s;
}

.with-margin {
  margin-top: 100px;
}

.hidden {
  display: none;
}

.no-scroll {
  overflow: hidden;
}
/* HEADER - NAVIGATION */

.header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1.6rem;
  position: fixed;
  top: 1.6rem;
  z-index: 110;
  background-color: transparent;

  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    padding: 1.2rem;
    border-radius: 24px;

    &.scrolled {
      background-color: #ffffffcc;
      backdrop-filter: blur(8px);
      width: 800px;
      box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 28%);
      transition: all 0.5s;

      .logo-link {
        .logo-img {
          display: none;
        }
        .logo-small-img {
          display: block;
          width: 100%;
        }
      }
    }

    .logo-link {
      display: flex;

      .logo-img {
        width: 100%;
        z-index: 201;
      }
      .logo-small-img {
        display: none;
      }
    }

    .hamburger-icon,
    .close-icon {
      font-size: 2.4rem;
      display: none;
      transition: all 0.3s ease-in-out;
      z-index: 300;
    }

    .hamburger-icon.is-active,
    .close-icon.is-active {
      transform: rotate(180deg);
    }

    .close-icon {
      display: none;
    }
    .main-nav {
      .nav-list {
        display: flex;
        align-items: center;
        gap: 2rem;

        .nav-item {
          display: flex;
          align-items: center;
          gap: 0.8rem;
          padding: 1rem 1.6rem;
          border-radius: 8px;
          font-size: 1.4rem;
          font-weight: 500;
          transition: all 0.3s ease-in-out;
          color: #002950;
          white-space: nowrap;

          &:hover {
            color: #00538f;
          }

          .nav-link {
            color: #002950;

            &:hover {
              color: #00538f;
            }
          }
        }
        .nav-btn {
          padding: 1.35rem 1.8rem;
          height: 4.6rem;
          border: 1px solid #2691d966;
          border-radius: 8px;
          color: #2691d9;
          transition: all 0.3s;
          white-space: nowrap;

          &:hover {
            background-color: #e5f2ff;
          }
        }
      }
      .header-contact {
        display: none;
        .contact {
          .contact-heading {
            font-size: 1.6rem;
            font-weight: 600;
          }
          .contact-text {
            font-size: 1.4rem;
            font-weight: 400;
          }
        }
      }
    }
  }
}

@media (max-width: 800px) {
  .header {
    top: 0;
    padding: unset;
    .content-container {
      padding: 1.6rem;
      background-color: #fff;

      box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 28%);
      border-radius: unset;
      justify-content: space-between;

      &.scrolled {
        background-color: #ffffffcc;

        width: 800px;

        transition: all 0.5s;

        .logo-link {
          .logo-img {
            display: block;
          }
          .logo-small-img {
            display: none;
          }
        }
      }

      .hamburger-icon {
        display: flex;
        z-index: 201;
      }

      .main-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #ffffffcc;

        width: 100%;
        height: 100vh;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
      }

      .open {
        display: flex;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);

        background: linear-gradient(180deg, #ffffff, #bedfff);
        height: 100vh;
        z-index: 200;

        .nav-list {
          flex-direction: column;

          gap: 1.6rem;
          padding-top: 10rem;
          .nav-item {
            justify-content: center;
            font-size: 2.4rem;
            padding: 1.6rem;
            width: 100%;
            text-align: center;
          }
          .nav-btn {
            border: unset;
            color: #002950;
          }
        }
        .header-contact {
          display: flex;
          flex-direction: column;
          gap: 3.2rem;
          align-items: center;
          padding-bottom: 10rem;
          text-align: center;
        }
      }
    }
  }
}

/* HERO SECTION */

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 13rem;
  background-image: url(../../assets/images/hero-background.svg);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;

  @media (max-width: 800px) {
    padding-top: 8rem;
  }

  .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.1rem 3.1rem 6rem 3.1rem;
    gap: 2.9rem;

    .hero-text-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 3.2rem;
      width: 100%;
      max-width: 83.4rem;

      .hero-heading {
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 49px;
        text-align: center;
      }
      .hero-text {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 2.2rem;
        color: #002950;
        opacity: 80%;
        width: 100%;
        max-width: 68rem;
        text-align: center;
      }
    }
    .hero-img {
      width: 100%;
    }
    .hero-button-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.6rem;
      margin-top: 3rem;
      width: 100%;
      max-width: 84rem;
      z-index: 100;

      .button-text {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 2.2rem;
        color: #002950;
        opacity: 80%;

        text-align: center;
      }
      .btn {
        background-color: #2691d9;
        padding: 1.8rem;
        border-radius: 8px;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 500;
        transition: all 0.3s;

        &:hover {
          background-color: #0c75bb;
        }
      }
    }
  }

  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 44.7rem;
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(186, 223, 255, 0) 0%,
      #badfff 83.7%
    );
  }
}

/* FEATURES SECTION */

.features-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #badfff 0%, #e5f2ff 100%);
  scroll-margin-top: 10rem;

  .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    padding: 4rem 3.1rem 10rem 3.1rem;
    .festures-text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3.2rem;
      width: 100%;
      max-width: 83rem;

      .features-heading {
        font-size: 3.2rem;
        font-weight: 600;
        line-height: 4rem;
        color: #002950;
        text-align: center;

        .link {
          position: relative;
          transition: all 0.2s;
          color: #002950;
          &::after {
            content: "";
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #2691d9;
            border-radius: 99px;
          }

          &:hover {
            color: #2691d9;
          }
          &:visited {
            color: #002950;
          }
        }
      }
      .features-text {
        font-size: 1.6rem;
        font-weight: 400;
        color: #002950;
        text-align: center;
      }
    }
    .features-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 1.6rem;
      width: 100%;

      .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.6rem;
        width: 100%;
        max-width: 66rem;
        height: 16.8rem;
        padding: 2.4rem;
        background-color: #e5f2ff;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 16px;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 30%;
        transition: all 0.2s ease-out;

        &:first-child {
          top: 20%;

          &.intersecting {
            transform: scale(0.84);
          }
        }

        &:nth-child(2) {
          top: 25.5%;

          &.intersecting {
            transform: scale(0.86);
          }
        }

        &:nth-child(3) {
          top: 31%;

          &.intersecting {
            transform: scale(0.88);
          }
        }

        &:nth-child(4) {
          top: 36.5%;

          &.intersecting {
            transform: scale(0.9);

            .custom-icon {
              transform: translateY(-48px);
            }

            .feature-text {
              transform: translateY(-35px);
            }
          }
        }

        &:nth-child(5) {
          top: 42%;

          &.intersecting {
            transform: scale(0.92);

            .custom-icon {
              transform: translateY(-48px);
            }

            .feature-text {
              transform: translateY(-35px);
            }
          }
        }

        &:nth-child(6) {
          top: 47.5%;

          &.intersecting {
            transform: scale(0.94);
          }
          .custom-icon {
            transform: translateY(-48px);
          }

          .feature-text {
            transform: translateY(-35px);
          }
        }

        &.intersecting {
          .custom-icon {
            transform: translateY(-107%);
          }

          .feature-text {
            transform: translateY(-40px);
          }
        }

        .custom-icon {
          /* font-size: 2.7rem; */
          padding: 0.9rem;
          background-color: #dcf4f9;
          color: #009ea8;
          border: 1px solid #ffffff;
          border-radius: 100%;
          transition: all 0.3s ease-out;
        }

        .feature-text {
          font-size: 1.6rem;
          font-weight: 600;
          line-height: 2.4rem;
          color: #002950;
          text-align: center;
          transition: all 0.3s ease-out;
        }
      }
    }
  }
}

/* PARTNERS SECTION */

.partners-section {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  padding: 10rem 3.1rem;
  scroll-margin-top: 5rem;

  .content-container {
    .partners-container {
      display: flex;
      justify-content: space-between;
      gap: 5rem;

      @media (max-width: 992px) {
        flex-direction: column;
        align-items: center;
      }

      .partners-text-container {
        display: flex;
        flex-direction: column;
        gap: 3.2rem;
        /* width: 100%; */
        max-width: 39.6rem;
        height: fit-content;
        position: sticky;
        top: 0;

        @media (max-width: 992px) {
          position: unset;
        }

        .partners-heading {
          font-size: 3.2rem;
          font-weight: 600;
          color: #002950;
        }
        .partners-text {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 2.2rem;
          color: #002950;
          opacity: 80%;
        }
      }
      .partners {
        display: flex;
        flex-direction: column;
        gap: 2.4rem;
        width: 100%;
        .row {
          /* display: grid;
          grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
          justify-items: center;
          row-gap: 2rem;
          column-gap: 2rem; */
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 2.4rem;

          @media (max-width: 576px) {
            /* gap: 0.5rem; */
          }
        }
        .partner-image {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          max-width: 20rem;
          height: 10rem;
          /* padding: 2.6rem 4.7rem; */
          background-color: #fff;
          border: 1px solid rgba(229, 242, 255, 1);
          border-radius: 1.6rem;

          @media (max-width: 576px) {
            max-width: 15.6rem;
            .u-small {
              width: 80%;
            }
          }
          /* .partner-img {
            width: 100%;
          } */
        }
      }
    }
  }
}

/* IMPRESSIONS SECTION */

.impressions-section {
  display: flex;
  justify-content: center;

  background: linear-gradient(231.71deg, #003b6b 24.26%, #009ea8 100%);

  .content-container {
    padding: 10rem 3.1rem;
    .impressions-container {
      display: flex;
      justify-content: space-between;
      gap: 5.1rem;

      @media (max-width: 992px) {
        flex-direction: column-reverse;
        align-items: center;
      }
      .impressions-image {
        position: relative;
        .impressions-img {
          width: 100%;
          max-width: 57.7rem;
        }
        .impression {
          display: flex;
          flex-direction: column;
          justify-content: center;
          position: absolute;
          bottom: 6%;
          right: -9%;
          gap: 2.4rem;
          width: 100%;
          max-width: 38.3rem;
          padding: 2.4rem;
          background-color: #e5f2ffe0;
          border: 2px solid #ffffff66;
          border-radius: 1.6rem;

          @media (max-width: 992px) {
            height: 21.6rem;
            width: 32.1rem;
            top: 90%;
            left: 50%;
            transform: translate(-50%, -50%);
          }

          .stylos-logo {
            width: 100%;
            max-width: 10rem;
          }
          .text {
            font-size: 1.4rem;
            font-weight: 400;
            line-height: 2rem;
            color: #002950;
            opacity: 80%;
          }
        }
      }
      .impressions-text {
        display: flex;
        flex-direction: column;
        gap: 3.2rem;
        /* justify-content: center; */
        width: 100%;
        max-width: 42.7rem;
        .impressions-heading {
          font-size: 3.2rem;
          font-weight: 600;
          line-height: 4rem;
          color: #fff;
        }
        .impressions-text {
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 2.4rem;
          color: #fff;
          opacity: 80%;
        }
        .btn {
          display: flex;
          align-items: center;
          width: fit-content;
          gap: 0.8rem;
          background-color: #2691d9;
          padding: 1.8rem;
          border-radius: 8px;
          color: #fff;
          font-size: 1.4rem;
          font-weight: 500;
          transition: all 0.3s;
          .lnc {
            transition: all 0.3s;
          }

          @media (max-width: 992px) {
            width: 100%;
            justify-content: center;
          }

          &:hover {
            background-color: #0c75bb;

            .lnc {
              transform: translatex(0.5rem);
            }
          }

          .lnc {
            font-size: 1.4rem;
          }
        }
      }
    }
  }
}

/* CONTACT SECTION */

.middle-container {
  max-width: 112.4rem;
  margin: auto;
  padding: 0 3.1rem;
}

.contact-section {
  background-color: #f4faff;
  scroll-margin-top: 5rem;
}

.contact-container {
  margin: 0rem auto;
  display: flex;
  flex-direction: row;
  gap: 5rem;
  justify-content: space-between;
  padding: 10rem 3.1rem;
}

.contact-container .left-side,
.contact-container .right-side {
  flex-basis: 100%;
}
.contact-container .left-side {
  height: fit-content;
  position: sticky;
  top: 10px;

  @media (max-width: 992px) {
    position: unset;
  }
}

.contact-container h3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #002950;
}

.contact-container h3 .blue {
  color: #2691d9;
  font-size: 3.2rem;
  /*text-shadow: 2px 2px #2691D9;*/
  background-color: rgba(38, 145, 217, 0.1);
  border: 1px solid transparent;
  border-radius: 8px;
}

.contact-container p {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.25px;
  text-align: left;
  color: #002950;
  padding: 3.2rem 0;
  max-width: 45rem;
}

.contact-container .left-side .top {
  padding-bottom: 0 !important;
}

.contact-container .eco-one-button {
  padding: 1.2rem 1.8rem;
  border-radius: 8px;
  border: 1px solid rgba(38, 145, 217, 0.5);
  color: #2691d9;
  text-decoration: none;
  cursor: pointer;

  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: 0.1px;
  text-align: left;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;

  transition: all 0.3s;
}

.contact-container .eco-one-button:hover {
  background-color: #e5f2ff;
}

.contact-container .left-side i {
  color: #2691d9;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container .right-side .send-button {
  color: #ffffff !important;
  background-color: #2691d9 !important;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  opacity: 1;
  transition: background-color 300ms cubic-bezier(0.7, -0.4, 0.4, 1.4);

  @media (max-width: 992px) {
    width: 100%;
    text-align: center;
  }
  /*transition: all 0.3s;*/
}

.contact-container .right-side .send-button.disabled {
  opacity: 0.65;
  cursor: default;
  pointer-events: none;
}

.contact-container .right-side .send-button:hover {
  background-color: #0c75bb !important;
}

.contact-container .right-side h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-align: left;
  color: #002950;
}

.contact-container .right-side label {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
  text-align: left;
  color: #002950;
  padding-bottom: 0.8rem;
}

.contact-container .right-side .form-field-2 {
  padding: 3.2rem 0;
}

.contact-container .right-side .form-group {
  display: flex;
  flex-direction: column;
}

.contact-container .right-side .hidden-field {
  display: none;
}

.contact-container .right-side input,
.contact-container .right-side textarea {
  border: 1px solid #dddfe4;
  padding: 1.7rem 0.8rem;
  border-radius: 8px;
  color: #a4a9b2;
  font-family: Inter, sans-serif;
  cursor: pointer;
  caret-color: #00538f;
}

.contact-container .right-side input {
  margin-bottom: 0.8rem;
}

.contact-container .right-side textarea {
  height: 12.8rem;
  resize: none;
}

.contact-container .right-side input:focus-visible,
.contact-container .right-side textarea:focus-visible {
  outline: none;
  border: 1px solid #00538f;
  transition: all 0.3s ease-in-out;
}

.contact-container .right-side input:active,
.contact-container .right-side textarea:active {
  border: 1px solid #00538f;
  transition: all 0.3s ease-in-out;
}

/*.contact-container .right-side input:focus,*/
/*.contact-container .right-side textarea:focus {*/
/*  outline: none;*/
/*  border:1px solid #00538F;*/
/*  transition:all 0.3s ease-in-out;*/

/*}*/

.contact-container .right-side input:hover,
.contact-container .right-side textarea:hover {
  border: 1px solid #a4a9b2;
  transition: all 0.3s ease-in-out;
}

/* Chrome, Firefox, Safari, Edge, Opera */
.contact-container .right-side input::placeholder,
.contact-container .right-side textarea::placeholder {
  color: #a4a9b2;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.25px;
  text-align: left;
}

/* Internet Explorer 10-11 */
.contact-container .right-side input:-ms-input-placeholder,
.contact-container .right-side textarea:-ms-input-placeholder {
  color: #a4a9b2;
}

/* Microsoft Edge */
.contact-container .right-side input::-ms-input-placeholder,
.contact-container .right-side textarea::-ms-input-placeholder {
  color: #a4a9b2;
}

/* Firefox 19+ */
.contact-container .right-side input::-moz-placeholder,
.contact-container .right-side textarea::-moz-placeholder {
  color: #a4a9b2;
}

/* Safari 4+ */
.contact-container .right-side input::-webkit-input-placeholder,
.contact-container .right-side textarea::-webkit-input-placeholder {
  color: #a4a9b2;
}
.buttons-container {
  display: flex;
  justify-content: start;
  gap: 8px;
}
.help-block.with-errors {
  margin-bottom: 0.8rem;
}
.help-block.with-errors li {
  color: #e71111;
  display: flex;
  align-items: center;
  list-style: none;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0.4px;
  text-align: left;
}

.contact-container .right-side .message-on-submit {
  color: #e71111;
  display: none;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0.4px;
  text-align: left;
  margin-top: 0.8rem;
}

.contact-container .right-side .message-on-submit.not-send {
  display: flex;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-container .left-side .top {
    max-width: unset;
  }

  .contact-container .left-side p {
    max-width: unset;
  }
}

@media (max-width: 576px) {
  .buttons-container {
    flex-direction: column;
  }
}

.help-block {
  &.with-errors {
    padding-top: 0.8rem;

    li {
      color: #cb1e1e;
      display: flex;
      align-items: center;

      &::before {
        content: "";
        display: inline-block;
        width: 2rem;
        height: 2rem;
        background-image: url(../icons/hexa-error.svg);
        background-repeat: no-repeat;
        background-size: contain;
        margin-right: 0.5rem;
      }
    }
  }
}

.message-on-submit {
  color: #003e6d;
  align-items: center;
  display: none;
  margin-top: 0.8rem 0;

  &.not-send {
    display: flex;
    &::before {
      content: "";
      display: inline-block;
      width: 2rem;
      height: 2rem;
      background-image: url(../icons/hexa-error.svg);
      background-repeat: no-repeat;
      background-size: contain;
      margin-right: 0.5rem;
    }
  }
}

.hidden-field {
  display: none;
}

.icon-container {
  position: relative;
}

.mailer-message {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 10500;
  inset: 0;

  &::after {
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 12, 22, 0%) 0%,
      #003e6d 47.92%,
      rgba(0, 12, 22, 0%) 100%
    );
    bottom: 0;
  }

  &::before {
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(
      90deg,
      rgba(0, 12, 22, 0%) 0%,
      #003e6d 47.92%,
      rgba(0, 12, 22, 0%) 100%
    );
    top: 0;
  }

  .mailer-message-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    padding: 3.2rem;

    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 198, 127, 0.05) 49.14%,
      rgba(0, 0, 0, 0.12) 100%
    );
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5rem);
    border-radius: 2.4rem;
    width: 100%;
    max-width: 37.4rem;
    animation: closeMessage 0.5s ease-out 4s forwards;
    overflow: hidden;

    h3 {
      text-transform: uppercase;
      font-weight: 400;
      font-size: 1.8rem;
      white-space: nowrap;
    }
  }
}

.fiscalization-section {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: rgba(229, 242, 255, 1);
  scroll-margin-top: 5rem;

  .content-container {
    display: flex;
    justify-content: center;
    padding: 10rem 3.1rem;
    .fiscalization-container {
      display: flex;
      flex-direction: column;
      gap: 3.2rem;
      .fiscalization-heading {
        font-size: 3.2rem;
        font-weight: 600;
        color: #002950;
        text-align: center;
      }
      .fiscalization-text {
        font-size: 1.4rem;
        font-weight: 400;
        color: #002950;
        opacity: 80%;
        text-align: center;
      }
      .about-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        width: 100%;
        max-width: 89.2rem;
        background-color: #ffffffd9;
        border: 1px solid #ffffff99;
        border-radius: 1.6rem;
        padding: 4.6rem;
        .about-heading {
          font-size: 1.4rem;
          font-weight: 600;
          line-height: 2rem;
          opacity: 80%;
        }
        .about-text {
          font-size: 1.4rem;
          font-weight: 400;
          opacity: 80%;
        }
        .ordered-list {
          display: flex;
          flex-direction: column;
          gap: 2rem;
        }

        .iframe-box {
          position: relative;
          padding-bottom: 56.25%; /* 16:9 */
          padding-top: 25px;
          height: 0;
          .video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          }
        }

        .unordered-list {
          .list-item {
            margin-left: 2.5rem;
            list-style-type: disc;
            &::marker {
              margin-left: 2rem;
              font-size: 1.4rem;
            }
          }
          .about-text {
            padding-bottom: 2rem;
          }
        }
        .button-box {
          display: flex;
          justify-content: center;

          .show-more-btn {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            width: fit-content;
            align-self: center;
            background-color: #2691d9;
            padding: 1.8rem;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 1.4rem;
            font-weight: 500;
            transition: all 0.3s;
            z-index: 90;
            cursor: pointer;

            .lnc {
              font-size: 1.4rem;
              transition: all 0.3s;
            }

            &:hover {
              background-color: #0c75bb;

              .lnc {
                transform: translatey(0.5rem);
              }
            }

            .lnc {
              font-size: 1.4rem;
            }
          }
        }
        .hide-button {
          display: none;
        }
        .u-hidden {
          display: none;
          height: 0;
          overflow: hidden;
          transition: height 0.5s ease-in-out;
        }
        .u-show {
          height: auto;
        }
      }
    }
  }
  .linear-gradient {
    position: absolute;
    bottom: 0;
    height: 44.7rem;
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(186, 223, 255, 0) 0%,
      #badfff 83.7%
    );
  }
}

.footer {
  display: flex;
  justify-content: center;
  background-color: #002950;
  padding: 4rem 3.1rem;

  .content-container {
    display: flex;
    gap: 22rem;

    @media (max-width: 768px) {
      flex-direction: column;
      align-items: center;
      gap: 3.2rem;
    }

    .logo-img {
      width: 100%;
      max-width: 15rem;
    }
    .footer-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      width: 100%;

      @media (max-width: 768px) {
        flex-direction: column;
        gap: 3.2rem;
      }

      .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        width: 100%;
      }

      .contact {
        width: 100%;
        max-width: 14.8rem;
        .contact-heading {
          font-size: 1.6rem;
          font-weight: 600;
          color: #dcf4f9;

          @media (max-width: 992px) {
            text-align: center;
            padding-bottom: 2rem;
          }
        }
        .contact-text {
          font-size: 1.4rem;
          font-weight: 400;
          color: #dcf4f9;
          @media (max-width: 992px) {
            text-align: center;
          }
        }
      }
    }
  }
}

/* UTILITI CLASS */
.u-mark-green {
  background-color: #ade3eb60;
  border-radius: 8px;
  color: #009ea8;
  padding: 0 1rem;
  /* opacity: 40%; */
}

.u-color-green {
  color: #009ea8 !important;
}

.u-mark-blue {
  /* background-color: #badfff60; */
  background-color: #79bcf760;
  border-radius: 8px;
  color: #2691d9;
  padding: 0 1rem;
}
.u-color-blue {
  color: #2691d9 !important;
}

.u-underline {
  text-decoration: underline #2691d9;
  text-underline-offset: 5px;
}

@keyframes closeMessage {
  0% {
    max-width: 37.4rem;
    padding: 3.2rem 3.2rem;
  }

  100% {
    max-width: 0;
    padding: 3.2rem 0rem;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
