﻿
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MyriadPro-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/myriad-pro/MYRIADPRO-ITALIC.OTF") format("opentype");
  font-style: italic;
  font-weight: 400;
}
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: 1200px;
  margin: auto;
}
@media (max-width: 1230px) {
  .container {
    padding: 0px 20px;
    width: 100%;
  }
}
@media (max-width: 770px) {
  .container {
    padding: 0px 10px;
  }
}

/*.body.no-scroll {*/
/*  overflow: hidden;*/
/*}*/

.main {
  flex: 1 1 auto;
}

.padding-header {
  padding: 110px 0px 0px;
}
@media (max-width: 850px) {
  .padding-header {
    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.scroll .main-header__logo.logo .logo__img {
  max-width: 90px;
}
@media (max-width: 850px) {
  .header.scroll .main-header__logo.logo .logo__img {
    max-width: 70px;
  }
}
.header.scroll .main-header__body {
  padding: 10px 0px;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #989898;
}

.main-header__body {
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s all;
}

.main-header__menu {
  display: flex;
  align-items: center;
}

.main-header__menu-item {
  margin: 0px 50px 0px 0px;
}
.main-header__menu-item:last-child {
  margin: 0;
}
.main-header__menu-item.submenu {
  position: relative;
}
.main-header__menu-item.submenu .main-header__menu-link {
  cursor: pointer;
}
.main-header__menu-item.submenu:hover .main-header__submenu {
  top: 100%;
  opacity: 1;
}

.main-header__menu-link {
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #000000;
}

.main-header__submenu {
  position: absolute;
  top: -1000px;
  left: 0;
  padding: 15px 0px 0px;
  width: 200px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-header__submenu-list {
  padding: 20px;
  border: 1px solid #989898;
  border-radius: 10px;
  background: #ffffff;
}

.main-header__submenu-item {
  margin: 0px 0px 10px;
}
.main-header__submenu-item:last-child {
  margin: 0;
}

.main-header__submenu-link {
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.main-header__submenu-link:hover {
  opacity: 0.5;
}

.main-header__search {
  max-width: 160px;
  width: 100%;
  position: relative;
}

.main-header__search-input {
  padding: 12px 40px 12px 12px;
  width: 100%;
  border-radius: 10px;
  background: #EDEDED;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  color: #000000;
}
.main-header__search-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  font-size: 15px;
  color: #B1B1B1;
}
.main-header__search-input::placeholder {
  transition: 0.5s all;
  font-size: 15px;
  color: #B1B1B1;
}
.main-header__search-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.main-header__search-input:focus::placeholder {
  opacity: 0.5;
}

.main-header__search-submit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  min-width: 20px;
  height: 20px;
  background: url("../img/icon/search-header.svg") 0 0/100% 100% no-repeat;
  cursor: pointer;
  transition: 0.5s all;
  font-size: 0;
}
.main-header__search-submit:hover {
  opacity: 0.5;
}

.main-header__search-icon {
  margin: 0px 20px 0px 0px;
  min-width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 10px;
  display: none;
  justify-content: center;
  align-items: center;
}

.main-header__search-icon-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header__search-icon-img svg {
  max-width: 100%;
}
.main-header__search-icon-img svg path {
  fill: #000000;
}

.main-header__burger {
  display: none;
}

@media (max-width: 1150px) {
  .main-header__menu-item {
    margin: 0px 30px 0px 0px;
  }
  .main-header__menu-link {
    font-size: 16px;
    text-transform: none;
  }
}
@media (max-width: 900px) {
  .main-header__menu-item {
    margin: 0px 20px 0px 0px;
  }
}
@media (max-width: 850px) {
  .main-header__body {
    justify-content: start;
  }
  .main-header__logo {
    flex: auto;
  }
  .main-header__menu {
    display: none;
  }
  .main-header__search {
    display: none;
  }
  .main-header__search-icon {
    display: block;
  }
  .main-header__burger {
    display: block;
  }
}
.smart-header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  display: inline;
  overflow-y: auto;
  z-index: 10000;
  transition: 1s all;
}
.smart-header.active {
  right: 0;
}
.smart-header.active .container::before {
  right: 0;
  opacity: 0.5;
}
.smart-header.active .smart-header__content {
  right: 0;
}
.smart-header .container {
  padding: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}
.smart-header .container::before {
  content: "";
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #000000;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}

.smart-hedaer__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
}

.smart-header__content {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.smart-header__exit {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: end;
}

.smart-header__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.smart-header__exit-img span {
  width: 20px;
  height: 2px;
  background: #000000;
  display: inline-block;
  position: relative;
  transform: rotate(45deg);
}
.smart-header__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: rotate(90deg);
}

.smart-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__menu-item {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smart-header__menu-item.submenu {
  position: relative;
}

.smart-header__menu-link {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

.smart-header__submenu {
  padding: 10px 0px 5px;
  display: none;
}

.smart-header__submenu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smart-header__submenu-item {
  margin: 0px 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smart-header__submenu-item:last-child {
  margin: 0;
}

.smart-header__submenu-link {
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.logo .logo__body {
  display: inline-block;
}
.logo .logo__img {
  max-width: 110px;
  width: 100%;
  transition: 0.5s all;
}
.logo .logo__img img {
  width: 100%;
}
@media (max-width: 850px) {
  .logo .logo__img {
    max-width: 70px;
  }
}

.burger .burger__img {
  min-width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  opacity: 0;
}
.burger .burger__img:hover {
  opacity: 0.5;
}
.burger .burger__img span {
  width: 20px;
  height: 4px;
  display: inline-block;
  background: #000000;
  position: relative;
  transition: 0.5s all;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: 0.5s all;
}
.burger .burger__img span::before {
  top: -7px;
}
.burger .burger__img span::after {
  bottom: -7px;
}

.slick-track {
  display: flex;
}

.slick-slider.news .slick-dots {
  padding: 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-slider.news .slick-dots li {
  margin: 0px 5px 0px 0px;
}
.slick-slider.news .slick-dots li:last-child {
  margin: 0;
}
.slick-slider.news .slick-dots li.slick-active button {
  width: 20px;
  background: #FFB20C;
}
.slick-slider.news .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #989898;
  transition: 0.5s all;
  font-size: 0;
}

.title {
  position: relative;
  font-family: "Myriad Pro", sans-serif;
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
.title::before {
  content: "";
  width: 54px;
  height: 4px;
  margin: 0 0 20px;
  display: block;
  border-radius: 999px;
  background: #ffb20c;
}
@media (max-width: 770px) {
  .title {
    padding: 0;
    font-size: 25px;
    line-height: 30px;
  }
  .title::before {
    width: 44px;
    height: 3px;
    margin-bottom: 16px;
  }
}

.text-hover {
  position: relative;
}
.text-hover::before {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0%;
  height: 2px;
  background: #000000;
  transition: 1s all;
}
.text-hover:hover::before {
  width: 100%;
}

.fancybox__container {
  z-index: 4000;
}

.modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal .container {
  height: 100%;
}
.modal.active {
  left: 0;
}
.modal.active .modal__fullscreen-exit {
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__body {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__fullscreen-exit {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
  z-index: 2;
}

.modal__content {
  padding: 50px;
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.modal__exit {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal__exit-img {
  width: 30px;
  height: 30px;
  border: 2px solid #000000;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
}
.modal__exit-img span {
  width: 20px;
  height: 3px;
  background: #000000;
  display: inline-block;
  position: relative;
  rotate: 45deg;
}
.modal__exit-img span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  rotate: 90deg;
}
.modal__exit-img:hover {
  opacity: 0.5;
}

.modal__title {
  margin: 0px 0px 30px;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 35px;
  line-height: 40px;
  font-weight: 700;
  color: #000000;
}
@media (max-width: 770px) {
  .modal__title {
    font-size: 25px;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
}

.modal__input {
  margin: 0px 0px 15px;
  padding: 20px 30px;
  position: relative;
  border-radius: 15px;
  background: rgba(154, 154, 154, 0.3019607843);
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
}
.modal__input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #333333;
}
.modal__input::placeholder {
  transition: 0.5s all;
  color: #333333;
}
.modal__input:focus::-moz-placeholder {
  opacity: 0.5;
}
.modal__input:focus::placeholder {
  opacity: 0.5;
}

.modal__submit {
  padding: 20px 30px;
  border: 2px solid #FFB20C;
  border-radius: 15px;
  background: #FFB20C;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.modal__submit:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 770px) {
  .modal__title {
    margin: 0px 0px 20px;
  }
  .modal__input {
    margin: 0px 0px 15px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .modal__content {
    padding: 70px 20px 50px;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.pagination {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.pagination a {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid rgb(255, 178, 12);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: rgb(255, 178, 12);
}
.pagination a:hover {
  background: rgb(228, 173, 53);
  color: #ffffff;
}

.pagination-prev,
.pagination-next {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid rgb(255, 178, 12);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: rgb(255, 178, 12);
}
.pagination-prev:hover,
.pagination-next:hover {
  background:rgb(255, 178, 12);
  color: #ffffff;
}

.pagination-active {
  margin: 0px 3px;
  padding: 5px;
  min-width: 30px;
  height: 30px;
  border: 2px solid rgb(255, 178, 12);
  border-radius: 5px;
  background: rgb(255, 178, 12);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.pagination-dots {
  margin: 0px 5px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #0D5FB3;
}

.message {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10000;
}
.message.active {
  animation: messageSlide 5s ease-in-out forwards;
}
@keyframes messageSlide {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  15% {
    bottom: 20px;
    opacity: 1;
  }
  70% {
    bottom: 20px;
    opacity: 1;
  }
  100% {
    bottom: -200px;
    opacity: 0;
  }
}

.message__body {
  background: #4caf50;
  padding: 16px 24px;
  border-radius: 8px;
}

.message__text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: white;
}

.content-search {
  margin: 50px 0px;
}
.content-search .container {
  max-width: 600px;
}

.content-search__body {
  display: flex;
  flex-direction: column;
}

.content-search__title {
  margin: 0px 0px 40px;
}

.content-search__form {
  margin: 0px 0px 50px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 520px;
  width: 100%;
}

.content-search__form-input {
  margin: 0;
  padding: 15px 20px;
  flex: 1 1 auto;
  min-width: 0;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #ECE7E2;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  color: #000000;
}
.content-search__form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #000000;
}
.content-search__form-input::placeholder {
  transition: 0.5s all;
  color: #000000;
}
.content-search__form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.content-search__form-input:focus::placeholder {
  opacity: 0.5;
}

.content-search__form-submit {
  margin: 0;
  padding: 15px 28px;
  flex: 0 0 auto;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.content-search__form-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

@media (max-width: 520px) {
  .content-search__form {
    max-width: none;
    flex-direction: column;
  }

  .content-search__form-submit {
    width: 100%;
  }
}

.content-search__form-result {
  font-family: #0D5FB3;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.content-search__result {
  display: flex;
  flex-direction: column;
}

.content-search__result-column {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}

.content-search__result-title {
  margin: 0px 0px 10px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: #000000;
}

.content-search__result-text {
  margin: 0px 0px 15px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

.content-search__result-link {
  transition: 0.5s all;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.content-search__result-link:hover {
  color: #0D5FB3;
}

.content-search__result-no {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 770px) {
  .content-search__title {
    margin: 0px 0px 20px;
  }
}
.fullscreen-home {
  margin: 0px 0px 100px;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.fullscreen-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -3;
}
.fullscreen-home .container {
  height: 100%;
}

.fullscreen-home__body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fullscreen-home__fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}
.fullscreen-home__fullscreen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullscreen-home__background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: -2;
}
.fullscreen-home__background img {
  width: 100%;
}

.fullscreen-home__product {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 40%;
  z-index: -1;
}
.fullscreen-home__product img {
  width: 100%;
}

.fullscreen-home__content {
  max-width: 710px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.fullscreen-home__content-title {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.fullscreen-home__content-text {
  margin: 0px 0px 40px;
  max-width: 500px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #ffffff;
}

.fullscreen-home__content-submit {
  padding: 12px 35px;
  border: 2px solid #FFB20C;
  border-radius: 50px;
  background: #FFB20C;
  display: block;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.fullscreen-home__content-submit:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1200px) {
  .fullscreen-home__product {
    bottom: 0;
  }
}
@media (max-width: 770px) {
  .fullscreen-home {
    margin: 0px 0px 50px;
  }
  .fullscreen-home__background {
    width: 100%;
  }
  .fullscreen-home__product {
    width: 70%;
  }
  .fullscreen-home__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .fullscreen-home__content-text {
    margin: 0px 0px 20px;
    max-width: 400px;
    font-size: 16px;
    line-height: 20px;
  }
  .fullscreen-home__content-submit {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.advantages-home {
  margin: 0px 0px 100px;
}

.advantages-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantages-home__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.advantages-home__row {
  width: calc(100% + 40px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.advantages-home__column {
  padding: 0px 20px;
  width: 100%;
}

.advnatages-home__column-body {
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F9F9F9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.advnatages-home__column-image {
  margin: 0px 15px 0px 0px;
  max-width: 100%;
}

.advantages-home__column-image-img {
  max-width: 100%;
  min-width: 46px;
}
.advantages-home__column-image-img img {
  max-width: 100%;
}

.advantages-home__column-content {
  display: flex;
  flex-direction: column;
}

.advantages-home__column-content-title {
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #000000;
}

@media (max-width: 1200px) {
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
  .advantages-home__row {
    width: calc(100% + 10px);
  }
  .advantages-home__column {
    padding: 0px 5px;
  }
  .advnatages-home__column-body {
    padding: 30px 10px;
  }
  .advnatages-home__column-image {
    margin: 0px 10px 0px 0px;
  }
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 770px) {
  .advantages-home {
    margin: 0px 0px 50px;
  }
  .advantages-home__title {
    text-align: center;
  }
  .advantages-home__row {
    width: calc(100% + 0px);
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
  .advantages-home__column {
    padding: 0px 0px 15px;
  }
  .advantages-home__column:last-child {
    padding: 0;
  }
  .advnatages-home__column-body {
    justify-content: start;
  }
  .advnatages-home__column-image {
    margin: 0px 15px 0px 0px;
  }
  .advantages-home__column-content-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.about-home {
  margin: 0px 0px 100px;
}
.about-home.top {
  margin: 50px 0px 100px;
}
@media (max-width: 770px) {
  .about-home.top {
    margin: 50px 0px;
  }
}

.about-home__body {
  display: flex;
  justify-content: space-between;
}

.about-home__image {
  flex: 0 0 calc(45% - 35px);
  width: 100%;
}

.about-home__image-img {
  padding-bottom: 100%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-home__image-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-home__content {
  flex: 0 0 calc(55% - 35px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-home__content-title {
  margin: 0px 0px 15px;
}

.about-home__content-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.about-home__content-text p {
  margin: 0px 0px 10px;
}
.about-home__content-text p:last-child {
  margin: 0;
}
.about-home__content-text ul {
  margin: 0px 0px 10px;
}
.about-home__content-text ul li {
  margin: 0px 0px 8px;
  padding: 0px 0px 0px 20px;
  position: relative;
}
.about-home__content-text ul li:last-child {
  margin: 0;
}
.about-home__content-text ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0D5FB3;
}
.about-home__content-text ul:last-child {
  margin: 0;
}

@media (max-width: 1000px) {
  .about-home__image {
    flex: 0 0 calc(45% - 15px);
  }
  .about-home__content {
    flex: 0 0 calc(55% - 15px);
  }
}
@media (max-width: 770px) {
  .about-home {
    margin: 0px 0px 50px;
  }
  .about-home__content-title {
    margin: 0px 0px 10px;
  }
  .about-home__content-text {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 660px) {
  .about-home__body {
    flex-direction: column;
  }
  .about-home__image {
    margin: 0px 0px 20px;
  }
  .about-home__image-img {
    padding-bottom: 70%;
  }
}
.offers-home {
  margin: 0px 0px 100px;
}

.offers-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offers-home__title {
  margin: 0px 0px 50px;
  width: 100%;
}

.offers-home__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
}

.offers-home__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.offers-home__column-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offers-home__column-body:hover .offers-home__column-img img {
  transform: translate(-50%, -50%) scale(0.8);
}

.offers-home__column-img {
  margin: 0px 0px 20px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
}
.offers-home__column-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  max-height: 80%;
  transition: 0.5s all;
}

.offers-home__column-content {
  display: flex;
  flex-direction: column;
}

.offers-home__column-contnet-title {
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 1000px) {
  .offers-home__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .offers-home__column {
    padding: 0px 10px 30px;
  }
}
@media (max-width: 770px) {
  .offers-home {
    margin: 0px 0px 50px;
  }
  .offers-home__title {
    margin: 0px 0px 30px;
    text-align: center;
  }
  .offers-home__row {
    width: calc(100% + 10px);
  }
  .offers-home__column {
    padding: 0px 5px 30px;
  }
  .offers-home__column-img {
    margin: 0px 0px 10px;
  }
  .offers-home__column-contnet-title {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }
}
.book-home {
  margin: 0px 0px 100px;
  background: #FFB20C;
  border-bottom-right-radius: 400px;
}

.book-home__body {
  padding: 50px 0px 70px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.book-home__product {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: -1;
}

.book-home__content {
  max-width: 790px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.book-home__content-title {
  margin: 0px 0px 20px;
}

.book-home__content-text {
  margin: 0px 0px 40px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  color: #000000;
}

.book-home__content-form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.book-home__content-form-row {
  margin: 0px 0px 20px;
  display: flex;
  align-items: center;
}
.book-home__content-form-row .book-home__content-form-input:last-child {
  margin: 0px 0px 0px 20px;
}

.book-home__content-form-input {
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  background: #ffffff;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  color: #747474;
}
.book-home__content-form-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-form-input::placeholder {
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-form-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.book-home__content-form-input:focus::placeholder {
  opacity: 0.5;
}

.book-home__content-textarea {
  margin: 0px 0px 20px;
  padding: 20px;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background: #ffffff;
  resize: none;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  color: #747474;
}
.book-home__content-textarea::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-textarea::placeholder {
  transition: 0.5s all;
  color: #747474;
}
.book-home__content-textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
.book-home__content-textarea:focus::placeholder {
  opacity: 0.5;
}

.book-home__content-submit {
  padding: 20px;
  width: 100%;
  border: 2px solid #0D5FB3;
  border-radius: 10px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #ffffff;
}
.book-home__content-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

@media (max-width: 770px) {
  .book-home {
    margin: 0px 0px 50px;
    border-bottom-right-radius: 100px;
  }
  .book-home__body {
    padding: 50px 0px;
  }
  .book-home__product {
    max-width: 300px;
    bottom: 25px;
    width: 100%;
  }
  .book-home__product img {
    width: 100%;
  }
  .book-home__content-title {
    margin: 0px 0px 10px;
    text-align: center;
  }
  .book-home__content-text {
    margin: 0px 0px 30px;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
  }
  .book-home__content-form-row {
    margin: 0px 0px 10px;
  }
  .book-home__content-form-row .book-home__content-form-input:last-child {
    margin: 0px 0px 0px 10px;
  }
  .book-home__content-form-input {
    padding: 15px;
    font-size: 16px;
  }
  .book-home__content-textarea {
    margin: 0px 0px 10px;
    padding: 15px;
    font-size: 16px;
    line-height: 22px;
  }
  .book-home__content-submit {
    padding: 15px;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .book-home__content-form-row {
    flex-direction: column;
  }
  .book-home__content-form-row .book-home__content-form-input:last-child {
    margin: 10px 0px 0px;
  }
}
.news-home {
  margin: 0px 0px 100px;
}

.news-home__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-home__title {
  margin: 0px 0px 50px;
  width: 100%;
}

.news-home__row {
  width: calc(100% + 30px);
}
.news-home__row .slick-list.draggable {
  overflow: hidden;
}

.news-home__column {
  padding: 0px 15px;
  width: 100%;
}

.news-home__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
}

.news-home__column-img {
  margin: 0px 0px 10px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.news-home__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-home__column-content {
  display: flex;
  flex-direction: column;
}

.news-home__column-content-title {
  margin: 0px 0px 5px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

.news-home__column-content-text {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #000000;
}

.news-home__column-content-link {
  padding: 10px 20px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  background: #FFB20C;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.news-home__column-content-link:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1000px) {
  .news-home__row {
    width: calc(100% + 20px);
  }
  .news-home__column {
    padding: 0px 10px;
  }
}
@media (max-width: 770px) {
  .news-home {
    margin: 0px 0px 50px;
  }
  .news-home__title {
    margin: 0px 0px 30px;
    text-align: center;
  }
  .news-home__row {
    width: calc(100% + 10px);
  }
  .news-home__column {
    padding: 0px 5px;
  }
}
.content-catalog {
  margin: 50px 0px 100px;
}

.content-catalog__body {
  display: flex;
  flex-direction: column;
}

.content-catalog__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-catalog__row {
  display: flex;
}

.content-catalog__info {
  margin: 0px 20px 0px 0px;
  max-width: 350px;
  width: 100%;
  min-width: 350px;
}

.content-catalog__info-body {
  padding: 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
}

.content-catalog__info-title {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #000000;
}

.content-catalog__info-list {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}
.content-catalog__info-list:last-child {
  margin: 0px;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon {
  background: transparent;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon svg {
  opacity: 0;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon {
  background: #FFB20C;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon svg {
  opacity: 1;
}

.content-catalog__info-list-item {
  margin: 0px 0px 15px;
}
.content-catalog__info-list-item:last-child {
  margin: 0;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon {
  background: #FFB20C;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon svg {
  opacity: 1;
}
.content-catalog__info-list-item:hover .content-catalog__info-list-icon {
  background: #FFB20C;
}

.content-catalog__info-list-link {
  display: flex;
  align-items: center;
}

.content-catalog__info-list-icon {
  margin: 0px 10px 0px 0px;
  min-width: 30px;
  height: 30px;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.content-catalog__info-list-icon svg {
  opacity: 0;
  transition: 0.5s all;
}

.content-catalog__info-list-text {
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.content-catalog__info-row {
  margin: 0px 0px 30px;
  display: flex;
}
.content-catalog__info-row:last-child {
  margin: 0;
}
.content-catalog__info-row .content-catalog-input:last-child {
  margin: 0px 0px 0px 10px;
}

.content-catalog-input {
  padding: 15px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 10px;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 18px;
  color: #000000;
}
.content-catalog-input::-moz-placeholder {
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  color: #989898;
}
.content-catalog-input::placeholder {
  transition: 0.5s all;
  color: #989898;
}
.content-catalog-input:focus::-moz-placeholder {
  opacity: 0.5;
}
.content-catalog-input:focus::placeholder {
  opacity: 0.5;
}

.content-catalog__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-catalog__content-product {
  width: calc(100% + 20px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.content-catalog__content-product-column {
  padding: 0px 10px 20px;
  width: 100%;
}

.content-catalog__content-product-column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.content-catalog__content-product-column-body:hover .content-catalog__content-product-column-img img {
  transform: translate(-50%, -50%) scale(0.8);
}

.content-catalog__content-product-column-img {
  margin: 0px 0px 20px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #F5F5F5;
  display: inline-block;
  position: relative;
}
.content-catalog__content-product-column-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  transition: 0.5s all;
}

.content-catalog__content-product-column-title {
  flex: auto;
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}

.content-catalog__content-product-column-price {
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.content-catalog__content-product-column-link {
  padding: 12px 20px;
  width: 100%;
  border: 2px solid #FFB20C;
  border-radius: 5px;
  background: #FFB20C;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.content-catalog__content-product-column-link:hover {
  background: transparent;
  color: #FFB20C;
}

@media (max-width: 1000px) {
  .content-catalog__info {
    margin: 0px 10px 0px 0px;
    max-width: 300px;
    min-width: 300px;
  }
  .content-catalog__info-body {
    padding: 15px;
  }
  .content-catalog__content-product-column-body {
    padding: 15px;
  }
  .content-catalog__content-product-column-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-catalog__content-product-column-price {
    margin: 0px 0px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .content-catalog__content-product {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .content-catalog {
    margin: 50px 0px;
  }
  .content-catalog__title {
    margin: 0px 0px 20px;
    width: 100%;
    text-align: center;
  }
  .content-catalog__info {
    max-width: 250px;
    min-width: 250px;
  }
  .content-catalog__info-title {
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .content-catalog__info-list {
    margin: 0px 0px 20px;
  }
  .content-catalog__info-list-item {
    margin: 0px 0px 10px;
  }
  .content-catalog__info-list-icon {
    min-width: 20px;
    height: 20px;
  }
  .content-catalog__info-list-icon svg {
    max-width: 10px;
    width: 100%;
  }
  .content-catalog__info-list-text {
    font-size: 16px;
    line-height: 22px;
  }
  .content-catalog__info-row {
    margin: 0px 0px 20px;
  }
  .content-catalog-input {
    padding: 10px;
    font-size: 16px;
  }
  .content-catalog__content-product {
    width: calc(100% + 10px);
  }
  .content-catalog__content-product-column {
    padding: 0px 5px 10px;
  }
  .content-catalog__content-product-column-title {
    margin: 0px 0px 5px;
    font-size: 16px;
    line-height: 22px;
  }
  .content-catalog__content-product-column-price {
    font-size: 14px;
    line-height: 20px;
  }
  .content-catalog__content-product-column-link {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 660px) {
  .content-catalog__row {
    flex-direction: column;
  }
  .content-catalog__info {
    margin: 0px 0px 20px;
    max-width: 100%;
    min-width: auto;
  }
  .content-catalog__content-product {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .content-catalog__content-product {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
.content-product {
  margin: 50px 0px 100px;
}

.content-product__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.content-product__content {
  padding: 40px 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-product__content-title {
  margin: 0px 0px 30px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.content-product__content-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.content-product__content-image {
  flex: 0 0 calc(60% - 10px);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.content-product__content-imgs {
  margin: 0px 10px 0px 0px;
  padding: 0px 0px 0px 5px;
  max-width: 80px;
  width: 100%;
  min-width: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  direction: rtl;
}
.content-product__content-imgs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.content-product__content-imgs::-webkit-scrollbar-thumb {
  background-color: #FFB20C;
  border-radius: 4px;
}
.content-product__content-imgs::-webkit-scrollbar-track {
  background: #E7E7E7;
}

.content-product__content-imgs-column {
  padding: 0px 0px 10px;
  width: 100%;
}
.content-product__content-imgs-column:last-child {
  padding: 0;
}
.content-product__content-imgs-column.active .content-product__content-imgs-column-body {
  border: 2px solid #FFB20C;
}

.content-product__content-imgs-column-body {
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.content-product__content-imgs-column-body:hover .content-product__content-imgs-column-img img {
  scale: 0.8;
}

.content-product__content-imgs-column-img {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
}
.content-product__content-imgs-column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.content-product__content-main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.content-product__content-main-column {
  width: 100%;
  display: none;
}
.content-product__content-main-column.active {
  display: block;
}

.content-product__content-main-column-body {
  width: 100%;
  height: 100%;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  display: inline-block;
}

.content-product__content-main-column-img {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
}
.content-product__content-main-column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-product__content-info {
  flex: 0 0 calc(40% - 10px);
  width: 100%;
}

.content-product__content-info-title {
  margin: 0px 0px 10px;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
}

.content-product__content-info-characteristic {
  margin: 0px 0px 20px;
  display: flex;
  flex-direction: column;
}

.content-product__content-info-characteristic-item {
  margin: 0px 0px 10px;
  padding: 10px;
  border: 2px solid #E7E7E7;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
}
.content-product__content-info-characteristic-item:last-child {
  margin: 0;
}

.contnet-product__content-info-characteristic-text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: #ABABAB;
}
.contnet-product__content-info-characteristic-text:last-child {
  font-weight: 400;
  color: #FFB20C;
}

.content-product__content-info-text {
  margin: 0px 0px 20px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #6E6E6E;
}
.content-product__content-info-text:last-child {
  margin: 0;
}

.content-product__info {
  margin: 0px 0px 0px 20px;
  max-width: 330px;
  width: 100%;
  min-width: 330px;
}

.content-product__info-body {
  padding: 30px;
  border: 2px solid #E7E7E7;
  border-radius: 10px;
}

.content-product__info-list {
  margin: 0px 0px 30px;
  display: flex;
  flex-direction: column;
}

.content-product__info-list-item {
  margin: 0px 0px 10px;
  padding: 0px 0px 10px;
  border-bottom: 2px solid #C8C8C8;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}
.content-product__info-list-item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.content-product__info-price {
  margin: 0px 0px 15px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  color: #FFB20C;
}

.content-product__info-submit {
  padding: 12px 20px;
  width: 100%;
  border: 2px solid #0D5FB3;
  border-radius: 5px;
  background: #0D5FB3;
  cursor: pointer;
  transition: 0.5s all;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.content-product__info-submit:hover {
  background: transparent;
  color: #0D5FB3;
}

@media (max-width: 1100px) {
  .content-product__content {
    padding: 20px;
  }
  .content-product__content-title {
    margin: 0px 0px 10px;
  }
  .content-product__content-image {
    flex: 0 0 calc(60% - 5px);
  }
  .content-product__content-info-title {
    font-size: 18px;
    line-height: 24px;
  }
  .contnet-product__content-info-characteristic-text {
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__content-info-text {
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__info {
    margin: 0px 0px 0px 10px;
    max-width: 250px;
    min-width: 250px;
  }
  .content-product__info-body {
    padding: 20px;
  }
  .content-product__info-list {
    margin: 0px 0px 15px;
  }
  .content-product__info-list-item {
    margin: 0px 0px 5px;
    padding: 0px 0px 5px;
    font-size: 14px;
    line-height: 20px;
  }
  .content-product__info-price {
    font-size: 16px;
    line-height: 22px;
  }
  .content-product__info-submit {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .content-product__body {
    flex-direction: column;
  }
  .content-product__content {
    margin: 0px 0px 10px;
    width: 100%;
  }
  .content-product__info {
    margin: 0;
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 770px) {
  .content-product {
    margin: 50px 0px;
  }
}
@media (max-width: 660px) {
  .content-product__content-row {
    width: 100%;
    flex-direction: column;
  }
  .content-product__content-image {
    margin: 0px 0px 20px;
    width: 100%;
    flex-direction: column;
  }
  .content-product__content-imgs {
    margin: 0;
    padding: 0px 0px 5px;
    max-width: 100%;
    min-width: auto;
    height: auto;
    overflow-y: auto;
    overflow-x: scroll;
    flex-direction: row;
    direction: ltr;
    order: 2;
  }
  .content-product__content-imgs-column {
    padding: 0px 10px 0px 0px;
  }
  .content-product__content-imgs-column-body {
    min-width: 80px;
  }
  .content-product__content-main {
    margin: 0px 0px 10px;
    width: 100%;
  }
}
.content-news {
  margin: 50px 0px 100px;
}

.content-news__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-news__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-news__row {
  width: calc(100% + 30px);
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
}

.content-news__column {
  padding: 0px 15px 30px;
  width: 100%;
}

.content-news__column-body {
  padding: 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #F5F5F5;
  display: inline-block;
}
.content-news__column-body:hover .content-news__column-img img {
  scale: 1.2;
}

.content-news__column-img {
  margin: 0px 0px 15px;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.content-news__column-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s all;
}

.content-news__column-content {
  display: flex;
  flex-direction: column;
}

.content-news__column-content-title {
  margin: 0px 0px 5px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

.content-news__column-content-text {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .content-news__row {
    width: calc(100% + 20px);
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
  .content-news__column {
    padding: 0px 10px 20px;
  }
}
@media (max-width: 770px) {
  .content-news {
    margin: 50px 0px;
  }
  .content-news__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .content-news__row {
    width: calc(100% + 10px);
  }
  .content-news__column {
    padding: 0px 5px 10px;
  }
  .content-news__column-body {
    padding: 15px;
  }
  .content-news__column-content-title {
    font-style: 16px;
    line-height: 22px;
  }
  .content-news__column-content-text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 660px) {
  .content-news__row {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .content-news__row {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.content-newsBlog .container {
  width: 800px;
}
@media (max-width: 850px) {
  .content-newsBlog .container {
    width: 100%;
  }
}

.content-newsBlog__body {
  padding: 50px 0px 80px;
  width: 100%;
}

.content-newsBlog__imgs {
  margin: 0px 0px 30px;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  background: #F5F5F5;
}

.content-newsBlog__img {
  padding-bottom: 60%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}
.content-newsBlog__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-newsBlog__title {
  margin: 0px 0px 20px;
  text-align: left;
  font-size: 35px;
  line-height: 1.2;
}
/*.content-newsBlog__title::before {*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*}*/

.content-newsBlog__content {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 770px) {
  .content-newsBlog__body {
    padding: 15px 0px;
  }
  .content-newsBlog__title {
    margin: 0px 0px 15px;
    font-size: 19px;
  }
  .content-newsBlog__content {
    font-size: 14px;
    left: 20px;
  }
  .content-newsBlog__imgs{
    padding: 18px;
  }
}
.content-contact {
  margin: 50px 0px 100px;
}

.content-contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-contact__title {
  margin: 0px 0px 30px;
  width: 100%;
}

.content-contact__row {
  width: 100%;
  display: flex;
}

.content-contact__info {
  margin: 0px 20px 0px 0px;
  max-width: 350px;
  width: 100%;
  min-width: 350px;
}

.content-contact__info-body {
  padding: 60px 30px;
  width: 100%;
  border-radius: 10px;
  background: #F5F5F5;
}

.content-contact__info-list {
  display: flex;
  flex-direction: column;
}

.content-contact__info-list-item {
  margin: 0px 0px 40px;
  display: flex;
  flex-direction: column;
}
.content-contact__info-list-item:last-child {
  margin: 0;
}

.content-contact__info-list-title {
  margin: 0px 0px 10px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #747474;
}

.content-contact__info-list-link {
  font-family: "Myriad Pro", sans-serif;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #FFB20C;
}

.content-contact__map {
  width: 100%;
}

.content-contact__map-iframe {
  width: 100%;
  height: 100%;
}
.content-contact__map-iframe iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 770px) {
  .content-contact {
    margin: 50px 0px;
  }
  .content-contact__title {
    margin: 0px 0px 20px;
    text-align: center;
  }
  .content-contact__row {
    flex-direction: column;
  }
  .content-contact__info {
    margin: 0px 0px 20px;
    max-width: 100%;
    min-width: auto;
  }
  .content-contact__info-body {
    padding: 30px;
  }
  .content-contact__info-list-item {
    margin: 0px 0px 20px;
  }
  .content-contact__info-list-title {
    margin: 0px 0px 5px;
  }
  .content-contact__info-list-link {
    font-size: 16px;
    line-height: 22px;
  }
  .content-contact__map-iframe iframe {
    height: 500px;
  }
}
.footer {
  background: #F5F5F5;
}

.main-footer__body {
  padding: 60px 0px;
  display: flex;
}

.main-footer__content {
  margin: 0px 60px 0px 0px;
  display: flex;
  flex-direction: column;
}
.main-footer__content:nth-child(4) {
  flex: auto;
  margin: 0;
}

.main-footer__content-title {
  margin: 0px 0px 30px;
  font-family: "Myriad Pro", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFB20C;
}

.main-footer__content-list {
  display: flex;
  flex-direction: column;
}

.main-footer__content-item {
  margin: 0px 0px 10px;
}
.main-footer__content-item:last-child {
  margin: 0;
}

.main-footer__content-link {
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 300;
  color: #000000;
}
.main-footer__content-link:hover {
  opacity: 0.5;
}

.main-footer__social {
  display: flex;
}

.main-footer__social-item {
  margin: 0px 10px 0px 0px;
}
.main-footer__social-item:last-child {
  margin: 0;
}

.main-footer__social-link {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFB20C;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s all;
}
.main-footer__social-link:hover {
  opacity: 0.5;
}

@media (max-width: 1050px) {
  .main-footer__content-title {
    margin: 0px 0px 20px;
    font-size: 20px;
    line-height: 25px;
    text-transform: none;
  }
  .main-footer__content-link {
    font-size: 16px;
    stroke-linejoin: 22px;
  }
}
@media (max-width: 770px) {
  .main-footer__body {
    padding: 50px 0px;
    flex-direction: column;
    align-items: end;
  }
  .main-footer__content {
    margin: 0px 0px 20px;
    width: 100%;
  }
  .main-footer__content:nth-child(4) {
    margin: 0px 0px 30px;
  }
  .main-footer__content-title {
    margin: 0px 0px 10px;
    font-size: 25px;
    line-height: 30px;
  }
  .main-footer__content-item {
    margin: 0px 0px 5px;
  }
  .main-footer__content-link {
    font-size: 18px;
    line-height: 24px;
  }
}
.policy-footer__body {
  padding: 25px 0px;
  border-top: 1px solid #FFB20C;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.policy-footer__logo {
  margin: 0px 0px 0px 0px;
  text-align: center;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}
.policy-footer__logo a {
  display: inline-block;
  transition: 0.5s all;
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
}
.policy-footer__logo a:hover {
  opacity: 0.5;
}

@media (max-width: 770px) {
  .policy-footer__body {
    padding: 15px 0px;
  }
}

/* Static news slider */
.news-home__row.static-news-slider {
  width: 100%;
}
.news-home__viewport {
  /*width: 100%;*/
  overflow: hidden;
  margin: 0 -9px;
}
.news-home__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.3s ease;
  will-change: transform;
}
.news-home__row.static-news-slider .news-home__column {
  flex: 0 0 auto;
}
.news-home__row.static-news-slider .slick-dots {
  padding: 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-home__row.static-news-slider .slick-dots li {
  margin: 0px 5px 0px 0px;
}
.news-home__row.static-news-slider .slick-dots li:last-child {
  margin: 0;
}
.news-home__row.static-news-slider .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #989898;
  transition: 0.3s all;
  font-size: 0;
  cursor: pointer;
}
.news-home__row.static-news-slider .slick-dots li.slick-active button {
  width: 20px;
  background: #FFB20C;
}

.main-footer__body {
  @media(max-width: 900px) {
    flex-direction: column;
  }
}
.main-footer__content {
  margin: 0px 20px 0px 0px;
  max-width: 200px;
  width: 100%;
  @media(max-width: 900px) {
    margin: 0px;
    max-width: 100%;
  }
}
.main-footer__content:nth-child(4) {
  margin: 0px 20px 0px 0px;
  @media(max-width: 900px) {
    margin: 0px 0px 20px;
  }
}
.main-footer__content-title {
  margin: 0px 0px 15px;
  font-size: 30px;
  line-height: 35px;
  @media(max-width: 900px) {
    font-size: 25px;
    line-height: 30px;
  }
}
.main-footer__content-title.active {
  opacity: 0;
  @media(max-width: 900px) {
    display: none;
  }
}
.main-footer__content-link {
  font-size: 20px;
  line-height: 25px;
  @media(max-width: 900px) {
    font-size: 16px;
    line-height: 22px;
  }
}
.main-footer__social {
  width: 100%;
  justify-content: end;
}



.content img{
  max-width: 100%;
  max-width: 100%;
  height: auto!important;
}
@media screen and (max-width:1050px) {
  .content img{
    width: 100%!important;
    margin: 0!important;
    margin-bottom: 1.5rem!important;
  }
}
.content p, .content img, .content ol, .content ul, .content table {
  margin-bottom: 10px;
  line-height: 1.4;
}

.content table{
  width: 100%!important;
  border-collapse: collapse!important;
  border: none!important;
}

/* Header redesign v1 */
.header {
  z-index: 3000;
}
.main-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}
.main-header__body {
  min-height: 68px;
  padding: 8px 0;
  gap: 22px;
}
.header.scroll .main-header {
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}
.header.scroll .main-header__body {
  min-height: 58px;
  padding: 6px 0;
}
.logo .logo__img {
  max-width: 92px;
}
.header.scroll .main-header__logo.logo .logo__img {
  max-width: 78px;
}
.main-header__menu {
  flex: 1 1 auto;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}
.main-header__menu-item {
  margin: 0;
}
.main-header__menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #172033;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.main-header__menu-link:hover,
.main-header__menu-item.active .main-header__menu-link {
  background: #ffb20c;
  color: #111827;
  box-shadow: 0 8px 20px rgba(255, 178, 12, 0.25);
  transform: translateY(-1px);
}
.main-header__menu-item.active .main-header__menu-link {
  cursor: default;
}
.main-header__menu-link.text-hover::before {
  display: none;
}
.main-header__search {
  flex: 0 0 210px;
  max-width: 210px;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.header-social__item {
  margin: 0;
}
.header-social__link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.header-social__link:hover {
  background: #ffb20c;
  border-color: #ffb20c;
  box-shadow: 0 10px 22px rgba(255, 178, 12, 0.25);
  transform: translateY(-1px);
}
.header-social__link img {
  max-width: 16px;
  max-height: 16px;
  filter: brightness(0) invert(1);
}
.header-social__link svg {
  width: 21px;
  height: 21px;
}
.header-social__link:hover img {
  filter: brightness(0) invert(1);
}
.main-header__search-input {
  height: 40px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: #f6f7f9;
  color: #172033;
  font-family: "Myriad Pro", sans-serif;
  font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.main-header__search-input::placeholder {
  color: #8b95a5;
  font-size: 14px;
}
.main-header__search-input:focus {
  background: #ffffff;
  border-color: rgba(255, 178, 12, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 178, 12, 0.15);
}
.main-header__search-submit {
  right: 14px;
  min-width: 17px;
  height: 17px;
  opacity: 0.8;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.main-header__search-submit:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.main-header__search-icon,
.burger .burger__img {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #f6f7f9;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.main-header__search-icon:hover,
.burger .burger__img:hover {
  background: #ffffff;
  border-color: rgba(255, 178, 12, 0.8);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  opacity: 1;
  transform: translateY(-1px);
}
.burger .burger__img span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
}
.burger .burger__img span::before,
.burger .burger__img span::after {
  height: 2px;
  border-radius: 10px;
}
.burger .burger__img span::before {
  top: -6px;
}
.burger .burger__img span::after {
  top: 6px;
}
.smart-header {
  transition: right 0.35s ease;
}
.smart-header .container {
  padding: 12px;
}
.smart-header .container::before {
  background: rgba(15, 23, 42, 0.72);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: opacity 0.35s ease;
}
.smart-header__content {
  margin-left: auto;
  max-width: 420px;
  padding: 78px 22px 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
  justify-content: flex-start;
  align-items: stretch;
}
.smart-header__exit {
  top: 22px;
  right: 22px;
}
.smart-header__exit-img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #f6f7f9;
}
.smart-header__exit-img:hover {
  border-color: rgba(255, 178, 12, 0.8);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.smart-header__exit-img span,
.smart-header__exit-img span::before {
  height: 2px;
  background: #172033;
  border-radius: 10px;
}
.smart-header__menu {
  width: 100%;
  align-items: stretch;
}
.smart-header__menu-item {
  margin: 0 0 8px;
  align-items: stretch;
}
.smart-header__menu-link {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #172033;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.smart-header__menu-link:hover,
.smart-header__menu-item.active .smart-header__menu-link {
  background: #ffb20c;
  color: #111827;
  transform: translateX(2px);
}

@media (max-width: 1200px) {
  .main-header__body {
    gap: 14px;
  }
  .main-header__menu {
    gap: 8px;
  }
  .main-header__menu-link {
    min-height: 36px;
    padding: 0 9px;
    font-size: 13px;
  }
  .main-header__search {
    flex-basis: 185px;
    max-width: 185px;
  }
  .header-social {
    gap: 6px;
  }
  .header-social__link {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 980px) {
  .logo .logo__img {
    max-width: 82px;
  }
  .main-header__menu-link {
    padding: 0 8px;
    font-size: 12.5px;
  }
  .main-header__search {
    flex-basis: 160px;
    max-width: 160px;
  }
  .header-social {
    display: none;
  }
}
@media (max-width: 850px) {
  .main-header__body {
    min-height: 60px;
    padding: 8px 0;
    justify-content: space-between;
  }
  .header.scroll .main-header__body {
    min-height: 56px;
  }
  .main-header__logo {
    flex: 1 1 auto;
  }
  .logo .logo__img,
  .header.scroll .main-header__logo.logo .logo__img {
    max-width: 72px;
  }
  .main-header__search-icon {
    margin: 0 10px 0 0;
    display: flex;
  }
  .header-social {
    display: flex;
    margin-right: 10px;
  }
  .header-social__link {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 520px) {
  .smart-header .container {
    padding: 0;
  }
  .smart-header__content {
    max-width: none;
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }
  .smart-header__menu-link {
    min-height: 46px;
    font-size: 17px;
  }
  .header-social {
    gap: 6px;
    margin-right: 8px;
  }
  .header-social__link {
    width: 36px;
    height: 36px;
  }
}
.content table td, .content table th{
  border: 1px solid #0072ac!important;
  padding: 1rem!important;
}
.content ul, .content ul li{
  list-style-type: disc;
}

.content ul, .content ol{
  margin-left: 30px;
}
.content li{
  margin-bottom: 5px;
}
.content li:last-child{
  margin-bottom: 0;
}
.content a, .about-home__content-text a{
  color: #FFB20C;
  text-decoration: underline;
}
.content a:hover, .about-home__content-text a:hover{
  text-decoration: none;
}

.result p {
  padding: 12px 16px;
  border-left: 4px solid #FFB20C;
  background: #fff7e6;
  color: #2b2b2b;
  font-family: "Ubuntu Sans", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 10px;
}

/* Footer redesign v1 */
.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 178, 12, 0.16), transparent 30%),
    linear-gradient(180deg, #101624 0%, #0b101b 100%);
  color: #ffffff;
}
.main-footer__body {
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr)) minmax(260px, 1.35fr);
  gap: 28px;
  align-items: start;
}
.main-footer__content {
  margin: 0;
  max-width: none;
  min-width: 0;
}
.main-footer__content:nth-child(4) {
  margin: 0;
  flex: unset;
}
.main-footer__body > div[style] {
  width: auto !important;
  min-width: 0;
}
.sh_links {
  padding-left: 0 !important;
}
.main-footer__content-title {
  margin: 0 0 14px;
  color: #ffb20c;
  font-family: "Myriad Pro", sans-serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.main-footer__content-title.active {
  opacity: 1;
  visibility: hidden;
}
.main-footer__content-list {
  gap: 7px;
}
.main-footer__content-item {
  margin: 0;
}
.main-footer__content-item span {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px !important;
  line-height: 1.25;
  font-weight: 700;
}
.main-footer__content-link {
  display: inline-flex;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Myriad Pro", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.main-footer__content-link:hover,
.main-footer__content-link.active,
.main-footer__content-item.active .main-footer__content-link,
.main-footer__content-item a.active {
  color: #ffb20c;
  opacity: 1;
  transform: translateX(3px);
}
.sm_links .main-footer__content-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px !important;
  line-height: 1.3;
  opacity: 1 !important;
}
.sm_links .main-footer__content-link:hover,
.sm_links .main-footer__content-link.active,
.sm_links .main-footer__content-item.active .main-footer__content-link,
.sm_links .main-footer__content-item a.active {
  color: #ffb20c;
}
.project_list {
  gap: 10px;
}
.main-footer__social {
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
  margin: 22px 0 0;
}
.main-footer__social-item {
  margin: 0;
}
.main-footer__social-link {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.main-footer__social-link:hover {
  background: #ffb20c;
  border-color: #ffb20c;
  box-shadow: 0 12px 24px rgba(255, 178, 12, 0.22);
  opacity: 1;
  transform: translateY(-2px);
}
.main-footer__social-link img {
  max-width: 18px;
  max-height: 18px;
  filter: brightness(0) invert(1);
}
.main-footer__social-link svg {
  width: 24px;
  height: 24px;
}
.policy-footer__body {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}
.policy-footer__logo,
.policy-footer__logo a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}
.policy-footer__logo a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-footer__logo a:hover {
  color: #ffb20c;
  opacity: 1;
}
.fixed-social {
  position: fixed;
  right: 18px;
  top: auto;
  bottom: 50px;
  z-index: 2800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: none;
}
.fixed-social__item {
  margin: 0;
}
.fixed-social__link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  animation: fixedSocialGlow 2.8s ease-in-out infinite;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.fixed-social__link:hover {
  background: #ffb20c;
  border-color: #ffb20c;
  box-shadow: 0 16px 34px rgba(255, 178, 12, 0.28);
  animation-play-state: paused;
  transform: translateX(-3px);
}
.fixed-social__link img {
  max-width: 18px;
  max-height: 18px;
  filter: brightness(0) invert(1);
}
.fixed-social__link svg {
  width: 24px;
  height: 24px;
}
@keyframes fixedSocialGlow {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22), 0 0 0 0 rgba(255, 178, 12, 0.28);
  }
  50% {
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.28), 0 0 0 8px rgba(255, 178, 12, 0);
  }
}

@media (max-width: 1100px) {
  .main-footer__body {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 26px 22px;
  }
  .main-footer__body > div[style] {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
  }
  .main-footer__social {
    margin: 0;
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  .main-footer__body {
    padding: 36px 0 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .main-footer__body > div[style] {
    grid-column: span 2;
    display: block;
  }
  .main-footer__content-title {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .main-footer__content-title.active {
    display: none;
  }
  .main-footer__content-link {
    font-size: 13.5px;
  }
  .main-footer__social {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .fixed-social {
    right: 12px;
    top: auto;
    bottom: 50px;
    gap: 8px;
    transform: none;
  }
  .fixed-social__link {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 520px) {
  .main-footer__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .main-footer__body > div[style] {
    grid-column: auto;
  }
  .main-footer__content-title.active {
    display: none;
  }
  .main-footer__content-list {
    gap: 6px;
  }
  .main-footer__content-link {
    font-size: 14px;
  }
  .policy-footer__body {
    align-items: flex-start;
  }
  .policy-footer__logo {
    text-align: left;
  }
}

/* Hero redesign v1 */
.fullscreen-home {
  margin: 0 0 86px;
  min-height: 720px;
  height: auto;
  padding: 110px 0 58px;
  overflow: hidden;
  background: #0b111c;
  isolation: isolate;
}
.fullscreen-home::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.92) 0%, rgba(8, 13, 22, 0.82) 42%, rgba(8, 13, 22, 0.32) 70%, rgba(8, 13, 22, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.55) 0%, rgba(5, 10, 18, 0.08) 44%, rgba(5, 10, 18, 0.82) 100%);
}
.fullscreen-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255, 178, 12, 0.18), rgba(255, 178, 12, 0));
}
.fullscreen-home .container {
  height: auto;
  min-height: 552px;
  position: relative;
  z-index: 2;
}
.fullscreen-home__body {
  min-height: 552px;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.fullscreen-home__fullscreen {
  inset: 0;
  z-index: -4;
}
.fullscreen-home__fullscreen img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.08);
}
.fullscreen-home__background {
  width: min(52vw, 660px);
  right: max(-90px, -5vw);
  bottom: -34px;
  z-index: 1;
  /*opacity: 0.72;*/
  /*filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.28));*/
  pointer-events: none;
}
.fullscreen-home__product {
  width: min(43vw, 560px);
  right: clamp(16px, 5vw, 82px);
  bottom: -18px;
  z-index: 1;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.36));
  pointer-events: none;
}
.fullscreen-home__product img {
  display: block;
  animation: heroProductFloat 5.5s ease-in-out infinite;
}
.fullscreen-home__content {
  max-width: 660px;
  width: min(100%, 660px);
  position: relative;
  z-index: 2;
  padding-top: 18px;
}
.fullscreen-home__content::before {
  content: "";
  width: 58px;
  height: 4px;
  margin: 0 0 24px;
  display: block;
  border-radius: 999px;
  background: #ffb20c;
  box-shadow: 0 0 0 7px rgba(255, 178, 12, 0.12);
}
.fullscreen-home__content-title {
  margin: 0 0 18px;
  max-width: 650px;
  font-size: 50px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}
.fullscreen-home__content-text {
  margin: 0 0 32px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.52;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}
.fullscreen-home__content-text p {
  margin: 0;
}
.fullscreen-home__content-submit {
  min-height: 52px;
  padding: 15px 30px 14px;
  border: 1px solid #ffb20c;
  border-radius: 999px;
  background: #ffb20c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 34px rgba(255, 178, 12, 0.26);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  color: #111827;
  transform: translateZ(0);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.fullscreen-home__content-submit::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.fullscreen-home__content-submit:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.18);
  color: #111827;
  transform: translateY(-2px);
}

@keyframes heroProductFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1120px) {
  .fullscreen-home {
    min-height: 660px;
    padding-top: 96px;
  }
  .fullscreen-home .container,
  .fullscreen-home__body {
    min-height: 506px;
  }
  .fullscreen-home__product {
    width: min(46vw, 470px);
    right: -10px;
  }
  .fullscreen-home__background {
    width: min(56vw, 560px);
  }
  .fullscreen-home__content {
    max-width: 570px;
  }
  .fullscreen-home__content-title {
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  .fullscreen-home {
    margin-bottom: 58px;
    min-height: auto;
    padding: 110px 0 44px;
  }
  .fullscreen-home::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 18, 0.88) 0%, rgba(5, 10, 18, 0.72) 54%, rgba(5, 10, 18, 0.93) 100%),
      linear-gradient(90deg, rgba(5, 10, 18, 0.9), rgba(5, 10, 18, 0.25));
  }
  .fullscreen-home .container,
  .fullscreen-home__body {
    min-height: 520px;
  }
  .fullscreen-home__body {
    justify-content: flex-start;
  }
  .fullscreen-home__content {
    max-width: 620px;
    padding-top: 12px;
  }
  .fullscreen-home__content-title {
    max-width: 620px;
    font-size: clamp(34px, 7vw, 44px);
    line-height: 1.02;
  }
  .fullscreen-home__content-text {
    max-width: 520px;
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.45;
  }
  .fullscreen-home__product {
    width: min(76vw, 430px);
    right: -38px;
    bottom: -26px;
    opacity: 0.78;
  }
  .fullscreen-home__background {
    width: min(94vw, 540px);
    right: 0;
    bottom: 0;

  }
}

@media (max-width: 560px) {
  .fullscreen-home {
    margin-bottom: 44px;
    padding: 110px 0 34px;
  }
  .fullscreen-home .container,
  .fullscreen-home__body {
    min-height: 492px;
  }
  .fullscreen-home__content {
    align-items: flex-start;
    padding-top: 4px;
  }
  .fullscreen-home__content::before {
    width: 46px;
    height: 3px;
    margin-bottom: 18px;
  }
  .fullscreen-home__content-title {
    margin-bottom: 14px;
    font-size: clamp(29px, 7vw, 36px);
  }
  .fullscreen-home__content-text {
    max-width: 94%;
    margin-bottom: 22px;
    font-size: 15px;
  }
  .fullscreen-home__content-submit {
    width: auto;
    min-height: 48px;
    padding: 14px 22px 13px;
    font-size: 14px;
  }
  .fullscreen-home__product {
    width: min(68vw, 360px);
    right: 0;
    bottom: 0;
    opacity: 1;
  }
}

/* Advantages redesign v1 */
.advantages-home {
  margin: 0 0 92px;
  position: relative;
}
.advantages-home__body {
  align-items: stretch;
}
.advantages-home__title {
  margin: 0 0 28px;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.advantages-home__row {
  width: 100%;
  display: grid;
  grid-template: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.advantages-home__column {
  padding: 0;
  min-width: 0;
}
.advnatages-home__column-body,
.advantages-home__column-body {
  min-height: 156px;
  padding: 26px 24px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
    #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.advnatages-home__column-body:hover,
.advantages-home__column-body:hover {
  border-color: rgba(255, 178, 12, 0.48);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}
.advnatages-home__column-image,
.advantages-home__column-image {
  width: 62px;
  min-width: 62px;
  height: 62px;
  margin: 0 18px 0 0;
  border-radius: 8px;
  background: rgba(255, 178, 12, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-home__column-image-img {
  width: 34px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-home__column-image-img img {
  width: 100%;
  height: auto;
  display: block;
}
.advantages-home__column-content {
  min-width: 0;
}
.advantages-home__column-content-title {
  font-size: 21px;
  line-height: 1.22;
  font-weight: 700;
  color: #111827;
}

@media (max-width: 1100px) {
  .advantages-home {
    margin-bottom: 74px;
  }
  .advantages-home__title {
    font-size: 36px;
  }
  .advantages-home__row {
    gap: 14px;
  }
  .advnatages-home__column-body,
  .advantages-home__column-body {
    min-height: 140px;
    padding: 22px 18px;
  }
  .advnatages-home__column-image,
  .advantages-home__column-image {
    width: 56px;
    min-width: 56px;
    height: 56px;
    margin-right: 14px;
  }
  .advantages-home__column-content-title {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .advantages-home {
    margin-bottom: 54px;
  }
  .advantages-home__title {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: left;
  }
  .advantages-home__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .advantages-home__column {
    padding: 0;
  }
  .advnatages-home__column-body,
  .advantages-home__column-body {
    min-height: 112px;
    padding: 18px;
  }
  .advantages-home__column-content-title {
    font-size: 17px;
    line-height: 1.24;
  }
}

/* About redesign v1 */
.about-home {
  margin: 0 0 92px;
  position: relative;
}
.about-home.top {
  margin: 76px 0 96px;
}
.about-home__body {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-home__image {
  width: 100%;
  min-width: 0;
}
.about-home__image-img {
  padding-bottom: 82%;
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
}
.about-home__image-img::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  pointer-events: none;
}
.about-home__image-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.24));
  pointer-events: none;
}
.about-home__image-img img {
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.about-home__image:hover .about-home__image-img img {
  transform: scale(1.06);
}
.about-home__content {
  width: 100%;
  min-width: 0;
  position: relative;
  justify-content: flex-start;
}
.about-home__content-title {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
  color: #111827;
}
.about-home__content-text {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.62;
  color: #374151;
}
.about-home__content-text p {
  margin: 0 0 14px;
}
.about-home__content-text p:last-child {
  margin-bottom: 0;
}
.about-home__content-text ul {
  margin: 18px 0;
  display: grid;
  gap: 10px;
}
.about-home__content-text ul li {
  margin: 0;
  padding-left: 26px;
}
.about-home__content-text ul li::before {
  top: 10px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ffb20c;
  transform: rotate(45deg);
}
.about-home__content-text strong,
.about-home__content-text b {
  color: #111827;
}

@media (max-width: 980px) {
  .about-home,
  .about-home.top {
    margin-bottom: 74px;
  }
  .about-home__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-home__image {
    max-width: 620px;
  }
  .about-home__image-img {
    padding-bottom: 62%;
  }
  .about-home__content-title {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .about-home,
  .about-home.top {
    margin: 42px 0 54px;
  }
  .about-home__body {
    gap: 22px;
  }
  .about-home__image-img {
    padding-bottom: 72%;
  }
  .about-home__image-img::before {
    inset: 10px;
  }
  .about-home__content-title {
    margin-bottom: 14px;
    font-size: 28px;
  }
  .about-home__content-text {
    font-size: 15.5px;
    line-height: 1.55;
  }
}

/* Catalog categories redesign v1 */
.offers-home {
  margin: 0 0 92px;
}
.offers-home__body {
  align-items: stretch;
}
.offers-home__title {
  margin: 0 0 28px;
  width: 100%;
  max-width: 820px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.offers-home__row {
  width: 100%;
  display: grid;
  grid-template: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.offers-home__column {
  padding: 0;
  min-width: 0;
}
.offers-home__column-body {
  min-height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
  position: relative;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.offers-home__column-body::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: #ffb20c;
  opacity: 0;
  transform: translateX(-6px) rotate(45deg);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.offers-home__column-body:hover {
  border-color: rgba(255, 178, 12, 0.5);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}
.offers-home__column-body:hover::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}
.offers-home__column-body:hover .offers-home__column-img img {
  transform: translate(-50%, -50%) scale(0.92);
}
.offers-home__column-img {
  margin: 0;
  padding-bottom: 78%;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98)),
    #f5f5f5;
}
.offers-home__column-img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 6px;
  pointer-events: none;
}
.offers-home__column-img img {
  max-width: 78%;
  max-height: 76%;
  transform: translate(-50%, -50%) scale(1);
  filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.14));
}
.offers-home__column-content {
  min-height: 96px;
  padding: 20px 44px 22px 20px;
  justify-content: center;
}
.offers-home__column-contnet-title {
  font-size: 19px;
  line-height: 1.22;
  font-weight: 800;
  color: #111827;
  transition: color 0.22s ease;
}
.offers-home__column-body:hover .offers-home__column-contnet-title {
  color: #0f172a;
}

@media (max-width: 1120px) {
  .offers-home {
    margin-bottom: 74px;
  }
  .offers-home__title {
    font-size: 36px;
  }
  .offers-home__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .offers-home__column-content {
    min-height: 88px;
    padding: 18px 38px 20px 18px;
  }
  .offers-home__column-contnet-title {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .offers-home {
    margin-bottom: 54px;
  }
  .offers-home__title {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: left;
  }
  .offers-home__row {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .offers-home__column {
    padding: 0;
  }
  .offers-home__column-img {
    padding-bottom: 76%;
  }
  .offers-home__column-content {
    min-height: unset!important;
    padding: 10px;
  }
  .offers-home__column-contnet-title {
    text-align: left;
    font-size: 13.5px;
    line-height: 1.2;
  }
  .offers-home__column-body::after {
   display: none;
  }
}

@media (max-width: 460px) {
  .offers-home__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offers-home__column-img {
    padding-bottom: 76%;
  }
  .offers-home__column-content {
    min-height: 68px;
  }
}

/* News home redesign v1 */
.news-home {
  margin: 0 0 92px;
}
.news-home__body {
  align-items: stretch;
}
.news-home__title {
  margin: 0 0 28px;
  width: 100%;
  max-width: 760px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}
.news-home__row {
  width: 100%;
}
.news-home__column {
  padding: 0 9px;
  width: 100%;
  color: inherit;
  text-decoration: none;
  display: block;
}
.news-home__column-body {
  padding: 0;
  min-height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.news-home__column:hover .news-home__column-body {
  border-color: rgba(255, 178, 12, 0.5);
  transform: translateY(-4px);
}
.news-home__column-img {
  margin: 0;
  aspect-ratio: 16 / 10;
  padding-bottom: 0;
  border-radius: 0;
  background: #f3f4f6;
}
.news-home__column-img img {
  transition: transform 0.45s ease, filter 0.45s ease;
}
.news-home__column:hover .news-home__column-img img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.04);
}
.news-home__column-content {
  padding: 22px;
  min-height: 230px;
  flex: 1 1 auto;
  justify-content: space-between;
}
.news-home__column-content-title {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
  color: #111827;
}
.news-home__column-content-text {
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 400;
  color: #4b5563;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-home__column-content-link {
  width: auto;
  min-height: 42px;
  padding: 12px 18px 11px;
  border: 1px solid #ffb20c;
  border-radius: 999px;
  background: rgba(255, 178, 12, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  color: #111827;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.news-home__column-content-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.news-home__column:hover .news-home__column-content-link {
  background: #ffb20c;
  color: #111827;
  transform: translateX(3px);
}
.news-home__row.static-news-slider .slick-dots {
  padding-top: 24px;
}
.news-home__row.static-news-slider .slick-dots button {
  background: rgba(17, 24, 39, 0.22);
}
.news-home__row.static-news-slider .slick-dots li.slick-active button {
  background: #ffb20c;
}

@media (max-width: 1000px) {
  .news-home {
    margin-bottom: 74px;
  }
  .news-home__title {
    font-size: 36px;
  }
  .news-home__column {
    padding: 0 7px;
  }
  .news-home__column-content {
    min-height: 210px;
    padding: 20px;
  }
}

@media (max-width: 770px) {
  .news-home__viewport{
    margin: 0 -5px;
  }
  .news-home {
    margin-bottom: 54px;
  }
  .news-home__title {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: left;
  }
  .news-home__column {
    padding: 0 6px;
  }
  .news-home__column-content {
    min-height: 196px;
    padding: 18px;
  }
  .news-home__column-content-title {
    font-size: 18px;
  }
  .news-home__column-content-text {
    font-size: 14.5px;
  }
}

/* Catalog products redesign v1 */
.content-catalog {
  margin: 64px 0 92px;
}
.content-catalog__body {
  align-items: stretch;
}
.content-catalog__title {
  margin: 0 0 28px;
  max-width: 860px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}
.content-catalog__row {
  align-items: flex-start;
}
.content-catalog__content-product {
  width: 100%;
  gap: 18px;
}
.content-catalog__content-product-column {
  padding: 0;
  min-width: 0;
}
.content-catalog__content-product-column-body {
  padding: 0;
  min-height: 100%;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.content-catalog__content-product-column-body:hover {
  border-color: rgba(255, 178, 12, 0.52);
  transform: translateY(-3px);
}
.content-catalog__content-product-column-body:hover .content-catalog__content-product-column-img img {
  transform: scale(1.04);
}
.content-catalog__content-product-column-img {
  margin: 0;
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
  padding-bottom: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98)),
    #f6f7f8 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-catalog__content-product-column-img img {
  position: static;
  max-width: 80%;
  max-height: 76%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.12));
  transition: transform 0.32s ease, filter 0.32s ease;
}
.content-catalog__product-no-img {
  height: auto !important;
  min-height: 0;
  padding: 22px;
  color: #9ca3af;
  font-size: 13px;
}
.content-catalog__content-product-column-title {
  flex: 1 1 auto;
  margin: 0;
  padding: 18px 18px 10px;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  color: #111827;
}
.content-catalog__content-product-column-price {
  margin: 0;
  padding: 0 18px 14px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  color: #ff9f00;
}
.content-catalog__content-product-column-link {
  width: auto;
  min-height: 42px;
  margin: 0 18px 18px;
  padding: 12px 18px 11px;
  border: 1px solid #ffb20c;
  border-radius: 999px;
  background: #ffb20c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #111827;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.content-catalog__content-product-column-link:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1000px) {
  .content-catalog {
    margin-bottom: 74px;
  }
  .content-catalog__title {
    font-size: 36px;
  }
  .content-catalog__content-product {
    gap: 14px;
  }
  .content-catalog__content-product-column-title {
    padding: 16px 16px 8px;
    font-size: 15px;
  }
  .content-catalog__content-product-column-price {
    padding: 0 16px 12px;
  }
  .content-catalog__content-product-column-link {
    margin: 0 16px 16px;
    min-height: 40px;
    font-size: 13.5px;
  }
}

@media (max-width: 770px) {
  .content-catalog {
    margin: 46px 0 54px;
  }
  .content-catalog__title {
    margin-bottom: 20px;
    font-size: 31px;
    text-align: left;
  }
  .content-catalog__content-product {
    width: 100%;
    grid-template: repeat(1, 1fr)/repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .content-catalog__content-product-column {
    padding: 0;
  }
  .content-catalog__content-product-column-img {
    aspect-ratio: 1 / 1;
  }
  .content-catalog__content-product-column-img img {
    max-width: 74%;
    max-height: 72%;
  }
  .content-catalog__content-product-column-title {
    padding: 12px 10px 8px;
    font-size: 13px;
    line-height: 1.2;
  }
  .content-catalog__content-product-column-price {
    padding: 0 10px 10px;
    font-size: 12.5px;
  }
  .content-catalog__content-product-column-link {
    min-height: 36px;
    margin: 0 10px 10px;
    padding: 10px 12px 9px;
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .content-catalog__content-product {
    gap: 8px;
  }
  .content-catalog__content-product-column-title {
    font-size: 12.5px;
  }
  .content-catalog__content-product-column-link {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Catalog menu and search redesign v1 */
.content-catalog__info {
  margin-right: 22px;
  max-width: 300px;
  min-width: 300px;
}
.content-catalog__info-body {
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
}
.content-catalog__info-title {
  margin: 0 0 14px;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  cursor: default;
  text-align: left;
}
.content-catalog__info-title::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  display: none;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.content-catalog__info-list {
  margin: 0;
  gap: 4px;
}
.content-catalog__info-list-item {
  margin: 0;
}
.content-catalog__info-list-link {
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #111827;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.content-catalog__info-list-link:hover {
  background: rgba(255, 178, 12, 0.1);
  transform: translateX(2px);
}
.content-catalog__info-list-icon {
  margin-right: 10px;
  min-width: 22px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 178, 12, 0.68);
  border-radius: 999px;
  background: transparent;
}
.content-catalog__info-list-icon svg {
  width: 11px;
  height: auto;
  opacity: 0;
}
.content-catalog__info-list-text {
  min-width: 0;
  font-size: 14.5px;
  line-height: 1.28;
  font-weight: 600;
  color: #374151;
}
.content-catalog__info-list-item.active .content-catalog__info-list-link {
  background: #ffb20c;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon,
.content-catalog__info-list-item:hover .content-catalog__info-list-icon,
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon {
  border-color: #111827;
  background: #111827;
}
.content-catalog__info-list-item.active .content-catalog__info-list-icon svg,
.content-catalog__info-list-item:hover .content-catalog__info-list-icon svg,
.content-catalog__info-list:hover .content-catalog__info-list-item.active:hover .content-catalog__info-list-icon svg {
  opacity: 1;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon {
  background: #111827;
}
.content-catalog__info-list:hover .content-catalog__info-list-item.active .content-catalog__info-list-icon svg {
  opacity: 1;
}
.content-catalog__info-list-item.active .content-catalog__info-list-text {
  color: #111827;
}

.content-search__body {
  width: 100%;
  margin: 0 0 22px;
}
.content-search__form {
  max-width: 560px;
  margin: 0;
  padding: 6px;
  gap: 6px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  align-items: center;
}
.content-search__form-input {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  background: #f6f7f8;
  font-size: 14px;
  line-height: 1.2;
  color: #111827;
}
.content-search__form-input::placeholder {
  color: #8b95a1;
}
.content-search__form-submit {
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid #ffb20c;
  border-radius: 6px;
  background: #ffb20c;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: #111827;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.content-search__form-submit:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .content-catalog__info {
    max-width: 270px;
    min-width: 270px;
    margin-right: 16px;
  }
  .content-catalog__info-body {
    padding: 14px;
  }
  .content-catalog__info-list-text {
    font-size: 13.5px;
  }
}

@media (max-width: 660px) {
  .content-catalog__info {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 18px;
  }
  .content-catalog__info-title {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 27px;
    border-bottom: 0;
    cursor: pointer;
  }
  .content-catalog__info-title::after {
    display: block;
  }
  .content-catalog__info-body.is-open .content-catalog__info-title {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }
  .content-catalog__info-body.is-open .content-catalog__info-title::after {
    transform: rotate(225deg);
  }
  .content-catalog__info-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    padding-right: 0;
  }
  .content-catalog__info-body.is-open .content-catalog__info-list {
    max-height: unset;
    overflow: auto;
    opacity: 1;
    padding-right: 2px;
  }
  .content-search__form {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .content-search__form {
    flex-direction: row;
  }
  .content-search__form-submit {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Product detail redesign v1 */
.wrapper {
  overflow: visible;
  overflow-x: clip;
}
.content-product {
  margin: 64px 0 92px;
}
.content-product__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: flex-start;
}
.content-product__content {
  padding: 0;
  border: 0;
  border-radius: 0;
  align-items: stretch;
}
.content-product__content-title {
  margin: 0 0 28px;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  color: #111827;
}
.content-product__content-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 22px;
}
.content-product__content-image {
  width: 100%;
  display: block;
}
.content-product__content-main {
  width: 100%;
  height: 100%;
}
.content-product__content-main-column,
.content-product__content-main-column.active {
  height: 100%;
}
.content-product__content-main-column-body {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98)),
    #f6f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.content-product__content-main-column-img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-product__content-main-column-img img {
  position: static;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(15, 23, 42, 0.14));
}
.content-product__no-img {
  min-height: 390px !important;
  background: transparent !important;
  color: #9ca3af !important;
  font-size: 14px !important;
}
.content-product__content-info {
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
}
.content-product__content-info--description {
  padding: 24px;
}
.content-product__content-info-title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}
.content-product__content-info-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 400;
  color: #4b5563;
}
.content-product__content-info-text h1,
.content-product__content-info-text h2,
.content-product__content-info-text h3,
.content-product__content-info-text h4,
.content-product__content-info-text h5,
.content-product__content-info-text h6 {
  margin: 0 0 10px;
  color: #111827;
  font-weight: 800;
}
.content-product__content-info-text p {
  margin: 0 0 12px;
}
.content-product__content-info-text p:last-child {
  margin-bottom: 0;
}
.content-product__content-info-text ul,
.content-product__content-info-text ol {
  margin: 0 0 12px;
  padding-left: 0;
}
.content-product__content-info-text ul li,
.content-product__content-info-text ol li {
  margin: 0 0 8px;
  padding-left: 22px;
  position: relative;
}
.content-product__content-info-text ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #ffb20c;
  transform: rotate(45deg);
}
.content-product__info {
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
  height: max-content;
  align-self: flex-start;
  position: sticky;
  top: 92px;
}
.content-product__info-body {
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
}
.content-product__info-list {
  margin: 0 0 18px;
  gap: 8px;
}
.content-product__info-list-item {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
  color: #6b7280;
}
.content-product__info-list-item:last-child {
  padding-bottom: 0;
}
.content-product__info-list-item strong {
  color: #111827;
  font-weight: 800;
  text-align: right;
}
.content-product__info-price {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 900;
  color: #ff9f00;
}
.content-product__info-submit {
  min-height: 46px;
  padding: 14px 20px 13px;
  border: 1px solid #ffb20c;
  border-radius: 999px;
  background: #ffb20c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  color: #111827;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.content-product__info-submit:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1050px) {
  .content-product__body {
    grid-template-columns: 1fr;
  }
  .content-product__info {
    position: static;
    align-self: auto;
    top: auto;
  }
  .content-product__info-body {
    position: static;
    top: auto;
  }
  .content-product__content-title {
    font-size: 26px;
  }
}
.content-product__content-info-text ul li{
  list-style-type: none;
}
.content-product__content-info-text ul li::marker{
  display: none;
}
.modal__title:before{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 760px) {
  .content-contact__title:before, .content-news__title:before{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .content-product {
    margin: 46px 0 54px;
  }
  .content-product__content-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .content-product__content-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .content-product__content-main-column-body,
  .content-product__content-main-column-img,
  .content-product__no-img {
    min-height: 300px !important;
  }
  .content-product__content-main-column-img img {
    max-height: 250px;
  }
  .content-product__content-info,
  .content-product__content-info--description,
  .content-product__info-body {
    padding: 18px;
  }
  .content-product__content-info-title {
    font-size: 18px;
  }
  .content-product__content-info-text {
    font-size: 14.5px;
  }
}
