html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'Wix Madefor Display';
  src: url('../fonts/WixMadeforDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
}

:root {
  --color-dark-blue: #0B0348;
  --color-white: #FFFFFF;
  --color-red: #FE564B;
  --color-red-500: #FF867E;
  --color-yellow: #FDD400;
  --color-yellow-500: #FFE979;
  --color-black: #000000;
  --color-green: #59CB12;
  --color-green-500: #98DF6C;
  --color-grey: #6D6E6E;
  --color-light-grey: #FAFAFA;
  --color-light-grey2: #C4C4C4;
  --color-light-grey3: #D9D9D9;
  --color-blue: #3794FE;
}
body {
  background-color: #FAFAFA;
}


/**
Шрифты:
Wix Madefor Display - 700

 */

.container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 96px;
  padding-left: 96px;

}
header {
  padding: 22px 0 22px 0;
  background: var(--color-dark-blue);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.menu .menu-item {
  font-family: Wix Madefor Display, sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: -3%;
  text-align: center;
  align-items: center;
  display: flex;
}

header .menu-mobile {
  opacity: 0;
  z-index: -1;
  overflow: auto;
  background-color: var(--color-white);
  padding: 24px 12px;
  position: fixed;
  top: 74px;
  left: 0px;
  width: 0px;
  height: calc(100% - 74px);
  color: var(--color-black);
  font-family: Wix Madefor Display;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -7%;
}
header .menu-mobile.show {
  opacity: 1;
  z-index: 2;
  width: 100%;
}
body:has(header .menu-mobile.show) {
  overflow: hidden;
}
img {
  max-height: 100%;
  max-width: 100%;
}
header .btn-menu img {
  display: none;
}
header:has(.menu-mobile:not(.show)) .btn-menu .open {
  display: block;
}
header:has(.menu-mobile.show) .btn-menu .close {
  display: block;
}

header .menu-mobile div.menu {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
header .menu-mobile div.menu div.item {
  text-transform: uppercase;
}
header .menu-mobile div.contacts {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
header .menu-mobile div.contacts .item {
  display:flex;
  column-gap: 12px;
}
header .menu-mobile div.contacts .item a {
  margin-top: auto;
  margin-bottom: auto;
}
header .menu-mobile > div:nth-child(3) {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}


button {
  min-width: max-content;
  font-family: Wix Madefor Display, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -5%;
  text-align: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-radius: 16px;
  width: 268px;
  cursor: pointer;
  outline: none;
}
button.bg-red {
  color: var(--color-white);
}
.bg-dark-blue {
  background-color: var(--color-dark-blue) !important;
  color: var(--color-white);
}
button.btn-login {
  height: 60px;
  position: relative;
  margin-left: 24px;
  font-size: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
button.btn-login img {
  height: 24px;
  margin: auto;
}

button[class*="round-slide-nav"] {
  height: 52px;
  width: 52px;
  border-radius: 30px;
  padding: 0;
  color: var(--color-black);
  background-color: var(--color-green);
  position: relative;
}
button[class*="round-slide-nav"]:before {
  content: '';
  width: 16px;
  height: 22px;
  position: absolute;
  top: 16px;
  left: 17px;
  background-repeat: no-repeat;
}

button.round-slide-nav-prev:before {
  background-image: url(../icons/chevron-left-dark-blue.svg);
}
button.round-slide-nav-next:before {
  left: 21px;
  background-image: url(../icons/chevron-right-dark-blue.svg);
}

button:focus-visible {
  border: none;
}
.bg-light-grey {
  background-color: var(--color-light-grey) !important;
}
.bg-light-grey3 {
  background-color: var(--color-light-grey3) !important;
}
.bg-light-grey2 {
  background-color: var(--color-light-grey2) !important;
}
.bg-grey {
  background-color: var(--color-grey) !important;
}
.bg-red {
  background-color: var(--color-red) !important;
}
.bg-yellow {
  background-color: var(--color-yellow) !important;
  color: var(--color-black);
}
.bg-green {
  background-color: var(--color-green) !important;
  color: var(--color-white);
}
.bg-blue {
  background-color: var(--color-blue) !important;
  color: var(--color-white);
}

.txt-muted {
  color: var(--color-grey);
}

button.yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
button.yellow:hover {
  background-color: var(--color-yellow-500);
}
button.green {
  background-color: var(--color-green);
  color: var(--color-white);
}
button.green:hover {
  background-color: var(--color-green-500);
}



.hover\:bg-red-500:hover {
  background-color: var(--color-red-500) !important;
}
.section-1 img.map {
  width: 706px;
  height: 904px;
  position: relative;
  top: -222px;
  left: 54px;
}
.section-1 .subtext {
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 32px;
  line-height: 135%;
  letter-spacing: -2%;
  margin-top: 48px;
}
.section-1 .subtext-btn {
  margin-top: 100px;
}



/*section.section-2 .grid div:nth-child(1) {*/
/*  width: 703px;*/
/*}*/


section.section-2 .card {
  display: flex;
}
section.section-2 .card img {
  height: 120px;
  width: 120px;
}
section.section-2 .card span {
  align-items: center;
  display: flex;
  color: var(--color-black);
}

/* section 3 */


footer {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  padding-top: 106px;
  position: relative;
}
footer .footer-logo {
  opacity: 0.2;
  margin-top: 95px;
  margin-left: 96px;
  margin-right: 96px;
  width: calc(100% - 192px);
}
footer .contacts {
  margin-top: 72px;
  display: flex;
  flex-direction: column; /* Выстраиваем блоки вертикально (друг под другом) */
  row-gap: 24px;          /* Задаем вертикальный отступ 20 пикселей */
}
footer .contacts .item {
  display: flex;
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 22px;
  line-height: 114.99999999999999%;
  letter-spacing: -2%;
}
footer .contacts .item img {
  margin-right: 20px;
  margin-top: auto;
  margin-bottom: auto;
}
footer .menu {
  text-align: left;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  font-family: Wix Madefor Display;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -7%;
  text-transform: uppercase;
}
footer .grid:nth-child(2) {
  margin-top: 100px;
}
footer .grid:nth-child(2) > div {
  display: flex;
  flex-direction: column;
}

footer a.row2, footer .row3 a, footer .txt {
  display: block;
  font-family: Wix Madefor Display;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
footer a.link1 {
  margin-top: 100px;
}
footer a.link2 {
  margin-top: 188px;
}
footer .design {
  font-family: Wix Madefor Display;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 154px;
}
footer .design img {
  margin-left: 24px;
}

footer .row4 {
  margin-top: 165px;
}

footer hr {
  color: #6D6E6E;
  position: absolute;
  bottom: 120px;
  width: 100%;
}
footer .row2 {
  margin-top: 100px;
  height: 57px;
}
footer .row3 {
  position: relative;
  margin-top: 150px;
}
footer .mobile-block {
  margin-top: 40px;
}


[class^="btn-slider-"] {
  height: 48px;
  width: 48px;
  background-color: #ABB7C1;
  position: relative;
}
[class^="btn-slider-"]:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  height: 20px;
  width: 20px;
}
button.btn-slider-prev:before {
  background-image: url(../icons/chevron-left.svg);
}
button.btn-slider-next:before {
  background-image: url(../icons/chevron-right.svg);
}
[class^="btn-slider-"].active {
  background-color: #FE564B;
}




.h1 {
  font-family: Wix Madefor Display;
  font-weight: 600;
  font-size: 48px;
  line-height: 125%;
  letter-spacing: -3%;
}
.h2 {
  font-family: Wix Madefor Display;
  font-weight: 700;
  font-size: 36px;
  line-height: 125%;
  letter-spacing: -5%;
}
.h3 {
  font-family: Wix Madefor Display;
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -5%;
}
.h4 {
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 28px;
  line-height: 135%;
  letter-spacing: -2%;
}
.h5 {
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 22px;
  line-height: 114.99999999999999%;
  letter-spacing: -2%;
  text-align: center;
}
.txt-extrabold {
  font-family: Wix Madefor Display;
  font-weight: 800;
  line-height: 135%;
  letter-spacing: -5%;
}
.txt-extrabold-1 {
  font-family: Wix Madefor Display;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -4%;
}
.txt-medium {
  font-family: Wix Madefor Display;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -5%;
}
.txt-semibold {
  font-family: Wix Madefor Display;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -5%;
}

.card {
  gap: 20px;
  border-radius: 20px;
  padding: 24px;
  background-color: #FFFFFF;
  color: var(--color-black);
}
footer .grid:nth-child(1) .row1 {
  height: 230px
}

input.form-control::placeholder, textarea.form-control::placeholder {
  color: #ABB7C1;
}
input.form-control, textarea.form-control {
  background: #FFFFFF;
  color: #000000;
  border-radius: 20px;
  padding: 14px 28px;
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 24px;
  line-height: 114.99999999999999%;
  letter-spacing: -5%;
  border: none;
  outline: none;
  width: 100%;
}
input.form-control:focus, textarea.form-control:focus,
input.form-control:not(:placeholder-shown), textarea.form-control:not(:placeholder-shown) {
  color: #000000;
}
/* Контейнер для всего текста и галочки */
.checkbox {
  display: block;        /* Меняем flex на block */
  padding-left: 43px;    /* Освобождаем место слева под галочку (28px + 15px отступ) */
  position: relative;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  font-family: Wix Madefor Display;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: 0%;
}

/* Ссылки внутри текста */
.checkbox a {
  color: #ffd700; /* Желтый цвет ссылок */
  text-decoration: underline;
}

/* Прячем стандартный системный чекбокс */
.checkbox input {
  display: none;
}

/* Создаем основу для нашей зеленой квадратной кнопки */
.checkbox .checkmark {
  width: 24px;
  height: 24px;
  background-color: #32cd32;
  border-radius: 6px;
  position: absolute;
  flex-shrink: 0;
  left: 0;
  top: 5px;
}

/* Создаем саму белую галочку внутри квадрата */
.checkbox .checkmark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 6px;
  height: 14px;
  border: solid #ffffff; /* Белый цвет галочки */
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0; /* Изначально галочка скрыта */
}

/* Показываем галочку только тогда, когда чекбокс включен */
.checkbox input:checked + .checkmark::after {
  opacity: 1;
}


.bg-mask-1 {
  background-image: url(../images/mask7.png);
  background-size: contain;
}

.bg-mask-8 {
  background-image: url(../images/mask-8.png);
  background-size: contain;
}
.bg-mask-8-bottom {
  background-image: url(../images/mask-8.png);
  background-position: 18px calc(100% - 14px);
  background-repeat: no-repeat;
  background-size: calc(100% - 40px);
}

.bg-mask-9 {
  background-image: url(../images/mask-9.png);
  background-size: contain;
}



[class^="bg-mask-11-top"],
[class*=" bg-mask-11-top"] {
  position: relative;
}
[class^="bg-mask-11-top"],
[class*=" bg-mask-11-top"]:before {
  background-image: url(../images/mask-11.png);
  background-position: 10px 26px;
  background-repeat: no-repeat;
  background-size: calc(100% - 40px);
  content: '';
  width: 100%;
  height: 324px;
  position: absolute;
  top: 0;
  left: 0;
}
.bg-mask-11-top\:lg:before {
  width: 0;
}

[class^="bg-mask-12-bottom"],
[class*=" bg-mask-12-bottom"] {
  position: relative;
}
[class^="bg-mask-12-bottom"],
[class*=" bg-mask-12-bottom"]:after {
  background-image: url(../images/mask-12.png);
  background-position: 10px 26px;
  background-repeat: no-repeat;
  background-size: calc(100% - 40px);
  content: '';
  width: 100%;
  height: 825px;
  position: absolute;
  bottom: 0;
  left: 0px;
}
.bg-mask-12-bottom\:lg:after {
  width: 0;
}

[class^="bg-mask-13-top"],
[class*=" bg-mask-13-top"] {
  position: relative;
}
[class^="bg-mask-13-top"],
[class*=" bg-mask-13-top"]:before {
  background-image: url(../images/mask-13.png);
  background-position: 10px 26px;
  background-repeat: no-repeat;
  background-size: calc(100% - 40px);
  content: '';
  width: 100%;
  height: 324px;
  position: absolute;
  top: 0;
  left: 0;
}
.bg-mask-13-top\:lg:before {
  width: 0;
}




.before-mask-9:before {
  background-image: url(../images/mask-9.png);
  content: '';
  position: absolute;
}
.select2-selection.select2-selection--single {
  border-radius: 12px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 12px !important;
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 16px;
  line-height: 114.99999999999999% !important;
  letter-spacing: -5%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 12px 8px 0 8px !important;
  top: calc(50% - 6px) !important;
}


.select2-container .select2-selection--single {
  height: auto !important;
  border-radius: 12px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  width: 24px !important;
  right: 22px !important;
}
.select2-dropdown {
  border-radius: 12px !important;
  background-color: #FAFAFA !important;
}
.select2-results__option {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.select2-container--open .select2-dropdown {
  font-family: Wix Madefor Display;
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  letter-spacing: -2%;
}
.select2-search--dropdown {
  padding: 0px !important;
  background: #f5f5f5 !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: none !important;
  outline: none;
  padding: 14px 12px;
}

#modalContactUs .modal-body div.form, #modalRequestDemo .modal-body div.form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 28px;
}
#modalContactUs .modal-block, #modalRequestDemo .modal-block {
  width: 852px;
  background-image: url(../images/mask7.png?t=1782225441315);
  background-size: contain;
}
#modalContactUs .modal-block .grid, #modalRequestDemo .modal-block .grid {
  margin-top: 50px;
}


@media screen and (max-width: 1024px) {
  #modalContactUs .modal-body div.form, #modalRequestDemo .modal-body div.form {
    row-gap: 16px;
  }
  #modalContactUs .modal-block, #modalRequestDemo .modal-block {
    background-image: none;
  }
  #modalContactUs .modal-block .grid, #modalRequestDemo .modal-block .grid {
    margin-top: 20px;
  }
  #modalContactUs .modal-block button.green, #modalRequestDemo .modal-block button.green {
    margin-top: 28px;
  }
}

.second-pages h1 {
  font-size: 72px;
}
.second-pages > section:nth-child(1) {
  padding-top: 112px;
}

ul {
  padding-left: 32px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

.card.bg-green, .card.bg-blue {
  color: var(--color-white);
}
.card.bg-yellow {
  color: var(--color-black);
}

.mt-80 {
  margin-top: 80px;
}

/* masks */
.mob-mask-10 {
  position: relative;
}
.mob-mask-10:before {
  content: '';
  background-image: url(../images/mask-10.png);
  position: absolute;
  top: 0;
  width: 363px;
  height: 300px;
  background-repeat: no-repeat;
  right: 12px;
}
.second-pages section.mob-mask-10:nth-child(1):before {
  top: 10px;
}


@media screen and (max-width: 1024px) {
  button {
    width: 100%;
    font-size: 18px;
    padding: 17px;
  }
  header img.logo {
    width: 175px;
    height: 21px;
  }
  header {
    padding: 26px 0 24px 0;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  h1 {
    font-family: Wix Madefor Display;
    font-weight: 800;
    font-size: 44px !important;
    line-height: 110.00000000000001%;
    letter-spacing: -4%;
  }
  .section-1 {
    padding-bottom: 44px !important;
    position: relative;
  }
  /*.section-1:before {*/
  /*  background-image: url(../images/mask-9.png);*/
  /*  content: '';*/
  /*  width: 100%;*/
  /*  height: 300px;*/
  /*  position: absolute;*/
  /*}*/

  .section-1 .subtext {
    font-family: Wix Madefor Display;
    font-weight: 500;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: -2%;
    margin-top: 20px !important;
  }
  .section-1 .image-mobile {
    margin-top: 100px !important;
  }
  .section-1 .subtext-btn {
    row-gap: 16px;
  }

  .h1 {
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    letter-spacing: -3%;
  }
  .h4 {
    font-family: Wix Madefor Display;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: -2%;
  }
  .card {
    padding: 20px 24px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .h2 {
    font-family: Wix Madefor Display;
    font-weight: 700;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -5%;
  }
  .h3 {
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 22px;
    line-height: 125%;
    letter-spacing: -5%;
  }
  header button.btn-login, header button.btn-menu {
    width: auto;
    padding: 0;
    height: auto;
  }
  header button.btn-menu {
    margin-left: 30px;
    height: 18px;
    margin-top: auto;
    margin-bottom: auto;
    width: 22px;
  }
  footer {
    padding-top: 28px;
  }
  footer .contacts {
    margin-top: 40px;
    row-gap: 20px;
  }
  footer button.row2 {
    margin-top: 40px;
    width: 100%;
  }
  footer .design {
    margin-top: 40px;
  }
  footer .menu {
    font-family: Wix Madefor Display;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -7%;
    text-transform: uppercase;
    row-gap: 24px;
  }
  footer .mobile-block > div:nth-child(2) {
    margin-top: 40px;
  }
  footer .mobile-block div:nth-child(2), footer .mobile-block div:nth-child(3) {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  footer .mobile-block div:nth-child(2) a {
    display: block;
  }
  footer a.row2, footer .row3 a, footer .txt {
    font-family: Wix Madefor Display;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  footer .mobile-block div:nth-child(3) {
    margin-top: 80px;
  }
  footer .footer-logo {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  footer hr {
    bottom: 130px;
  }
  input.form-control, textarea.form-control {
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
  }
  .checkbox {
    font-size: 12px;
  }
  .mob-pt-40 {
    padding-top: 40px !important;
  }
  .mob-pb-40 {
    padding-bottom: 40px !important;
  }
  .mob-mt-40 {
    margin-top: 40px !important;
  }
  .mob-mt-24 {
    margin-top: 24px !important;
  }
  .mob-mb-24 {
    margin-bottom: 24px !important;
  }
  .mob-mt-16 {
    margin-top: 24px !important;
  }
  .mob-mb-16 {
    margin-bottom: 24px !important;
  }
  .mob-pt-24 {
    padding-top: 24px !important;
  }
  .mob-p-0 {
    padding: 0 !important;
  }
}

details summary {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  list-style-image: none;
  list-style-type: none;
}
.second-pages .section-1.mob-mask-10:before {
  top: -80px;
}

@media screen and (min-width: 1025px) {
  .section-1 button.green {
    margin-left: 24px;
  }
  details {
    display: flex;
  }
  details summary {
    cursor: unset;
  }
  .mob-mask-10:before {
    width: 0;
    height: 0;
  }
  .bg-mask-11-top\:lg:before {
    width: 100%;
  }
  .bg-mask-11-top\:lg-none:before {
    width: 0;
  }
  .bg-mask-12-top\:lg:before {
    width: 100%;
  }
  .bg-mask-12-top\:lg-none:before {
    width: 0;
  }
  .bg-mask-13-top\:lg:before {
    width: 100%;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 24px;
    padding-left: 28px !important;
    padding-right: 28px !important;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .select2-selection.select2-selection--single {
    border-radius: 20px;
  }
  .select2-container .select2-selection--single {
    border-radius: 20px;
  }
}


