@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header {
  padding-top: 20px;
  position: relative;
  z-index: 10;
  background: #fff;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__logo .image {
  max-width: 87px;
  width: 100%;
}
.header__logo .text {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #060607;
}
.header__nav {
  margin-left: 25px;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__link {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  padding: 13px 0px 13px 0px;
}
.header__link::before {
  content: "";
  -webkit-transform: translateY(1.5px);
      -ms-transform: translateY(1.5px);
          transform: translateY(1.5px);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #060607;
  z-index: -1;
  pointer-events: none;
}
.header__link:hover::before {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  opacity: 0.35;
}

.header__link.hidden {
  visibility: hidden;
}
.header__download {
  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;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid #8f8f8f;
  background: #fff;
  padding: 12px 22px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  max-width: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-left: 40px;
  margin-right: 15px;
}
.header__download:hover {
  background: #eee;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  line-height: 21px;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}
.header__burger {
  display: none;
}

@media (max-width: 1280px) {
  .header__nav {
    margin-left: 45px;
  }
  .header__download {
    margin-left: 15px;
  }
}
@media (max-width: 1180px) {
  .header__nav {
    margin-left: 20px;
  }
  .header__download {
    margin-left: 20px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 12px;
  }
  .header__contacts {
    display: none;
  }
  .header__wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .header__list li.hidden {
    display: none;
  }
}
@media (max-width: 1022px) {
  .header__nav {
    margin-left: 0;
  }
  .header__download {
    margin-left: 0;
  }
}
@media (max-width: 920px) {
  .header__logo .text {
    display: none;
  }
}
@media (max-width: 798px) {
  .header__logo .text {
    display: inline;
  }
  .header__nav {
    display: none;
  }
  .header__download {
    display: none;
  }
  .header__download_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__contacts {
    display: none;
  }
  .header__contacts_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
  }
  .header__list {
    -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;
  }
  .header__link {
    color: #fff;
  }
  .header__contact {
    color: #fff;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    padding: 0;
    border: none;
  }
}
@media (max-width: 480px) {
  .header__logo .text {
    display: none;
  }
}
.btn {
  border-radius: 50px;
  border: 1px solid #404040;
  color: #404040;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 22px;
  background: transparent;
  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;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-family: "Roboto", sans-serif;
}
.btn:hover {
  background: #404040;
  color: #fff;
}
.btn_blue {
  background: #144999;
  border: 1px solid #144999;
  color: #fff;
}
.btn_blue:hover {
  background: #3e65a2;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 4;
  display: none;
}
.menu-overlay .overlay-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 798px) {
  .menu-overlay.active {
    display: block;
  }
}
.menu {
  background: #144999;
  padding: 75px 30px 30px 30px;
  width: 290px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  right: -300px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.menu__close {
  background: transparent;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu.active {
  right: 0;
}

.overlay {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  padding: 50px 15px 50px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  z-index: 4;
}

.overlay.active {
  display: grid;
}

.options-modal {
  max-width: 1150px;
  border-radius: 7px;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.options-modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.options-modal__close img {
  width: 16px;
  height: 16px;
}
.options-modal__title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: "Roboto Flex", sans-serif;
  padding-left: 50px;
}
.options-modal__body {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 70px;
}
.options-modal__slider {
  max-width: 390px;
  width: 100%;
}
.options-modal__image {
  max-width: 390px;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
.options-modal__image img {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.options-modal__image:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.options-modal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
}
.options-modal__list li {
  line-height: 32px;
  font-size: 16px;
  font-weight: 300;
}
.options-modal__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 700;
  text-decoration: underline;
  font-size: 16px;
  margin-bottom: 20px;
}
.options-modal__download img {
  width: 25px;
}
.options-modal__button {
  font-size: 20px;
  font-weight: 500;
}
.options-modal__slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.options-modal .options-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
}
.options-modal .options-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.modal-consultation {
  max-width: 750px;
  border-radius: 7px;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.modal-consultation__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal-consultation__close img {
  width: 16px;
  height: 16px;
}
.modal-consultation__title {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  font-family: "Roboto Flex", sans-serif;
  margin-bottom: 50px;
  padding-left: 30px;
}
.modal-consultation__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.modal-consultation__label:not(:last-of-type) {
  margin-bottom: 10px;
}
.modal-consultation__label .circle {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid rgba(6, 6, 7, 0.15);
  border-radius: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.modal-consultation__label .text {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
}
.modal-consultation__label:hover .circle {
  border: 1px solid rgb(6, 6, 7);
}
.modal-consultation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 455px;
  width: 100%;
  margin: 0 auto;
}
.modal-consultation__form-title {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 15px;
}
.modal-consultation__form input[type=radio] {
  display: none;
}
.modal-consultation__form input[type=radio]:checked + .modal-consultation__label .circle {
  border: 7px solid rgb(6, 6, 7);
}
.modal-consultation__form input[type=text] {
  height: 58px;
  border: 1px solid rgba(6, 6, 7, 0.15);
  width: 100%;
  padding: 0 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 56px;
}
.modal-consultation__form input[type=text].error {
  border: 1px solid red;
}
.modal-consultation__button {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}

.modal-callback {
  max-width: 400px;
  border-radius: 7px;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.modal-callback__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal-callback__close img {
  width: 16px;
  height: 16px;
}
.modal-callback__title {
  font-size: 25px;
  line-height: 37px;
  font-weight: 400;
  font-family: "Roboto Flex", sans-serif;
  margin-bottom: 20px;
  text-align: center;
}
.modal-callback__subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.modal-callback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.modal-callback__form-title {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
}
.modal-callback__form input[type=text] {
  height: 48px;
  border: 1px solid rgba(6, 6, 7, 0.15);
  width: 100%;
  padding: 0 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 46px;
}
.modal-callback__form input[type=text].error {
  border: 1px solid red;
}
.modal-callback__button {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
}

.modal-certificates {
  max-width: 595px;
  border-radius: 7px;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.modal-certificates__close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.modal-certificates__close img {
  width: 16px;
  height: 16px;
}
.modal-certificates__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.modal-certificates__slide img {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-certificates__slide:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.modal-certificates__button {
  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;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #144999;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.modal-certificates__button::after {
  font-size: 14px;
  color: #fff;
}
.modal-certificates__button:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.modal-certificates__pagination {
  color: #144999;
}

.modal {
  position: relative;
  background: #fff;
  border-radius: 7px;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.modal__close {
  max-width: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 16px;
  right: 15px;
  top: 15px;
  position: absolute;
}
.modal__close svg {
  width: 100%;
  height: 100%;
}
.modal__title {
  font-size: 1.125rem;
  line-height: 1.37;
  font-weight: 400;
  padding: 5px 0;
  text-align: center;
}
.modal__subtitle {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 10px 0;
  text-align: center;
}
.modal__form {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.modal__form-label {
  font-size: 0.9375rem;
  padding-bottom: 10px;
  line-height: 1.375;
  font-weight: 500;
  text-align: left;
}
.modal__form-wrap input {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  font-family: inherit;
  min-height: 2.875rem;
  font-size: inherit;
  line-height: 1.333;
  font-weight: 400;
  padding: 3px 15px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: keep-all;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #060607;
  border: 1px solid rgba(6, 6, 7, 0.15);
  -webkit-transition: all 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
  margin-bottom: 5px;
}
.modal__form-wrap input:hover {
  border: 1px solid rgba(6, 6, 7, 0.3);
}
.modal__form-wrap input:active {
  border: 1px solid rgba(6, 6, 7, 0.3);
}
.modal__form-error {
  font-size: 0.625rem;
  line-height: 1.5;
  height: 0;
  font-weight: 500;
  color: #ff714d;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
}
.modal__form-error.active {
  height: 15px;
  padding-top: 3px;
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.modal__form-button {
  border-radius: 20px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.37;
  padding: 14px 24px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border: none;
  width: 100%;
  font-family: "Arial", Helvetica, Arial, sans-serif;
}

@media (max-width: 1022px) {
  .overlay {
    padding: 0;
  }
  .overlay_padding {
    padding: 15px;
  }
  .overlay_certificates {
    padding: 15px;
  }
  .modal-consultation__title {
    padding-left: 0;
    font-size: 22px;
    line-height: 30px;
  }
  .options-modal {
    border-radius: 0px;
  }
  .options-modal__body {
    grid-template-columns: 1fr;
  }
  .options-modal__title {
    padding-left: 0;
    text-align: center;
  }
  .options-modal__slider {
    margin: 0 auto;
  }
  .options-modal__button {
    width: 100%;
  }
}
@media (max-width: 798px) {
  .options-modal {
    padding: 40px 20px 40px 20px;
  }
  .options-modal__title {
    font-size: 25px;
  }
  .options-modal__button {
    font-weight: 400;
    font-size: 16px;
  }
  .modal-consultation {
    padding: 40px 20px 40px 20px;
  }
  .modal-callback {
    padding: 40px 20px 40px 20px;
  }
}
@media (max-width: 630px) {
  .overlay.active.overlay_certificates {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .modal-certificates {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .options-modal__slider {
    max-width: 300px;
  }
}
@media (max-width: 405px) {
  .options-modal__slider {
    max-width: 280px;
  }
}
@media (max-width: 370px) {
  .options-modal {
    padding: 40px 15px 40px 15px;
  }
  .options-modal__slider {
    max-width: 240px;
  }
}
.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

.social {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 4;
}
.social__link {
  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;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.social__link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 25px;
  height: 25px;
  background: #fff;
  z-index: 0;
}
.social__link:hover {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.social__link-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  position: relative;
  z-index: 1;
}
.social__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.social__link-text {
  display: none;
}

.ticket {
  position: fixed;
  z-index: 4;
  background: transparent;
  border: none;
  padding: 0;
  left: -18px;
  bottom: 40px;
  max-width: 100px;
  display: none;
}
.ticket img {
  width: 100%;
}

@media (max-width: 606px) {
  .social {
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .social__link-text {
    display: block;
    color: #fff;
    font-size: 11px;
  }
  .social__link::after {
    display: none;
  }
  .social__link.tg {
    background: #40B3E0;
  }
  .social__link.wa {
    background: #67C15E;
    gap: 10px;
  }
  .social__link.wa img {
    width: 25px;
    height: 25px;
  }
  .social__link.vb {
    background: #7D3DAF;
  }
  .ticket {
    display: block;
  }
}
.hero-bg {
  position: relative;
  overflow: hidden;
}
.hero-bg__bg {
  position: absolute;
  z-index: 0;
  width: 798px;
  height: 902px;
  bottom: 0;
  right: -200px;
  opacity: 0.8;
}
.hero-bg__bg-1 {
  position: absolute;
  bottom: 15%;
  left: 54%;
  width: 340px;
}
.hero-bg__bg-2 {
  position: absolute;
  bottom: 0;
  left: 37%;
  width: 340px;
}

.blue {
  background: #144999;
  height: 236px;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 115px 0 140px 0;
}
.hero__title {
  font-weight: 600;
  font-size: 50px;
  font-family: "Roboto Flex", sans-serif;
  line-height: 60px;
  max-width: 830px;
  width: 100%;
  margin-bottom: 15px;
}
.hero__subtitle {
  font-size: 25px;
  font-weight: 400;
  line-height: 37px;
  margin-bottom: 30px;
  max-width: 830px;
}
.hero__button {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 20px;
  max-width: 476px;
  width: 100%;
}
.hero__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: 15px;
}
.hero__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 24px;
}
.hero__list-item svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33px;
  height: 33px;
}
.hero__list-item svg path {
  fill: #144999;
}
.hero__wrapper {
  position: relative;
}

@media (max-width: 1280px) {
  .hero-bg__bg-1 {
    display: none;
  }
  .hero-bg__bg-2 {
    display: none;
  }
}
@media (max-width: 1022px) {
  .hero-bg__bg {
    opacity: 0.4;
  }
  .hero {
    padding: 60px 0 60px 0;
  }
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 798px) {
  .hero {
    padding: 60px 0 60px 0;
  }
  .hero__title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 375px) {
  .hero {
    padding: 60px 0 60px 0;
  }
  .hero__title {
    font-size: 25px;
    line-height: 35px;
  }
  .hero__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
.assortment {
  background: url("/images/assortments-section/bg.webp") center/cover no-repeat;
  position: relative;
  padding: 41px 0;
}
.assortment::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 73, 153, 0.8);
}
.assortment__wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.assortment__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;
  gap: 20px;
}
.assortment__card-img {
  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;
  width: 50px;
  height: 50px;
}
.assortment__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.assortment__card-text {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  line-height: 27px;
  text-align: center;
}

@media (max-width: 798px) {
  .assortment__wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 480px) {
  .assortment__wrapper {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.products {
  padding: 100px 0;
  background: #F5F5F5;
}
.products__title {
  font-size: 40px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products__grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 932.5px;
  width: 100%;
  margin: 0 auto;
}
.products__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 20px;
  background: #fff;
}
.products__card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.products__card-img img {
  width: 100%;
}
.products__card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  text-align: center;
  margin-bottom: 20px;
  color: #144999;
}
.products__card-descriptions {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 15px;
}
.products__card-options {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  color: #144999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  text-decoration: underline;
  margin-top: auto;
}
.products__card-button.auto-top {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 920px) {
  .products {
    padding: 80px 0;
  }
  .products__grid {
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .products__grid.col-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }
}
@media (max-width: 620px) {
  .products {
    padding: 40px 0;
  }
  .products__title {
    font-size: 25px;
  }
  .products__grid {
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    grid-template-columns: 1fr;
  }
  .products__grid.col-3 {
    max-width: 300px;
    grid-template-columns: 1fr;
  }
  .products__card-title {
    font-size: 14px;
  }
}
.advantages {
  padding: 100px 0;
  background: #FFFFF8;
}
.advantages__title {
  font-size: 40px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
  margin-bottom: 50px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.advantages__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;
}
.advantages__card-img {
  width: 60px;
  height: 60px;
  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;
  margin-bottom: 10px;
}
.advantages__card-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages__card-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 15px;
}
.advantages__card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
}
.advantages__card-text span {
  font-weight: 700;
}

@media (max-width: 1022px) {
  .advantages {
    padding: 70px 0;
  }
  .advantages__title {
    font-size: 30px;
    line-height: 40px;
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 606px) {
  .advantages {
    padding: 50px 0;
  }
  .advantages__title {
    font-size: 25px;
    line-height: 35px;
  }
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
.callback {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("/images/callback-section/bg.webp") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/callback-section/bg.webp") center/cover no-repeat;
  padding: 100px 0;
}
.callback__title {
  font-size: 40px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
.callback__form {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.callback__form input[type=text] {
  border-radius: 50px;
  background: #fff;
  padding: 0 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  height: 56px;
  border: 1px solid transparent;
}
.callback__form input[type=text].error {
  border: 1px solid red;
}
.callback__form-button {
  height: 56px;
  border: 2px solid #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 798px) {
  .callback__title {
    font-size: 30px;
    line-height: 50px;
  }
  .callback__form {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 606px) {
  .callback {
    padding: 50px 0;
  }
  .callback__title {
    font-size: 24px;
    line-height: 35px;
  }
}
.info {
  padding: 100px 0;
}
.info__title {
  text-align: center;
  font-size: 40px;
  font-weight: 300;
  line-height: 60px;
  margin-bottom: 30px;
}
.info__subtitle {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  max-width: 980px;
  width: 100%;
  margin: 0 auto 30px;
}
.info__video {
  position: relative;
  max-width: 709px;
  width: 100%;
  height: 337px;
  margin: 0 auto 40px;
}
.info__video iframe {
  width: 100%;
  height: 100%;
}
.info__video-play {
  background: url("/images/info-section/video-bg.webp") center/cover no-repeat;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  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;
}
.info__video-play .play-btn {
  width: 96px;
  height: 96px;
  border-radius: 100%;
  background: rgba(6, 6, 7, 0.15);
  border: 2px solid #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.info__video-play .play-btn .play-icon {
  width: 28px;
}
.info__video-play .play-btn .play-icon path {
  fill: #fff;
}
.info__video-play .play-btn:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.info__companies {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.info__companies img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.info__small-companies {
  margin: 0 auto 30px;
  max-width: 330px;
  width: 100%;
}
.info__small-companies img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.info__certificates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgb(20, 65, 153);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.info__certificates:hover {
  text-decoration: underline;
}

@media (max-width: 798px) {
  .info {
    padding: 70px 0;
  }
  .info__title {
    font-size: 30px;
    line-height: 50px;
  }
  .info__video {
    height: 250px;
  }
}
@media (max-width: 606px) {
  .info {
    padding: 50px 0;
  }
  .info__title {
    font-size: 24px;
    line-height: 35px;
  }
  .info__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .info__video {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .info {
    padding: 50px 0;
  }
  .info__title {
    font-size: 24px;
    line-height: 35px;
  }
  .info__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .info__video {
    height: 200px;
  }
}
.soft {
  padding: 0 0 80px 0;
  background: #F5F5F5;
  position: relative;
}
.soft__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.soft__title {
  font-size: 40px;
  text-align: center;
  font-weight: 300;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.soft__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.soft__card-img {
  max-width: 209px;
  width: 100%;
  margin: 0 auto 20px;
}
.soft__card-title {
  font-size: 18px;
  font-weight: 700;
}
.soft__card-descriptions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.soft__card-descriptions span {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
.soft__card-descriptions ul {
  list-style-type: disc;
  padding-left: 15px;
}
.soft__card-descriptions ul li {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
.soft__card-link {
  color: #144199;
  text-decoration: underline;
  text-underline-offset: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}
.soft__card-link:hover {
  text-decoration: underline;
}

@media (max-width: 798px) {
  .soft__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 404px;
  }
}
@media (max-width: 620px) {
  .soft {
    padding: 0 0 40px 0;
  }
  .soft__title {
    font-size: 25px;
  }
}
.like {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("/images/callback-section/2.webp") center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/callback-section/2.webp") center/cover no-repeat;
  padding: 80px 0;
}
.like__button {
  margin-bottom: 0;
}
.like .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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.like__title {
  font-size: 40px;
  line-height: 60px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.like__subtitle {
  font-size: 22px;
  line-height: 33px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 798px) {
  .like__title {
    font-size: 30px;
    line-height: 50px;
  }
}
@media (max-width: 606px) {
  .like {
    padding: 50px 0;
  }
  .like__title {
    font-size: 24px;
    line-height: 35px;
  }
  .like__button {
    font-size: 16px;
  }
}
.footer {
  background: #000;
  padding: 50px 0;
}
.footer .container {
  max-width: 95%;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.footer__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.footer__presentation {
  position: relative;
  height: 43px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 500;
  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;
  max-width: 238px;
  width: 100%;
  margin-left: 20px;
}
.footer__presentation img {
  position: absolute;
  width: 98px;
  right: -30px;
  bottom: -25px;
}
.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 30px;
}
.footer__contacts-text {
  text-align: right;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding-right: 10px;
}
.footer__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  border-left: 1px solid #fff;
}
.footer__contacts-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  line-height: 21px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.footer__links-text {
  text-align: right;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding-right: 10px;
}
.footer__link {
  padding-left: 5px;
  border-left: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-right: 15px;
}
.footer__link svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45px;
  height: 45px;
}
.footer__link ul li a {
  text-decoration: underline;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.footer__link ul li a:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

@media (max-width: 1780px) {
  .footer .container {
    max-width: 1280px;
  }
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__contacts {
    padding-left: 30px;
  }
}
@media (max-width: 880px) {
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 606px) {
  .footer__wrapper {
    -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;
  }
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    display: contents;
  }
  .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    display: contents;
  }
  .footer__company-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;
  }
  .footer__links {
    -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;
    gap: 10px;
  }
  .footer__links-text {
    padding-right: 0;
    text-align: center;
  }
  .footer__links-text br {
    display: none;
  }
  .footer__link {
    margin-right: 0;
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 375px) {
  .footer__contacts {
    padding-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer__contacts-text {
    padding-right: 0;
    text-align: center;
  }
  .footer__contacts-text br {
    display: none;
  }
  .footer__contacts-list {
    padding-left: 0;
    border-left: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.battery {
  position: fixed;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 696px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2;
  padding: 3px;
  border: 1px solid black;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.battery__wrapper {
  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: flex-end;
  height: 100%;
  gap: 1px;
  position: relative;
  overflow: hidden;
}
.battery .gradient {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(hsl(359, 100%, 40%)), color-stop(2%, hsl(14, 100%, 42%)), color-stop(5%, hsl(20, 100%, 43%)), color-stop(7%, hsl(25, 100%, 44%)), color-stop(10%, hsl(31, 100%, 44%)), color-stop(14%, hsl(37, 100%, 44%)), color-stop(18%, hsl(42, 100%, 43%)), color-stop(22%, hsl(46, 100%, 46%)), color-stop(28%, hsl(51, 100%, 48%)), color-stop(35%, hsl(56, 100%, 52%)), color-stop(45%, hsl(69, 100%, 48%)), color-stop(59%, hsl(84, 100%, 49%)), to(hsl(118, 100%, 50%)));
  background-image: linear-gradient(0deg, hsl(359, 100%, 40%) 0%, hsl(14, 100%, 42%) 2%, hsl(20, 100%, 43%) 5%, hsl(25, 100%, 44%) 7%, hsl(31, 100%, 44%) 10%, hsl(37, 100%, 44%) 14%, hsl(42, 100%, 43%) 18%, hsl(46, 100%, 46%) 22%, hsl(51, 100%, 48%) 28%, hsl(56, 100%, 52%) 35%, hsl(69, 100%, 48%) 45%, hsl(84, 100%, 49%) 59%, hsl(118, 100%, 50%) 100%);
}
.battery .progress {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  background: #fff;
  height: 100%;
  width: 22px;
  z-index: 2;
}
.battery .indicator {
  min-height: 10px;
  max-height: 10px;
  width: 20px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #000;
  position: relative;
  z-index: 1;
}

.battery-mobile {
  position: fixed;
  top: -35px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: 3px;
  border: 1px solid black;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.battery-mobile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 1px;
  position: relative;
  overflow: hidden;
}
.battery-mobile .gradient {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 89%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 3px;
  background-image: -webkit-gradient(linear, left top, right top, from(hsl(359, 100%, 40%)), color-stop(2%, hsl(14, 100%, 42%)), color-stop(5%, hsl(20, 100%, 43%)), color-stop(7%, hsl(25, 100%, 44%)), color-stop(10%, hsl(31, 100%, 44%)), color-stop(14%, hsl(37, 100%, 44%)), color-stop(18%, hsl(42, 100%, 43%)), color-stop(22%, hsl(46, 100%, 46%)), color-stop(28%, hsl(51, 100%, 48%)), color-stop(35%, hsl(56, 100%, 52%)), color-stop(45%, hsl(69, 100%, 48%)), color-stop(59%, hsl(84, 100%, 49%)), to(hsl(118, 100%, 50%)));
  background-image: linear-gradient(90deg, hsl(359, 100%, 40%) 0%, hsl(14, 100%, 42%) 2%, hsl(20, 100%, 43%) 5%, hsl(25, 100%, 44%) 7%, hsl(31, 100%, 44%) 10%, hsl(37, 100%, 44%) 14%, hsl(42, 100%, 43%) 18%, hsl(46, 100%, 46%) 22%, hsl(51, 100%, 48%) 28%, hsl(56, 100%, 52%) 35%, hsl(69, 100%, 48%) 45%, hsl(84, 100%, 49%) 59%, hsl(118, 100%, 50%) 100%);
}
.battery-mobile .progress {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  background: #fff;
  height: 22px;
  width: 100%;
  z-index: 2;
}
.battery-mobile .indicator {
  min-width: 10px;
  max-width: 10px;
  height: 20px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #000;
  position: relative;
  z-index: 1;
}

.battery-mobile.active {
  top: 0;
}

@media (max-width: 606px) {
  .battery {
    display: none;
  }
  .battery-mobile {
    display: block;
  }
}
.service {
  padding: 100px 0;
}
.service__title {
  font-size: 40px;
  line-height: 48px;
  font-family: "Roboto Flex", sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
}
.service__subtitle {
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}
.service__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}
.service__accordion-content {
  padding-top: 20px;
}
.service__accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.service__accordion-header .h3 {
  color: rgb(20, 65, 153);
  font-size: 18px;
  font-weight: 700;
}
.service__accordion-header svg {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service__accordion-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(6, 6, 7, 0.15);
}
.service__accordion-item.accordion__item_show .service__accordion-header svg, .service__accordion-item.accordion__item_slidedown .service__accordion-header svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.service__buttons-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.service__hide-btn {
  border-bottom: 1px dashed #2d2e2e;
  display: block;
}
.service__subaccordion-item {
  padding: 20px 0;
}
.service__subaccordion-item:not(:last-of-type) {
  border-bottom: 1px solid #b8c4cc;
}
.service__subaccordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.service__subaccordion-header svg {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.service__subaccordion-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service__subaccordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  padding-top: 23px;
}
.service__subaccordion-item.accordion__item_show .service__subaccordion-header svg path, .service__subaccordion-item.accordion__item_slidedown .service__subaccordion-header svg path {
  fill: yellow;
  stroke: #000;
}
.service__content {
  max-width: 1200px;
  width: 100%;
}
.service__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.service__wrapper div p {
  font-weight: 700;
  margin-bottom: 15px;
}
.service__wrapper div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.service__wrapper div ul li {
  font-size: 14px;
  font-weight: 300px;
}
.service__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.service__text p {
  font-size: 20px;
  font-weight: 300;
}

@media (max-width: 606px) {
  .service {
    padding: 50px 0;
  }
  .service__title {
    font-size: 25px;
    line-height: 35px;
  }
  .service__subtitle {
    font-size: 18px;
  }
  .service__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service__text p {
    font-size: 16px;
  }
}
.event {
  padding: 50px 0;
  background: url(/images/event/bg.png) center/cover no-repeat;
}
.event__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.event__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.event__title-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
}
.event__title-text {
  color: #fff;
  font-size: 35px;
}
.event__title-text span {
  color: #b8aa8a;
}
.event__title-text span.small {
  font-size: 20px;
}
.event__title-text span.white {
  color: #fff;
}
.event__rf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 182px;
  width: 100%;
}
.event__rf img {
  width: 100%;
}
.event__text {
  font-weight: 500;
  font-size: 24px;
  color: #e5dabf;
  margin-bottom: 20px;
}
.event__sino {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}
.event__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: 15px;
  margin-bottom: 20px;
}
.event__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event__list li img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.event__list li span {
  font-weight: 500;
  font-size: 24px;
  color: #e5dabf;
}
.event__list li:first-of-type {
  gap: 28px;
}
.event__list li:last-of-type {
  gap: 15px;
}
.event__image {
  max-width: 100%;
  width: 100%;
}
.event__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-mobile {
  display: none;
}

@media (max-width: 660px) {
  .event {
    display: none;
  }
  .event__title-text span.small {
    font-weight: 700;
    font-size: 30px;
  }
  .event__title-text span.white {
    font-size: 25px;
  }
  .event-mobile {
    display: block;
    padding: 50px 0;
    background: url(/images/event/bg-mobile.png) center/cover no-repeat;
  }
  .event-mobile__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
  }
  .event-mobile__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .event-mobile__images img {
    max-width: 100px;
    width: 100%;
  }
  .event-mobile__city {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
  }
  .event-mobile__sino {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
  }
  .event-mobile__gift {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    color: #e5dabf;
  }
}
.cooperation {
  padding: 50px 0;
}
.cooperation h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cooperation h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cooperation h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.cooperation p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 15px;
}
.cooperation ul {
  margin-bottom: 15px;
}
.cooperation img {
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
}
.cooperation li p {
  margin-bottom: 5px;
}
.cooperation p b {
  font-weight: 700;
}
.cooperation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 100%;
  margin: 30px auto 0;
}
.cooperation__form input[type=text] {
  border-radius: 50px;
  background: #fff;
  padding: 0 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  height: 56px;
  border: 1px solid black;
  width: 100%;
}
.cooperation__form input[type=text].error {
  border: 1px solid red;
}
.cooperation__form-button {
  height: 56px;
  border: 2px solid #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 606px) {
  .cooperation h1 {
    font-size: 25px;
  }
  .cooperation p {
    font-size: 20px;
  }
}
.projects {
  padding: 50px 0;
}
.projects__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 30px;
  position: relative;
}
.projects__title::after {
  position: absolute;
  left: 0;
  top: 100%;
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #144999;
}
.projects__wrapper {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.projects__wrapper-title {
  font-size: 24px;
  font-weight: 300;
}
.projects__grid {
  display: grid;
  gap: 25px;
}
.projects__grid.col-1 {
  grid-template-columns: 1fr;
}
.projects__grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.projects__grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.projects__card {
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 400px;
}
.projects__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

@media (hover: hover) {
  .projects__card img:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (max-width: 798px) {
  .projects__title {
    font-size: 30px;
  }
  .projects__card {
    max-height: 300px;
  }
  .projects__grid.col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 606px) {
  .projects__card {
    border-radius: 10px;
    max-height: 250px;
  }
}
@media (max-width: 480px) {
  .projects__title {
    font-size: 25px;
  }
  .projects__grid {
    gap: 10px;
  }
  .projects__card {
    max-height: 200px;
  }
}
*:active, *:focus, *:focus-within, *:target, *:hover, *:visited, *:focus-visible {
  outline: none !important;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

a {
  text-decoration: none;
  color: #060607;
}
a:hover {
  text-decoration: none;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  position: relative;
  color: #060607;
  min-width: 303px;
  font-size: 16px;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

label, button {
  cursor: pointer;
}

b {
  font-weight: 700;
}

q::before {
  content: open-quote;
}

q::after {
  content: close-quote;
}

q {
  quotes: "«" "»";
}

main {
  height: 100%;
}/*# sourceMappingURL=style.css.map */

.header__item--has-submenu {
  position: relative;
}
.header__submenu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.header__submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.header__item--has-submenu:hover .header__submenu {
  display: flex;
}
@media (min-width: 798px) {
  .header__submenu li:not(:last-child) .header__link {
    padding-bottom: 0px;
  }
  .header__submenu li:not(:last-child) .header__link::before {
    bottom: -2px;
  }
}


@media (max-width: 798px) {
  .header__list li:first-child {
    display: none;
  }

  .header__link {
    padding: 0;
  }
  .header__submenu {
    display: flex;
    background: none;
    box-shadow: none;
    position: relative;
    top: 0;
    gap: 10px;
  }
  .header__list .header__submenu li:first-child {
    display: block;
  }
}