/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/

html, body {
  width: 100%;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
  margin-right: 0px;
}

.contact-section__name-column {
  gap: var(--space-sm);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.contact-section__message-label {
  color: var(--gray_900_02) !important;
}

.contact-section__first-name-input {
  color: var(--gray_400_02) !important;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
  height: 44px;
  border-radius: 6px !important;
  border: 1px solid var(--blue_gray_100_02) !important;
}

.content-section__projects__button {
  color: var(--white_a700) !important;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--deep_purple_a200) !important;
  height: 54px;
  min-width: 154px;
  border-radius: 6px !important;
  /* @media only screen and (max-width: 1440px) {
    font-size: 15px;
  } */

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.section-3 {
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* @media only screen and (max-width: 1440px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  } */

  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.subject__container {
  margin-top: 8px;
  gap: var(--space-11xl);
  display: flex;
  align-items: center;
}

.content__icon-button {
  height: 66px;
  padding-left: var(--space-7xl);
  padding-right: var(--space-7xl);
  background-color: var(--gray_100_01) !important;
  width: 66px;
  border-radius: 32px !important;
}

.content__title {
  font-weight: 600 !important;
}

.subject__column--details {
  gap: var(--space-5xl);
  display: flex;
  width: 88%;
  flex-direction: column;
  /* @media only screen and (max-width: 1440px) {
    width: 100%;
  } */

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.subject__divider {
  height: 1px;
  background-color: var(--gray_200);
}

.subject__expandable-list {
  flex-direction: column;
}

.group-542 {
  display: flex;
  flex: 1;
  flex-direction: column;
  /* @media only screen and (max-width: 1440px) {
    gap: var(--space-xl);
  } */

  @media only screen and (max-width: 1050px) {
    gap: var(--space-xl);
  }
}

.expandable-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  position: relative;
  cursor: pointer;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    left: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    background-image: url(../images/img_arrowdown_black_900.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
  }
}

details[open] .expandable-list__header::before {
  background-image: url(../images/img_arrowdown_black_900.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.expandable-list__items {
  gap: var(--space-12xl);
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.expandable-list__item {
  margin-left: 16px;
  margin-right: 16px;
  gap: var(--space-2xl);
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.expandable-list__icon--ellipse {
  height: 4px;
  margin-bottom: 10px;
  align-self: flex-end;
  background-color: var(--gray_400_01);
  width: 4px;
  border-radius: var(--radius-xs);
}

.expandable-list__header-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  position: relative;
  cursor: pointer;
}

.expandable-list__header--nested {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
}

.expandable-list__icon--arrow-down-nested {
  height: 5px;
  margin-bottom: 10px;
  align-self: flex-end;
}

.line-3 {
  background-color: var(--gray_100);
  width: 100%;
  height: 1px;
}

.text-block__highlight {
  margin-top: 14px;
  font-weight: 400 !important;
  display: flex;
}

.text-block__highlight-span {
  color: var(--black_900);
}

.text-block__highlight-span-1 {
  color: var(--purple_800);
  text-decoration: none;
  display: inline;
}

.content-section__projects__exams-heading {
  margin-top: 34px;
}

.group-369 {
  margin-top: 38px;
}

.content-section__projects__text-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-progress {
  gap: var(--space-9xl);
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.rating-progress__bar {
  --color: #04aa6d;
  --background: #e6e4e1;
  --border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 10px;
  background-color: var(--background);
  flex: 1;
  border-radius: var(--border-radius);
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.user-profile-review {
  gap: var(--space-lg);
  background-color: var(--white_a700);
  flex: 1;
  align-self: stretch;
  padding: var(--space-10xl) 34px;
  /* @media only screen and (max-width: 1440px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  } */

  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-6xl) var(--space-8xl);
  }
}

.user-profile-review__header {
  gap: var(--space-4xl);
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
}

.user-profile-review__initial {
  height: 24px;
  background-color: var(--blue_gray_100_01);
  width: 24px;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: var(--radius-2xl);
}

.user-profile-review__rating {
  display: flex;
  gap: var(--space-xl);
  --rating-font-size: 16;
  --rating-active-color: #ffd833;
  --rating-inactive-color: #ffd833;
}

.user-profile-review__comment {
  width: 88%;
  line-height: 24px;
  /* @media only screen and (max-width: 1440px) {
    width: 100%;
  } */

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.contact-section__form-group {
  gap: var(--space-7xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__socials-title {
  color: var(--white_a700) !important;
}

.footer__icon-airplane {
  height: 24px;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.home {
  background-color: var(--white_a700);
  width: 100%;
}

.group-7 {
  background-color: var(--gray_900);
}

.group-533 {
  margin-top: 26px;
  gap: var(--space-14xl);
  display: flex;
  flex-direction: column;
}

.header {
  margin-left: 206px;
  margin-right: 210px;
  gap: var(--space-12xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.header__top {
  display: flex;
  margin-top: 26px;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.header__logo {
  height: 60px;
  width: 334px;
  object-fit: contain;
}

.header__navigation {
  gap: var(--space-14xl);
  align-self: flex-end;
  display: flex;
  width: 36%;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.header__menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: var(--space-8xl);
  @media only screen and (max-width: 550px) {
    align-self: stretch;
  }
}

.header__menu-list {
  gap: 46px;
  display: flex;
  flex-wrap: wrap;
}

.header__button--signin {
  color: var(--white_a700) !important;
  padding-left: 17px;
  padding-right: 17px;
  font-size: 16px;
  height: 34px;
  min-width: 88px;
  border-radius: 6px !important;
  border: 1px solid var(--white_a700) !important;
  /* @media only screen and (max-width: 1440px) {
    font-size: 13px;
  } */
}

.header__divider {
  height: 1px;
  background-color: var(--blue_gray_800);
}

.group-485 {
  height: 846px;
  position: relative;
}

.contact-section {
  background-color: var(--white_a700);
  box-shadow: var(--shadow-xs);
  width: 34%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  right: 11%;
  top: 27px;
  padding: var(--space-10xl) 48px;
  margin: auto;
  border-radius: var(--radius-7xl);
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-6xl);
  }
}

.contact-section__link {
  color: var(--gray_900) !important;
}

.contact-section__description {
  color: var(--gray_900_01) !important;
  margin-top: 6px;
  line-height: 20px;
}

.contact-section__dropdown {
  color: var(--gray_900_02) !important;
  margin-top: 14px;
  margin-right: 8px;
  font-size: 14px;
  gap: var(--space-6xl);
  background-color: var(--red_50) !important;
  align-self: stretch;
  background-image: url(../images/img_arrowdown_black_900.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: calc(100% - 18px);
  padding: var(--space-xl) var(--space-7xl);
  border-radius: 6px !important;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.contact-section__form {
  margin-top: 16px;
  margin-bottom: 14px;
  margin-right: 8px;
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.contact-section__name-row {
  gap: var(--space-5xl);
  display: flex;
  align-self: stretch;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.contact-section__contact-row {
  gap: var(--space-6xl);
  display: flex;
  align-self: stretch;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.contact-section__message-column {
  gap: var(--space-xs);
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
}

.contact-section__message-textarea {
  color: var(--gray_400_02);
  font-size: 14px;
  align-self: stretch;
  height: 100px;
  padding: var(--space-xl) var(--space-3xl);
  border-radius: 6px !important;
  border: 1px solid var(--blue_gray_100_02) !important;
}

.contact-section__submit-button {
  color: var(--white_a700) !important;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--deep_purple_a200) !important;
  height: 50px;
  min-width: 188px;
  border-radius: 6px !important;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.home__title {
  color: var(--white_a700) !important;
  width: 38%;
  line-height: 69px;
  position: absolute;
  left: 11%;
  top: 6%;
  margin: auto;
  @media only screen and (max-width: 1050px) {
    font-size: 40px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 34px;
  }
}

.home__title-span {
  color: var(--white_a700);
}

.home__title-span-1 {
  color: var(--green_a400);
}

.home__image--maximize {
  height: 92px;
  width: 5%;
  object-fit: contain;
  position: absolute;
  right: 4%;
  top: 21%;
  margin: auto;
}

.home__clock-1 {
  height: 56px;
  width: 5%;
  object-fit: contain;
  position: absolute;
  left: 43%;
  top: 18%;
  margin: auto;
}

.group-539 {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  height: max-content;
  margin: auto;
}

.home__image-3 {
  height: 422px;
  width: 6%;
  object-fit: contain;
}

.group-538 {
  margin-top: -174px;
  width: 100%;
  /* position: relative;
  display: flex; */
  /* @media only screen and (max-width: 1050px) {
    flex-direction: column;
  } */
}

.banner-row {
  flex: 1;
  display: flex;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.banner-row__image--right {
  height: 598px;
  z-index: 1;
  width: 8%;
  position: relative;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.banner-row__image--left {
  height: 598px;
  margin-left: -122px;
  position: relative;
  width: 100%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.top-banners-3-3 {
  height: 598px;
  margin-left: -26px;
  position: relative;
  width: 3%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.home__rectangle {
  height: 8px;
  width: 26%;
  position: absolute;
  left: 11%;
  top: 20%;
  margin: auto;
}

.home__title-1 {
  color: var(--white_a700) !important;
  width: 20%;
  line-height: 32px;
  position: absolute;
  left: 11%;
  top: 26%;
  margin: auto;
}

.column {
  gap: 66px;
  width: 78%;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  height: max-content;
  margin: auto;
  @media only screen and (max-width: 550px) {
    gap: 33px;
  }
}

.column__group {
  display: flex;
  align-items: flex-start;
}

.column__subgroup {
  padding-left: 478px;
  padding-right: 56px;
  gap: 72px;
  align-self: center;
  flex: 1;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1440px) {
    padding-left: 32px;
  }

  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.column__icon {
  height: 5px;
  background-color: var(--white_a700_33);
  width: 5px;
  border-radius: var(--radius-xs);
}

.column__icon--close {
  height: 70px;
  margin-top: 4px;
  align-self: flex-end;
  width: 10%;
  object-fit: contain;
}

.column__icon--thumbs-up {
  height: 82px;
  margin-left: 110px;
  width: 6%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.home__ellipse {
  height: 94px;
  width: 94px;
  position: absolute;
  bottom: 13%;
  left: 29px;
  margin: auto;
  border-radius: var(--radius-9xl);
  border: 19px solid var(--indigo_900);
}

.home__ellipse-1 {
  height: 32px;
  background-color: var(--indigo_900);
  width: 32px;
  position: absolute;
  bottom: 29%;
  left: 8%;
  margin: auto;
  border-radius: var(--radius-4xl);
}

.home__ellipse-2 {
  height: 8px;
  background-color: var(--white_a700_33);
  width: 8px;
  position: absolute;
  right: 45%;
  top: 23%;
  margin: auto;
  border-radius: var(--radius-md);
}

.group-1 {
  margin-left: 66px;
  margin-right: 66px;
  gap: 138px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  bottom: 14%;
  right: 0px;
  left: 0px;
  @media only screen and (max-width: 1440px) {
    gap: 103px;
    margin-left: 0px;
    margin-right: 0px;
  }

  @media only screen and (max-width: 1050px) {
    gap: 103px;
    margin-left: 0px;
    margin-right: 0px;
  }

  @media only screen and (max-width: 550px) {
    gap: 69px;
  }
}

.group__shape {
  height: 8px;
  margin-right: 70px;
  background-color: var(--white_a700_33);
  width: 8px;
  border-radius: var(--radius-md);
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.group__image {
  height: 82px;
  width: 5%;
  object-fit: contain;
}

.home__ellipse-3 {
  height: 8px;
  background-color: var(--white_a700_33);
  width: 8px;
  position: absolute;
  right: 3%;
  top: 11%;
  margin: auto;
  border-radius: var(--radius-md);
}

.group-6 {
  z-index: 2;
  background-color: var(--green_50_01);
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--space-12xl);
  @media only screen and (max-width: 550px) {
    padding: var(--space-6xl);
  }
}

.section {
  margin-top: 10px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.section__row {
  gap: var(--space-5xl);
  width: 18%;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__icons {
  height: 42px;
  align-self: center;
  width: 14%;
  position: relative;
}

.section__icon--contrast {
  height: 32px;
  position: absolute;
  bottom: 1px;
  right: 0px;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
}

.section__icon--close {
  height: 36px;
  position: absolute;
  right: 0.54px;
  top: 0px;
  margin: auto;
}

.section__content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
  }
}

.section__feature {
  padding-left: 40px;
  padding-right: 40px;
  gap: var(--space-xs);
  align-self: flex-end;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.section__icon--television {
  height: 52px;
  align-self: center;
  width: 20%;
  object-fit: contain;
}

.section__feature-title {
  margin-top: 4px;
}

.section__feature--secondary {
  padding-left: 40px;
  padding-right: 40px;
  gap: var(--space-md);
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.section__icon--television-indigo {
  height: 48px;
  align-self: center;
}

.section__assessments {
  padding-left: 42px;
  padding-right: 42px;
  gap: var(--space-3xl);
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.section__icons--assessments {
  width: 16%;
}

.section__icons-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section__icon--reply {
  height: 36px;
  margin-right: 6px;
  z-index: 3;
  position: relative;
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.section__icon--favorite {
  height: 36px;
  margin-top: -30px;
  position: relative;
  width: 100%;
  @media only screen and (max-width: 1440px) {
    height: auto;
  }

  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.section__community {
  align-self: center;
  width: 24%;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__feature--community {
  gap: var(--space-lg);
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.section__icons-group--lock {
  height: 52px;
  align-self: center;
  background-image: url(../images/img_group_486.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 18%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  @media only screen and (max-width: 1440px) {
    height: auto;
  }

  @media only screen and (max-width: 1050px) {
    height: auto;
  }
}

.section__icon--lock {
  height: 34px;
  margin-bottom: 12px;
}

.section__community-title {
  margin-top: 8px;
}

.group-449 {
  margin-top: 60px;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.home__clock {
  height: 60px;
  align-self: flex-end;
  width: 4%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section-1 {
  margin-bottom: 42px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
  }
}

.section__content-1 {
  margin-top: 24px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  align-self: flex-end;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.section__text-block {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.text-block__description {
  margin-top: 10px;
  width: 80%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.text-block__button {
  color: var(--white_a700) !important;
  margin-top: 20px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--deep_purple_a200) !important;
  height: 54px;
  min-width: 154px;
  border-radius: 6px !important;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content__image {
  height: 448px;
  width: 48%;
  object-fit: contain;
  border-radius: var(--radius-3xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__sidebar {
  gap: var(--space-md);
  display: flex;
  width: 6%;
  flex-direction: column;
  align-items: flex-end;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.sidebar__icon {
  height: 8px;
  margin-right: 18px;
  width: 8px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray_200_01);
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.sidebar__group {
  height: 96px;
  padding-left: var(--space-3xl);
  padding-right: var(--space-3xl);
  background-image: url(../images/img_group_18.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 76%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  @media only screen and (max-width: 1440px) {
    width: 100%;
    height: auto;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
    height: auto;
  }
}

.group__icon {
  height: 6px;
  margin-bottom: 90px;
  width: 6px;
  border-radius: var(--radius-sm);
  border: 1.3px solid var(--gray_200_01);
}

.group-368 {
  margin-top: 36px;
}

.group-5 {
  background-color: var(--blue_gray_50);
  display: flex;
  align-items: flex-start;
  padding: var(--space-15xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-6xl);
  }
}

.content-section-2 {
  margin-top: 10px;
  margin-bottom: 26px;
  padding-left: 56px;
  padding-right: 56px;
  align-self: center;
  flex: 1;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section__row {
  gap: var(--space-13xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-section__row--main {
  width: 94%;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.content-section__column--subjects {
  gap: var(--space-10xl);
  display: flex;
  background-color: var(--white_a700);
  width: 30%;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6xl);
  border-radius: var(--radius-6xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.subject__icon-button--user {
  height: 66px;
  padding-left: var(--space-6xl);
  padding-right: var(--space-6xl);
  background-color: var(--gray_100_01) !important;
  width: 66px;
  border-radius: 32px !important;
}

.subject__title {
  margin-bottom: 12px;
  font-weight: 600 !important;
  align-self: flex-end;
}

.expandable-list__container--nested {
  gap: var(--space-12xl);
  display: flex;
  flex-direction: column;
}

.content-section__row--footer {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
  }
}

.image-template {
  margin-top: 20px;
  display: flex;
  background-color: var(--white_a700);
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-6xl);
}

.content {
  margin-left: 35px;
  gap: var(--space-10xl);
  display: flex;
  background-color: var(--white_a700);
  width: 46%;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6xl);
  border-radius: var(--radius-6xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.content-1 {
  gap: var(--space-10xl);
  display: flex;
  background-color: var(--white_a700);
  width: 46%;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6xl);
  border-radius: var(--radius-6xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.home__image--cut {
  height: 76px;
  width: 4%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.group-457 {
  margin-top: 60px;
  padding-left: 46px;
  padding-right: 46px;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section {
  gap: var(--space-15xl);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    gap: 27px;
  }
}

.content-section__intro {
  margin-left: 6px;
  margin-right: 6px;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content-section__intro__clock {
  height: 98px;
  width: 5%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__intro__text-group {
  margin-top: 10px;
  padding-left: 460px;
  padding-right: 56px;
  gap: var(--space-xl);
  align-self: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1440px) {
    padding-left: 32px;
  }

  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section__intro__description {
  margin-left: 42px;
  text-align: center;
  width: 52%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.content-section__projects {
  margin-left: 238px;
  margin-right: 238px;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.content-section__projects__info {
  gap: var(--space-10xl);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.content-section__projects__details {
  margin-top: 14px;
  width: 80%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__projects__exams-details {
  margin-top: 18px;
  width: 80%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__projects__image {
  height: 450px;
  width: 44%;
  object-fit: contain;
  border-radius: var(--radius-5xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__labs {
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.content-section__labs__info {
  margin-bottom: 36px;
  padding-left: 122px;
  padding-right: 122px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1440px) {
    padding-left: 32px;
    padding-right: 32px;
  }

  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section__labs__image {
  height: 450px;
  margin-left: 114px;
  align-self: center;
  width: 44%;
  object-fit: contain;
  border-radius: var(--radius-5xl);
  @media only screen and (max-width: 1440px) {
    margin-left: 0px;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.content-section__labs__text-group {
  margin-top: 24px;
  width: 44%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__labs__details {
  margin-top: 18px;
  width: 100%;
  line-height: 30px;
}

.content-section__labs__tools-heading {
  margin-top: 40px;
}

.content-section__labs__tools-details {
  margin-top: 14px;
  width: 92%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__labs__logo {
  height: 114px;
  align-self: flex-end;
  width: 6%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.group-453 {
  margin-top: 42px;
}

.group-3 {
  background-color: var(--green_50);
  display: flex;
  align-items: center;
  padding: 62px 56px;
  @media only screen and (max-width: 1440px) {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding: var(--space-6xl);
  }
}

.home__image-2 {
  height: 112px;
  align-self: flex-end;
  width: 4%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section-2 {
  margin-top: 4px;
  margin-bottom: 16px;
  gap: 50px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.section__title-container {
  padding-left: 56px;
  padding-right: 56px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1440px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.section__title-span-1 {
  color: var(--purple_800);
}

.section__features {
  width: 78%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.section__features-column {
  margin-top: 70px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__features-description {
  margin-top: 14px;
  width: 70%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__features-description-1 {
  margin-top: 18px;
  width: 72%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__features-image {
  height: 450px;
  align-self: center;
  width: 44%;
  object-fit: contain;
  border-radius: var(--radius-5xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__benefits {
  width: 82%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.section__benefits-image {
  height: 450px;
  width: 42%;
  object-fit: contain;
  border-radius: var(--radius-5xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__benefits-column {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__benefits-description {
  margin-top: 18px;
  width: 82%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__benefits-description-1 {
  margin-top: 14px;
  width: 78%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__benefits-button {
  color: var(--white_a700) !important;
  margin-top: 24px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--deep_purple_a200) !important;
  height: 54px;
  min-width: 166px;
  border-radius: 6px !important;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.group-447 {
  margin-top: 80px;
  padding-left: 56px;
  padding-right: 56px;
  display: flex;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section-1 {
  margin-bottom: 40px;
  padding-left: 56px;
  padding-right: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    flex-direction: column;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section__image-stack {
  height: 448px;
  padding-left: 70px;
  padding-right: 70px;
  flex: 1;
  position: relative;
  align-content: center;
  @media only screen and (max-width: 1440px) {
    height: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    width: 100%;
    flex: unset;
    height: auto;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.content-section__image--first {
  height: 448px;
  width: 90%;
  object-fit: contain;
  border-radius: var(--radius-3xl);
}

.content-section__image--second {
  height: 448px;
  width: 90%;
  object-fit: contain;
  position: absolute;
  left: 7%;
  bottom: 0px;
  top: 0px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: var(--radius-3xl);
}

.content-section__text-column {
  width: 36%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.content-section__description {
  margin-top: 10px;
  width: 100%;
  line-height: 30px;
}

.content-section__button {
  color: var(--white_a700) !important;
  margin-top: 30px;
  padding-left: var(--space-11xl);
  padding-right: var(--space-11xl);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: var(--deep_purple_a200) !important;
  height: 54px;
  min-width: 128px;
  border-radius: 6px !important;
  @media only screen and (max-width: 1440px) {
    font-size: 15px;
  }

  @media only screen and (max-width: 550px) {
    padding-left: var(--space-6xl);
    padding-right: var(--space-6xl);
  }
}

.home__thumbs-up {
  height: 82px;
  align-self: flex-end;
  width: 5%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.group-4 {
  padding-top: 66px;
  padding-bottom: 66px;
  gap: 60px;
  background-color: var(--blue_gray_50);
  @media only screen and (max-width: 1440px) {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  @media only screen and (max-width: 1050px) {
    padding-top: var(--space-8xl);
    padding-bottom: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    gap: 30px;
    padding-top: var(--space-6xl);
    padding-bottom: var(--space-6xl);
  }
}

.section__content-2 {
  gap: var(--space-13xl);
  display: flex;
  width: 84%;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__reviews {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.section__review-summary {
  margin-top: 14px;
  gap: var(--space-5xl);
  align-self: flex-start;
  display: flex;
  width: 18%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.section__rating-value {
  margin-left: 8px;
  @media only screen and (max-width: 1050px) {
    font-size: 30px;
    margin-left: 0px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.section__rating-bar {
  display: flex;
  gap: var(--space-xl);
  --rating-font-size: 12;
  --rating-active-color: #ffd833;
  --rating-inactive-color: #ffd833;
}

.section__divider {
  height: 84px;
  background-color: var(--gray_300);
  width: 1px;
  @media only screen and (max-width: 1050px) {
    width: 84px;
    height: 1px;
  }
}

.section__review-list {
  flex: 1;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
  }
}

.section__review-items {
  margin-left: 72px;
  gap: var(--space-xs);
  display: flex;
  flex-direction: column;
  @media only screen and (max-width: 1440px) {
    margin-left: 0px;
  }

  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
  }
}

.list {
  margin-bottom: 14px;
  gap: var(--space-10xl);
  display: flex;
  width: 72%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.group-455 {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
  }
}

.home__image {
  height: 112px;
  width: 4%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.faq-section {
  margin-top: 10px;
  margin-bottom: 58px;
  gap: 32px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1440px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.faq-section__list {
  gap: var(--space-8xl);
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.group-2 {
  background-color: var(--deep_orange_50);
  flex: 1;
  padding: var(--space-6xl);
  border-radius: 8px;
}

.faq-section__item-header {
  position: relative;
  cursor: pointer;
}

.faq-section__item-header::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: none;
  border: solid #333;
  border-width: 0 3px 3px 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}

details[open] .faq-section__item-header::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-section__item-detail {
  display: flex;
}

.faq-section__answer {
  line-height: 28px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: justify;
}

.home__image-1 {
  height: 134px;
  align-self: flex-end;
  width: 6%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer {
  margin-top: 20px;
  padding-top: var(--space-9xl);
  padding-bottom: var(--space-9xl);
  display: flex;
  background-color: var(--blue_gray_900);
  @media only screen and (max-width: 550px) {
    padding-top: var(--space-6xl);
    padding-bottom: var(--space-6xl);
  }
}

.footer__section {
  margin-top: 56px;
  width: 100%;
}

.footer__top {
  margin-left: 210px;
  margin-right: 198px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.footer__logo-column {
  gap: var(--space-10xl);
  display: flex;
  width: 22%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.footer__logo {
  height: 60px;
  width: 100%;
  object-fit: contain;
  @media only screen and (max-width: 1440px) {
    width: 334px;
    height: auto;
  }

  @media only screen and (max-width: 1050px) {
    width: 334px;
    height: auto;
  }
}

.footer__description {
  color: var(--white_a700) !important;
  width: 92%;
  line-height: 30px;
  @media only screen and (max-width: 1440px) {
    width: 100%;
  }

  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.footer__links-column {
  margin-top: 14px;
  align-self: flex-end;
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.footer__links-group {
  gap: var(--space-lg);
  align-self: center;
  display: flex;
  width: 78%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.footer__modules-column {
  gap: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__contact-column {
  gap: var(--space-md);
  align-self: center;
  display: flex;
  width: 20%;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.footer__contact-info {
  margin-right: 28px;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    margin-right: 0px;
  }
}

.footer__contact-icons {
  gap: var(--space-8xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__icon-call {
  height: 14px;
}

.footer__icon-lock {
  height: 10px;
}

.footer__contact-details {
  color: var(--white_a700) !important;
  line-height: 36px;
}

.footer__address {
  gap: var(--space-xl);
  display: flex;
  align-self: stretch;
  align-items: flex-start;
}

.footer__icon-linkedin {
  height: 16px;
  margin-top: 4px;
}

.footer__address-text {
  color: var(--white_a700) !important;
  align-self: center;
  width: 96%;
  line-height: 23px;
}

.footer__divider {
  height: 1px;
  margin-top: 96px;
  background-color: var(--blue_gray_400_6d);
}

.footer__bottom {
  margin-top: 18px;
  margin-left: 210px;
  margin-right: 210px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-8xl);
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.footer__copyright {
  color: var(--white_a700) !important;
  align-self: flex-end;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.footer__socials {
  gap: var(--space-9xl);
  display: flex;
  width: 14%;
  justify-content: center;
  align-items: center;
  @media only screen and (max-width: 550px) {
    width: 100%;
    padding-left: var(--space-8xl);
    padding-right: var(--space-8xl);
  }
}

.footer__socials-icons {
  gap: var(--space-6xl);
  display: flex;
  flex: 1;
  justify-content: center;
}

/* Review Section Styles */
.review-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 2rem;
  margin: 2rem 0;
  max-width: 800px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.review-section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #12004a;
  text-align: center;
}
.review-section__average {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.review-section__average-label {
  font-weight: 500;
  color: #333;
}
.review-section__average-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e676;
}
.review-section__stars {
  color: #ffd600;
  font-size: 1.5rem;
}
.review-section__count {
  color: #888;
  font-size: 1rem;
}
.review-section__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.review-section__stars-input {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.2rem;
}
.review-section__stars-input input[type="radio"] {
  display: none;
}
.review-section__stars-input label {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}
.review-section__stars-input input[type="radio"]:checked ~ label,
.review-section__stars-input label:hover,
.review-section__stars-input label:hover ~ label {
  color: #ffd600;
}
.review-section__comment {
  min-height: 80px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 0.75rem;
  font-size: 1rem;
  resize: vertical;
}
.review-section__submit {
  background: #12004a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.review-section__submit:hover {
  background: #00e676;
  color: #12004a;
}
.review-section__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-section__review {
  background: #f8f8ff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(18,0,74,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.review-section__review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-section__review-stars {
  color: #ffd600;
  font-size: 1.2rem;
}
.review-section__review-date {
  color: #888;
  font-size: 0.9rem;
  margin-left: auto;
}
.review-section__review-comment {
  color: #222;
  font-size: 1.05rem;
}
.review-section__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.review-section__page-btn {
  background: #12004a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.review-section__page-btn:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}
.review-section__page-btn:hover:not(:disabled) {
  background: #00e676;
  color: #12004a;
}
.review-section__page-info {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Review Section Side-by-Side Layout */
.review-section__main-flex {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.review-section__left {
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 380px;
}
.review-section__right {
  flex: 2 1 400px;
  min-width: 320px;
}
@media (max-width: 900px) {
  .review-section__main-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .review-section__left, .review-section__right {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

.review-section__rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.review-section__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding-left: 0.5rem;
  /* padding-right: 0.5rem; */
}

.review-section__name-row input[type="text"],
.review-section__name-row input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  width: 60%;
  margin-left: 1rem;
  transition: border 0.2s;
}
.review-section__name-row input[type="text"]:focus,
.review-section__name-row input:focus {
  border: 1.5px solid #12004a;
  outline: none;
}

.review-section__comment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding-left: 0.5rem;
  /* padding-right: 0.5rem; */
}

.review-section__comment-row textarea[type="text"],
.review-section__comment-row textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  width: 60%;
  margin-left: 1rem;
  transition: border 0.2s;
}
.review-section__comment-row textarea[type="text"]:focus,
.review-section__comment-row textarea:focus {
  border: 1.5px solid #12004a;
  outline: none;
}