@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Указываем box sizing */

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

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #212121;
  font-family: gotham;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 50px;
  font-weight: 400;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.header.other {
  background: #002E6A;
}

.header__container {
  display: flex;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header__logo {
  position: relative;
  display: flex;
  width: 220px;
  flex-shrink: 0;
  margin-right: auto;
  z-index: 2;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__menu {
  display: flex;
  align-items: center;
}

.header__nav {
  margin-right: 145px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__nav-link {
  font-size: 16px;
}

.header__nav-link:hover {
  text-decoration: underline;
}

.header__nav-link.active {
  text-decoration: underline;
}

.header__search input {
  padding: 8px 20px;
  background: none;
  outline: none;
  border-radius: 20px;
  border: 0.5px solid #FFF;
  font-size: 16px;
  color: #ffffff;
  width: 210px;
  flex-shrink: 0;
}

.header__search input::-moz-placeholder {
  color: #ffffff;
}

.header__search input:-ms-input-placeholder {
  color: #ffffff;
}

.header__search input::placeholder {
  color: #ffffff;
}

.header__lang {
  position: relative;
  margin-left: 20px;
}

.header__lang:hover .header__lang-other {
  display: block;
}

.header__lang-active {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 20px;
  border: 0.5px solid #FFF;
  font-size: 16px;
  cursor: pointer;
}

.header__lang-active svg {
  flex-shrink: 0;
}

.header__lang-other {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  background: #002E6A;
  padding: 8px 10px;
  text-align: center;
  border-radius: 15px;
  border: 0.5px solid #FFF;
  width: 100%;
  display: none;
}

.header__lang-item {
  color: #ffffff;
  font-size: 14px;
}

.header__lang-item:hover {
  text-decoration: underline;
}

.header-space {
  padding-top: 108px;
}

.footer {
  position: relative;
  margin-top: auto;
  background: #002E6A;
  overflow: hidden;
}

.footer .hero__background-title {
  color: #011E48;
}

.footer__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  z-index: 2;
}

.footer__logo {
  display: block;
  max-width: 100%;
  width: 600px;
  height: auto;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.footer__nav-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}

.footer__nav-list li a:hover {
  text-decoration: underline;
}

.footer__nav-list li a,
.footer__nav-list li span {
  color: #FFF;
  font-size: 16px;
  line-height: 112%;
}

.footer__ast {
  background: #011E48;
  display: flex;
  justify-content: center;
  padding: 18px;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 115%;
}

.footer__ast span {
  opacity: 0.5;
}

.footer__ast a:hover {
  text-decoration: underline;
}

.breadcrumbs__container {
  padding: 50px 0 70px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  color: #212121;
  font-size: 14px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}

.breadcrumbs__list-link:hover {
  text-decoration: underline;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #212121;
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #0142A2 0%, #FFF 100%);
  overflow: hidden;
  padding-bottom: 20px;
}

.hero__container {
  position: relative;
  height: 100dvh;
  z-index: 2;
}

.hero__slider-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100dvh;
}

.hero__slider-item_info {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.hero__slider-item_title {
  color: #002E6A;
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
  max-width: 424px;
}

.hero__slider-item_text {
  color: #002E6A;
  font-size: 18px;
  line-height: 122%;
  max-width: 375px;
}

.hero__slider-item_img {
  height: 100%;
  width: auto;
}

.hero__slider-item_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__arrows {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__arrow {
  display: flex;
  transition: 0.2s ease-in-out;
}

.hero__arrow:hover {
  transform: scale(1.06);
}

.hero__down {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 0);
  z-index: 2;
  display: flex;
}

.hero__down svg path:nth-child(2) {
  -webkit-animation: downUp 1s ease-in-out infinite;
          animation: downUp 1s ease-in-out infinite;
}

@-webkit-keyframes downUp {
  0% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-2px);
  }
}

@keyframes downUp {
  0% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-2px);
  }
}

.hero__background-title {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  color: rgba(0, 46, 106, 0.1);
  z-index: 1;
  color: #FFF;
  font-size: clamp(100px, 100px + 300 * (100vw - 320px) / 1600, 400px);
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.3;
  pointer-events: none;
}

.service__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 550px;
  border-collapse: collapse;
}

.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.2s ease-in-out;
  border-top: 1px solid #979797;
  border-right: 1px solid #979797;
}

.service__item:nth-child(1) {
  border-left: 1px solid #979797;
}

.service__item:hover {
  background: #0141A2;
  color: #ffffff;
}

.service__item:hover .service__item-title {
  color: #ffffff;
}

.service__item:hover svg path {
  fill: #ffffff;
}

.service__item-center {
  position: relative;
  margin-bottom: 50px;
}

.service__item-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  max-width: 100%;
  width: 100%;
}

.service__item-num svg {
  width: 100%;
}

.service__item-num svg path {
  transition: 0.2s ease-in-out;
}

.service__item-img {
  position: relative;
  width: 250px;
  height: 300px;
  z-index: 2;
}

.service__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service__item-title {
  color: #3A4855;
  font-family: Gotham;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  max-width: 265px;
  margin-bottom: 15px;
  transition: 0.2s ease-in-out;
}

.service__item-desc {
  color: #FFF;
  font-size: 16px;
  line-height: 125%;
  max-width: 265px;
}

.about {
  position: relative;
  overflow: hidden;
  background: #002E6A;
}

.about__container {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.about__title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.about__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 450px 1fr;
  grid-template-columns: 450px 1fr;
  grid-gap: 100px;
}

.about__left {
  display: flex;
  flex-direction: column;
}

.about__subtitle {
  margin-bottom: 60px;
  color: #FFF;
  font-size: 80px;
  font-weight: 500;
  line-height: 100%;
}

.about__list {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  overflow: hidden;
}

.about__list::before {
  position: absolute;
  content: "";
  left: 2px;
  top: 8px;
  height: 100%;
  width: 2px;
  background: #ffffff;
}

.about__list-item {
  position: relative;
  font-size: 16px;
  line-height: 140%;
  padding-left: 20px;
}

.about__list-item::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
}

.about__right {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  width: 100%;
}

.about__text {
  color: #FFF;
  font-size: 16px;
  line-height: 150%;
}

.about__img {
  width: 100%;
  height: auto;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about .hero__background-title {
  line-height: 72%;
  color: #021D46;
}

.partner {
  background: #0141A2;
}

.partner__container {
  padding: 100px 0;
}

.partner__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 60px;
}

.partner__item {
  max-width: 130px;
}

.partner__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.feedback__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.feedback__form {
  display: flex;
  flex-direction: column;
  padding: 70px 100px;
  background: #ffffff;
  border-top: 1px solid #E6E6E6;
}

.feedback__form input {
  margin-bottom: 20px;
  border-radius: 6px;
  background: #F4F4F4;
}

.feedback__form input,
.feedback__form textarea {
  border-radius: 6px;
  background: #F4F4F4;
  color: #212121;
  font-size: 14px;
  padding: 14px 20px;
  border: none;
  outline: none;
}

.feedback__form textarea {
  height: 120px;
  resize: none;
}

.feedback__form button {
  margin-top: 20px;
  padding: 16px;
  width: 100%;
  border-radius: 6px;
  background: #AB052D;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.feedback__form button:hover {
  background: #002E6A;
}

.feedback__title {
  margin-bottom: 35px;
}

.feedback__image {
  width: 100%;
  height: 100%;
}

.feedback__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__container {
  padding-bottom: 80px;
}

.services__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 500px 1fr;
  grid-template-columns: 500px 1fr;
  align-items: start;
  grid-gap: 30px;
  margin-bottom: 50px;
}

.services__video {
  position: relative;
}

.services__video::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.57) 100%);
}

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

.services__controls {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services__controls div {
  display: flex;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
}

.services__image {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #979797;
  background: #0141A2;
  padding: 10px;
}

.services__image img {
  max-width: 450px;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services__subtitle {
  font-size: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #8A8A8A;
  margin-bottom: 50px;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.services__list-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 500px 1fr;
  grid-template-columns: 500px 1fr;
  grid-gap: 30px;
  align-items: start;
}

.services__list-item:not(:last-child) {
  padding-bottom: 40px;
}

.services__list-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 8px;
  left: 3px;
  background: #AB052D;
}

.services__list-title {
  position: relative;
  color: #3A4855;
  font-size: 18px;
  font-weight: 500;
  line-height: 111%;
  text-transform: uppercase;
  padding-left: 30px;
}

.services__list-title::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #AB052D;
  top: 6px;
  left: 0;
}

.services__list-text {
  color: #3A4855;
  font-size: 14px;
  line-height: 142%;
}

.benefits {
  position: relative;
  overflow: hidden;
}

.benefits__container {
  padding: 100px 0;
}

.benefits__title {
  text-align: center;
  margin-bottom: 100px;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

.benefits__item-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0141A2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits__item-img img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__item-title {
  color: #212121;
  text-align: center;
  font-size: 16px;
  line-height: 125%;
  opacity: 0.8;
}

.benefits .hero__background-title {
  color: #021D46;
  z-index: -1;
  opacity: 0.02;
}

.contact__container {
  padding-bottom: 50px;
}

.contact__title {
  padding-bottom: 30px;
  border-bottom: 1px solid #8A8A8A;
}

.contact__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 485px 1fr;
  grid-template-columns: 485px 1fr;
  grid-gap: 40px;
}

.contact__left {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 50px;
  background: #F4F4F4;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact__item svg {
  flex-shrink: 0;
}

.contact__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.contact__item-col span,
.contact__item-col a {
  color: #3A4855;
  font-size: 16px;
  font-weight: 500;
  line-height: 143%;
}

.contact__item-col a:hover {
  text-decoration: underline;
}

.contact__item-title {
  color: #3A4855;
  font-size: 16px;
  opacity: 0.8;
}

.contact__map {
  width: 100%;
  height: 100%;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.politics__container {
  padding-bottom: 100px;
}

.politics__text {
  color: #212121;
  font-size: 14px;
  line-height: 142%;
}

.empty__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding-bottom: 100px;
}

.empty__container img {
  width: auto;
  margin-bottom: 20px;
}

.empty__container p {
  color: #212121;
  font-size: 14px;
  line-height: 142%;
  opacity: 0.8;
}

.empty__container a {
  color: #fff;
  font-size: 14px;
  line-height: 142%;
  font-weight: 500;
  padding: 12px 20px;
  margin-top: 20px;
  background: #002E6A;
  border-radius: 20px;
}

.empty__container a:hover {
  text-decoration: underline;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 980px;
  }

  .title {
    font-size: 32px;
  }

  .header__container {
    padding: 20px 0;
  }

  .header__logo {
    width: 150px;
  }

  .header__nav {
    margin-right: 50px;
  }

  .header__nav-list {
    gap: 20px;
  }

  .hero__slider-item_title {
    font-size: 42px;
  }

  .service__item:nth-child(3) {
    border-left: 1px solid #979797;
  }

  .service__item-title {
    font-size: 22px;
  }

  .about__block {
    -ms-grid-columns: 350px 1fr;
    grid-template-columns: 350px 1fr;
    grid-gap: 50px;
  }

  .about__subtitle {
    font-size: 60px;
    margin-bottom: 30px;
  }

  .services__top {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
  }

  .services__list-item {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
  }

  .contact__block {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
  }

  .contact__left {
    padding: 25px;
  }
}

@media (max-width: 1240px) {
  .content {
    padding: 50px 0;
  }

  .service__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .title {
    font-size: 26px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #002E6A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    display: none;
  }

  .header__menu.active {
    display: flex;
  }

  .header__nav {
    margin-right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
  }

  .header__search input {
    text-align: center;
  }

  .footer .hero__background-title {
    line-height: 80%;
    bottom: 47px;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .footer__nav-item {
    align-items: center;
  }

  .footer__nav-list {
    align-items: center;
  }

  .breadcrumbs__container {
    padding: 30px 0 50px 0;
  }

  .hero__slider-item_title {
    color: #fff;
    text-shadow: 0 0 4px #000;
  }

  .hero__slider-item_text {
    color: #fff;
    text-shadow: 0 0 4px #000;
  }

  .hero__slider-item_img {
    position: absolute;
    top: 0;
    height: auto;
    right: 0;
    z-index: -1;
  }

  .about__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .about__subtitle {
    font-size: 42px;
  }

  .about__right {
    row-gap: 30px;
  }

  .feedback__container {
    position: relative;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__form {
    background: rgba(0, 46, 106, 0.7);
    padding: 50px 16px;
  }

  .feedback__title {
    color: #ffffff;
  }

  .feedback__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .services__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .services__image img {
    max-width: 100%;
  }

  .services__image {
    width: 100%;
    height: auto;
  }

  .services__list-item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .services__list-text {
    padding-left: 30px;
  }

  .benefits__container {
    padding: 80px 0;
  }

  .benefits__title {
    margin-bottom: 50px;
  }

  .benefits__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 400px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .service__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .service__item {
    border-left: 1px solid #979797;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}