:root {
  --font-family: "Artegra Sans";
}

.page {
  font-family: var(--font-family);
  color: #fff;
}

/* Header */
.header {
  display: flex;
  flex-direction: row;
  background-color: #001d53;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 38px;
  padding-bottom: 38px;
  padding-left: 20px;
  padding-right: 20px;
}

.header__logo-buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.header__logo {
  width: 389px;
  height: 90px;
}

.header__logo-background {
  width: 100%;
  height: 100%;
  background-image: url("../images/logo/logo_desktop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.header__buttons a {
  text-decoration: none;
}

.header__buttons-unit {
  font-size: 17px;
  text-transform: uppercase;
  line-height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #89b2c4;
  border-radius: 10px;
  border: none;
  width: 270px;
  height: 55px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.header__buttons-unit:hover {
  background-color: #6b8e9d;
}

.header__info {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.address {
  display: flex;
  flex-direction: column;
}

.address__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-style: normal;
}

.address__list-item {
  align-self: flex-end;
  font-size: 19px;
  line-height: 27px;
}

.header__info-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  list-style: none;
  gap: 22px;
}

.header__info-social-item {
  width: 37px;
  height: 37px;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger img {
  width: 37px;
  height: 37px;
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .header__logo-buttons-container {
    gap: 20px;
    align-self: flex-start;
    margin-top: 10px;
    margin-left: 8px;
  }

  .header__burger {
    display: block;
    align-self: flex-start;
  }

  .header__logo {
    width: 46px;
    height: 46px;
  }

  .header__logo-background {
    background-image: url("../images/logo/logo.svg");
  }

  .header__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .header__button-show {
    width: calc(75vw - 40px);
  }

  .header__button-hide {
    display: none;
  }

  .header__info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 8px;
    margin-top: 15px;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #e6e6e6;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__logo {
  background-image: url("../images/logo/logo.svg");
  width: 70px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.mobile-menu__close img {
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #000;
  font-size: 30px;
}

.mobile-menu__nav a {
  text-decoration: none;
  color: #000;
}

.mobile-menu__footer {
  text-align: start;
  color: #000;
}

/* Navigation block */
.content__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.content__navigation-list {
  display: flex;
  width: 65%;
  min-width: 1000px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 28px 160px;
  gap: 60px;
  border-bottom: 3px solid #001d53;
}

.content__navigation-list-item {
  color: #000;
  font-size: 22px;
  line-height: 40px;
}

.content__navigation-list-item a {
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content__navigation-list {
    padding: 28px 20px;
    gap: 20px;
  }

  .content__navigation {
    display: none;
  }
}

/* Banner section */

.banner__section {
  display: flex;
  flex-direction: row;
  margin: 22px auto 0;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #001d53;
}

.banner__section-background {
  background-image: url(../images/banners/background.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.banner__section-content {
  width: 100vw;
  height: auto;
  max-width: 1700px;
  background-image: url(../images/banners/banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  text-align: start;
  padding-top: 57px;
  padding-bottom: 63px;
  padding-left: 7%;
  padding-right: 7%;
}

.banner__section-container {
  margin-bottom: 22px;
}

.banner__section-title-desktop {
  font-size: 45px;
  line-height: 70px;
  font-weight: 600;
  text-transform: uppercase;
}

.banner__section-title-mobile {
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
  display: none;
}

.banner__section-price {
  font-size: 35px;
  font-weight: 600;
}

.banner__section-additional-info {
  color: #001d53;
  font-size: 22px;
}

.banner__section-text {
  font-size: 24px;
  line-height: 30px;
}

.banner__section-text span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .banner__section {
    flex-direction: column;
    margin: 0;
  }

  .banner__section-title-desktop {
    display: none;
  }

  .banner__section-title-mobile {
    display: block;
  }

  .banner__section-content {
    width: 100%;
    height: 120vh;
    padding: 20px;
    text-align: start;
    background-image: url(../images/banners/banner_mobile.png);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .banner__section-price {
    font-size: 25px;
    line-height: 40px;
  }

  .banner__section-text {
    font-size: 18px;
    line-height: 28px;
  }
}

/* YouCan section */
.youcan__section {
  display: flex;
  width: calc(100vw - 40px);
  max-width: 1700px;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.youcan__section-title {
  font-size: 37px;
  line-height: 50px;
  font-weight: 600;
  color: #001d53;
  text-align: center;
  margin-top: 27px;
}

.youcan__section-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
  gap: 34px;
}

.youcan__section-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 320px;
  height: auto;
  gap: 22px;
  padding-top: 32px;
}

.youcan__section-image {
  width: 70px;
  height: 70px;
}

.youcan__section-text {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 768px) {
  .youcan__section-list-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .youcan__section-list-item {
    width: 100%;
    justify-content: center;
  }
}

/* Before/After section */
.before-after__section {
  background-color: #e6e6e6;
  width: 100%;
}

.before-after__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  height: auto;
  max-width: 1700px;
  margin: 0 auto;
  margin-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
}

.before-after__section-title {
  font-size: 50px;
  font-weight: 600;
  color: #001d53;
  align-self: flex-start;
  margin-top: 35px;
  margin-bottom: 20px;
}

.before-after__section-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-after__section-list-wrapper {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 54px;
}

.before-after__section-list {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
}

.before-after__section-list-item {
  flex: 0 0 50%;
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2%;
  padding-right: 2%;
}

.before-after__section-carousel-arrows-mobile {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .before-after__content {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .before-after__section-title {
    font-size: 40px;
  }

  .before-after__section-list-item {
    flex: 0 0 100%;
    padding: 0;
  }

  .before-after__section-list-wrapper {
    padding-bottom: 20px;
  }

  .before-after__section-carousel {
    flex-direction: column;
  }

  .before-after__section-carousel-arrow-desktop {
    display: none;
  }

  .before-after__section-carousel-arrows-mobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
  }

  .before-after__section-carousel-arrow-mobile {
    width: 52px;
    height: 30px;
    padding: 10px;
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-size: cover;
  }

  .before-after__section-carousel-arrow-left-mobile {
    background-image: url(../images/icons/arrow_left-mobile-blue.svg);
  }

  .before-after__section-carousel-arrow-right-mobile {
    background-image: url(../images/icons/arrow_right-mobile-blue.svg);
  }
}

.before-after-image {
  width: 80%;
  object-fit: cover;
}

.before-after__section-carousel-arrow-desktop {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-size: cover;
  padding: 20px;
  z-index: 1;
}

.before-after__section-carousel-arrow-left {
  left: 10px;
  background-image: url(../images/icons/arrow_left.svg);
}

.before-after__section-carousel-arrow-right {
  right: 10px;
  background-image: url(../images/icons/arrow_right.svg);
}

/* Question section */
.question__section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #001d53;
}

.question__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  padding-top: 52px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.question__section-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  margin-top: 10px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.question__section-form {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.question__section-form-fieldset {
  border: none;
}

.question__section-form-input {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 41px;
  margin-top: 28px;
}

.form-input {
  border: 2px solid #fff;
  outline: none;
  width: 487px;
  height: 65px;
  min-width: 350px;
  color: #fff;
  font-size: 25px;
  line-height: 40px;
  padding: 20px;
  border-radius: 15px;
  background-color: transparent;
}

.question__section-form-checkboxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 21px;
  gap: 7px;
}

.question__section-form-checkbox {
  align-self: start;
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
}

.checkbox__span {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.input-checkbox:checked + .checkbox__span {
  background-color: #89b2c4;
}

.input-checkbox:checked + .checkbox__span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  background-image: url(/images/icons/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}

.question__section-form-spam {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.question__section-form-spam-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  gap: 16px;
}

.spam-input {
  width: 270px;
  height: 60px;
  border: none;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  outline: none;
}

.spam-input::placeholder {
  text-align: center;
  color: #6b6b6b;
  font-size: 20px;
  font-weight: 400;
}

.submit-button {
  width: 242px;
  height: 70px;
  background-color: #d3bc8d;
  font-size: 23px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
  margin-top: 40px;
  cursor: pointer;
  margin-bottom: 24px;
  border: none;
}

.spam-button-container-question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.spam-error-message-question {
  display: none;
  color: red;
  font-size: 18px;
  line-height: 25px;
  margin-top: 10px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.spam-success-message-question {
  display: none;
  color: #fff;
  font-size: 36px;
  line-height: 25px;
  margin-top: 10px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .question__section-form {
    padding: 0;
  }

  .question__section-title {
    font-size: 35px;
    line-height: 50px;
  }

  .question__section-text {
    font-size: 20px;
    line-height: 30px;
  }

  .form-input {
    width: 100%;
    min-width: unset;
    font-size: 20px;
    line-height: 30px;
  }

  .question__section-form-spam {
    margin-top: 10px;
  }

  .question__section-form-spam-label {
    display: flex;
    flex-direction: column;
  }

  .spam-success-message-question {
    font-size: 24px;
  }

  .spam-input {
    width: 100%;
    font-size: 18px;
  }

  .submit-button {
    width: 100%;
    font-size: 20px;
  }
}

/* Services section */

.services__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  padding: 0 20px;
  margin: 0 auto;
}

.services__section-content {
  width: 100%;
}

.services__section-content-container {
  display: grid;
  grid-template-columns: 30% 40%; 
  gap: 62px;
  margin-top: 40px;
  align-items: start; 
  justify-content: center;
}


.services__section-image-wrapper { 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; 
}

.services__section-image {
  max-width: 100%; 
  max-height: 100%;  
  object-fit: contain;
  object-position: center;
}


.services__section-text-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services__section-title-mobile {
  display: none;
}

.services__section-title-desktop {
  font-size: 45px;
  line-height: 50px;
  font-weight: 600;
  color: #001d53;
  margin-top: 15px;
}

.services__section-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #001d53;
  text-align: left;
  margin-top: 20px; 
}

@media (max-width: 768px) {
  .services__section {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .services__section-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .services__section-title-mobile {
    display: block;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    color: #001d53;
  }

  .services__section-title-desktop {
    display: none;
  }

  .services__section-image {
    width: 100%;
    height: auto;
  }

  .services__section-text {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Protandtech section */
.protandtech__section {
  width: 100%;
  height: auto;
  background-color: #89b2c4;
  margin-top: 45px;
}

.protandtech__section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  height: auto;
  margin: 0 auto;
  color: #001d53;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
}

.protandtech__section-list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  list-style: none;
  margin-top: 42px;
}

.protandtech__section-list-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-bottom: 2px solid #fff;
  padding-bottom: 25px;
  margin-bottom: 34px;
}

.protandtech__section-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 32px;
}

.protandtech__section-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.protandtech__section-sublist {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
  list-style: none;
  margin-bottom: 30px;
}

.protandtech__section-sublist li::before {
  content: "•";
  color: #001d53;
  font-size: 1.2em;
  margin-right: 5px;
}

.protandtech__section-sublist-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.protandtech__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.protandtech__section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  width: 100%;
}

.toggle-icon {
  width: 20px;
  height: 20px;
  scale: 1.5;
}

.protandtech__section-list-item.active .protandtech__section-content {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

.protandtech__section-text:not(:last-child):not(
    :has(+ .protandtech__section-sublist)
  ) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .protandtech__section {
    width: 100%;
  }

  .protandtech__section-container {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .protandtech__section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .protandtech__section-subtitle {
    font-size: 22px;
    line-height: 28px;
  }

  .protandtech__section-text {
    font-size: 16px;
    line-height: 22px;
  }

  .protandtech__section-sublist {
    margin-left: 0;
  }

  .protandtech__section-sublist li::before {
    font-size: 1em;
  }

  .protandtech__section-sublist-item {
    font-size: 16px;
    line-height: 22px;
  }
}

/* About section */
.about__section {
  width: 100%;
  height: auto;
  margin: 0 auto;
  color: #001d53;
  background-image: url(../images/about/background.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about__section-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;  
  background-size: cover;
  width: calc(90vw - 40px);
  max-width: 1700px;
  margin: 0 auto;
  height: auto;
}

.about__section-info-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: auto;
}

.about__section-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  margin-top: 44px;
}

.about__section-title-duplicate {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  margin-top: 44px;
  display: none;
}

.about__section-info-subtext {
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  margin-top: 38px;
  font-weight: 600;
}

.about__section-info-list {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  margin-left: 18px;
}

.about__section-info-list-item {
  font-size: 22px;
  line-height: 34px;
}

.appointment-button {
  width: 356px;
  height: 70px;
  background-color: #d3bc8d;
  font-size: 23px;
  line-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 20px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
}

.appointment-button:hover {
  background-color: #b19d76;
}

.about__section-info-right {
  height: 100%;
  width: auto;
  display: flex;
  align-self: flex-end;
}

.about__section-info-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #001d53;
  width: 100%;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.about__section-info-social-title {
  font-size: 35px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  margin-top: 53px;
  text-align: center;
}

.social__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 67px;
  margin-top: 30px;
}

.social__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social__list-item-image {
  width: 67px;
  height: 67px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.telegram_icon {
  width: 35px;
  height: 35px;
  background-image: url(../images/icons/telegram_element.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.instagram_icon {
  width: 45px;
  height: 45px;
  background-image: url(../images/icons/instagram_element.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.about__section-info-social-alert {
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 29px;
  margin-bottom: 52px;
  text-align: center;
}

@media (max-width: 768px) {
  .about__section-info {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .about__section-title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 20px;
    display: none;
  }

  .about__section-title-duplicate {
    font-size: 45px;
    line-height: 50px;
    margin-top: 20px;
    display: block;
  }

  .about__section-info-right {
    display: flex;
    flex-direction: column;
    order: 1;
    padding: 10px;
    margin-top: 20px;
  }

  .about__section-info-left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
  }

  .about__section-info-subtext {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }

  .appointment-button {
    width: 100%;
    font-size: 20px;
    height: 60px;
    margin-top: 20px;
    padding: 10px;
  }

  .about__section-info-social-title {
    font-size: 28px;
    line-height: 40px;
    margin-top: 30px;
  }

  .social__list {
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
  }

  .social__list-item-image {
    width: 50px;
    height: 50px;
  }

  .telegram_icon,
  .instagram_icon {
    width: 30px;
    height: 30px;
  }

  .about__section-info-social-alert {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

/* Video section */
.video__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  height: auto;
  margin: 0 auto;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background-image: url("../images/icons/play_icon.svg");
  background-size: cover;
  pointer-events: none;
}

.play-icon.hidden {
  display: none;
}

.video__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: #001d53;
  margin-top: 45px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.video__section-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video__section-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

@media (max-width: 768px) {
  .video__section {
    width: calc(100vw - 20px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
  }

  .video__section-title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .video__section-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
  }
}

/* Certificates section */

.certificates__section {
  background-color: #89b2c4;
  width: 100%;
}

.certificates__section-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  height: auto;
  margin: 0 auto;
  margin-top: 52px;
  padding-left: 20px;
  padding-right: 20px;
}

.certificates__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  margin-top: 69px;
  margin-bottom: 37px;
  text-align: center;
  text-transform: uppercase;
}

.certificates__carousel {
  overflow: hidden;
  width: 100%;
}

.certificates__section-list {
  display: flex;
  transition: transform 0.5s ease;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
  gap: 30px;
}

.certificates__section-list-item {
  flex: 0 0 25%;
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.certificates__section-image {
  width: 100%;
  height: auto;
}

.certificates__carousel-controls {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 20px;
  gap: 250px;
}

.carousel-prev,
.carousel-next {
  width: 52px;
  height: 30px;
  padding: 10px;
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-size: cover;
}

.carousel-prev {
  background-image: url("../images/icons/arrow_left-mobile-white.svg");
}

.carousel-next {
  background-image: url("../images/icons/arrow_right-mobile-white.svg");
}

@media (max-width: 768px) {
  .certificates__section-list {
    flex-wrap: nowrap;
    margin-bottom: 0;
    gap: 0;
  }

  .certificates__section-list-item {
    flex: 0 0 100%;
    padding: 0;
  }

  .certificates__carousel-controls {
    display: flex;
  }

  .certificates__carousel-controls {
    justify-content: space-between;
    margin-top: 20px;
    gap: 0;
  }
}

/* Price Table section */
.price-table__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.price-table__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: #001d53;
  margin-top: 45px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.price-table__section-wrapper {
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.price-table__section-table {
  width: 100%;
  border-collapse: collapse;
  color: #000;
}

.price-table__section-table-head {
  background-color: #d9d9d9;
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
}

.price-table__section-table-head-2 {
  background-color: #89b2c4;
  color: #fff;
  font-size: 23px;
  line-height: 50px;
  font-weight: 400;
}

.price-table__section-table-row {
  font-size: 21px;
  line-height: 50px;
  font-weight: 400;
  border-bottom: 2px solid #9c9b9b;
}

.price-table__section-table-cell {
  padding: 15px;
  text-align: left;
}

.price-table__section-table-cell:first-child {
  width: 20%;
  padding-left: 45px;
}

.price-table__section-table-cell:nth-child(2) {
  width: 60%;
}

.price-table__section-table-cell:last-child {
  width: 20%;
}

.price-table__gradient {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.read-more-button {
  background-color: #89b2c4;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin-top: 43px;
  margin-bottom: 63px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
  padding: 18px 35px 18px 35px;
  border-radius: 39px;
}

.read-more-button:hover {
  background-color: #6b8e9d;
}

@media (max-width: 768px) {
  .price-table__section {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .price-table__section-title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .price-table__section-table-head,
  .price-table__section-table-head-2,
  .price-table__section-table-row {
    font-size: 18px;
    line-height: 30px;
  }

  .price-table__section-table-cell {
    padding: 10px;
    display: block;
    width: 100%;
  }

  .price-table__section-table-cell:first-child {
    padding-left: 10px;
  }

  .price-table__section-table-cell:nth-child(2) {
    width: 100%;
  }

  .price-table__section-table-cell:last-child {
    width: 100%;
  }

  .price-table__section-table-row {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #9c9b9b;
  }

  .read-more-button {
    font-size: 25px;
    line-height: 35px;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

/* FAQ section */
.faq__section {
  width: 100%;
  background-color: #e6e6e6;
}

.faq__section-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  height: auto;
  margin: 0 auto;
  color: #001d53;
  padding-left: 20px;
  padding-right: 20px;
}

.faq__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  margin-top: 58px;
  align-self: flex-start;
}

.faq__section-list {
  display: flex;
  flex-direction: column;
  justify-content: start;
  list-style: none;
  margin-top: 27px;
}

.faq__section-list-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-bottom: 2px solid #9c9b9b;
  padding-bottom: 25px;
  margin-bottom: 34px;
}

.faq__section-subtitle {
  font-size: 28px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 32px;
}

.faq__section-question {
  display: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}

.faq__section-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 5vw;
}

.faq__section-text {
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
}

.faq__section-sublist {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
  list-style: none;
}

.faq__section-sublist li::before {
  content: "•";
  color: #001d53;
  font-size: 1.2em;
  margin-right: 5px;
}

.faq__section-sublist-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.faq__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  width: 100%;
}

.toggle-icon {
  width: 20px;
  height: 20px;
}

.faq__section-list-item.active .faq__section-content {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}

@media (max-width: 768px) {
  .faq__section-inner {
    width: calc(100vw - 20px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq__section-title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 20px;
  }

  .faq__section-subtitle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .faq__section-question {
    font-size: 16px;
    line-height: 24px;
  }

  .faq__section-text {
    font-size: 17px;
    line-height: 25px;
  }

  .faq__section-sublist-item {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Interior section */
.interior__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  background-color: #fff;
}

.interior__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: #001d53;
  margin-top: 40px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.interior__section-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 50px;
  gap: 20px;
}

.interior__section-video {
  flex: 1;
  max-width: 60%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.interior__video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background-image: url("../images/icons/play_icon.svg");
  background-size: cover;
  pointer-events: none;
}

.play-icon.hidden {
  display: none;
}

.interior__section-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 40%;
  height: 100%;
}

.interior__image {
  width: 100%;
  height: calc(50% - 10px);
  object-fit: cover;
}

@media (max-width: 768px) {
  .interior__section {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .interior__section-title {
    font-size: 35px;
    line-height: 50px;
  }

  .interior__section-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .interior__section-video {
    max-width: 100%;
  }

  .interior__section-images {
    display: none;
  }

  .interior__image {
    height: auto;
  }

  .play-icon {
    width: 60px;
    height: 60px;
  }
}

/* Registration section */
.registration__section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #001d53;
}

.registration__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  padding-top: 52px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.registration__section-form {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}

.registration__section-form-fieldset {
  border: none;
}

.registration__section-form-input {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.form-input-registration {
  background-color: #fff;
  border: none;
  outline: none;
  width: 100%;
  height: 65px;
  min-width: 350px;
  color: #000;
  font-size: 25px;
  line-height: 40px;
  padding: 20px;
  border-radius: 15px;
}

.form-input-registration::placeholder {
  color: #9c9b9b;
}

.registration__section-form-checkboxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 21px;
  gap: 7px;
}

.registration__section-form-checkbox {
  align-self: start;
  font-size: 19px;
  line-height: 30px;
  font-weight: 400;
}

.checkbox__span {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.input-checkbox:checked + .checkbox__span {
  background-color: #89b2c4;
}

.input-checkbox:checked + .checkbox__span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  background-image: url(/images/icons/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}

.registration__section-form-spam {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.registration__section-form-spam-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  gap: 16px;
}

.spam-input {
  width: 270px;
  height: 60px;
  border: none;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  outline: none;
}

.spam-input::placeholder {
  text-align: center;
  color: #6b6b6b;
  font-size: 20px;
  font-weight: 400;
}

.submit-button {
  width: 242px;
  height: 70px;
  background-color: #d3bc8d;
  font-size: 23px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
  margin-top: 40px;
  cursor: pointer;
  margin-bottom: 24px;
  border: none;
  transition: background-color 0.2s;
}

.spam-button-container-registration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.spam-error-message-registration {
  display: none;
  color: red;
  font-size: 18px;
  line-height: 25px;
  margin-top: 10px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.spam-success-message-registration {
  display: none;
  color: #fff;
  font-size: 36px;
  line-height: 25px;
  margin-top: 10px;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.submit-button:hover {
  background-color: #b19d76;
}

.contra__alert {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3e3e3e;
}

.contra__alert-text {
  font-size: 25px;
  font-weight: 500;
  line-height: 50px;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 25px;
}

@media (max-width: 768px) {
  .registration__section-title {
    font-size: 35px;
    line-height: 50px;
    padding-top: 30px;
  }

  .form-input-registration {
    font-size: 20px;
    line-height: 30px;
    height: 50px;
    min-width: unset;
  }

  .registration__section-form-input {
    gap: 15px;
    margin-top: 20px;
  }

  .registration__section-form-checkboxes {
    margin-top: 15px;
    gap: 5px;
  }

  .registration__section-form-checkbox {
    font-size: 16px;
    line-height: 24px;
  }

  .registration__section-form-spam {
    margin-top: 20px;
  }

  .registration__section-form-spam-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .spam-input {
    width: 100%;
    font-size: 18px;
    height: 50px;
  }

  .spam-input::placeholder {
    font-size: 16px;
  }

  .submit-button {
    width: 55%;
    font-size: 20px;
    height: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .spam-success-message-registration {
    font-size: 24px;
  }

  .contra__alert-text {
    font-size: 20px;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/* Feedback section */
.feedback__section {
  width: 100%;
}

.feedback__background {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #e6e6e6;
}

.feedback__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  margin: 0 auto;
  padding: 20px;
}

.feedback__section-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: #001d53;
  margin-top: 45px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.feedback__section-carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.feedback__section-list-wrapper {
  overflow: hidden;
  margin: 0 auto;
  width: 95%;
  padding-bottom: 54px;
}

.feedback__section-list {
  display: flex;
  transition: transform 0.5s ease-in-out;
  list-style: none;
}

.feedback__section-list-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1%;
}

.feedback-image {
  width: 100%;
  height: auto;
}

.feedback__section-carousel-arrow-desktop {
  position: relative;
  width: 40px;
  height: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-size: cover;
  padding: 20px;
  z-index: 1;
  margin: 0 10px;
}
.feedback__section-carousel-mobile-arrows {
  display: none;
}

.feedback__section-carousel-arrow-desktop.feedback__section-carousel-arrow-left {
  background-image: url(../images/icons/arrow_left.svg);
}

.feedback__section-carousel-arrow-desktop.feedback__section-carousel-arrow-right {
  background-image: url(../images/icons/arrow_right.svg);
}

@media (max-width: 768px) {
  .feedback__content {
    width: calc(100vw - 20px);
    padding: 10px;
  }

  .feedback__section-title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .feedback__section-list-wrapper {
    width: 100%;
    padding-bottom: 20px;
  }

  .feedback__section-carousel-arrow-desktop {
    display: none;
  }

  .feedback__section-carousel-arrow-mobile {
    width: 52px;
    height: 30px;
    padding: 10px;
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-size: cover;
  }

  .feedback__section-carousel-mobile-arrows {
    display: flex;
    justify-content: center;
    gap: 100px;
    width: 100%;
    padding-bottom: 20px;
  }

  .feedback__section-carousel-arrow-mobile.feedback__section-carousel-arrow-left {
    background-image: url(../images/icons/arrow_left-mobile-blue.svg);
  }

  .feedback__section-carousel-arrow-mobile.feedback__section-carousel-arrow-right {
    background-image: url(../images/icons/arrow_right-mobile-blue.svg);
  }
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: #001d53;
}

.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(90vw - 40px);
  max-width: 1700px;
  height: auto;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 75px;
  color: #fff;
  margin-top: 60px;
  margin-bottom: 40px;
  align-self: flex-start;
  padding-left: 40px;
}

.footer__sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: auto;
}

.footer__left-section {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: auto;
  gap: 20px;
}

.footer__address {
  font-style: normal;
}

.footer__address-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 20px;
}

.footer__address-list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__address-subtitle {
  font-size: 27px;
  font-weight: 400;
  line-height: 29px;
}

.footer__address-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}

.footer__address-metro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.footer__address-metro-icon {
  width: 34px;
  height: 23px;
}

.footer__address-metro-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}

.footer__address-schedule-time {
  font-size: 27px;
  font-weight: 400;
  line-height: 29px;
}

.footer__address-schedule {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
}

.footer__phone-number {
  font-size: 27px;
  font-weight: 400;
  line-height: 29px;
  text-decoration: none;
}

.footer__info-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  list-style: none;
  gap: 22px;
  margin-top: 60px;
}

.footer__info-social-item {
  width: 37px;
  height: 37px;
}

.footer__right-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
}

.footer__right-section iframe {
  border-radius: 30px;
}

.footer__section-alert {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  margin-top: 65px;
  margin-bottom: 55px;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .footer__content {
    width: calc(100vw - 20px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer__title {
    font-size: 35px;
    line-height: 50px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .footer__address-list {
    gap: 15px;
  }

  .footer__address-list-item {
    gap: 5px;
  }

  .footer__address-subtitle {
    font-size: 22px;
    line-height: 28px;
  }

  .footer__sections {
    flex-direction: column;
    gap: 30px;
  }

  .footer__left-section,
  .footer__right-section {
    width: 80%;
  }

  .footer__address-text,
  .footer__address-metro-text,
  .footer__address-schedule {
    font-size: 18px;
    line-height: 24px;
  }

  .footer__address-metro-icon {
    width: 25px;
    height: 17px;
  }

  .footer__right-section iframe {
    width: 100%;
    height: 350px;
  }

  .footer__info-social {
    margin-top: 30px;
  }

  .footer__section-alert {
    font-size: 13px;
    line-height: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
