@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  animation: spin 0.6s linear infinite;
  display: none;
  position: absolute;
  top: 7px;
  right: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn {
  align-items: center;
  position: relative;
  justify-content: center;
}
.submit-btn.loading .loader {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #050446;
}

h1, h2, h3, h4, h5, h6, p, a, span div {
  font-family: "Raleway", sans-serif;
}

h1 {
  font-size: 72px;
  font-weight: 800;
}
@media (max-width: 992px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-weight: 800;
  font-size: 40px;
}
@media (max-width: 992px) {
  h2 {
    font-size: 53px;
  }
}
@media (max-width: 620px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 800;
}
@media (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 620px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 992px) {
  h4 {
    font-size: 17px;
  }
}
@media (max-width: 620px) {
  h4 {
    font-size: 13px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 800;
}
@media (max-width: 620px) {
  h5 {
    font-size: 14px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 5px;
}
@media (max-width: 620px) {
  h6 {
    font-size: 12px;
  }
}

p {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 992px) {
  p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 620px) {
  p {
    font-size: 14px;
    line-height: 28px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .inner {
    padding: 0 4%;
  }
}

header {
  border-bottom: 1px solid #E2E7F1;
  padding: 20px 0;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .logo {
  width: 140px;
  object-fit: cover;
}
header .header-inner .nav-content {
  display: flex;
  gap: 30px;
}
header .header-inner .nav-content .link {
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
header .header-inner .nav-content .modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000; /* Ensure it's above other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
header .header-inner .nav-content .modal .modal-content {
  position: relative;
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
  border: 1px solid #E2E7F1;
  right: 20px;
  top: 130px;
  margin-left: auto;
  font-size: 16px;
}
header .header-inner .nav-content .modal .modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
header .header-inner .nav-content .modal.show {
  display: block;
  opacity: 1;
}
@media (max-width: 576px) {
  header .header-inner {
    flex-direction: column;
  }
  header .header-inner .logo {
    width: 100px;
  }
  header .header-inner .nav-content {
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    margin-top: 13px;
  }
  header .header-inner .nav-content .link {
    font-size: 14px;
  }
  header .header-inner .nav-content .modal .modal-content {
    max-width: 100%;
    width: 92%;
  }
  header .header-inner .nav-content .modal .modal-content p {
    font-size: 13px;
  }
}

.main-inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  margin-top: 50px;
}

aside {
  background: #F5F5F5;
  min-width: 304px;
  border-radius: 5px;
  height: fit-content;
  position: sticky;
  top: 30px;
}
aside .aside-inner {
  padding: 20px;
}
aside .aside-inner P {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
aside .progress-container {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  margin: 30px 0;
  position: sticky; /* Sticks to the top of the aside */
  top: 20px;
  z-index: 10;
  overflow: hidden;
}
aside .progress-container .progress-bar {
  height: 100%;
  width: 15px; /* Starts at 0% */
  background: #0038B1;
  border-radius: 4px;
  transition: width 0.25s ease;
}
@media (max-width: 992px) {
  aside {
    display: none;
  }
}

@media (max-width: 992px) {
  .col {
    width: 100%;
  }
}
.col .top-block .above-title {
  margin-top: 0;
}
.col .top-block .top-green {
  background: #96BEA1;
  color: #ffffff;
  border-radius: 5px;
  padding: 30px;
}
.col .top-block .top-green .author-data {
  display: flex;
  gap: 10px;
}
.col .top-block .top-green .author-data .author-image img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
}
.col .top-block .top-green .author-data .author-prop .name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}
.col .top-block .top-green .author-data .author-prop .sub-name {
  font-size: 12px;
  margin-top: 8px;
}
.col .top-block .top-green .author-content {
  margin-top: 20px;
}
.col .top-block .green-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}
.col .top-block .green-nav .nav-item {
  border: 1px solid #E2E7F1;
  border-radius: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.col .top-block .green-nav .nav-item a {
  font-weight: 700;
  text-decoration: none;
  color: #050446;
  text-transform: uppercase;
}
@media (max-width: 620px) {
  .col .top-block .top-green .author-data .author-prop .name {
    font-size: 16px;
  }
  .col .top-block .green-nav {
    gap: 6px;
  }
  .col .top-block .green-nav .nav-item a {
    font-size: 13px;
  }
  .col .top-block .green-nav .nav-item img {
    height: 13px;
    width: 13px;
  }
}
.col .intro .intro-inner .intro-image img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.col .top-5 {
  margin: 50px auto;
}
.col .top-5 .top-title {
  margin-bottom: 30px;
}
.col .top-5 .section-inner {
  padding: 25px;
  border: 1px solid #E2E7F1;
  border-radius: 7px;
  margin: 50px 0;
}
.col .top-5 .section-inner .single-item .item-title {
  margin-bottom: 30px;
}
.col .top-5 .section-inner .single-item .item-image {
  max-height: 600px;
  width: 100%;
  border-radius: 8px;
}
.col .top-5 .section-inner .single-item .item-image img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}
.col .top-5 .section-inner .single-item .actions-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 20px auto;
}
.col .top-5 .section-inner .single-item .actions-row .action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F5F5F5;
  flex: 1;
  padding: 30px;
  gap: 10px;
  border-radius: 8px;
}
.col .top-5 .section-inner .single-item .actions-row .action-item .action-title {
  color: #0038B1;
}
.col .top-5 .section-inner .single-item .description-wrapper {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 20px;
}
.col .top-5 .section-inner .single-item .description-wrapper .top-description {
  display: flex;
  gap: 20px;
}
.col .top-5 .section-inner .single-item .description-wrapper .top-description .desc-head {
  flex: 1;
}
.col .top-5 .section-inner .single-item .description-wrapper .ingredients-block .ingredients {
  display: flex;
  flex-wrap: wrap;
}
.col .top-5 .section-inner .single-item .description-wrapper .ingredients-block .ingredients .ingredient {
  background: #ffffff;
  padding: 11px;
  border-radius: 30px;
}
.col .top-5 .section-inner .single-item .description-wrapper .benefits-block .benefits-wrapper .benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.col .top-5 .section-inner .single-item .description-wrapper .benefits-block .benefits-wrapper .benefit img {
  width: 24px;
  height: 24px;
}
.col .top-5 .section-inner .single-item .description-wrapper .benefits-block .benefits-wrapper .benefit .benefit-context {
  font-weight: 600;
  margin: 0;
}
.col .top-5 .section-inner .single-item .banner-optional {
  background: #96BEA1;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
}
.col .top-5 .section-inner .single-item .banner-optional .banner-content .banner-text {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}
.col .top-5 .section-inner .single-item .banner-optional .banner-content .referral-button {
  color: #0038B1;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  background: #ffffff;
  border-radius: 8px;
  padding: 15px 25px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.col .top-5 .section-inner .single-item .banner-optional .banner-content .referral-button:hover {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
@media (max-width: 992px) {
  .col .top-5 .section-inner .single-item .actions-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 620px) {
  .col .top-5 .section-inner {
    padding: 7px;
  }
  .col .top-5 .section-inner .single-item .description-wrapper .top-description {
    flex-direction: column;
  }
  .col .top-5 .section-inner .single-item .banner-optional {
    flex-direction: column;
    align-items: center;
  }
  .col .top-5 .section-inner .single-item .banner-optional .banner-content .banner-text {
    text-align: center;
  }
  .col .top-5 .section-inner .single-item .banner-optional .banner-content .referral-button {
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
}
.col .our-choice .choice-title {
  margin-bottom: 50px;
}
.col .our-choice .top-box {
  margin: 50px 0;
}
.col .our-choice .top-box img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.col .our-choice .top-box .choice-top-title {
  margin: 30px 0;
}
.col .our-choice a {
  background: #0038B1;
  padding: 20px 50px;
  border-radius: 8px;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid #0038B1;
  transition: all 0.3s ease-in-out;
}
.col .our-choice a:hover {
  border: 1px solid #0038B1;
  background: transparent;
  color: #0038B1;
}
.col .our-choice .bottom-box {
  margin: 50px 0;
}
.col .our-choice .bottom-box .bottom-choice-image {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 620px) {
  .col .our-choice a {
    display: flex;
    justify-content: center;
    font-size: 14px;
  }
}

footer {
  background: #ffffff;
  border-top: 1px solid #E2E7F1;
}
footer .footer-inner {
  font-size: 20px;
}
footer .footer-inner a {
  color: #050446;
  font-size: 20px;
  font-weight: 500;
}

/*# sourceMappingURL=tmp-face-cream-1.css.map */
