.btn {
  padding: 8px 32px;
  border: 1px solid #2641B2;
  background: #2641B2;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.18;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  transition: box-shadow 0.25s ease-in-out;
}
.btn a {
  color: inherit;
}
.btn.blue {
  background: #3E5ACE;
  border-color: #3E5ACE;
}
.btn.yellow {
  color: #03256C;
  border-color: #FBD437;
  background: #FBD437;
}
.btn.transparent {
  background: transparent;
  color: #2641B2;
}
.btn.blue-main {
  background: #2641B2;
  border-color: #2641B2;
}
.btn.white {
  background: transparent;
  border: 2px solid #FFFFFF;
}
.btn.disabled {
  background: #747474;
  border-color: #747474;
}
.btn:hover, .btn:focus, .btn:active {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.btn.header-section__button.transparent {
  padding: 0 32px;
}
.btn.header-section__button.transparent a {
  padding: 8px 0;
}
.btn.about-system-section__button {
  padding: 0;
}
.btn.about-system-section__button a {
  padding: 8px 32px;
  display: block;
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 7px 16px;
  }
  .btn.header-section__button {
    min-width: calc((100% - 16px) / 2);
  }
  .btn.header-section__button.transparent {
    padding: 0 16px;
  }
  .btn.header-section__button.transparent a {
    padding: 7px 0;
  }
  .btn.about-system-section__button {
    padding: 0;
  }
  .btn.about-system-section__button a {
    padding: 7px 16px;
  }
}
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #03256C;
  z-index: 1001;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 400px;
  height: auto;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}

.header {
  background: #2641B2;
}

@media screen and (max-width: 1200px) {
  .header__logo img {
    max-height: 28px;
  }
}
.landing {
  /*Mobile Menu*/
}
.landing .header {
  padding: 12px 0;
}
.landing .header__menu {
  padding: 0;
  margin: 0;
  gap: 16px;
}
.landing .header__menu-item-link {
  background: #3E5ACE;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 30px;
  transition: box-shadow 0.25s ease-in-out;
}
.landing .header__menu-item-link:hover, .landing .header__menu-item-link:focus, .landing .header__menu-item-link:active {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.landing .mobile-close-btn.menu-toggle.js-close-menu {
  display: none;
}
.landing .mobile-close-icon {
  justify-content: center;
  align-items: center;
}
.landing .mobile-menu {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.landing .mobile-menu-item-link {
  padding: 6px 12px;
  border-radius: 10px;
  background: #3E5ACE;
  color: #FFFFFF;
  display: block;
  width: 100%;
}
.landing .mobile-menu-item-link:active, .landing .mobile-menu-item-link:focus {
  color: #FBD437;
}
.landing .menu-toggle {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}
.landing .menu-container {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 52px);
  background-color: #03256C;
  z-index: 999;
  color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 250ms ease-in-out;
  padding: 24px 15px 63px 15px;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}
.landing .menu-container.is-open {
  display: flex;
  transform: translateX(0);
}
.landing .dropdown-toggle {
  width: 100%;
  border: none;
  padding: 6px 12px;
  border-radius: 10px;
  background: #3E5ACE;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 136%;
  text-align: left;
}
.landing .dropdown-toggle::after {
  display: none;
}
.landing .dropdown-toggle[aria-expanded=true] {
  color: #FBD437;
}
.landing .dropdown-menu {
  background: transparent;
  border: none;
}
.landing .dropdown-item {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 29px;
}
.landing .dropdown-item:hover {
  background-color: transparent;
}
.landing .dropdown-item .social-networks-link {
  display: flex;
}
.landing .dropdown-item.underline {
  text-decoration: underline;
}
.landing.about-system .about-system-block {
  display: block;
}
.landing.about-system .about-system-page {
  display: none;
}
.landing.about-tariffs .about-system-block, .landing.consultation .about-system-block {
  display: none;
}
.landing.about-tariffs .about-system-page, .landing.consultation .about-system-page {
  display: block;
}

@media screen and (max-width: 1200px) {
  .landing .header__menu {
    gap: 8px;
  }
  .landing .header__menu-item-link {
    font-size: 10px;
    color: #FFFFFF;
    padding: 7px 9px;
    line-height: 126%;
  }
}
@media screen and (max-width: 820px) {
  .landing .header__button {
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .landing .header {
    padding: 8px 0;
  }
}
.header-section {
  padding-top: 120px;
}
.header-section__title {
  margin-bottom: 16px;
}
.header-section__title img {
  margin-right: 24px;
}
.header-section__desc {
  margin-bottom: 16px;
}
.header-section__img {
  margin-top: 40px;
}
.header-section__img img {
  width: 100%;
  border-radius: 30px;
}
.header-section__buttons {
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .header-section {
    padding-top: 60px;
  }
  .header-section__img img {
    max-height: 240px;
    object-fit: cover;
  }
}
@media screen and (max-width: 728px) {
  .header-section__img img {
    max-height: 168px;
    object-fit: cover;
    border-radius: 15px;
  }
  .header-section__title {
    margin-bottom: 16px;
  }
  .header-section__title img {
    margin-right: 8px;
    max-height: 46px;
  }
  .header-section__buttons {
    gap: 16px;
  }
}
.tariff-section .col-12 {
  padding: 0 12px;
}
.tariff-section .row {
  padding: 0 3px;
}
.tariff-section__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.tariff-section__card.individual:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 80px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='85' height='80' viewBox='0 0 85 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_962_122518)'%3E%3Ccircle cx='66' cy='14' r='58' fill='%232641B2'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_962_122518' x='0' y='-52' width='132' height='132' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='4'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_962_122518'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_962_122518' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}
.tariff-section__card.individual:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.9993 40.3334C32.1246 40.3334 40.3327 32.1253 40.3327 22.0001C40.3327 11.8749 32.1246 3.66675 21.9993 3.66675C11.8741 3.66675 3.66602 11.8749 3.66602 22.0001C3.66602 32.1253 11.8741 40.3334 21.9993 40.3334Z' stroke='%23FBD437' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 14.6667V22.0001' stroke='%23FBD437' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 29.3333H22.0175' stroke='%23FBD437' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.tariff-section__card-title {
  color: #2641B2;
  background: #FBD437;
  border-radius: 10px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.tariff-section__card-list {
  display: grid;
  gap: 8px;
}
.tariff-section__card-list li {
  margin-left: 16px;
  display: flex;
  align-items: center;
}
.tariff-section__card-list li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_962_122235)'%3E%3Cpath d='M8.00065 14.6666C11.6827 14.6666 14.6673 11.6819 14.6673 7.99992C14.6673 4.31792 11.6827 1.33325 8.00065 1.33325C4.31865 1.33325 1.33398 4.31792 1.33398 7.99992C1.33398 11.6819 4.31865 14.6666 8.00065 14.6666Z' stroke='%232641B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 8.00008L7.33333 9.33341L10 6.66675' stroke='%232641B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_962_122235'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.tariff-section__card-text p + p {
  margin-top: 20px;
}
.tariff-section__card-price .nav-tabs {
  border-bottom: 0;
  transform: translateY(8px);
  position: relative;
  z-index: 1;
}
.tariff-section__card-price .nav-tabs:after {
  content: "";
  display: inline-block;
  height: 7px;
  width: calc(33.3333333333% + 2px);
  background: #FFFFFF;
  position: absolute;
  z-index: 2;
  left: calc(33.3333333333% - 1px);
  bottom: 0;
}
.tariff-section__card-price .nav-item {
  width: 33.3333333333%;
}
.tariff-section__card-price .nav-link {
  padding: 6px 0 14px 0;
  text-align: center;
  color: #181818;
  border-radius: 8px 8px 0 0;
}
.tariff-section__card-price .nav-link:hover {
  border-color: transparent;
}
.tariff-section__card-price .nav-link.active {
  color: #181818;
  border: 1px solid #FBD437;
  border-bottom: 0;
}
.tariff-section__card-price .tab-content {
  min-height: 202px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #FBD437;
  background-color: #FFFFFF;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.1));
}
.tariff-section__card-price .tab-content__price-card {
  border-radius: 10px;
  border: 2px solid #FFF3B5;
  background: #FFFBE7;
  padding-bottom: 8px;
}
.tariff-section__card-price .tab-content__price-card-head {
  border-radius: 10px 10px 0px 0px;
  background: #FFF3B5;
  padding: 1px 8px 3px 8px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
.tariff-section__card-price .tab-content__price-card-head-title {
  color: #2641B2;
}
.tariff-section__card-price .tab-content__price-card-head-percent {
  color: #FFFFFF;
  border-radius: 5px;
  background: #00AD11;
  padding: 1px 4px;
}
.tariff-section__card-price .tab-content__price-card-body {
  padding-top: 7px;
  text-align: center;
}
.tariff-section__card-price .tab-content__price-card-body span {
  color: #F00;
  font-size: 10px;
  position: relative;
  display: inline-block;
  transform: translate(10px);
}
.tariff-section__card-price .tab-content__price-card-body span::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 42px;
  height: 0.5px;
  background: #F00;
  top: 50%;
  left: -2px;
  transform: rotate(10deg);
}
.tariff-section__card-price .tab-content__price-card.dark {
  margin-top: 8px;
  background: #FDE586;
  border-color: #FBD437;
  padding-bottom: 18px;
}
.tariff-section__card-price .tab-content__price-card.dark .tab-content__price-card-head {
  background: #FFF3B5;
  background: #FBD437;
}
.tariff-section__card-price .tab-content__price-card.dark .tab-content__price-card-body {
  color: #2641B2;
  padding-top: 14px;
}
.tariff-section__phone-wrapper {
  border-radius: 20px;
  background: #2641B2;
  padding: 24px;
  margin-top: 60px;
  color: #FFFFFF;
  text-align: center;
}
.tariff-section__phone-link {
  color: #FBD437;
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  gap: 4px;
}
.tariff-section__phone-link:hover {
  color: #FBD437;
  text-decoration: underline;
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
  .tariff-section__card.individual .tariff-section__card-title {
    padding: 6px 70px 6px 10px;
  }
  .tariff-section__card.individual:before {
    right: -10px;
    top: -4px;
  }
  .tariff-section__card.individual:after {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 1200px) {
  .tariff-section__card-list li {
    margin-left: 0;
  }
  .tariff-section__card .nav-item {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .tariff-section__card .nav-item {
    font-size: 16px;
  }
}
.experts-section .swiper {
  padding-top: 40px;
}
.experts-section .swiper-slide {
  position: relative;
  border-radius: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.experts-section .swiper-slide:hover .experts-section__overlay {
  max-height: 100%;
  height: calc(100% - 32px);
}
.experts-section .swiper-slide:hover .experts-section__overlay-desc {
  text-overflow: unset;
  line-clamp: unset;
  -webkit-line-clamp: unset;
}
.experts-section .swiper-slide img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 100%;
  max-height: 400px;
}
.experts-section .swiper-buttons {
  max-width: 80px;
  width: 100%;
}
.experts-section .swiper-button-next {
  position: static;
  width: 32px;
  height: 32px;
  margin: 0;
}
.experts-section .swiper-button-next::after {
  content: "";
}
.experts-section .swiper-button-prev {
  position: static;
  width: 32px;
  height: 32px;
  margin: 0;
}
.experts-section .swiper-button-prev::after {
  content: "";
}
.experts-section__overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 15px;
  background: rgba(0, 16, 82, 0.79);
  max-height: 107px;
  padding: 16px;
  color: #FFFFFF;
  width: calc(100% - 32px);
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}
.experts-section__overlay-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 8px;
  line-clamp: 2;
  box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 768px) {
  .experts-section .swiper {
    padding-top: 24px;
  }
  .experts-section .swiper-slide img {
    min-height: 400px;
    max-height: 100%;
  }
}
.faq-section__title {
  margin-bottom: 32px;
}
.faq-section__accordion {
  display: grid;
  gap: 16px;
}
.faq-section__card {
  border-radius: 20px;
  border: 1px solid #E5F2FF;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(58, 81, 204, 0.04);
  padding-bottom: 24px;
}
.faq-section__card-header {
  padding: 24px 72px 0 24px;
  cursor: pointer;
  position: relative;
}
.faq-section__card-body {
  padding: 16px 72px 0 24px;
}
.faq-section__question::after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%23181818' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.25s ease-in-out;
}
.faq-section__question:not(.collapsed) {
  color: #2641B2;
}
.faq-section__question:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%232641B2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .faq-section .row:nth-child(2) {
    gap: 16px;
  }
  .faq-section__card {
    padding-bottom: 16px;
  }
  .faq-section__card-header {
    padding: 16px 48px 0 16px;
  }
  .faq-section__card-body {
    padding: 16px 48px 0 16px;
  }
  .faq-section__question::after {
    top: 16px;
    right: 16px;
  }
}
.form-section {
  padding-bottom: 80px;
}
.form-section .col-12 {
  padding: 0 12px;
}
.form-section .row {
  padding: 0 3px;
}
.form-section__img {
  border-radius: 30px;
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.form-section__form {
  color: #FFFFFF;
  background: linear-gradient(155deg, #2641B2 0%, #1B42E5 100%);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 30px;
}
.form-section__input {
  border-radius: 30px;
  border: 2px solid #F2F9FF;
  background: #FFFFFF;
  color: #747474;
  padding: 7px 16px;
}
.form-section__input::placeholder {
  color: #747474;
}
.form-section__label {
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.25;
}

@media screen and (max-width: 1200px) {
  .form-section__form {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 768px) {
  .form-section__form {
    padding: 24px 16px;
  }
  .form-section__img {
    max-height: 212px;
  }
}
.overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  transition: 0.3s all;
}

.private-modal {
  opacity: 0;
  visibility: hidden;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  background-color: var(--white);
  border-radius: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  height: fit-content;
  max-height: 100%;
  overflow-y: auto;
}

.private-modal.active,
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn-modal-close {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: inherit;
  border: none;
  cursor: pointer;
  background: transparent;
}
.btn-modal-close:hover .close-icon path {
  stroke: #03256C;
}

.close-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-modal {
  width: 100%;
  max-width: 973px;
  height: min-content;
}
.banner-modal .btn-modal-close {
  top: 25px;
  right: 40px;
}
.banner-modal__wrapper {
  border-radius: 30px;
  background: #FBD437;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.banner-modal__img {
  width: 50%;
  position: relative;
}
.banner-modal__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  background-image: url(../img/banner-img-shadow.png);
}
.banner-modal__img img {
  max-width: 270px;
  object-fit: contain;
  position: center;
  position: relative;
  z-index: 1;
}
.banner-modal__form-wrapper {
  padding: 25px 30px 25px 40px;
  height: min-content;
  width: 50%;
}
.banner-modal__title {
  color: #2641B2;
}
.banner-modal__desc {
  max-width: 435px;
}
.banner-modal__input {
  border-radius: 30px;
  border: 2px solid #F2F9FF;
  background: #FFFFFF;
  padding: 7px 16px;
}
.banner-modal__input::placeholder {
  font-size: 16px;
  color: #181818;
}

.user-agreement-modal {
  width: 100%;
  max-width: 408px;
  height: min-content;
  border-radius: 30px;
}
.user-agreement-modal__wrapper {
  background: #F2F9FF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: grid;
  gap: 16px;
  text-align: center;
  border-radius: 30px;
}
.user-agreement-modal__text {
  color: #2641B2;
  font-size: 18px;
  font-weight: 500;
  line-height: 136.523%;
  max-width: 340px;
  margin: auto;
}
.user-agreement-modal__link {
  text-decoration: underline;
  display: block;
  color: #2641B2;
}
.user-agreement-modal__img {
  height: 24px;
}

.registration-modal {
  width: 100%;
  max-width: 408px;
}
.registration-modal .btn-modal-close {
  top: 26px;
  right: 24px;
}
.registration-modal__wrapper {
  padding: 24px;
  border-radius: 30px;
  background: #FFFFFF;
}
.registration-modal__form-title, .registration-modal__form-subtitle {
  color: #2641B2;
}
.registration-modal__input {
  padding: 7px 16px;
  border-radius: 30px;
  border: 2px solid #F2F9FF;
  background: #FFFFFF;
}
.registration-modal__input::placeholder {
  color: #181818;
  font-size: 16px;
}
.registration-modal__label {
  font-size: 12px;
  color: #747474;
  padding-left: 16px;
}
.registration-modal__label[for=privacy-policy] {
  padding-left: 0;
  position: relative;
  color: #181818;
}
.registration-modal__checkbox {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 50%;
  cursor: pointer;
}
.registration-modal__checkbox:checked + span .registration-modal__icon.checkbox {
  fill: #2641B2;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.registration-modal__icon.checkbox {
  display: block;
  margin: 3px 8px 0 1px;
  height: 15px;
  width: 15px;
  border-radius: 2px;
  padding: 4px 3px;
  border: 1px solid #2641B2;
  fill: none;
  flex-shrink: 0;
  z-index: 10;
  transition: fill 250ms cubic-bezier(0.4, 0, 0.2, 1) border 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.registration-modal__consent a {
  color: #2641B2;
}
.registration-modal__consent a:hover, .registration-modal__consent a:active, .registration-modal__consent a:focus {
  text-decoration: underline;
}

.success-modal {
  width: 100%;
  max-width: 408px;
  height: min-content;
  border-radius: 30px;
}
.success-modal__wrapper {
  background: #E6FFE8;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: grid;
  gap: 16px;
  text-align: center;
  border-radius: 30px;
}
.success-modal__title {
  color: #00AD11;
}
.success-modal__img {
  height: 24px;
}

@media screen and (max-width: 1200px) {
  .banner-modal {
    max-width: 758px;
  }
  .banner-modal .btn-modal-close {
    top: 24px;
    right: 24px;
  }
  .banner-modal__form-wrapper {
    padding: 22px 0 22px 24px;
  }
  .banner-modal__img img {
    max-width: 284px;
  }
}
@media screen and (max-width: 768px) {
  .banner-modal {
    max-width: 410px;
    width: calc(100% - 30px);
    border-radius: 20px;
  }
  .banner-modal__wrapper {
    border-radius: 20px;
  }
  .banner-modal__form-wrapper {
    padding: 24px;
    width: 100%;
    text-align: center;
  }
  .banner-modal__img {
    width: 100%;
    padding-top: 24px;
  }
  .banner-modal__img img {
    max-width: 123px;
  }
  .banner-modal__img::after {
    display: none;
  }
  .user-agreement-modal {
    width: calc(100% - 30px);
  }
  .user-agreement-modal.modal-dialog {
    margin: auto;
  }
  .registration-modal {
    width: calc(100% - 30px);
  }
  .success-modal {
    width: calc(100% - 30px);
  }
}
.to-top-arrow {
  position: fixed;
  bottom: 52px;
  right: 15px;
  max-width: fit-content;
  display: none;
}
.to-top-arrow__link {
  position: relative;
  z-index: 111;
  display: block;
  border-radius: 50%;
  background: #2641B2;
  padding: 10px;
  box-shadow: 0px 0px 8px 0px rgba(81, 133, 234, 0.21);
  transition: box-shadow 0.25s ease-in-out;
}
.to-top-arrow__link:hover {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
}
.to-top-arrow__icon {
  display: block;
}
.to-top-arrow__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  background: #DBE2FF;
  filter: blur(20px);
}

.footer {
  padding-top: 60px;
  background-color: #2641B2;
  color: #FFFFFF;
}
.footer__wrapper {
  gap: 24px;
  padding-bottom: 60px;
}
.footer__wrap {
  border-radius: 10px;
  background: #3852C0;
  padding: 16px;
  height: 100%;
  min-width: 29%;
}
.footer__social-networks {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__social-networks-link {
  display: block;
  width: max-content;
  height: 100%;
}
.footer__link {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease-in-out;
}
.footer__link:hover, .footer__link:focus, .footer__link:active {
  color: #FBD437;
}
.footer__link.phone {
  color: #FBD437;
  margin: 12px 0 12px 0;
  transition: text-decoration 0.25s ease-in-out;
}
.footer__link.phone:hover, .footer__link.phone:focus, .footer__link.phone:active {
  text-decoration: underline;
}
.footer__link.email, .footer__link.map-link {
  color: #F2F9FF;
  margin-bottom: 12px;
  transition: text-decoration 0.25s ease-in-out;
}
.footer__link.email:hover, .footer__link.email:focus, .footer__link.email:active, .footer__link.map-link:hover, .footer__link.map-link:focus, .footer__link.map-link:active {
  text-decoration: underline;
}
.footer__link.underline {
  text-decoration: underline;
}
.footer__icon {
  display: block;
  flex-shrink: 0;
}
.footer-bottom {
  background-color: #03256C;
  padding: 9px 0;
}
.footer-bottom__wrapper {
  gap: 24px;
}
.footer-bottom__link, .footer-bottom__text {
  font-size: 12px;
  color: #FFFFFF;
}
.footer-bottom__link {
  transition: color 0.25s ease-in-out;
}
.footer-bottom__link:hover, .footer-bottom__link:focus, .footer-bottom__link:active {
  color: #FBD437;
}

@media screen and (max-width: 768px) {
  .footer__wrapper {
    gap: 40px;
    flex-direction: column;
  }
  .footer__wrap {
    height: auto;
    width: 100%;
  }
  .footer__wrap:nth-child(2), .footer__wrap:nth-child(3) {
    background: transparent;
  }
  .footer-bottom {
    background-color: #03256C;
    padding: 9px 0;
  }
  .footer-bottom__wrapper:nth-child(2) {
    border-radius: 10px;
    background: #2641B2;
    padding: 8px 16px;
    margin-top: 12px;
  }
}
.why-cadre__section .col-md-4 {
  padding-left: 12px;
  padding-right: 12px;
}
.why-cadre__section .row {
  padding: 0 3px;
}
.why-cadre__title {
  margin-bottom: 24px;
}
.why-cadre__card {
  width: 100%;
  background: #2641B2;
  border-radius: 30px;
  padding: 42px 100px 42px 40px;
  color: #F2F9FF;
  overflow-y: hidden;
  position: relative;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.why-cadre__card:hover {
  color: #2641B2;
  background: #FBD437;
}
.why-cadre__card span {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.25;
  position: absolute;
  right: 21px;
  bottom: -21px;
  color: #FFFFFF;
}
.why-cadre__card-text {
  max-width: 258px;
  font-weight: 500;
}

.labor-legislation__title {
  margin-bottom: 24px;
  color: #2641B2;
  text-align: center;
}
.labor-legislation__cards {
  height: 600px;
  width: 100%;
  display: grid;
  column-gap: 24px;
  row-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(9, 1fr);
  grid-template-areas: "A A A A B B B B C C C C" "A A A A B B B B C C C C" "A A A A B B B B C C C C" "A A A A B B B B C C C C" "A A A A B B B B E E E E" "D D D D D D D D E E E E" "D D D D D D D D E E E E" "D D D D D D D D E E E E" "D D D D D D D D E E E E";
}
.labor-legislation__card {
  border-radius: 15px;
  padding: 24px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.labor-legislation__card:nth-child(1) {
  grid-area: A;
  background-image: url(../img/labor-legislation-img-1.png);
}
.labor-legislation__card:nth-child(2) {
  grid-area: B;
  background-image: url(../img/labor-legislation-img-2.png);
}
.labor-legislation__card:nth-child(3) {
  grid-area: C;
  background-image: url(../img/labor-legislation-img-3.png);
}
.labor-legislation__card:nth-child(4) {
  grid-area: D;
  background-image: url(../img/labor-legislation-img-4.png);
}
.labor-legislation__card:nth-child(5) {
  grid-area: E;
  background-image: url(../img/labor-legislation-img-5.png);
}
.labor-legislation__card-text {
  background-color: #FFFFFF;
  font-weight: 500;
  padding: 16px;
  border-radius: 20px;
}

.demo-access__wrapper {
  background-color: #FBD437;
  border-radius: 20px;
  padding: 32px 16px;
}
.demo-access__title {
  max-width: 352px;
}

.system-content__container {
  display: grid;
  gap: 40px;
}
.system-content__img {
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.system-content__card {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.system-content__card-title {
  color: #2641B2;
}
.system-content__card-list li {
  list-style: disc;
  margin-left: 22px;
}

@media screen and (max-width: 1200px) {
  .why-cadre__card {
    padding: 46px 24px 73px 24px;
  }
  .labor-legislation__cards {
    column-gap: 18px;
    row-gap: 18px;
  }
  .labor-legislation__card {
    border-radius: 11px;
  }
  .labor-legislation__card-text {
    font-weight: 500;
    padding: 12px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .why-cadre__section .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .why-cadre__section .row {
    padding: 0;
  }
  .why-cadre__card {
    padding: 16px 89px 16px 16px;
    min-height: 98px;
    border-radius: 15px;
  }
  .why-cadre__card-text {
    max-width: 100%;
    font-weight: 400;
  }
  .labor-legislation__title {
    margin-bottom: 24px;
    color: #2641B2;
    text-align: center;
  }
  .labor-legislation__cards {
    height: 730px;
    column-gap: 16px;
    row-gap: 16px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(11, 1fr);
    grid-template-areas: "A A A A A A B B B B B B" "A A A A A A B B B B B B" "A A A A A A B B B B B B" "A A A A A A B B B B B B" "C C C C C C C C C C C C" "C C C C C C C C C C C C" "C C C C C C C C C C C C" "D D D D D D E E E E E E" "D D D D D D E E E E E E" "D D D D D D E E E E E E" "D D D D D D E E E E E E";
  }
  .labor-legislation__card {
    padding: 8px;
  }
  .labor-legislation__card-text {
    background-color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    border-radius: 11px;
  }
  .system-content__container {
    gap: 24px;
  }
  .system-content__card {
    padding: 16px;
  }
  .system-content__card-list li {
    margin-left: 22px;
  }
}
.multiple-access-section .col-12 {
  padding: 0 12px;
}
.multiple-access-section .row {
  padding: 0 3px;
}
.multiple-access-section__wrapper {
  padding: 71px 24px;
  border-radius: 30px;
  background: #2641B2;
  position: relative;
  height: 100%;
}
.multiple-access-section__title {
  color: #FFFFFF;
  max-width: 454px;
}
.multiple-access-section__title span {
  color: #FBD437;
}
.multiple-access-section__img {
  position: absolute;
  bottom: 23px;
  right: 46px;
}
.multiple-access-section__form {
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  padding: 24px;
}
.multiple-access-section__form-title {
  color: #2641B2;
}
.multiple-access-section__input {
  padding: 7px 16px;
  border-radius: 30px;
  border: 2px solid #F2F9FF;
  background: #FFFFFF;
}
.multiple-access-section__input::placeholder {
  color: #181818;
  font-size: 16px;
}
.multiple-access-section__label {
  font-size: 12px;
  color: #747474;
  padding-left: 16px;
}

.banner-section__wrapper {
  background: #FBD437;
  border-radius: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.banner-section__form-wrapper {
  padding: 27px 40px 27px 60px;
}
.banner-section__title {
  color: #2641B2;
}
.banner-section__desc {
  max-width: 392px;
}
.banner-section__input {
  border-radius: 30px;
  border: 2px solid #F2F9FF;
  background: #FFFFFF;
  padding: 7px 16px;
}
.banner-section__input::placeholder {
  font-size: 16px;
  color: #181818;
}

.about-system-section__top {
  margin-bottom: 40px;
}
.about-system-section__wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  .banner-section__form-wrapper {
    padding: 21px 24px 21px 24px;
  }
  .multiple-access-section__wrapper {
    padding: 106px 24px 30px 24px;
  }
  .multiple-access-section__img {
    position: static;
    transform: rotate(11.651deg);
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .multiple-access-section__wrapper {
    padding: 30px 16px;
  }
  .multiple-access-section__wrapper h2 {
    font-size: 24px;
  }
  .multiple-access-section__title {
    max-width: 294px;
  }
  .multiple-access-section__img {
    position: static;
    transform: unset;
    width: 257px;
    margin: 14px 0 0 0;
  }
  .multiple-access-section__form {
    padding: 16px;
  }
  .multiple-access-section__form-title {
    font-size: 20px;
  }
  .about-system-section__top {
    margin-bottom: 24px;
  }
  .banner-section__desc {
    max-width: 100%;
  }
  .banner-section__title {
    font-size: 24px;
  }
  .banner-section img {
    transform: translateX(20px);
  }
}
.issues-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.issues-section__list li {
  display: inline-flex;
  align-items: center;
}
.issues-section__list li:before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_962_122235)'%3E%3Cpath d='M8.00065 14.6666C11.6827 14.6666 14.6673 11.6819 14.6673 7.99992C14.6673 4.31792 11.6827 1.33325 8.00065 1.33325C4.31865 1.33325 1.33398 4.31792 1.33398 7.99992C1.33398 11.6819 4.31865 14.6666 8.00065 14.6666Z' stroke='%232641B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 8.00008L7.33333 9.33341L10 6.66675' stroke='%232641B2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_962_122235'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.issues-section__title {
  color: #2641B2;
}
.issues-section__cards {
  height: 732px;
  width: 100%;
  display: grid;
  column-gap: 24px;
  row-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(9, 1fr);
  grid-template-areas: "A A A A A A B B B C C C" "A A A A A A B B B C C C" "A A A A A A B B B C C C" "D D D E E E G G G C C C" "D D D E E E G G G C C C" "D D D E E E G G G C C C" "F F F E E E H H H I I I" "F F F E E E H H H I I I" "F F F E E E H H H I I I";
}
.issues-section__card {
  border-radius: 15px;
  padding: 16px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFFFFF;
}
.issues-section__card:nth-child(1) {
  grid-area: A;
  background: #2641B2;
}
.issues-section__card:nth-child(2) {
  grid-area: B;
  background-image: url(../img/issues-section-img-2.png);
}
.issues-section__card:nth-child(3) {
  grid-area: C;
  background-image: url(../img/issues-section-img-3.png);
}
.issues-section__card:nth-child(4) {
  grid-area: D;
  background-image: url(../img/issues-section-img-4.png);
}
.issues-section__card:nth-child(5) {
  grid-area: E;
  background-image: url(../img/issues-section-img-6.png);
}
.issues-section__card:nth-child(6) {
  grid-area: F;
  background-image: url(../img/issues-section-img-5.png);
}
.issues-section__card:nth-child(7) {
  grid-area: G;
  background-image: url(../img/issues-section-img-7.png);
}
.issues-section__card:nth-child(8) {
  grid-area: H;
  background: #2641B2;
}
.issues-section__card:nth-child(9) {
  grid-area: I;
  background-image: url(../img/issues-section-img-9.png);
}

.customers-section__title {
  color: #2641B2;
}
.customers-section__cards {
  padding: 0 3px;
}
.customers-section__cards-wrap {
  padding: 0 12px;
}
.customers-section__card {
  background: #FBD437;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 0px rgba(58, 81, 204, 0.04);
  padding: 30px 54px;
  text-align: center;
  min-height: 166px;
  height: 100%;
  position: relative;
}
.customers-section__card:hover .customers-section__card-overlay {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  left: 0;
  top: 0;
}
.customers-section__card:hover .customers-section__card-title {
  color: #FFFFFF;
}
.customers-section__card-overlay {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2641B2;
  box-shadow: 0px 0px 8px 0px rgba(58, 81, 204, 0.04);
  position: absolute;
  left: calc(50% - 26px);
  top: 30px;
  transition: width 0.25s ease-in-out, border-radius 0.25s ease-in-out, left 0.25s ease-in-out;
}
.customers-section__card-icon {
  position: relative;
  margin-top: 10px;
}
.customers-section__card-title {
  margin-top: 26px;
  color: #2641B2;
  position: relative;
  transition: color 0.25s ease-in-out;
}

.access-section__wrapper {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px 0;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}
.access-section__title {
  max-width: 411px;
}

@media screen and (max-width: 1200px) {
  .issues-section__cards {
    column-gap: 16px;
    row-gap: 16px;
  }
  .issues-section__cards h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .customers-section__cards-wrap:last-child .customers-section__card-title {
    font-size: 13px;
  }
  .customers-section__card {
    padding: 16px;
  }
  .customers-section__card-overlay {
    top: 16px;
  }
  .issues-section__cards {
    height: 1235px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-template-areas: "A A A A A A A A A A A A" "A A A A A A A A A A A A" "D D D D D D E E E E E E" "D D D D D D E E E E E E" "F F F F F F E E E E E E" "F F F F F F E E E E E E" "C C C C C C H H H H H H " "C C C C C C H H H H H H" "C C C C C C I I I I I I" "C C C C C C I I I I I I" "B B B B B B G G G G G G" "B B B B B B G G G G G G";
  }
}
@media screen and (max-width: 420px) {
  .issues-section__cards {
    column-gap: 12px;
    row-gap: 12px;
  }
  .issues-section__cards h3 {
    font-size: 16px;
  }
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
  color: #181818;
}

body.overflow-hidden {
  overflow: hidden;
}

.landing .main {
  background-image: url(../img/gradient.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(84px);
}

.section {
  padding-top: 80px;
}

.container {
  max-width: 1300px;
}

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

li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

a:focus,
a:focus-visible,
a:active,
input:focus,
input:focus-visible,
button:active,
button:focus,
button:focus-visible,
button:active,
textarea:active,
textarea:focus,
textarea:focus-visible {
  outline: none;
}

h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
}