@font-face {
  font-family: "Inter";
  font-style: bold;
  font-weight: 600;
  font-display: swap;
  src: local("Inter"), url("../themes/sket/assets/fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), url("../themes/sket/assets/fonts/Inter-Regular.woff2") format("woff2");
}
input, textarea {
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  font-weight: normal;
  color: #141313;
  margin: 0;
  padding: 0;
  width: 100%;
}
button {
  font-size: 16px;
  line-height: 24px;
}
a {
  text-decoration: none;
  color: currentColor;
}
a:active {
  outline: none;
}
p {
  margin: 0;
}
h1, h2, h3, h4, h5 {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  width: 100%;
  height: 100%;
}
* {
  box-sizing: border-box;
}
.h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 70px;
}
@media screen and (max-width: 1400px) {
  .h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 992px) {
  .h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 576px) {
  .h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
}
@media screen and (max-width: 1400px) {
  .h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 992px) {
  .h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.h3.light {
  font-weight: 400;
}
.h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.h5, p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.h5.bold, p.bold {
  font-weight: 600;
}
.h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  background-color: #141313;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555555 0%, #939393 47.23%, #555555 100%);
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.no-scroll {
  overflow-y: hidden;
}
.container {
  max-width: calc(1300px + (80px * 2));
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: calc(1020px + (80px * 2));
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: calc(992px + (80px * 2));
  }
}
@media screen and (max-width: 992px) {
  .container {
    max-width: calc(687px + (20px * 2));
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}
.dark-bg {
  color: white;
  background-color: #222222;
}
.button {
  padding: 12px 30px;
  background: transparent;
  color: white;
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.button--icon {
  padding: 12px;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  padding: 4px;
  /* control the border thickness */
  background: linear-gradient(#e6e6e6, rgba(230, 230, 230, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.button:hover {
  color: #ED6F28;
}
.button:hover svg path {
  fill: currentColor;
}
.button:hover::before {
  background: linear-gradient(#ED6F28, #ED6F28);
}
.button:disabled {
  background: #555555;
  border-radius: 6px;
  color: #939393;
  cursor: not-allowed;
}
.button:disabled::before {
  background: linear-gradient(#555555, #555555);
}
.button--dark {
  color: #555555;
}
.button--dark::before {
  background: linear-gradient(#B6B6B6, #7C7C7C);
}
.button--dark:disabled {
  background: #939393;
  color: #555555;
}
.button--dark:disabled svg path {
  fill: #555555;
}
.button--dark:disabled::before {
  background: linear-gradient(#939393, #939393);
}
.link {
  color: #ED6F28;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.2s;
}
.link:hover {
  color: #E9511D;
  text-decoration: none;
}
.link.disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #939393;
}
.input {
  padding: 12px;
  background: #393939;
  border: 1px solid #939393;
  border-radius: 3px;
  color: white;
  margin-top: 8px;
}
.input:active, .input:focus {
  color: #222222;
  background: white;
}
.input:disabled {
  border: 1px solid #939393;
  cursor: not-allowed;
  background: #222222;
}
.input.error {
  background: #393939;
  border: 1px solid #FF1313;
  position: relative;
}
.valid-error {
  position: absolute;
  bottom: -20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FF1313;
}
.label {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.label.disabled {
  color: #939393;
}
.label--textarea {
  width: 100%;
}
.label--textarea textarea {
  width: 100% !important;
  min-height: 100px;
}
.burger {
  width: 38px;
  height: 28px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1180px) {
  .burger {
    display: block;
  }
}
.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #A8A8A8;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger span:nth-child(1) {
  top: 0;
}
.burger span:nth-child(2) {
  top: calc(50% - 2px);
  background: #8B8B8B;
}
.burger span:nth-child(3) {
  top: calc(100% - 4px);
  background: #747474;
}
.burger.open span:nth-child(1) {
  top: calc(50% - 2px);
  transform: rotate(45deg);
  background: linear-gradient(187.22deg, #AEAEAE 5.62%, #565656 837.87%);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  left: -24px;
}
.burger.open span:nth-child(3) {
  top: calc(50% - 2px);
  transform: rotate(-45deg);
  background: linear-gradient(187.22deg, #AEAEAE 5.62%, #565656 837.87%);
}
.header {
  color: white;
  background-color: #222222;
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 1400px) {
  .header {
    padding: 12px 0;
  }
}
@media screen and (max-width: 1180px) {
  .header {
    padding: 11px 0;
  }
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  margin-left: 20px;
}
.header__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .header__contacts {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header__button {
  display: flex;
  align-items: center;
}
.header__button .button--icon {
  padding: 8px;
}
.header__button svg {
  width: 14px;
  height: 14px;
}
.header__button-text {
  color: #ED6F28;
  margin-left: 10px;
}
@media screen and (max-width: 1180px) {
  .header__button-text {
    display: none;
  }
}
.header .logo {
  display: flex;
  max-width: 225px;
}
@media screen and (max-width: 1400px) {
  .header .logo {
    max-width: 135px;
  }
}
@media screen and (max-width: 1180px) {
  .header .logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .header .logo {
    max-width: 105px;
  }
}
.header__lang:hover {
  color: #ED6F28;
}
.header__lang-wrap {
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding-right: 20px;
  font-weight: 700;
  color: #9D9D9D;
}
.header__lang.active {
  border-bottom: solid 2px #ED6F28;
  color: #ED6F28;
}
.header__lang.disabled {
  cursor: default;
  pointer-events: none;
}
.nav-bar__list {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  .nav-bar__list {
    display: none;
  }
}
.nav-bar__item {
  width: auto;
  position: relative;
}
.nav-bar__item.active::after {
  content: "";
  position: absolute;
  background: #ED6F28;
  height: 5px;
  width: 100%;
  bottom: -20px;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .nav-bar__item.active::after {
    bottom: -12px;
  }
}
.nav-bar__item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 1500px) {
  .nav-bar__item:not(:last-child) {
    margin-right: 20px;
  }
}
.nav-bar__link {
  width: 100%;
  display: block;
  height: 100%;
  cursor: pointer;
  transition: 0.2s;
}
.nav-bar__link:hover {
  color: #ED6F28;
}
.link__contact {
  display: flex;
  align-items: center;
}
.link__contact.adress {
  max-width: 390px;
  margin-left: 40px;
}
.link__contact.phone:hover {
  color: #ED6F28;
}
.link__contact.phone:hover svg path {
  fill: #E9511D;
}
.link__contact svg {
  margin-right: 8px;
}
@media screen and (max-width: 1180px) {
  .link__contact {
    display: none;
  }
}
.soclink__item {
  cursor: pointer;
  border: 1px solid #ED6F28;
  padding: 8px;
  border-radius: 3px;
  display: flex;
  width: 35px;
  height: 35px;
  transition: 0.2s;
}
.soclink__item:hover {
  background: #ED6F28;
}
.nav-mobile {
  position: fixed;
  top: 52px;
  padding: 40px 0 80px 12px;
  background: #121111;
  transform: translateX(-110%);
  z-index: 90;
  width: 300px;
  height: calc(100vh - 52px);
  transition: 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .nav-mobile {
    width: 100%;
  }
}
.nav-mobile .nav-link {
  transition: 0.2s;
}
.nav-mobile .nav-link:hover {
  color: #ED6F28;
}
.nav-mobile .nav-item {
  margin-bottom: 30px;
}
.nav-mobile__content {
  overflow-y: auto;
}
@media screen and (max-width: 1180px) {
  .nav-mobile.active {
    transform: translateX(0);
  }
}
.nav-mobile .soclink {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.nav-mobile .soclink__item {
  margin-right: 12px;
}
.nav-mobile .soclink__line {
  width: calc(100% - 94px);
  height: 5px;
  background: linear-gradient(90deg, #535353 0%, #959595 100%);
}
.nav-mobile .link__contact {
  display: flex;
}
.nav-mobile .nav-bar__link.phone {
  margin-bottom: 20px;
}
.work {
  margin-top: 30px;
}
.work__title {
  color: #ED6F28;
  margin-bottom: 20px;
}
.work__text {
  max-width: 200px;
}
.page {
  padding-top: 95px;
}
@media screen and (max-width: 992px) {
  .page {
    padding-top: 70px;
  }
}
main {
  padding-top: 100px;
}
@media screen and (max-width: 1400px) {
  main {
    padding-top: 84px;
  }
}
@media screen and (max-width: 1180px) {
  main {
    padding-top: 52px;
  }
}
.footer {
  color: white;
  background-color: #141313;
  padding: 40px 0;
  overflow: hidden;
}
.footer__logo {
  display: block;
  max-width: 240px;
  margin-bottom: 40px;
}
.footer__nav {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 17px;
  position: relative;
  margin-bottom: 40px;
}
.footer__nav::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 3px;
  background: #787878;
}
@media screen and (max-width: 1180px) {
  .footer__nav::after {
    height: 0;
  }
}
@media screen and (max-width: 1180px) {
  .footer__nav {
    margin-top: 30px;
    justify-content: flex-start;
    margin-left: 0;
    padding-bottom: 0;
  }
  .footer__nav .nav-bar__list {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__nav .nav-bar__item {
    padding-bottom: 6px;
    margin-bottom: 20px;
  }
  .footer__nav .nav-bar__item:last-child {
    margin-bottom: 0;
  }
}
.footer__contacts .phone {
  margin-bottom: 20px;
}
.footer__bottom {
  display: flex;
}
@media screen and (max-width: 1180px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__col {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .footer__col {
    width: 35%;
  }
}
.footer__col--wrap {
  display: flex;
  justify-content: flex-end;
  margin-left: 16px;
}
@media screen and (max-width: 992px) {
  .footer__col--wrap {
    width: 65%;
  }
}
@media screen and (max-width: 1180px) {
  .footer__col--wrap {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 1180px) {
  .footer__col {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer .logo {
  max-width: 245px;
}
@media screen and (max-width: 1400px) {
  .footer .logo {
    max-width: 135px;
  }
}
@media screen and (max-width: 1180px) {
  .footer .logo {
    position: relative;
  }
  .footer .logo::after {
    content: "";
    position: absolute;
    width: calc(100vw - 140px);
    bottom: 0;
    height: 3px;
    background: #787878;
  }
}
.footer .nav-bar__list {
  display: flex;
}
.footer .work {
  margin-top: 40px;
}
@media screen and (max-width: 1180px) {
  .footer .work {
    margin-top: 30px;
  }
}
.footer .soclink {
  display: flex;
}
.footer .soclink__item {
  margin-right: 8px;
}
@media screen and (max-width: 1180px) {
  .footer .soclink {
    margin-bottom: 30px;
  }
}
.footer .conf {
  display: block;
  color: #BABABA;
  margin-bottom: 20px;
}
.footer .link__contact {
  display: flex;
}
.footer .nav-bar__item.active::after {
  bottom: -17px;
}
@media screen and (max-width: 1180px) {
  .footer .nav-bar__item.active::after {
    bottom: 0;
  }
}
.footer .catalog-menu {
  height: auto;
}
.footer__link {
  display: flex;
  text-align: right;
  margin-top: 20px;
}
.title-orange {
  color: #ED6F28;
}
.title-up {
  text-transform: uppercase;
}
.swiper-pagination {
  height: 32px;
}
@media screen and (max-width: 992px) {
  .swiper-pagination {
    height: 20px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 14px;
  background: #E6E6E6;
  border-radius: 1px;
  margin: 0 10px;
  opacity: 1;
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 10px;
  }
}
.swiper-pagination .swiper-pagination-bullet-active {
  height: 32px;
  background: #ED6F28;
}
@media screen and (max-width: 992px) {
  .swiper-pagination .swiper-pagination-bullet-active {
    height: 20px;
  }
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 15px;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  opacity: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: none;
  opacity: 1;
}
.pt-section {
  padding-top: 100px;
}
@media screen and (max-width: 1400px) {
  .pt-section {
    padding-top: 60px;
  }
}
.pb-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .pb-section {
    padding-bottom: 60px;
  }
}
.list__item {
  position: relative;
  padding-left: 25px;
}
.list__item:not(:last-child) {
  margin-bottom: 20px;
}
.list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #ED6F28;
  border-radius: 3px;
}
.list .list .list__item::before {
  top: 7px;
  width: 8px;
  height: 8px;
  background: #b9b9b9;
}
.modal {
  display: none;
  background: #222222;
  padding: 70px;
  color: white;
}
@media screen and (max-width: 992px) {
  .modal {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 576px) {
  .modal {
    padding: 40px 15px;
  }
}
.form-call {
  max-width: 818px;
  width: 100%;
}
.form-call__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 455px;
  margin: auto;
}
.form-call__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 56px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .form-call__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.form-call__text {
  margin-bottom: 40px;
  text-align: center;
}
.form-call .label {
  width: 100%;
  margin-bottom: 30px;
}
.form-call__info {
  max-width: 382px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .form-call .button {
    width: 100%;
  }
}
.form-done {
  max-width: 818px;
  width: 100%;
}
.form-done__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 613px;
  margin: auto;
}
.form-done__logo {
  position: relative;
  width: 100%;
  height: 90px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .form-done__logo {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.form-done__logo::before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #1E2226 2.23%, #939393 53.25%, #1C2125 102.83%);
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
}
.form-done__thanks {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .form-done__thanks {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.form-done__text {
  max-width: 433px;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .form-done__text {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.breadcrumbs {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin-top: 30px;
  color: #555555;
}
.breadcrumbs a {
  transition: 0.2s;
}
.breadcrumbs a:hover {
  color: #ED6F28;
}
@media screen and (max-width: 1400px) {
  .breadcrumbs {
    margin-top: 20px;
  }
}
.btn-top {
  position: fixed;
  bottom: 10vh;
  left: calc(100vw - 40px - 50px);
  display: none;
}
@media screen and (max-width: 1400px) {
  .btn-top {
    left: calc(100vw - 40px - 10px);
  }
}
@media screen and (max-width: 992px) {
  .btn-top {
    left: calc(100vw - 40px - 20px);
  }
}
@media screen and (max-width: 768px) {
  .btn-top {
    display: none !important;
  }
}
.btn-top .button {
  align-items: center;
  width: 40px;
  height: 40px;
}
.btn-top .button::before {
  background: linear-gradient(168.91deg, #E6E6E6 -50.89%, #555555 147.89%);
}
.btn-top .button:hover svg path {
  fill: none;
}
.home {
  background: linear-gradient(180deg, #121111 28.48%, #141414 60.32%, #222222 98.32%);
  color: white;
  padding-top: 100px;
}
@media screen and (max-width: 1400px) {
  .home {
    padding-top: 84px;
  }
}
@media screen and (max-width: 1180px) {
  .home {
    padding-top: 52px;
  }
}
.left-soclinks {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: calc(100vh - 100px);
  bottom: 0;
  left: 45px;
  z-index: 10;
}
@media screen and (max-width: 1600px) {
  .left-soclinks {
    left: 26px;
  }
}
@media screen and (max-width: 1400px) {
  .left-soclinks {
    height: calc(100vh - 84px);
  }
}
@media screen and (max-width: 1180px) {
  .left-soclinks {
    height: calc(100vh - 52px);
  }
}
@media screen and (max-width: 880px) {
  .left-soclinks {
    display: none;
  }
}
.left-soclinks::after, .left-soclinks::before {
  content: "";
  height: calc(50% - 84px);
  width: 5px;
  background: linear-gradient(0deg, #535353 0%, #959595 100%);
}
.left-soclinks::after {
  content: "";
  height: calc(50% - 84px);
  width: 5px;
  background: linear-gradient(180deg, #535353 0%, #959595 100%);
}
.left-soclinks .soclink__item:not(:last-child) {
  margin-bottom: 17px;
}
.home-slider {
  position: relative;
  width: 100%;
  height: 898px;
}
@media screen and (max-width: 1400px) {
  .home-slider {
    height: 600px;
  }
}
@media screen and (max-width: 576px) {
  .home-slider {
    height: 500px;
  }
}
.home-slider .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-slider__swiper {
  height: 100%;
}
.home-slider__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.home-slider__img img {
  object-fit: cover;
}
.home-slider__title {
  max-width: 710px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-slider__title {
    margin-bottom: 30px;
  }
}
.home-slider__text {
  max-width: 600px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-slider__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .home-slider .button {
    width: 100%;
    justify-content: center;
  }
}
.home-slider .swiper-pagination {
  bottom: 65px;
}
@media screen and (max-width: 1400px) {
  .home-slider .swiper-pagination {
    bottom: 40px;
  }
}
.home-benefits__wrap {
  display: flex;
  justify-content: space-between;
  margin-left: -20px;
  margin-top: -30px;
}
@media screen and (max-width: 576px) {
  .home-benefits__wrap {
    flex-direction: column;
    margin-left: 0;
  }
}
.home-benefits__item {
  width: calc(100% / 3 - 20px);
  max-width: 300px;
  margin-left: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 576px) {
  .home-benefits__item {
    width: 100%;
    margin-left: 0;
  }
}
.home-benefits__img {
  width: 106px;
  height: 106px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1400px) {
  .home-benefits__img {
    width: 94px;
    height: 94px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 992px) {
  .home-benefits__img {
    width: 71px;
    height: 71px;
  }
}
.home-benefits__img img {
  object-fit: cover;
}
.home-benefits__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  max-width: 237px;
}
@media screen and (max-width: 992px) {
  .home-benefits__text {
    max-width: 142px;
  }
}
@media screen and (max-width: 576px) {
  .home-benefits__text {
    max-width: none;
  }
}
.home-bg {
  background: radial-gradient(116.25% 116.25% at 26.72% 0%, #2C3237 0%, #181818 100%);
}
.home-about .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .home-about .container {
    flex-direction: column;
  }
}
.home-about__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 642px - 115px);
}
@media screen and (max-width: 1400px) {
  .home-about__left {
    width: calc(100% - 429px - 98px);
  }
}
@media screen and (max-width: 992px) {
  .home-about__left {
    width: auto;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .home-about__left {
    margin-bottom: 30px;
  }
}
.home-about__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-about__title {
    margin-bottom: 30px;
  }
}
.home-about__text {
  max-width: 525px;
}
@media screen and (max-width: 992px) {
  .home-about__text {
    max-width: none;
  }
}
.home-about__text p:not(:last-child) {
  margin-bottom: 24px;
}
.home-about__img {
  position: relative;
  width: 642px;
  height: 630px;
  padding: 0 31px 31px 0;
}
@media screen and (max-width: 1400px) {
  .home-about__img {
    width: 429px;
    height: 421px;
    padding: 0 20px 20px 0;
  }
}
@media screen and (max-width: 992px) {
  .home-about__img {
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .home-about__img {
    height: 269px;
    padding: 0 13px 13px 0;
  }
}
.home-about__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 504px;
  height: 536px;
  background-image: url("data:image/svg+xml,%3Csvg width='505' height='538' viewBox='0 0 505 538' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 536.5H504V0' stroke='url(%23paint0_linear_97_109)' stroke-width='1.5'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_97_109' x1='287.5' y1='256.5' x2='532.5' y2='546.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23181D20'/%3E%3Cstop offset='1' stop-color='%23939393'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media screen and (max-width: 1400px) {
  .home-about__img::before {
    width: 337px;
    height: 358px;
  }
}
@media screen and (max-width: 576px) {
  .home-about__img::before {
    width: 215px;
    height: 229px;
  }
}
.home-about__img img {
  object-fit: cover;
}
.home-group .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .home-group .container {
    flex-direction: column;
  }
}
.home-group__left {
  position: relative;
  padding-right: 60px;
  width: 427px;
}
@media screen and (max-width: 1400px) {
  .home-group__left {
    padding-right: 24px;
    width: 267px;
  }
}
@media screen and (max-width: 992px) {
  .home-group__left {
    padding-right: 0;
    width: auto;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.home-group__left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(0deg, #1E2226 2.23%, #939393 53.25%, #1C2125 102.83%);
}
@media screen and (max-width: 992px) {
  .home-group__left::before {
    top: auto;
    right: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1E2226 2.23%, #939393 53.25%, #1C2125 102.83%);
  }
}
.home-group__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-group__title {
    margin-bottom: 30px;
  }
}
.home-group__text {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
@media screen and (max-width: 1400px) {
  .home-group__text {
    font-size: 20px;
    line-height: 24px;
  }
}
.home-group__list {
  width: calc(100% - 427px - 25px);
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 60px;
  -moz-column-gap: 60px;
  column-gap: 60px;
}
@media screen and (max-width: 1400px) {
  .home-group__list {
    width: calc(100% - 291px - 25px);
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
}
@media screen and (max-width: 992px) {
  .home-group__list {
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .home-group__list {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
.home-group__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-group__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.home-portfolio__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .home-portfolio__title {
    margin-bottom: 30px;
  }
}
.home-portfolio__swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .home-portfolio__swiper {
    padding-bottom: 50px;
  }
}
.home-portfolio__slide iframe {
  width: 100%;
  height: 379px;
}
@media screen and (max-width: 1400px) {
  .home-portfolio__slide iframe {
    height: 266px;
  }
}
@media screen and (max-width: 992px) {
  .home-portfolio__slide iframe {
    height: 200px;
  }
}
@media screen and (max-width: 576px) {
  .home-portfolio__slide iframe {
    height: 170px;
  }
}
.catalog {
  display: flex;
}
@media screen and (max-width: 992px) {
  .catalog {
    flex-direction: column;
  }
}
.catalog-menu {
  position: sticky;
  width: 266px;
  height: calc(100vh - 100px);
  top: 100px;
  background: #141313;
  color: white;
}
@media screen and (max-width: 1400px) {
  .catalog-menu {
    width: 246px;
    height: calc(100vh - 84px);
    top: 84px;
  }
}
@media screen and (max-width: 1180px) {
  .catalog-menu {
    height: calc(100vh - 52px);
    top: 52px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-menu {
    position: static;
    width: 100%;
    height: auto;
    background: #292E32;
  }
}
.catalog-menu__top {
  display: flex;
  align-items: center;
  padding: 32px 42px 21px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ED6F28;
}
@media screen and (max-width: 1400px) {
  .catalog-menu__top {
    padding: 20px 23px 22px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-menu__top {
    width: 100%;
    max-width: calc(687px + (20px * 2));
    padding: 20px 20px;
    margin: auto;
    cursor: pointer;
  }
}
@media screen and (max-width: 576px) {
  .catalog-menu__top {
    max-width: 100%;
    padding: 20px 15px;
  }
}
.catalog-menu__top span {
  margin: 0 7px 0 13px;
}
.catalog-menu__clouse {
  display: none;
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .catalog-menu__clouse {
    display: block;
  }
}
.catalog-menu__clouse.clouse {
  transform: rotateX(180deg);
}
.catalog-menu__list {
  display: flex;
  flex-direction: column;
  height: calc(100% - 90px);
  overflow: auto;
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .catalog-menu__list {
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    max-width: calc(687px + (20px * 2));
    height: auto;
    padding: 20px 20px 10px;
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  .catalog-menu__list {
    max-width: none;
    padding: 20px 15px 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    max-height: 300px;
  }
}
.catalog-menu__list.clouse {
  transition: 0.2s;
}
@media screen and (max-width: 992px) {
  .catalog-menu__list.clouse {
    padding-top: 0;
    padding-bottom: 0;
    height: 1px;
    opacity: 0;
  }
}
.catalog-menu__item {
  padding: 12px 36px;
  border-left: 6px solid transparent;
  transition: 0.2s;
}
@media screen and (max-width: 1400px) {
  .catalog-menu__item {
    padding: 11px 15px;
    border-left: 6px solid transparent;
  }
}
@media screen and (max-width: 992px) {
  .catalog-menu__item {
    width: calc(50% - 20px);
    padding: 0;
    margin-bottom: 20px;
    margin-right: 20px;
    border: none;
  }
}
@media screen and (max-width: 576px) {
  .catalog-menu__item {
    width: 100%;
    margin-right: 0;
  }
}
.catalog-menu__item:hover {
  background: #393939;
  border-left: 6px solid #ED6F28;
}
@media screen and (max-width: 992px) {
  .catalog-menu__item:hover {
    background: none;
    border: none;
  }
}
.catalog-main {
  width: calc(100% - 266px);
}
@media screen and (max-width: 1400px) {
  .catalog-main {
    width: calc(100% - 246px);
  }
}
@media screen and (max-width: 992px) {
  .catalog-main {
    width: 100%;
  }
}
.catalog-main .container {
  max-width: calc(1200px + (80px * 2));
}
@media screen and (max-width: 1400px) {
  .catalog-main .container {
    padding: 0 40px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-main .container {
    width: 100%;
    max-width: calc(687px + (20px * 2));
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .catalog-main .container {
    max-width: none;
    padding: 0 15px;
  }
}
.catalog-main__title {
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .catalog-main__title {
    margin-top: 30px;
  }
}
.catalog-main__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1C1C1C;
  margin-bottom: 80px;
}
@media screen and (max-width: 1400px) {
  .catalog-main__text {
    margin-bottom: 60px;
  }
}
.catalog-card {
  display: flex;
  justify-content: space-between;
  padding-top: 110px;
  margin-top: -110px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DCDCDC;
}
@media screen and (max-width: 1400px) {
  .catalog-card {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .catalog-card {
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.catalog-card__img {
  width: 422px;
  height: 315px;
}
@media screen and (max-width: 1400px) {
  .catalog-card__img {
    width: 292px;
    height: 223px;
  }
}
@media screen and (max-width: 576px) {
  .catalog-card__img {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
  }
}
.catalog-card__img img {
  object-fit: cover;
}
.catalog-card__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 422px - 40px);
}
@media screen and (max-width: 1400px) {
  .catalog-card__wrap {
    width: calc(100% - 292px - 20px);
  }
}
@media screen and (max-width: 576px) {
  .catalog-card__wrap {
    width: 100%;
    align-items: stretch;
  }
}
.catalog-card__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .catalog-card__title {
    margin-bottom: 20px;
  }
}
.catalog-card__text {
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .catalog-card__text {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
  }
}
.contacts {
  background: linear-gradient(180deg, #121111 0%, #202020 100%);
  color: white;
}
.contacts .breadcrumbs {
  color: white;
}
.contacts__title {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1400px) {
  .contacts__title {
    margin-bottom: 30px;
  }
}
.contacts__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .contacts__wrap {
    flex-direction: column;
  }
}
.contacts-info {
  width: calc(100% - 600px - 50px);
}
@media screen and (max-width: 1400px) {
  .contacts-info {
    width: calc(100% - 500px - 50px);
  }
}
@media screen and (max-width: 992px) {
  .contacts-info {
    width: 100%;
    margin-bottom: 60px;
  }
}
.contacts-info__item {
  display: flex;
}
.contacts-info__item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .contacts-info__item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .contacts-info__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contacts-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ED6F28;
  border-radius: 3px;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-right: 25px;
}
.contacts-info__title {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 4px;
}
.contacts-info__text--tel {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
}
.contacts-info__text--mail {
  font-weight: 400;
  text-decoration-line: underline;
}
.contacts-form {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .contacts-form {
    width: 500px;
  }
}
@media screen and (max-width: 992px) {
  .contacts-form {
    width: 100%;
  }
}
.contacts-form__text {
  text-align: center;
  padding: 0 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .contacts-form__text {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
  }
}
.contacts-form__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts-form__inputs {
  display: flex;
  flex-wrap: wrap;
  margin-top: -30px;
  margin-left: -20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .contacts-form__inputs {
    margin-left: 0;
  }
}
.contacts-form__inputs label {
  width: calc(50% - 20px);
  margin-top: 30px;
  margin-left: 20px;
}
@media screen and (max-width: 576px) {
  .contacts-form__inputs label {
    width: 100%;
    margin-left: 0;
  }
}
.contacts-form__privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 20px 0;
  padding: 0 40px;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .contacts-form .button {
    width: 100%;
  }
}
.detailed .mb-100 {
  margin-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .detailed .mb-100 {
    margin-bottom: 60px;
  }
}
.detailed .mb-30 {
  margin-bottom: 30px;
}
.detailed__back {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #ED6F28;
  transition: 0.2s;
}
.detailed__back path {
  transition: 0.2s;
}
.detailed__back:hover {
  color: #ad3911;
}
.detailed__back:hover path {
  stroke: #ad3911;
}
.detailed__title {
  margin-bottom: 40px;
}
.detailed__top-img {
  width: 100%;
  height: 365px;
}
@media screen and (max-width: 1400px) {
  .detailed__top-img {
    height: 291px;
  }
}
@media screen and (max-width: 992px) {
  .detailed__top-img {
    height: 221px;
  }
}
@media screen and (max-width: 576px) {
  .detailed__top-img {
    height: 153px;
  }
}
.detailed__top-img img {
  object-fit: cover;
}
.detailed-content__text {
  clear: both;
}
.detailed-content__text *:not(:last-child) {
  margin-bottom: 20px;
}
.detailed-content__text-wrap {
  clear: both;
  min-height: 365px;
}
@media screen and (max-width: 1400px) {
  .detailed-content__text-wrap {
    min-height: 257px;
  }
}
@media screen and (max-width: 992px) {
  .detailed-content__text-wrap {
    min-height: 211px;
  }
}
.detailed-content__text-wrap h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .detailed-content__text-wrap h3 {
    margin-bottom: 20px;
  }
}
.detailed-content__text-wrap *:not(:last-child) {
  margin-bottom: 20px;
}
.detailed-content__img {
  width: 50%;
  height: 365px;
  float: right;
  margin-left: 160px;
  margin-bottom: 20px;
  object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .detailed-content__img {
    margin-left: 60px;
    height: 257px;
  }
}
@media screen and (max-width: 992px) {
  .detailed-content__img {
    height: 211px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .detailed-content__img {
    float: none;
    margin-left: 0;
    width: 100%;
  }
}
.detailed-content__img--reverse {
  float: left;
  margin-left: 0 !important;
  margin-right: 160px;
}
@media screen and (max-width: 1400px) {
  .detailed-content__img--reverse {
    margin-right: 60px;
  }
}
@media screen and (max-width: 992px) {
  .detailed-content__img--reverse {
    margin-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .detailed-content__img--reverse {
    float: none;
    margin-right: 0;
  }
}
.detailed-content__img--contain {
  object-fit: contain;
}
.detailed-content__table {
  clear: both;
  overflow: auto;
  padding-bottom: 20px;
}
.detailed-content__table table {
  width: 100%;
  border-spacing: 0;
  font-weight: 400;
}
.detailed-content__table tr {
  background: rgba(64, 64, 64, 0.06);
}
.detailed-content__table tr:nth-child(2n + 2) {
  background: rgba(237, 111, 40, 0.17);
}
.detailed-content__table td {
  padding: 22px 32px;
}
.detailed-content__table td:first-child {
  min-width: 300px;
}
@media screen and (max-width: 576px) {
  .detailed-content__table td {
    padding: 22px;
  }
}
.detailed-content__table::-webkit-scrollbar-thumb {
  background: #ED6F28;
}
.detailed-content__slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}
.detailed-content__slider img {
  height: 331px;
  object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .detailed-content__slider img {
    height: 234px;
  }
}
@media screen and (max-width: 992px) {
  .detailed-content__slider img {
    height: 268px;
  }
}
@media screen and (max-width: 576px) {
  .detailed-content__slider img {
    height: 226px;
  }
}
img.img-container {
  object-fit: contain;
}
