@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
html {
  scroll-behavior: smooth;
}

.wrapper {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.header {
  z-index: 3000;
}

.main {
  z-index: 1000;
}

.footer {
  z-index: 1500;
}

.container {
  padding: 0px 0px;
  width: 1220px;
  margin: auto;
}
@media (max-width: 1260px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

.body.no-scroll {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.padding-header {
  padding: 80px 0px 0px;
}
@media (max-width: 770px) {
  .padding-header {
    padding: 80px 0px 0px;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.main-header {
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1882352941);
}

.main-header__body {
  padding: 15px 0px;
  display: flex;
  align-items: center;
}

.main-header__menu {
  flex: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-header__menu-item {
  margin: 0px 25px 0px 0px;
}
.main-header__menu-item:hover .main-header__menu-link {
  color: #0056A4;
}

.main-header__menu-link {
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #151515;
}

.main-header__language {
  margin: 0px 50px 0px 0px;
  display: flex;
  align-items: center;
}
.main-header__language:hover .main-header__language-item.active .main-header__language-link {
  color: #151515;
}
.main-header__language:hover .main-header__language-item.active .main-header__language-link::before {
  width: 0;
}
.main-header__language:hover .main-header__language-item.active .main-header__language-link:hover {
  color: #0056A4;
}
.main-header__language:hover .main-header__language-item.active .main-header__language-link:hover::before {
  width: 100%;
}

.main-header__language-item {
  margin: 0px 5px 0px 0px;
  display: flex;
  align-items: center;
}
.main-header__language-item:last-child {
  margin: 0;
}
.main-header__language-item:last-child .main-header__language-link {
  margin: 0;
}
.main-header__language-item:last-child .main-header__language-icon {
  display: none;
}
.main-header__language-item.active .main-header__language-link {
  color: #0056A4;
}
.main-header__language-item.active .main-header__language-link::before {
  width: 100%;
}

.main-header__language-link {
  margin: 0px 5px 0px 0px;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #151515;
}
.main-header__language-link:hover {
  color: #0056A4;
}

.main-header__language-icon {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #D2D2D2;
}

.main-header__search {
  display: flex;
  align-items: center;
  transition: 0.5s all;
}
.main-header__search span {
  width: 25px;
  height: 25px;
  background: url("../img/icon/search-header.svg") 0 0/100% 100% no-repeat;
  display: inline-block;
}
.main-header__search:hover {
  opacity: 0.5;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1040px) {
  .main-header__logo {
    flex: auto;
  }
  .main-header__menu,
  .main-header__language {
    display: none;
  }
  .main-header__search {
    margin: 0px 20px 0px 0px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #0056A4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-header__search span {
    background: url("../img/icon/search-white-header.svg") 0 0/100% 100% no-repeat;
  }
  .main-header__burger {
    display: block;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: inline;
  overflow-y: auto;
  z-index: 10000;
  transition: 1s all;
}
.smart-header.active {
  right: 0;
}
.smart-header.active .container::before {
  right: 0;
  opacity: 0.5;
}
.smart-header.active .smart-header__content {
  right: 0;
}
.smart-header .container {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}
.smart-header .container::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

.smart-hedaer__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.smart-header__content {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: end;
}

.smart-header__exit-img {
  width: 20px;
  height: 20px;
  border: 2px solid #0056A4;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.smart-header__exit-img span {
  width: 12px;
  height: 2px;
  background: #0056A4;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0056A4;
  transform: rotate(90deg);
}
.smart-header__exit-img:hover {
  box-shadow: 0px 0px 5px 0px #0056A4;
}

.smart-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-item {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-link {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 25px;
  line-height: 26px;
  font-weight: 500;
  color: #151515;
}

.smart-header__language {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.smart-hedaer__language-item {
  margin: 0px 5px 0px 0px;
  display: flex;
  align-items: center;
}
.smart-hedaer__language-item:last-child {
  margin: 0;
}
.smart-hedaer__language-item:last-child .smart-header__language-link {
  margin: 0;
}
.smart-hedaer__language-item:last-child .smart-header__language-text {
  display: none;
}
.smart-hedaer__language-item.active .smart-header__language-link {
  color: #0056A4;
}

.smart-header__language-link {
  margin: 0px 5px 0px 0px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #151515;
}

.smart-header__language-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #D2D2D2;
}

@media (max-width: 770px) {
  .smart-header .container {
    padding: 10px;
  }
}
.logo .logo__body {
  display: inline-block;
}
.burger .burger__img {
  width: 40px;
  height: 40px;
  border: 2px solid #0056A4;
  border-radius: 5px;
  background: #0056A4;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:hover {
  background: transparent;
}
.burger .burger__img:hover span,
.burger .burger__img:hover span::before,
.burger .burger__img:hover span::after {
  background: #0056A4;
}
.burger .burger__img span {
  width: 20px;
  height: 3px;
  display: inline-block;
  background: #fff;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

/* Слайдер */
/* Слайдер запущен */
/* Слайдер с точками */
/* Ограничивающая оболочка */
/* Лента слайдов */
.slick-track {
  display: flex;
}

/* Слайд */
/* Слайд активный (показывается) */
/* Слайд основной */
/* Слайд по центру */
/* Клонированный слайд */
/* Стрелка */
/* Стрелка влево */
/* Стрелка вправо */
/* Стрелка не активная */
/* Точки (булиты) */
/* Активная точка */
/* Элемент точки */
.slick.version-services .slick-prev.slick-arrow,
.slick.version-services .slick-next.slick-arrow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) url("../img/icon/arrow-services.svg") center/30px 30px no-repeat;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 0;
  transition: 0.5s all;
  z-index: 1000;
}
.slick.version-services .slick-prev.slick-arrow:hover,
.slick.version-services .slick-next.slick-arrow:hover {
  opacity: 0.5;
}
@media (max-width: 770px) {
  .slick.version-services .slick-prev.slick-arrow,
  .slick.version-services .slick-next.slick-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5) url("../img/icon/arrow-services.svg") center/15px 15px no-repeat;
  }
}
.slick.version-gallery .slick-prev.slick-arrow,
.slick.version-gallery .slick-next.slick-arrow {
  width: 35px;
  height: 35px;
  border: 2px solid #A4A4A4;
  border-radius: 50%;
  background: url("../img/icon/arrow-gallery.svg") center/15px 15px no-repeat;
  font-size: 0;
  transition: 0.5s all;
  z-index: 1000;
}
.slick.version-gallery .slick-prev.slick-arrow:hover,
.slick.version-gallery .slick-next.slick-arrow:hover {
  border: 2px solid #fff;
  background: url("../img/icon/arrow-white-gallery.svg") center/15px 15px no-repeat;
}
.slick.version-gallery .slick-dots {
  padding: 50px 0px 0px 10px;
  display: flex;
  align-items: center;
}
.slick.version-gallery .slick-dots li {
  margin: 0px 15px 0px 0px;
}
.slick.version-gallery .slick-dots li:last-child {
  margin: 0;
}
.slick.version-gallery .slick-dots li.slick-active button {
  background: #fff;
}
.slick.version-gallery .slick-dots button {
  min-width: 40px;
  height: 2px;
  background: #383838;
  transition: 0.5s all;
  font-size: 0;
}
@media (max-width: 770px) {
  .slick.version-gallery .slick-dots {
    padding: 20px 0px 0px 10px;
  }
  .slick.version-gallery .slick-dots li {
    margin: 0px 5px 0px 0px;
  }
  .slick.version-gallery .slick-dots button {
    min-width: 20px;
  }
}

.title {
  display: inline-block;
  position: relative;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 55px;
  line-height: 60px;
  font-weight: 400;
  color: #151515;
}
.title.white {
  color: #fff;
}
@media (max-width: 770px) {
  .title {
    padding: 0;
    font-size: 30px;
    line-height: 35px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 2px;
  background: #0056A4;
  transition: 1s all;
}
.text-hover:hover::before {
  width: 100%;
}

.social {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 1600;
}
@media (max-width: 770px) {
  .social {
    right: 10px;
    bottom: 10px;
  }
}

.social__body {
  display: flex;
  flex-direction: column;
}

.social__img {
  margin: 0px 0px 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #31CA36;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.social__img img {
  width: 50%;
}
.social__img:last-child {
  margin: 0;
}
.social__img:hover {
  opacity: 0.6;
}
.social__img.active {
  border: 1.5px solid #fff;
}
@media (max-width: 770px) {
  .social__img {
    width: 50px;
    height: 50px;
  }
  .social__img img {
    width: 25px;
  }
}

.magic-forms .alert.alert-success.alert-dismissible {
  margin: 0px 0px 20px;
  padding: 20px 20px;
  border-radius: 10px;
  background: green;
  display: flex;
  align-items: center;
  animation-name: message;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes message {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.magic-forms .alert.alert-success.alert-dismissible .close {
  display: none;
  padding: 5px 10px;
  border: 1px solid #fff;
  background: transparent;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  order: 2;
}
.magic-forms .alert.alert-success.alert-dismissible p {
  order: 1;
  width: 100%;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
@media (max-width: 770px) {
  .magic-forms .alert.alert-success.alert-dismissible p {
    font-size: 14px;
  }
}
.magic-forms .alert.alert-danger.alert-dismissible {
  margin: 0px 0px 10px;
  padding: 15px 20px;
  width: 100%;
  border-radius: 15px;
  background: red;
}
.magic-forms .alert.alert-danger.alert-dismissible .close {
  display: none;
}
.magic-forms .alert.alert-danger.alert-dismissible h4,
.magic-forms .alert.alert-danger.alert-dismissible li {
  text-align: center;
  width: 100%;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
@media (max-width: 770px) {
  .magic-forms .alert.alert-danger.alert-dismissible h4,
  .magic-forms .alert.alert-danger.alert-dismissible li {
    font-size: 14px;
  }
}

.magic-forms.modifications-one .alert.alert-success.alert-dismissible p {
  text-align: start;
  font-size: 16px;
}
@media (max-width: 770px) {
  .magic-forms.modifications-one .alert.alert-success.alert-dismissible p {
    font-size: 14px;
  }
}
.magic-forms.modifications-dwo .alert.alert-success.alert-dismissible p {
  color: #3aff45;
}

.fancybox__container {
  z-index: 4000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  display: none;
}
.modal .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.modal.active {
  display: block;
}

.modal__body {
  z-index: 1;
}

.modal__fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: -2;
}

.modal__fullscreen-exit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.modal__content {
  width: 500px;
  padding: 60px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  display: inline-block;
  position: relative;
}

.modal__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.modal__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #0056A4;
  border-radius: 5px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: 0.5s all;
}
.modal__exit-img span {
  width: 20px;
  height: 3px;
  background: #0056A4;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
}
.modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0056A4;
  transform: rotate(90deg);
}
.modal__exit-img:hover {
  opacity: 0.5;
}

.modal__title {
  margin: 0px 0px 40px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  color: #000;
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  margin: 0px 0px 20px;
  padding: 20px 30px;
  border-radius: 10px;
  background: #E4E4E4;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.modal__input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #000;
}
.modal__input::placeholder {
  transition: 0.5s all;
  color: #000;
}
.modal__input:focus::-moz-placeholder {
  opacity: 0.5;
}
.modal__input:focus::placeholder {
  opacity: 0.5;
}

.modal__submit {
  padding: 15px 30px;
  border: 2px solid #0056A4;
  border-radius: 10px;
  background: #0056A4;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal__submit:hover {
  background: transparent;
  color: #0056A4;
}

@media (max-width: 770px) {
  .modal__title {
    margin: 0px 0px 20px;
    font-size: 20px;
  }
  .modal__input {
    padding: 15px 30px;
    font-size: 14px;
  }
  .modal__submit {
    padding: 15px 30px;
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .modal__body {
    width: 100%;
  }
  .modal__content {
    padding: 60px 30px;
    width: 100%;
    display: block;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.fullscreen-home {
  margin: 0px 0px 100px;
  padding: 80px 0px 0px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.fullscreen-home .container {
  height: 100%;
}
.fullscreen-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #141414;
  opacity: 0.25;
  z-index: -1;
}
.fullscreen-home.about .fullscreen-home__content-text {
  font-size: 20px;
  line-height: 25px;
}
@media (max-width: 770px) {
  .fullscreen-home.about .fullscreen-home__content-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.fullscreen-home__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  z-index: 1;
}

.fullscreen-home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.fullscreen-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-home__content {
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.fullscreen-home__content-title {
  margin: 0px 0px 20px;
  font-family: "Rubik", sans-serif;
  font-size: 60px;
  line-height: 65px;
  color: #fff;
}

.fullscreen-home__content-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}

.fullscreen-home__scroll {
  margin: 0px 0px 80px;
  display: inline-flex;
  align-items: center;
}
.fullscreen-home__scroll:hover .fullscreen-home__scroll-img::before {
  width: calc(0% + 27px + 5px);
  height: calc(0% + 27px + 5px);
}
.fullscreen-home__scroll:hover .fullscreen-home__scroll-img::after {
  width: calc(0% + 38px + 5px);
  height: calc(0% + 38px + 5px);
}
.fullscreen-home__scroll:hover .fullscreen-home__scroll-text {
  opacity: 0.5;
}

.fullscreen-home__scroll-img {
  margin: 0px 25px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.fullscreen-home__scroll-img img {
  max-width: 100%;
}
.fullscreen-home__scroll-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(0% + 27px);
  height: calc(0% + 27px);
  border: 2px solid #D6D6D6;
  border-radius: 50%;
  transition: 0.5s all;
}
.fullscreen-home__scroll-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(0% + 38px);
  height: calc(0% + 38px);
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  opacity: 0.2;
  transition: 1s all;
}

.fullscreen-home__scroll-text {
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 250;
  color: #fff;
}

.fullscreen-home__block {
  position: absolute;
  bottom: calc(0% + 80px);
  left: 0;
  width: 100%;
}

@media (max-width: 770px) {
  .fullscreen-home {
    margin: 0px 0px 50px;
  }
  .fullscreen-home__content-title {
    margin: 0px 0px 10px;
    font-size: 30px;
    line-height: 35px;
  }
  .fullscreen-home__content-text {
    font-size: 16px;
    line-height: 22px;
  }
  .fullscreen-home__scroll {
    margin: 0px 0px 40px 15px;
  }
  .fullscreen-home__scroll-img {
    margin: 0px 20px 0px 0px;
  }
  .fullscreen-home__scroll-text {
    font-size: 16px;
    line-height: 22px;
  }
}
.catalog-home {
  margin: 0px 0px 100px;
}

.catalog-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalog-home__title {
  margin: 0px 0px 60px;
}

.catalog-home__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "column_1 column_1 column_1 column_2 column_2 column_2" "column_3 column_3 column_4 column_4 column_5 column_5";
}

.catalog-home__column {
  padding: 0px 10px 20px;
  width: 100%;
}
.catalog-home__column:nth-child(1) {
  grid-area: column_1;
}
.catalog-home__column:nth-child(2) {
  grid-area: column_2;
}
.catalog-home__column:nth-child(3) {
  grid-area: column_3;
}
.catalog-home__column:nth-child(4) {
  grid-area: column_4;
}
.catalog-home__column:nth-child(5) {
  grid-area: column_5;
}
.catalog-home__column:nth-child(even) .catalog-home__column-title {
  color: #151515;
}

.catalog-home__column-body {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.catalog-home__column-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 70%;
}
.catalog-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog-home__column-title {
  position: absolute;
  top: 40px;
  width: 100%;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

@media (max-width: 770px) {
  .catalog-home {
    margin: 0px 0px 40px;
  }
  .catalog-home__title {
    margin: 0px 0px 20px;
  }
  .catalog-home__row {
    width: calc(100% + 10px);
    grid-template-areas: "column_1 column_1 column_1 column_2 column_2 column_2" "column_3 column_3 column_3 column_4 column_4 column_4" "column_5 column_5 column_5 column_5 column_5 column_5";
  }
  .catalog-home__column {
    padding: 0px 5px 10px;
  }
  .catalog-home__column-title {
    top: 30px;
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .catalog-home__row {
  }
}
@media (max-width: 400px) {
  .catalog-home__row {
  }
  .catalog-home__column-title {
    top: 20px;
    padding: 0px 5px;
    font-size: 18px;
    line-height: 24px;
  }
}
.content-home {
  position: relative;
}

.content-home__body {
  padding: 130px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.contnet-home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.contnet-home__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-home__title {
  margin: 0px 0px 50px;
  color: #fff;
}

.content-home__text {
  margin: 0px 0px 70px;
  max-width: 720px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.content-home__text p {
  margin: 0px 0px 15px;
}
.content-home__text p:last-child {
  margin: 0;
}

.content-home__row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-home__column {
  padding: 0px 0px 450px;
  display: flex;
  position: relative;
}
.content-home__column:nth-child(2) {
  justify-content: end;
}
.content-home__column:nth-child(2) .content-home__column-body {
  width: 60%;
}
.content-home__column:nth-child(2) .content-home__column-content::before {
  left: auto;
  right: 0;
}
.content-home__column:nth-child(2) .content-home__column-content::after {
  right: auto;
  left: 0;
  transform: translate(-50%, 50%);
}
.content-home__column:nth-child(2) .content-home__column-title,
.content-home__column:nth-child(2) .content-home__column-text {
  text-align: end;
}

.content-home__column-body {
  position: absolute;
  top: 0;
  width: 55%;
}

.content-home__column-content {
  padding: 0px 0px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.content-home__column-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 60px);
  height: 3px;
  background: #4483BD;
}
.content-home__column-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  width: 120px;
  height: 120px;
  border: 3px solid #4483BD;
  border-radius: 50%;
  background: transparent;
}

.content-home__column-title {
  margin: 0px 0px 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 36px;
  line-height: 42px;
  color: #fff;
}

.content-home__column-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

@media (min-width: 2500px) {
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 100px;
  }
}
@media (min-width: 2300px) {
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 70px;
  }
}
@media (min-width: 2100px) {
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 50px;
  }
  .content-home__column-content::before {
    width: calc(100% - 75px);
  }
  .content-home__column-content::after {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 770px) {
  .content-home__body {
    padding: 50px 0px;
  }
  .content-home__title {
    margin: 0px 0px 10px;
  }
  .content-home__text {
    font-size: 15px;
    line-height: 25px;
  }
  .content-home__text p {
    margin: 0px 0px 10px;
  }
  .content-home__column {
    padding: 0px 0px 250px;
  }
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 30px;
  }
  .content-home__column-content::before {
    width: calc(100% - 25px);
  }
  .content-home__column-content::after {
    width: 50px;
    height: 50px;
  }
  .content-home__column-title {
    margin: 0px 0px 5px;
    font-size: 20px;
    line-height: 25px;
    z-index: 10;
  }
  .content-home__column-text {
    font-size: 16px;
    line-height: 22px;
    z-index: 10;
  }
}
@media (max-width: 500px) {
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 10px;
    width: 65%;
    display: flex;
    justify-content: end;
  }
  .content-home__column-body {
    width: 60%;
  }
  .content-home__column-body {
    width: 60%;
  }
  .content-home__column-title,
  .content-home__column-text {
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .content-home__column:nth-child(2) .content-home__column-body {
    top: 10px;
    width: 50%;
  }
}
@media (max-width: 335px) {
  .content-home__text {
    margin: 0px 0px 50px;
  }
}
.services-home {
  background: #000;
}

.services-home__body {
  transform: translateY(-150px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-home__title {
  margin: 0px 0px 40px;
  color: #fff;
}

.services-home__text {
  margin: 0px 0px 50px;
  max-width: 720px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.services-home__text p {
  margin: 0px 0px 15px;
}
.services-home__text p:last-child {
  margin: 0;
}

.services-home__row {
  max-width: 850px;
  width: calc(100% + 20px);
  position: relative;
}
.services-home__row .slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  right: calc(100% + 80px);
  transform: translateY(-50%) rotate(-180deg);
}
.services-home__row .slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  left: calc(100% + 80px);
  transform: translateY(-50%);
}

.services-home__column {
  padding: 0px 10px;
  width: 100%;
}

.services-home__column-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.services-home__column-img {
  padding-bottom: 50%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.services-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.services-home__column-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(183.26deg, rgba(16, 16, 16, 0) 37.71%, rgba(16, 16, 16, 0.8) 112.75%);
  z-index: 1;
}

.services-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 55px 60px;
  width: 100%;
  z-index: 2;
}

.services-home__column-contnet-title {
  position: relative;
  font-family: "Rubik", sans-serif;
  font-size: 36px;
  line-height: 40px;
  color: #fff;
}
.services-home__column-contnet-title::before {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 38px;
  height: 2px;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .services-home__row .slick-prev.slick-arrow {
    right: auto;
    left: calc(0% + 0px);
  }
  .services-home__row .slick-next.slick-arrow {
    position: absolute;
    left: auto;
    right: calc(0% + 0px);
  }
}
@media (max-width: 770px) {
  .services-home__body {
    transform: translateY(-75px);
  }
  .services-home__title {
    margin: 0px 0px 10px;
  }
  .services-home__text {
    margin: 0px 0px 30px;
    font-size: 16px;
    line-height: 22px;
  }
  .services-home__text p {
    margin: 0px 0px 10px;
  }
  .services-home__column-contnet-title {
    font-size: 20px;
    line-height: 25px;
  }
  .services-home__column-contnet-title::before {
    top: calc(100% + 5px);
    width: 20px;
  }
}
@media (max-width: 550px) {
  .services-home__column-img {
    padding-bottom: 70%;
  }
  .services-home__column-content {
    padding: 0px 20px 20px;
  }
}
.gallery-home {
  margin: 0px 0px 100px;
  padding: 0px 0px 90px;
  background: #000;
}

.gallery-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-home__title {
  margin: 0px 0px 50px;
  color: #fff;
}

.gallery-home__text {
  margin: 0px 0px 50px;
  max-width: 720px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.gallery-home__text p {
  margin: 0px 0px 15px;
}
.gallery-home__text p:last-child {
  margin: 0;
}

.gallery-home__row-slick {
  width: 100%;
}

.gallery-home__row {
  margin: 0px 0px 0px -10px;
  max-width: 1100px;
  width: calc(100% + 20px);
  position: relative;
}
.gallery-home__row .slick-prev.slick-arrow {
  position: absolute;
  bottom: 0%;
  right: calc(0% + 45px + 10px);
  transform: translateY(50%);
}
.gallery-home__row .slick-next.slick-arrow {
  position: absolute;
  bottom: 0%;
  right: calc(0% + 0px + 10px);
  transform: translateY(50%) rotate(-180deg);
}

.gallery-home__column {
  padding: 0px 10px;
  width: 100%;
}

.gallery-home__column-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-home__column-img {
  padding-bottom: 50%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.gallery-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.gallery-home__column-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 157.3%);
  z-index: -1;
}

.gallery-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 50px 60px;
  width: 100%;
  z-index: 2;
}

.gallery-home__column-title {
  max-width: 600px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 28px;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 770px) {
  .gallery-home {
    margin: 0px 0px 50px;
    padding: 0px 0px 50px;
  }
  .gallery-home__title {
    margin: 0px 0px 10px;
  }
  .gallery-home__text {
    margin: 0px 0px 30px;
    font-size: 16px;
    line-height: 22px;
  }
  .gallery-home__column-img {
    padding-bottom: 70%;
  }
  .gallery-home__column-content {
    padding: 0px 20px 20px;
  }
  .gallery-home__column-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.advantages-home {
  margin: 0px 0px 80px;
}

.advantages-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advnatages-home__title {
  margin: 0px 0px 60px;
}

.adnvatages-home__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.advnatages-home__column {
  padding: 0px 10px 20px;
  width: 100%;
}

.advantages-home__column-body {
  padding: 60px 40px 40px;
  width: 100%;
  height: 100%;
  border: 2px solid #E0E0E0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-home__column-img {
  margin: 0px 0px 30px;
  height: 60px;
}
.advantages-home__column-img img {
  max-height: 100%;
}

.advantages-home__column-title {
  margin: 0px 0px 10px;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  line-height: 30px;
  color: #151515;
}

.advnatages-home__column-text {
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #555555;
}

@media (max-width: 1000px) {
  .adnvatages-home__row {
    width: calc(100% + 10px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .advnatages-home__column {
    padding: 0px 5px 10px;
  }
}
@media (max-width: 770px) {
  .advantages-home {
    margin: 0px 0px 50px;
  }
  .advnatages-home__title {
    margin: 0px 0px 20px;
  }
  .advantages-home__column-body {
    padding: 30px;
  }
  .advantages-home__column-img {
    margin: 0px 0px 20px;
  }
  .advantages-home__column-title {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 550px) {
  .adnvatages-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .advnatages-home__column {
    padding: 0px 0px 10px;
  }
  .advnatages-home__column:last-child {
    padding: 0;
  }
}
.applications-home {
  margin: 0px 0px 100px;
}

.applications-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.applications-home__title {
  margin: 0px 0px 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.applications-home__title-text {
  text-align: start;
}

.applications-home__title-arrows {
  display: flex;
}

.applications-home__title-arrow {
  min-width: 70px;
  height: 70px;
  border: 2px solid #151515;
  border-radius: 50%;
  background: url("../img/icon/arrow-applications.svg") center/25px 25px no-repeat;
  cursor: pointer;
  transition: 0.5s all;
}
.applications-home__title-arrow.left {
  margin: 0px 20px 0px 0px;
  transform: rotate(180deg);
}
.applications-home__title-arrow:hover {
  opacity: 0.5;
}

.applications-home__text {
  margin: 0px 0px 50px;
  width: 100%;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #555555;
}
.applications-home__text p {
  margin: 0px 0px 15px;
  max-width: 750px;
}
.applications-home__text p:last-child {
  margin: 0;
}

.applications-home__row {
  max-width: 550px;
  width: calc(100% + 20px);
  position: relative;
}
.applications-home__row .slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  right: calc(100% + 80px);
  transform: translateY(-50%) rotate(-180deg);
}
.applications-home__row .slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  left: calc(100% + 80px);
  transform: translateY(-50%);
}
.applications-home__row .slick-prev.slick-arrow {
  right: auto;
  left: calc(0% + 0px);
}
.applications-home__row .slick-next.slick-arrow {
  position: absolute;
  left: auto;
  right: calc(0% + 0px);
}

.applications-home__column {
  padding: 0px 10px;
  width: 100%;
}

.applications-home__column-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.applications-home__column-img {
  padding-bottom: 85%;
  width: 100%;
  position: relative;
}
.applications-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.applications-home__column-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.23%, rgba(0, 0, 0, 0.46) 93.35%);
}

.applications-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0px 20px 60px;
  width: 100%;
}

.applications-home__column-title {
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

@media (max-width: 770px) {
  .applications-home {
    margin: 0px 0px 50px;
  }
  .applications-home__title {
    margin: 0px 0px 10px;
  }
  .applications-home__title-arrows {
    display: none;
  }
  .applications-home__text {
    margin: 0px 0px 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .applications-home__column-content {
    padding: 0px 20px 20px;
  }
  .applications-home__column-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.client-home {
  margin: 0px 0px 100px;
}

.client-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-home__title {
  margin: 0px 0px 60px;
}

.client-home__row {
  width: calc(100% + 24px);
}
.client-home__row .slick-list.draggable {
  overflow: hidden;
}

.client-home__column {
  padding: 0px 12px;
  width: 100%;
}

.client-home__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-home__column-img {
  max-width: 100%;
}
.client-home__column-img img {
  max-width: 100%;
}

@media (max-width: 770px) {
  .client-home {
    margin: 0px 0px 50px;
  }
  .client-home__title {
    margin: 0px 0px 20px;
  }
  .client-home__row {
    width: calc(100% + 10px);
  }
  .client-home__column {
    padding: 0px 5px;
  }
}
.content-catalog {
  margin: 0px 0px 100px;
}

.content-catalog__body {
  display: flex;
  flex-direction: column;
}

.content-catalog__row {
  margin: 0px 0px 50px;
  display: flex;
  justify-content: space-between;
}
.content-catalog__row:last-child {
  margin: 0;
}
.content-catalog__row:nth-child(even) .content-catalog__image {
  order: 2;
}

.content-catalog__image {
  flex: 0 0 48%;
  width: 100%;
}

.contnet-catalog__image-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
}
.contnet-catalog__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-catalog__contnet {
  flex: 0 0 47%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.content-catalog__content-title {
  margin: 0px 0px 30px;
  text-align: start;
}

.content-catalog__content-text {
  margin: 0px 0px 30px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #555555;
}
.content-catalog__content-text p {
  margin: 0px 0px 15px;
}
.content-catalog__content-text p:last-child {
  margin: 0;
}

.content-catalog__content-link {
  padding: 10px 50px;
  border: 2px solid #151515;
  background: #151515;
  transition: 0.5s all;
  display: inline-block;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.content-catalog__content-link:hover {
  background: transparent;
  color: #151515;
}

.advantages-product {
  margin: 0px 0px 100px;
}

.advantages-product__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-product__title {
  margin: 0px 0px 50px;
}

.advantages-product__text {
  margin: 0px 0px 60px;
  max-width: 990px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #555555;
}

.advantages-product__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 400px 300px;
  grid-template-areas: "column_1 column_1 column_1 column_2 column_2 column_2" "column_3 column_3 column_4 column_4 column_5 column_5";
}

.advantages-product__column {
  padding: 0px 10px 20px;
  width: 100%;
}
.advantages-product__column:nth-child(1) {
  grid-area: column_1;
}
.advantages-product__column:nth-child(2) {
  grid-area: column_2;
}
.advantages-product__column:nth-child(3) {
  grid-area: column_3;
}
.advantages-product__column:nth-child(4) {
  grid-area: column_4;
}
.advantages-product__column:nth-child(5) {
  grid-area: column_5;
}
.advantages-product__column:nth-child(3) .advantages-product__column-content {
  padding: 30px 20px 0px;
}
.advantages-product__column:nth-child(4) .advantages-product__column-content {
  padding: 30px 20px 0px;
}
.advantages-product__column:nth-child(5) .advantages-product__column-content {
  padding: 30px 20px 0px;
}

.advantages-product__column-body {
  width: 100%;
  height: 100%;
  position: relative;
}

.advantages-product__column-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.advantages-product__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantages-product__column-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 60px 20px;
  width: 100%;
}

.advantages-product__column-title {
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 33px;
  line-height: 38px;
  color: #fff;
}

@media (max-width: 770px) {
  .advantages-product {
    margin: 0px 0px 50px;
  }
  .advantages-product__title {
    margin: 0px 0px 10px;
  }
  .advantages-product__text {
    margin: 0px 0px 30px;
    font-size: 16px;
    line-height: 22px;
  }
  .advantages-product__row {
    width: calc(100% + 10px);
    grid-template-rows: 300px 300px 300px;
    grid-template-areas: "column_1 column_1 column_1 column_2 column_2 column_2" "column_3 column_3 column_3 column_4 column_4 column_4" "column_5 column_5 column_5 column_5 column_5 column_5";
  }
  .advantages-product__row:nth-child(3) .advantages-product__column-content {
    padding: 20px 20px 0px;
  }
  .advantages-product__row:nth-child(4) .advantages-product__column-content {
    padding: 20px 20px 0px;
  }
  .advantages-product__row:nth-child(5) .advantages-product__column-content {
    padding: 20px 20px 0px;
  }
  .advantages-product__column {
    padding: 0px 5px 10px;
  }
  .advantages-product__column-content {
    padding: 20px 20px 0px;
  }
  .advantages-product__column-title {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 550px) {
  .advantages-product__row {
    grid-template-rows: 200px 200px 200px;
  }
  .advantages-product__column-content {
    padding: 20px 10px 0px;
  }
  .advantages-product__column-title {
    font-size: 16px;
    line-height: 22px;
  }
}
.fullscreen-product {
  background: #151515;
  position: relative;
  z-index: 1;
}
.fullscreen-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70.86%, #000000 101.44%);
  z-index: -1;
}

.fullscreen-product__body {
  padding: 100px 0px 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.fullscreen-product__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.fullscreen-product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-product__title {
  max-width: 720px;
  color: #fff;
}

.content-product {
  position: relative;
}
.content-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -2;
}

.content-product__body {
  padding: 150px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.content-product__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-30%) translateX(-50%);
  width: 2000px;
  z-index: -1;
}
.content-product__img img {
  width: 100%;
}

.content-product__title {
  margin: 0px 0px 40px;
  max-width: 730px;
  color: #fff;
}

.content-product__text {
  margin: 0px 0px 70px;
  max-width: 720px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.content-product__text p {
  margin: 0px 0px 15px;
}
.content-product__text p:last-child {
  margin: 0;
}

.content-product__row {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-product__column {
  padding: 0px 0px 250px;
  display: flex;
  position: relative;
}
.content-product__column:nth-child(1) {
  justify-content: end;
}
.content-product__column:nth-child(1) .content-product__column-body {
  width: 40%;
}
.content-product__column:nth-child(1) .content-product__column-content::before {
  left: auto;
  right: 0;
}
.content-product__column:nth-child(1) .content-product__column-content::after {
  right: auto;
  left: 0;
  transform: translate(-100%, 50%);
}
.content-product__column:nth-child(1) .content-product__column-title,
.content-product__column:nth-child(1) .content-product__column-text {
  text-align: end;
}
.content-product__column:nth-child(2) .content-product__column-body {
  top: -100px;
}

.content-product__column-body {
  position: absolute;
  top: 0;
  width: 40%;
}

.content-product__column-content {
  padding: 0px 0px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.content-product__column-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 0px);
  height: 3px;
  background: #EF7D00;
}
.content-product__column-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(100%, 50%);
  width: 120px;
  height: 120px;
  border: 3px solid #EF7D00;
  border-radius: 50%;
  background: transparent;
}

.content-product__column-title {
  margin: 0px 0px 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 36px;
  line-height: 42px;
  color: #fff;
}

.content-product__column-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

@media (min-width: 2500px) {
  .content-product__column:nth-child(2) .content-product__column-body {
    top: 100px;
  }
}
@media (min-width: 2300px) {
  .content-product__column:nth-child(2) .content-product__column-body {
    top: 70px;
  }
}
@media (min-width: 2100px) {
  .content-product__column:nth-child(2) .content-product__column-body {
    top: 50px;
  }
  .content-product__column-content::before {
    width: calc(100% - 75px);
  }
  .content-product__column-content::after {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 770px) {
  .content-product__body {
    padding: 50px 0px;
  }
  .content-product__img {
    width: 1000px;
  }
  .content-product__title {
    margin: 0px 0px 10px;
  }
  .content-product__text {
    font-size: 15px;
    line-height: 25px;
  }
  .content-product__text p {
    margin: 0px 0px 10px;
  }
  .content-product__column {
    padding: 0px 0px 200px;
  }
  .content-product__column:nth-child(2) .content-product__column-body {
    top: -100px;
  }
  .content-product__column-content::before {
    width: calc(100% - 0px);
  }
  .content-product__column-content::after {
    width: 50px;
    height: 50px;
  }
  .content-product__column-title {
    margin: 0px 0px 5px;
    font-size: 20px;
    line-height: 25px;
    z-index: 10;
  }
  .content-product__column-text {
    font-size: 16px;
    line-height: 22px;
    z-index: 10;
  }
}
@media (max-width: 6000px) {
  .content-product__text {
    margin: 0px 0px 30px;
  }
  .content-product__column {
    padding: 0px 0px 30px;
  }
  .content-product__column:last-child {
    padding: 0;
  }
  .content-product__column:nth-child(1) .content-product__column-body {
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: start;
  }
  .content-product__column:nth-child(1) .content-product__column-title,
  .content-product__column:nth-child(1) .content-product__column-text {
    text-align: start;
  }
  .content-product__column:nth-child(2) .content-product__column-body {
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: start;
  }
  .content-product__column-body {
    position: relative;
    width: 100%;
  }
  .content-product__column-content {
    padding: 0;
  }
  .content-product__column-content::before, .content-product__column-content::after {
    display: none;
  }
}
.info-product {
  margin: 0px 0px 100px;
}
.info-product.about .info-product__content-text {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 770px) {
  .info-product.about .info-product__content-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.info-product__body {
  display: flex;
  flex-direction: column;
}

.info-product__row {
  margin: 0px 0px 100px;
  display: flex;
  justify-content: space-between;
}
.info-product__row:last-child {
  margin: 0;
}
.info-product__row:nth-child(even) .info-product__image {
  order: 2;
}

.info-product__image {
  flex: 0 9 46%;
  width: 100%;
}

.info-product__image-img {
  padding-bottom: 80%;
  width: 100%;
  height: 100%;
  position: relative;
}
.info-product__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-product__content {
  flex: 0 9 46%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-product__content-title {
  margin: 0px 0px 20px;
  text-align: start;
}

.info-product__content-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 22px;
  line-height: 30px;
  color: #555555;
}
.info-product__content-text p {
  margin: 0px 0px 15px;
}
.info-product__content-text p:last-child {
  margin: 0;
}

@media (max-width: 770px) {
  .info-product {
    margin: 0px 0px 50px;
  }
  .info-product__row {
    margin: 0px 0px 50px;
    flex-direction: column;
  }
  .info-product__row:nth-child(even) .info-product__image {
    order: 1;
  }
  .info-product__row:nth-child(even) .info-product__content {
    order: 2;
  }
  .info-product__image {
    margin: 0px 0px 20px;
  }
  .info-product__image-img {
    padding-bottom: 70%;
  }
  .info-product__content-title {
    margin: 0px 0px 10px;
  }
  .info-product__content-text {
    font-size: 16px;
    line-height: 22px;
  }
  .info-product__content-text p {
    margin: 0px 0px 5px;
  }
}
.content-services {
  margin: 0px 0px 80px;
}

.content-services__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-services__title {
  margin: 0px 0px 60px;
  width: 100%;
  text-align: start;
}

.content-services__row {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.content-services__column {
  padding: 0px 10px 20px;
  width: 100%;
}

.contnet-services__column-body {
  padding: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid #EFEFEF;
  display: inline-flex;
  flex-direction: column;
}
.contnet-services__column-body:hover .contnet-services__column-img img {
  scale: 1.2;
}
.contnet-services__column-body:hover .contnet-services__column-content-icon {
  margin: 0px 0px 0px 10px;
}

.contnet-services__column-img {
  padding-bottom: 90%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.contnet-services__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s linear;
}

.content-services__column-content {
  padding: 20px 0px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-services__column-content-title {
  margin: 0px 0px 10px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #151515;
}

.content-services__column-content-text {
  flex: auto;
  margin: 0px 0px 10px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #777777;
}

.contnet-services__column-content-icon {
  width: 35px;
  height: 30px;
  border: 2px solid #151515;
  background: #151515 url("../img/icon/arrow-content.svg") center/15px 15px no-repeat;
  transition: all 0.5s linear;
}

@media (max-width: 1000px) {
  .content-services__row {
    width: calc(100% + 10px);
    grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  }
  .content-services__column {
    padding: 0px 5px 10px;
  }
}
@media (max-width: 770px) {
  .content-services {
    margin: 0px 0px 50px;
  }
  .content-services__title {
    margin: 0px 0px 20px;
  }
  .content-services__row {
    width: calc(100% + 10px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .content-services__column {
    padding: 0px 5px 10px;
  }
}
@media (max-width: 400px) {
  .content-services__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .content-services__column {
    padding: 0px 0px 10px;
  }
  .content-services__column:last-child {
    padding: 0;
  }
}
.info-services {
  margin: 100px 0px;
}
.info-services.project-blog .info-services__content-title {
  font-size: 25px;
  line-height: 30px;
}
@media (max-width: 770px) {
  .info-services.project-blog .info-services__content-title {
    font-size: 20px;
    line-height: 25px;
  }
}

.info-services__body {
  display: flex;
  justify-content: space-between;
}

.info-services__image {
  flex: 0 0 47%;
  width: 100%;
}

.info-services__image-img {
  padding-bottom: 85%;
  width: 100%;
  height: 100%;
  position: relative;
}
.info-services__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-services__content {
  flex: 0 0 47%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-services__content-title {
  margin: 0px 0px 20px;
  text-align: start;
}

.info-services__contnet-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #555555;
}
.info-services__contnet-text p {
  margin: 0px 0px 15px;
}
.info-services__contnet-text p:last-child {
  margin: 0;
}

@media (max-width: 770px) {
  .info-services {
    margin: 50px 0px;
  }
  .info-services__body {
    flex-direction: column;
  }
  .info-services__image {
    margin: 0px 0px 20px;
  }
  .info-services__image-img {
    padding-bottom: 70%;
  }
  .info-services__content-title {
    margin: 0px 0px 10px;
  }
  .info-services__contnet-text {
    font-size: 16px;
    line-height: 22px;
  }
  .info-services__contnet-text p {
    margin: 0px 0px 10px;
  }
}
.content-about {
  margin: 0px 0px 100px;
}

.content-about__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-about__video {
  flex: 0 0 47%;
  width: 100%;
}

.content-about__video-content {
  padding-bottom: 70%;
  width: 100%;
  border: 2px solid #151515;
  position: relative;
}
.content-about__video-content video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.content-about__content {
  flex: 0 0 47%;
  width: 100%;
}

.content-about__content-title {
  margin: 0px 0px 30px;
}

.content-about__content-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #555555;
}
.content-about__content-text p {
  margin: 0px 0px 15px;
}
.content-about__content-text p:last-child {
  margin: 0;
}

.mission-about {
  padding: 120px 0px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mission-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -2;
}

.mission-about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mission-about__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mission-about__img img {
  width: 100%;
}

.mission-about__title {
  margin: 0px 0px 45px;
  color: #fff;
}

.mission-about__text {
  max-width: 990px;
  text-align: center;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.mission-about__text.one {
  margin: 0px 0px 350px;
}
.mission-about__text.dwo {
  margin: 0px 0px 100px;
}

.mission-about__row {
  width: calc(100% + 50px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.mission-about__column {
  padding: 0px 25px 20px;
  width: 100%;
}

.mission-about__column-body {
  width: 100%;
  height: 100%;
}

.mission-about__column-img {
  padding-bottom: 140%;
  width: 100%;
  position: relative;
}
.mission-about__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-contact {
  margin: 75px 0px;
}

.content-contact__body {
  display: flex;
  justify-content: space-between;
}

.content-contact__info {
  margin: 0px 30px 0px 0px;
  padding: 75px 50px;
  max-width: 520px;
  width: 100%;
  min-width: 520px;
  border: 2px solid #EFEFEF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-contact__info-body {
  display: flex;
  flex-direction: column;
}

.contnet-contact__info-title {
  margin: 0px 0px 50px;
  position: relative;
  font-family: "Rubik", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #151515;
}
.contnet-contact__info-title::before {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 35px;
  height: 2px;
  background: #151515;
}

.content-contact__info-link {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #151515;
}
.content-contact__info-link:hover {
  opacity: 0.5;
}
.content-contact__info-link.address {
  margin: 0px 0px 10px;
}
.content-contact__info-link.phone-end {
  margin: 0px 0px 30px;
}
.content-contact__info-link.email {
  text-transform: uppercase;
}

.content-contact__info-work {
  margin: 0px 0px 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: #707070;
}

.content-contact__map {
  width: 100%;
}
.content-contact__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .content-contact__info {
    margin: 0px 20px 0px 0px;
    max-width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 770px) {
  .content-contact {
    margin: 50px 0px;
  }
  .content-contact__body {
    flex-direction: column;
  }
  .content-contact__info {
    margin: 0px 0px 20px;
    padding: 30px;
    max-width: 100%;
    min-width: auto;
  }
  .contnet-contact__info-title {
    margin: 0px 0px 20px;
    font-size: 20px;
    line-height: 25px;
  }
  .contnet-contact__info-title::before {
    top: calc(100% + 5px);
    width: 25px;
  }
  .content-contact__info-link {
    font-size: 16px;
    line-height: 22px;
  }
  .content-contact__map {
    height: 400px;
  }
}
.footer {
  background: #212121;
}

.main-footer__body {
  padding: 40px 0px 50px;
  display: flex;
}

.main-footer__content {
  margin: 0px 50px 0px 0px;
  max-width: 292px;
  display: flex;
  flex-direction: column;
}

.main-footer__content-title {
  margin: 0px 0px 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 22px;
  line-height: 26px;
  color: #fff;
}

.main-footer__content-list {
  display: flex;
  flex-direction: column;
}

.main-footer__content-item {
  margin: 0px 0px 10px;
}
.main-footer__content-item:last-child {
  margin: 0;
}
.main-footer__content-item:hover .main-footer__content-link {
  opacity: 0.5;
}

.main-footer__content-link {
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 19px;
  font-weight: 300;
  color: #E6E6E6;
}

.main-footer__social {
  flex: auto;
  display: flex;
  flex-direction: column;
}

.main-footer__social-title {
  margin: 0px 0px 20px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 22px;
  line-height: 26px;
  color: #fff;
}

.main-footer__social-list {
  display: flex;
}

.main-footer__social-item {
  margin: 0px 15px 0px 0px;
}
.main-footer__social-item:last-child {
  margin: 0;
}
.main-footer__social-item:hover .main-footer__social-img {
  opacity: 0.5;
}

.main-footer__social-img {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E3E3E3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}

.main-footer__submit {
  min-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #818181;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.main-footer__submit:hover {
  opacity: 0.5;
}

@media (max-width: 1000px) {
  .main-footer__body {
    padding: 40px 0px;
    flex-direction: column;
    align-items: start;
  }
  .main-footer__content {
    margin: 0px 0px 20px;
    max-width: 100%;
  }
  .main-footer__content-title {
    margin: 0px 0px 10px;
  }
  .main-footer__content-item {
    margin: 0px 0px 7px;
  }
  .main-footer__content-link {
    font-size: 16px;
    line-height: 22px;
  }
  .main-footer__social {
    margin: 0px 0px 20px;
  }
  .main-footer__social-title {
    margin: 0px 0px 10px;
  }
}
.politics-footer__body {
  padding: 25px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.politics-footer__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #444444;
  opacity: 0.3;
}

.politics-footer__logo {
  font-family: "Ubuntu Sans", sans-serif;
  display: flex;
  flex-wrap: wrap;
  font-size: 17px;
  color: #D7D7D7;
}
.politics-footer__logo span {
  display: block;
}
.politics-footer__logo a {
  padding: 2px 5px 0px 5px;
  display: inline-block;
}

@media (max-width: 770px) {
  .politics-footer__body {
    padding: 15px 0px;
    flex-direction: column;
  }
  .politics-footer__logo {
    margin: 0px 0px 10px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
	.content-catalog__row {
		flex-direction: column;
		row-gap: 20px;
	}
	.content-catalog__content-title {
		margin-bottom: 15px !important;
	}
}