@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Gilroy";
  src: url("../font/Gilroy-ExtraBold.otf") format("otf"), url("../font/Gilroy-Light.otf") format("otf");
  font-weight: 400;
  font-style: normal;
}
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: 1240px;
  margin: auto;
}
@media (max-width: 1270px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

.body.no-scroll {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.header_padding {
  padding: 102px 0px 0px;
}
@media (max-width: 770px) {
  .header_padding {
    padding: 82px 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%;
}
.header.active .main-header, .header.scroll .main-header {
  background: #2D2D2D;
}

.main-header {
  transition: 0.5s all;
  position: relative;
  z-index: 1;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  box-shadow: 0px 0px 50px 50px #292929;
  background: #292929;
  opacity: 0.3;
  z-index: -1;
}

.main-header__body {
  padding: 25px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header__list {
  display: flex;
  align-items: center;
}

.main-header__list-item {
  margin: 0px 30px 0px 0px;
}
.main-header__list-item:last-child {
  margin: 0;
}

.main-header__list-link {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: #fff;
  transition: color 0.5s;
}
.main-header__list-link::before {
  bottom: -20px;
}

.main-header__phone {
  display: flex;
  align-items: center;
}
.main-header__phone:hover .main-header__phone-img {
  box-shadow: 0px 0px 10px 1px #FF7F06;
}

.main-header__phone-img {
  margin: 0px 15px 0px 0px;
  width: 29px;
  height: 29px;
  background: #FF7F06;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.main-header__phone-img span {
  width: 14px;
  height: 14px;
  background: url("../img/icon/phone-header.svg") 0 0/100% 100% no-repeat;
}

.main-header__phone_text {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  transition: 0.5s all;
}

.main-header__sibmit {
  padding: 12px 24px;
  background: #fff;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  color: #292929;
}
.main-header__sibmit:hover {
  background: #FF7F06;
  box-shadow: 0 0 20px 0px #FF7F06;
  color: #fff;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1200px) {
  .main-header__logo {
    flex: auto;
  }
  .main-header__list {
    display: none;
  }
  .main-header__phone {
    margin: 0px 20px 0px 0px;
  }
  .main-header__phone-img {
    margin: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #FF7F06;
    border-radius: 0;
    background: transparent;
    transition: 0.5s all;
  }
  .main-header__phone-img span {
    width: 20px;
    height: 20px;
    background: url("../img/icon/phone-header-active.svg") 0 0/100% 100%;
  }
  .main-header__phone-img:hover {
    box-shadow: 0px 0px 10px 0px #FF7F06;
  }
  .main-header__phone_text {
    display: none;
  }
  .main-header__sibmit {
    display: none;
  }
  .main-header__burger {
    display: block;
  }
}
@media (max-width: 770px) {
  .main-header__body {
    padding: 15px 0px;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: 1s all;
  z-index: 5000;
}
.smart-header .container {
  width: 100%;
  height: 100%;
}
.smart-header.active {
  right: 0;
}

.smart-header__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 0;
}

.smart-header__exit-img {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.smart-header__exit-img span {
  width: 100%;
  height: 4px;
  background: #FF7F06;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
  transition: 0.5s all;
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF7F06;
  transform: rotate(90deg);
}
.smart-header__exit-img:hover span {
  box-shadow: 0px 0px 20px 2.5px #FF7F06;
}

.smart-header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__list-item {
  margin: 0px 0px 30px;
}

.smart-header__list-link {
  text-align: center;
  font-family: Gilroy, sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #2D2D2D;
}

.logo .logo__body {
  display: inline-block;
}
/* .logo .logo__img {
  width: 150px;
} */
.logo .logo__img img {
  width: 100%;
}
.logo.header_logo .logo__img {
  width: 123px;
}
@media (max-width: 770px) {
  .logo.header_logo .logo__img {
    width: 90px;
  }
}
.logo.footer_logo .logo__img {
  width: 152px;
}

.burger .burger__img {
  width: 40px;
  height: 40px;
  border: 2px solid #FF7F06;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.burger .burger__img:hover {
  box-shadow: 0px 0px 10px 0px #FF7F06;
}
.burger .burger__img span {
  width: 25px;
  height: 2px;
  display: inline-block;
  background: #FF7F06;
  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%;
  border-radius: 5px;
  background: #FF7F06;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -8px;
}
.burger .burger__img span::after {
  bottom: -8px;
}

/* Слайдер */
/* Слайдер запущен */
/* Слайдер с точками */
/* Ограничивающая оболочка */
/* Лента слайдов */
.slick-track {
  display: flex;
}

/* Слайд */
/* Слайд активный (показывается) */
/* Слайд основной */
/* Слайд по центру */
/* Клонированный слайд */
/* Стрелка */
/* Стрелка влево */
/* Стрелка вправо */
/* Стрелка не активная */
/* Точки (булиты) */
/* Активная точка */
/* Элемент точки */
.slick .slick-prev.slick-arrow,
.slick .slick-next.slick-arrow {
  width: 16px;
  height: 26px;
  background: transparent url("../img/icon/arrow-slick.svg") 0 0/100% 100% no-repeat;
  font-size: 0;
}
.slick .slick-next.slick-arrow {
  transform: rotate(180deg);
}
.slick .slick-dots {
  padding: 20px 0px 0px;
  display: flex;
  justify-content: center;
}
.slick .slick-dots li {
  margin: 0px 5px 0px 0px;
}
.slick .slick-dots li:last-child {
  margin: 0;
}
.slick .slick-dots .slick-active button {
  width: 28px;
  background: #FF7F06;
}
.slick .slick-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #F3F3F3;
  transition: 0.3s all;
  font-size: 0;
}

.title {
  margin: 0px 0px 0px;
  font-family: Gilroy, sans-serif;
  font-size: 42px;
  line-height: 50px;
  color: #292929;
  font-weight: 700;
  display: block;
}
@media (max-width: 770px) {
  .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF7F06;
  transition: width 1s;
}
.text-hover:hover::before {
  width: 100%;
}

.social {
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 1600;
}

.social__body {
  display: flex;
  flex-direction: column;
}

.social__img {
  margin: 0px 0px 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-block;
}
.social__img img {
  width: 100%;
  height: 100%;
}
.social__img:last-child {
  margin: 0;
}
@media (max-width: 770px) {
  .social__img {
    width: 50px;
    height: 50px;
  }
}

.magic-forms .alert.alert-success.alert-dismissible {
  margin: 0px 0px 10px;
}
.magic-forms .alert.alert-success.alert-dismissible .close {
  display: none;
}
.magic-forms .alert.alert-success.alert-dismissible p {
  padding: 15px 20px;
  width: 100%;
  background: #3aff45;
  text-align: center;
  font-family: Gilroy, 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%;
  background: #ff322c;
}
.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: Gilroy, 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__fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #292929;
  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;
  overflow: hidden;
  background: #fff;
  display: inline-block;
  position: relative;
}

.modal__exit {
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal__exit-img {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal__exit-img:hover span {
  box-shadow: 0px 0px 500px 100px #FF7F06;
}
.modal__exit-img span {
  width: 100%;
  height: 3.5px;
  background: #292929;
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
  transition: 0.5s all;
}
.modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #292929;
  transform: rotate(90deg);
}

.modal__title {
  margin: 0px 0px 40px;
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  margin: 0px 0px 15px;
  padding: 20px 30px;
  background: #F3F3F3;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  color: #898989;
}
.modal__input:focus {
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 1px #FF7F06;
  color: #FF7F06;
}

.modal__submit {
  padding: 20px 30px;
  background: #FF7F06;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal__submit:hover {
  box-shadow: 0px 0px 20px 1px #FF7F06;
}

@media (max-width: 770px) {
  .modal__title {
    margin: 0px 0px 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: 50px 30px;
    width: 100%;
    display: block;
  }
}
.fullscreen-home {
  width: 100%;
  height: 100vh;
  position: relative;
}
.fullscreen-home .container {
  height: 100%;
}

.fullscreen-home__body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.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: 700px;
  position: relative;
  z-index: 1;
}
.fullscreen-home__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  box-shadow: 0px 0px 200px 200px #000;
  opacity: 0.7;
  z-index: -1;
}

.fullscreen-home__content-title {
  max-width: 570px;
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 60px;
  line-height: 67px;
  font-weight: 600;
  color: #fff;
}

.fullscreen-home__content-text {
  max-width: 500px;
  margin: 0px 0px 35px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
}

.fullscreen-home__content-submit {
  padding: 20px 35px;
  background: #FF7F06;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Mulish;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.fullscreen-home__content-submit:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

@media (max-width: 770px) {
  .fullscreen-home__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .fullscreen-home__content-text {
    margin: 0px 0px 20px;
    font-size: 16px;
    line-height: 22px;
  }
  .fullscreen-home__content-submit {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.catalog-home__body {
  padding: 90px 0px;
}

.catalog-home__top {
  margin: 0px 0px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.catalog-home__top-link {
  padding: 12px 36px;
  background: #FF7F06;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.catalog-home__top-link:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

.catalog-home__row {
  margin: 0px -16px;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.catalog-home__column {
  padding: 0px 16px 30px;
  width: 100%;
}

.catalog-home__column-body {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: 0.5s all;
}
.catalog-home__column-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DDDDDD;
  opacity: 0.2;
}
.catalog-home__column-body:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 40px 0px #FF7F06;
}

.catalog-home__column-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
}
.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-content {
  padding: 25px 15px;
  display: flex;
  justify-content: space-between;
}

.catalog-home__column-left {
  padding: 0px 20px 0px 0px;
}

.catalog-home__column-title {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #292929;
}

.catalog-home__column-subtitle {
  font-family: Gilroy, sans-serif;
  line-height: 20px;
  font-weight: 300;
  color: #535353;
}

.catalog-home__column-arrow {
  width: 37px;
  height: 32px;
  background: #FF7F06;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1000px) {
  .catalog-home__row {
    margin: 0px -10px;
    grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  }
  .catalog-home__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .catalog-home__body {
    padding: 50px 0px;
  }
  .catalog-home__top {
    margin: 0px 0px 20px;
    flex-direction: column;
  }
  .catalog-home__top-title {
    margin: 0px 0px 10px;
  }
  .catalog-home__row {
    margin: 0px -5px;
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .catalog-home__column {
    padding: 0px 5px 20px;
  }
  .catalog-home__column-title {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 550px) {
  .catalog-home__row {
    margin: 0;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .catalog-home__column {
    padding: 0px 0px 20px;
  }
  .catalog-home__column:last-child {
    padding: 0;
  }
}
.about-home {
  background: #F4F4F4;
}

.about-home__body {
  margin: 0px 0px 90px;
  padding: 90px 0px;
  display: flex;
  align-items: center;
}

.about-home__image {
  flex: 0 0 45%;
  width: 100%;
}

.about-home__img {
  padding-bottom: 90%;
  width: 100%;
  position: relative;
}
.about-home__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-home__content {
  padding: 0px 0px 0px 100px;
}

.about-home__content-title {
  margin: 0px 0px 25px;
}

.about-home__content-text {
  margin: 0px 0px 30px;
  font-family: Montserrat;
  font-size: 17px;
  line-height: 25px;
  color: #535353;
}

.about-home__content-submit {
  padding: 22px 60px;
  background: #FF7F06;
  display: inline-block;
  transition: 0.5s all;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.about-home__content-submit:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

@media (max-width: 1000px) {
  .about-home__content {
    padding: 0px 0px 0px 40px;
  }
}
@media (max-width: 770px) {
  .about-home__body {
    margin: 0px 0px 50px;
    padding: 50px 0px;
    flex-direction: column;
  }
  .about-home__image {
    padding: 0px 0px 30px;
  }
  .about-home__content {
    padding: 0;
  }
  .about-home__content-title {
    margin: 0px 0px 10px;
  }
  .about-home__content-text {
    font-size: 14px;
    line-height: 20px;
  }
  .about-home__content-submit {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.advantages-home.services .advantages-home__body {
  padding: 0px 0px 90px;
}
@media (max-width: 770px) {
  .advantages-home.services .advantages-home__body {
    padding: 0px 0px 50px;
  }
}

.advantages-home__body {
  padding: 0px 0px 65px;
}

.advantages-home__title {
  margin: 0px 0px 40px;
}

.advantages-home__row {
  margin: 0px -16px;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.advantages-home__column {
  padding: 0px 16px;
  width: 100%;
}

.advantages-home__column-body {
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  background: #F4F4F4;
  display: inline-flex;
  flex-direction: column;
}

.advantages-home__column-img {
  margin: 0px 0px 20px;
  height: 75px;
}
.advantages-home__column-img img {
  height: 100%;
}

.advantages-home__column-title {
  flex: auto;
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #292929;
}

.advantages-home__column-text {
  font-family: Gilroy, sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 300;
  color: #535353;
}

@media (max-width: 1000px) {
  .advantages-home__row {
    margin: 0px -10px;
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .advantages-home__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .advantages-home__body {
    padding: 0px 0px 50px;
  }
  .advantages-home__title {
    margin: 0px 0px 20px;
  }
  .advantages-home__row {
    margin: 0px -5px;
  }
  .advantages-home__column {
    padding: 0px 5px 10px;
  }
  .advantages-home__column-title {
    margin: 0px 0px 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .advantages-home__column-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 500px) {
  .advantages-home__row {
    margin: 0;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .advantages-home__column {
    padding: 0px 0px 10px;
  }
  .advantages-home__column:last-child {
    padding: 0;
  }
}
.services-home__body {
  padding: 0px 0px 100px;
}

.services-home__title {
  margin: 0px 0px 40px;
}

.services-home__row {
  margin: 0px -16px;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.services-home__column {
  padding: 0px 16px;
  width: 100%;
}

.services-home__column-body {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  transition: 0.5s all;
}
.services-home__column-body:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 50px 0px #FF7F06;
}

.services-home__column-img {
  padding-bottom: 60%;
  width: 100%;
  position: relative;
}
.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: #000;
  opacity: 0.3;
  z-index: 1;
}

.services-home__column-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.services-home__column-left {
  padding: 0px 40px 0px 0px;
}

.services-home__column-title {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

.services-home__column-text {
  font-family: Gilroy, sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
}

.services-home__column-icon {
  min-width: 52px;
  height: 52px;
  background: #FF7F06;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-home__column-icon img {
  width: 30px;
}

@media (max-width: 1000px) {
  .services-home__row {
    margin: 0px -10px;
  }
  .services-home__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .services-home__body {
    padding: 0px 0px 50px;
  }
  .services-home__title {
    margin: 0px 0px 20px;
  }
  .services-home__column-content {
    padding: 10px;
  }
  .services-home__column-title {
    margin: 0px 0px 10px;
    font-size: 16px;
    line-height: 20px;
  }
  .services-home__column-text {
    font-size: 14px;
    line-height: 20px;
  }
  .services-home__column-icon {
    width: 40px;
    height: 40px;
  }
  .services-home__column-icon img {
    width: 20px;
  }
}
@media (max-width: 650px) {
  .services-home__row {
    margin: 0;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .services-home__column {
    padding: 0px 0px 10px;
  }
  .services-home__column:last-child {
    margin: 0;
  }
}
.contact-home__body {
  margin: 0px 0px 150px;
  background: #F3F3F3;
  display: flex;
  align-items: center;
  position: relative;
}

.content-home__block {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-50%);
  z-index: -100;
}

.contact-home__content {
  flex: 0 0 55%;
  padding: 40px 60px;
}

.contact-home__title {
  margin: 0px 0px 40px;
}

.contact-home__form-inputs {
  margin: 0px 0px 18px;
  display: flex;
}
.contact-home__form-inputs input:nth-child(1) {
  margin: 0px 10px 0px 0px;
}

.contact-home__form-input {
  padding: 20px 30px;
  width: 100%;
  background: #fff;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  color: #898989;
}
.contact-home__form-input::-moz-placeholder {
  color: #898989;
}
.contact-home__form-input::placeholder {
  color: #898989;
}
.contact-home__form-input:focus {
  box-shadow: 0px 0px 20px 0px #FF7F06;
  transform: scale(1.01);
  color: #FF7F06;
}
.contact-home__form-input:focus::-moz-placeholder {
  color: #FF7F06;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.contact-home__form-input:focus::placeholder {
  color: #FF7F06;
  transition: 0.5s all;
}

.contact-home__form-submit {
  margin: 0px 0px 40px;
  padding: 25px 40px;
  background: #FF7F06;
  width: 100%;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.contact-home__form-submit:hover {
  box-shadow: 0px 0px 30px 0px #FF7F06;
}

.contact-home__social {
  display: flex;
}

.contact-home__social-column {
  width: 100%;
  display: flex;
  align-items: center;
}

.contact-home__social-content {
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 20px;
  border-left: 1px solid #CFCFCF;
  display: inline-block;
}

.contact-home__social-title {
  margin: 0px 0px 5px;
  font-family: Gilroy, sans-serif;
  font-size: 13px;
  color: #868686;
}

.contact-home__social-phone {
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #424B5A;
}

.contact-home__image {
  flex: 0 0 45%;
  width: 100%;
}

.contact-home__img {
  padding-bottom: 85%;
  width: 100%;
  position: relative;
}
.contact-home__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1000px) {
  .contact-home__body {
    flex-direction: column;
  }
  .contact-home__content {
    order: 2;
  }
  .contact-home__image {
    order: 1;
  }
}
@media (max-width: 770px) {
  .contact-home__body {
    margin: 0px 0px 50px;
  }
  .contact-home__title {
    margin: 0px 0px 20px;
  }
  .contact-home__form-input {
    padding: 15px 30px;
    font-size: 14px;
  }
  .contact-home__form-submit {
    padding: 15px 30px;
    font-size: 14px;
  }
  .contact-home__social-phone {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .contact-home__content {
    padding: 40px 20px;
  }
}
@media (max-width: 500px) {
  .contact-home__content {
    padding: 30px 15px;
    width: 100%;
  }
  .contact-home__form-inputs {
    margin: 0px 0px 10px;
    flex-direction: column;
  }
  .contact-home__form-inputs input:nth-child(1) {
    margin: 0px 0px 10px;
  }
  .contact-home__form-submit {
    margin: 0px 0px 30px;
  }
  .contact-home__social {
    flex-direction: column;
  }
  .contact-home__social-column {
    margin: 0px 0px 15px;
  }
  .contact-home__social-column:last-child {
    margin: 0;
  }
  .contact-home__social-img {
    width: 25px;
    display: flex;
    justify-content: center;
  }
}
.client-home__body {
  padding: 0px 0px 90px;
  z-index: 10;
}

.client-home__title {
  margin: 0px 0px 50px;
}

.client-home__row {
  margin: 0px -15px;
  position: relative;
}
.client-home__row .slick-prev.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  right: calc(100% + 25px);
  transform: translateY(-50%);
  z-index: 100;
}
.client-home__row .slick-next.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(100% + 25px);
  transform: translateY(-50%) rotate(180deg);
  z-index: 100;
}
.client-home__row .client-home__column.slick-slide.slick-active {
  opacity: 1;
}

.client-home__column {
  padding: 0px 15px;
  width: 100%;
  opacity: 0;
  transition: 1s all;
}

.client-home__column-body {
  padding: 20px 15px;
  width: 100%;
  height: 100%;
  border: 1px solid #B2B2B2;
  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: 1000px) {
  .client-home__row {
    margin: 0px -10px;
  }
  .client-home__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .client-home__body {
    padding: 0px 0px 50px;
  }
  .client-home__title {
    margin: 0px 0px 20px;
  }
  .client-home__row {
    margin: 0px -5px;
  }
  .client-home__column {
    padding: 0px 5px;
  }
}
.content-catalog__body {
  padding: 50px 0px 90px;
}

.content-catalog__title {
  margin: 0px 0px 30px;
}

.content-catalog__row {
  display: flex;
}

.content-catalog__content {
  margin: 0px 60px 0px 0px;
  max-width: 255px;
  min-width: 255px;
}

.content-catalog__content-body {
  padding: 30px 10px 40px 20px;
  background: #F4F4F4;
}

.content-catalog__category-item {
  margin: 0px 0px 15px;
}

.content-catalog__category-text {
  padding: 0px 0px 0px 25px;
  cursor: pointer;
  position: relative;
  margin: 0px 0px 15px;
  font-family: Gilroy, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #292929;
}
.content-catalog__category-text::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D8D8D8;
  transition: 0.5s all;
}
.content-catalog__category-text::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: 0.5s all;
}
.content-catalog__category-text.active::before, .content-catalog__category-text:hover::before {
  background: transparent;
}
.content-catalog__category-text.active::after, .content-catalog__category-text:hover::after {
  border: 3px solid #FF7F06;
}

.content-catalog__category-submenu {
  padding: 0px 0px 0px 25px;
  display: none;
}

.content-catalog__submenu-item {
  margin: 0px 0px 6px;
}

.content-catalog__submenu-link {
  font-family: Gilroy, sans-serif;
  line-height: 22px;
  font-weight: 300;
  color: #292929;
  transition: 0.5s all;
}
.content-catalog__submenu-link:hover {
  color: #FF7F06;
}

.content-catalog__product {
  margin: 0px -16px;
  width: 100%;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.ontent-catalog__column {
  padding: 0px 16px 30px;
  width: 100%;
}

.ontent-catalog__column-body {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  transition: 0.5s all;
}
.ontent-catalog__column-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DDDDDD;
  opacity: 0.2;
}
.ontent-catalog__column-body:hover {
  transform: scale(1.01);
  box-shadow: 0px 0px 40px 0px #FF7F06;
}

.ontent-catalog__column-img {
  padding-bottom: 70%;
  width: 100%;
  position: relative;
}
.ontent-catalog__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ontent-catalog__column-content {
  padding: 25px 15px;
  display: flex;
  justify-content: space-between;
}

.ontent-catalog__column-left {
  padding: 0px 20px 0px 0px;
}

.ontent-catalog__column-title {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #292929;
}

.ontent-catalog__column-subtitle {
  font-family: Gilroy, sans-serif;
  line-height: 20px;
  font-weight: 300;
  color: #535353;
}

.ontent-catalog__column-arrow {
  width: 37px;
  height: 32px;
  background: #FF7F06;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .content-catalog__content {
    margin: 0px 20px 0px 0px;
  }
  .content-catalog__product {
    margin: 0px -10px;
  }
  .ontent-catalog__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 1000px) {
  .content-catalog__product {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .content-catalog__body {
    padding: 50px 0px;
  }
  .content-catalog__title {
    margin: 0px 0px 20px;
  }
  .content-catalog__row {
    flex-direction: column;
  }
  .content-catalog__content {
    margin: 0px 0px 20px;
    max-width: 100%;
    min-width: auto;
  }
  .content-catalog__category-text {
    font-size: 16px;
    line-height: 22px;
  }
  .content-catalog__product {
    margin: 0px -5px;
  }
  .ontent-catalog__column {
    padding: 0px 5px 10px;
  }
  .ontent-catalog__column-title {
    margin: 0px 0px 0px;
    font-size: 16px;
    line-height: 22px;
  }
  .ontent-catalog__column-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 500px) {
  .content-catalog__product {
    margin: 0;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .ontent-catalog__column {
    padding: 0px 0px 10px;
  }
  .ontent-catalog__column:last-child {
    padding: 0;
  }
}
.back-product__body {
  padding: 60px 0px 40px;
}

.back-product__link {
  display: inline-flex;
}
.back-product__link:hover .back-product__link-text {
  box-shadow: 0px 0px 50px 5px #FF7F06;
}
.back-product__link:hover .back-product__link-text::before {
  background: #FF7F06;
}

.back-product__link-img {
  margin: 0px 20px 0px 0px;
}

.back-product__link-text {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  color: #292929;
  transition: 0.5s all;
  position: relative;
  z-index: 1;
}
.back-product__link-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: -1;
  transition: 0.5s all;
}

@media (max-width: 770px) {
  .back-product__body {
    padding: 50px 0px 20px;
  }
}
.info-product__body {
  padding: 0px 0px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-product__images {
  margin: 0px -7px;
  flex: 0 0 60%;
  display: flex;
  justify-content: space-between;
}

.info-product__images-main {
  padding: 0px 7px 0px 0px;
  flex: 0 0 65%;
}

.info-product__images-main-img {
  padding-bottom: 110%;
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
}
.info-product__images-main-img.active {
  display: block;
}
.info-product__images-main-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-product__images-img {
  padding: 0px 0px 0px 7px;
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.info-product__images-img-img {
  margin: 0px 0px 10px;
  width: 100%;
  height: 100%;
}
.info-product__images-img-img:last-child {
  margin: 0;
}
.info-product__images-img-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.info-product__content {
  flex: 0 0 40%;
  padding: 0px 0px 0px 60px;
}

.info-product__content-title {
  margin: 0px 0px 20px;
}

.info-product__content-text {
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: #535353;
}

.info-product__content-subtitle {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #292929;
}

.info-product__content-list {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}

.info-product__content-item {
  margin: 0px 0px 10px;
  padding: 0px 0px 0px 25px;
  position: relative;
  font-family: Gilroy, sans-serif;
  font-size: 15px;
  line-height: 21px;
  color: #535353;
}
.info-product__content-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FF7F06;
}

.info-product__content-price {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: #292929;
}

.info-product__content-submit {
  padding: 20px 78px;
  background: #FF7F06;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.info-product__content-submit:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

@media (max-width: 1000px) {
  .info-product__content {
    padding: 0px 0px 0px 40px;
  }
}
@media (max-width: 770px) {
  .info-product__body {
    padding: 0px 0px 50px;
    flex-direction: column;
  }
  .info-product__images {
    margin: 0px 0px 20px;
    width: 100%;
  }
  .info-product__images-main {
    padding: 0px 5px 0px 0px;
  }
  .info-product__images-img {
    padding: 0px 0px 0px 5px;
  }
  .info-product__content {
    padding: 0;
  }
}
.content-product__body {
  padding: 0px 0px 70px;
}

.content-product__list {
  margin: 0px 0px 30px;
  display: flex;
}
.content-product__list:hover .content-product__item.active {
  border-bottom: 1px solid #BDBDBD;
  font-weight: 300;
}
.content-product__list:hover .content-product__item.active:hover {
  border-bottom: 1px solid #FF7F06;
  font-weight: 700;
}

.content-product__item {
  padding: 0px 0px 20px;
  width: 100%;
  border-bottom: 1px solid #BDBDBD;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 31px;
  font-weight: 300;
  color: #292929;
}
.content-product__item.active, .content-product__item:hover {
  border-bottom: 1px solid #FF7F06;
  font-weight: 700;
}

.content-product__content {
  display: none;
}
.content-product__content.active {
  display: block;
}

.content-product__content-text {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: #535353;
}
.content-product__content-text p {
  margin: 0px 0px 20px;
}
.content-product__content-text p:last-child {
  margin: 0;
}

.content-product__content-title {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #292929;
}

.content-product__content-row {
  margin: 0px -10px 20px;
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(2, 1fr);
}

.content-product__content-column {
  padding: 0px 10px 20px;
  width: 100%;
}

.content-product__content-column-body {
  padding: 0px 0px 25px;
  border-bottom: 1px solid #E8E8E8;
  width: 100%;
  height: 100%;
}

.content-product__content-column-title {
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #535353;
}

.content-product__content-column-item {
  margin: 0px 0px 10px;
  padding: 0px 0px 0px 20px;
  position: relative;
  font-family: Gilroy, sans-serif;
  font-size: 15px;
  line-height: 21px;
  color: #535353;
}
.content-product__content-column-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FF7F06;
}

@media (max-width: 770px) {
  .content-product__body {
    padding: 0px 0px 50px;
  }
  .content-product__list {
    margin: 0px 0px 20px;
    flex-direction: column;
  }
  .content-product__item {
    margin: 0px 0px 10px;
    padding: 0px 0px 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .content-product__content-text {
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__content-text p {
    margin: 0px 0px 10px;
  }
  .content-product__content-row {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .content-product__content-title {
    margin: 0px 0px 10px;
    font-size: 20px;
    line-height: 22px;
  }
  .content-product__content-column-title {
    margin: 0px 0px 10px;
    font-size: 16px;
    line-height: 22px;
  }
  .content-product__content-column-item {
    font-size: 14px;
    line-height: 20px;
  }
}
.fullscreen-services {
  position: relative;
}

.fullscreen-services__body {
  padding: 200px 0px 170px;
}

.fullscreen-services__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fullscreen-services__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-services__content {
  max-width: 420px;
  position: relative;
  z-index: 1;
}
.fullscreen-services__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  box-shadow: 0px 0px 200px 200px #000;
  opacity: 0.7;
  z-index: -1;
}

.fullscreen-services__content-title {
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 60px;
  line-height: 67px;
  font-weight: 600;
  color: #fff;
}

.fullscreen-services__content-text {
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 32px;
  font-weight: 300;
  color: #fff;
}

@media (max-width: 770px) {
  .fullscreen-services__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .fullscreen-services__content-text {
    font-size: 16px;
    line-height: 22px;
  }
}
.content-services__body {
  padding: 90px 0px;
}

.content-services__row {
  margin: 0px 0px 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.content-services__row:last-child {
  margin: 0;
}
.content-services__row.return .content-services__image {
  order: 2;
}
.content-services__row.return .content-services__content {
  padding: 0px 100px 0px 0px;
  order: 1;
}

.content-services__block {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-50%);
  z-index: -1;
}

.content-services__image {
  flex: 0 0 47%;
  width: 100%;
}

.content-services__img {
  padding-bottom: 90%;
  width: 100%;
  position: relative;
}
.content-services__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-services__content {
  flex: 0 0 53%;
  padding: 0px 0px 0px 100px;
}

.content-services__content-title {
  margin: 0px 0px 25px;
}

.content-services__content-text {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: #535353;
}

.content-services__content-link {
  padding: 22px 60px;
  background: #FF7F06;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.content-services__content-link:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

@media (max-width: 1000px) {
  .content-services__row.return .content-services__content {
    padding: 0px 40px 0px 0px;
  }
  .content-services__content {
    padding: 0px 0px 0px 40px;
  }
}
@media (max-width: 770px) {
  .content-services__body {
    padding: 50px 0px;
  }
  .content-services__row {
    margin: 0px 0px 50px;
    flex-direction: column;
  }
  .content-services__row.return .content-services__image {
    order: 1;
  }
  .content-services__row.return .content-services__content {
    padding: 0;
    order: 2;
  }
  .content-services__image {
    margin: 0px 0px 20px;
  }
  .content-services__content {
    padding: 0;
  }
  .content-services__content-title {
    margin: 0px 0px 10px;
  }
  .content-services__content-text {
    margin: 0px 0px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .content-services__content-link {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.team-about__body {
  padding: 0px 0px 90px;
}

.team-about__title {
  margin: 0px 0px 50px;
}

.team-about__row {
  margin: 0px -16px;
  position: relative;
}
.team-about__row .slick-prev.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  right: calc(100% + 25px);
  transform: translateY(-50%);
  z-index: 100;
}
.team-about__row .slick-next.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(100% + 25px);
  transform: translateY(-50%) rotate(180deg);
  z-index: 100;
}
.team-about__row .team-about__column.slick-slide.slick-active {
  opacity: 1;
}

.team-about__column {
  padding: 0px 16px;
  width: 100%;
  opacity: 0;
  transition: 1s all;
}

.team-about__column-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-about__column-img {
  margin: 0px 0px 22px;
  padding-bottom: 100%;
  width: 100%;
  position: relative;
}
.team-about__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-about__column-name {
  margin: 0px 0px 12px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #292929;
}

.team-about__column-post {
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: #535353;
}

@media (max-width: 1000px) {
  .team-about__row {
    margin: 0px -10px;
  }
  .team-about__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .team-about__body {
    padding: 0px 0px 50px;
  }
  .team-about__title {
    margin: 0px 0px 10px;
  }
  .team-about__row {
    margin: 0px -5px;
  }
  .team-about__column {
    padding: 0px 5px;
  }
  .team-about__column-img {
    margin: 0px 0px 20px;
  }
  .team-about__column-name {
    margin: 0px 0px 5px;
    font-size: 18px;
    line-height: 22px;
  }
  .team-about__column-post {
    font-size: 14px;
    line-height: 20px;
  }
}
.certifications-about__body {
  padding: 0px 0px 90px;
}

.cartifications-about__title {
  margin: 0px 0px 50px;
}

.certifications-about__row {
  margin: 0px -16px;
  position: relative;
}
.certifications-about__row .slick-prev.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  right: calc(100% + 25px);
  transform: translateY(-50%);
  z-index: 100;
}
.certifications-about__row .slick-next.slick-arrow {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(100% + 25px);
  transform: translateY(-50%) rotate(180deg);
  z-index: 100;
}
.certifications-about__row .certification-about__column.slick-slide.slick-active {
  opacity: 1;
}

.certification-about__column {
  padding: 0px 16px;
  width: 100%;
  opacity: 0;
  transition: 1s all;
}

.certifications-about__column-body {
  width: 100%;
  height: 100%;
}

.certifications-about__column-img {
  padding-bottom: 150%;
  width: 100%;
  display: inline-block;
  position: relative;
}
.certifications-about__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1000px) {
  .certifications-about__body {
    padding: 0px 0px 50px;
  }
  .certifications-about__row {
    margin: 0px -10px;
  }
  .certification-about__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .cartifications-about__title {
    margin: 0px 0px 10px;
  }
  .certifications-about__row {
    margin: 0px -5px;
  }
  .certification-about__column {
    padding: 0px 5px;
  }
}
.content-price__body {
  padding: 50px 0px 90px;
}

.content-price__title {
  margin: 0px 0px 40px;
}

.content-price__row {
  overflow: hidden;
  background: #F3F3F3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-price__content {
  flex: 0 0 45%;
  padding: 0px 30px 0px 50px;
}

.content-price__contnet-title {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #292929;
}

.content-price__content-link {
  padding: 22px 50px;
  background: #FF7F06;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.content-price__content-link:hover {
  box-shadow: 0px 0px 20px 0px #FF7F06;
}

.content-price__image {
  flex: 0 0 55%;
  width: 100%;
  position: relative;
}

.content-price__img {
  height: 100%;
}
.content-price__img img {
  height: 100%;
}

.content-price__image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 126px;
  height: 128px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-price__image-title,
.content-price__image-date {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  color: #292929;
}

@media (max-width: 770px) {
  .content-price__body {
    padding: 50px 0px;
  }
  .content-price__title {
    margin: 0px 0px 20px;
  }
  .content-price__row {
    padding: 40px 0px;
    flex-direction: column;
  }
  .content-price__content {
    margin: 0px 0px 30px;
    padding: 0px 20px;
  }
  .content-price__contnet-title {
    margin: 0px 0px 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-price__content-link {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.content-suppliers__body {
  padding: 50px 0px 90px;
}

.content-suppliers__title {
  margin: 0px 0px 40px;
}

.content-suppliers__row {
  margin: 0px -17px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(100px, 1fr);
  gap: 10px;
}

.contnet-suppliers__column {
  padding: 0px 17px 34px;
  width: 100%;
}

.content-suppliers__column-body {
  padding: 30px;
  width: 100%;
  height: 100%;
  background: #dfdfdf;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-suppliers__column-img {
  max-width: 50%;
}
.content-suppliers__column-img img {
  width: 100%;
}

@media (max-width: 1000px) {
  .content-suppliers__row {
    margin: 0px -10px;
  }
  .contnet-suppliers__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .content-suppliers__body {
    padding: 50px 0px;
  }
  .content-suppliers__title {
    margin: 0px 0px 20px;
  }
  .content-suppliers__row {
    margin: 0px -5px;
    grid-template-columns: 1fr 1fr;
  }
  .contnet-suppliers__column {
    padding: 0px 5px 10px;
  }
}
@media (max-width: 500px) {
  .content-suppliers__row {
    margin: 0px -5px;
    grid-template-columns: 1fr;
  }
}
.content-faq__body {
  padding: 50px 0px 90px;
}

.content-faq__title {
  margin: 0px 0px 40px;
}

.content-faq__row {
  display: flex;
  flex-direction: column;
}

.content-faq__column {
  padding: 0px 0px 5px;
}
.content-faq__column:last-child {
  padding: 0;
}

.contnet-faq__column-title {
  padding: 20px 30px;
  background: #F3F3F3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.contnet-faq__column-title.active .contnet-faq__column-icon span {
  transform: rotate(360deg);
}
.contnet-faq__column-title.active .contnet-faq__column-icon span::before {
  transform: rotate(180deg);
}

.content-faq__column-title-text {
  padding: 0px 20px 0px 0px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 32px;
  font-weight: 600;
  color: #292929;
}

.contnet-faq__column-icon {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF7F06;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contnet-faq__column-icon span {
  width: 15px;
  height: 3px;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: 0.5s all;
}
.contnet-faq__column-icon span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: rotate(90deg);
  transition: 0.5s all;
}

.contnet-faq__column-text {
  display: none;
  padding: 25px 30px 45px;
  font-family: Gilroy, sans-serif;
  font-size: 17px;
  line-height: 25px;
  color: #535353;
}

@media (max-width: 770px) {
  .content-faq__body {
    padding: 50px 0px;
  }
  .content-faq__title {
    margin: 0px 0px 10px;
  }
  .contnet-faq__column-title {
    padding: 15px;
  }
  .content-faq__column-title-text {
    font-size: 16px;
    line-height: 22px;
  }
  .contnet-faq__column-icon {
    min-width: 30px;
    height: 30px;
  }
  .contnet-faq__column-icon span {
    width: 10px;
    height: 2px;
  }
  .contnet-faq__column-text {
    padding: 25px 15px;
    font-size: 14px;
    line-height: 20px;
  }
}
.content-contact__body {
  padding: 50px 0px 90px;
}

.content-contact__title {
  margin: 0px 0px 30px;
}

.content-contact__contact {
  margin: 0px -16px 30px;
  display: flex;
  justify-content: space-between;
}

.content-contact__column {
  padding: 0px 16px;
  width: 100%;
}

.content-contact__column-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-contact__column-title {
  margin: 0px 0px 30px;
  font-family: Gilroy, sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #292929;
}

.content-contact__content {
  width: 100%;
  height: 100%;
}

.content-contact__content-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-contact__content-item {
  margin: 0px 0px 15px;
  padding: 25px 15px;
  border: 1px solid #E3E3E3;
  display: flex;
}
.content-contact__content-item:nth-child(1) {
  flex: auto;
}
.content-contact__content-item:last-child {
  margin: 0;
}

.content-contact__content-icon {
  margin: 0px 11px 0px 0px;
  width: 15px;
}
.content-contact__content-icon img {
  width: 100%;
}

.content-contact__content-title {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  color: #868686;
}

.content-contact__content-subtitle {
  margin: 0px 0px 10px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  color: #292929;
}
.content-contact__content-subtitle:last-child {
  margin: 0;
}

.content-contact__map {
  width: 100%;
  height: 500px;
}
.content-contact__map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .content-contact__contact {
    margin: 0px -10px 30px;
  }
  .content-contact__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .content-contact__body {
    padding: 50px 0px;
  }
  .content-contact__contact {
    margin: 0;
    flex-direction: column;
  }
  .content-contact__column {
    padding: 0px 0px 30px;
  }
  .content-contact__column-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-contact__content-subtitle {
    font-size: 16px;
    line-height: 22px;
  }
}
.footer {
  background: #2D2D2D;
}

.submit-footer {
  background: #454545;
}

.submit-footer__body {
  padding: 14px 0px 12px;
  display: flex;
  justify-content: end;
}

.submit-footer__link {
  display: flex;
  align-items: center;
}
.submit-footer__link:hover .submit-footer__link-text::before {
  width: 100%;
}

.submit-footer__link-text {
  margin: 0px 10px 0px 0px;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
}

.submit-footer__link-icon {
  min-width: 15px;
  height: 7.5px;
  position: relative;
}
.submit-footer__link-icon::before, .submit-footer__link-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 7.5px;
  background: url("../img/icon/arrow-footer.svg") 0 0/100% 100% no-repeat;
}
.submit-footer__link-icon:before {
  top: auto;
  bottom: 50%;
  transform: translateY();
}
.submit-footer__link-icon:after {
  top: 50%;
  transform: translateY(0%);
}

.main-footer__body {
  padding: 35px 0px;
  display: flex;
  justify-content: space-between;
}

.main-footer__content-title {
  margin: 0px 0px 20px;
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
}

.main-footer__content-item {
  margin: 0px 0px 10px;
}
.main-footer__content-item:last-child {
  margin: 0;
}

.main-footer__content-link {
  font-family: Gilroy, sans-serif;
  line-height: 18px;
  font-weight: 300;
  color: #fff;
}

.main-footer__content.contact .main-footer__content-item {
  margin: 0px 0px 20px;
}
.main-footer__content.contact .main-footer__content-item:last-child {
  margin: 0;
}
.main-footer__content.contact .main-footer__content-link {
  display: flex;
  align-items: center;
}
.main-footer__content.contact .main-footer__content-link:hover .main-footer__content-link-text::before {
  width: 100%;
}
.main-footer__content.contact .main-footer__content-link-img {
  margin: 0px 15px 0px 0px;
  width: 18px;
  display: flex;
  justify-content: center;
}
.main-footer__content.contact .main-footer__content-link-text {
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}

.main-footer__social {
  display: flex;
}

.main-footer__solical-img {
  margin: 0px 12px 0px 0px;
  width: 27px;
  height: 27px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-footer__solical-img:last-child {
  margin: 0;
}
.main-footer__solical-img span {
  transition: 0.5s all;
}
.main-footer__solical-img:hover span {
  box-shadow: 0 0 20px 2.5px #FF7F06;
}
.main-footer__solical-img:nth-child(1) span {
  width: 12px;
  height: 12px;
  background: url("../img/icon/instagram-footer.svg") 0 0/100% 100% no-repeat;
  display: inline-block;
}
.main-footer__solical-img:nth-child(2) span {
  width: 12px;
  height: 12px;
  background: url("../img/icon/in-footer.svg") 0 0/100% 100% no-repeat;
  display: inline-block;
}
.main-footer__solical-img:nth-child(3) span {
  width: 12px;
  height: 12px;
  background: url("../img/icon/instagram-footer.svg") 0 0/100% 100% no-repeat;
  display: inline-block;
}

@media (max-width: 1000px) {
  .main-footer__body {
    flex-direction: column;
  }
  .main-footer__content {
    margin: 0px 0px 30px;
  }
  .main-footer__content:last-child {
    margin: 0;
  }
  .main-footer__content-title {
    margin: 0px 0px 10px;
  }
  .main-footer__content-item {
    margin: 0px 0px 5px;
  }
  .main-footer__content.contact .main-footer__content-item {
    margin: 0px 0px 10px;
  }
}
.politics-footer__body {
  padding: 15px 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: 1px;
  background: #636363;
  opacity: 0.5;
}

.politics-footer__logo {
  font-family: Gilroy, sans-serif;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
.politics-footer__logo span {
  display: block;
}
.politics-footer__logo a {
  padding: 0px 5px 0px;
  display: block;
}
.politics-footer__logo img {
  padding: 2px 3px 0px 0px;
}

@media (max-width: 800px) {
  .politics-footer__body {
    padding: 10px 0px;
  }
}



.sh-dropdown { position: relative; }

.sh-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 200px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.sh-dropdown:hover > .sh-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sh-dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
}

.sh-dropdown-menu li a:hover { background: #f0f0f0; }

@media (max-width: 768px) {
  .sh-dropdown { position: static; }

  .sh-dropdown > .sh-dropdown-menu {
    display: none;
    position: static;
    border: 0;
    box-shadow: none;
    min-width: 0;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none;
  }

  .sh-dropdown.open > .sh-dropdown-menu { display: block; }

  .sh-dropdown-toggle { cursor: pointer; user-select: none; }

  .sh-dropdown:hover > .sh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}