@charset "UTF-8";
/** Подключение переменных */
:root {
  --bs-font-family: "Lato", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 24px;
  --bs-font-color: #555;
  --bs-transition: .3s ease-in-out;
  --bs-radius: 10px;
  --sc-font-family: "Inter", serif;
  --primary-color: #007bff;
  --secondary-color: #002b5c;
  --white-color: #fff;
  --black-color: #000;
  --grey-color: #555;
  --dark-grey-color: #333;
  --blue-color: #141434;
  --dark-blue-color: #000020;
  --light-grey-color: #f4f4f4;
  --light-blue-color: #99c0ff;
  --green-color: #00B67A;
  --bs-gradient: linear-gradient(90deg, rgba(0,43,92,1) 0%, rgba(0,123,255,1) 100%);
}

/**
* Подключение sass function и mixins и extends стилей
*/
/** Обнуление */
* {
  box-sizing: border-box;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 375px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

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

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  vertical-align: top;
}

/**
* Общие параметры, шаблоны(заготовки) и вспомогательные классы
*/
[class*=__container] {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
}

/**
* БЕМ блоки используемые во всё проекте
*/
.btn {
  border-radius: 40px;
  background-color: var(--primary-color);
  border: none;
  font: 700 16px/20px var(--bs-font-family);
  color: var(--white-color);
  padding: 10px 30px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: var(--bs-transition);
}
@media (min-width: 768px) {
  .btn {
    padding: 20px 50px;
    min-width: 320px;
    font-size: 20px;
    line-height: 24px;
  }
}
.btn:hover {
  text-decoration: none;
  opacity: 0.8;
}
.btn_outline {
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  min-width: 1px;
  padding-left: 43px;
  padding-right: 43px;
  justify-content: center;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .btn_outline {
    min-width: 1px;
    justify-content: center;
  }
}
.btn_outline:hover {
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--white-color);
}
.btn_icon {
  position: relative;
  padding-right: 32px;
  display: inline-flex;
  align-items: center;
  min-width: 1px;
  justify-content: center;
}
@media (min-width: 768px) {
  .btn_icon {
    min-width: 1px;
    justify-content: center;
  }
}
.btn_icon svg {
  margin-left: 11px;
}
.btn_icon:hover svg path {
  fill: var(--white-color);
}
.btn_icon2:hover svg path:first-child {
  stroke: var(--white-color);
  fill: none;
}
.btn_icon2:hover svg path:last-child {
  fill: var(--white-color);
}
.btn_white-outline {
  border: 2px solid var(--white-color);
  background: none;
  min-width: 1px;
  padding-left: 43px;
  padding-right: 43px;
  color: var(--white-color);
}
.btn_white-outline:hover {
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--white-color);
}
@media (min-width: 768px) {
  .btn_white-outline {
    min-width: 1px;
    justify-content: center;
  }
}
.btn_white-icon {
  position: relative;
  padding-right: 32px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 768px) {
  .btn_white-icon {
    min-width: 1px;
    justify-content: center;
  }
}
.btn_white-icon svg {
  margin-left: 11px;
}
.btn_white-icon svg path {
  fill: var(--white-color);
}

.title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .title {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 48px;
  }
}

.main__container {
  padding-top: 100px;
}

.aspects {
  padding-bottom: 160px;
}
.aspects__title {
  text-align: center;
}
.aspects__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .aspects__list {
    flex-wrap: nowrap;
  }
}
.aspects__item {
  width: 300px;
  padding: 48px 15px 30px;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: var(--blue-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #007BFF 100%);
}
.aspects__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  background: #EBF2FF;
  border-radius: 2px;
}
.aspects__img {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 43px;
}
.aspects__heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--dark-blue-color);
}
.aspects__text {
  margin: 0 0 18px;
}

.benefits {
  padding-bottom: 160px;
}
.benefits__title {
  line-height: 62px;
  font-weight: 700;
  font-family: var(--sc-font-family);
}
.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  grid-gap: 40px;
}
@media (min-width: 768px) {
  .benefits__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 76px 48px;
  }
}
.benefits__item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--grey-color);
}
.benefits__text {
  margin: 0;
}

.investigation {
  background: var(--secondary-color);
  height: 530px;
  position: relative;
  z-index: 1;
  color: var(--white-color);
  display: flex;
  align-items: center;
}
.investigation__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.investigation__container {
  max-width: 1000px;
}
.investigation__title {
  font: 700 40px/48px var(--sc-font-family);
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .investigation__title {
    font-size: 64px;
    line-height: 68px;
  }
}
.investigation__notes {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 80px;
}
@media (min-width: 768px) {
  .investigation__notes {
    font-size: 32px;
    line-height: 38px;
  }
}
.investigation__text {
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 80px;
}

.tools {
  padding: 160px 0 80px;
}
.tools__label {
  display: block;
  font-weight: 900;
  font-size: 24px;
  line-height: 30px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.tools__title {
  font-weight: 700;
}
.tools__text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 76px;
  padding-bottom: 76px;
}
.tools__text {
  margin: 0;
  color: var(--grey-color);
}
.tools__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 2280px;
  position: relative;
  left: 50%;
  padding-bottom: 48px;
  transform: translateX(-50%);
}
.tools__item {
  width: 392px;
  border-radius: 16px;
  background: var(--white-color);
  box-shadow: 0 10px 60px rgba(10, 45, 97, 0.1);
}
.tools__text-box {
  padding: 16px 40px 47px;
}
.tools__btn-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.location-holder {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}
.location-holder::before {
  background-color: #005bc2;
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
}
.location-holder .location {
  max-width: 1920px;
  margin: 0 auto;
  background: linear-gradient(90deg, #002B5C 0%, #005BC2 100%);
  position: relative;
  padding: 40px 0 54px;
}
@media (min-width: 1024px) {
  .location-holder .location::after, .location-holder .location::before {
    content: "";
    position: absolute;
    width: 30%;
    inset: 0 auto 0 0;
    background-image: url(../images/bg-intro.svg);
    background-repeat: no-repeat;
    background-position: 0 100%;
  }
  .location-holder .location::after {
    inset: 0 0 0 auto;
    background-image: url(../images/bg-intro2.svg);
    background-position: 100% 100%;
  }
}
.location-holder .location__title {
  color: var(--white-color);
}

.location {
  padding: 0 0 160px;
}
.location__title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 48px;
  text-align: center;
  color: var(--secondary-color);
}
.location__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: center;
  gap: 48px;
}
@media (min-width: 1024px) {
  .location__list {
    grid-template-columns: repeat(3, 350px);
  }
}
@media (min-width: 1440px) {
  .location__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.location__item {
  box-shadow: 0 10px 60px 0 rgba(10, 45, 97, 0.1);
  padding: 32px 32px 64px;
  text-align: right;
  display: grid;
  width: 100%;
  align-items: start;
  grid-gap: 40px;
  background-color: var(--white-color);
}
.location__heading {
  font-size: 24px;
  line-height: 28px;
  color: var(--primary-color);
  font-weight: 900;
  margin: 0 0 8px;
}
.location__info {
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-blue-color);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
.location__address {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: var(--grey-color);
  font-style: normal;
}
.location__img {
  justify-self: center;
}

.plan {
  padding-bottom: 220px;
}
.plan__container {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
.plan__text-block {
  text-align: right;
}
.plan__label {
  font-size: 24px;
  line-height: 36px;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
  margin-bottom: 16px;
}
.plan__title {
  margin: 0 0 9px;
}
.plan__text {
  color: var(--grey-color);
  font-size: 24px;
  line-height: 30px;
  max-width: 730px;
  margin: 0 0 60px;
}
.plan__note {
  display: block;
  color: var(--primary-color);
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}
.plan picture {
  display: none;
}
@media (min-width: 768px) {
  .plan picture {
    display: block;
    max-width: 35%;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .plan picture {
    max-width: 100%;
  }
}
.plan__img {
  width: 100%;
  height: 100%;
}

.welcome {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.welcome__title {
  font-family: var(--sc-font-family);
  font-weight: 700;
  margin: 0 0 23px;
}
@media (min-width: 768px) {
  .welcome__title {
    margin-bottom: 53px;
  }
}
.welcome__visual-box {
  position: relative;
  margin: -30px 0 -20px;
  transform: scale(0.5);
}
@media (min-width: 768px) {
  .welcome__visual-box {
    transform: scale(1);
    margin: 0 0 52px;
  }
}
.welcome__visual-box::after, .welcome__visual-box::before {
  position: absolute;
  content: "";
  top: -19px;
  right: -17px;
  background-image: url(../images/arc03.svg);
  background-repeat: no-repeat;
  width: 318px;
  height: 195px;
}
.welcome__visual-box::after {
  width: 113px;
  height: 91px;
  inset: auto auto -7px 6px;
  background-image: url(../images/arc04.svg);
}
.welcome__note {
  position: absolute;
  right: -148px;
  top: 35px;
  color: var(--primary-color);
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}
.welcome__img-box {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
}

.info-box {
  padding: 0 0 65px 50px;
}
.info-box__title {
  font-weight: 700;
  font-family: var(--sc-font-family);
  text-align: center;
  margin: 0 0 15px;
}
.info-box__note {
  display: block;
  padding: 9px 0 34px;
  color: var(--primary-color);
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.info-box__note strong {
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 768px) {
  .info-box__note {
    font-size: 20px;
    line-height: 24px;
  }
}
.info-box__text {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 28px;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .info-box__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.info-box__text_marked {
  position: relative;
}
.info-box__text_marked::before {
  position: absolute;
  content: "";
  left: -26px;
  top: 5px;
  height: 48px;
  width: 2px;
  border-radius: 2px;
  background-color: var(--primary-color);
}
.info-box__img {
  max-width: 100%;
}
.info-box__holder {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-color);
}
@media (min-width: 1024px) {
  .info-box__holder {
    flex-direction: row;
    align-items: flex-start;
    font-size: 24px;
    line-height: 36px;
  }
}
.info-box__holder-text {
  margin: 0;
}
.info-box__list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 12px 50px 40px 0;
}
@media (min-width: 768px) {
  .info-box__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.info-box__item {
  color: var(--primary-color);
  padding: 22px 25px;
  border-radius: 40px;
  border: 2px solid var(--primary-color);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  min-width: 300px;
  text-align: center;
}
@media (min-width: 768px) {
  .info-box__item {
    font-size: 16px;
    line-height: 20px;
  }
}

.content-block {
  padding-bottom: 100px;
}
.content-block_alt .content-block__heading {
  text-transform: uppercase;
}
.content-block_alt .requirements__item:last-child {
  grid-column: auto;
}
.content-block__label {
  display: block;
  color: var(--primary-color);
  padding-bottom: 21px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}
.content-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.content-block__item {
  background: var(--white-color);
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .content-block__item {
    flex-direction: row;
    padding: 24px 40px 50px;
  }
}
.content-block__img-box {
  background: linear-gradient(180deg, #007BFF 0%, #0035B9 100%);
  border-radius: 8px;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.content-block__img {
  max-width: 100%;
  height: auto;
}
.content-block__heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  color: var(--primary-color);
}
.content-block__text {
  font-size: 14px;
  line-height: 18px;
  color: var(--grey-color);
  margin: 0 0 24px;
}
.content-block__requirements {
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-color);
  display: block;
  font-weight: 400;
  margin: 0 0 5px;
}
.content-block__contact {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  margin: 24px 0 0;
  color: var(--black-color);
}
@media (min-width: 768px) {
  .content-block__contact {
    font-size: 16px;
    line-height: 20px;
  }
}
.content-block__email {
  font-weight: 900;
}

.requirements {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 24px;
}
@media (min-width: 768px) {
  .requirements {
    grid-template-columns: 1fr 1fr;
  }
}
.requirements__item {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  line-height: 20px;
  color: var(--black-color);
}
.requirements__item::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background-color: var(--primary-color);
}
.requirements__item:last-child {
  grid-column: 1/2;
}

.wrap-block {
  padding-bottom: 100px;
}
.wrap-block__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 62px;
}
.wrap-block__text-block {
  position: relative;
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  border-radius: 4px;
  display: flex;
  gap: 36px;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .wrap-block__text-block {
    flex-direction: row;
    padding: 30px 60px 30px 40px;
  }
}
@media (min-width: 1024px) {
  .wrap-block__text-block {
    padding: 30px 100px;
  }
}
.wrap-block__img-box {
  border-radius: 50%;
  overflow: hidden;
  padding: 4px;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #007BFF 0%, #002B5C 100%);
}
.wrap-block__img {
  max-width: 100%;
  height: auto;
}
.wrap-block__label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0 0 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .wrap-block__label {
    text-align: left;
    font-size: 24px;
    line-height: 28px;
  }
}
.wrap-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--grey-color);
  font-size: 16px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .wrap-block__list {
    font-size: 24px;
    line-height: 28px;
  }
}
.wrap-block__item {
  position: relative;
  padding-left: 36px;
}
.wrap-block__item::before {
  position: absolute;
  top: 10px;
  left: 14px;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--grey-color);
  border-radius: 50%;
}

.wrap-holder {
  padding-bottom: 100px;
}
.wrap-holder__title {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.wrap-holder__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 48px;
}
.wrap-holder__wrap-block {
  padding: 0;
}
.wrap-holder .wrap-block__text-box {
  order: 1;
}
@media (min-width: 768px) {
  .wrap-holder .wrap-block__text-box {
    order: 0;
  }
}

.columns {
  padding-bottom: 100px;
}
.columns__title {
  text-align: center;
}
.columns__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .columns__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px 10vw;
    justify-content: center;
    align-items: flex-start;
    font-size: 24px;
    line-height: 28px;
  }
}
.columns__item {
  max-width: 406px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.columns__icon {
  margin-bottom: 16px;
}
.columns__label {
  color: var(--primary-color);
  margin-bottom: 24px;
  display: block;
}
.columns__text {
  margin: 0;
  color: var(--grey-color);
}
.columns__note {
  display: block;
  padding-top: 8px;
  color: var(--primary-color);
}

.contrast-block {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contrast-block_alt .contrast-block__box {
  justify-content: flex-start;
}
.contrast-block::before {
  background-color: #005bc2;
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
  z-index: -1;
}
.contrast-block:last-child {
  margin-bottom: 0;
}
.contrast-block:last-child picture {
  order: 0;
}
.contrast-block__container {
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 1024px) {
  .contrast-block__container {
    flex-direction: row;
  }
}
.contrast-block__box {
  background: linear-gradient(90deg, #002B5C 0%, #005BC2 100%);
  padding: 72px 47px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--white-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  order: 1;
}
@media (min-width: 768px) {
  .contrast-block__box {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .contrast-block__box {
    flex: 1 1 60%;
  }
}
.contrast-block__text-box {
  max-width: 800px;
}
.contrast-block__heading {
  font-size: 32px;
  line-height: 38px;
  font-weight: 900;
  margin: 0 0 24px;
}
.contrast-block__img {
  object-fit: cover;
  object-position: 50% 50%;
  order: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .contrast-block__img {
    order: 2;
    width: 100%;
    height: 100%;
  }
}
.contrast-block picture {
  order: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .contrast-block picture {
    order: 2;
    max-width: 40%;
  }
}
.contrast-block__text {
  margin-bottom: 48px;
}
.contrast-block__text strong {
  font-weight: 700;
}
.contrast-block__notes {
  font-size: 12px;
  line-height: 16px;
  font-style: italic;
  padding-top: 48px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contrast-block__notes {
    font-size: 16px;
    line-height: 20px;
  }
}
.contrast-block__notes strong {
  font-weight: 700;
}

.cards {
  padding-bottom: 100px;
}
.cards__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}
.cards__notes {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-color);
  max-width: 940px;
  font-style: italic;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .cards__notes {
    font-size: 20px;
    line-height: 24px;
  }
}
.cards__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 600px) {
  .cards__list {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .cards__list {
    gap: 48px;
  }
}
.cards__item {
  position: relative;
  z-index: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #007BFF 100%);
  padding: 20px;
}
@media (min-width: 600px) {
  .cards__item {
    max-width: 635px;
    width: calc(50% - 12px);
  }
}
@media (min-width: 768px) {
  .cards__item {
    padding: 30px 50px;
    width: calc(50% - 24px);
  }
}
.cards__item::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: #EBF2FF;
}
.cards__heading {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .cards__heading {
    font-size: 20px;
    line-height: 24px;
  }
}
.cards__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
@media (min-width: 768px) {
  .cards__text {
    font-size: 20px;
    line-height: 24px;
  }
}
.cards__txt {
  font-size: 16px;
  line-height: 20px;
  font-style: italic;
  text-align: center;
  color: var(--primary-color);
  padding-top: 80px;
}
@media (min-width: 768px) {
  .cards__txt {
    font-size: 24px;
    line-height: 28px;
    padding-top: 150px;
  }
}

.guideline {
  margin-bottom: 100px;
}
.guideline__title {
  text-align: center;
}
.guideline__holder {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
}
@media (min-width: 1024px) {
  .guideline__holder {
    display: flex;
  }
}
.guideline__img {
  display: none;
}
@media (min-width: 1024px) {
  .guideline__img {
    display: block;
    max-width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: 50% 50%;
  }
}
.guideline__block {
  padding: 24px;
}
.guideline__label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .guideline__label {
    font-size: 24px;
    line-height: 28px;
  }
}
.guideline__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .guideline__list {
    font-size: 24px;
    line-height: 28px;
  }
}
.guideline__item {
  padding: 0 0 20px 30px;
  position: relative;
}
.guideline__item::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 10px;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: var(--grey-color);
}
@media (min-width: 768px) {
  .guideline__item {
    padding-bottom: 28px;
  }
}
.guideline__heading {
  display: block;
  font-weight: 700;
}
.guideline__text {
  margin: 0;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 100px;
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
}
@media (min-width: 768px) {
  .options {
    flex-direction: row;
    align-items: stretch;
    font-size: 24px;
    line-height: 28px;
  }
}
.options__text-box {
  padding: 60px 60px;
}
.options__label {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .options__label {
    font-size: 32px;
    line-height: 36px;
  }
}
.options__text {
  margin: 0;
}

.intro {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}
.intro::before {
  background-color: #005bc2;
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
}
.intro__block {
  max-width: 1920px;
  margin: 0 auto;
  background: linear-gradient(90deg, #002B5C 0%, #005BC2 100%);
  position: relative;
  padding: 43px 0;
}
@media (min-width: 768px) {
  .intro__block {
    padding: 83px 0;
  }
}
@media (min-width: 1024px) {
  .intro__block::after, .intro__block::before {
    content: "";
    position: absolute;
    width: 30%;
    inset: 0 auto 0 0;
    background-image: url(../images/bg-intro.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  .intro__block::after {
    inset: 0 0 0 auto;
    background-image: url(../images/bg-intro2.svg);
    background-position: 100% 0;
  }
}
.intro__container {
  max-width: 1110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro__title {
  color: var(--white-color);
}
.intro__text {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .intro__text {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 64px;
  }
}

.connection {
  background: var(--secondary-color);
  position: relative;
  color: var(--white-color);
}
.connection::before {
  background-color: #005bc2;
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
}
.connection__block {
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
  background: linear-gradient(90deg, #002B5C 0%, #005BC2 100%);
}
@media (min-width: 768px) {
  .connection__container {
    display: flex;
    gap: 32px;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .connection__container {
    gap: 62px;
  }
}
.connection picture {
  display: none;
}
@media (min-width: 768px) {
  .connection picture {
    display: block;
    max-width: 40%;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .connection picture {
    max-width: 576px;
  }
}
.connection__img {
  width: 100%;
  height: 100%;
}
.connection__form {
  padding: 44px 0;
}
.connection__title {
  margin-bottom: 20px;
  color: var(--white-color);
}
.connection__text {
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .connection__text {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 60px;
  }
}
.connection__message {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background-color: var(--white-color);
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  padding: 20px 0 20px 15px;
  display: block;
  margin-bottom: 48px;
  min-height: 267px;
  height: 267px;
}
.connection__btn-box {
  display: flex;
  justify-content: flex-end;
}

.contact-block {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .contact-block {
    padding-bottom: 120px;
  }
}
.contact-block__label {
  font-size: 16px;
  line-height: 20px;
  font-style: italic;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  margin: 0 0 60px;
}
.contact-block__label::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  background-color: #CCCCD2;
  width: 110px;
  height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .contact-block__label {
    margin-bottom: 100px;
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-block__holder {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .contact-block__holder {
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
  }
}
.contact-block__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 123, 255, 0) 0%, #007BFF 100%);
  padding: 40px 30px;
  text-align: center;
  max-width: 500px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-block__box {
    min-height: 366px;
    width: calc(50% - 20px);
    max-width: 573px;
  }
}
@media (min-width: 1280px) {
  .contact-block__box {
    padding: 52px 75px;
  }
}
.contact-block__box::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: #EBF2FF;
}
.contact-block__title {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.contact-block__text {
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .contact-block__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-block__btn {
  min-width: auto;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .contact-block__btn {
    font-size: 20px;
    line-height: 24px;
  }
}
.contact-block__address {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-style: normal;
  text-align: left;
  color: var(--dark-blue-color);
}
@media (min-width: 1024px) {
  .contact-block__address {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-block__address-line {
  display: block;
}
.contact-block__address-line:not(:last-child) {
  margin-bottom: 20px;
}
.contact-block__address-line svg {
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.contact-block__address-line strong {
  font-weight: 700;
}
.contact-block__num {
  display: block;
  padding-left: 34px;
}
.contact-block__schedule {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: var(--grey-color);
  text-align: left;
  padding-left: 34px;
}
@media (min-width: 1024px) {
  .contact-block__schedule {
    font-size: 16px;
    line-height: 20px;
  }
}

.client-review {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .client-review {
    padding-bottom: 160px;
  }
}
.client-review__title {
  text-align: center;
}
.client-review__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 48px;
  margin-bottom: 48px;
}
.client-review__item {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  display: flex;
  gap: 40px;
  padding: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .client-review__item {
    padding-right: 56px;
    padding-left: 56px;
  }
}
@media (min-width: 1024px) {
  .client-review__item {
    gap: 70px;
  }
}
.client-review__img {
  border-radius: 50%;
  width: 91px;
  height: 96px;
}
.client-review__author {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0 0 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .client-review__author {
    font-size: 24px;
    line-height: 28px;
  }
}
.client-review__country {
  font-weight: 300;
  font-style: italic;
}
.client-review__text {
  color: var(--grey-color);
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .client-review__text {
    font-size: 16px;
    line-height: 20px;
  }
}

.btn-more {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  background: var(--white-color);
  border: none;
  width: 100%;
  padding: 16px 30px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  color: var(--primary-color);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: var(--bs-transition);
}
.btn-more:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.btn-more:hover::after {
  border-color: var(--white-color);
}
@media (min-width: 768px) {
  .btn-more {
    font-size: 16px;
    line-height: 20px;
  }
}
.btn-more::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -8px;
  margin-left: 12px;
  width: 8px;
  height: 8px;
  border: solid var(--primary-color);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  transition: var(--bs-transition);
}

.visual {
  background: var(--secondary-color);
  overflow: hidden;
  position: relative;
  color: var(--white-color);
  z-index: 1;
}
.visual_alt {
  margin-bottom: 100px;
}
.visual::before {
  background-color: #005bc2;
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
  z-index: -1;
}
.visual__holder {
  max-width: 1920px;
  margin: 0 auto;
  background: linear-gradient(90deg, #002B5C 0%, #005BC2 100%);
}
@media (min-width: 768px) {
  .visual__holder {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .visual__holder {
    gap: 48px;
  }
}
.visual__img {
  max-width: 100%;
  object-fit: cover;
  align-self: stretch;
}
@media (min-width: 768px) {
  .visual__img {
    width: 280px;
  }
}
@media (min-width: 1024px) {
  .visual__img {
    width: 55%;
  }
}
.visual__text-box {
  padding: 40px;
  max-width: 550px;
}
@media (min-width: 768px) {
  .visual__text-box {
    padding-left: 0;
  }
}
.visual__title {
  margin-bottom: 24px;
  color: var(--white-color);
  font-family: var(--sc-font-family);
  font-weight: 700;
}
.visual__note {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  margin: 0;
}
@media (min-width: 768px) {
  .visual__note {
    font-size: 24px;
    line-height: 28px;
  }
}
.visual__heading {
  font-size: 26px;
  line-height: 32px;
  font-weight: 900;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .visual__heading {
    font-size: 32px;
    line-height: 38px;
  }
}

.success-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 48px;
  padding-bottom: 100px;
}
.success-list__item {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  border-radius: 4px;
  padding: 27px 56px 27px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  color: var(--grey-color);
  line-height: 18px;
}
@media (min-width: 768px) {
  .success-list__item {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .success-list__item {
    flex-direction: row;
    gap: 48px;
  }
}
.success-list__img {
  border-radius: 50%;
}
.success-list__heading {
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .success-list__heading {
    font-size: 24px;
    line-height: 28px;
  }
}
.success-list__info {
  font-style: italic;
  font-weight: 400;
}

.main-news {
  padding-bottom: 65px;
}
.main-news__title {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .main-news__title {
    margin-bottom: 90px;
  }
}
.main-news__holder {
  display: flex;
  gap: 32px;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .main-news__holder {
    gap: 64px;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .main-news__holder {
    flex-direction: row;
    align-items: flex-start;
  }
}
.main-news__img {
  max-width: 100%;
}
.main-news__text {
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .main-news__text {
    margin-bottom: 28px;
  }
}

.news {
  padding-bottom: 100px;
}
.news__heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--sc-font-family);
  color: var(--secondary-color);
  margin: 0 0 48px;
}
@media (min-width: 768px) {
  .news__heading {
    font-size: 24px;
    line-height: 28px;
  }
}
.news__item {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  background-color: var(--white-color);
  padding: 32px 36px;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--sc-font-family);
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  color: var(--grey-color);
}
.news__item:not(:last-child) {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .news__item {
    padding-top: 54px;
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .news__item {
    flex-direction: row;
    align-items: flex-start;
  }
}
.news__img {
  border-radius: 4px;
  max-width: 100%;
  object-fit: cover;
}
.news__headline {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  font-family: var(--sc-font-family);
  color: var(--secondary-color);
  margin: 0 0 24px;
}
.news__headline a {
  color: var(--secondary-color);
}
@media (min-width: 768px) {
  .news__headline {
    font-size: 24px;
    line-height: 28px;
  }
}
.news__text {
  margin: 0 0 10px;
}
.news__link-box {
  display: flex;
  justify-content: flex-end;
}
.news__more {
  font-size: 12px;
  line-height: 16px;
  color: #9999A6;
}
@media (min-width: 768px) {
  .news__more {
    font-size: 16px;
    line-height: 20px;
  }
}

.maps {
  padding: 0 0 120px;
}
@media (min-width: 768px) {
  .maps {
    padding: 0 0 150px;
  }
}
.maps__holder:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .maps__holder:not(:last-child) {
    margin-bottom: 80px;
  }
}
.maps__heading {
  font-size: 26px;
  line-height: 32px;
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .maps__heading {
    font-size: 32px;
    line-height: 38px;
  }
}
.maps__location {
  display: block;
  color: var(--grey-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .maps__location {
    font-size: 24px;
    line-height: 28px;
  }
}
.maps__box {
  height: 320px;
  position: relative;
}
@media (min-width: 768px) {
  .maps__box {
    height: 415px;
  }
}
.maps__box iframe {
  width: 100%;
  height: 100%;
}

.info-block {
  padding: 0 0 100px;
}
.info-block__title {
  text-align: center;
  margin-bottom: 24px;
}
.info-block__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.info-block__name {
  font-size: 12px;
  display: block;
  margin: 0 0 8px;
  line-height: 16px;
  color: var(--dark-blue-color);
}
@media (min-width: 768px) {
  .info-block__name {
    font-size: 16px;
    line-height: 20px;
  }
}
.info-block__date {
  font-size: 9px;
  line-height: 16px;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .info-block__date {
    font-size: 12px;
    line-height: 16px;
  }
}
.info-block__holder {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: var(--grey-color);
  font-size: 16px;
  line-height: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .info-block__holder {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .info-block__holder {
    gap: 48px;
    align-items: flex-start;
    flex-direction: row;
  }
}
.info-block__text-box {
  order: 1;
}
@media (min-width: 1024px) {
  .info-block__text-box {
    order: 0;
    align-self: stretch;
    display: grid;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .info-block__img {
    max-width: 400px;
  }
}
@media (min-width: 1280px) {
  .info-block__img {
    max-width: 100%;
  }
}
.info-block__heading {
  color: var(--primary-color);
  font-size: 26px;
  line-height: 32px;
  font-weight: 900;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .info-block__heading {
    font-size: 32px;
    line-height: 38px;
  }
}
.info-block__text {
  margin: 0;
}

.view-box {
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: var(--grey-color);
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .view-box {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1024px) {
  .view-box {
    gap: 80px;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .view-box {
    gap: 140px;
  }
}
.view-box__heading {
  color: var(--secondary-color);
  font-size: 28px;
  line-height: 34px;
  font-weight: 900;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .view-box__heading {
    font-size: 36px;
    line-height: 40px;
  }
}
.view-box__notes {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 900;
  display: block;
  margin: 0 0 36px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .view-box__notes {
    font-size: 16px;
    line-height: 20px;
  }
}
.view-box__text {
  margin: 0;
}

.goal-box {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 20px;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .goal-box {
    padding: 48px;
    font-size: 24px;
    line-height: 28px;
  }
}
.goal-box__heading {
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  color: var(--primary-color);
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .goal-box__heading {
    font-size: 24px;
    line-height: 28px;
  }
}
.goal-box__text {
  margin: 0 0 16px;
}
.goal-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .goal-box__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.goal-box__item {
  color: var(--primary-color);
  padding: 22px 24px;
  border-radius: 40px;
  border: 2px solid var(--primary-color);
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .goal-box__item {
    font-size: 16px;
    line-height: 20px;
  }
}

.team {
  padding: 0 0 100px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .team {
    font-size: 24px;
    line-height: 28px;
    gap: 80px;
  }
}
.team__box {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  background-color: var(--white-color);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .team__box {
    padding: 50px 48px;
  }
}
@media (min-width: 1024px) {
  .team__box {
    flex-direction: row;
    gap: 66px;
  }
}
.team__img-box {
  border-radius: 50%;
  overflow: hidden;
  padding: 0px;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #007BFF 0%, #002B5C 100%);
}
.team__img {
  max-width: 100%;
  height: auto;
}
.team__person {
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-color);
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .team__person {
    font-size: 24px;
    line-height: 28px;
  }
}
.team__position {
  font-weight: 400;
  font-style: italic;
}

.contact-us {
  padding-bottom: 100px;
  font-size: 16px;
  line-height: 20px;
  color: var(--grey-color);
}
@media (min-width: 768px) {
  .contact-us {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact-us__title {
  margin-bottom: 24px;
}
.contact-us__text {
  margin: 0 0 48px;
}
.contact-us__holder {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-us__text-holder {
  max-width: 400px;
  margin: 0 auto;
}
.contact-us__box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #007BFF 100%);
  box-shadow: 0px 10px 60px 0px rgba(10, 45, 97, 0.1);
  border-radius: 4px;
  padding: 20px;
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .contact-us__box {
    padding: 32px 40px;
    display: flex;
    gap: 40px;
    justify-content: space-evenly;
    align-items: center;
  }
}
.contact-us__box::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: #EBF2FF;
}
.contact-us__box .contact-us__title {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.contact-us__img {
  display: none;
}
@media (min-width: 768px) {
  .contact-us__img {
    display: block;
    box-shadow: 0px 4px 24px 0px rgba(0, 123, 255, 0.24);
    border-radius: 4px;
    max-width: 100%;
    align-self: flex-end;
  }
}
.contact-us__img2 {
  border-radius: 50%;
}
.contact-us__heading {
  color: var(--primary-color);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .contact-us__heading {
    font-size: 32px;
    line-height: 36px;
  }
}
.contact-us__text {
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .contact-us__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-us__btn {
  min-width: auto;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .contact-us__btn {
    font-size: 20px;
    line-height: 24px;
  }
}
.contact-us__address {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-style: normal;
  text-align: left;
  color: var(--dark-blue-color);
}
@media (min-width: 1024px) {
  .contact-us__address {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-us__address-line {
  display: block;
}
.contact-us__address-line:not(:last-child) {
  margin-bottom: 20px;
}
.contact-us__address-line svg {
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}
.contact-us__address-line strong {
  font-weight: 700;
}
.contact-us__num {
  display: block;
  padding-left: 34px;
}
.contact-us__wrap {
  text-align: center;
}
.contact-us__schedule {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: var(--grey-color);
  text-align: left;
  padding-left: 34px;
}
@media (min-width: 1024px) {
  .contact-us__schedule {
    font-size: 16px;
    line-height: 20px;
  }
}

/**
* Подключение стилей отдельных блоков и секций
*/
.header {
  width: 100%;
  position: sticky;
  background-color: var(--secondary-color);
  z-index: 2;
  padding: 7px 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1280px) {
  .nav {
    padding-top: 6px;
    order: 1;
  }
}
.nav__btn {
  display: block;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 5;
  background: none;
  padding: 0;
  border: none;
}
.nav__btn span, .nav__btn::before, .nav__btn::after {
  content: "";
  transition: all 300ms ease 0ms;
  right: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white-color);
}
.nav__btn::before {
  top: 0;
}
.nav__btn::after {
  bottom: 0;
}
.nav__btn span {
  top: calc(50% - 1px);
}
.active .nav__btn span {
  width: 0;
}
.active .nav__btn::before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.active .nav__btn::after {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}
@media (min-width: 1280px) {
  .nav__btn {
    display: none;
  }
}
.nav__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.active .nav__list {
  display: grid;
  grid-gap: 10px;
  position: absolute;
  min-width: 300px;
  top: 100%;
  right: 0;
  background: var(--secondary-color);
  padding: 20px;
}
@media (min-width: 1280px) {
  .nav__list {
    display: flex;
    position: static;
    gap: 24px;
  }
}
.nav__link {
  color: var(--white-color);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--white-color);
  transition: width var(--bs-transition);
}
.nav__link:hover {
  text-decoration: none;
}
.nav__link:hover::after {
  width: 100%;
}
@media (min-width: 1280px) {
  .nav__has-drop .nav__link {
    padding-right: 21px;
    position: relative;
  }
  .nav__has-drop .nav__link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    background-image: url(../images/arrow01.svg);
    width: 12px;
    height: 6px;
  }
}
@media (min-width: 1280px) {
  .nav__has-drop {
    position: relative;
    padding-bottom: 6px;
  }
  .nav__has-drop:hover .nav__drop {
    display: block;
  }
}
.nav__drop {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  padding: 16px 0;
  left: -10px;
  display: none;
  top: 100%;
  min-width: 175px;
  background-color: var(--white-color);
  border-radius: 4px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  box-shadow: 0 2px 5px 1px rgba(0, 43, 92, 0.4);
}
.nav__drop-link {
  display: block;
  padding: 6px 16px 6px 24px;
  color: var(--blue-color);
}
.nav__drop-link:hover {
  background-color: rgba(0, 43, 92, 0.16);
  text-decoration: none;
  font-weight: 400;
}
.nav__drop-link.active {
  font-weight: 700;
}

.login-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-grow: 1;
  justify-content: flex-end;
  margin-right: 40px;
}
@media (min-width: 1280px) {
  .login-menu {
    order: 2;
    flex-grow: 0;
  }
}
.login-menu__btn {
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
}
.login-menu__sign-in {
  border: none;
  color: var(--white-color);
  transition: var(--bs-transition);
}
.login-menu__sign-in:hover {
  color: var(--light-blue-color);
}
.login-menu__login {
  border: 1px solid var(--light-blue-color);
  border-radius: 30px;
  padding: 7px 25px;
  color: var(--light-blue-color);
}
.login-menu__login:hover {
  border-color: var(--white-color);
  color: var(--white-color);
}

.main-gallery {
  background-color: var(--secondary-color);
  position: relative;
}
.main-gallery__slide {
  position: relative;
}
.main-gallery__slide_left .main-gallery__container {
  justify-content: flex-start;
  text-align: left;
}
.main-gallery__img-box {
  position: relative;
  display: flex;
  justify-content: center;
}
.main-gallery__img-box img {
  object-fit: cover;
  object-position: 50% 50%;
  height: 75vw;
}
@media (min-width: 600px) {
  .main-gallery__img-box img {
    height: 52vw;
  }
}
@media (min-width: 1024px) {
  .main-gallery__img-box img {
    height: 52vw;
  }
}
@media (min-width: 1280px) {
  .main-gallery__img-box img {
    height: 46.5vw;
    min-height: 730px;
    max-height: 892px;
  }
}
.main-gallery__holder {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.main-gallery__container {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.main-gallery__text-block {
  padding: 30px 20px 0 0;
  max-width: 904px;
  color: var(--white-color);
}
@media (min-width: 768px) {
  .main-gallery__text-block {
    padding: 40px 40px 0;
  }
}
@media (min-width: 1440px) {
  .main-gallery__text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.main-gallery__title {
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .main-gallery__title {
    font-size: 44px;
    line-height: 54px;
  }
}
@media (min-width: 1280px) {
  .main-gallery__title {
    font-size: 64px;
    line-height: 84px;
  }
}
.main-gallery__text {
  font: italic 200 16px/24px var(--sc-font-family);
  margin: 0 0 24px;
}
@media (min-width: 1024px) {
  .main-gallery__text {
    font-size: 24px;
    line-height: 30px;
  }
}

.partners {
  display: none;
}
@media (min-width: 1024px) {
  .partners {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 82px;
    width: 100%;
  }
}
.partners__title {
  color: var(--white-color);
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  padding-left: 40px;
}
@media (min-width: 1440px) {
  .partners__title {
    padding-left: 0;
  }
}
.partners__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 80%;
}
@media (min-width: 1024px) {
  .partners__list {
    flex-wrap: nowrap;
    opacity: 60%;
  }
}
@media (min-width: 1440px) {
  .partners__list {
    gap: 56px;
  }
}
.partners__img {
  width: auto;
  height: 40px;
}
@media (min-width: 1440px) {
  .partners__img {
    height: 70px;
  }
}

.slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
}
.slick-dots button {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.slick-active button {
  background-color: rgba(255, 255, 255, 0.8);
}

.numbers {
  padding: 100px 0;
}
.numbers_alt {
  padding-top: 0;
}
@media (min-width: 768px) {
  .numbers_alt {
    padding-top: 50px;
  }
}
.numbers_alt .numbers__title {
  margin-bottom: 65px;
}
@media (min-width: 768px) {
  .numbers_alt .numbers__title {
    margin-bottom: 125px;
  }
}
.numbers_alt .numbers__list {
  justify-content: center;
}
.numbers__title {
  text-align: center;
  margin: 0 0 16px;
}
.numbers__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 48px;
}
.numbers__tab {
  color: var(--grey-color);
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 8px;
  display: inline-block;
  vertical-align: top;
  transition: var(--bs-transition);
  position: relative;
}
.numbers__tab::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  left: -8px;
  height: 2px;
  border-radius: 1px;
  background-color: var(--primary-color);
  transition: var(--bs-transition);
}
.numbers__tab:hover {
  color: var(--primary-color);
  text-decoration: none;
}
.numbers__tab:hover::after {
  width: calc(100% + 16px);
}
.numbers__tab.active {
  color: var(--primary-color);
  font-weight: 700;
}
.numbers__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media (min-width: 768px) {
  .numbers__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.numbers__item {
  border-radius: 50%;
  width: 256px;
  height: 256px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  align-items: center;
  gap: 4px;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 14.49%, rgba(255, 255, 255, 0) 50.15%, rgba(0, 123, 255, 0.2) 84.41%);
  box-shadow: 0 0 16px 0 var(--primary-color);
  color: var(--primary-color);
  position: relative;
}
.numbers__item::before, .numbers__item::after {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 300px;
  height: 300px;
  background-image: url(../images/arc01.svg);
  background-repeat: no-repeat;
}
.numbers__item::after {
  left: -24px;
  top: -36px;
  background-image: url(../images/arc02.svg);
  background-position: 100% 100%;
}
.numbers__info {
  font-size: 16px;
  line-height: 24px;
}
.numbers__value {
  font-size: 48px;
  line-height: 58px;
  font-weight: 900;
  padding-bottom: 6px;
}
.numbers__rate {
  font-size: 12px;
  line-height: 18px;
}
.numbers__quantity {
  color: var(--green-color);
}
.numbers__text {
  font-size: 16px;
  line-height: 20px;
  color: var(--grey-color);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 92px 20px 0;
}
@media (min-width: 768px) {
  .numbers__text {
    font-size: 24px;
    line-height: 36px;
  }
}
.numbers__text + .numbers__text {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .numbers__text + .numbers__text {
    padding-top: 36px;
  }
}

@media (min-width: 1024px) {
  .contact__container {
    display: flex;
  }
}
.contact__form {
  background-color: var(--light-blue-color);
  padding: 48px;
}
@media (min-width: 1024px) {
  .contact__form {
    width: 503px;
  }
}
.contact__title {
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--dark-blue-color);
}
.contact__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--dark-blue-color);
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 24px;
    line-height: 28px;
  }
}
.contact__input {
  border: 2px solid var(--primary-color);
  border-radius: 2px;
  background: var(--white-color);
  color: var(--dark-blue-color);
  font: 300 20px/24px var(--bs-font-family);
  padding: 20px 15px;
  display: block;
  margin: 0 0 24px;
  width: 100%;
}
.contact__input::placeholder {
  opacity: 1;
  color: var(--grey-color);
}
.contact__input:focus {
  outline: none;
}
.contact__message {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 20px 0 0 15px;
  border: 2px solid var(--primary-color);
  border-radius: 2px;
  background: var(--white-color);
  color: var(--dark-blue-color);
  font: 300 20px/24px var(--bs-font-family);
  display: block;
  margin: 0 0 24px;
}
.contact__message::placeholder {
  opacity: 1;
  color: var(--grey-color);
}
.contact__message:focus {
  outline: none;
}
.contact__btn {
  min-width: 100px;
  padding-left: 37px;
  padding-right: 37px;
}

.survey {
  background-color: var(--secondary-color);
  background-image: url(../images/img16.png);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  color: var(--white-color);
  padding: 48px 48px 120px 38px;
  position: relative;
}
.survey__title {
  color: var(--white-color);
  margin: 0 0 24px;
}
.survey__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .survey__text {
    font-size: 20px;
    line-height: 30px;
  }
}
.survey__block {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 24px;
}
.survey__content {
  border: none;
}
.survey__heading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 900;
  margin: 0 0 24px;
}
@media (min-width: 768px) {
  .survey__heading {
    font-size: 24px;
    line-height: 28px;
  }
}
.survey__line {
  padding-bottom: 16px;
}
.survey__radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.survey__radio:checked + .survey__radio-label::after {
  opacity: 1;
}
.survey__radio-label {
  font-size: 16px;
  line-height: 24px;
  display: block;
  position: relative;
  padding-left: 56px;
}
@media (min-width: 768px) {
  .survey__radio-label {
    font-size: 24px;
    line-height: 32px;
  }
}
.survey__radio-label::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 32px;
  height: 32px;
  background-color: var(--white-color);
  border-radius: 50%;
}
.survey__radio-label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: var(--bs-transition);
}
.survey__pages {
  display: flex;
  gap: 24px;
  position: absolute;
  bottom: 29px;
  align-items: center;
}
.survey__input {
  display: block;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 8px;
  margin: 0 0 24px;
  padding: 22px 16px;
  font-size: 12px;
  line-height: 16px;
  border: none;
  color: var(--dark-blue-color);
}
@media (min-width: 768px) {
  .survey__input {
    font-size: 16px;
    line-height: 20px;
  }
}
.survey__input::placeholder {
  opacity: 0.4;
  color: var(--dark-blue-color);
}
.survey__select-box {
  margin: 0 0 48px;
}
.survey__select-holder {
  display: flex;
  gap: 18px;
  width: 100%;
  height: 64px;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 8px 15px;
  color: var(--dark-blue-color);
}
.survey__select {
  position: relative;
  width: 74px;
  border-right: 2px solid var(--primary-color);
}
.survey__select-caption {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 7px;
}
.survey__select-caption.active::after {
  transform: rotate(135deg);
}
.survey__select-caption::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 14px;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border: solid var(--primary-color);
  border-width: 0 0 2px 2px;
}
.survey__select-list {
  position: absolute;
  top: 100%;
  border-radius: 8px;
  left: -15px;
  visibility: hidden;
  opacity: 0;
  padding: 7px 25px 15px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 20px 0px rgba(10, 45, 97, 0.1);
}
.survey__input-number {
  border: none;
  padding: 0;
  background: none;
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .survey__input-number {
    font-size: 16px;
    line-height: 20px;
  }
}
.survey__final-tab {
  max-width: 664px;
}
.survey__name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}

.iti--inline-dropdown {
  width: 100% !important;
}

.survey__final-tab {
  color: black !important;
}

.popup {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #007BFF 100%);
  padding: 30px 40px;
  z-index: 10;
  max-width: 574px;
  border-radius: 16px;
  display: none;
}
@media (min-width: 768px) {
  .popup {
    padding: 80px 40px 48px;
  }
}
.popup::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: #EBF2FF;
  border-radius: 16px;
}
.popup__title {
  color: var(--primary-color);
  text-align: center;
}

.contact-form {
  width: 320px;
  margin: 0 auto;
}
.contact-form__input {
  display: block;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 8px;
  margin: 0 0 24px;
  padding: 22px 16px;
  font-size: 12px;
  line-height: 16px;
  border: none;
  color: var(--dark-blue-color);
}
@media (min-width: 768px) {
  .contact-form__input {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-form__input::placeholder {
  opacity: 0.4;
  color: var(--dark-blue-color);
}
.contact-form__select-box {
  margin: 0 0 48px;
}
.contact-form__select-holder {
  display: flex;
  gap: 18px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 8px 15px;
  height: 64px;
  color: var(--dark-blue-color);
}
.contact-form__select {
  position: relative;
  width: 74px;
  border-right: 2px solid var(--primary-color);
}
.contact-form__select-caption {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-top: 7px;
}
.contact-form__select-caption.active::after {
  transform: rotate(135deg);
}
.contact-form__select-caption::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 14px;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border: solid var(--primary-color);
  border-width: 0 0 2px 2px;
}
.contact-form__select-list {
  position: absolute;
  top: 100%;
  border-radius: 8px;
  left: -15px;
  visibility: hidden;
  opacity: 0;
  padding: 7px 25px 15px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 20px 0px rgba(10, 45, 97, 0.1);
}
.contact-form__input-number {
  border: none;
  padding: 0;
  background: none;
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .contact-form__input-number {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-form__label {
  color: #32325A;
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
  display: block;
  margin-bottom: 3px;
}
.contact-form__btn {
  text-transform: uppercase;
}

.fancybox__container {
  max-width: 100%;
}
.fancybox__container .fancybox__backdrop {
  opacity: 0.5;
  background-color: var(--dark-blue-color);
}
.fancybox__container .popup .is-close-btn {
  top: 8px;
  right: 8px;
}
.fancybox__container .popup .is-close-btn svg {
  stroke: var(--dark-blue-color);
}

.faq {
  box-shadow: 0px 4px 60px 0px rgba(10, 45, 97, 0.1);
  padding: 24px 24px 32px;
  background: var(--white-color);
  margin-bottom: 100px;
}
.faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq__item {
  border-bottom: 2px solid #E6E6E9;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.faq__heading {
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-color);
  margin: 0;
  font-weight: 900;
}
@media (min-width: 768px) {
  .faq__heading {
    font-size: 24px;
    line-height: 28px;
  }
}
.faq__heading.active-heading {
  margin: 0 0 42px;
}
.faq__heading-opener {
  background: none;
  padding: 0 50px 0 0;
  position: relative;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 900;
  display: block;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .faq__heading-opener {
    font-size: 24px;
    line-height: 28px;
  }
}
.faq__heading-opener.active::after {
  transform: rotate(135deg);
}
.faq__heading-opener::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border: solid var(--primary-color);
  border-width: 0 0 2px 2px;
}
.faq__opener {
  border: none;
  background: none;
  padding: 3px 40px 3px 0;
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-align: left;
  display: block;
  width: 100%;
  color: var(--dark-blue-color);
}
.faq__opener.active::after {
  transform: rotate(135deg);
}
.faq__opener::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  border: solid var(--dark-blue-color);
  border-width: 0 0 1px 1px;
}
@media (min-width: 768px) {
  .faq__opener {
    font-size: 16px;
    line-height: 20px;
  }
}
.faq__text {
  margin: 0;
}
.faq__content {
  padding-top: 15px;
  display: none;
}

.faq-block {
  margin-bottom: 76px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.faq-block .faq {
  margin: 0;
}
.faq-block__title {
  text-align: center;
  margin-bottom: 24px;
}

.num-block {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 160px;
}
.num-block picture {
  max-width: 30%;
  height: auto;
  display: none;
  align-self: stretch;
}
@media (min-width: 1024px) {
  .num-block picture {
    max-width: 100%;
    display: block;
  }
}
.num-block__img {
  width: auto;
  height: 100%;
}
.num-block__label {
  font-size: 24px;
  line-height: 36px;
  font-weight: 900;
  color: var(--primary-color);
  display: block;
  margin-bottom: 16px;
}
.num-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: item;
}
.num-block__item {
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-color);
  position: relative;
  padding-left: 76px;
}
@media (min-width: 768px) {
  .num-block__item {
    font-size: 20px;
    line-height: 30px;
  }
}
.num-block__item:not(:last-child) {
  margin-bottom: 40px;
}
.num-block__item::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 96px;
  line-height: 96px;
  font-weight: 900;
  color: #EBF5FF;
}
.num-block__heading {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
}
.num-block__text {
  margin: 0;
}
.num-block__notes {
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-color);
  margin: 0 0 40px;
}
@media (min-width: 768px) {
  .num-block__notes {
    font-size: 20px;
    line-height: 30px;
  }
}

.footer {
  background: var(--blue-color);
  padding: 50px 0 0;
  color: var(--white-color);
}
.footer__contact {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding-bottom: 100px;
  flex-wrap: wrap;
}
@media (min-width: 1280px) {
  .footer__contact {
    flex-wrap: nowrap;
  }
}
.footer__label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}
.footer__link-box {
  padding-bottom: 15px;
}
.footer__address {
  font-size: 16px;
  line-height: 20px;
  font-style: normal;
  display: block;
  width: 290px;
}
@media (min-width: 768px) {
  .footer__contact-wrap {
    display: flex;
    gap: 56px;
  }
}
.footer__contact-info {
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.footer__contact-info1 {
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .footer__contact-info1 {
    flex-shrink: 0;
    padding-bottom: 0;
  }
}
.footer__title {
  color: var(--primary-color);
  font-size: 30px;
  line-height: 34px;
  font-weight: 900;
  margin: 0 0 10px;
}
.footer__holder {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__holder {
    flex-direction: row;
  }
}
.footer__list-block {
  flex-grow: 1;
  gap: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 1280px) {
  .footer__list-block {
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 10px;
}
.footer__link {
  color: var(--white-color);
  font-size: 16px;
  line-height: 20px;
}
.footer__copy {
  background-color: var(--dark-blue-color);
  padding: 15px 0;
  text-align: center;
  color: #9999A6;
}
.footer__copy-text {
  font-size: 12px;
  line-height: 24px;
  margin: 0;
}
.footer__logo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding-bottom: 130px;
}
.footer__logo-icon {
  max-width: 100%;
  height: auto;
}
.footer__text-block {
  padding-bottom: 35px;
}
.footer__text {
  margin: 0 0 20px;
  color: #ACACAC;
  font-size: 13px;
  line-height: 16px;
}

.num-link {
  color: var(--white-color);
  font-size: 16px;
  line-height: 20px;
}
/*# sourceMappingURL=main.min.css.map */
