@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-size: 16px;
}

.container {
  max-width: 1530px;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button {
  border: none;
  outline: none;
}

.owl-nav.disabled {
  display: none;
}

.owl-stage {
  display: flex;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: #0096FF;
  transition: background-color 0.2s;
  cursor: pointer;
}
.button:hover {
  background-color: #1AB0FF;
}

input, textarea {
  padding: 15px;
  border: 1px solid #D5D5D5;
  outline: none;
  border-radius: 10px;
  resize: none;
  font-size: 15px;
  color: #585858;
  font-weight: 300;
  font-family: inherit;
  line-height: 1.3;
}
input:focus, textarea:focus {
  border-color: #0096FF;
}
input:hover:not(:focus, :disabled, .invalid), textarea:hover:not(:focus, :disabled, .invalid) {
  border-color: rgba(0, 150, 255, 0.5);
}
input::placeholder, textarea::placeholder {
  font-size: 15px;
  color: #585858;
  font-weight: 300;
  font-family: inherit;
}
input.invalid, textarea.invalid {
  border-color: #ff0000;
}
input.invalid::placeholder, textarea.invalid::placeholder {
  color: #ff0000;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

.section-descr {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #D9D9D9;
  margin-bottom: 55px;
}
@media (max-width: 576px) {
  .section-descr {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.sections {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .sections {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 350px) {
  .sections {
    grid-template-columns: 1fr;
  }
}
.sections .item {
  height: 250px;
  background-color: #131618;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sections .item {
    height: 180px;
  }
}
.sections .item:hover .title {
  min-height: 100%;
}
.sections .item:hover .image {
  transform: scale(1.1);
}
.sections .item:not(.sections .item.no-overlay)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
.sections .item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 0.2s;
}
.sections .item .title {
  width: 100%;
  min-height: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 30px;
  text-align: center;
  transition: min-height 0.2s;
  z-index: 1;
}
@media (max-width: 1100px) {
  .sections .item .title {
    font-size: 16px;
    padding: 10px;
  }
}
@media (max-width: 576px) {
  .sections .item .title {
    font-size: 13px;
  }
}

.way {
  font-size: 14px;
  font-weight: 500;
  color: #D9D9D9;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}

.user-content {
  font-size: 16px !important;
  line-height: 1.3 !important;
  font-weight: 300 !important;
  overflow-y: hidden;
  overflow-x: scroll;
}
.user-content::-webkit-scrollbar {
  display: none;
}
.user-content a {
  color: #0096FF !important;
}
.user-content a:hover {
  color: #1AB0FF !important;
}
.user-content ol {
  padding-left: 25px !important;
  margin: 5px 0 !important;
}
.user-content ul {
  padding-left: 25px !important;
  list-style-type: disc !important;
  line-height: 1.5 !important;
  margin: 5px 0 !important;
}
.user-content table {
  width: 100% !important;
  font-family: inherit !important;
}
@media (max-width: 768px) {
  .user-content img {
    width: 100% !important;
  }
}

.faq-form {
  padding: 40px;
  background-color: #F1F1F1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.faq-form .block {
  width: calc(50% - 7.5px);
}
.faq-form input {
  width: 100%;
  height: 50px;
}
.faq-form input:not(:last-child) {
  margin-bottom: 15px;
}
.faq-form textarea {
  width: 100%;
  height: 115px;
}
.faq-form .button {
  width: 100%;
  height: 55px;
}

.contacts-page-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
}

.contacts-page {
  font-size: 17px !important;
  margin-bottom: 40px;
}
.contacts-page iframe {
  margin-bottom: 20px;
}
.contacts-page address {
  margin-bottom: 5px;
}
.contacts-page a {
  display: block;
  width: fit-content;
  color: #000 !important;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.contacts-page a:hover {
  color: #1AB0FF !important;
}
.contacts-page a::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contacts-page .phone {
  margin-bottom: 2px;
}
.contacts-page .phone::before {
  background: url("/usertpl/i/icons/contacts/icon-phone.svg") center/contain no-repeat;
}
.contacts-page .email::before {
  background: url("/usertpl/i/icons/contacts/icon-mail.svg") center/contain no-repeat;
}

.contacts-dealers .title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}
.contacts-dealers .dealer-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacts-dealers .dealer-blocks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contacts-dealers .dealer-blocks .dealer-block {
  padding: 20px;
  background-color: #FCFCFC;
}
.contacts-dealers .dealer-blocks .dealer-block .dealer-title {
  font-weight: 600;
  font-size: 18px;
}
.contacts-dealers .dealer-blocks .dealer-block .address {
  margin-bottom: 5px;
}
.contacts-dealers .dealer-blocks .dealer-block a {
  display: block;
  width: fit-content;
  color: #000 !important;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.contacts-dealers .dealer-blocks .dealer-block a:hover {
  color: #1AB0FF !important;
}
.contacts-dealers .dealer-blocks .dealer-block a::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contacts-dealers .dealer-blocks .dealer-block .phone {
  margin-bottom: 2px;
}
.contacts-dealers .dealer-blocks .dealer-block .phone::before {
  background: url("/usertpl/i/icons/contacts/icon-phone.svg") center/contain no-repeat;
}
.contacts-dealers .dealer-blocks .dealer-block .email::before {
  background: url("/usertpl/i/icons/contacts/icon-mail.svg") center/contain no-repeat;
}

.header {
  color: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.header-bg {
  background: url("/usertpl/i/header-bg.webp") top center/cover no-repeat;
}
.header .top-bar {
  padding: 35px 0 50px;
}
@media (max-width: 1100px) {
  .header .top-bar {
    padding: 20px 0;
  }
}
.header .top-bar .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .header .top-bar .wrapper {
    flex-wrap: wrap;
  }
}
.header .top-bar .wrapper .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .logo {
    gap: 8px;
  }
}
.header .top-bar .wrapper .logo .image {
  width: 65px;
  height: 65px;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .logo .image {
    width: 36px;
    height: 36px;
  }
}
.header .top-bar .wrapper .logo .text .name {
  font-size: 25px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .logo .text .name {
    font-size: 16px;
    margin-bottom: 2px;
  }
}
.header .top-bar .wrapper .logo .text .title {
  font-size: 11px;
  font-weight: 500;
  color: #D9D9D9;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .logo .text .title {
    font-size: 7px;
  }
}
.header .top-bar .wrapper .blocks {
  display: flex;
  gap: 40px;
}
@media (max-width: 1400px) {
  .header .top-bar .wrapper .blocks {
    justify-content: center;
    margin-top: 32px;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 976px) {
  .header .top-bar .wrapper .blocks {
    gap: unset;
    justify-content: space-between;
  }
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .blocks {
    margin-top: 20px;
  }
}
.header .top-bar .wrapper .blocks .block {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .blocks .block {
    gap: 8px;
  }
}
@media (max-width: 475px) {
  .header .top-bar .wrapper .blocks .block:first-child {
    display: none;
  }
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .blocks .block .icon {
    width: 18px;
    height: 18px;
  }
}
.header .top-bar .wrapper .blocks .block .content .row {
  display: block;
  font-size: 16px;
  text-transform: none;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .blocks .block .content .row {
    font-size: 10px;
  }
  .header .top-bar .wrapper .blocks .block .content .row.link {
    transition: color 0.2s;
  }
  .header .top-bar .wrapper .blocks .block .content .row.link:hover {
    color: #0096FF;
  }
}
.header .top-bar .wrapper .socials {
  display: flex;
  gap: 12px;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .socials {
    display: none;
  }
}
.header .top-bar .wrapper .socials .social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #929292;
  border-radius: 50%;
  transition: border-color 0.2s;
}
.header .top-bar .wrapper .socials .social:hover {
  border-color: #FFFFFF;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .contacts {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.header .top-bar .wrapper .contacts .whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
  height: 45px;
  background-color: #0C9D12;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: background-color 0.2s;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .contacts .whatsapp-btn {
    font-size: 12px;
    text-transform: none;
    width: 100px;
    height: 36px;
    border-radius: 8px;
    order: 1;
    margin: 0;
    background: #0C9D12 url("/usertpl/i/icons/whatsapp.svg") 10px center/16px no-repeat;
    padding-left: 22px;
  }
  .header .top-bar .wrapper .contacts .whatsapp-btn span {
    display: none;
  }
}
.header .top-bar .wrapper .contacts .whatsapp-btn:hover {
  background-color: #26B72C;
}
.header .top-bar .wrapper .contacts .callback {
  width: fit-content;
  font-size: 11px;
  font-weight: 500;
  color: #D9D9D9;
  border-bottom: 1px dashed #D9D9D9;
  margin: 0 auto;
  cursor: pointer;
  transition: color 0.2s, border-bottom-color 0.2s;
}
@media (max-width: 720px) {
  .header .top-bar .wrapper .contacts .callback {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: none;
    text-align: center;
    background: #131618 url("/usertpl/i/icons/callback.svg") center/22px no-repeat;
    border-radius: 8px;
    padding: 0 12px;
  }
  .header .top-bar .wrapper .contacts .callback span {
    display: none;
  }
}
.header .top-bar .wrapper .contacts .callback:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.header .nav {
  background-color: #3D3D3D;
  padding: 10px 0;
}
.header .nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 1440px) {
  .header .nav .container {
    gap: 20px;
    justify-content: unset;
  }
}
@media (max-width: 1320px) {
  .header .nav .container {
    gap: 12px;
  }
}
@media (max-width: 720px) {
  .header .nav .container {
    gap: 8px;
  }
}
.header .nav .container .home {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.header .nav .container .home:hover, .header .nav .container .home.active {
  background-color: #131618;
}
@media (max-width: 1320px) {
  .header .nav .container .home {
    width: 64px;
    margin-right: 5px;
  }
}
@media (max-width: 720px) {
  .header .nav .container .home {
    width: 48px;
    height: 40px;
    margin: 0;
  }
  .header .nav .container .home .icon {
    width: 16px;
    height: 16px;
  }
}
.header .nav .container .menu {
  display: flex;
  gap: 40px;
}
@media (max-width: 1440px) {
  .header .nav .container .menu {
    gap: 20px;
  }
}
@media (max-width: 1320px) {
  .header .nav .container .menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #131618;
    width: 100%;
    flex-direction: column;
    padding: 30px 15px;
    gap: 10px;
  }
  .header .nav .container .menu.active {
    display: flex;
  }
}
.header .nav .container .menu .item {
  border-radius: 10px;
}
@media (max-width: 1100px) {
  .header .nav .container .menu .item {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.header .nav .container .menu .item:hover {
  background-color: #131618;
}
@media (min-width: 1101px) {
  .header .nav .container .menu .item:hover.has-child {
    border-radius: 10px 10px 0 0;
  }
  .header .nav .container .menu .item:hover.has-child .sublist {
    display: block;
  }
}
.header .nav .container .menu .item.active {
  background-color: #131618;
}
.header .nav .container .menu .item .link {
  display: block;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.header .nav .container .menu .item .sublist {
  display: none;
  position: absolute;
  background-color: #131618;
  padding: 30px;
  columns: 2;
  border-radius: 5px;
}
@media (max-width: 1100px) {
  .header .nav .container .menu .item .sublist {
    position: unset;
    columns: unset;
    padding: 10px 20px 20px 20px;
    border-radius: 10px;
  }
  .header .nav .container .menu .item .sublist.active {
    display: block;
  }
}
.header .nav .container .menu .item .sublist .subitem {
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .header .nav .container .menu .item .sublist .subitem {
    margin: 0;
  }
  .header .nav .container .menu .item .sublist .subitem:not(:last-child) .sublink {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.header .nav .container .menu .item .sublist .subitem .sublink {
  display: block;
  max-width: 320px;
  font-weight: 500;
  position: relative;
  padding-left: 16px;
  transition: color 0.1s;
}
.header .nav .container .menu .item .sublist .subitem .sublink:hover {
  color: #0096FF;
}
.header .nav .container .menu .item .sublist .subitem .sublink:hover::before {
  background-color: #0096FF;
}
@media (max-width: 1100px) {
  .header .nav .container .menu .item .sublist .subitem .sublink {
    max-width: 100%;
    padding: 15px;
  }
}
.header .nav .container .menu .item .sublist .subitem .sublink::before {
  content: "";
  width: 8px;
  height: 12px;
  background-color: #929292;
  position: absolute;
  top: 3px;
  left: 0;
  transition: background-color 0.1s;
}
@media (max-width: 1100px) {
  .header .nav .container .menu .item .sublist .subitem .sublink::before {
    top: 19px;
  }
}
.header .nav .container .search {
  width: 300px;
  height: 50px;
  position: relative;
  background-color: #636363;
  border-radius: 10px;
}
@media (max-width: 1440px) {
  .header .nav .container .search {
    width: 240px;
    margin-left: auto;
  }
}
@media (max-width: 1320px) {
  .header .nav .container .search {
    width: calc(100% - 64px - 200px);
  }
}
@media (max-width: 720px) {
  .header .nav .container .search {
    width: calc(100% - 48px - 120px);
    height: 40px;
  }
}
.header .nav .container .search .input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: #D9D9D9;
  font-size: 13px;
  font-weight: 300;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
@media (max-width: 720px) {
  .header .nav .container .search .input {
    font-size: 10px;
    padding: 10px;
  }
}
.header .nav .container .search .input:hover {
  border-color: rgba(0, 150, 255, 0.6);
}
.header .nav .container .search .input:focus {
  border-color: #0096FF;
}
.header .nav .container .search .input::placeholder {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
}
.header .nav .container .search .button {
  width: 37px;
  height: 37px;
  position: absolute;
  top: 7px;
  right: 7px;
  background-color: #323232;
  transition: transform 0.2s;
}
@media (max-width: 720px) {
  .header .nav .container .search .button {
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
  }
}
.header .nav .container .search .button .icon {
  transition: fill 0.2s;
}
@media (max-width: 720px) {
  .header .nav .container .search .button .icon {
    width: 14px;
    height: 14px;
  }
}
.header .nav .container .search .button:hover {
  transform: scale(1.05);
}
.header .nav .container .search .button:hover .icon {
  fill: #FECE00;
}
.header .nav .container .hamburger {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #131618;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 4px;
}
@media (max-width: 1320px) {
  .header .nav .container .hamburger {
    display: flex;
    width: 200px;
  }
}
@media (max-width: 720px) {
  .header .nav .container .hamburger {
    width: 120px;
    height: 40px;
  }
}
.header .nav .container .hamburger .icon {
  margin-right: 5px;
}
.header .nav .container .hamburger .icon span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media (max-width: 720px) {
  .header .nav .container .hamburger .icon span {
    width: 14px;
    height: 2px;
  }
}
.header .nav .container .hamburger .icon span:not(:last-child) {
  margin-bottom: 3px;
}
.header .nav .container .hamburger .text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .header .nav .container .hamburger .text {
    font-size: 12px;
  }
}

.main .slider {
  position: relative;
  overflow: hidden;
}
.main .slider.catalog-slider {
  background: url("/usertpl/i/catalog-slider-bg.webp") center/cover no-repeat;
  padding: 315px 0 64px;
  color: #FFFFFF;
}
@media (max-width: 720px) {
  .main .slider.catalog-slider {
    padding: 250px 0 64px;
  }
}
.main .slider.catalog-slider .section-title {
  font-size: 35px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 52px;
}
@media (max-width: 720px) {
  .main .slider.catalog-slider .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.main .slider.catalog-slider .wrapper {
  overflow: hidden;
}
.main .slider.catalog-slider .wrapper .catalog-node {
  width: 100%;
}
.main .slider.catalog-slider .wrapper .owl-dots {
  margin-top: 48px;
  justify-content: center;
}
.main .slider.catalog-slider .wrapper .catalog-button {
  display: block;
  width: fit-content;
  padding: 24px 48px;
  background-color: #636363;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #F5F5F5;
  text-transform: uppercase;
  margin: 40px auto 0;
}
.main .slider.promo-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
}
.main .slider .owl-dots {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .main .slider .owl-dots {
    gap: 8px;
  }
}
.main .slider .owl-dots .owl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
@media (max-width: 576px) {
  .main .slider .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
  }
}
.main .slider .owl-dots .owl-dot.active {
  background-color: #FFFFFF;
}
.main .products {
  padding: 75px 0 125px 0;
}
@media (max-width: 576px) {
  .main .products {
    padding: 40px 0 60px;
  }
}
.main .benefits {
  background: #F1F1F1;
  padding: 80px 0 145px;
}
@media (max-width: 576px) {
  .main .benefits {
    padding: 40px 0 70px;
  }
}
.main .benefits .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px 20px;
}
@media (max-width: 976px) {
  .main .benefits .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.main .benefits .container .benefit-item {
  display: flex;
  gap: 28px;
}
.main .benefits .container .benefit-item .icon-wrap {
  width: 115px;
  height: 115px;
  flex-shrink: 0;
  background-color: #FECE00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .main .benefits .container .benefit-item .icon-wrap {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .main .benefits .container .benefit-item .content {
    padding-right: 10px;
  }
}
.main .benefits .container .benefit-item .content .title {
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-top: 5px;
}
@media (max-width: 576px) {
  .main .benefits .container .benefit-item .content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.main .benefits .container .benefit-item .content .text {
  font-weight: 300;
}
@media (max-width: 576px) {
  .main .benefits .container .benefit-item .content .text {
    font-size: 14px;
  }
}
.main .scheme {
  padding: 70px 0 120px;
}
@media (max-width: 576px) {
  .main .scheme {
    padding: 40px 0 70px;
  }
}
.main .scheme .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 976px) {
  .main .scheme .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .main .scheme .container {
    grid-template-columns: 1fr;
  }
}
.main .scheme .container .scheme-item .step {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 41px;
  font-weight: 600;
  color: #0096FF;
  margin-bottom: 35px;
  background-color: #F1F1F1;
  margin-left: 10px;
}
@media (max-width: 976px) {
  .main .scheme .container .scheme-item .step {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.main .scheme .container .scheme-item .list {
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  list-style-type: disc;
  padding-left: 20px;
}
.main .production {
  background-color: #F1F1F1;
  padding: 87px 0 140px;
}
.main .production .images {
  display: grid;
  grid-template-columns: 50% 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 976px) {
  .main .production .images {
    grid-template-columns: 1fr 1fr;
  }
}
.main .production .images .gallery-node {
  height: 250px;
  width: 100%;
}
.main .production .images .gallery-node:first-child {
  grid-row: span 2;
  height: 100%;
}
@media (max-width: 976px) {
  .main .production .images .gallery-node:first-child {
    grid-row: unset;
    grid-column: span 2;
    height: 250px;
  }
}
.main .production .images .link {
  background-color: #181818;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main .production .images .link:hover .title {
  height: 100%;
}
.main .production .images .link .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: height 0.2s;
}
.main .production .certificates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 976px) {
  .main .production .certificates {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main .production .certificates .gallery-node {
  width: 100%;
}
.main .faq {
  padding: 74px 0 142px;
}
.main .faq .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 976px) {
  .main .faq .wrapper {
    grid-template-columns: 1fr;
  }
}
.main .faq .wrapper .faq-node {
  width: 100%;
}
.main .page {
  padding: 300px 0 60px;
}
@media (max-width: 720px) {
  .main .page {
    padding: 240px 0 48px;
  }
}
.main .page .page-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 976px) {
  .main .page .page-title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .main .page .page-title {
    font-size: 30px;
  }
}
.main .page .sections {
  margin-bottom: 60px;
}
.main .page .page-descr {
  font-size: 16px;
  font-weight: 300;
}
.main .page .page-descr:not(.bottom) {
  margin-bottom: 60px;
}
.main .page .nodes {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main .page.search-page .page-title {
  font-size: 36px;
  text-align: start;
  margin-bottom: 56px;
}
@media (max-width: 576px) {
  .main .page.search-page .page-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
.main .page.error {
  text-align: center;
}
.main .page.error .page-title {
  font-size: 100px;
}
.main .page.error .page-text {
  font-size: 24px;
}

.footer {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}
.footer .upfooter {
  background-color: #585858;
  padding: 60px 0;
}
.footer .upfooter .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1300px) {
  .footer .upfooter .wrapper {
    flex-wrap: wrap;
  }
}
.footer .upfooter .wrapper .block a {
  transition: color 0.1s;
}
.footer .upfooter .wrapper .block a:hover {
  color: #0096FF;
}
.footer .upfooter .wrapper .block .block-title {
  font-size: 18px;
  color: #D9D9D9;
  margin-bottom: 30px;
  font-weight: 500;
}
.footer .upfooter .wrapper .block .list .item {
  margin-bottom: 30px;
}
.footer .upfooter .wrapper .block .contacts {
  font-weight: 600;
  width: 360px;
}
@media (max-width: 768px) {
  .footer .upfooter .wrapper .block .contacts {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .upfooter .wrapper .block .contacts .item:not(:last-child) {
  margin-bottom: 35px;
}
.footer .upfooter .wrapper .block .catalog {
  columns: 2;
  width: 650px;
}
@media (max-width: 768px) {
  .footer .upfooter .wrapper .block .catalog {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer .upfooter .wrapper .block .catalog {
    columns: unset;
  }
}
.footer .upfooter .wrapper .block .payment-items .payment {
  display: block;
  margin: 0 auto;
}
.footer .upfooter .wrapper .block .payment-items .payment:not(:last-child) {
  margin-bottom: 20px;
}
.footer .bar {
  background-color: #454545;
  padding: 50px 0;
  font-size: 15px;
  color: #D9D9D9;
}
.footer .bar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .footer .bar .wrapper {
    justify-content: center;
  }
}
.footer .bar .wrapper .social {
  display: flex;
  gap: 10px;
}
@media (max-width: 576px) {
  .footer .bar .wrapper .social {
    width: 100%;
    margin: 20px 0;
    justify-content: center;
  }
}
.footer .bar .wrapper .social .social-item {
  background-color: #236EA2;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  transition: background-color 0.1s;
}
.footer .bar .wrapper .social .social-item:hover {
  background-color: #0096FF;
}
.slider-node {
  display: block;
  height: 935px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  padding-top: 400px;
  text-align: center;
}
@media (max-width: 1100px) {
  .slider-node {
    padding-top: 350px;
  }
}
@media (max-width: 768px) {
  .slider-node {
    padding: 350px 20px 0 20px;
  }
}
@media (max-width: 576px) {
  .slider-node {
    padding: 290px 20px 0 20px;
    height: 100svh;
  }
}
.slider-node::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
}
.slider-node .subtitle {
  font-size: 21px;
  font-weight: 500;
  color: #D9D9D9;
  text-transform: uppercase;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .slider-node .subtitle {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .slider-node .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.slider-node .title {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .slider-node .title {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .slider-node .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.slider-node .text {
  font-size: 29px;
  font-weight: 300;
  max-width: 730px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .slider-node .text {
    font-size: 23px;
  }
}
@media (max-width: 576px) {
  .slider-node .text {
    font-size: 17px;
    margin-bottom: 30px;
  }
}
.slider-node .button {
  width: 280px;
  height: 65px;
  margin: auto;
}
@media (max-width: 576px) {
  .slider-node .button {
    width: 220px;
    height: 55px;
    font-size: 15px;
  }
}

.catalog-node {
  display: block;
  width: 284px;
  position: relative;
}
@media (max-width: 1500px) {
  .catalog-node {
    width: 18%;
  }
}
@media (max-width: 1300px) {
  .catalog-node {
    width: 23%;
  }
}
@media (max-width: 976px) {
  .catalog-node {
    width: 48%;
  }
}
@media (max-width: 576px) {
  .catalog-node {
    width: 100%;
  }
}
.catalog-node .image-wrap {
  display: block;
  height: 220px;
  overflow: hidden;
  margin-bottom: 20px;
}
.catalog-node .image-wrap:hover .image {
  transform: scale(1.04);
}
.catalog-node .image-wrap .image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.1s;
}
.catalog-node .status {
  display: flex;
  gap: 4px;
  position: absolute;
  top: 8px;
  left: 8px;
}
.catalog-node .status .label {
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  text-transform: uppercase;
}
.catalog-node .status .label:first-child {
  border-radius: 2px 0 0 2px;
}
.catalog-node .status .label:last-child {
  border-radius: 0 2px 2px 0;
}
.catalog-node .status .label.hit {
  background-color: #0096FF;
}
.catalog-node .status .label.new {
  background-color: #FECE00;
}
.catalog-node .status .label.installment {
  background-color: #c13333;
}
.catalog-node .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.1s;
  height: 66px;
}
.catalog-node .title:hover {
  color: #0096FF;
}
.catalog-node .prices {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.catalog-node .prices .block-title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 6px;
}
.catalog-node .prices .block-price {
  font-size: 18px;
  font-weight: 800;
}
.catalog-node .buttons {
  display: flex;
  justify-content: space-between;
}
.catalog-node .buttons .oneclick {
  background-color: #0C9D12;
  height: 44px;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  font-family: inherit;
  padding: 0 22px;
  border-radius: 4px;
  transition: color 0.1s;
}
.catalog-node .buttons .oneclick:hover {
  background-color: #26B72C;
}
.catalog-node .buttons .oneclick span {
  line-height: 1;
}
.catalog-node .buttons .oneclick span:first-child {
  font-weight: 400;
  font-size: 13px;
  text-transform: none;
}
.catalog-node .buttons .oneclick span:last-child {
  font-weight: 500;
  font-size: 15px;
}

.article-node {
  width: 24%;
  position: relative;
  cursor: pointer;
}
.article-node .image {
  width: 100%;
  height: 240px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.article-node .title {
  font-weight: 600;
  font-size: 20px;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 5px;
}
.article-node .brief {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 300;
}
.article-node .date {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 12px;
  padding: 5px 10px;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px 0 5px 0;
}

.gallery-node {
  width: 24%;
  height: 250px;
  position: relative;
  cursor: pointer;
}
.gallery-node.certificate {
  height: unset;
}
.gallery-node::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.gallery-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url("/usertpl/i/icons/icon-zoom.svg") center/cover no-repeat;
}
.gallery-node:hover::before {
  opacity: 1;
}
.gallery-node:hover::after {
  filter: brightness(100);
}
.gallery-node .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-node {
  padding: 45px 60px 60px 90px;
  background-color: #FAFAFA;
  width: 49%;
  position: relative;
}
.faq-node::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 45px;
  left: 30px;
  background: url("/usertpl/i/icons/icon-faq.svg") center/cover no-repeat;
}
.faq-node.active .text {
  height: unset;
}
.faq-node.active .text::after {
  display: none;
}
.faq-node.active .link::after {
  transform: rotate(225deg);
  top: 9px;
}
.faq-node .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.faq-node .text {
  font-size: 16px;
  font-weight: 300;
  height: 50px;
  line-height: 1;
  overflow: hidden;
  position: relative;
}
.faq-node .text::after {
  content: "";
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.3) 45%, #FAFAFA 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.faq-node .link {
  display: inline-block;
  font-weight: 500;
  color: #FECE00;
  cursor: pointer;
  position: relative;
  padding-right: 15px;
}
.faq-node .link::after {
  content: "";
  display: inline-block;
  border: solid #FECE00;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  right: 0;
}

.article-page .image-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.article-page .image-wrap .image {
  width: 70%;
  object-fit: cover;
  margin: 0 auto;
}
.catalog-page {
  display: flex;
  gap: 50px;
}
@media (max-width: 976px) {
  .catalog-page {
    flex-wrap: wrap;
  }
}
.catalog-page .images {
  width: 535px;
  flex-shrink: 0;
}
@media (max-width: 976px) {
  .catalog-page .images {
    width: 100%;
  }
}
.catalog-page .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-page .images .current {
  margin-bottom: 15px;
}
.catalog-page .images .current .item {
  display: none;
  height: 500px;
}
.catalog-page .images .current .item.active {
  display: block;
}
.catalog-page .images .previews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.catalog-page .images .previews .item {
  width: 100%;
  height: 100px;
  cursor: pointer;
}
.catalog-page .content {
  width: 100%;
}
.catalog-page .content .status {
  display: flex;
  gap: 7px;
  margin-bottom: 32px;
}
.catalog-page .content .status .label {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 5px;
  text-transform: uppercase;
}
.catalog-page .content .status .label.hit {
  background-color: #0096FF;
}
.catalog-page .content .status .label.new {
  background-color: #FECE00;
}
.catalog-page .content .status .label.installment {
  background-color: #c13333;
}
.catalog-page .content .prices {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
.catalog-page .content .prices .block-title {
  background: none;
  padding: 0;
  font-size: 18px;
  margin-bottom: 12px;
}
.catalog-page .content .prices .block-price {
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 576px) {
  .catalog-page .content .prices .block-price {
    font-size: 18px;
  }
}
.catalog-page .content .button {
  width: 235px;
  height: 55px;
  margin-bottom: 25px;
}
.catalog-page .content .realm {
  font-size: 14px;
  margin-bottom: 25px;
  color: #D9D9D9;
}
.catalog-page .content .realm-link:hover {
  color: #1AB0FF;
}
.catalog-page .content .block.descr {
  margin-bottom: 40px;
}
.catalog-page .content .block-title {
  font-size: 16px;
  text-transform: uppercase;
  background-color: #F1F1F1;
  padding: 8px 11px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 15px;
}
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}
.overlay.active {
  display: flex;
}
.overlay .loader {
  display: none;
  width: 200px;
  height: 200px;
  background: url("/usertpl/i/loader.svg") center/cover no-repeat;
}
.overlay .loader.active {
  display: block;
}
.overlay .popup, .overlay .message {
  display: none;
  border-radius: 10px;
  background-color: #F1F1F1;
  width: 600px;
  padding: 40px 40px 40px 40px;
  position: relative;
}
.overlay .popup.active, .overlay .message.active {
  display: block;
}
.overlay .popup .popup-head .title, .overlay .message .popup-head .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}
.overlay .popup .popup-info, .overlay .message .popup-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.overlay .popup .popup-info .icon, .overlay .message .popup-info .icon {
  flex-shrink: 0;
}
.overlay .popup .popup-info .info, .overlay .message .popup-info .info {
  font-size: 15px;
  font-weight: 500;
  color: #585858;
}
.overlay .popup .popup-content input, .overlay .message .popup-content input {
  width: 100%;
  margin-bottom: 10px;
}
.overlay .popup .button, .overlay .message .button {
  width: 100%;
  height: 50px;
}
.overlay .popup .close, .overlay .message .close {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  font-size: 18px;
  width: 36px;
  height: 36px;
  background-color: #E5E5E5;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #585858;
}
.overlay .popup .close:hover, .overlay .message .close:hover {
  color: #ff0000;
}
.overlay .popup .text, .overlay .message .text {
  font-size: 21px;
  font-weight: 600;
}
