/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

textarea {
  resize: vertical;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

@font-face {
  font-family: "Vela Sans";
  font-weight: 400;
  src: url("./../font/VelaSans-Regular.ttf"), format("truetype"), url("./../font/VelaSans-Medium.ttf "), format("truetype"), url("./../font/VelaSans-SemiBold.ttf"), format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.none {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Vela Sans", sans-serif;
  font-size: 16px;
  color: #000;
}

a {
  color: #2563EB;
  text-decoration: underline;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #2563EB auto 1px;
}

@media (max-width: 1260px) {
  .visible-desktop {
    display: none;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-scroll {
  overflow-y: hidden;
}

.container {
  width: 1230px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 788px) {
  .container {
    width: 360px;
  }
}
.container--large {
  width: auto;
}
@media (max-width: 1260px) {
  .container--large {
    width: 100% !important;
  }
}
@media (max-width: 1260px) {
  .container--table-fluid {
    width: auto;
  }
}
@media (max-width: 788px) {
  .container--mobile-fluid {
    width: auto !important;
  }
}
.container--mobile-no-padding {
  padding-right: 0;
}

.header {
  padding: 40px 0;
}
.header--large {
  padding-bottom: 80px;
}
@media (max-width: 788px) {
  .header {
    padding: 20px 0;
  }
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 1260px) {
  .header__row {
    -moz-column-gap: 20px;
         column-gap: 20px;
    font-size: 14px;
  }
}

.header__logo {
  flex-shrink: 0;
}

.header__nav-btn {
  display: none;
}
@media (max-width: 788px) {
  .header__nav-btn {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  background-color: #fff;
  display: none;
}
.mobile-nav--open {
  display: flex;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__body {
  flex-grow: 1;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.mobile-nav__list a {
  color: #000;
  font-size: 14px;
}

@media (max-width: 788px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
}
@media (max-width: 1260px) {
  .nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.nav__link.active {
  color: #2563EB;
}

.nav__link {
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease-in;
}
.nav__link:hover {
  color: #2563EB;
}

.btn-dark, a.btn-dark {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #2563EB;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s ease-in;
}
.btn-dark:hover, a.btn-dark:hover {
  background-color: #376ee6;
}

.btn-blue, a.btn-blue {
  display: inline-block;
  padding: 10px 38px;
  border-radius: 80px;
  background-color: #2563EB;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s ease-in;
}
.btn-blue:hover, a.btn-blue:hover {
  background-color: #376ee6;
}

.btn-outline, a.btn-outline {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 80px;
  padding: 10px 53px;
  transition: all 0.2s ease-in;
  font-weight: 600;
  text-align: center;
}
.btn-outline:hover, a.btn-outline:hover {
  background-color: #fff;
  color: #000;
}

.btn-modal {
  width: 100%;
  height: 44px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #2563EB;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s ease-in;
}
.btn-modal:hover {
  background-color: #3a72ec;
}

.main {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}
@media (max-width: 1260px) {
  .main {
    row-gap: 80px;
  }
}
@media (max-width: 788px) {
  .main {
    row-gap: 60px;
  }
}

.promo__wrapper {
  width: auto;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url(./../img/promo/promo-bg.jpg);
}
@media (min-resolution: 192dpi) {
  .promo__wrapper {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url(./../img/promo/promo-bg@2x.jpg);
  }
}
.promo__wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
}
@media (max-width: 1260px) {
  .promo__wrapper {
    height: 434px;
  }
}
@media (max-width: 788px) {
  .promo__wrapper {
    height: auto;
    padding: 50px 15px;
  }
}

.promo__content {
  max-width: 790px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-items: center;
}
@media (max-width: 1260px) {
  .promo__content {
    row-gap: 30px;
  }
}
@media (max-width: 788px) {
  .promo__content {
    row-gap: 20px;
  }
}

.promo__title {
  font-size: 64px;
  font-weight: 600;
}
@media (max-width: 1260px) {
  .promo__title {
    font-size: 54px;
  }
}
@media (max-width: 788px) {
  .promo__title {
    font-size: 34px;
  }
}

.promo__text {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  font-size: 23px;
  font-weight: 400;
}
@media (max-width: 1260px) {
  .promo__text {
    font-size: 16px;
  }
}

.promo__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 788px) {
  .promo__btns {
    flex-wrap: wrap;
  }
}

.benefits__row {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.benefits__img {
  flex: 1;
  text-align: center;
}
@media (max-width: 788px) {
  .benefits__img {
    display: none;
  }
}

.benefits__desc {
  flex: 1;
}

.benefits__title {
  font-size: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (max-width: 1260px) {
  .benefits__title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 788px) {
  .benefits__title {
    font-size: 20px;
  }
}

.benefits__text {
  margin-bottom: 20px;
  font-size: 20px;
  color: #2F2F2F;
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
@media (max-width: 1260px) {
  .benefits__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.benefits__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 1260px) {
  .benefits__list {
    row-gap: 15px;
  }
}

.benefit {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: flex-start;
}
@media (max-width: 1260px) {
  .benefit {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

.benefit__img {
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .benefit__img {
    width: 42px;
    height: 42px;
  }
}

.benefit__desc {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 2px;
       column-gap: 2px;
  color: #2F2F2F;
}
@media (max-width: 1260px) {
  .benefit__desc {
    font-size: 14px;
  }
}

.benefit__title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1260px) {
  .benefit__title {
    font-size: 18px;
  }
}

.services__row {
  margin-bottom: 40px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 788px) {
  .services__row {
    margin-bottom: 20px;
  }
}

.services__desc {
  font-size: 20px;
  color: #2F2F2F;
}
@media (max-width: 1260px) {
  .services__desc {
    font-size: 16px;
  }
}

.services__title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 1260px) {
  .services__title {
    font-size: 30px;
  }
}
@media (max-width: 788px) {
  .services__title {
    font-size: 24px;
  }
}

.services__controls {
  display: flex;
  gap: 20px;
}
@media (max-width: 1260px) {
  .services__controls {
    gap: 10px;
  }
}
@media (max-width: 788px) {
  .services__controls {
    display: none;
  }
}
.services__controls--mobile {
  display: flex !important;
  gap: 10px;
  margin-top: 20px;
  display: none !important;
}
@media (max-width: 788px) {
  .services__controls--mobile {
    display: block !important;
  }
}

@media (max-width: 1260px) {
  .services__controls-img {
    width: 42px;
    height: 42px;
  }
}

.slider {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px !important;
       column-gap: 10px !important;
  overflow: hidden;
}
@media (max-width: 788px) {
  .slider {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .slider img {
    height: 250px;
  }
}

.slider img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset !important;
  /* height: unset !important; */
  height: 400px !important;
}
@media (max-width: 1260px) {
  .slider img {
    height: 300px !important;
  }
}
@media (max-width: 788px) {
  .slider img {
    height: 250px !important;
  }
}

.slider > div:first-child {
  padding-left: 15px;
}

.faq__wrapper {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 120px;
}
@media (max-width: 1260px) {
  .faq__wrapper {
    flex-direction: column;
    row-gap: 40px;
    margin-bottom: 80px;
  }
}
@media (max-width: 788px) {
  .faq__wrapper {
    row-gap: 20px;
    margin-bottom: 60px;
  }
}

.faq__title {
  width: 470px;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .faq__title {
    width: auto;
  }
}

.title__section {
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 1260px) {
  .title__section {
    font-size: 22px;
  }
}

.faq__topics {
  width: 680px;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .faq__topics {
    width: auto;
  }
}

.topic {
  padding: 30px 0;
  border-top: 1px solid #ECECF1;
  border-bottom: 1px solid #ECECF1;
}
@media (max-width: 1260px) {
  .topic {
    padding: 17px 0;
  }
}
@media (max-width: 788px) {
  .topic {
    padding: 15px 0;
  }
}

.topic + .topic {
  margin-top: -1px;
}

.topic__btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
}
.topic__btn:hover:not(:focus-visible) {
  opacity: 0.5;
}
.topic__btn:active:not(:focus-visible) .topic__title {
  color: #2563EB;
}
.topic__btn:focus {
  outline: none;
}
.topic__btn:focus-visible {
  outline-offset: 1px;
  outline: #2563EB auto 1px;
}

.topic__title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1260px) {
  .topic__title {
    font-size: 18px;
  }
}

.topic_content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
.topic_content > *:first-child {
  padding-top: 30px;
}
@media (max-width: 788px) {
  .topic_content {
    font-size: 14px;
    padding-top: 15px;
  }
}

.topic_content-padding {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  padding-top: 30px;
}

/* .topic--open .topic_content {
    display: flex;
} */
@media (max-width: 788px) {
  .topic__icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 1260px) {
  .about__conten {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.common__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (max-width: 1260px) {
  .common__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.about__text {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 1260px) {
  .about__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 788px) {
  .about__text {
    font-size: 16px;
  }
}

.about__wrapper {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 120px;
  align-items: center;
}
@media (max-width: 1260px) {
  .about__wrapper {
    margin-bottom: 80px;
    flex-wrap: wrap;
  }
}
@media (max-width: 788px) {
  .about__wrapper {
    margin-bottom: 20px;
  }
}

.wrapper__img {
  border-radius: 20px;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .wrapper__img {
    margin-bottom: 20px;
  }
}

.wrapper__text {
  margin-right: 20px;
  font-size: 20px;
}
@media (max-width: 1260px) {
  .wrapper__text {
    font-size: 18px;
  }
}
@media (max-width: 788px) {
  .wrapper__text {
    font-size: 16px;
  }
}

.about__description {
  margin-bottom: 120px;
}
@media (max-width: 1260px) {
  .about__description {
    margin-bottom: 80px;
  }
}
@media (max-width: 788px) {
  .about__description {
    margin-bottom: 60px;
  }
}

.about__card {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 17px 10px 17px;
}
@media (max-width: 788px) {
  .about__card {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.cards {
  width: 295px;
}
.cards p {
  font-size: 20px;
}
@media (max-width: 1260px) {
  .cards p {
    font-size: 16px;
  }
}
.cards {
  border-right: 1px solid #DCDCDC;
}
@media (max-width: 788px) {
  .cards {
    border-right: none;
  }
}

.cards:last-child {
  border-right: none;
}

.card__title {
  color: #2563EB;
  font-size: 64px;
}
@media (max-width: 1260px) {
  .card__title {
    font-size: 44px;
  }
}

.common__title {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1260px) {
  .common__title {
    font-size: 22px;
  }
}
@media (max-width: 788px) {
  .common__title {
    font: 18px;
  }
}

.sevices__cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
@media (max-width: 1260px) {
  .sevices__cards {
    gap: 10px;
    margin-bottom: 80px;
  }
}
@media (max-width: 788px) {
  .sevices__cards {
    margin-bottom: 40px;
  }
}

.card__service img {
  border-radius: 20px;
}
@media (max-width: 1260px) {
  .card__service img {
    width: 170px;
    height: 240px;
  }
}
@media (max-width: 788px) {
  .card__service img {
    width: 100px;
    height: 150px;
  }
}

.contact__text {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 20px;
}
.contact__text p {
  font-size: 20px;
  color: #2f2f2f;
}
@media (max-width: 1260px) {
  .contact__text p {
    font-size: 18px;
  }
}
@media (max-width: 788px) {
  .contact__text p {
    font-size: 16px;
  }
}

.title__contscts {
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 1260px) {
  .title__contscts {
    font-size: 30px;
  }
}
@media (max-width: 788px) {
  .title__contscts {
    font-size: 22px;
  }
}

.contacts__colums {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 120px;
}
@media (max-width: 788px) {
  .contacts__colums {
    flex-direction: column;
    margin-bottom: 60px;
  }
}

.form__wrapper {
  width: 590px;
  border: 1px solid #2563EB;
  border-radius: 20px;
  padding: 20px;
}
@media (max-width: 788px) {
  .form__wrapper {
    width: auto;
  }
}

.text__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 23px;
}
.text__form p {
  font-size: 14px;
  color: #2f2f2f;
}
@media (max-width: 788px) {
  .text__form {
    margin-bottom: 15px;
  }
}

.title__wrapper {
  font-size: 32px;
  font-weight: 600;
  color: #2563EB;
}
@media (max-width: 1260px) {
  .title__wrapper {
    font-size: 24px;
  }
}
@media (max-width: 788px) {
  .title__wrapper {
    font-size: 18px;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 12px;
}

/* .input {
    border: 1px solid #B3B3B3;
    border-radius: 80px;
    padding: 20px;

} */
.form__text {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}
.form__text input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 788px) {
  .form__text {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

.btn__form {
  min-width: 100%;
}

.contacts__company {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 590px;
}
@media (max-width: 788px) {
  .contacts__company {
    width: auto;
    row-gap: 10px;
  }
}

.contacts__address {
  display: flex;
  align-items: start;
  gap: 10px;
  border: 1px solid #2563EB;
  padding: 20px;
  border-radius: 20px;
}
@media (max-width: 788px) {
  .contacts__address p {
    font-size: 14px;
  }
}

.address__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.address__title {
  font-size: 20px;
  font-weight: 600;
  color: #2563EB;
}
@media (max-width: 788px) {
  .address__title {
    font-size: 18px;
  }
}

.footer {
  background-color: #112A60;
  color: #fff;
  padding: 40px 0;
}
@media (max-width: 1260px) {
  .footer {
    padding: 30px 0;
  }
}
.footer .footer__logo {
  margin-bottom: 20px;
}
.footer .footer__nav {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 788px) {
  .footer .footer__nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.nav__footer {
  display: flex;
  flex-direction: column;
  width: 385px;
}
.nav__footer p {
  color: #C8C8D2;
  margin-bottom: 20px;
}
@media (max-width: 788px) {
  .nav__footer {
    width: 330px;
  }
}

.nav__title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1260px) {
  .nav__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.footer__socials {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 120px;
       column-gap: 120px;
  width: 486px;
}

@media (max-width: 788px) {
  .socials__nav {
    display: none;
  }
}

.nav__title-socials {
  margin-bottom: 30px;
  font-size: 20px;
}
@media (max-width: 1260px) {
  .nav__title-socials {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.nav__socials {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.socials__item a {
  color: #C8C8D2;
  transition: all 0.2s ease-in;
}
.socials__item a:hover {
  color: #efeff5;
}

.socials__contacts {
  margin-bottom: 79px;
}
@media (max-width: 1260px) {
  .socials__contacts {
    margin-bottom: 40px;
  }
}

.contacts {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 20px;
  transition: all 0.2s ease-in;
}
.contacts li {
  display: flex;
}
@media (max-width: 1260px) {
  .contacts li {
    font-size: 14px;
  }
}
.contacts img {
  margin-right: 8px;
}
.contacts a {
  color: #C8C8D2;
}
.contacts a:hover {
  color: #efeff5;
}

.the_offer {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  transition: all 0.2s ease-in;
}
.the_offer a {
  color: #C8C8D2;
}
.the_offer a:hover {
  color: #efeff5;
}

.footer__done {
  text-align: center;
  font-size: 12px;
  color: #C8C8D2;
}

.btn-footer {
  margin-bottom: 20px;
}
@media (max-width: 1260px) {
  .btn-footer {
    margin-bottom: 15px;
  }
}

.modal {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2f2f2f;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.modal--open {
  opacity: 1;
  pointer-events: all;
}

.modal__body {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: #FFF;
  width: 420px;
  transform: translate(0, -50%);
  transition: all 0.2s ease-in;
}
@media (max-width: 788px) {
  .modal__body {
    padding: 20px;
    width: 360px;
  }
}

.modal--open .modal__body {
  transform: translate(0, 0%);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}
@media (max-width: 788px) {
  .modal__close {
    top: 10px;
    right: 10px;
  }
}

.modal__header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-align: center;
}

.modal__title {
  font-weight: 600;
  font-size: 32px;
  color: #2563eb;
}
@media (max-width: 788px) {
  .modal__title {
    font-size: 26px;
  }
}

.modal__text {
  font-size: 14px;
  font-weight: 400;
}

.modal__inputs {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.modal__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.input {
  border-radius: 80px;
  border: 1px solid #B3B3B3;
  background: #FFF;
  height: 60px;
  font-weight: 400;
  font-size: 16px;
  padding: 18px 42px;
}
@media (max-width: 788px) {
  .input {
    border-radius: 60px;
    height: 40px;
    font-size: 14px;
  }
}

.fake-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease-in;
}

.fake-checkbox:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in;
  width: 16px;
  height: 13px;
  background-image: url("./../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checkbox:checked + .fake-checkbox {
  background-color: #000;
  border: 1px solid #000;
}

.real-checkbox:checked + .fake-checkbox:after {
  transform: translate(-50%, -50%) scale(1);
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  padding: 16px 24px;
  border-radius: 12px;
  background: #2563eb;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}
@media (max-width: 788px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 12px 16px;
    text-align: center;
  }
}
.notification--show {
  opacity: 1;
  transform: translateY(0);
}
.notification--error {
  background: #dc2626;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}/*# sourceMappingURL=main.css.map */