@charset "UTF-8";
:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */ /* stylelint-disable */
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/inter/inter-v12-latin_cyrillic-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/inter/inter-v12-latin_cyrillic-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/inter/inter-v12-latin_cyrillic-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/../fonts/raleway/raleway-v28-latin_cyrillic-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

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

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  background: #EEF9FF;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body.active-body {
  overflow: hidden;
}

.section {
  line-height: 130%;
  padding: 30px;
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .section {
    padding: 16px;
  }
}
.section__title {
  font-size: 64px;
  color: #212121;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 480px) {
  .section__title {
    font-size: 48px;
  }
}
@media (max-width: 365px) {
  .section__title {
    font-size: 38px;
  }
}

.section-wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: unset;
  }
}

h2 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}

p {
  margin-bottom: 15px;
}

.section__main {
  color: #212121;
  position: relative;
  width: 100%;
}

.contact-form__btn-submit {
  display: block;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  background: #45A5DC;
  border-radius: 100px;
  margin-top: 15px;
  max-width: 278px;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  padding: 12px 26px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.contact-form__btn-submit:hover {
  -webkit-box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  background: #105CA3;
}
.contact-form__btn-submit:disabled {
  background: grey;
  pointer-events: none;
}

li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
li::before {
  display: inline-block;
  content: "";
  min-width: 6px;
  min-height: 6px;
  background: #212121;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: -3px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
table th {
  font-weight: 600;
  color: #212121;
  font-size: 20px;
  border-radius: 20px 0 0 20px;
}
table td {
  font-weight: 400;
  color: #212121;
  vertical-align: top;
}
table td:last-child {
  border-radius: 0 20px 20px 0;
}
table td li::before {
  display: none;
}
table td a {
  text-decoration: underline;
  color: #212121;
}
table td a:visited, table td a:hover {
  text-decoration: underline;
}
table th, table td {
  max-width: 418px;
  padding: 20px 30px;
  text-align: left;
}
table tr:nth-child(odd) {
  background: #EEF9FF;
}

.default-block {
  background-color: #FFFFFF;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 50px 30px 36px;
  width: 100%;
  line-height: 130%;
}
.default-block .section__title {
  font-size: 32px;
}
.default-block h2 {
  color: #105CA3;
  line-height: 130%;
}
.default-block h3 {
  line-height: 130%;
}
@media (max-width: 480px) {
  .default-block {
    border-radius: 5px;
  }
}

.table-wrapper {
  overflow-x: auto;
  position: relative;
  border-radius: 10px;
}

input:focus {
  border-color: rgba(84, 112, 214, 0.5);
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.about__pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px auto;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .about__pictures {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.about__wrapper {
  max-width: 710px;
}
@media (max-width: 1200px) {
  .about__wrapper {
    max-width: unset;
  }
}

.pictures__item {
  max-width: 218px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pictures__img {
  margin-bottom: 20px;
}

.pictures__text {
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  margin: 0;
}

@media (max-width: 1200px) {
  .photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.photo__image {
  width: 490px;
  margin-bottom: 30px;
  border-radius: 20px;
}
.photo__text-opacity {
  display: block;
  font-size: 14px;
  line-height: 130%;
  opacity: 0.75;
  margin-bottom: 5px;
}
.photo__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 580px) {
  .photo {
    text-align: left;
  }
  .photo__name {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 39px;
}
@media (max-width: 1349px) {
  .services {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.services a {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  width: 300px;
  height: 150px;
  padding: 0 10px;
  background: #45A5DC;
  border-radius: 20px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.services a:hover {
  background: #105CA3;
}
@media (max-width: 661px) {
  .services a {
    width: 100%;
  }
}

.promo {
  background: -webkit-gradient(linear, left top, right top, from(#78C6F2), color-stop(49.48%, #9DD4F3), to(#81CAF3));
  background: -o-linear-gradient(left, #78C6F2 0%, #9DD4F3 49.48%, #81CAF3 100%);
  background: linear-gradient(90deg, #78C6F2 0%, #9DD4F3 49.48%, #81CAF3 100%);
  max-width: 100%;
  padding: 10px;
  margin-bottom: 24px;
}
.promo__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 30px;
  position: relative;
  font-family: "Raleway";
  color: #FFFFFF;
  line-height: 130%;
}
.promo__container p {
  font-size: 20px;
}
.promo__container p:first-of-type {
  color: #f10000;
  font-weight: 700;
  font-size: 50px;
}
.promo__container a {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: #105CA3;
}
.promo__container a:hover {
  color: #45A5DC;
}
.promo__container h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  max-width: 65.5%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1250px) {
  .promo__container h3 {
    max-width: 63.5%;
  }
}
@media (max-width: 1080px) {
  .promo__container h3 {
    max-width: 57.5%;
  }
}
@media (max-width: 868px) {
  .promo__container h3 {
    max-width: unset;
  }
}
.promo__container div {
  position: absolute;
  right: 108px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1060px) {
  .promo__container div {
    right: 80px;
  }
}
@media (max-width: 868px) {
  .promo__container div {
    display: none;
  }
}
.promo__container div span {
  font-weight: 900;
  font-size: 64px;
  text-transform: uppercase;
  -webkit-transform: rotate(-15deg);
  -ms-transform: rotate(-15deg);
  transform: rotate(-15deg);
  position: absolute;
  top: 130px;
  right: -68px;
}
@media (max-width: 950px) {
  .promo__container div span {
    font-size: 56px;
    right: -40px;
  }
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact-form__input {
  max-width: 570px;
  height: 50px;
  width: 100%;
  background: #EEF9FF;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 17px 23px;
}
.contact-form__input:last-child {
  margin-bottom: 40px;
}
.contact-form__input:first-child {
  margin-top: 10px;
}
.contact-form__input::-webkit-input-placeholder {
  color: #212121;
  opacity: 0.4;
}
@media (max-width: 340px) {
  .contact-form__input::-webkit-input-placeholder {
    font-size: 14px;
  }
}
.contact-form textarea {
  min-height: 131px;
  max-width: 570px;
  margin-bottom: 40px;
  resize: none;
}

.contact-form__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.contact-form__checkbox + label {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  vertical-align: middle;
}
.contact-form__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #212121;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: 0 -2px;
  vertical-align: middle;
}
.contact-form__checkbox:checked + label::before {
  background-color: transparent;
  background-image: url("../../img/svg/checkbox.svg");
}

.default-block.contacts p {
  opacity: 0.5;
  margin-bottom: 10px;
}
.default-block.contacts a {
  display: inline-block;
  color: #105CA3;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 130%;
}
.default-block.contacts a img {
  margin-right: 20px;
}
.default-block.contacts a:last-of-type img {
  margin-right: 0;
}

.policy-link {
  color: #105CA3;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.policy-link:hover {
  color: #9DD4F3;
}

.articles__title {
  font-size: 28px;
  font-family: "Inter";
  font-weight: 700;
  line-height: 100%;
  color: #105CA3;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .articles__title {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .articles__title {
    font-size: 18px;
  }
}

header {
  background-color: #9DD4F3;
  color: #FFFFFF;
  font-size: 14px;
  position: relative;
  min-height: 130.5px;
}
@media (max-width: 767px) {
  header {
    min-height: 80.5px;
  }
}
header .fixed {
  z-index: 3;
  background-color: #9DD4F3;
  width: 100%;
  position: fixed;
  top: 0;
}
header p {
  margin-bottom: 5px;
  font-size: 12px;
}
@media (max-width: 916px) {
  header p {
    font-size: 10px;
  }
}
header h2 {
  margin: 0;
}

.header__address, .header__telephone {
  text-align: right;
}
@media (max-width: 1239px) {
  .header__address, .header__telephone {
    max-width: 215px;
  }
}

@media (max-width: 867px) {
  .header__address {
    max-width: 153px;
  }
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1350px;
  padding: 10px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .container {
    padding: 12px 16px;
  }
}

.title__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .title__wrapper {
    gap: 10px;
  }
}
@media (max-width: 350px) {
  .title__wrapper {
    gap: 5px;
  }
}

.logo {
  color: #FFFFFF;
  display: block;
}

.logo__img {
  max-width: 60px;
}

.title__title {
  font-size: 24px;
  width: 280px;
  font-weight: 900;
}
@media (max-width: 940px) {
  .title__title {
    font-size: 20px;
  }
}

.address__text, .telephone__text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.button-search {
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 26px 12px 29px;
  -webkit-box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  max-width: 255px;
  background: #FFFFFF;
  background-repeat: no-repeat;
}
.button-search:hover {
  -webkit-box-shadow: 0px 4px 20px rgb(255, 255, 255);
  box-shadow: 0px 4px 20px rgb(255, 255, 255);
}
@media (max-width: 1039px) {
  .button-search {
    max-width: 153px;
    text-align: center;
  }
}
@media (max-width: 804px) {
  .button-search {
    max-width: 116px;
  }
}

@media (max-width: 1122px) {
  .header__button-search {
    background: #FFFFFF;
    padding: 10px 20px;
  }
}
@media (max-width: 810px) {
  .header__button-search {
    padding: 10px;
  }
}

@media (max-width: 979px) {
  .title__title {
    font-size: 20px;
    width: 228px;
  }
  .header {
    font-size: 12px;
    z-index: 2;
  }
  .header .text--transparent {
    font-size: 10px;
  }
  .header__address .address__text, .header__telephone .telephone__text {
    font-size: 12px;
  }
  .header__address, .header__telephone {
    min-width: unset;
  }
}
@media (max-width: 767px) {
  .header.container {
    padding: 16px;
  }
  .address, .telephone, .header__site-map, .header__button-search {
    display: none;
  }
}
@media (max-width: 390px) {
  .title__title {
    font-size: 18px;
    width: 206px;
  }
}
@media (max-width: 358px) {
  .title__title {
    font-size: 16px;
    width: 176px;
  }
}
footer {
  background: #105CA3;
  font-size: 12px;
}
footer .footer__wrapper {
  max-width: 1350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  footer .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
footer .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  max-width: 335px;
  gap: 10px;
}
@media (max-width: 480px) {
  footer .contacts {
    max-width: unset;
  }
}
footer .container {
  position: relative;
  padding: 30px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .container:first-child {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: 0;
}
@media (max-width: 1024px) {
  footer .container:first-child .copy {
    display: none;
  }
}
footer .container:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px 0;
}
@media (max-width: 1024px) {
  footer .container:nth-child(2) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }
}
@media (max-width: 480px) {
  footer .container:nth-child(2) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 0 30px;
    gap: 16px;
  }
}
footer .container:last-child {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 0;
}
footer .container:last-child .copy {
  display: none;
}
@media (max-width: 1024px) {
  footer .container:last-child .copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  footer .container:last-child .copy {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  footer .container:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 620px) {
  footer .container:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  footer .container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .container {
    padding: 30px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }
  footer .container:nth-child(2) {
    padding: 0 16px;
  }
}
@media (max-width: 950px) {
  footer .container:first-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
footer p {
  margin: 0;
}
footer h2 {
  margin-bottom: 0;
}
footer .address, footer .telephone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  footer .address, footer .telephone {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
footer .address__text, footer .telephone__text {
  font-size: 14px;
}
footer .text--transparent {
  opacity: 0.5;
}

.credits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.credits__item:hover {
  -webkit-box-shadow: 0px 4px 20px rgb(255, 255, 255);
  box-shadow: 0px 4px 20px rgb(255, 255, 255);
}

.copy {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  opacity: 0.8;
}
.copy .copy__text {
  margin-bottom: 10px;
}

.copy__policy {
  color: #FFFFFF;
}
.copy__policy:hover {
  color: #9DD4F3;
}

hr {
  max-width: 1290px;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  margin: 0 auto;
}

.author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #FFFFFF;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 5px;
}
@media (max-width: 480px) {
  .author {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

.author__img {
  min-width: 56px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 50px;
}
.footer-nav:last-child {
  margin-right: 0;
}
.footer-nav__list-item .menu__link {
  color: #FFFFFF;
  opacity: 1;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.footer-nav__list-item::before {
  display: none;
}

.menu {
  background-color: #FFFFFF;
  text-transform: uppercase;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80.5px;
  position: relative;
  z-index: 1;
}
.menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1290px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu__list--lv2 {
  position: absolute;
  display: none;
  top: 100%;
  left: -22px;
  background-color: #FFFFFF;
  z-index: 2;
  padding: 0 22px;
}

.menu__list-item {
  position: relative;
}
.menu__list-item::before {
  display: none;
}
.menu__list-item:hover .menu__list--lv2 {
  display: block;
}

.menu__link {
  min-height: 50px;
  padding: 10px 0;
  margin-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  opacity: 0.6;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  white-space: nowrap;
}
.menu__link:hover {
  opacity: 1;
}
@media (max-width: 790px) {
  .menu__link {
    margin-right: 30px;
  }
}

.search__input-search {
  font-family: "Inter", sans-serif;
  max-width: 180px;
  font-size: 14px;
}
@media (max-width: 1130px) {
  .search__input-search {
    max-width: 90px;
  }
}

.search__form {
  min-width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.search::-ms-clear {
  display: none;
}

.search:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.search__button {
  background: url(../../img/svg/search-icon.svg);
  width: 19px;
  height: 19px;
  display: block;
  margin-left: 20px;
}

.menu--mobile {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  padding: 20px;
  background: #9DD4F3;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.menu--mobile.active {
  -webkit-transform: translateY(84px);
  -ms-transform: translateY(84px);
  transform: translateY(84px);
}
@media (min-width: 768px) {
  .menu--mobile.active {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.menu--mobile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3vh;
  margin-bottom: 20px;
}
.menu--mobile ul li::before {
  display: none;
}
.menu--mobile__title {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 600;
}
.menu--mobile__address {
  margin-bottom: 10px;
}
.menu--mobile__address, .menu--mobile__telephone, .menu--mobile__site-map, .menu--mobile__button-search {
  display: block;
  max-width: unset;
}
.menu--mobile .text--transparent {
  font-size: 12px;
}
.menu--mobile__address.address__text, .menu--mobile__telephone.telephone__text {
  font-size: 16px;
}
.menu--mobile__site-map {
  text-align: center;
  font-size: 14px;
  margin-top: 6vh;
}
.menu--mobile__button-search {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 1.5vh;
}
.menu--mobile__search-link {
  position: absolute;
  top: 15px;
  right: 65px;
}

.menu-btn {
  display: none;
  width: 39px;
  height: 40px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  -webkit-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
@media (max-width: 320px) {
  .menu-btn {
    width: 35px;
  }
}
.menu-btn span {
  width: 39px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.menu-btn span:nth-of-type(2) {
  top: calc(50% - 11px);
}
.menu-btn span:nth-of-type(3) {
  top: calc(50% + 11px);
}
.menu-btn.active {
  -webkit-transform: translateY(-14px);
  -ms-transform: translateY(-14px);
  transform: translateY(-14px);
}

.menu-btn.active span:nth-of-type(1) {
  width: 0;
}

.menu-btn.active span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
  -ms-transform: translate(-50%, 0%) rotate(45deg);
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translate(-50%, 0%) rotate(-45deg);
  -ms-transform: translate(-50%, 0%) rotate(-45deg);
  transform: translate(-50%, 0%) rotate(-45deg);
}

@media (max-width: 767px) {
  .menu {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}
.banner {
  margin: 0 auto;
  position: relative;
  background-color: #9DD4F3;
  width: 100%;
  height: auto;
}
.banner__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.banner__bg img {
  height: 100%;
}
@media (max-width: 480px) {
  .banner__bg img {
    height: auto;
  }
}
@media (max-width: 480px) {
  .banner__bg {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: unset;
    bottom: 0;
  }
}
.banner__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 68%;
  background: -webkit-gradient(linear, left top, right top, from(#9DD4F3), to(rgba(84, 112, 214, 0)));
  background: -o-linear-gradient(left, #9DD4F3 0%, rgba(84, 112, 214, 0) 100%);
  background: linear-gradient(90deg, #9DD4F3 0%, rgba(84, 112, 214, 0) 100%);
}
@media (max-width: 767px) {
  .banner__bg::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #9DD4F3), color-stop(50%, rgba(84, 112, 214, 0)));
    background: -o-linear-gradient(top, #9DD4F3 0, rgba(84, 112, 214, 0) 50%);
    background: linear-gradient(180deg, #9DD4F3 0, rgba(84, 112, 214, 0) 50%);
    width: 100%;
  }
}
.banner__container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 28px 30px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .banner__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 480px) {
  .banner__container {
    padding: 0 7px 0 10px;
  }
}
.banner__title-wrapper {
  padding: 50px 0;
  color: #FFFFFF;
  max-width: 740px;
  margin: auto;
}
@media (max-width: 1092px) {
  .banner__title-wrapper {
    max-width: 495px;
  }
}
@media (max-width: 850px) {
  .banner__title-wrapper {
    margin: 0 0 0 15px;
  }
}
@media (max-width: 553px) {
  .banner__title-wrapper {
    max-width: 386px;
  }
}
@media (max-width: 480px) {
  .banner__title-wrapper {
    padding: 25px 0;
  }
}
.banner__header {
  font-family: "Raleway";
  font-weight: 900;
  font-size: 64px;
  margin: 0;
}
@media (max-width: 850px) {
  .banner__header {
    font-size: 62px;
  }
}
@media (max-width: 568px) {
  .banner__header {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .banner__header {
    font-size: 34px;
  }
}
@media (max-width: 350px) {
  .banner__header {
    font-size: 29px;
  }
}

.banner-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding-left: 16px;
}

.banner-nav__link {
  font-family: "Raleway", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  color: #FFFFFF;
  position: relative;
  font-size: 18px;
  text-align: start;
  padding-bottom: 20px;
}
.banner-nav__link--lv1 {
  display: block;
  font-weight: 700;
}
.banner-nav__link:hover {
  text-decoration: underline;
}
.banner-nav__link--lv2 {
  font-weight: 400;
  margin-bottom: 15px;
  padding-bottom: 0;
}

button.banner-nav__link {
  font-weight: 700;
}

.banner-nav--lv2 {
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.banner-nav__arrow {
  background-image: url(../../img/svg/banner-nav-arrow.svg);
  width: 5px;
  height: 10px;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: absolute;
  left: -16px;
}

.lv1--active .banner-nav__arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.default-block--type h1 {
  text-align: center;
  margin: 0 0 40px 0;
  font-family: "Raleway";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #105CA3;
}
.default-block--type h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
}
.default-block--type h3 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #212121;
  margin-bottom: 20px;
}
.default-block--type p {
  margin-bottom: 20px;
}
.default-block--type ul {
  padding-left: 10px;
  margin-bottom: 20px;
}
.default-block--type li {
  margin-bottom: 10px;
}

.price-table {
  margin-bottom: 20px;
}
.price-table tr:nth-child(even) {
  background-color: #EEF9FF;
}
.price-table tr:nth-child(odd) {
  background-color: transparent;
}
.price-table th {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: rgba(33, 33, 33, 0.5);
  background-color: white;
}
.price-table td:first-of-type {
  border-radius: 20px 0 0 20px;
}
.price-table td:last-of-type {
  border-radius: 0 20px 20px 0;
  max-width: 170px;
  min-width: 163px;
  text-decoration: none;
  vertical-align: bottom;
}
.price-table ul {
  margin-bottom: 0;
  padding: 0;
}

.price-list__title {
  font-size: 24px;
}
.price-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 30px;
}
@media (max-width: 580px) {
  .price-list__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.price-list .price-list__text--small {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  opacity: 0.5;
  text-align: center;
}
.price-list > p:last-child {
  margin-top: 60px;
}

.price-item {
  max-width: 360px;
  background: rgba(69, 165, 220, 0.05);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}
@media (max-width: 370px) {
  .price-item {
    padding: 16px;
  }
}
.price-item .price-item__title {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.02em;
  color: #105CA3;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 370px) {
  .price-item .price-item__title {
    font-size: 22px;
  }
}
.price-item__price {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 5px;
}
.price-item__text {
  max-width: 300px;
}
.price-item__text-price {
  margin-top: 5px;
}
.price-item__text--small {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  opacity: 0.5;
  text-align: center;
}
.price-item__text:last-of-type {
  margin-bottom: 0;
}

.map {
  width: 100%;
  height: 500px;
}
.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.news {
  font-size: 18px;
  margin: 0 auto 30px;
  padding-top: 14px;
}
.news__title {
  font-family: "Raleway";
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  color: #105CA3;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .news__title {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .news__title {
    font-size: 18px;
  }
}
.news__item {
  padding: 16px;
  border-bottom: 1px solid rgba(16, 92, 163, 0.2);
}
.news__item:last-child {
  border: none;
}
@media (max-width: 425px) {
  .news__item {
    padding: 16px 0 16px 0;
  }
}
.news p {
  min-height: 1em;
}
.news li {
  display: block;
  margin: 10px 0 10px 10px;
}
.news a {
  display: inline-block;
  color: #105CA3;
  font-weight: 600;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: 20px;
}
.news a:hover {
  text-decoration: none;
  color: #45A5DC;
}

.news__pagination {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 480px) {
  .news__pagination {
    margin-bottom: 34px;
  }
}

.pagination__prev, .pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 9px;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: #9DD4F3;
  border-radius: 100px;
  margin-right: 5px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.pagination__prev:hover, .pagination__next:hover {
  -webkit-box-shadow: 0px 4px 20px rgba(84, 112, 214, 0.35);
  box-shadow: 0px 4px 20px rgba(84, 112, 214, 0.35);
}
@media (max-width: 768px) {
  .pagination__prev, .pagination__next {
    width: 45px;
    height: 45px;
  }
}

.pagination__next-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .pagination__next-icon {
    width: 15px;
  }
}

@media (max-width: 768px) {
  .pagination__prev-icon {
    width: 15px;
  }
}

.page-numbers {
  color: #212121;
  font-size: 16px;
}
.page-numbers--disable {
  background: #EDEDED;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.page-numbers--disable:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 480px) {
  .page-numbers {
    font-size: 18px;
  }
}

.current {
  font-weight: 600;
}

.default-block.news h1.section__title {
  text-align: left;
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 768px) {
  .default-block.news h1.section__title {
    font-size: 7.6vw;
  }
}

.tittle.center-text {
  font-size: 20px;
  line-height: 1.6;
  color: #212121;
  text-align: center;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 18px;
  margin: 0 auto;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: "Inter", sans-serif;
}

.col-lg-4.col-md-4.col-sm-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 18px;
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  min-width: 200px;
  width: 33%;
  margin: 5px 0;
}
@media (max-width: 779px) {
  .col-lg-4.col-md-4.col-sm-6 {
    width: 50%;
  }
}
@media (max-width: 523px) {
  .col-lg-4.col-md-4.col-sm-6 {
    width: 100%;
  }
}

.sel {
  position: relative;
}
.sel.rasch::after {
  content: none;
}
.sel.perv::after {
  content: none;
}
.sel .value_calc {
  width: 100%;
  height: 40px;
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0 10px;
  -webkit-appearance: none;
}
.sel::after {
  content: "";
  background: url(../../img/downward-arrow.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
  top: 35%;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  right: 10px;
  position: absolute;
  display: block;
  pointer-events: none;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.sel.active::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.col-lg-6.col-md-6.col-sm-12 {
  font-size: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  min-height: 1px;
  width: 50%;
  padding: 0 6%;
  margin: 11px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 779px) {
  .col-lg-6.col-md-6.col-sm-12 {
    width: 100%;
  }
}

.checkbox_switch {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  width: 34px;
  height: 14px;
  border-radius: 20px;
  background: #6F6F6F;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: -3px;
}
.checkbox_switch::before {
  position: absolute;
  border-radius: 10px;
  content: "";
  z-index: 1;
  left: -1px;
  width: 22px;
  top: -4px;
  height: 22px;
  background: #fff;
  -webkit-box-shadow: 0 0.3vh 0.5vh 0.15vh rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.3vh 0.5vh 0.15vh rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.checkbox_switch::after {
  position: absolute;
  border-radius: 10px;
  content: "";
  background: #6CACE5;
  position: absolute;
  height: 14px;
  top: 0;
  -webkit-transition: background-color 0.2s ease-out, width 0.1s ease-out;
  -o-transition: background-color 0.2s ease-out, width 0.1s ease-out;
  transition: background-color 0.2s ease-out, width 0.1s ease-out;
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

input[type=checkbox] {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0 4% 0 0;
  line-height: normal;
  cursor: pointer;
  display: none;
}

.os.os_chec {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.42857143;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #244090;
  font-size: 18px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 28px;
  vertical-align: sub;
  width: 36px;
}

.value_calc.perv, .value_calc.rasch {
  padding: 5px;
}
.value_calc.perv::-webkit-inner-spin-button, .value_calc.perv::-webkit-outer-spin-button, .value_calc.rasch::-webkit-inner-spin-button, .value_calc.rasch::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

.price_itog {
  --font-family: "Open Sans", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  -webkit-box-direction: normal;
  font-size: 16px;
  line-height: 130%;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1350px;
  padding: 10px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.checkbox_self {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: 1.42857143;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #244090;
  font-size: 18px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  width: 34px;
  height: 14px;
  border-radius: 20px;
  background: #6F6F6F;
  -webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  top: -3px;
}
.checkbox_self::before {
  left: 16px;
  background: #244090;
  top: -4px;
}
.checkbox_self::after {
  width: 36px;
}

.white_back .section__title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .white_back.service {
    padding-left: 0;
    padding-right: 0;
  }
}
.white_back .tabs {
  opacity: 0.5;
}
.white_back .tabs.show {
  opacity: 1;
}
@media (max-width: 779px) {
  .white_back .tabs .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.price {
  font-size: 45px;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.price_1 {
  text-align: center;
  margin: 0;
  width: 100%;
  color: #105CA3;
}

.name_s {
  padding: 20px 0px;
  border-bottom: 1px solid #A7A5A5;
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 500;
  width: 100%;
}

.dinamic_price_summ {
  font-weight: 700;
}

.btn_click_blue {
  font-family: "Raleway", sans-serif;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
  height: 100px;
  background: #105CA3;
  color: white;
  text-align: center;
  line-height: 100px;
  font-size: 25px;
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 375px) {
  .btn_click_blue {
    font-size: 18px;
  }
}

.name_sel {
  margin: 10px 0;
  text-align: center;
  color: #00407c;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 6;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
.modal .contact-form__input, .modal textarea {
  width: 100%;
  max-width: unset;
}
.modal .contact-form__btn-submit {
  margin: 15px auto 0;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 44px auto;
  max-width: 720px;
}

#submitModal .modal-dialog {
  margin: 38vh auto;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border-radius: 20px;
  color: #000000;
  margin: 15px 15px 15px 30px;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.modal-title {
  margin: 0 auto;
}

.modal-subtitle {
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 480px) {
  .modal-subtitle {
    font-size: 18px;
  }
}

.close {
  position: absolute;
  right: 30px;
}

.close:focus, .close:hover {
  cursor: pointer;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 40px 30px;
  overflow: visible;
}
@media (max-width: 365px) {
  .modal-body {
    padding: 20px 30px;
  }
}
/*# sourceMappingURL=main.css.map */