@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"),
    url("../fonts/roboto-v30-latin-regular.woff") format("woff");
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-weight: 500;
  src: url("../fonts/roboto-v30-latin-500.woff2") format("woff2"),
    url("../fonts/roboto-v30-latin-500.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2"),
    url("../fonts/roboto-v30-latin-700.woff") format("woff");
}

@font-face {
  font-family: "Play";
  src: local("Play Regular"), local("Play-Regular"),
    url("playregular.woff2") format("woff2"),
    url("playregular.woff") format("woff"),
    url("playregular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Play";
  src: local("Play Bold"), local("Play-Bold"),
    url("playbold.woff2") format("woff2"), url("playbold.woff") format("woff"),
    url("playbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-primary-dark: #011c44;
  --color-primary-light: #ffffff;
  --color-primary-blue: #2b7fff;
  --color-secondary-dark: #4a4a4a;
  --color-secondary-light: #747272;
  --color-secondary-black: #000000;
  --color-secondary-yellow: #ffd02b;
  --color-radius: #d9d9d9;
  --color-fill: #011f4a;
}
body {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 400;
  font-family: Roboto, sans-serif;
  margin: 0;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 22px;
  }
}
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}
address {
  font-style: normal;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a {
  display: inline-block;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.star-large {
  width: 64px;
  height: 64px;
  position: absolute;
  left: 117px;
  top: 336px;
  fill: var(--color-fill);
  -webkit-animation: scale 2s infinite;
  animation: scale 2s infinite;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.star-middle {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 32px;
  right: -26px;
  fill: var(--color-primary-blue);
  -webkit-animation: spin 2s infinite;
  animation: spin 2s infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(3turn);
    transform: rotate(3turn);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(3turn);
    transform: rotate(3turn);
  }
}
.star-small {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 269.5px;
  right: 6px;
  fill: var(--color-secondary-light);
  -webkit-animation: scale-yellow 3s infinite;
  animation: scale-yellow 3s infinite;
}
@-webkit-keyframes scale-yellow {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    fill: var(--color-secondary-light);
  }
  50% {
    -webkit-transform: scale(1.5) rotate(1turn);
    transform: scale(1.5) rotate(1turn);
    fill: var(--color-secondary-yellow);
  }
  100% {
    -webkit-transform: scale(1) rotate(2turn);
    transform: scale(1) rotate(2turn);
    fill: var(--color-secondary-light);
  }
}
@keyframes scale-yellow {
  0% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
    fill: var(--color-secondary-light);
  }
  50% {
    -webkit-transform: scale(1.5) rotate(1turn);
    transform: scale(1.5) rotate(1turn);
    fill: var(--color-secondary-yellow);
  }
  100% {
    -webkit-transform: scale(1) rotate(2turn);
    transform: scale(1) rotate(2turn);
    fill: var(--color-secondary-light);
  }
}
.star-large-mobile {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 2px;
  bottom: -6px;
  fill: var(--color-fill);
  -webkit-animation: scale 2s infinite;
  animation: scale 2s infinite;
}
@media screen and (min-width: 768px) {
  .star-large-mobile {
    display: none;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.text-color {
  color: var(--color-primary-blue);
}
.text-capitalize {
  text-transform: capitalize;
}
.text-bold {
  font-weight: 600;
}
.description {
  width: 238px;
  color: var(--color-secondary-dark);
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .description {
    font-size: 12px;
    line-height: 1.5;
  }
}
.copyright {
  color: var(--color-secondary-light);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 13px;
    line-height: 1.15;
  }
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.button {
  display: block;
  padding: 16px 24px;
  margin-bottom: 8px;
  color: var(--color-primary-light);
  background-color: var(--color-primary-blue);
  border-radius: 32px;
  border: 2px solid var(--color-primary-blue);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 16px 32px;
    font-size: 18px;
    line-height: 1.16;
    margin-bottom: 14px;
    border-radius: 32px;
  }
}
.button:hover {
  color: var(--color-primary-dark);
  background-color: rgba(0, 0, 0, 0);
}
.carousel-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .carousel-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    fill: var(--color-primary-dark);
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--color-primary-dark);
    cursor: pointer;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
}
.carousel-button:hover {
  background-color: var(--color-primary-blue);
  fill: var(--color-primary-light);
  border: 0.77px solid #fff;
  -webkit-backdrop-filter: blur(15.36px);
  backdrop-filter: blur(15.36px);
}
.carousel-button.next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.input {
  position: relative;
}
.input__label {
  display: block;
  color: var(--color-primary-light);
}
.input__control {
  padding: 18px 32.85px;
  width: 100%;
  border: 2px solid var(--color-secondary-light);
  border-radius: 32px;
  background-color: rgba(0, 0, 0, 0);
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.input__control::-webkit-input-placeholder {
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}
.input__control::-moz-placeholder {
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}
.input__control:-ms-input-placeholder {
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}
.input__control::-ms-input-placeholder {
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}
.input__control::placeholder {
  color: var(--color-primary-light);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}
.input__control:focus {
  background-color: var(--color-secondary-light);
  outline: none;
}
.procedures-cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 4px 120px;
  height: 456px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(48.529%, rgba(1, 28, 68, 0)),
    color-stop(84.641%, rgba(1, 28, 68, 0.73)),
    color-stop(101.43%, rgb(1, 28, 68))
  );
  background-image: linear-gradient(
    180deg,
    rgba(1, 28, 68, 0) 48.529%,
    rgba(1, 28, 68, 0.73) 84.641%,
    rgb(1, 28, 68) 101.43%
  );
  overflow: hidden;
}
.procedures-cards__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.procedures-cards__titles {
  text-align: center;
  width: 152px;
  height: 52px;
  color: var(--color-primary-light);
  line-height: 1.2;
  font-size: 22px;
  font-weight: 400;
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.pagination__button {
  width: 12px;
  height: 12px;
  background-color: var(--color-secondary-light);
  border-radius: 50%;
  padding: 0;
}
.pagination__button--active {
  background-color: var(--color-primary-blue);
}
.about-us-section {
  position: relative;
  top: -30.4px;
}
.about-us-section__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.about-us-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .about-us-section__content {
    min-width: 709px;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    gap: 40px;
  }
}
.about-us-section__images {
  display: none;
}
@media screen and (min-width: 1288px) {
  .about-us-section__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    gap: 40px;
  }
}
.about-us-section__images__top,
.about-us-section__images__bottom {
  position: relative;
  border-radius: 327px;
}
.about-us-section__images__top {
  width: 327px;
  height: 327px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.2);
}
.about-us-section__images__bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 327px;
  height: 328px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.2);
}
.about-us-section__title {
  text-align: left;
  line-height: 1.19;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .about-us-section__title {
    margin-top: 39.6px;
    margin-bottom: 0;
    line-height: 1.16;
    max-width: 529px;
  }
}
.about-us-section__title__span {
  font-weight: 700;
}
.about-us-section__text {
  line-height: 1.16;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .about-us-section__text {
    line-height: 1.7;
    margin-bottom: 0;
  }
}
.advantages-section {
  padding-top: 104px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .advantages-section {
    padding-top: 146px;
    margin-bottom: 96px;
  }
}
.advantages-section__title {
  margin: 0 auto;
  text-align: center;
}
.advantages-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .advantages-section__container {
    gap: 48px;
  }
}
.advantages-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 316px;
  width: 100%;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (min-width: 1288px) {
  .advantages-section__list {
    gap: 56px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-item-align: center;
    align-self: center;
    max-width: 1060px;
  }
}
.advantages-section__icons {
  width: 48px;
  height: 48px;
  fill: var(--color-primary-blue);
  margin-bottom: 12px;
}
.advantages-section__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: calc((100% - 112px) / 3);
  flex-basis: calc((100% - 112px) / 3);
  padding: 24px 32px;
  border-radius: 32px;
  background-color: var(--color-primary-light);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.38);
  box-shadow: 0px 4px 4px 0px rgba(168, 198, 245, 0.38);
}
.advantages-section__text {
  color: var(--color-secondary-black);
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}
.wave-container {
  background-image: url(../images/wave-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -25px;
}
@media screen and (min-width: 768px) {
  .wave-container {
    background-position: center top;
  }
}
.contacts-section {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contacts-section {
    margin: 96px 0;
  }
}
.contacts-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .contacts-section__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
}
.contacts-section__title {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contacts-section__title {
    margin-bottom: 48px;
  }
}
.contacts-section__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 42px 24px;
  border-radius: 24px;
  background-color: var(--color-primary-dark);
  background-image: url(../images/contact-form-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 320px;
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .contacts-section__form {
    padding: 48px 56px;
    border-radius: 32px;
    width: 422px;
    height: 482px;
  }
}
.contacts-section__map {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 -24px;
  height: 232px;
  border: none;
}
@media screen and (min-width: 768px) {
  .contacts-section__map {
    width: 320px;
    height: 481px;
    border-radius: 32px;
    margin: auto 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1288px) {
  .contacts-section__map {
    width: 605px;
    height: 481px;
  }
}
.contacts-section__text {
  color: var(--color-primary-light);
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
  font-size: 22px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contacts-section__text {
    margin-bottom: 32px;
  }
}
.contacts-section__form-field {
  min-width: 241px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .contacts-section__form-field {
    min-width: 310px;
  }
}
.contacts-section__button {
  display: block;
  margin: 0 auto 8px;
}
.contacts-section__button:hover {
  color: var(--color-primary-light);
}
.footer {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background-image: url(../images/footer-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary-dark);
}
.footer::after {
  position: absolute;
  top: 126px;
  right: -31px;
  content: "";
  background-image: url(../images/cosmetic-bottles.png);
  width: 278px;
  height: 213px;
  background-size: 100%;
  background-position: right bottom;
  display: none;
}
@media screen and (min-width: 1288px) {
  .footer::after {
    display: block;
  }
}
@media screen and (min-device-pixel-ratio: 2),
  (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi),
  (min-resolution: 2dppx) {
  .footer::after {
    background-image: url(../images/cosmetic-bottles@2x.png);
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 1288px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
.footer__nav,
.footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1288px) {
  .footer__nav,
  .footer__address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__nav {
  gap: 42px;
}
@media screen and (min-width: 1288px) {
  .footer__nav {
    gap: 20px;
  }
}
.footer__address {
  gap: 8px;
}
@media screen and (min-width: 1288px) {
  .footer__address {
    gap: 20px;
  }
}
.footer__logo,
.footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 1288px) {
  .footer__logo,
  .footer__nav-items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__address-items,
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__address-container {
  display: none;
}
@media screen and (min-width: 1288px) {
  .footer__address-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__address-items {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 316px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 1288px) {
  .footer__list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__address-icon {
  fill: var(--color-primary-light);
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.footer__address-icon:hover {
  fill: var(--color-primary-blue);
}
.footer__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1288px) {
  .footer__icons {
    gap: 24px;
  }
}
.footer__link {
  color: var(--color-primary-light);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.14;
  -webkit-transition: color 0.2s, text-shadow 0.2s;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer__link:hover {
  color: var(--color-primary-blue);
  text-shadow: 1px 0px var(--color-primary-blue);
}
@media screen and (min-width: 1288px) {
  .footer__link {
    font-size: 16px;
    line-height: 1.18;
  }
}
.footer__address-link {
  color: var(--color-primary-light);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: color 0.2s, text-shadow 0.2s;
  transition: color 0.2s, text-shadow 0.2s;
  display: none;
  text-align: center;
}
.footer__address-link:hover {
  color: var(--color-primary-blue);
  text-shadow: 1px 0px var(--color-primary-blue);
}
@media screen and (min-width: 1288px) {
  .footer__address-link {
    display: block;
    text-align: left;
  }
}
.footer__address-link--mobile {
  color: var(--color-primary-light);
  font-size: 14px;
  line-height: 1.14;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: color 0.2s, text-shadow 0.2s;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer__address-link--mobile:hover {
  color: var(--color-primary-blue);
  text-shadow: 1px 0px var(--color-primary-blue);
}
@media screen and (min-width: 1288px) {
  .footer__address-link--mobile {
    display: none;
    font-size: 16px;
    line-height: 1.18;
  }
}
.footer__mobile-private-policy {
  text-align: center;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.25);
    padding: 32px 0;
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 240px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .header__nav {
    gap: 40px;
  }
}
.header__nav > :not(:last-child) {
  row-gap: 10px;
}
.header__logo {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__menu {
  display: none;
  font-size: 0;
}
@media screen and (min-width: 768px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 56px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10.5px 0;
    white-space: nowrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 525px;
  }
}
.header__link {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: color 0.2s, text-shadow 0.2s;
  transition: color 0.2s, text-shadow 0.2s;
}
.header__link:hover {
  color: var(--color-primary-blue);
  text-shadow: 1px 0px var(--color-primary-blue);
}
.header__socials {
  display: none;
}
@media screen and (min-width: 1288px) {
  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    text-decoration: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}
.header__icons {
  fill: var(--color-primary-dark);
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.header__icons:hover {
  fill: var(--color-primary-blue);
}
.header__burger {
  fill: var(--color-primary-light);
  outline: none;
  border: none;
  background: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.hero-section {
  position: relative;
  padding: 89px 0;
  background-image: url(../images/hero-section-background.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .hero-section {
    padding: 120.5px 0 141px 213px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1440px auto;
  }
}
@media screen and (min-device-pixel-ratio: 2),
  (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi),
  (min-resolution: 2dppx) {
  .hero-section {
    background-image: url(../images/hero-section-background@2x.png);
  }
}
.hero-section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero-section__container {
    display: block;
  }
}
.hero-section__title {
  color: var(--color-primary-blue);
  font-family: Play, sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 54px;
  line-height: 0.85;
  margin-bottom: 32px;
  text-align: center;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .hero-section__title {
    font-size: 140px;
    max-width: 529px;
    text-align: left;
    margin-bottom: 40px;
    line-height: 0.8;
  }
}
.hero-section__second-title {
  margin: 0 auto;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.16;
}
@media screen and (min-width: 768px) {
  .hero-section__second-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.backdrop {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(1, 31, 74, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}
.backdrop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal {
  position: relative;
  width: 100%;
  max-width: 723px;
  height: 100%;
  max-height: 510px;
  background: url(../images/modal-bcg.png), var(--color-primary-dark);
  background-size: cover;
  border-radius: 48px;
  color: var(--color-primary-light);
  overflow-y: hidden;
  padding: 21px 72px;
  margin: 20px;
}
@media screen and (min-width: 768px) {
  .modal {
    padding: 42px 144px;
    margin: 0 auto;
    max-height: 691px;
  }
}
.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal__title {
  line-height: 1.16;
  text-align: center;
  margin: 0 auto 20px;
  font-family: Roboto;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal__title {
    font-family: Play;
    font-size: 64px;
    font-weight: 700;
    margin: 0 auto 40px;
  }
}
.modal__text {
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .modal__text {
    margin-bottom: 32px;
  }
}
.modal__form {
  width: 100%;
  margin: 0 auto;
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .modal__form {
    max-width: 310px;
  }
}
.modal__form-field {
  width: 100%;
  max-width: 310px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .modal__form-field {
    margin-bottom: 24px;
  }
}
.modal__button {
  margin: 0 auto 8px;
}
.modal__button:hover {
  color: var(--color-primary-light);
}
.modal__btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0);
  fill: rgba(0, 0, 0, 0);
  stroke: var(--color-primary-light);
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .modal__btn-close {
    top: 42px;
    right: 42px;
  }
}
.modal-description {
  margin: 0 auto;
  max-width: 213px;
  color: var(--color-secondary-light);
}
.modal-description__link {
  color: var(--color-secondary-light);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-light);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  z-index: 2;
  padding: 16px 20px;
}
.mobile-menu.is-open {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.mobile-menu__button {
  position: absolute;
  top: 16px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0);
  fill: rgba(0, 0, 0, 0);
  stroke: var(--color-primary-dark);
  border: none;
  cursor: pointer;
}
.mobile-menu__logo {
  margin-bottom: 32px;
}
.mobile-menu__list,
.mobile-menu__links,
.mobile-menu__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__socials {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.mobile-menu__link {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.14;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: color 0.2s, text-shadow 0.2s;
  transition: color 0.2s, text-shadow 0.2s;
}
.mobile-menu__link:hover {
  color: var(--color-primary-blue);
  text-shadow: 1px 0px var(--color-primary-blue);
}
.mobile-menu__icons {
  fill: var(--color-primary-dark);
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.mobile-menu__icons:hover {
  fill: var(--color-primary-blue);
}
.procedures-section {
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .procedures-section {
    margin: 96px 0;
  }
}
.procedures-section__title {
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .procedures-section__title {
    margin-bottom: 48px;
  }
}
.procedures-section__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.procedures-section__container {
  overflow: hidden;
}
.procedures-section__list {
  margin-bottom: 32px;
}
.procedures-section__list .swiper-wrapper {
  z-index: -1;
}
.procedures-section__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .procedures-section__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.section__title {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-family: Play, sans-serif;
    font-size: 64px;
    font-weight: 700;
  }
}
.wrapper {
  overflow: clip;
  min-height: 100%;
  width: 100%;
  position: relative;
} /*# sourceMappingURL=main.min.css.map */
