@charset "UTF-8";
/* @import 'fonts'; */
.container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 360px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding-top: 144px;
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 114px;
  }
}

.all__page {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .all__page {
    padding: 60px 0;
  }
}
.all__page h1, .all__page h2, .all__page h3, .all__page h4, .all__page h5, .all__page h6 {
  margin-bottom: 30px;
}
.all__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: 130%;
  font-family: "Roboto", sans-serif;
  color: #121212;
  background: #fff;
}

/* Удаляем стандартную стилизацию для всех 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: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  padding: 25px 0;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 10px 0;
  }
}

.header-fixed {
  background: rgba(0, 0, 0, 0.8980392157);
  padding: 10px 0;
}

.header__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;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  width: 214px;
}
@media screen and (max-width: 1024px) {
  .logo img {
    width: 154px;
  }
}

.lang {
  margin-right: 55px;
  margin-left: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .lang {
    margin-right: 15px;
    margin-left: 15px;
  }
}
.lang li {
  list-style-type: none;
}
.lang li:nth-child(1)::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}
.lang li a {
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0.3;
}
.lang li a:hover {
  opacity: 0.3;
}
.lang .current-lang a {
  opacity: 1;
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  margin-right: 50px;
}
@media screen and (max-width: 1440px) {
  .top__menu .menu .menu-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .top__menu .menu .menu-item {
    margin-right: 20px;
  }
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  text-decoration: none;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1200px) {
  .top__menu .menu .menu-item a {
    font-size: 14px;
  }
}
.top__menu .menu .menu-item a:hover {
  opacity: 0.7;
}
.top__menu .menu .menu-item-has-children {
  position: relative;
}
.top__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__menu .menu .menu-item-has-children a::after {
  content: "";
  width: 12px;
  height: 19px;
  background: url("../img/menu__arrow.svg") no-repeat center;
  display: block;
  margin-left: 6px;
}
.top__menu .menu .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 100;
  background: #0073BC;
  padding: 20px 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  -webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
  opacity: 0;
  visibility: hidden;
  border-radius: 6px;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item {
  padding: 0;
  clip-path: initial;
  margin-bottom: 10px;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a:hover {
  opacity: 0.7;
}
.top__menu .menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.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;
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  .burger__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .burger__button {
    margin-left: 15px;
  }
}

.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: 24px;
  height: 24px;
  position: relative;
}
.burger span {
  width: 24px;
  height: 1px;
  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__opened span {
  position: absolute;
  margin-bottom: 0;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 24px;
  position: relative;
  right: 4px;
  color: #fff;
  background: #fff;
  opacity: 1;
}
.burger__opened span:nth-child(2) {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.body__opened {
  overflow: hidden;
}

.back {
  background: rgba(0, 0, 0, 0.7);
  /* backdrop-filter: blur(16.7px); */
  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;
}

.back__opened {
  opacity: 1;
  visibility: visible;
}

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

@media screen and (max-width: 1024px) {
  .header__button {
    margin-top: 30px;
  }
}

.mobile {
  position: fixed;
  top: 76.75px;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  padding: 30px 0;
  z-index: 99;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .mobile {
    width: 100%;
    overflow-y: scroll;
  }
}

.mobile__menu .top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.mobile__menu .top__menu .menu .menu-item {
  margin-right: 0px;
  position: relative;
  margin-bottom: 15px;
}
.mobile__menu .top__menu .menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.mobile__menu .top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile__menu .top__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .top__menu .menu .menu-item-has-children a::after {
  content: "";
  min-width: 10px;
  min-height: 6px;
  width: 10px;
  height: 6px;
  background: url("../img/lang__arrow.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
  display: none !important;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu {
  position: relative;
  background: transparent;
  border-radius: 0px;
  padding: 0px 0px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  -webkit-box-shadow: 0px 0px 0px rgba(14, 58, 83, 0.27);
          box-shadow: 0px 0px 0px rgba(14, 58, 83, 0.27);
  padding-left: 20px;
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-right: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 17px;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  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;
  width: 100%;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  padding-left: 20px;
  margin-top: 5px;
  width: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item {
  padding-bottom: 0px;
  border-bottom: 0px solid rgba(14, 58, 83, 0.1098039216);
  margin-bottom: 0px;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a {
  font-weight: 500;
  font-size: 16px;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children a::after {
  display: block;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu {
  margin-top: 10px;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a {
  font-weight: 300;
  color: #CDA78F;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item .sub-menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item-has-children a::after {
  content: "";
  min-width: 14px;
  min-height: 8px;
  width: 14px;
  height: 8px;
  background: url("../img/arrow__sub__menu.svg") no-repeat;
  background-size: cover;
  display: block;
  margin-left: 5px;
}
.mobile__menu .top__menu .menu__hidden .menu-item {
  display: none;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children {
  display: block;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children a::before {
  content: "";
  width: 19px;
  height: 19px;
  margin-right: 6px;
  display: block;
  background: url("../img/arrow__left.svg");
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children .sub-menu {
  display: block;
  padding: 0;
  clip-path: initial;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children .sub-menu .menu-item {
  display: block;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children .sub-menu .menu-item a {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}
.mobile__menu .top__menu .menu__hidden .menu-item-has-children .sub-menu .menu-item a::before {
  display: none;
}

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

.mobile__lang {
  margin-top: 24px;
}

.mobile__telephone {
  margin-top: 15px;
}

.mobile__socials {
  margin-top: 15px;
}

.mobile__button {
  margin-top: 24px;
}

.tel {
	margin-bottom: 15px;
}

.section1 {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover !important;
}
@media screen and (max-width: 1024px) {
  .section1 {
    height: auto;
    padding-bottom: 60px;
  }
}

.section1__block {
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .section1__block {
    margin-top: 100px;
  }
}

.section1__title {
  font-size: 61.1px;
  line-height: 120%;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1440px) {
  .section1__title {
    font-size: 41.1px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 31.1px;
  }
  .section1__title br {
    display: none;
  }
}

.section1__txt1 {
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section1__txt1 {
    font-size: 18px;
  }
  .section1__txt1 br {
    display: none;
  }
}

.section1__txt2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section1__txt2 {
    font-size: 18px;
  }
}
.section1__txt2::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/li.svg") no-repeat;
  display: block;
  margin-right: 30px;
	display: none;
}
@media screen and (max-width: 1024px) {
  .section1__txt2::before {
    margin-right: 16px;
  }
}

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

.section1__buttons {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .section1__buttons {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.section1__txt3 {
  text-align: left;
  width: 40%;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section1__txt3 {
    width: 100%;
    text-align: left;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 24px;
  }
}

.section1__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section1__buttons .button1 {
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .section1__buttons .button1 {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.button1 {
  padding: 17px 30.5px;
  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;
  width: 100%;
  max-width: 187px;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  background: #0073BC;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  border: none;
}
@media screen and (max-width: 1024px) {
  .button1 {
    max-width: 100%;
  }
}
.button1:hover {
  opacity: 0.6;
}

.button2 {
  padding: 17px 30.5px;
  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;
  width: 100%;
  max-width: 187px;
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  background: #FE332C;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  border: none;
}
@media screen and (max-width: 1024px) {
  .button2 {
    max-width: 100%;
  }
}
.button2:hover {
  opacity: 0.6;
}

.sc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 50px;
}

.scroll img {
  -webkit-animation: scroll-bounce 2s ease-in-out infinite;
          animation: scroll-bounce 2s ease-in-out infinite;
  display: inline-block;
}

/* Анімація: рух вгору-вниз */
@-webkit-keyframes scroll-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); /* наскільки рухається вниз */
  }
}
@keyframes scroll-bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); /* наскільки рухається вниз */
  }
}
.section2 {
  padding: 78px 0;
}
@media screen and (max-width: 1024px) {
  .section2 {
    padding: 35px 0;
  }
}

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

.section2__item {
  border-bottom: 1px solid #0073BC;
  padding-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .section2__item {
    padding-bottom: 16px;
  }
}

.section2__item-number {
  font-size: 18px;
  font-weight: 500;
  color: #FE332C;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section2__item-number {
    font-size: 16px;
  }
}

.section2__item-text {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .section2__item-text {
    font-size: 16px;
  }
}

.section3 {
  padding-bottom: 78px;
  overflow: hidden;
}
.section3 .section__title {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    padding-bottom: 35px;
  }
}

.section3__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 58px;
}
@media screen and (max-width: 1024px) {
  .section3__header {
    margin-bottom: 30px;
  }
}

.section__title {
  font-size: 55px;
  font-weight: 900;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 25px;
  }
}

.section__txt {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .section__txt {
    font-size: 16px;
  }
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw__left {
  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;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  border: 1px solid #FE332C;
  background: #FE332C;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-right: 15px;
}
.sw__left::after {
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url("../img/slide__left.svg");
          mask-image: url("../img/slide__left.svg");
  display: block;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.sw__right {
  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;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  border: 1px solid #FE332C;
  background: #FE332C;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.sw__right::after {
  content: "";
  width: 8px;
  height: 14px;
  -webkit-mask-image: url("../img/slide__right.svg");
          mask-image: url("../img/slide__right.svg");
  display: block;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: #fff;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.swiper-button-disabled {
  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;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  border: 1px solid #121212;
  background: #fff;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.swiper-button-disabled::after {
  background: #121212;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service {
  padding-top: 24px;
  padding-bottom: 42px;
  padding-left: 21px;
  padding-right: 21px;
  background: #F3F3F3;
}
@media screen and (max-width: 1024px) {
  .service {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.service:hover .service__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.service:hover .service__button {
  opacity: 1;
  visibility: visible;
}

.service__img {
  overflow: hidden;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .service__img {
    margin-bottom: 16px;
  }
}
.service__img img {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}

.service__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  min-height: 42px;
}
@media screen and (max-width: 1024px) {
  .service__title {
    margin-bottom: 16px;
    min-height: auto;
    font-size: 18px;
  }
}

.service__text {
  padding-top: 32px;
  border-top: 1px solid rgba(68, 104, 167, 0.431372549);
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  color: rgba(18, 18, 18, 0.8784313725);
  margin-bottom: 42px;
  min-height: 201px;
}
@media screen and (max-width: 1024px) {
  .service__text {
    padding-top: 16px;
    margin-bottom: 16px;
  }
}

.service__button {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .service__button {
    opacity: 1;
    visibility: visible;
  }
}

.section4 {
  padding-bottom: 78px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    padding-bottom: 35px;
  }
}

.section4__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) {
  .section4__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

.section4__right {
  width: 52%;
}
.section4__right h2 {
  font-weight: 800;
  font-size: 55px;
  line-height: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section4__right h2 {
    font-size: 25px;
    margin-bottom: 16px;
  }
}
.section4__right strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .section4__right strong {
    font-size: 16px;
  }
}
.section4__right p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section4__right p {
    margin-bottom: 16px;
  }
}
.section4__right p:nth-last-child(1) {
  margin-bottom: 0;
}
.section4__right li {
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .section4__right {
    width: 100%;
  }
}

.button__section4 .button1 {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.section5 {
  overflow: hidden;
  position: relative;
  padding-bottom: 120px;
}
.section5 .section__title {
  margin-bottom: 34px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    padding-bottom: 60px;
  }
}

.section5__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%; /* щоб дві смуги помістились */
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
}

.section5__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin-right: 18px;
}
.section5__row:nth-last-child(1) {
  margin-right: 0;
}

.section5__item {
  width: 200px;
}

.section5__item img {
  height: 100px;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.section5__item img:hover {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.section7 {
  padding: 100px 0;
  background: #0073BC;
}
.section7 .section__title {
  color: #fff;
  margin-bottom: 24px;
}
.section7 .section__txt {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section7 {
    padding: 60px 0;
  }
}

.section7__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) {
  .section7__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section7__left {
  width: 44%;
}
.section7__left img {
  margin-top: -100px;
}
@media screen and (max-width: 1024px) {
  .section7__left img {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section7__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

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

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

.section7__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 28px;
  border-bottom: 1px solid #fff;
  color: #fff;
  margin-bottom: 28px;
}
@media screen and (max-width: 1024px) {
  .section7__item-title {
    font-size: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.section7__item-title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #FE332C;
  display: block;
  margin-right: 18px;
}

.section7__item-text {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}

.section8 {
  padding: 60px 0;
}
.section8 .section7__item-title {
  color: #121212;
  border-bottom: 1px solid rgba(239, 192, 66, 0.4392156863);
}
.section8 .section7__item-text {
  color: rgba(18, 18, 18, 0.7490196078);
}
@media screen and (max-width: 1024px) {
  .section8 {
    padding: 30px 0;
  }
}

.page-template-page-service .section1__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-top: 100px;
}
.page-template-page-service .section1__block .section1__title {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-service .section1__block .section1__title {
    width: 100%;
  }
}
.page-template-page-service .section1__block .section1__txt1 {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-service .section1__block .section1__txt1 {
    width: 100%;
  }
}

.section__content {
  padding: 90px 0;
}
.section__content h2 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 34px;
}
@media screen and (max-width: 1024px) {
  .section__content h2 {
    font-size: 25px;
    margin-bottom: 16px;
  }
}
.section__content p {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 24px;
}
.section__content p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section__content {
    padding: 60px 0;
  }
}

.what {
  padding-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .what {
    padding-bottom: 60px;
  }
}

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

.what__left {
  padding: 70px 60px;
  background: #F3F3F3;
}
@media screen and (max-width: 1024px) {
  .what__left {
    padding: 30px 20px;
  }
}

.what__right {
  padding: 70px 60px;
  background: #0073BC;
}
@media screen and (max-width: 1024px) {
  .what__right {
    padding: 30px 20px;
  }
}
.what__right .what__title {
  color: #fff;
}
.what__right .what__li {
  color: #fff;
}
.what__right .what__li::before {
  background: #fff;
}

.what__title {
  margin-bottom: 24px;
}

.what__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(18, 18, 18, 0.8784313725);
  font-size: 15px;
}
.what__li::before {
  content: "";
  min-width: 4px;
  min-height: 4px;
  border-radius: 100px;
  background: #121212;
  margin-right: 5px;
}

.about__content {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .about__content {
    padding: 60px 0;
  }
}

.about__text1 {
  font-size: 15px;
  color: rgba(18, 18, 18, 0.8784313725);
}

.about__row1 {
  margin-top: 50px;
  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) {
  .about__row1 {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

.about__title2 {
  margin-bottom: 24px;
}

.about__text2 {
  font-size: 15px;
  color: rgba(18, 18, 18, 0.8784313725);
}

.about__title3 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.about__text3 {
  font-size: 15px;
  color: rgba(18, 18, 18, 0.8784313725);
}

.about__section3 {
  padding: 60px 0;
  background: #F3F3F3;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .about__section3 {
    padding: 30px 0;
    margin-bottom: 60px;
  }
}

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

.about__add__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .about__add__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.about__add__text {
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  color: rgba(18, 18, 18, 0.8784313725);
}

.about__section4 {
  padding-bottom: 90px;
}
.about__section4 h2 {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .about__section4 h2 {
    font-size: 25px;
  }
}
.about__section4 p {
  font-size: 15px;
  line-height: 21px;
  color: rgba(18, 18, 18, 0.8784313725);
  margin-bottom: 40px;
}
.about__section4 img {
  float: right;
  max-width: 415px;
  height: auto;
  margin-left: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .about__section4 img {
    float: none;
    margin: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .about__section4 {
    padding-bottom: 60px;
  }
}

.page-template-page-cases .section1__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-top: 100px;
}
.page-template-page-cases .section1__block .section1__title {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-cases .section1__block .section1__title {
    width: 100%;
  }
}
.page-template-page-cases .section1__block .section1__txt1 {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-cases .section1__block .section1__txt1 {
    width: 100%;
  }
}

.cases {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .cases {
    padding: 60px 0;
  }
}

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

.case__image {
  margin-bottom: 30px;
}

.case__title {
  border-left: 2px solid #0080FD;
  padding-left: 16px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .case__title {
    font-size: 18px;
  }
}

.case__content {
  font-weight: 300;
  font-size: 15px;
  color: #121212;
}

.case__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: #0073BC;
}
.case__button a:hover {
  text-decoration: underline;
}
.case__button a::after {
  content: "";
  min-width: 21px;
  min-height: 21px;
  background: url("../img/more.svg") no-repeat;
  display: block;
  margin-left: 15px;
}

.case__content li.hidden {
  display: none;
}

.page-template-page-contacts .section1__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin-top: 100px;
}
.page-template-page-contacts .section1__block .section1__title {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-contacts .section1__block .section1__title {
    width: 100%;
  }
}
.page-template-page-contacts .section1__block .section1__txt1 {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .page-template-page-contacts .section1__block .section1__txt1 {
    width: 100%;
  }
}

.contacts {
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .contacts {
    padding: 60px 0;
  }
}

.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;
  }
}

.contacts__left {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .contacts__left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.contacts__right {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .contacts__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}

.cont__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F5F5F5;
  padding: 32px 50px;
  margin-bottom: 15px;
}
.cont__block:nth-last-child(1) {
  margin-bottom: 0;
}
.cont__block .cont__image {
  margin-right: 28px;
}
.cont__block .cont__image img {
  min-width: 50px;
  min-height: 50px;
}
@media screen and (max-width: 1024px) {
  .cont__block .cont__image {
    margin-right: 14px;
  }
}

.c__link {
  font-size: 17px;
  color: #1C2733;
  text-decoration: none;
}
.c__link:hover {
  text-decoration: underline;
}

.form__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 35px;
}

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form__input {
  width: 48%;
  margin-bottom: 20px;
}
.form__input input {
  background: #FFFFFF;
  border: 1px solid rgba(18, 18, 18, 0.32);
  border-radius: 2px;
  padding: 13px 15px;
  width: 100%;
  outline: none;
}
.form__input textarea {
  background: #FFFFFF;
  border: 1px solid rgba(18, 18, 18, 0.32);
  border-radius: 2px;
  padding: 13px 15px;
  width: 100%;
  outline: none;
  height: 160px;
}
.form__input:nth-child(3) {
  width: 100%;
}
.form__input:nth-child(4) {
  width: 100%;
}

.page-template-default .header {
  background: #121212;
}

.all__page {
  margin-top: 130px;
}
@media screen and (max-width: 1024px) {
  .all__page {
    margin-top: 75px;
  }
}

.footer {
  background: #F3F3F3;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 30px 0;
  }
}

.footer__row1 {
  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) {
  .footer__row1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__item {
  width: 23%;
}
@media screen and (max-width: 1024px) {
  .footer__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__item:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.footer__logo img {
  width: 214px;
}

.footer__menu .menu .menu-item {
  margin-bottom: 19px;
}
.footer__menu .menu .menu-item:nth-last-child(1) {
  margin-bottom: 0;
}
.footer__menu .menu .menu-item a {
  text-decoration: none;
  color: #121212;
  font-size: 15px;
}
.footer__menu .menu .menu-item a:hover {
  text-decoration: underline;
}
.footer__menu .menu .menu-item .sub-menu {
  display: none;
}

.footer__links .link {
  display: block;
  margin-bottom: 19px;
  text-decoration: none;
  color: #121212;
  font-size: 15px;
}
.footer__links .link:hover {
  text-decoration: underline;
}
.footer__links .link:nth-last-child(1) {
  margin-bottom: 0;
}

.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 15px;
  color: #121212;
  margin-bottom: 30px;
}
.mail:hover {
  text-decoration: underline;
}
.mail::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  background: url("../img/ico__mail.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 15px;
  color: #121212;
}
.tel:hover {
  text-decoration: underline;
}
.tel::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  background: url("../img/ico__tel.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 15px;
  color: #121212;
  margin-bottom: 30px;
}
.fax:hover {
  text-decoration: underline;
}
.fax::before {
  content: "";
  min-width: 17px;
  min-height: 17px;
  width: 17px;
  height: 17px;
  background: url("../img/ico__fax.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.adr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 15px;
  color: #121212;
  margin-bottom: 30px;
}
.adr:hover {
  text-decoration: underline;
}
.adr::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  background: url("../img/ico__adress.svg") no-repeat;
  display: block;
  margin-right: 15px;
}

.footer__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  padding-top: 25px;
  border-top: 1px solid rgba(18, 18, 18, 0.2588235294);
}
@media screen and (max-width: 1024px) {
  .footer__row2 {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.row2__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  .row2__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .row2__item:nth-last-child(1) {
    margin-bottom: 0;
  }
}
.row2__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) {
  .row2__item:nth-child(3) {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.socials {
  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) {
  .socials {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.social {
  margin-right: 12px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.social:hover {
  opacity: 0.7;
}

.copy {
  font-size: 15px;
}

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