@charset "UTF-8";
.title {
  text-transform: uppercase;
  color: #18348e;
  font-size: clamp(2rem, 3.846vw + -0.538rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.title--mb {
  margin-bottom: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
}
.title--mb70 {
  margin-bottom: clamp(1.875rem, 9.615vw + -4.471rem, 4.375rem);
}
.input {
  width: 100%;
  padding: 14.5px 24px;
  border-radius: 32px;
  font-family: "Roboto";
  font-size: clamp(0.938rem, 0.24vw + 0.779rem, 1rem);
  font-weight: 400;
  line-height: 1.5;
}
.input--colorInput-blue {
  border: 1px solid #90a6c8;
  background: rgba(88, 109, 140, 0.6);
  color: #ffffff;
}
.input--colorInput-blue::placeholder {
  color: #ffffff;
}
.input--colorInput-white {
  border: 2px solid #e7e7e7;
  background-color: #ffffff;
  color: #8e95a0;
  color: #1d2b40;
}
.input--colorInput-white::placeholder {
  color: #8e95a0;
}
.input--checkbox {
  padding: 0;
  appearance: none;
  border-radius: 3px;
  width: 20px;
  aspect-ratio: 1/1;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.38s ease-in-out;
  background-color: #ffffff;
  line-height: 1;
}
.input--checkbox::before {
  font-size: 8px;
  color: #ffffff;
}
.input--checkboxSize {
  width: 20px;
  height: 20px;
}
.input--checkbox-orange {
  border: 2px solid #c0c7d2;
}
.input--checkbox-orange:checked {
  background-color: #f58422;
  border: 2px solid #f58422;
}
.input--checkbox-blue {
  border: 2px solid #c0c7d2;
}
.input--checkbox-blue:checked {
  background-color: #27a7e7;
  border: 2px solid #27a7e7;
}
.input--radio {
  padding: 0;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #c0c7d2;
}
.input--radio:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #f58422;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.38s ease-in-out;
}
.input--radio:checked:before {
  opacity: 1;
}
.input--textarea {
  resize: none;
  height: clamp(8.125rem, 4.808vw + 4.952rem, 9.375rem);
  border-radius: 8px !important;
  border: 2px solid #efefef;
}
.input--textarea::placeholder {
  word-wrap: break-word;
  white-space: pre-wrap;
}
.input--textarea::-webkit-scrollbar {
  width: 10px;
}
.input--textarea::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 5px;
}
.input--textarea::-webkit-scrollbar-thumb {
  background-color: #d42d24;
  border-radius: 5px;
  border: 3px solid #ffffff;
}

@media (max-width: 1024px) {
  .input {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .input--size {
    width: 100%;
  }
}
.btn {
  display: flex;
  position: relative;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  width: fit-content;
  z-index: 1;
  line-height: 1.2;
  text-transform: uppercase;
  transition: 0.38s ease-in-out;
  justify-content: center;
  transition-property: background-color, color, outline-color, border-color;
  cursor: pointer;
}
.btn[data-loading="true"] {
  pointer-events: none;
  opacity: 0.9;
}
.btn[data-loading="true"] .btn__text {
  visibility: hidden;
}
.btn[data-loading="true"] .btn__loader {
  display: block !important;
}
.btn__loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.btn__spinner {
  display: block;
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpin 0.8s linear infinite;
}
.btn--size-small {
  padding-inline: clamp(1.125rem, 3.365vw + -1.096rem, 2rem);
  min-height: 38px;
  font-size: 12px;
  letter-spacing: 0.7px;
  border-radius: 48px;
}
.btn--size-medium {
  min-height: 45px;
  font-size: 14px;
  border-radius: 32px;
  padding-inline: 24px;
  letter-spacing: 0.2px;
}
.btn--size-large {
  min-height: 49px;
  padding-inline: 48px;
  border-radius: 48px;
  font-size: 14px;
  letter-spacing: 0.8px;
}
.btn--color-orange {
  background-color: #f58422;
  color: #ffffff;
}
.btn--color-orange:hover {
  background: #ff9b43;
}
.btn--color-orange:disabled {
  background: #90a6c8;
}
.btn--color-outlineWhite {
  outline: 2px solid #ffffff;
  color: #f7f7f8;
}
.btn--color-outlineWhite:hover {
  background: #ffffff;
  color: #18348e;
}
.btn--color-outlineBlue {
  outline: 2px solid #18348e;
  color: #18348e;
}
.btn--color-outlineBlue:hover {
  background: #18348e;
  color: #ffffff;
}
.btn--color-blue {
  background-color: #18348e;
  color: #ffffff;
}
.btn--color-blue:hover {
  background: #2545ac;
}
.btn--color-blue:disabled {
  background: #7688ac;
}
.btn--header {
  padding-inline: clamp(1rem, 3.846vw + -1.538rem, 2rem);
  min-height: 38px;
  font-size: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
  letter-spacing: 0.7px;
  border-radius: 48px;
}
.btn--center {
  margin: 0 auto;
}
.btn--full {
  width: 100%;
}
.btn--error {
  min-width: 200px;
}
.btn--mt {
  margin-top: clamp(0.625rem, 7.212vw + -4.135rem, 2.5rem);
}
@media (max-width: 1024px) {
  .btn .btn--header {
    padding-inline: clamp(1.125rem, 3.365vw + -1.096rem, 2rem);
    min-height: 38px;
    font-size: 12px;
    letter-spacing: 0.7px;
    border-radius: 48px;
  }
}
@media (max-width: 576px) {
  .btn .btn {
    width: 100%;
  }
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form__wrapper {
  display: flex;
  gap: 12px;
}
.form__label {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #8e95a0;
}
.form__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-style: solid;
  transition: color 3ms ease-in-out;
  color: #00bdf2;
}
@media screen and (min-width: 993px) {
  .form__link:hover:hover {
    color: #27a7e7;
  }
}
.form .btn {
  width: 100%;
}
.modal {
  display: none;
  background-color: #ffffff;
  padding: 48px;
  max-width: 880px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .modal {
    padding: 24px;
  }
}
.modal__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1024px) {
  .modal__container {
    grid-template-columns: 1fr;
  }
}
.modal__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #18348e;
}
@media (max-width: 1024px) {
  .modal__title {
    font-size: 24px;
  }
}
.modal__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1d2b40;
  max-width: 375px;
}
@media (max-width: 1024px) {
  .modal__text {
    font-size: 16px;
  }
}
.modal__icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  color: #18348e;
  position: absolute;
  right: 19px;
  top: 19px;
  cursor: pointer;
}
.modal__list {
  position: absolute;
  left: 14px;
  top: -55px;
}
@media (max-width: 1024px) {
  .modal__list {
    display: none;
  }
}

.modal__success {
  padding: 18px;
}
.modal__success__icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  color: #18348e;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.fancybox__backdrop {
  background: rgba(29, 43, 64, 0.8);
}

.fancybox__content > .f-button.is-close-btn {
  display: none;
}
.socials {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 2.404vw + -1.212rem, 1rem);
}
.socials--color .socials__link {
  background-color: #294670;
  color: #ffffff;
}
.socials--gray .socials__link {
  background: #294670;
}
.socials--gray .socials__icon {
  color: #7688ac;
}
.socials--end {
  align-self: flex-end;
}
.socials--mobile {
  display: none;
}
.socials--size .socials__link {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.75rem, 3.365vw + -0.471rem, 2.625rem);
  height: clamp(1.75rem, 3.365vw + -0.471rem, 2.625rem);
  border-radius: 24px;
  background-color: #f7f7f8;
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .socials__link:hover .socials__icon {
    color: #506d99;
  }
}
.socials__icon {
  font-size: clamp(0.875rem, 0.962vw + 0.24rem, 1.125rem);
  transition: color 0.38s ease-in-out;
  color: #27a7e7;
}
.socials__icon-max {
  background-image: url("../img/max-back.png");
  background-size: cover;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 1024px) {
  .socials {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .socials {
    display: none;
  }
  .socials--mobile {
    display: flex;
    align-self: flex-start;
  }
  .socials--mobile .socials__link {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 576px) {
  .socials--end {
    display: flex;
    align-self: flex-start;
  }
}
.footer {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background-color: #1e355e;
}
@media (max-width: 1024px) {
  .footer {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .footer {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .footer {
    --container-width: 100%;
  }
}
.footer__container {
  grid-area: center;
  padding-top: clamp(1.875rem, 2.404vw + 0.288rem, 2.5rem);
  padding-bottom: 16px;
  grid-area: center;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(1.875rem, 6.731vw + -2.567rem, 3.625rem);
}
.footer__info {
  display: flex;
  flex-direction: column;
  width: 15%;
}
.footer__logo {
  display: block;
  width: clamp(7.5rem, 4.327vw + 4.644rem, 8.625rem);
  height: clamp(3rem, 4.087vw + 0.303rem, 4.063rem);
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__text {
  font-size: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
  line-height: 1.3;
  color: #8e95a0;
  font-weight: 500;
  color: #90a6c8;
}
.footer__text--link {
  transition: color 0.38s ease-in-out;
}
.footer__text--link:hover {
  color: #ffffff;
}
.footer__text--width {
  width: 30%;
}
.footer__list {
  width: 15%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list-link {
  color: #90a6c8;
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  line-height: 1.5;
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .footer__list-link:hover:hover {
    color: #ffffff;
  }
}
.footer__contacts {
  width: 24%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__contacts--width {
  width: 15%;
}
.footer__contacts-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__contacts-item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 10px;
}
.footer__contacts-item--phone {
  max-width: 192px;
  align-self: flex-end;
}
.footer__contacts-name {
  color: #90a6c8;
  font-size: 14px;
  line-height: 20px;
}
.footer__contacts-val {
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
}
.footer__mail {
  display: flex;
  gap: 10px;
}
.footer__mail-wrapper {
  display: grid;
  gap: 7px;
}
.footer__mail-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #4a6082;
}
.footer__mail-text {
  font-size: 14px;
  line-height: 20px;
  transition: color 0.38s ease-in-out;
  color: #ffffff;
}
.footer__phone {
  display: flex;
  gap: 10px;
}
.footer__phone-wrapper {
  display: grid;
  gap: 7px;
}
.footer__phone-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #4a6082;
}
.footer__phone-text {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
  transition: color 0.38s ease-in-out;
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom-box {
  width: 72%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__develop {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 993px) {
  .footer__develop:hover .footer__text--link {
    color: #ffffff;
  }
}
.footer__develop img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .footer__contacts {
    width: 25%;
  }
  .footer__contacts--width {
    width: 22%;
  }
  .footer__contacts-item--phone {
    max-width: unset;
  }
  .footer__info {
    width: 25%;
  }
  .footer__list-link {
    font-size: 16px;
  }
  .footer__text {
    font-size: 12px;
  }
  .footer__bottom {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer__bottom-box {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    width: 138px;
    height: 65px;
  }
  .footer__wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer__info {
    width: 100%;
  }
  .footer__info .footer__text {
    width: 100%;
  }
  .footer__list {
    width: 40%;
  }
  .footer__contacts {
    width: 50%;
  }
  .footer__bottom-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer__phone-icon {
    margin-top: 13px;
  }
  .footer__text--width {
    width: 100%;
  }
  .footer__phone-text {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .footer__contacts {
    width: 100%;
    gap: 10px;
  }
  .footer__contacts-box {
    margin-bottom: 20px;
  }
  .footer__contacts-box {
    width: 100%;
    gap: 10px;
  }
  .footer__develop img {
    width: 46px;
    height: 36px;
  }
}
.cookie-banner {
  display: none;
  position: fixed;
  z-index: 70;
  background-color: #ffffff;
  border-radius: 16px;
  right: 20px;
  bottom: 30px;
  width: 480px;
  max-width: calc(100vw - 32px);
}
@media (max-width: 1024px) {
  .cookie-banner {
    right: 20px;
    bottom: 20px;
    width: 480px;
  }
}
@media (max-width: 768px) {
  .cookie-banner {
    right: 16px;
    bottom: 16px;
    width: 480px;
  }
}
@media (max-width: 576px) {
  .cookie-banner {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }
}
.cookie-banner__title {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: #18348e;
}
@media (max-width: 768px) {
  .cookie-banner__title {
    font-size: 20px;
  }
}
.cookie-banner__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #1d2b40;
}
.cookie-banner__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}
.cookie-banner__button {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  font-size: 32px;
  color: #18348e;
  background: transparent;
}
@media (max-width: 768px) {
  .cookie-banner__button {
    top: 8px;
    right: 8px;
    font-size: 24px;
  }
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner__group {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .cookie-banner__group {
    flex-direction: column;
  }
}
.cookie-banner .btn {
  width: 100%;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

input,
textarea {
  outline: none;
  background-color: transparent;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto.ttf") format("truetype-variations");
  font-weight: 300 800;
}
body {
  font-family: "Roboto", system-ui;
  font-weight: 400;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-variant-numeric: lining-nums;
  background: #e7e7e7;
}

.section {
  margin-bottom: clamp(4.375rem, 16.827vw + -6.731rem, 8.75rem);
}

.swiper {
  user-select: none;
}
.link {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 993px) {
  .link:hover .link__text {
    color: #d42d24;
  }
}
.link__icon {
  color: #18348e;
  font-size: clamp(1.375rem, 0.481vw + 1.058rem, 1.5rem);
  transition: color 0.38s ease-in-out;
}
.link__text {
  color: #1d2b40;
  font-size: clamp(1.125rem, 0.481vw + 0.808rem, 1.25rem);
  line-height: clamp(1.375rem, 0.481vw + 1.058rem, 1.5rem);
  font-weight: 700;
  transition: color 0.38s ease-in-out;
}
.link--email .link__icon {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
}
.link--email .link__text {
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  font-weight: 400;
  text-decoration: underline;
  line-height: 1.2;
}
.link--noIcon .link__icon {
  visibility: hidden;
  opacity: 0;
}
.link--header .link__icon {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
}
.link--header .link__text {
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  letter-spacing: 0.2px;
}
.link--footer .link__icon {
  font-size: clamp(1.25rem, 0.481vw + 0.933rem, 1.375rem);
}
.link--footer .link__text {
  color: #ffffff;
  font-size: clamp(0.813rem, 1.202vw + 0.019rem, 1.125rem);
  line-height: 28px;
}
.link--sizeMin .link__icon {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
}
.link--sizeMin .link__text {
  font-size: 18px;
  line-height: 1.55;
}
.link--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .link:last-of-type {
    margin-bottom: 4px;
  }
  .link--header:last-of-type,
  .link--mobile:last-of-type {
    margin-bottom: 0px;
  }
  .link--size .link__text {
    font-size: 16px;
    line-height: 16px;
  }
  .link__icon {
    font-size: 24px;
  }
  .link__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .link--footer .link__icon {
    font-size: 22px;
  }
  .link--footer .link__text {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 576px) {
  .link--header {
    display: none;
  }
  .link--mobile {
    display: flex;
  }
  .link--mobile .link__icon {
    font-size: 24px;
  }
  .link--mobile .link__text {
    font-size: 24px;
  }
}
.dropdown {
  overflow-y: auto;
  position: absolute;
  top: clamp(3.813rem, 3.846vw + 1.274rem, 4.813rem);
  left: 0px;
  min-width: clamp(37.5rem, 91.346vw + -22.788rem, 61.25rem);
  display: flex;
  z-index: -3;
  visibility: hidden;
  opacity: 0;
  border-radius: 16px;
  transition: all 0.38s ease-in-out;
}
.dropdown::-webkit-scrollbar {
  width: 5px;
}
.dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.dropdown--open {
  visibility: visible;
  opacity: 1;
  z-index: 13;
}
.dropdown__categories {
  background-color: #18348e;
  width: 38%;
}
.dropdown__categories-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.625rem, 2.404vw + -0.962rem, 1.25rem)
    clamp(0.938rem, 1.202vw + 0.144rem, 1.25rem);
  transition: background-color 0.38s ease-in-out;
}
.dropdown__categories-item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 4px;
  background-color: #f58422;
  transition: height 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .dropdown__categories-item:hover {
    background-color: #223e98;
  }
  .dropdown__categories-item:hover:after {
    height: 100%;
  }
}
.dropdown__categories-text {
  color: #ffffff;
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  line-height: 1.3;
}
.dropdown__categories-icon {
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  color: #ffffff;
}
.dropdown__details {
  width: 63%;
  position: relative;
}
.dropdown__details-title {
  color: #000000;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  font-weight: 900;
  line-height: clamp(1.625rem, 0.481vw + 1.308rem, 1.75rem);
  margin-bottom: 15px;
}
.dropdown__details-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 15px;
  column-gap: 30px;
}
.dropdown__details-item {
  padding: clamp(1.25rem, 2.404vw + -0.337rem, 1.875rem);
  background-color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  visibility: hidden;
  opacity: 0;
  transition: all 0.38s ease-in-out;
}
.dropdown__details-item--open {
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
.dropdown__details-text {
  color: #000000;
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  line-height: clamp(1.375rem, 0.481vw + 1.058rem, 1.5rem);
}
.dropdown__back {
  display: none;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.dropdown__back-text {
  color: #8e95a0;
  font-size: 14px;
  line-height: 20px;
}
.dropdown__back-icon {
  transform: rotate(90deg);
  color: #8e95a0;
  font-size: 16px;
}

@media (max-width: 1536px) {
  .dropdown {
    min-width: clamp(37.5rem, 48.077vw + 5.769rem, 50rem);
  }
}
@media (max-width: 1024px) {
  .dropdown {
    background-color: #ffffff;
    position: fixed;
    left: -100%;
    top: 0px;
    width: 100%;
    height: 100vh;
    padding-bottom: 30px;
    padding-top: 80px;
    z-index: 9;
    overflow: auto;
    opacity: 1;
  }
  .dropdown--open {
    left: 0;
  }
  .dropdown__categories-item {
    padding-left: 0px;
    padding-right: 0;
  }
  .dropdown__categories-text {
    color: #1d2b40;
    font-size: 16px;
    line-height: 24px;
  }
  .dropdown__details,
  .dropdown__categories {
    background-color: #ffffff;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .dropdown__back {
    display: flex;
  }
  .dropdown__details-item {
    position: fixed;
    left: -100%;
    top: 0px;
    width: 100%;
    height: 100vh;
    padding-bottom: 30px;
    padding-top: 80px;
    z-index: 9;
    overflow: auto;
    opacity: 1;
    visibility: visible;
  }
  .dropdown__details-item--open {
    left: 0;
  }
  .dropdown__details-title {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }
  .dropdown__details-text {
    font-size: 16px;
    line-height: 24px;
  }
  .dropdown__details-wrapper {
    row-gap: 20px;
    column-gap: 16px;
  }
}
@media (max-width: 576px) {
  .dropdown__details-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 164px;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2.163vw + -0.928rem, 1.063rem);
  padding-inline: clamp(0rem, 5.769vw + -3.808rem, 1.5rem);
}
.nav__item {
  padding: clamp(0rem, 0.481vw + -0.317rem, 0.125rem);
}
.nav__item--catalog {
  display: flex;
  position: relative;
  cursor: pointer;
  align-items: center;
  gap: 2px;
}
.nav__item--catalog .nav__link {
  line-height: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
}
.nav__search {
  width: clamp(0.875rem, 2.404vw + -0.712rem, 1.5rem);
  height: clamp(0.875rem, 2.404vw + -0.712rem, 1.5rem);
  font-size: clamp(0.875rem, 2.404vw + -0.712rem, 1.5rem);
  transition: color 0.38s ease-in-out;
  color: #18348e;
}
@media screen and (min-width: 993px) {
  .nav__search:hover {
    color: #506d99;
  }
}
.nav__link {
  color: #1d2b40;
  font-size: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  line-height: 1.2;
  transition: color 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .nav__link:hover {
    color: #506d99;
  }
  .nav__link:hover ~ .nav__icon {
    color: #506d99;
  }
}
.nav__icon.icon-arrow {
  display: none;
}
.nav__icon {
  width: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  height: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  font-size: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  transition: color 0.38s ease-in-out;
}
.nav__icon:hover {
  color: #d42d24;
}
.nav__icon:hover + .nav__link {
  color: #d42d24;
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .nav--mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav--mobile .nav__item {
    padding: 24px;
  }
  .nav--mobile .nav__link {
    font-size: 16px;
    line-height: 1.2;
  }
  .nav--mobile .nav__icon {
    transform: rotate(90deg);
  }
  .nav__item-hidden {
    display: none;
  }
  .nav__icon.icon-arrow {
    display: block;
  }
  .nav__icon.icon-caret-down {
    display: none;
  }
}
@media (max-width: 576px) {
  .nav--mobile .nav__item {
    width: 100%;
  }
  .nav--mobile .nav__item--catalog {
    justify-content: space-between;
  }
}
.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #18348e;
}
.burger__icon {
  display: inline;
}
.burger__open {
  display: none;
}
.burger--open .burger__icon {
  display: none;
}
.burger--open .burger__open {
  display: inline;
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
}
.headerContent {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .headerContent {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .headerContent {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .headerContent {
    --container-width: 100%;
  }
}
.headerContent__container {
  padding-top: 12px;
  padding-bottom: 12px;
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.375rem, 5.769vw + -3.433rem, 1.875rem);
}
.headerContent__logo {
  display: flex;
  align-items: center;
}
.headerContent__logo img {
  width: clamp(5rem, 13.942vw + -4.202rem, 8.625rem);
  height: clamp(3rem, 4.087vw + 0.303rem, 4.063rem);
  object-fit: contain;
}

@media (max-width: 1536px) {
  .headerContent__container {
    gap: clamp(0.375rem, 1.442vw + -0.577rem, 0.75rem);
  }
}
@media (max-width: 1024px) {
  .headerContent__logo {
    width: 120px;
    height: 48px;
  }
}
@media (max-width: 576px) {
  .headerContent__container {
    gap: 10px;
  }
  .headerContent .btn {
    display: none;
  }
}
.search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
}
.search__input {
  font-size: 16px;
  line-height: 1.5;
  color: #18348e;
  padding: 14px 24px;
}
.search__input::placeholder {
  color: #8e95a0;
  font-size: 16px;
  line-height: 1.5;
}
.search__button {
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 0px;
  justify-content: center;
}
.search__icon {
  color: #18348e;
  width: 24px;
  line-height: 1;
  height: 24px;
  font-size: 24px;
}
.menu {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background: #e7e7e7;
  position: fixed;
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100vh;
  padding-bottom: 30px;
  padding-top: 72px;
  z-index: 9;
  transition: 0.38s ease-in-out;
  overflow: auto;
}
@media (max-width: 1024px) {
  .menu {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .menu {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .menu {
    --container-width: 100%;
  }
}
.menu--open {
  left: 0;
}
.menu__search {
  padding: 24px;
}
.menu__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu__container-box {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px;
}
.menu__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.menu__actions-icon {
  font-size: 32px;
  color: #7a7a7a;
}
.menu__actions-text {
  color: #7a7a7a;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 768px) {
  .menu__container {
    grid-area: full;
  }
}
.header {
  background-color: #ffffff;
}
.header--border {
  border-bottom: 1px solid #e8eaec;
}

@media (max-width: 1024px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 10;
  }
}
.breadcrumb {
  padding-top: 30px;
  padding-bottom: 30px;
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .breadcrumb {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .breadcrumb {
    --container-width: 100%;
  }
}
.breadcrumb__wrapper {
  grid-area: center;
}
.breadcrumb__wrapper span {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.breadcrumb__wrapper span:first-child {
  display: flex;
  align-items: center;
}
.breadcrumb__wrapper span span:first-child a {
  padding-left: 0;
}
.breadcrumb > span > span:not(:first-child) {
  margin-left: 20px;
}
.breadcrumb a,
.breadcrumb_last {
  font-size: 14px;
  line-height: 20px;
  color: #18348e;
  text-align: left;
  transition: color 0.38s ease-in-out;
  position: relative;
  padding-left: 45px;
}
.breadcrumb a::before,
.breadcrumb_last::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 8.00146L4.93281 1L4 1.92557L10.133 8.00146L4 14.0761L4.93281 15L12 8.00146Z" fill="%23F58422"/></svg>');
  padding-right: 15px;
  padding-left: 15px;
  font-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.breadcrumb_last {
  color: #1d2b40;
}
.breadcrumb span:first-child > a::before {
  display: none;
}
@media (max-width: 1024px) {
  .breadcrumb {
    padding-top: 125px;
  }
}
@media (max-width: 576px) {
  .breadcrumb__wrapper span:first-child {
    flex-wrap: wrap;
  }
  .breadcrumb a,
  .breadcrumb_last {
    padding-left: 17px;
  }
  .breadcrumb a::before,
  .breadcrumb_last::before {
    padding-left: 0;
  }
}
.subtitle {
  color: #8e95a0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.subtitle--white {
  color: #ffffff;
}
.heading {
  display: grid;
  gap: 12px;
}
.slider {
  width: 55%;
  width: 100%;
  max-width: 680px;
}
.slider__container {
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  border: 1px solid #efefef;
  border-radius: 16px;
  overflow: hidden;
}
.slider__thumbs {
  margin-top: 12px;
}
.slider__thumbs-item {
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  padding: 8px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #efefef;
  height: 96px;
  cursor: pointer;
  transition: border-color 0.38s ease-in-out;
}
.slider__thumbs-item.swiper-slide-thumb-active {
  border-color: #90a6c8;
}
.slider__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slider__swiper {
  position: relative;
}
.slider__slide {
  height: clamp(22.5rem, 28.846vw + 3.462rem, 30rem);
}
.slider__slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.slider__btn {
  border-radius: 50%;
  width: clamp(2.25rem, 2.885vw + 0.346rem, 3rem);
  height: clamp(2.25rem, 2.885vw + 0.346rem, 3rem);
  background-color: #8e95a0;
  z-index: 2;
}
.slider__btn::after {
  color: #ffffff;
  font-size: 16px;
}
.slider__btnPrev {
  left: -24px;
}
.slider__btnNext {
  right: -24px;
}

@media (max-width: 1536px) {
  .slider {
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .slider {
    max-width: unset;
    width: 100%;
  }
  .slider__slide {
    height: 322px;
  }
  .slider__btn {
    display: none;
  }
}
.prose {
  max-width: none;
  --tw-prose-body: var(--prose-text);
  --tw-prose-headings: var(--prose-title);
  --tw-prose-lead: var(--prose-text);
  --tw-prose-links: var(--prose-link);
  --tw-prose-bold: var(--prose-text);
  --tw-prose-counters: var(--prose-counter);
  --tw-prose-bullets: var(--prose-bullet);
  --tw-prose-hr: var(--prose-text);
  --tw-prose-quotes: var(--prose-text);
  --tw-prose-quote-borders: var(--color-primary, #005f75);
  --tw-prose-captions: var(--prose-text);
  --tw-prose-kbd: var(--prose-text);
  --tw-prose-th-borders: var(--prose-text);
  --tw-prose-td-borders: var(--prose-text);
}
.prose--blog {
  /* цвет текста */
  --prose-text: inherit;
  /* цвет заголовков */
  --prose-title: inherit;
  /* цвет ссылок */
  --prose-link: inherit;
  /* цвет маркеров списков */
  --prose-bullet: inherit;
  /* цвет цифр списка */
  --prose-counter: inherit;
}
.prose--blog p {
  color: #1d2b40;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  line-height: 1.55;
  margin-bottom: 24px;
}
.prose--blog p:last-child {
  margin-bottom: 0;
}
.about {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .about {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .about {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .about {
    --container-width: 100%;
  }
}
.about__container {
  grid-area: center;
  border-radius: 16px;
  display: flex;
  position: relative;
  gap: clamp(1.875rem, 10.817vw + -5.264rem, 4.688rem);
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  justify-content: space-between;
  border-radius: 16px;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.about__info {
  width: 45%;
  position: relative;
  padding: clamp(1.875rem, 9.135vw + -4.154rem, 4.25rem);
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(0.313rem, 3.606vw + -2.067rem, 1.25rem);
}
.about-slider {
  padding-top: clamp(1.5rem, 4.327vw + -1.356rem, 2.625rem);
  gap: clamp(0rem, 11.538vw + -7.615rem, 3rem);
  background: unset;
  overflow: visible;
  padding-bottom: clamp(3rem, 3.846vw + 0.462rem, 4rem);
}
.about-slider .about__info {
  padding: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
}
.about__heading {
  display: grid;
  gap: 12px;
}
.about__card {
  width: clamp(31.25rem, 33.654vw + 9.038rem, 40rem);
  height: clamp(33.125rem, 26.442vw + 15.673rem, 40rem);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.about__card--height::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(41, 70, 112, 0) 47.73%,
    #294670 100%
  );
  height: clamp(28.75rem, 33.654vw + 6.538rem, 37.5rem);
}
.about__card-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about__card-box {
  width: 75%;
  padding: clamp(1.25rem, 2.404vw + -0.337rem, 1.875rem);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.about__card-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.about__card-text {
  color: #ffffff;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  line-height: clamp(1.5rem, 0.962vw + 0.865rem, 1.75rem);
}

@media (max-width: 1024px) {
  .about__container {
    gap: 48px;
    flex-direction: column;
  }
  .about__info {
    width: 100%;
    padding: 0 24px;
    padding-top: 48px;
    gap: 24px;
  }
  .about__info-wrapper {
    text-align: center;
  }
  .about__card {
    width: 100%;
    height: 343px;
  }
  .about__card--height {
    height: 322px;
  }
  .about__card-box {
    width: 100%;
  }
  .about-slider {
    gap: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
  }
  .about-slider .about__info {
    padding: 0;
  }
}
.article-block {
  padding-top: clamp(1.5rem, 6.25vw + -2.625rem, 3.125rem);
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .article-block {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .article-block {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .article-block {
    --container-width: 100%;
  }
}
.article-block__container {
  display: grid;
  gap: 44px;
  grid-area: center;
}
.article-block__image {
  width: 100%;
  height: 576px;
  border-radius: 8px;
  object-fit: cover;
  overflow: hidden;
  max-width: 860px;
}
@media (max-width: 1024px) {
  .article-block__image {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .article-block__image {
    height: 200px;
  }
}
.article-block__preview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #90a6c8;
}
.article-block__preview-text {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
  color: #1d2b40;
}
.article-block__preview-date {
  color: #8e95a0;
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
}
.contacts {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .contacts {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .contacts {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .contacts {
    --container-width: 100%;
  }
}
.contacts__container {
  grid-area: center;
  display: grid;
  gap: 48px;
}
.contacts__card {
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  padding: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
  border-radius: 16px;
  gap: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 48px;
}
.contacts__title {
  color: #18348e;
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.contacts__map {
  width: 100%;
  height: 0;
  min-height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.contacts__map .ymaps3x0--map-copyrights__container {
  display: none !important;
}
.contacts__map .ymaps3x0--map-container {
  position: unset;
}
.contacts__map .ymaps3x0--map-copyrights__logo {
  display: none;
}
.contacts__map .ymaps3--map-copyrights__container {
  display: none !important;
}
.contacts__map .ymaps3--map-container {
  position: unset;
}
.contacts__map .ymaps3--map-copyrights__logo {
  display: none;
}
.contacts__adres {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.contacts__name {
  color: #18348e;
  font-size: 16px;
  line-height: 1.2;
}
.contacts__val {
  color: #1d2b40;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts__list-item {
  display: flex;
  gap: 8px;
}
.contacts__links {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts__links-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: clamp(1.875rem, 10.817vw + -5.264rem, 4.688rem);
  row-gap: 5px;
}

@media (max-width: 1024px) {
  .contacts__map {
    height: 300px;
  }
  .contacts__card {
    grid-template-columns: 100%;
  }
  .contacts__card-wrapper {
    flex-direction: column;
  }
  .contacts__info,
  .contacts__links {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .contacts__list-item {
    flex-direction: column;
    gap: 5px;
  }
  .contacts__list-item .contacts__name {
    width: 100%;
  }
}
.certificates {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .certificates {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .certificates {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .certificates {
    --container-width: 100%;
  }
}
.certificates__container {
  grid-area: center;
}
.certificates__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .certificates__heading {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
.certificates__wrapper {
  position: relative;
}
.certificates__title {
  font-weight: 700;
  font-size: clamp(1.25rem, 6.731vw + -3.192rem, 3rem);
  line-height: 1.2;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #18348e;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .certificates__title {
    margin-bottom: 12px;
  }
}
.certificates__title--size-small {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #18348e;
}
@media (max-width: 1024px) {
  .certificates__title--size-small {
    font-size: 20px;
  }
}
.certificates__title--size-medium {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 3%;
  color: #18348e;
}
@media (max-width: 1024px) {
  .certificates__title--size-medium {
    font-size: 24px;
  }
}
.certificates__slider-img {
  object-fit: contain;
  width: 100%;
  border-radius: 8px;
}
.certificates__slider-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #18348e;
  padding-inline: 24px;
  flex: 1;
  padding-bottom: 48px;
}
.certificates__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.certificates__slider .swiper-slide {
  height: auto !important;
}
.certificates__link {
  outline: none;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  border-radius: 8px;
  border: 1px solid #efefef;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
}
.certificates__link img {
  flex-shrink: 0;
}
.certificates__link-title {
  flex: 1;
}
@media (max-width: 768px) {
  .certificates__link {
    gap: 12px;
  }
}
.certificates__pagination {
  margin-top: 24px;
  text-align: center;
}
.certificates .swiper-pagination-bullet {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  opacity: 1;
  margin: 0;
}
.certificates .swiper-pagination-bullet-active {
  background-color: #18348e;
}
.certificates__btn {
  border-radius: 50%;
  width: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
  height: clamp(1.875rem, 4.327vw + -0.981rem, 3rem);
  background-color: #8e95a0;
}
.certificates__btn:after {
  font-size: 12px;
  color: #ffffff;
}
.certificates__btnPrev {
  left: -30px;
  top: 40%;
}
.certificates__btnNext {
  right: -30px;
  top: 40%;
}

@media (max-width: 1460px) {
  .certificates__btnPrev {
    left: -20px;
  }
  .certificates__btnNext {
    right: -20px;
  }
}
@media (max-width: 1380px) {
  .certificates__btnPrev {
    left: -10px;
  }
  .certificates__btnNext {
    right: -10px;
  }
}
@media (max-width: 1024px) {
  .certificates__btn {
    display: none;
  }
}
.callback-form {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .callback-form {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .callback-form {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .callback-form {
    --container-width: 100%;
  }
}
.callback-form__section {
  grid-column: full-start/full-end;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: auto;
  position: relative;
}
.callback-form__background {
  display: grid;
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.callback-form__image {
  width: 100%;
  height: 0;
  min-height: 100%;
  object-fit: cover;
  grid-area: 1/1;
}
.callback-form__gradient {
  background: linear-gradient(
    180deg,
    rgba(30, 53, 94, 0) -78%,
    rgba(30, 53, 94, 0.8) 73%
  );
  grid-area: 1/1;
}
.callback-form__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  grid-row: 1/-1;
  grid-column: center-start/center-end;
  padding-block: 128px;
  max-width: 598px;
}
@media (max-width: 1024px) {
  .callback-form__main {
    padding-block: 64px;
  }
}
.callback-form__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.callback-form__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #f7f7f8;
}
.callback-form__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: #f7f7f8;
}
.callback-form__form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.callback-form__container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.callback-form__group {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .callback-form__group {
    flex-direction: column;
  }
}
.callback-form__wrapper {
  display: flex;
  gap: 12px;
}
.callback-form__label {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #ffffff;
}
.callback-form__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #27a7e7;
  text-decoration: underline;
  text-decoration-style: solid;
}
.doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  border: 1px solid #efefef;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 16px;
  height: 100%;
}
.doc__wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.doc__icon {
  font-size: clamp(2rem, 0.962vw + 1.365rem, 2.25rem);
  color: #294670;
}
.doc__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #1d2b40;
}
.doc__download,
.doc__icon {
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 1;
  color: #18348e;
}
.documents {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .documents {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .documents {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .documents {
    --container-width: 100%;
  }
}
.documents__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4.808vw + -1.923rem, 2.5rem);
}
.documents__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1024px) {
  .documents__main {
    gap: 36px;
  }
}
.documents__btn {
  align-self: center;
}
.documents__title {
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 3%;
  text-transform: uppercase;
  font-size: 32px;
  color: #18348e;
}
@media (max-width: 1024px) {
  .documents__title {
    font-size: 20px;
  }
}
.documents__wrapper {
  position: relative;
}
.documents__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .documents__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.documents__slider {
  width: 100%;
}
.mega-table {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .mega-table {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .mega-table {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .mega-table {
    --container-width: 100%;
  }
}
.mega-table__container {
  grid-area: full;
}
.mega-table__content {
  grid-area: center;
}
.mega-table__title {
  font-size: clamp(1.625rem, 1.442vw + 0.673rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 2.885vw + -0.279rem, 2.375rem);
  text-transform: uppercase;
  color: #1d2b40;
  margin-bottom: clamp(0.938rem, 1.202vw + 0.144rem, 1.25rem);
}
.mega-table__wrapper {
  padding-inline: min(233px, var(--section-offset));
  width: 100%;
}
.mega-table table {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  position: relative;
}
.mega-table table thead {
  position: sticky;
  top: 0;
  z-index: 9;
}
.mega-table table thead tr th {
  font-size: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  line-height: 1.2;
  background-color: #18348e;
  font-weight: 700;
  text-align: center;
  height: 44px;
  padding: 4px;
  color: #ffffff;
  outline: 0.5px solid #90a6c8;
}
.mega-table table thead tr:nth-child(2) th {
  height: 60px;
}
.mega-table table thead tr:nth-child(2) th:nth-child(1) {
  padding-inline: 5px;
}
.mega-table table thead tr:nth-child(2) th:nth-child(2) {
  padding-inline: 12px;
}
.mega-table table td {
  font-size: clamp(0.75rem, 0.481vw + 0.433rem, 0.875rem);
  line-height: 1.2;
  color: #1d2b40;
  text-align: center;
  padding: 4px;
  font-weight: 400;
  height: 44px;
  outline: 1px solid #90a6c8;
}
.mega-table table tbody tr:nth-child(even) {
  background-color: white;
}
.mega-table table tbody tr:hover {
  background-color: #a0b4d2;
  text-shadow:
    0px 0px 1em rgba(248, 249, 250, 0.3019607843),
    0px 0px 2px rgba(248, 249, 250, 0.6392156863);
}
.mega-table table tbody tr td:first-child {
  font-weight: 700;
  color: #1d2b40;
}

@media (max-width: 1024px) {
  .mega-table__container {
    overflow-y: auto;
    overflow-x: auto;
    max-height: 480px;
    border-bottom: 1px solid #90a6c8;
  }
}
.faded {
  opacity: 0px;
}
.documents-table {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 128px;
  margin-top: 64px;
}
@media (max-width: 1024px) {
  .documents-table {
    gap: 36px;
    margin-bottom: 48px;
    margin-top: 36px;
  }
}
.documents-table__section {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .documents-table__section {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .documents-table__section {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .documents-table__section {
    --container-width: 100%;
  }
}
.documents-table__content {
  grid-area: center;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .documents-table__content {
    gap: 22px;
  }
}
.documents-table__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 155%;
  letter-spacing: 0%;
  color: #1d2b40;
}
@media (max-width: 1024px) {
  .documents-table__text {
    font-size: 18px;
  }
}
.documents-table__divider {
  height: 1px;
  background-color: #90a6c8;
  width: 100%;
}
.documents-table__micro-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #1d2b40;
}
@media (max-width: 1024px) {
  .documents-table__micro-text {
    font-size: 14px;
  }
}
.error {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  padding-top: 50px;
}
@media (max-width: 1024px) {
  .error {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .error {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .error {
    --container-width: 100%;
  }
}
@media (max-width: 1024px) {
  .error {
    padding-top: 20px;
  }
}
.error__container {
  grid-area: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.error__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.error__gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
}
.error__image {
  object-fit: cover;
  height: 100%;
  width: clamp(20rem, 76.923vw + -30.769rem, 40rem);
  max-width: 100%;
}
@media (max-width: 1024px) {
  .error__image {
    width: clamp(18.75rem, 48.077vw + -12.981rem, 31.25rem);
  }
}
@media (max-width: 576px) {
  .error__image {
    width: clamp(17.5rem, 9.615vw + 11.154rem, 20rem);
  }
}
.error__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 16px;
  align-items: center;
  padding: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .error__content {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
@media (max-width: 576px) {
  .error__content {
    padding: 24px;
  }
}
.error__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}
@media (max-width: 1024px) {
  .error__info {
    max-width: 100%;
    width: 100%;
  }
}
.error__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.error__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8e95a0;
}
.error__subtitle {
  font-weight: 700;
  font-size: clamp(1.938rem, 4.087vw + -0.76rem, 3rem);
  line-height: 1.2;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #18348e;
}
.error__text {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
  color: #1d2b40;
}

@media (max-width: 768px) {
  .error__info {
    align-items: center;
    text-align: center;
  }
}
.card {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  border: 1px solid #efefef;
  display: grid;
  grid-template-rows: auto 1fr;
}
.card__photo {
  object-fit: cover;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.card__photo--height-primary {
  height: 230px;
}
.card__photo--height-secondary {
  height: 310px;
}
.card__more {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #1d2b40;
  display: grid;
  align-items: end;
}
.card__wrapper {
  position: relative;
  border: 1px solid #e8eaec;
  border-top: 0;
  padding: 24px;
  display: flex;
  padding-bottom: 48px;
  flex-direction: column;
  gap: 16px;
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.card__wrapper--height {
  min-height: 255px;
}
.card__date {
  color: #8e95a0;
  font-size: 14px;
  line-height: 1.45;
}
.card__title {
  color: #1d2b40;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  color: #18348e;
}
.card__text {
  color: #8e95a0;
  font-size: clamp(0.875rem, 0.481vw + 0.558rem, 1rem);
  line-height: clamp(1.25rem, 0.962vw + 0.615rem, 1.5rem);
  -webkit-line-clamp: 10;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pagination {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* кнопки назад и вперёд */
  /* элементы страниц */
}
.pagination a {
  cursor: pointer;
  transition: color 0.38s ease-in-out;
}
.pagination__prev,
.pagination__next {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.38s ease-in-out;
  margin-left: 8px;
  background-color: #d7d7d7;
  color: #8e95a0;
}
@media (max-width: 1024px) {
  .pagination__prev,
  .pagination__next {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 993px) {
  .pagination__prev:hover:hover,
  .pagination__next:hover:hover {
    background-color: #8e95a0;
    color: white;
  }
}
.pagination__prev {
  margin-left: unset;
  margin-right: 8px;
}
.pagination__prev::before {
  transform: rotate(180deg);
}
.pagination a:not(.pagination__prev, .pagination__next) {
  width: 48px;
  height: 48px;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90a6c8;
}
@media (max-width: 1024px) {
  .pagination a:not(.pagination__prev, .pagination__next) {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.pagination .active {
  color: #18348e !important;
}
.news {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .news {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .news {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .news {
    --container-width: 100%;
  }
}
.news__container {
  grid-area: center;
  display: grid;
  gap: 48px;
  padding-top: 34px;
}
@media (max-width: 1024px) {
  .news__container {
    gap: 24px;
    padding-top: 10px;
  }
}
.news__signature {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: #8e95a0;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.news__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news .title {
  margin: unset;
}
.news__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .news__content {
    gap: 12px;
  }
}
.news__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.55;
  color: #1d2b40;
}
@media (max-width: 1024px) {
  .news__text {
    font-size: 18px;
  }
}
.news__wrapper {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .news__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .news__wrapper {
    grid-template-columns: 1fr;
  }
}
.description {
  padding-bottom: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .description {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .description {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .description {
    --container-width: 100%;
  }
}
.description__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  color: #8e95a0;
  font-size: 18px;
  line-height: 28px;
}
.description__container h2,
.description__container h3 {
  font-size: clamp(1.625rem, 1.442vw + 0.673rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 2.885vw + -0.279rem, 2.375rem);
  text-transform: uppercase;
  color: #18348e;
}
.description__container ul li {
  position: relative;
  padding-left: clamp(0.938rem, 1.202vw + 0.144rem, 1.25rem);
  margin-bottom: 4px;
}
.description__container ul li::before {
  content: "";
  border-radius: 50%;
  background-color: #8e95a0;
  width: 2px;
  height: 2px;
  position: absolute;
  left: clamp(0.438rem, 0.721vw + -0.038rem, 0.625rem);
  top: 50%;
  transform: translateY(-50%);
}
.description__title {
  padding-bottom: 24px;
  border-bottom: 1px solid #90a6c8;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  padding-bottom: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
}
.product__photo {
  object-fit: contain;
  width: 100%;
  height: 260px;
}
.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product__title {
  color: #18348e;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.product__text {
  color: #1d2b40;
  font-size: 18px;
  line-height: 1.55;
}
.catalog {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  padding-top: 34px;
}
@media (max-width: 1024px) {
  .catalog {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .catalog {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .catalog {
    --container-width: 100%;
  }
}
.catalog__container {
  grid-area: center;
  display: grid;
  gap: 40px;
}
.catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.962vw + 0.365rem, 1.25rem);
}
.catalog__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
}
.catalog__cards--col4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
}
.catalog__text {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
  color: #1d2b40;
}

@media (max-width: 1536px) {
  .catalog__cards--col4 {
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
  }
}
@media (max-width: 1024px) {
  .catalog__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .catalog__cards {
    grid-template-columns: 1fr;
  }
}
.table {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .table {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .table {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .table {
    --container-width: 100%;
  }
}
.table__container {
  grid-area: center;
}
.table__title {
  font-size: clamp(1.625rem, 1.442vw + 0.673rem, 2rem);
  font-weight: 700;
  line-height: clamp(1.625rem, 2.885vw + -0.279rem, 2.375rem);
  text-transform: uppercase;
  color: #1d2b40;
  margin-bottom: clamp(0.938rem, 1.202vw + 0.144rem, 1.25rem);
}
.table__wrapper {
  width: 100%;
  overflow: auto;
}
.table__wrapper::-webkit-scrollbar {
  width: 13px;
}
.table__wrapper::-webkit-scrollbar-track {
  background: #e7e7e7;
}
.table__wrapper::-webkit-scrollbar-thumb {
  background-color: #e0eff9;
  border-radius: 10px;
  border: 6px solid #ffffff;
}
.table table {
  min-width: 900px;
  width: 100%;
  text-align: left;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  position: relative;
}
.table table thead {
  background-color: #18348e;
  position: sticky;
  top: 0;
  z-index: 20;
}
.table table thead tr {
  background-color: #18348e;
}
.table table thead tr th {
  background-color: #18348e;
}
.table table thead tr:first-child th {
  width: 50%;
}
.table table thead tr:last-child th {
  width: 25%;
}
.table table th,
.table table td {
  padding: 14px 16px;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  line-height: 1.55;
  color: #1d2b40;
}
.table table tr {
  border-bottom: 1px solid #90a6c8;
}
.table table tr:last-child {
  border-bottom: unset;
}
.table table thead tr,
.table table thead td {
  outline: unset;
  border: unset;
}
.table table th {
  font-weight: 400;
  color: #ffffff;
}
.choices__inner {
  width: 100%;
  padding: 12px 24px !important;
  background-color: #ffffff;
  border: 2px solid #e7e7e7;
  border-radius: 32px !important;
}
.choices__item {
  white-space: break-spaces;
  font-size: clamp(0.938rem, 0.24vw + 0.779rem, 1rem);
  font-weight: 400;
  line-height: 24px;
  color: #1d2b40 !important;
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  width: 100% !important;
  background-color: #ffffff;
  padding: 0px;
  max-height: 245px;
  overflow-y: auto;
  margin-top: 10px;
  border: 1px solid #cfd6dc;
  border-radius: 16px;
}
.choices__list--dropdown::-webkit-scrollbar,
.choices__list[aria-expanded]::-webkit-scrollbar {
  width: 10px;
}
.choices__list--dropdown::-webkit-scrollbar-track,
.choices__list[aria-expanded]::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 16px;
}
.choices__list--dropdown::-webkit-scrollbar-thumb,
.choices__list[aria-expanded]::-webkit-scrollbar-thumb {
  background-color: #d42d24;
  border-radius: 16px;
  border: 3px solid #ffffff;
}
.choices__list--dropdown .choices__list--dropdown,
.choices__list--dropdown .choices__list[aria-expanded],
.choices__list[aria-expanded] .choices__list--dropdown,
.choices__list[aria-expanded] .choices__list[aria-expanded] {
  border: 1px solid #e6e6e6;
}
.choices__list--dropdown
  .choices__list--dropdown
  .choices__item--selectable.is-highlighted,
.choices__list--dropdown
  .choices__list[aria-expanded]
  .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded]
  .choices__list--dropdown
  .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded]
  .choices__list[aria-expanded]
  .choices__item--selectable.is-highlighted {
  background: transparent;
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 12px 16px;
  color: #1d2b40 !important;
}
.choices__list--single {
  padding: 0;
}
.choices[data-type*="select-one"]::after {
  content: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99854 12L15 4.93281L14.0744 4L7.99854 10.133L1.92393 4L1 4.93281L7.99854 12Z' fill='%238E95A0'/%3e%3c/svg%3e ");
  font-family: "icomoon" !important;
  right: 16px;
  border: none;
  width: 16px;
  height: 16px;
  font-size: 16px;
  margin-top: -10px;
}
.choices[data-type*="select-one"].is-open::after {
  transform: rotate(-180deg);
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f7f7f8;
}

.is-focused .choices__inner,
.is-open .choices__inner,
.choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-radius: 8px;
  outline: unset;
  border: 2px solid #e7e7e7;
}

@media (max-width: 1024px) {
  .choices__item {
    font-size: 16px;
  }
}
.questionnaire {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  padding-top: 34px;
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .questionnaire {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .questionnaire {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .questionnaire {
    --container-width: 100%;
  }
}
@media (max-width: 1024px) {
  .questionnaire {
    padding-bottom: 24px;
    padding-top: 10px;
  }
}
.questionnaire__container {
  grid-area: center;
}
.questionnaire__signature {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8e95a0;
}
.questionnaire__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.55;
  color: #1d2b40;
}
@media (max-width: 1024px) {
  .questionnaire__text {
    font-size: 18px;
  }
}
.questionnaire__wrapper {
  width: 97%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 2.404vw + -0.962rem, 1.25rem);
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  line-height: clamp(1.375rem, 1.442vw + 0.423rem, 1.75rem);
  color: #8e95a0;
  margin-bottom: clamp(1.875rem, 2.404vw + 0.288rem, 2.5rem);
}
.questionnaire__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.questionnaire .choices {
  margin: unset;
}
.questionnaire__bottom {
  display: grid;
  grid-template-columns: auto 250px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .questionnaire__bottom {
    grid-template-columns: 1fr;
  }
}
.questionnaire__bottom-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.questionnaire__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  padding: 48px;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .questionnaire__form {
    border-radius: 8px;
    padding: 24px;
  }
}
.questionnaire__form-politic {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #8e95a0;
}
.questionnaire__form-politic a {
  text-decoration: underline;
  text-decoration-style: solid;
}
.questionnaire__form-textarea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1024px) {
  .questionnaire__form-textarea {
    gap: 12px;
  }
}
.questionnaire__form-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.questionnaire__form-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1024px) {
  .questionnaire__form-main {
    gap: 24px;
  }
}
.questionnaire__form-title {
  color: #18348e;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
}
.questionnaire__form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 24px;
  row-gap: 26px;
}
@media (max-width: 1024px) {
  .questionnaire__form-inputs {
    column-gap: 12px;
    row-gap: 13px;
  }
}
.questionnaire__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.questionnaire__form-wrapper--full {
  grid-column: span 3;
}
.questionnaire__form-label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  padding-left: 24px;
  color: #1d2b40;
}
@media (max-width: 1024px) {
  .questionnaire__form-label {
    padding-left: 24px;
  }
}
.questionnaire__form-label--blueDark {
  color: #1d2b40;
}
.questionnaire__form-label--politic {
  font-size: 14px;
  line-height: 20px;
}
.questionnaire__form-label--politic a {
  position: relative;
  transition: color 0.38s ease-in-out;
}
.questionnaire__form-label--politic a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #8e95a0;
  transition: 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .questionnaire__form-label--politic a:hover {
    color: #d42d24;
  }
  .questionnaire__form-label--politic a:hover::after {
    background-color: #d42d24;
  }
}
.questionnaire__form__group {
  display: contents;
}
.questionnaire__form-checkboxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: clamp(1.25rem, 2.404vw + -0.337rem, 1.875rem);
  row-gap: 8px;
}
.questionnaire__form-checkboxs--radios {
  padding-block: 12px;
  padding-left: 24px;
  width: 35%;
  grid-template-columns: 1fr 1fr;
}
.questionnaire__form-radiosItem {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 1024px) {
  .questionnaire__wrapper {
    width: 100%;
  }
  .questionnaire__form-inputs {
    grid-template-columns: 1fr 1fr;
  }
  .questionnaire__form-wrapper--full {
    grid-column: span 2;
  }
  .questionnaire__form-label {
    font-size: 16px;
  }
  .questionnaire__form-label--politic {
    font-size: 14px;
  }
  .questionnaire__form-checkbox {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #1d2b40;
  }
  .questionnaire__form-radio {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #1d2b40;
  }
}
@media (max-width: 768px) {
  .questionnaire__form-inputs {
    grid-template-columns: 1fr;
  }
  .questionnaire__form-wrapper--full {
    grid-column: span 1;
  }
  .questionnaire__form-label--politic {
    width: 90%;
  }
  .questionnaire__form-checkboxs {
    grid-template-columns: 1fr;
  }
  .questionnaire__form-checkboxs--radios {
    grid-template-columns: 1fr 1fr;
  }
}
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.885vw + -1.154rem, 1.5rem);
  width: 100%;
  padding-block: 8px;
}
.pages--mb {
  margin-bottom: clamp(2.5rem, 9.615vw + -3.846rem, 5rem);
}
.pages__arrow {
  color: #8e95a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  transition: 0.38s ease-in-out;
  transition-property: color, background-color;
  transform: rotate(180deg);
  padding: 12px;
  border-radius: 99999px;
  background: #d7d7d7;
  width: 48px;
  height: 48px;
}
.pages__arrow:last-child {
  transform: rotate(0deg);
}
@media screen and (min-width: 993px) {
  .pages__arrow:hover {
    color: #ffffff;
    background: #8e95a0;
  }
}
.pages__number {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.885vw + -1.154rem, 1.5rem);
}
.pages__number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  height: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  color: #90a6c8;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  transition: all 0.38s ease-in-out;
}
@media screen and (min-width: 993px) {
  .pages__number-item:hover {
    color: #18348e;
  }
}
.pages__number-item--active {
  pointer-events: none;
  color: #18348e;
}
.search-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: clamp(1.5rem, 1.923vw + 0.231rem, 2rem);
  border-bottom: 1px solid #90a6c8;
}
.search-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #18348e;
}
.search-card__text {
  font-size: 16px;
  line-height: 1.55;
  color: #1d2b40;
}
.search-section {
  flex-grow: 1;
  padding-top: clamp(1.5rem, 6.25vw + -2.625rem, 3.125rem);
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
}
@media (max-width: 1024px) {
  .search-section {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .search-section {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .search-section {
    --container-width: 100%;
  }
}
.search-section__container {
  grid-area: center;
  display: grid;
  gap: clamp(3rem, 3.846vw + 0.462rem, 4rem);
}
.search-section__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.search-section__cards {
  display: grid;
  gap: 24px;
}
.search-section__heading {
  display: grid;
  gap: 24px;
}
.search-section__result {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: #18348e;
  padding-block: 12px;
  text-align: center;
}
.search-section__content {
  background: linear-gradient(180deg, #f7f7f8 0%, #edeaea 100%);
  border: 1px solid #efefef;
  border-radius: 16px;
  padding: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
  display: grid;
  gap: clamp(1.5rem, 5.769vw + -2.308rem, 3rem);
}
.subcategory-catalog {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  padding-top: 34px;
}
@media (max-width: 1024px) {
  .subcategory-catalog {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .subcategory-catalog {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .subcategory-catalog {
    --container-width: 100%;
  }
}
.subcategory-catalog__container {
  grid-area: center;
  display: grid;
  gap: 24px;
}
.subcategory-catalog__header {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 1024px) {
  .subcategory-catalog__header {
    gap: 24px;
  }
}
.subcategory-catalog__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.962vw + 0.365rem, 1.25rem);
}
.subcategory-catalog__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.625rem, 0.481vw + 0.308rem, 0.75rem);
}
@media (max-width: 1024px) {
  .subcategory-catalog__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .subcategory-catalog__cards {
    grid-template-columns: 1fr;
  }
}
.subcategory-catalog__text {
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
  color: #1d2b40;
}
.subcategory-catalog__text-blue {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 3%;
  text-transform: uppercase;
  color: #18348e;
}
@media (max-width: 1024px) {
  .subcategory-catalog__text-blue {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .catalog__cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .catalog__cards {
    grid-template-columns: 1fr;
  }
}
.advantages {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
  position: relative;
}
.advantages__icon {
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(58, 79, 110, 0.6);
  border: 1px solid #90a6c8;
}
.advantages__icon-svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.advantages__title {
  width: 85%;
  color: #ffffff;
  font-size: clamp(0.75rem, 1.442vw + -0.202rem, 1.125rem);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .advantages {
    width: 33%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .advantages {
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 80px auto;
    text-align: left;
  }
  .advantages__title {
    font-size: 18px;
  }
}
.hero {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  position: relative;
  height: 100%;
  min-height: 90vh;
  background: rgba(30, 53, 94, 0.8);
  padding-top: clamp(1.875rem, 7.212vw + -2.885rem, 3.75rem);
}
@media (max-width: 1024px) {
  .hero {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .hero {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .hero {
    --container-width: 100%;
  }
}
.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-blend-mode: color;
  background: #1e355e;
  background: linear-gradient(
    180deg,
    rgba(30, 53, 94, 0) 0%,
    rgba(30, 53, 94, 0.8) 100%
  );
  background: rgba(30, 53, 94, 0.5019607843);
}
.hero__container {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(1rem, 1.923vw + -0.269rem, 1.5rem);
  z-index: 1;
  gap: clamp(2.5rem, 11.538vw + -5.115rem, 5.5rem);
}
.hero__container-top {
  width: 80%;
  display: grid;
  gap: clamp(2.5rem, 5.769vw + -1.308rem, 4rem);
}
.hero__container-bottom {
  display: flex;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__heading {
  display: grid;
  gap: 24px;
}
.hero__text {
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
}
.hero__video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}
.hero__title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5.769vw + -1.308rem, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .hero {
    padding-block: 48px;
  }
  .hero__title {
    font-size: clamp(2.375rem, 2.885vw + 0.471rem, 3.125rem);
    hyphens: auto;
  }
  .hero__text {
    font-size: 18px;
  }
  .hero__container-bottom {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .hero__container-top {
    width: 100%;
    margin-bottom: 78px;
  }
  .hero__container-bottom {
    flex-wrap: wrap;
  }
}
.geography {
  --section-side: 16px;
  --section-container: var(--container-width);
  --section-offset: max(
    var(--section-side),
    calc((100vw - var(--section-container)) / 2)
  );
  --container-width: min(85vw, 1440px);
  display: grid;
  grid-template-columns: [full-start left-start] minmax(16px, 1fr) [right-start center-start] minmax(
      0,
      var(--container-width)
    ) [left-end center-end] minmax(16px, 1fr) [full-end right-end];
  grid-template-rows: [full-start left-start center-start right-start] auto [full-end left-end center-end right-end];
  background: linear-gradient(180deg, #90a6c8 0%, #e6e9f4 100%);
  padding-block: clamp(4rem, 15.385vw + -6.154rem, 8rem);
}
@media (max-width: 1024px) {
  .geography {
    --container-width: 920px;
  }
}
@media (max-width: 768px) {
  .geography {
    --container-width: 640px;
  }
}
@media (max-width: 576px) {
  .geography {
    --container-width: 100%;
  }
}
.geography__container {
  grid-area: right;
}
.geography__wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.962vw + 0.365rem, 1.25rem);
  margin-bottom: clamp(2.5rem, 2.404vw + 0.913rem, 3.125rem);
}
.geography__text {
  color: #ffffff;
  font-size: clamp(1.125rem, 1.442vw + 0.173rem, 1.5rem);
  line-height: 1.55;
}
.geography__content {
  display: flex;
  align-items: flex-start;
}
.geography__cities {
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 16px;
  column-gap: clamp(2rem, 8.654vw + -3.712rem, 4.25rem);
}
.geography__cities-item {
  color: #18348e;
  font-size: clamp(1rem, 0.481vw + 0.683rem, 1.125rem);
  line-height: 1.55;
}
.geography__map {
  width: clamp(38.625rem, 100.962vw + -28.01rem, 64.875rem);
  position: relative;
  height: clamp(30rem, 15.144vw + 20.005rem, 33.938rem);
}
.geography__map img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.geography__map-local {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: absolute;
  min-width: 70px;
  max-width: 70px;
  transition: all 0.38s ease-in-out;
  z-index: 3;
}
.geography__map-local:hover {
  transform: translateY(-10px);
}
.geography__map-local:hover .geography__map-city {
  opacity: 1;
}
.geography__map-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.563rem, 1.202vw + 0.769rem, 1.875rem);
  height: clamp(1.563rem, 1.202vw + 0.769rem, 1.875rem);
  transition-property: transform;
  transition: 0.38s ease-in-out;
}
.geography__map-circle {
  width: 8px;
  height: 8px;
  background-color: #4182cf;
  border-radius: 50%;
  z-index: 2;
}
.geography__map-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(162, 209, 238, 0.7) 0%,
    rgba(162, 209, 238, 0.7) 100%
  );
  border-radius: 50%;
  z-index: 1;
}
.geography__map-city {
  z-index: 3;
  text-align: center;
  color: #294670;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0;
  transition-property: opacity, transform;
  transition: 0.38s ease-in-out;
}

@media (max-width: 1024px) {
  .geography__container {
    overflow: hidden;
  }
  .geography__map {
    width: 96%;
  }
  .geography__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .geography__container {
    grid-area: center;
  }
  .geography__content {
    overflow-x: scroll;
  }
  .geography__map {
    width: 598px;
    height: 330px;
  }
}
@media (max-width: 576px) {
  .geography__container {
    grid-area: full;
  }
  .geography__wrapper,
  .geography__cities {
    padding-left: 24px;
    padding-right: 24px;
    grid-template-columns: 100%;
    gap: 24px;
  }
  .geography__wrapper-item,
  .geography__cities-item {
    font-size: 18px;
    line-height: 1.65;
  }
  .geography__content {
    gap: 20px;
  }
  .geography__map {
    width: 796px;
    height: 409px;
    margin-left: 24px;
  }
  .geography__map-wrapper {
    width: 20px;
    height: 20px;
  }
  .geography__map-circle {
    width: 5px;
    height: 5px;
  }
  .geography__map-local:nth-of-type(11) {
    display: none;
  }
}
