@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:regular,700&display=swap&subset=cyrillic-ext");
[class*=container] {
  max-width: rem(1140);
  margin: 0 auto;
  padding: 0 rem(divide(30, 2));
}

[class^=_icon-]::before,
[class*=" _icon-"]::before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=_icon-]::before,
[class*=" _icon-"]::before {
  display: block;
}

._icon-phone:before {
  content: "e";
}

._icon-location:before {
  content: "2";
}

[class*=container] {
  max-width: 71.25rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

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

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: inherit;
}

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

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

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

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
body {
  min-width: 20rem;
  overflow-x: hidden;
  margin: 0;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #001d3d;
  font-size: 0.875rem;
  line-height: calc(16 / 0.875rem);
  counter-reset: number;
}
.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
html.menu-open body {
  overflow-y: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

.page {
  flex: 1 1 auto;
}
.red {
  color: red;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

._ibg-contain img {
  object-fit: contain;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.section {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 1140px) {
  .section {
    padding-top: calc(
        1.875rem + 70 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 1140px) {
  .section {
    padding-bottom: calc(
        1.875rem + 70 *
          ((100vw - 320px) / 820)
      );
  }
}

.button {
  display: inline-block;
  padding: 0.625rem 2.1875rem;
  border-radius: 0.9375rem;
  background-color: #d00000;
  box-shadow: 3px 6px 12px rgba(0, 29, 61, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.125;
  border: 2px solid transparent;
  transition: all 0.3s ease 0s;
}
@media (max-width: 1140px) {
  .button {
    font-size: calc(
        0.875rem + 2 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (any-hover: hover) {
  .button:hover {
    border: 2px solid #d00000;
    filter: drop-shadow(3px 6px 12px rgba(0, 29, 61, 0.2));
    background-color: #fff;
    color: #d00000;
  }
}
.button._fm {
  width: 100%;
}

.title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
.title:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 1140px) {
  .title:not(:last-child) {
    margin-bottom: calc(
        1.25rem + 30 *
          ((100vw - 320px) / 820)
      );
  }
}

.form {
  position: relative;
}
.form__input._error {
  box-shadow: 0 0 0.3125rem red;
  color: red;
}
.form__input._error::placeholder {
  color: red;
}
.form__error {
  left: 0;
  color: red;
  font-size: 0.75rem;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 29, 61, 0.5);
  top: 0;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease 0s;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup.open .popup__content {
  opacity: 1;
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
.popup__content {
  background-color: #fff;
  color: #000;
  max-width: 800px;
  padding: 30px;
  position: relative;
  opacity: 0;
  transition: all 0.8s ease 0s;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.popup__title {
  font-size: 40px;
  margin: 0px 0px 1em 0px;
}
.popup__form {
  padding-top: 1.25rem;
}
.popup button {
  margin: 0 auto;
}

.select {
  width: 100%;
  position: relative;
  z-index: 100;
  text-transform: uppercase;
}
.select.open .select__dropdown {
  display: block;
  background-color: #fff;
}
.select.open .select__input {
  border-bottom: none;
}
.select.open .select__backdrop {
  display: block;
}
.select.open::after {
  transform: rotate(-180deg);
  top: 25%;
}
.select__input {
  border: 1px solid #001d3d;
  border-radius: 5px;
  height: 1.4375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1875rem 0.9375rem 0.1875rem 0.3125rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  cursor: pointer;
}
.select__input span {
  pointer-events: none;
}
.select__dropdown {
  display: none;
  position: absolute;
  border: 1px solid #001d3d;
  border-radius: 5px;
  top: 1.4375rem;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
}
.select__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.select__backdrop {
  position: fixed;
  display: none;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
}
.select__item {
  padding: 0.1875rem 0.9375rem 0.1875rem 0.3125rem;
  display: flex;
  align-items: center;
  height: 1.4375rem;
  border-bottom: 1px solid #ccc;
}
.select__item.selected {
  background-color: #fff;
  color: #00509d;
}
.select__item:hover {
  background-color: #ebebeb;
  cursor: pointer;
  transition: 0.15s background-color ease-in;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #ebebeb;
}
.header__container {
  display: grid;
  grid-template-columns: minmax(18.75rem, 29.8125rem) 2.8125rem minmax(5.625rem, 10.5625rem);
  gap: 6.875rem;
  justify-content: space-between;
  align-items: center;
  min-height: 3.75rem;
}
@media (max-width: 61.99875em) {
  .header__container {
    gap: 2.5rem;
  }
}
@media (max-width: 47.99875em) {
  .header__container {
    min-height: 3.125rem;
    grid-template-columns: minmax(0, 21.875rem) 2.8125rem minmax(5.625rem, 10.5625rem);
    gap: 1.25rem;
  }
}
.header__lang-select {
  position: relative;
}
.header__lang-select::after {
  content: "";
  position: absolute;
  background-image: url("../images/icons/arrow.svg");
  right: 0.0625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  cursor: pointer;
}
.header__phone {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.125;
  text-align: right;
  position: relative;
  z-index: 2;
}
.header__phone::before {
  content: "";
  position: absolute;
  background-image: url("../images/icons/phone.svg");
  left: 0;
  top: -0.1875rem;
  width: 1.625rem;
  height: 1.625rem;
}

@media (max-width: 47.99875em) {
  .menu__body {
    z-index: 2;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    padding: 5.625rem 0.9375rem 1.875rem 0.9375rem;
    transition: left 0.3s ease 0s;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3.125rem;
    background-color: #ebebeb;
    z-index: 2;
    transition: left 0.3s ease 0s;
  }
  .menu-open .menu__body {
    left: 0;
  }
  .menu-open .menu__body::before {
    left: 0;
  }
}
.menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 0.3125rem;
}
@media (max-width: 47.99875em) {
  .menu__list {
    flex-direction: column;
    column-gap: 3.5rem;
  }
}
@media (max-width: 47.99875em) and (max-width: 1140px) {
  .menu__list {
    column-gap: calc(
        1.5625rem + 31 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 47.99875em) {
  .menu__item:not(:last-child) {
    text-align: right;
    margin-bottom: 1.875rem;
  }
}
.menu__link {
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0.1875rem 0.625rem;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .menu__link:hover {
    border: 1px solid #00509d;
    color: #00509d;
  }
}
@media (max-width: 47.99875em) {
  .menu__link {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .menu__link:focus {
    border: 1px solid #00509d;
    color: #00509d;
  }
}

.icon-menu {
  border: none;
  background: transparent;
  display: none;
}
@media (max-width: 47.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
    pointer-events: none;
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu span {
    transform: scale(0);
  }
  .menu-open .icon-menu::before {
    transform: rotate(-45deg);
    top: calc(50% - 0.0625rem);
  }
  .menu-open .icon-menu::after {
    transform: rotate(45deg);
    bottom: calc(50% - 0.0625rem);
  }
}

.home {
  background: linear-gradient(180deg, rgba(0, 80, 157, 0.08) 0%, rgba(0, 80, 157, 0) 100%);
}
.home__container {
  display: grid;
  grid-template-columns: minmax(18.75rem, 25rem) minmax(18.75rem, 25rem);
}
@media (max-width: 47.99875em) {
  .home__container {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}
.home__images {
  height: 28.125rem;
  background-image: url("../images/home/img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1140px) {
  .home__images {
    height: calc(
        18.75rem + 150 *
          ((100vw - 320px) / 820)
      );
  }
}
.home__info {
  align-self: center;
}
@media (max-width: 47.99875em) {
  .home__info {
    text-align: center;
  }
}

.info-home__title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.0416666667;
  color: #00509d;
}
@media (max-width: 1140px) {
  .info-home__title {
    font-size: calc(
        1.5rem + 24 *
          ((100vw - 320px) / 820)
      );
  }
}
.info-home__title:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 1140px) {
  .info-home__title:not(:last-child) {
    margin-bottom: calc(
        1.25rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.info-home__title span {
  color: #ffd500;
}
.info-home__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.125;
}
.info-home__text:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 1140px) {
  .info-home__text:not(:last-child) {
    margin-bottom: calc(
        1.25rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}

.info__container {
  display: grid;
  column-gap: 1.875rem;
}
@media (min-width: 47.99875em) {
  .info__container {
    grid-template-columns: minmax(18.75rem, 1fr) minmax(18.75rem, 1fr);
  }
}
.info__images img {
  max-width: 100%;
}
@media (max-width: 47.99875em) {
  .info__images {
    text-align: center;
  }
  .info__images:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .info__body-title {
    text-align: center;
  }
}
.info__body-text {
  line-height: 1.4285714286;
}
.info__body-text p:not(:last-child) {
  margin-bottom: 0.625rem;
}

.help {
  background: rgba(235, 235, 235, 0.3);
}
.help__title {
  text-align: center;
}
.help__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.625rem, 27.8125rem));
  row-gap: 1.875rem;
  column-gap: 1.875rem;
  justify-content: center;
}

.item-help {
  background: rgba(0, 80, 157, 0.1);
  box-shadow: 0px 4px 10px rgba(0, 29, 61, 0.1);
  border-radius: 5px;
  padding: 2.5rem 1.875rem;
}
@media (max-width: 47.99875em) {
  .item-help {
    padding: 1.875rem 0.9375rem;
  }
}
.item-help__header {
  display: flex;
  align-items: center;
}
.item-help__header:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.item-help__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.125;
  margin-left: 0.625rem;
}

.donat__title {
  text-align: center;
}
.donat__text:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 1140px) {
  .donat__text:not(:last-child) {
    margin-bottom: calc(
        1.875rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.donat__items {
  display: grid;
  grid-template-columns: repeat(2, 16.875rem);
  column-gap: 13.75rem;
  row-gap: 3.125rem;
  justify-content: center;
}
@media (max-width: 1140px) {
  .donat__items {
    column-gap: calc(
        3.125rem + 170 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 47.99875em) {
  .donat__items {
    grid-template-columns: 1fr;
  }
}
.item-donat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.item-donat__cirkle {
  width: 16.125rem;
  height: 16.125rem;
  border-radius: 50%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #00509d;
}
.item-donat__cirkle:not(:last-child) {
  margin-bottom: 3.125rem;
}
.item-donat__cirkle:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  clip: rect(0 200px 100px 0);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #ffd500;
}
.item-donat__cirkle:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  clip: rect(0 100px 200px 0);
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  background: #ffd500;
}
.item-donat__cirkle--2::after {
  transform: rotate(100deg);
}
.item-donat__cirkle-inner {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 5;
  border-radius: 50%;
  background: #fff;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #00509d;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

.support {
  background-image: url("../images/support/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.support__title {
  text-align: center;
}
.support__swiper:not(:last-child) {
  margin-bottom: 1.875rem;
}
.support__pagination {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  background: transparent;
  max-width: 38.9375rem;
  width: 100%;
  height: 0.75rem;
  position: relative;
}
.support__pagination::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ebebeb;
  border-radius: 0.3125rem;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.support__pagination span {
  width: 5.3125rem;
  height: 0.75rem;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
}
.support__pagination span.swiper-pagination-bullet-active {
  background: rgba(0, 80, 157, 0.8);
}
@media (max-width: 29.99875em) {
  .support__pagination {
    display: none;
  }
}

.slide-support {
  max-width: 15.9375rem;
  width: 100%;
  height: auto;
  box-shadow: 0px 4px 10px rgba(0, 29, 61, 0.1);
  border-radius: 5px;
  padding: 0.3125rem 0.375rem 0.9375rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.slide-support__img img {
  max-width: 100%;
}
.slide-support__img:not(:last-child) {
  margin-bottom: 1.25rem;
}
.slide-support__title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.slide-support__title:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.slide-support__text {
  flex: 1 1 auto;
}

.programs__title {
  text-align: center;
}
.programs__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.5rem;
}
@media (max-width: 1140px) {
  .programs__items {
    row-gap: calc(
        1.25rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.item-programs {
  display: grid;
  grid-template-columns: minmax(20.625rem, 27.8125rem) minmax(22.5rem, 29.6875rem);
  max-width: 57.5rem;
}
.item-programs__img {
  padding-bottom: 20.8125rem;
}
@media (max-width: 1140px) {
  .item-programs__img {
    padding-bottom: calc(
        16.4375rem + 70 *
          ((100vw - 320px) / 820)
      );
  }
}
.item-programs__img img {
  max-width: 100%;
}
.item-programs__text {
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .item-programs {
    grid-template-columns: 1fr;
  }
}

.body-item-programs {
  background-color: #ebebeb;
  padding-top: 3.4375rem;
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 100%;
}
@media (max-width: 1140px) {
  .body-item-programs {
    padding-top: calc(
        1.25rem + 35 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 1140px) {
  .body-item-programs {
    padding-bottom: calc(
        0.625rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.body-item-programs__header {
  display: flex;
  gap: 1.875rem;
}
.body-item-programs__header:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 1140px) {
  .body-item-programs__header:not(:last-child) {
    margin-bottom: calc(
        1.25rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.body-item-programs__number {
  border: 2px solid #001d3d;
  border-radius: 5px;
  padding: 0.25rem 0.375rem 0.1875rem 2.0625rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2083333333;
}
.body-item-programs__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.125;
}

.news__title {
  text-align: center;
}
.news__swiper:not(:last-child) {
  margin-bottom: 1.875rem;
}
.news__pagination {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  background: transparent;
  max-width: 38.9375rem;
  width: 100%;
  height: 0.75rem;
  position: relative;
}
.news__pagination::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ebebeb;
  border-radius: 0.3125rem;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
}
.news__pagination span {
  width: 5.3125rem;
  height: 0.75rem;
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
}
.news__pagination span.swiper-pagination-bullet-active {
  background: rgba(0, 80, 157, 0.8);
}
@media (max-width: 29.99875em) {
  .news__pagination {
    display: none;
  }
}

.slide-news {
  max-width: 15.9375rem;
  width: 100%;
  height: auto;
  box-shadow: 0px 4px 10px rgba(0, 29, 61, 0.1);
  border-radius: 5px;
  padding: 0.3125rem 0.375rem 0.9375rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.slide-news__img img {
  max-width: 100%;
}
.slide-news__img:not(:last-child) {
  margin-bottom: 1.25rem;
}
.slide-news__title {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.slide-news__title:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.slide-news__text {
  flex: 1 1 auto;
}

.form-section {
  background: #fff;
}
.form-section__container {
  display: grid;
  grid-template-columns: minmax(20.625rem, 43.75rem) minmax(20.625rem, 21.6875rem);
  column-gap: 3.125rem;
}
@media (max-width: 1140px) {
  .form-section__container {
    column-gap: calc(
        1.875rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 47.99875em) {
  .form-section__container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.875rem;
  }
}
.form-section__wrapper {
  background: transparent;
  position: relative;
  z-index: 2;
}
.form-section__wrapper::before {
  content: "";
  position: absolute;
  min-width: 18.125rem;
  min-height: 18.5625rem;
  top: 43%;
  transform: translateY(-50%);
  right: 0;
  background-image: url("../images/form/heart.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.contacts:not(:last-child) {
  margin-bottom: 2.125rem;
}
.contacts__title {
  margin-left: 3.4375rem;
}
@media (max-width: 47.99875em) {
  .contacts__title {
    text-align: center;
    margin-left: 0;
  }
}
.contacts__phone {
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.125;
  color: #001d3d;
  padding-left: 2.25rem;
  position: relative;
}
.contacts__phone:not(:last-child) {
  margin-bottom: 2.375rem;
}
.contacts__phone::before {
  content: "";
  background-image: url("../images/form/Phone.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.contacts__adres {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.125;
  color: #001d3d;
  padding-left: 2.25rem;
  position: relative;
}
.contacts__adres:not(:last-child) {
  margin-bottom: 2.375rem;
}
.contacts__adres::before {
  content: "";
  background-image: url("../images/form/Address.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.form-form__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.125;
}
.form-form__title:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 1140px) {
  .form-form__title:not(:last-child) {
    margin-bottom: calc(
        1.875rem + 20 *
          ((100vw - 320px) / 820)
      );
  }
}
.form-form__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 47.99875em) {
  .form-form__form {
    align-items: center;
  }
}
.form-form__form span {
  position: relative;
  top: -25px;
}
.form-form__form-input {
  background: #ebebeb;
  width: 21.875rem;
  height: 45px;
  border-radius: 5px;
  padding: 0.9375rem 1.875rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: rgba(0, 29, 61, 0.5);
}
.form-form__form-input:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .form-form__form-input {
    width: 100%;
  }
}
.form-form__form-input--textarea {
  resize: none;
  min-height: 9.6875rem;
}
.documentation-form__title {
  text-align: center;
}
.documentation-form__img img {
  max-width: 100%;
}

.footer {
  background-color: #001d3d;
  color: #fff;
  padding: 3.4375rem 0;
}
.footer__container {
  display: grid;
  grid-template-columns: 10.9375rem 11.5625rem minmax(12.5rem, 20.8125rem);
  column-gap: 14.375rem;
  position: relative;
}
@media (max-width: 1140px) {
  .footer__container {
    column-gap: calc(
        1.875rem + 200 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 61.99875em) {
  .footer__container {
    column-gap: 7.5rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 1140px) {
  .footer__container {
    column-gap: calc(
        1.875rem + 90 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 47.99875em) {
  .footer__container {
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.footer__copy {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  align-self: flex-end;
}
@media (max-width: 47.99875em) {
  .footer__copy {
    order: 3;
  }
}
.footer__contacts--item {
  position: relative;
  padding-left: 2.3125rem;
}
.footer__contacts--item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.footer__contacts--item::before {
  content: "";
  position: absolute;
  top: -0.1875rem;
  width: 1.625rem;
  height: 1.625rem;
  left: 0;
}
.footer__contacts-phone {
  display: inline-block;
}
.footer__contacts-phone::before {
  background-image: url("../images/footer/footer-phone.png");
}
.footer__contacts-adres::before {
  background-image: url("../images/footer/footer-addres.png");
}
.footer__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -5.625rem;
  width: 4.375rem;
  height: 4.375rem;
}
@media (max-width: 1140px) {
  .footer__button {
    right: calc(
        -1.875rem + -60 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 1140px) {
  .footer__button {
    width: calc(
        1.875rem + 40 *
          ((100vw - 320px) / 820)
      );
  }
}
@media (max-width: 1140px) {
  .footer__button {
    height: calc(
        1.875rem + 40 *
          ((100vw - 320px) / 820)
      );
  }
}
.footer__button img {
  max-width: 100%;
}
@media (max-width: 81.25em) {
  .footer__button {
    top: 0;
    right: 0;
  }
}

.footer-menu__item:not(:last-child) {
  margin-bottom: 1.25rem;
}
.footer-menu__link {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0.1875rem 0.625rem;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer-menu__link:hover {
    border: 1px solid #fff;
  }
}

/*Responsive*/
/* 992px - 1200px */
/* 768px - 992px */
/* 576px - 768px */
/* 320px - 576px */