@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
.container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1250px) {
  .container {
    padding: 0 15px;
  }
}

.content__page {
  margin-top: 150px;
}
.content__page h1, .content__page h2, .content__page h3, .content__page h4, .content__page h5, .content__page h6 {
  margin-bottom: 30px;
}
.content__page p {
  margin-bottom: 30px;
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Gilroy";
  font-weight: 400;
  color: #112211;
  background: #f4f4f4;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.header {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header {
    top: 0;
  }
  .header .container {
    padding: 0;
  }
}

.header-fixed {
  top: 0;
}

.header__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 6px 1fr;
  grid-template-columns: 5fr 1fr;
  grid-column-gap: 6px;
}
@media screen and (max-width: 1024px) {
  .header__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__left {
  background: #1A1D1F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 20px;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  .header__left {
    width: 100%;
  }
}

.button2 {
  border-radius: 2px;
  background: #FFFFFF;
  border: 1px solid #1D1D1D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 900;
  height: 100%;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .button2 {
    padding: 20px 20px;
  }
}
.button2:hover {
  opacity: 0.6;
}

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

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 60px;
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.top__menu .menu .menu-item a:hover {
  text-decoration: underline;
}

.telephone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .telephone {
    margin-bottom: 20px;
  }
}
.telephone:hover {
  text-decoration: underline;
}

.burger__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger__name {
  font-size: 17px;
  color: #fff;
  line-height: 100%;
  margin-right: 11px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .burger__name {
    font-size: 14px;
  }
}

.burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 22px;
  height: 22px;
  position: relative;
}
.burger span {
  width: 22px;
  height: 2px;
  margin-bottom: 4px;
  background: #fff;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
.burger span:nth-child(1) {
  width: 15px;
}
.burger__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 22px;
}
.burger__opened span:nth-child(2) {
  opacity: 0;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.mobile__menu {
  position: fixed;
  top: 91px;
  right: 0;
  width: 50%;
  height: 100vh;
  background: rgba(18, 18, 18, 0.9);
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 20px 15px;
  height: 400px;
}
.mobile__menu .top__menu {
  margin-top: 0;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}
.mobile__menu .top__menu .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top__menu .menu .menu-item {
  margin-right: 0;
  margin-bottom: 10px;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .mobile__menu {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.back {
  background: rgba(18, 18, 18, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.body__opened .back {
  opacity: 1;
  visibility: visible;
}

.section1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .section1 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 100px;
  }
}

.section1__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    width: 100%;
    display: none;
  }
}

.section1__right {
  width: 50%;
  background: url("../img/img1.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    display: none;
  }
}

.section1__content {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section1__content {
    position: relative;
    top: 0;
  }
}

.section1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .section1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.block__left {
  width: 50%;
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .block__left {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.block__right {
  width: 50%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .block__right {
    width: 100%;
    display: block;
  }
  .block__right img {
    width: 100%;
  }
}

.section1__title {
  font-family: "Playfair Display";
  font-size: 70px;
  line-height: 82px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .section1__title {
    font-size: 60px;
    line-height: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 30px;
  }
}

.section1__txt1 {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section1__txt1 {
    font-size: 16px;
  }
}

.section1__txt2 {
  font-weight: 300;
  margin-bottom: 40px;
}

.section1__button1 .button1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .section1__button1 .button1 {
    width: 100%;
  }
}

.button1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background: #0039FD;
  border-radius: 5px;
  padding: 24px 36px;
  font-weight: 900;
  color: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  width: 100%;
  transition: 0.6s ease 0s;
  outline: none;
  border: none;
  cursor: pointer;
}
.button1:hover {
  opacity: 0.6;
}

.mouse {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .section2 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.section2__right {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    width: 100%;
    display: none;
  }
}

.section2__left {
  width: 50%;
  background: url("../img/img2.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    display: none;
  }
}

.section2__content {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section2__content {
    position: relative;
    top: 0;
  }
}

.section2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__block__right {
  width: 50%;
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .section2__block__right {
    width: 100%;
    margin-bottom: 30px;
    padding-left: 0;
  }
}

.section2__block__left {
  width: 50%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .section2__block__left {
    width: 100%;
    display: block;
  }
  .section2__block__left img {
    width: 100%;
  }
}

.section2__button .button1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .section2__button .button1 {
    width: 100%;
  }
}

.section2__content__block {
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .section2__content__block {
    margin-bottom: 30px;
  }
}
.section2__content__block strong {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .section2__content__block strong {
    font-size: 16px;
  }
}
.section2__content__block h2 {
  font-size: 55px;
  line-height: 70px;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: "Playfair Display";
}
@media screen and (max-width: 1024px) {
  .section2__content__block h2 {
    font-size: 38px;
    line-height: 53px;
  }
}
.section2__content__block p {
  font-weight: 300;
  margin-bottom: 30px;
}
.section2__content__block p:nth-last-child(1) {
  margin-bottom: 0;
}

.section3 {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    margin-top: 60px;
  }
}

.section3__txt {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  font-style: italic;
}

.section3__title {
  font-size: 55px;
  line-height: 70px;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: "Playfair Display";
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .section3__title {
    font-size: 38px;
    line-height: 53px;
  }
}

.section3__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 27px 1fr 27px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 27px;
  grid-row-gap: 27px;
}
@media screen and (max-width: 1024px) {
  .section3__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* 3 рядок */
.wide-1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2; /* Перша колонка */
}
@media screen and (max-width: 1024px) {
  .wide-1 {
    grid-column: auto;
  }
}

.wide-2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4; /* Займає дві колонки */
}
@media screen and (max-width: 1024px) {
  .wide-2 {
    grid-column: auto;
  }
}

.section3__item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
}
.section3__item:hover .s3__item__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, rgba(102, 102, 102, 0.66)), to(rgba(0, 0, 0, 0.66)));
  background: linear-gradient(180deg, rgba(102, 102, 102, 0.66) 33%, rgba(0, 0, 0, 0.66) 100%);
  z-index: 1;
}
.section3__item:hover .s3__item__img .content__hidden {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.s3__item__img {
  position: relative;
  height: 385px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.s3__item__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 102, 102, 0.33)), color-stop(33%, rgba(102, 102, 102, 0.33)), to(rgba(0, 0, 0, 0.33)));
  background: linear-gradient(180deg, rgba(102, 102, 102, 0.33) 0%, rgba(102, 102, 102, 0.33) 33%, rgba(0, 0, 0, 0.33) 100%);
  z-index: 1;
}
.s3__item__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 20px;
  color: #fff;
  z-index: 2;
}

.content__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
}

.content__hidden {
  font-weight: 500;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  -webkit-transform: translate(0, -200%);
          transform: translate(0, -200%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .content__hidden {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
  }
}

.section3__item__last {
  padding: 45px 0;
}
@media screen and (max-width: 1024px) {
  .section3__item__last {
    padding: 0;
  }
}
.section3__item__last h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 27px;
}
.section3__item__last p {
  font-weight: 300;
  margin-bottom: 30px;
}
.section3__item__last p:nth-last-child(1) {
  margin-bottom: 0;
}

.section4__txt {
  text-align: center;
}

.section4__title {
  text-align: center;
}

.case {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px;
}

.swiper {
  border: 12px;
}

.swiper-slide {
  border-radius: 12px;
}

.case__number {
  color: transparent;
  -webkit-text-stroke: 1px #0039FD;
  text-stroke: 1px #0039FD;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin-bottom: 30px;
}

.case__title {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 30px;
}

.case__txt {
  font-weight: 300;
}

.swiper-pagination {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}

.swiper-pagination-bullet {
  border-radius: 0;
  background: #C6C6C6;
  width: 24px;
  height: 5px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 80px;
  background: #0039FD;
}

.slider {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .arrows {
    position: relative;
    height: 51px;
    margin-bottom: 10px;
  }
}

.swiper-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 60px;
  right: 0;
  width: 69px;
}
.swiper-button-prev::before {
  content: "";
  min-width: 69px;
  min-height: 51px;
  background: url("../img/arrow__left.svg");
  display: block;
}
@media screen and (max-width: 1024px) {
  .swiper-button-prev {
    left: 15px;
  }
}

.swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 60px;
  width: 69px;
}
.swiper-button-next::before {
  content: "";
  min-width: 69px;
  min-height: 51px;
  background: url("../img/arrow__left.svg");
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .swiper-button-next {
    right: 15px;
  }
}

.section5 {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    margin-top: 60px;
  }
}

.section5__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .section5__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.s5__item {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  border: 14px solid #fff;
  height: 100%;
  background: #fff;
  cursor: pointer;
}
.s5__item:hover .s5__back__img {
  opacity: 1;
  visibility: visible;
}
.s5__item:hover .s5__content {
  position: relative;
  z-index: 2;
}
.s5__item:hover .s5__ico {
  background: #fff;
}
.s5__item:hover .s5__item__title {
  color: #fff;
}
.s5__item:hover .s5__item__txt ul li {
  color: #fff;
}

.s5__back {
  border-radius: 12px;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .s5__back {
    padding: 15px;
  }
}

.s5__back__img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.s5__back__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.s5__ico {
  width: 58px;
  height: 58px;
  background: #0039FD;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-bottom: 30px;
}

.s5__item__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

.s5__item__txt ul {
  padding: 0;
  margin: 0;
}
.s5__item__txt ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  color: rgba(29, 29, 29, 0.67);
  font-weight: 500;
  margin-bottom: 20px;
}
.s5__item__txt ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.s5__item__txt ul li::before {
  content: "";
  min-width: 11px;
  min-height: 9px;
  background: url("../img/li.svg") no-repeat;
  display: block;
  margin-right: 20px;
}

.contacts {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .contacts {
    margin-top: 60px;
  }
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__left {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .contact__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.contact__right {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .contact__right {
    width: 100%;
  }
}

.cont__title1 {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .cont__title1 {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

.cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
  color: #000;
}
.cont span {
  min-width: 18px;
  margin-right: 10px;
}
.cont:nth-last-child(1) {
  margin-bottom: 0;
}

.form__input {
  margin-bottom: 12px;
}
.form__input:nth-last-child(1) {
  margin-bottom: 20px;
}
.form__input input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 2px;
  border: 1px solid #D9D9D9;
  padding: 20px 27px;
}
.form__input textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 2px;
  border: 1px solid #D9D9D9;
  padding: 20px 27px;
  height: 160px;
}

.footer {
  margin-top: 100px;
  background: #1D1D1D;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 40px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .footer__item {
    width: 100%;
    text-align: center;
  }
}
.footer__item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer__item:nth-child(2) {
    margin: 20px 0;
  }
}
.footer__item:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__item:nth-child(3) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.copyright {
  font-size: 15px;
  color: #fff;
}

.footer__link {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}