html {
  scroll-behavior: smooth;
}

:root {
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #07033D;
  margin: 0;
  background: linear-gradient(180deg, #C4E1F6 36.51%, #FFF 100%);}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

button,
input[type='submit'] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.button {
  display: flex;
  margin: 0 auto;
  padding: 16px 24px;
  border-radius: 40px;
  border: 3px solid #07033D;
  background: #C20120;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.50);
  color: #FFF;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #1B083F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  cursor: pointer;
}

@media (max-width:550px) {
  .button {
    font-size: 18px;
  }
}

.hidden {
  display: none;
}

.button__orange {
  width: 384px;
}

@media (max-width:450px) {
  .button__orange {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.min_container {
  max-width: 1329px;
  margin: 0 auto;
}

@media (max-width:1216px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .min_container {
    padding-right: 15px;
    padding-left: 15px;
  }
}


.modal {
  /* Modal Inner */
  --modal-all-texts-color: inherit;
  --modal-bg-color: inherit;

  /* Image */
  --modal-img-width: 120px;
  --modal-img-height: 40px;
  --modal-img-width-mobile: 110px;
  --modal-img-height-mobile: 30px;

  /* Title */
  --modal-title-fz: 22px;
  --modal-title-fw: 700;
  --modal-title-fz-mobile: 20px;
  --modal-title-fw-mobile: 700;

  /* Text */
  --modal-text-fz: 18px;
  --modal-text-fw: 400;
  --modal-text-fz-mobile: 16px;
  --modal-text-fw-mobile: 400;

  /* Tel Description */
  --modal-tel-descr-fz: 16px;
  --modal-tel-descr-fw: 400;

  /* Submit Form Button */
  --modal-button-fz: 18px;
  --modal-button-fw: 400;
  --modal-button-fz-mobile: 16px;
  --modal-button-fw-mobile: 700;
  --modal-button-color: #fff;
  --modal-button-bg-color: #C20020;

  /* Legal Text */
  --modal-legal-fz: 14px;
  --modal-legal-fw: 400;
  --modal-legal-fz-mobile: 14px;
  --modal-legal-fw-mobile: 400;

  /* Close Button */
  --modal-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal--visible {
  display: flex;
}

.modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 640px;
  padding: 36px 24px;
  color: var(--modal-all-texts-color);
  background-color: var(--modal-bg-color);

  background-color: #fff;
}

@media (max-width: 768px) {
  .modal__inner {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__inner-upper {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 40px;
}

@media (max-width: 576px) {
  .modal__inner-upper {
    padding-bottom: 20px;
  }
}

.modal__logo-img {
  display: block;
  width: var(--modal-img-width);
  height: var(--modal-img-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal__logo-img {
    width: var(--modal-img-width-mobile);
    height: var(--modal-img-height-mobile);
  }
}

.modal__inner-central {
  display: flex;
}

@media (max-width: 576px) {
  .modal__inner-central {
    flex-direction: column;
  }
}

.modal__inner-left {
  width: 50%;
  padding-right: 30px;
}

@media (max-width: 576px) {
  .modal__inner-left {
    width: 100%;
    padding-right: 0;
  }
}

.modal__title {
  margin-bottom: 20px;
  font-size: var(--modal-title-fz);
  font-weight: var(--modal-title-fw);
}

@media (max-width: 576px) {
  .modal__title {
    margin-bottom: 10px;
    font-size: var(--modal-title-fz-mobile);
    font-weight: var(--modal-title-fw-mobile);
  }
}

.modal__text {
  margin-bottom: 20px;
  font-size: var(--modal-text-fz);
  font-weight: var(--modal-text-fw);
}

@media (max-width: 576px) {
  .modal__text {
    margin-bottom: 16px;
    font-size: var(--modal-text-fz-mobile);
    font-weight: var(--modal-text-fw-mobile);
  }
}

.modal__descr {
  font-size: var(--modal-tel-descr-fz);
  font-weight: var(--modal-tel-descr-fw);
  line-height: 140%;
}

@media (max-width: 576px) {
  .modal__descr {
    margin-bottom: 18px;
  }
}

.modal__descr-span {
  display: block;
}

.modal__descr-link {
  position: relative;
  padding-left: 22px;
  color: inherit;
}

.modal__descr-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 13px;
  height: 13px;
  content: '';
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.9168 9.16522V10.7902C11.9174 10.9411 11.8865 11.0904 11.826 11.2286C11.7656 11.3668 11.677 11.4909 11.5658 11.5929C11.4547 11.6949 11.3234 11.7725 11.1805 11.8208C11.0376 11.8692 10.8862 11.8871 10.7359 11.8735C9.06914 11.6924 7.46806 11.1229 6.06136 10.2106C4.7526 9.37899 3.643 8.26939 2.81136 6.96063C1.89593 5.54753 1.32624 3.93867 1.14844 2.26438C1.1349 2.11459 1.15271 1.96363 1.20071 1.8211C1.24872 1.67856 1.32587 1.54759 1.42727 1.43651C1.52867 1.32543 1.65208 1.23668 1.78966 1.17591C1.92724 1.11515 2.07596 1.08369 2.22636 1.08355H3.85136C4.11423 1.08096 4.36908 1.17405 4.56839 1.34546C4.76771 1.51687 4.8979 1.75492 4.93469 2.01522C5.00328 2.53525 5.13048 3.04586 5.31386 3.5373C5.38673 3.73117 5.40251 3.94188 5.35931 4.14444C5.3161 4.34701 5.21574 4.53294 5.07011 4.68022L4.38219 5.36813C5.15328 6.72422 6.2761 7.84704 7.63219 8.61813L8.32011 7.93022C8.46738 7.78458 8.65331 7.68422 8.85588 7.64102C9.05844 7.59782 9.26915 7.61359 9.46302 7.68647C9.95446 7.86985 10.4651 7.99705 10.9851 8.06563C11.2482 8.10275 11.4885 8.23529 11.6603 8.43803C11.8321 8.64077 11.9234 8.89957 11.9168 9.16522Z' fill='%23444444'/%3e%3cpath d='M8.15186 2.70817C8.68092 2.81139 9.16715 3.07014 9.54831 3.4513C9.92947 3.83246 10.1882 4.31869 10.2914 4.84775M8.15186 0.541504C9.25105 0.663615 10.2761 1.15585 11.0586 1.93738C11.8411 2.71892 12.3346 3.7433 12.4581 4.84234' stroke='%23444444' stroke-width='1.08333' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  transform: translateY(-50%);
}

.modal__inner-right {
  width: 50%;
}

@media (max-width: 576px) {
  .modal__inner-right {
    width: 100%;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  padding: 12px 24px;
  margin-bottom: 18px;
}

.modal__submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: var(--modal-button-fz);
  font-weight: var(--modal-button-fw);
  color: var(--modal-button-color);
  background-color: var(--modal-button-bg-color);
}

@media (max-width: 576px) {
  .modal__submit-button {
    font-size: var(--modal-button-fz-mobile);
    font-weight: var(--modal-button-fw-mobile);
  }
}

.modal__inner-lower {
  padding-top: 50px;
}

@media (max-width: 576px) {
  .modal__inner-lower {
    padding-top: 30px;
  }
}

.modal__legal {
  font-size: var(--modal-legal-fz);
  font-weight: var(--modal-legal-fw);
}

@media (max-width: 576px) {
  .modal__legal {
    font-size: var(--modal-legal-fz-mobile);
    font-weight: var(--modal-legal-fw-mobile);
    text-align: center;
  }
}

.modal__legal-link {
  color: inherit;
  text-decoration: underline;
}

.modal__close-button {
  position: absolute;
  top: 34px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(45deg);
}

.modal__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(135deg);
}


.callback2 {
  /* callback2 Block */
  --callback2-offset-top: 80px;
  --callback2-offset-bottom: 80px;
  --callback2-offset-top-mobile: 60px;
  --callback2-offset-bottom-mobile: 60px;
  --callback2-all-texts-color: inherit;
  --callback2-bg-color: inherit;

  /* Title */
  --callback2-title-fz: 32px;
  --callback2-title-fw: 700;
  --callback2-title-fz-mobile: 24px;
  --callback2-title-fw-mobile: 700;

  /* List Item Image */
  --callback2-item-img-size: 30px;
  --callback2-item-img-size-mobile: 20px;

  /* List Item Text */
  --callback2-item-text-fz: 16px;
  --callback2-item-text-fw: 400;
  --callback2-item-text-fz-mobile: 16px;
  --callback2-item-text-fw-mobile: 400;

  /* Button */
  --callback2-button-fz: 18px;
  --callback2-button-fw: 400;
  --callback2-button-fz-mobile: 16px;
  --callback2-button-fw-mobile: 400;
  --callback2-button-color: #fff;
  --callback2-button-bg-color: #62358c;

  /* Legal Text */
  --callback2-legal-fz: 14px;
  --callback2-legal-fw: 400;
  --callback2-legal-fz-mobile: 14px;
  --callback2-legal-fw-mobile: 400;

  color: var(--callback2-all-texts-color);
  background-color: var(--callback2-bg-color);
}

.callback2__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 768px) {
  .callback2__container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .callback2__container {
  }
}

.callback2__left {
}

@media (max-width: 768px) {
  .callback2__left {
    width: 100%;
    padding-bottom: 0px;
  }
}

.callback2__left-upper {
  padding-bottom: 30px;
}

.callback2__title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  padding-bottom: 16px;
}

@media (max-width: 576px) {
  .callback2__title {
    font-size: 24px;
  }
}

.callback2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .callback2__list {
    gap: 20px;
  }
}

.callback2__figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.callback2__figure-img {
  width: var(--callback2-item-img-size);
  height: var(--callback2-item-img-size);
}

@media (max-width: 576px) {
  .callback2__figure-img {
    width: var(--callback2-item-img-size-mobile);
    height: var(--callback2-item-img-size-mobile);
  }
}

.callback2__figure-text {
  font-size: var(--callback2-item-text-fz);
  font-weight: var(--callback2-item-text-fw);
  line-height: 130%;
  text-align: center;
}

@media (max-width: 576px) {
  .callback2__figure-text {
    font-size: var(--callback2-item-text-fz-mobile);
    font-weight: var(--callback2-item-text-fw-mobile);
  }
}

.callback2__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .callback2__right {
    width: 100%;
    padding-left: 0;
  }
}

.callback2__form-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 425px;

  border-radius: 10px;
  border: 5px solid #2B295B;
  background: #FFF;
  padding: 21px 64px;

  background-position: center;
  background-image: url(../img/main/callbackBG.png);
  background-repeat: no-repeat;
  background-position-y: 20%;
}

@media (max-width:550px) {
  .callback2__form-wrapper {
    max-width: none;
    width: 100%;
    padding: 21px 16px;
    background-size: contain;
  }
}

.callback2__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.callback2__form--hidden {
  display: none;
}


.callback2__input {
  padding: 8px 24px;
  font-size: 18px;
  border-radius: 10px;
  border: 3px solid #38AADD;
  background: #FFF;
}

.callback2__input::placeholder {
  color: #a7a9ac;
}

.callback2__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  font-size: var(--callback2-button-fz);
  font-weight: var(--callback2-button-fw);
  border-radius: 20px;
  border: 3px solid #38AADD;
  background: #EFE4E4;
}

@media (max-width: 576px) {
  .callback2__button {
    font-size: var(--callback2-button-fz-mobile);
    font-weight: var(--callback2-button-fw-mobile);
  }
}

.callback2__legal {
  font-size: var(--callback2-legal-fz);
  font-weight: var(--callback2-legal-fw);
  text-align: center;
}

@media (max-width: 576px) {
  .callback2__legal {
    font-size: var(--callback2-legal-fz-mobile);
    font-weight: var(--callback2-legal-fw-mobile);
    text-align: center;
  }
}

.callback2__legal--hidden {
  display: none;
}

.callback2__legal-link {
  color: inherit;
  text-decoration: underline;
}

.callback2__message {
  display: none;
  margin-top: 14px;
  margin-bottom: 14px;
  text-align: center;
}

.callback2__message--visible {
  display: block;
}

.callback2__message--success {
  font-size: 28px;
  color: #4b9c57;
}

.callback2__message--error {
  font-size: 20px;
  color: #dc291e;
}


.section-title {
  color: #222;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
}

.thanks-title {
  color: #4b9c57;
  font-size: 28px;
  text-align: center;
}

.topline {
  /* Topline Block */
  --topline-bg-color: #000;

  /* Logo */
  --topline-logo-width: 126px;
  --topline-logo-height: 24px;
  --topline-logo-width-mobile: 126px;
  --topline-logo-height-mobile: 24px;

  background-color: var(--topline-bg-color);
}

.topline__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  padding: 6px 15px;
  margin: 0 auto;
}

.topline__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topline__logo-img {
  width: var(--topline-logo-width);
  height: var(--topline-logo-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .topline__logo-img {
    width: var(--topline-logo-width-mobile);
    height: var(--topline-logo-height-mobile);
  }
}

#panelcontainer {
  height: 32px;
}

/*header*/
.header__inner {
  display: flex;
  flex-direction: column;
  padding-bottom: 98px;
}

.header__upper {
  display: flex;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 140px;
}

@media (max-width:600px) {
  .header__upper {
    padding-bottom: 60px;
  }
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
}

@media (max-width:550px) {
  .fixed{
    position: relative;
  }
}


@media (max-width:600px) {
  .nav__links {
    gap: 12px;
    flex-direction: column;
  }
}

.nav__link {
  border-radius: 20px;
  background: #252542;
  position: relative;
  display: flex;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 85%;
  left: 0;
  top: 100%;
  background: #070B64;
  filter: blur(50px);
  z-index: -1;
}

.nav__link:nth-child(odd)::after {
  background: #EE2C2C;
}

.nav__link>a {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 16px 14px;
}

@media (max-width:1080px) {
  .nav__link>a {
    font-size: 20px;
  }
}

@media (max-width:550px) {
  .nav__link>a {
    font-size: 16px;
    width: 100%;
  }
}

.nav__link:nth-child(odd) {
  background: #C20020;
}

.header__title {
  color: #07033D;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  padding-bottom: 78px;
}

@media (max-width:1080px) {
  .header__title {
    font-size: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width:600px) {
  .header__title {
    font-size: 28px;
  }
}

.header__subtitle {
  color: #000;
  font-size: 36px;
  line-height: 54px;
  font-style: normal;
  font-weight: 400;
  background-image: url(../img/header/subtitleBg.png);
}

@media (max-width:1080px) {
  .header__subtitle {
    font-size: 28px;
    line-height: 48px;
  }
}

@media (max-width:600px) {
  .header__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}

.header__lower {
  padding-top: 87px;
}

@media (max-width:600px) {
  .header__lower {
    padding-top: 32px;
  }
}

.header__button {
  display: flex;
  justify-content: center;

  width: 100%;
  max-width: 400px;
}

/********/

/*main*/
main {
  background-image: url(../img/main/MainBg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.main__inner {
  padding-top: 75px;
}

@media (max-width:1080px) {
  .main__inner {
    padding-top: 32px;
  }
}

.main__upper {
  display: flex;
}

@media (max-width:1080px) {
  .main__upper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

.main__upper-left {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.main__upper-left {
  width: 50%;
}

.main__upper-right {
  width: 50%;
  display: flex;
  align-items: self-start;
  justify-content: center;
}

@media (max-width:1080px) {
  .main__upper-left {
    width: 100%;
  }

  .main__upper-right {
    width: 100%;
  }
}

.main__title {
  color: #000;
  font-size: 36px;
  font-weight: 400;
  min-width: 400px;
  background-image: url(../img/main/mainTitle.png);
  background-size: cover;
  background-position: center;

  padding: 16px 0px;
  padding-left: 16px;
}

.main__subtitle {
  padding: 50px 0px;
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
}

.main__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-image: url(../img/main/mark.png);
  padding-left: 48px;
}

.main__list-item {
  color: #000;
  font-size: 36px;
  font-weight: 400;
  padding-left: 32px;
}

@media (max-width:550px) {
  .main__title {
    min-width: auto;
    font-size: 24px;
    width: 100%;
  }

  .main__subtitle {
    font-size: 24px;
    padding: 16px 0px;
  }

  .main__list-item {
    font-size: 18px;
  }

  .main__list {
    gap: 12px;
  }
}

.callback {
  /* Callback Block */
  --callback-offset-top: 80px;
  --callback-offset-bottom: 80px;
  --callback-offset-top-mobile: 60px;
  --callback-offset-bottom-mobile: 60px;
  --callback-all-texts-color: inherit;
  --callback-bg-color: inherit;

  /* Title */
  --callback-title-fz: 32px;
  --callback-title-fw: 700;
  --callback-title-fz-mobile: 24px;
  --callback-title-fw-mobile: 700;

  /* List Item Image */
  --callback-item-img-size: 30px;
  --callback-item-img-size-mobile: 20px;

  /* List Item Text */
  --callback-item-text-fz: 16px;
  --callback-item-text-fw: 400;
  --callback-item-text-fz-mobile: 16px;
  --callback-item-text-fw-mobile: 400;

  /* Button */
  --callback-button-fz: 18px;
  --callback-button-fw: 400;
  --callback-button-fz-mobile: 16px;
  --callback-button-fw-mobile: 400;
  --callback-button-color: #fff;
  --callback-button-bg-color: #62358c;

  /* Legal Text */
  --callback-legal-fz: 14px;
  --callback-legal-fw: 400;
  --callback-legal-fz-mobile: 14px;
  --callback-legal-fw-mobile: 400;

  color: var(--callback-all-texts-color);
  background-color: var(--callback-bg-color);
}

.callback__container {
  display: flex;
  padding-top: var(--callback-offset-top);
  padding-bottom: var(--callback-offset-top);
}

@media (max-width: 768px) {
  .callback__container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .callback__container {
    padding-top: var(--callback-offset-top-mobile);
    padding-bottom: var(--callback-offset-top-mobile);
  }
}

.callback__left {
  width: 50%;
}

@media (max-width: 768px) {
  .callback__left {
    width: 100%;
    padding-bottom: 30px;
  }
}

.callback__left-upper {
  padding-bottom: 30px;
}

.callback__title {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  padding-bottom: 16px;
}

@media (max-width: 576px) {
  .callback__title {
    font-size: 24px;
  }
}

.callback__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .callback__list {
    gap: 20px;
  }
}

.callback__figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.callback__figure-img {
  width: var(--callback-item-img-size);
  height: var(--callback-item-img-size);
}

@media (max-width: 576px) {
  .callback__figure-img {
    width: var(--callback-item-img-size-mobile);
    height: var(--callback-item-img-size-mobile);
  }
}

.callback__figure-text {
  font-size: var(--callback-item-text-fz);
  font-weight: var(--callback-item-text-fw);
  line-height: 130%;
  text-align: center;
}

@media (max-width: 576px) {
  .callback__figure-text {
    font-size: var(--callback-item-text-fz-mobile);
    font-weight: var(--callback-item-text-fw-mobile);
  }
}

.callback__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .callback__right {
    width: 100%;
    padding-left: 0;
  }
}

.callback__form-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 425px;

  border-radius: 10px;
  border: 5px solid #2B295B;
  background: #FFF;
  padding: 21px 64px;

  background-image: url(../img/main/callbackBG.png);
  background-repeat: no-repeat;
  background-position-y: 34%;
}

@media (max-width:550px) {
  .callback__form-wrapper {
    max-width: none;
    width: 100%;
    padding: 21px 16px;
    background-size: contain;
  }
}

.callback__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.callback__form--hidden {
  display: none;
}


.callback__input {
  padding: 8px 24px;
  font-size: 18px;
  border-radius: 10px;
  border: 3px solid #38AADD;
  background: #FFF;
}

.callback__input::placeholder {
  color: #a7a9ac;
}

.callback__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  font-size: var(--callback-button-fz);
  font-weight: var(--callback-button-fw);
  border-radius: 20px;
  border: 3px solid #38AADD;
  background: #EFE4E4;
}

@media (max-width: 576px) {
  .callback__button {
    font-size: var(--callback-button-fz-mobile);
    font-weight: var(--callback-button-fw-mobile);
  }
}

.callback__legal {
  font-size: var(--callback-legal-fz);
  font-weight: var(--callback-legal-fw);
  text-align: center;
}

@media (max-width: 576px) {
  .callback__legal {
    font-size: var(--callback-legal-fz-mobile);
    font-weight: var(--callback-legal-fw-mobile);
    text-align: center;
  }
}

.callback__legal--hidden {
  display: none;
}

.callback__legal-link {
  color: inherit;
  text-decoration: underline;
}

.callback__message {
  display: none;
  margin-top: 14px;
  margin-bottom: 14px;
  text-align: center;
}

.callback__message--visible {
  display: block;
}

.callback__message--success {
  font-size: 28px;
  color: #4b9c57;
}

.callback__message--error {
  font-size: 20px;
  color: #dc291e;
}





.main__center {
  padding-top: 140px;
}

@media (max-width:550px) {
  .main__center {
    padding-top: 30px;
  }
}

.main__center--img {
  width: 100%;
}

.main__lower {
  padding-top: 36px;
  padding-bottom: 93px;
}

/******/

/*reason*/
.reason {
  padding-top: 120px;
}

.reason__subtitle {
  text-align: center;
  font-weight: 600;
}

.reason__center {
  padding-top: 46px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 200px;
}

@media (max-width:870px) {
  .reason__center {
    flex-direction: column;
    align-items: center;
    padding-bottom: 64px;
    gap: 32px;
  }
}

.reason__left,
.reason__right {
  max-width: 635px;
  width: 100%;
}

.reason__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reason__list-title--blue,
.reason__list-title--red {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  padding: 16px 0px;
  background-color: rgba(250, 253, 253, 0.75);
}

@media (max-width:550px) {

  .reason__list-title--blue,
  .reason__list-title--red {
    font-size: 24px;
  }
}

.reason__list-title--blue {
  color: #1A1A50;
}

.reason__list-title--red {
  color: #C20120;
}

.reason__list-item {
  background: linear-gradient(180deg, #FAFDFD 0%, rgba(215, 216, 231, 0.00) 100%);
  height: 130px;

  display: flex;
  align-items: center;
}

@media (max-width:550px) {
  .reason__list-item {
    background: none;
  }
}

@media (max-width:1080px) {
  .reason__list-item {
    height: 10vw;
  }
}

@media (max-width:1080px) {
  .reason__list-item {
    height: auto;
  }
}

.reason__list-content {
  color: #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 35px;

  background-image: url(../img/reason/reasonItem.png);
  background-repeat: no-repeat;
  background-size: contain;

  display: flex;
  align-items: center;

  padding-left: 16px;
  padding-right: 15%;
  width: 100%;
  height: 100%;
}

@media (max-width:1080px) {
  .reason__list-content {
    font-size: 22px;
    line-height: normal;
  }
}

@media (max-width:550px) {
  .reason__list-content {
    font-size: 18px;
    line-height: normal;
    background-size: contain;
    min-height: 75px;
  }
}


.reason__lower {
  display: flex;
  justify-content: space-between;

  background-image: url(../img/reason/reasonLowerBg.png);
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 100px;
}

@media (max-width:1080px) {
  .reason__lower {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width:550px) {
  .reason__lower {
    background-position: center;
    padding-bottom: 32px;
  }
}

.reason__lower-left,
.reason__lower-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reason__lower-title {
  color: #000;
  font-size: 48px;
  font-weight: 600;
  text-align: center;

  padding-bottom: 164px;
}

@media (max-width:1080px) {
  .reason__lower-title {
    font-size: 32px;
    padding-bottom: 100px;
  }
}

@media (max-width:1080px) {
  .reason__lower-title {
    font-size: 24px;
    padding-bottom: 32px;
  }
}

.reason__lower-img {
  width: 100%;
}

@media (max-width:1080px) {
  .reason__lower-img {
    width: 75%;
  }
}

/*access*/

.access {
  padding-top: 164px;
}

@media (max-width:550px) {
  .access{
    padding-top: 64px;
  }
}

.access__center {
  padding-top: 36px;
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 82px;
}

.access__list-item {
  background-color: rgba(124, 207, 251, 0.35);

  border-left: 4px solid #C21736;
  border-bottom: 4px solid #C21736;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}

.access__block-header {
  padding-top: 30px;
  padding-left: 16px;
  padding-bottom: 16px;

  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 32px;
}

@media (max-width:550px) {
  .access__block-header {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.access__title {
  color: #2B295B;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  width: 65%;
  margin: 0 auto;
}

@media (max-width:550px) {
  .access__title {
    font-size: 22px;
    width: auto;
  }
}

.access__subtitle {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  padding: 0px 10px;
  border-radius: 16px;

  background-color: #C4E1F6;
  border: 1px solid #C20020;
}

@media (max-width:550px) {
  .access__subtitle {
    font-size: 20px;
    padding: 0px 6px;
    line-height: 30px;
  }
}

.access__block-center {
  background-image: url(../img/header/subtitleBg.png);
  background-size: contain;
  padding-top: 8px;
  padding-bottom: 8px;
}

.access__block-list {
  display: flex;
  flex-direction: column;

  list-style-type: disc;
  padding-left: 3%;
}

@media (max-width:550px) {
  .access__block-list {
    gap: 12px;
  }
}

.access__block-list--item {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;

  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width:550px) {
  .access__block-list--item {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
  }
}

.access__info {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 50px;
  padding-left: 3%;
}

@media (max-width:550px) {
  .access__info {
    font-size: 18px;
    line-height: 25px;
  }
}

/*******/

/*table*/

.table {
  padding-top: 111px;
}

.table__center {
  padding-top: 55px;
}

.main__table {
  text-align: center;
  font-size: 20px;
}

@media (max-width:550px) {
  .main__table {
    font-size: 8px;
  }
}

.col-black {
  text-align: center;
  background-color: rgba(7, 3, 61, 0.302);
  padding: 32px 0px;
  width: 15%;
}

.col-red {
  text-align: center;
  padding: 16px 0px;
  background: rgba(160, 0, 26, 0.24);
  width: 28%;
}

.col-lightblue {
  background: #8EB6F1;
  width: 28%;
}

.col-blue {
  background: #71AFE7;
  width: 28%;
}

/********/

.order {
  padding-bottom: 220px;
  background-image: url(../img/order/orderBg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width:550px) {
  .order{
    padding-bottom: 64px;
  }
}

.order__title {
  color: #07033D;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  padding: 64px 0px;
  padding-top: 128px;
}

@media (max-width:550px) {
  .order__title{
    padding-top: 64px;
    padding-bottom: 32px;
    font-size: 24px;
  }
}

.order__subtitle {
  color: #000;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 150px;
}

@media (max-width:550px) {
  .order__subtitle{
    font-size: 18px;
    padding-bottom: 64px;
  }
}

.footer {
  /* Footer Block */
  --footer-offset-top: 80px;
  --footer-offset-bottom: 80px;
  --footer-offset-top-mobile: 60px;
  --footer-offset-bottom-mobile: 60px;
  --footer-all-text-color: inherit;
  --footer-bg-color: inherit;

  /* Logo Image 1 */
  --footer-logo-img-1-width: 110px;
  --footer-logo-img-1-height: 40px;
  --footer-logo-img-1-width-mobile: 110px;
  --footer-logo-img-1-height-mobile: 40px;

  /* Logo Image 2 */
  --footer-logo-img-2-width: 110px;
  --footer-logo-img-2-height: 40px;
  --footer-logo-img-2-width-mobile: 110px;
  --footer-logo-img-2-height-mobile: 40px;

  /* Copyright Text */
  --footer-copy-fz: 16px;
  --footer-copy-fw: 400;
  --footer-copy-fz-mobile: 16px;
  --footer-copy-fw-mobile: 400;

  /* Legal Text */
  --footer-legal-fz: 16px;
  --footer-legal-fw: 400;
  --footer-legal-fz-mobile: 16px;
  --footer-legal-fw-mobile: 400;

  /* Phone Number Link */
  --footer-tel-fz: 15px;
  --footer-tel-fw: 400;
  --footer-tel-fz-mobile: 16px;
  --footer-tel-fw-mobile: 400;

  /* Phone Call Info Text */
  --footer-info-fz: 16px;
  --footer-info-fw: 400;
  --footer-info-fz-mobile: 16px;
  --footer-info-fw-mobile: 400;

  /* Social Images */
  --footer-socials-img-size: 32px;
  --footer-socials-img-size-mobile: 32px;

  color: var(--footer-all-text-color);
  background-color: var(--footer-bg-color);
}

.footer__container {
  padding-top: var(--footer-offset-top);
  padding-bottom: var(--footer-offset-bottom);
}

@media (max-width: 576px) {
  .footer__container {
    padding-top: var(--footer-offset-top-mobile);
    padding-bottom: var(--footer-offset-bottom-mobile);
  }
}

.footer__upper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  padding-bottom: 34px;
}

@media (max-width: 576px) {
  .footer__upper {
    row-gap: 10px;
    padding-bottom: 20px;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .footer__logo-link {
    margin: 16px;
    margin-left: 0;
  }
}

.footer__logo-img {
  object-fit: contain;
}

.footer__logo-img--1 {
  width: var(--footer-logo-img-1-width);
  height: var(--footer-logo-img-1-height);
}

@media (max-width: 576px) {
  .footer__logo-img--1 {
    width: var(--footer-logo-img-1-width-mobile);
    height: var(--footer-logo-img-1-height-mobile);
  }
}

.footer__logo-img--2 {
  width: var(--footer-logo-img-2-width);
  height: var(--footer-logo-img-2-height);
}

@media (max-width: 576px) {
  .footer__logo-img--2 {
    width: var(--footer-logo-img-2-width-mobile);
    height: var(--footer-logo-img-2-height-mobile);
  }
}

.footer__lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__left {
  width: 70%;
}

@media (max-width:1080px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo {
  padding-bottom: 46px;
}

.social__links {
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
}

@media (max-width: 576px) {
  .footer__lower {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer__left {
    padding-bottom: 30px;
  }
}

.footer__copy {
  margin-bottom: 20px;
  font-size: var(--footer-copy-fz);
  font-weight: var(--footer-copy-fw);
}

@media (max-width: 576px) {
  .footer__copy {
    margin-bottom: 14px;
    font-size: var(--footer-copy-fz-mobile);
    font-weight: var(--footer-copy-fw-mobile);
  }
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 400px;
  font-size: var(--footer-legal-fz);
  font-weight: var(--footer-legal-fw);
  line-height: 130%;
}

@media (max-width: 576px) {
  .footer__legal {
    font-size: var(--footer-legal-fz-mobile);
    font-weight: var(--footer-legal-fw-mobile);
  }
}

.footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__central {
  align-self: flex-start;
}

.footer__tel {
  display: block;
  margin-bottom: 18px;
  font-size: var(--footer-tel-fz);
  font-weight: var(--footer-tel-fw);
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .footer__tel {
    margin-bottom: 14px;
    font-size: var(--footer-tel-fz-mobile);
    font-weight: var(--footer-tel-fw-mobile);
  }
}

.footer__info-text {
  margin-bottom: 30px;
  font-size: var(--footer-info-fz);
  font-weight: var(--footer-info-fw);
}

@media (max-width: 576px) {
  .footer__info-text {
    font-size: var(--footer-info-fz-mobile);
    font-weight: var(--footer-info-fw-mobile);
  }
}

.footer__info-subtitle {
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__right {
  align-self: flex-start;
  width: 30%;
}

@media (max-width:1080px) {
  .footer__right {
    width: 100%;
    padding-top: 60px;
  }
}

@media (max-width: 576px) {
  .footer__right {
    justify-content: flex-start;
  }
}

.footer__rigth-text {
  display: flex;
  padding-top: 26px;
  gap: 16px;
}

.footer__rigth-text>p {
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

}

.politics {
  margin-top: 8px;

  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__socials-list {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width:1080px) {
  .footer__socials-list {
    flex-wrap: wrap;
    flex-direction: inherit;
  }
}

.footer__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials-img {
  display: block;
  width: var(--footer-socials-img-size);
  height: var(--footer-socials-img-size);
  object-fit: contain;
}

@media (max-width: 576px) {
  .footer__socials-img {
    width: var(--footer-socials-img-size-mobile);
    height: var(--footer-socials-img-size-mobile);
  }
}