@charset "utf-8";
/* @import url("colors.css"); */

/* reset css*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}

@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Bold.woff2') format('woff2'),
      url('../fonts/Onest-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: icomoon;
  src: url(../fonts/icomoon.ttf?wi57p5) format('truetype'),url(../fonts/icomoon.woff?wi57p5) format('woff');
  font-weight: 400;
  font-style: normal;
}

a {
  color: var(--link-color);
}
a:hover {
  text-decoration: none;
}
.h101 ,
h1 {
  font-size: 50px;
  line-height: 63px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-family: "Onest", sans-serif;
}
.h102 ,
h2 {
  font-size: 40px;
  line-height: 51px;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Onest", sans-serif;
}
.h103 ,
h3 {
  font-size: 26px;
  line-height: 33px;
  font-weight: 700;
  margin-bottom: 37px;
  font-family: "Onest", sans-serif;
}
.body_overflow {
  overflow: hidden;
}
.main-button {
  font: 600 16px/50px "Inter", sans-serif;
  color: #fff;
  text-decoration: none;
  display: block;
  background: var(--main-button-color);
  transition: border-radius 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 25px;
  transition: opacity 0.2s ease-out;
}
.main-button:hover {
  opacity: 0.8;
}
.gray-bg {
  background: #F2F2F2;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

body {
  font: 16px/25.6px "Inter", sans-serif;
  color: var(--main-text-color);
  background: #fff;
  min-width: 320px;
}
.wrapper {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  box-sizing: border-box;
}
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 0.536rem + 1.116vw, 1.875rem);
}
.container-styles2 {
  padding-bottom: 110px;
  padding-top: 110px;
}
/* header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid #ECECEC;
}
.header__container {
  display: flex;
  align-items: center;
  min-height: 90px;
  gap: clamp(1.875rem, -5.343rem + 11.278vw, 3.75rem);
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
}
.header__logo {
  width: clamp(12.5rem, 3.357rem + 14.286vw, 14.875rem);
  display: inline-block;
  flex-shrink: 0;
}
.header__logo-image {
  display: block;
  width: 100%;
}
.header__holder {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.938rem, -2.672rem + 5.639vw, 1.875rem);
  font-size: clamp(0.875rem, 0.394rem + 0.752vw, 1rem);
}
.header-nav__item {
  color: var(--main-text-color);
  text-decoration: none;
}
.header-nav__item.active ,
.header-nav__item:hover {
  color: var(--link-color);
}
.header-nav__list > li {
  position: relative;
  padding: 32px 0;
}
.header-nav__drop {
  width: 181px;
  background: #fff;
  position: absolute;
  left: 0;
  top: -1000px;
  border-top: 2px solid var(--link-color);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);
}
.header-nav__list li:hover .header-nav__drop {
  top: 89px;
  opacity: 1;
}
.header-nav__drop:after {
  width: 2px;
  height: 14px;
  background: var(--link-color);
  position: absolute;
  top: -14px;
  left: 0;
  content: "";
}
.header-nav__drop a {
  display: block;
  padding: 0 20px;
  line-height: 36px;
  color: var(--main-text-color);
  text-decoration: none;
}
.header-nav__drop a:hover ,
.header-nav__drop a.active {
  background: var(--link-color);
  color: #fff;
}
.header__lang-list {
  width: clamp(4.063rem, 0.935rem + 4.887vw, 4.875rem);
  border: solid #ECECEC;
  border-width: 0 1px;
  min-height: 90px;
  margin-left: clamp(1.25rem, -1.156rem + 3.759vw, 1.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.current-lang {
  color: #585A59;
  font-weight: 700;
  padding-right: 15px;
  background: url(../img/icons/arrow01-icon.svg) no-repeat 100% 50%;
}
.header__lang-drop {
  display: flex;
  background: #fff;
  position: absolute;
  top: -1000px;
  left: 0;
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  border-top: 1px solid #ECECEC;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.header__lang-item {
  font-size: 16px;
  line-height: 36px;
  display: block;
  text-align: center;
  color: var(--main-text-color);
  text-decoration: none;
}
.header__lang-item:hover ,
.header__lang-item.active {
  color: #fff;
  background: var(--link-color);
}
.header__lang-list:hover .header__lang-drop {
  opacity: 1;
  top: 100%;
}
.header__buttons {
  display: flex;
  gap: 5px;
  margin-left: 10px;
  align-items: center;
}
.header__buttons-item {
  position: relative;
  width: 42px;
}
.header__buttons-item:after {
  width: 42px;
  height: 42px;
  content: "";
  border: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.header__buttons-link {
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  text-align: center;
  margin: 2px 0 0 2px;
  border-radius: 50%;
  position: relative;
  z-index: 4;
}
.header__buttons-link:after {
  color: var(--link-color);
  font-size: 22px;
  font-family: icomoon;
  width: 22px;
  height: 22px;
}
.header__buttons-phone .header__buttons-link:after {
  content: "\e907";
}
.header__buttons-search .header__buttons-link:after {
  content: "\e906";
}
.header__buttons-social .header__buttons-link:after {
  content: "\e905";
}
.header__buttons-login .header__buttons-link:after {
  content: "\e904";
}
.header__buttons-logout .header__buttons-link:after {
  content: "\e908";
}
.header__buttons-cart .header__buttons-link:after {
  content: "\e909";
}
.header__buttons-item .cart-quantity {
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  line-height: 22px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: -3px;
  top: -3px;
  background: #585A59;
  z-index: 21;
  color: #fff;
}
.header__button-holder {
  display: flex;
  align-items: center;
}
.header__buttons-item:hover:after {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.14);
  border-color: #fff;
}
.header__buttons-item:hover .header__buttons-link {
  background: var(--link-color);
  z-index: 6;
}
.header__buttons-item:hover .header__buttons-link:after {
  color: #fff;
}
.contacts-phone-drop ,
.social-links-drop {
  width: 72px;
  position: absolute;
  top: -1000px;
  left: -13px;
  background: #fff;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);
  opacity: 0;
  transition: opacity 0.2s ease-out;
  display: flex;
}
.social-links-drop a:after {
  color: var(--main-text-color);
}
.header__buttons-item:hover .contacts-phone-drop ,
.header__buttons-item:hover .social-links-drop {
  opacity: 1;
  top: 50%;
  z-index: 5;
}
.contacts-phone-drop {
  width: 226px;
  left: -83px;
  gap: 0;
}
.contacts-phone-drop strong {
  font-weight: 700;
  margin-bottom: 10px;
}
.contacts-phone-drop span a {
  display: flex;
  color: var(--main-text-color);
  text-decoration: none;
}
.contacts-phone-drop span a:hover {
  color: var(--link-color);
}
.contacts-phone-drop span:not(:last-child) {
  margin-bottom: 15px;
}
.header__search-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 22;
  height: 90px;
  display: none;
}
body.search-show .header__search-form {
  display: block;
}
body.search-open .header__buttons .header__search-form {
  display: none;
}
.header__search-input {
  width: 100%;
  height: 49px;
  background: none;
  border: none;
  color: var(--main-text-color);
  padding: 0 50px 0 0;
  box-sizing: border-box;
  font-size: 16px;
  border-bottom: 1px solid #ECECEC;
  margin-top: 17px;
}
.header__search-input::placeholder {
  color: #9A9A9A;
  font-size: 16px;
}
.header__search-input:focus {
  outline: none;
}
.open-search-btn {
  width: 14px;
  height: 14px;
  border: none;
  background: url(../img/icons/close-icon01.svg) no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  cursor: pointer;
}
.search__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  display: none;
}
.search__dropdown ul {
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 20px;
}
.search__dropdown ul a {
  text-decoration: none;
}
.search__dropdown ul a:hover {
  text-decoration: underline;
}
.mobile-menu-button {
  width: 28px;
  height: 20px;
  border: none;
  cursor: pointer;
  background: url(../img/icons/menu-icon.svg) no-repeat;
  display: none;
}
.mobile-menu-drop ,
.contacts-phone-drop .phone-icon {
  display: none;
}
.mobile-menu-button:focus {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .search__dropdown {
    padding: 5px;
  }
  .search__dropdown ul {
    padding: 10px;
  }
  body {
    font: 14px/21px "Inter", sans-serif;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 17px;
  }
  .header__logo {
    width: 142px;
  }
  .header__container {
    min-height: 69px;
    padding: 0 20px;
    gap: 0;
  }
  .header-nav {
    display: none;
  }
  .wrapper {
    padding-top: 70px;
  }
  .header__buttons-cart ,
  .header__buttons-social ,
  .header__buttons-login ,
  .header__lang-list {
    display: none;
  }
  .header__buttons-phone {
    width: 0;
    height: 0;
    position: absolute;
    left: -9999px;
  }
  .header__holder {
    position: static;
    width: auto;
  }
  .header__search-form {
    height: 69px;
  }
  .header__search-input {
    border-bottom: none;
    padding-left: 20px;
    margin-top: 12px;
  }
  .open-search-btn {
    right: 23px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: url(../img/icons/close-icon02.svg) no-repeat;
  }
  .mobile-menu-button {
    display: block;
    margin-left: 10px;
  }
  .header__buttons-item {
    width: 40px;
  }
  .mobile-menu-drop ,
  .contacts-phone-drop {
    background: #4E5152;
    box-shadow: none;
    position: fixed;
    top: 70px !important;
    left: 0;
    width: 100%;
    height: calc(100vh - 154px);
    color: #fff;
    padding-top: 65px;
    padding-bottom: 20px;
    display: none !important;
  }
  .contacts-phone-drop strong {
    font-size: 16px;
    line-height: 25.6px;
    margin-bottom: 15px;
  }
  .contacts-phone-drop span {
    font-size: 26px;
    line-height: 54.6px;
  }
  .contacts-phone-drop span a {
    color: #fff;
  }
  .contacts-phone-drop .phone-icon {
    display: block;
    width: 94px;
    height: 94px;
    line-height: 94px;
    margin: 0 auto 50px;
  }
  .contacts-phone-drop .phone-icon:after {
    content: "\e907";
    font-family: icomoon;
    font-size: 94px;
    color: var(--link-color);
  }
  .contacts-phone-drop span:not(:last-child) {
    margin-bottom: 35px;
  }
  .header__buttons-item:hover .header__buttons-link {
    box-shadow: none;
    background: none;
  }
  .header__buttons-item:hover .header__buttons-link:after {
    color: var(--link-color);
  }
  .open-contact-modal .contacts-phone-drop {
    display: block !important;
    text-align: center;
    opacity: 1;
  }
  .open-contact-modal .contact-button:after {
    color: var(--main-text-color) !important;
  }
  .contacts-phone-drop span a {
    justify-content: center;
  }
  .mobile-menu-drop {
    height: calc(100vh - 119px);
    padding-top: 35px;
    box-sizing: border-box;
    overflow: auto;
  }
  .open-menu-modal .mobile-menu-drop {
    display: block !important;
  }
  .open-menu-modal .mobile-menu-button {
    background: url(../img/icons/close-icon02.svg) no-repeat 5px 0;
  }
  .mobile-nav__list {
    margin-bottom: 27px;
  }
  .mobile-nav__item {
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    display: block;
    text-decoration: none;
  }
  .mobile-nav__list .active > a ,
  .mobile-nav__item.active {
    background: var(--link-color);
  }
  .mobile-nav__list .header-nav__drop {
    display: block;
    position: static;
    border: none;
    width: 100%;
    opacity: 1;
    box-shadow: none;
    background: #393939;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease-out;
  }
  .mobile-nav__list .header-nav__drop li:first-child {
    margin-top: 10px;
  }
  .mobile-nav__list .header-nav__drop li:last-child {
    margin-bottom: 10px;
  }
  .mobile-nav__list .active .header-nav__drop {
    max-height: 600px;
  }
  .mobile-nav__list .header-nav__drop:after {
    display: none;
  }
  .mobile-nav__list .header-nav__drop a {
    color: var(--white-color);
    font-size: 16px;
  }
  .mobile-nav__list .header-nav__drop a:hover ,
  .mobile-nav__list .header-nav__drop a.active {
    background: none;
    color: var(--link-color);
  }
  .mobile-lang-list {
    border: solid rgba(255, 255, 255, 0.4);
    border-width: 1px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    height: 52px;
    align-items: center;
  }
  .mobile-lang-list a {
    text-decoration: none;
    color: #fff;
  }
  .mobile-lang-list a.active {
    color: var(--link-color);
  }
  .mobile-nav__logout span ,
  .mobile-nav__profile span {
    padding-left: 35px;
    position: relative;
  }
  .mobile-nav__logout span:after ,
  .mobile-nav__profile span:after {
    content: "\e904";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--link-color);
    font-size: 20px;
    line-height: 22px;
    font-family: icomoon;
  }
  .mobile-nav__logout span:after {
    content: "\e908";
  }
}
@media only screen 
  and (max-width: 1024px) 
  and (orientation : landscape) {
    .contacts-phone-drop .phone-icon {
      display: none;
    }
    .contacts-phone-drop {
      padding-top: 20px;
      height: calc(100vh - 89px);
    }
    .mobile-nav__list {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }
    .mobile-nav__list li {
      width: 50%;
    }
    .mobile-nav__item {
      line-height: 40px;
    }
    .mobile-lang-list {
      margin-bottom: 20px;
    }
}

.home-slider .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  align-items: baseline;
  max-width: 1290px;
}
.home-slider .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  font-size: 18px;
  color: #fff;
  opacity: 1;
  margin: 0 15px 0 0 !important;
}
.home-slider .swiper-pagination-bullet-active {
  font-size: 50px;
  font-weight: 700;
  color: var(--link-color);
}
.home-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.home-slider__box {
  height: calc(100vh - 90px);
}
.home-slider__box img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.home-slider__box:after {
  background: rgba(88, 90, 89, 0.1);
  backdrop-filter: blur(20px);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 37.7%;
  height: 100%;
}
.home-slider__box .container {
  z-index: 31;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.home-slider__text {
  width: 300px;
  color: #fff;
}
.home-slider__text p {
  margin-bottom: 45px;
}
.mobile-slider-image {
  display: none;
}
.home-slider__text h2 {
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .home-slider__text {
    width: auto;
    padding: 20px 30px 30px 30px;
    background: rgba(88, 90, 89, 0.1);
    backdrop-filter: blur(20px);
  }
  .home-slider__text h1 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 6px;
  }
  .home-slider__text h2 {
    margin-bottom: 10px;
  }
  .home-slider__text p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 15px;
  }
  .home-slider__box:after {
    display: none;
  }
  .home-slider__box {
    height: calc(100vh - 119px);
  }
  .home-slider__box .container {
    padding: 0;
    align-items: end;
  }
  .home-slider .swiper-pagination {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    bottom: 30px;
    justify-content: right;
  }
  .mobile-slider-image {
    display: block;
  }
  .desktop-slider-image {
    display: none;
  }
  .home-slider .swiper-pagination-bullet {
    font-size: 14px;
  }
  .home-slider .swiper-pagination-bullet-active {
    font-size: 30px;
  }
}

/* about-company */
.about-company .container {
  display: flex;
  gap: clamp(2.5rem, -1.786rem + 6.696vw, 6.25rem);
  align-items: center;
}
.about-company__image {
  max-width: 725px;
  margin-left: -320px;
  flex-shrink: 0;
}
.about-company2 .about-company__image {
  max-width: 865px;
}
.about-company__image img {
  display: block;
  width: 100%;
}
.about-company__text {
  padding: 30px 0;
}
.about-company__text h2 {
  text-align: left;
  margin-bottom: 42px;
}
.about-company__text p {
  margin-bottom: 30px;
}
.about-company__text .main-button {
  margin-top: 55px;
}
.offer-holder2 ,
.offer-holder {
  overflow: hidden;
}
.post-holder {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.sertificate-holder .post-holder ,
.offer-holder2 .post-holder ,
.offer-holder .post-holder {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 70px;
}
.sertificate-holder.swiper-initialized .post-holder ,
.offer-holder2.swiper-initialized .post-holder ,
.offer-holder.swiper-initialized .post-holder {
  gap: 0;
}
.offer-holder2 .post-holder {
  margin-bottom: 0;
}
.post-box {
  width: calc(25% - 23px);
}
.post-box__image {
  margin-bottom: 25px;
}
.post-box__image img {
  display: block;
  width: 100%;
}
.post-box__title {
  font-size: 16px;
  font-weight: 700;
}
.post-box__title a {
  text-decoration: none;
  color: var(--main-text-color);
}
.sertificate-holder .post-box__title {
  text-align: center;
  padding: 0 20px;
}
.post-box__title a:hover {
  color: var(--link-color);
}
.tabset-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.tabset {
  border-bottom: 1px solid #ECECEC;
  display: flex;
  gap: 40px;
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  width: 100%;
}
.tabset a {
  text-decoration: none;
  color: var(--main-text-color);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: flex;
  padding-bottom: 16px;
}
.tabset a:hover ,
.tabset a.active {
  color: var(--link-color);
  border-bottom: 2px solid var(--link-color);
}
.tabset-row h2 {
  margin-bottom: 0;
}
/* partners-list */
.partners-list {
  display: flex;
  margin-bottom: 70px;
}
.partners-list__item a {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ECECEC;
  box-sizing: border-box;
}
.swiper-scrollbar-drag {
  height: 3px;
  background: var(--link-color);
  margin-top: -1px;
}
.swiper-scrollbar {
  width: 192px;
  height: 1px !important;
}
.swiper-holder {
  overflow: hidden;
  position: relative;
}
/* numbers-holder*/
.numbers-holder {
  position: relative;
}
.numbers-holder .container {
  min-height: 323px;
  display: flex;
  flex-wrap: wrap;
  padding: 118px 0;
}
.numbers-holder__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.numbers-holder .column:last-child {
  border: none;
}
.numbers-holder .column .box:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px 10px 0;
}
.numbers-holder .box {
  font-size: clamp(1rem, 0.038rem + 1.504vw, 1.25rem);
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0 10px 50px;
  width: calc(33.3% - 23px);
  position: relative;
  z-index: 2;
  border: solid rgba(255, 255, 255, 0.2);
}
.numbers-holder .box1 {
  border-width: 0 1px 1px 0;
}
.numbers-holder .box2 {
  border-width: 0 1px 1px 0;
}
.numbers-holder .box3 {
  border-width: 0 0 1px 0;
}
.numbers-holder .box4 {
  border-width: 0 1px 0 0;
  padding: 65px 10px 0 10px;
}
.numbers-holder .box5 {
  border-width: 0 1px 0 0;
  padding: 65px 10px 0 10px;
}
.numbers-holder .box6 {
  border-width: 0;
  padding: 65px 10px 0 10px;
}
.numbers-holder .box strong {
  font-size: clamp(3.125rem, 0.719rem + 3.759vw, 3.75rem);
  line-height: 76.5px;
  display: block;
  margin: -10px 0 5px;
}
.mobile-head {
  display: none;
}
.benefits-holder {
  overflow: hidden;
  position: relative;
}
.benefits-area {
  display: flex;
  justify-content: right;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.benefits-image {
  height: 519px;
  position: relative;
}
.benefits-image img {
  display: block;
  max-width: 100%;
  height: 100%;
}
.benefits-bg {
  width: 37.7%;
  height: 519px;
  background: url(../img/bg02.png) no-repeat 100% 0;
  position: absolute;
  top: 0;
  left:  0;
  z-index: 2;
}
.benefits-holder .container {
  min-height: 519px;
  margin-top: -519px;
  position: relative;
  z-index: 31;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.benefits-holder h2 {
  color: var(--white-color);
  font-size: 40px;
  line-height: 52px;
  width: 300px;
  text-align: left;
  margin: 0;
  position: relative;
}
.benefits-holder h2:after {
  width: 122px;
  height: 122px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  content: "";
}
.benefits-content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: clamp(1.25rem, -13.186rem + 22.556vw, 5rem);
  width: clamp(37.5rem, -5.808rem + 67.669vw, 48.75rem);
}
.benefits-content li {
  width: calc(50% - 40px);
  min-height: 70px;
  font-size: clamp(0.875rem, 0.394rem + 0.752vw, 1rem);
  line-height: 24px;
  color: #fff;
  padding: 0 0 0 90px;
  box-sizing: border-box;
  background: url(../img/icons/icon01.svg) no-repeat 0 50%;
  display: flex;
  align-items: center;
}
.benefits-img ,
.mobile-btn {
  display: none;
}


@media screen and (max-width: 1024px) {
  .benefits-content {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 50px 30px;
    box-sizing: border-box;
  }
  .benefits-content li {
    width: auto;
    padding-left: 84px;
    background-size: 60px;
    font-size: 14px;
    line-height: 21px;
  }
  .benefits-area {
    display: none;
  }
  .benefits-holder h2 {
    font-size: 24px;
    min-height: 300px;
    line-height: 36px;
    text-align: center;
    width: 100%;
    background: url(../img/bg03.png) no-repeat 50% 100%;
    background-size: cover;
    box-sizing: border-box;
    padding: 60px 50px;
  }
  .benefits-holder .container {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .benefits-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    bottom: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
  .mobile-btn {
    display: block;
    margin: 30px auto 0;
  }
  .desktop-btn {
    display: none;
  }
  .container-styles {
    display: none;
  }
  h2 {
    font-size: 24px;
    line-height: 30.6px;
    margin-bottom: 25px;
  }
  .about-company .container {
    padding: 60px 0;
    flex-direction: column;
    gap: 0;
  }
  .about-company__image {
    width: 100%;
    margin: 0 0 35px;
  }
  .about-company__text {
    padding: 0 30px;
  }
  .about-company__text h2 {
    display: none;
  }
  h2.mobile-show ,
  .about-company2 .about-company__text h2 {
    display: block;
    text-align: center;
  }
  .about-company__text p {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
  }
  .about-company__text .main-button {
    margin: 0 auto;
  }
  .mobile-head {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  .main-button {
    line-height: 42px;
    height: 42px;
    font-size: 14px;
  }
  .numbers-holder .box {
    width: calc(50% - 23px);
    padding-bottom: 30px;
    line-height: 24px;
  }
  .numbers-holder .box2 {
    border-width: 0 0 1px 0;
  }
  .numbers-holder .box3 {
    border-width: 0 1px 1px 0;
    padding-top: 25px;
  }
  .numbers-holder .box4 {
    border-width: 0 0 1px 0;
    padding-top: 25px;
  }
  .numbers-holder .box5 {
    border-width: 0 1px 0 0;
    padding: 25px 10px 0;
  }
  .numbers-holder .box6 {
    border-width: 0;
    padding: 25px 10px 0;
  }
  .numbers-holder .box strong {
    font-size: 34px;
    line-height: 43px;
    margin-top: 0;
  }
  .numbers-holder .container {
    padding: 144px 30px;
  }
  .partners-list__item a {
    height: 80px;
  }
  .sertificate-holder .post-holder ,
  .offer-holder .post-holder ,
  .partners-list {
    margin-bottom: 40px;
  }
  .container-styles2 {
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .post-box__title {
    font-size: 14px;
    line-height: 21px;
  }
  .tabset-row {
    margin-bottom: 30px;
  }
  .tabset {
    font-size: 16px;
    gap: 16px;
    justify-content: center;
  }
  .tabset a {
    padding-bottom: 10px;
  }
  .tabset-row h2 {
    text-align: center;
    width: 100%;
  }
}
/* hero block */
.hero-block {
  position: relative;
  height: 400px;
}
.hero-block .container {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 3;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 1350px;
}
.hero-block__title:after {
  background: rgba(88, 90, 89, 0.1);
  backdrop-filter: blur(10px);
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  z-index: 2;
  padding-left: 9999px;
  margin-left: -9999px;
  z-index: -1;
}
.hero-block__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-block__title {
  color: var(--white-color);
  margin: 0;
  text-align: left;
  line-height: 63px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 50px;
  min-width: 400px;
  position: relative;
}
.hero-block__image-mobile {
  display: none;
}
.breadcrumbs {
  border-bottom: 1px solid #E4E4E4;
}
.breadcrumbs__list {
  display: flex;
  height: 72px;
  align-items: center;
  gap: 20px;
}
.breadcrumbs__list li:before {
  content: "/";
  font-size: 16px;
  color: #D1D1D1;
  margin-right: 20px;
}
.breadcrumbs__list li:first-child:before {
  display: none;
  margin: 0;
}
.breadcrumbs__list a {
  text-decoration: none;
}
.breadcrumbs__list a:hover {
  text-decoration: underline;
}
/* products-holder */
.products-holder {
  padding: 110px 0;
}
.sort-row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.sort-row__title {
  font-size: 20px;
  font-weight: 700;
  min-width: 200px;
  padding-right: 20px;
}
.sort-row__list {
  display: flex;
  gap: 10px;
}
.sort-row__list a {
  display: block;
  padding: 0 20px;
  line-height: 45px;
  color: var(--main-text-color);
  text-decoration: none;
  background: #F5F5F5;
}
.sort-row__list a:hover ,
.sort-row__list a.active {
  background: var(--link-color);
  color: #fff;
}
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 20px;
}

.blogs-holder {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px 0 0;
}
.product-slider .blogs-holder ,
.blogs-slider .blogs-holder {
  flex-wrap: nowrap;
  padding-bottom: 0;
}
.product-slider.swiper-initialized .blogs-holder ,
.blogs-slider.swiper-initialized .blogs-holder {
  gap: 0;
}
.product-slider ,
.blogs-slider {
  overflow: hidden;
  position: relative;
}
.content-holder .product-slider ,
.content-holder .blogs-slider {
  padding-bottom: 50px;
}
.content-holder .product-slider {
  margin-bottom: 85px;
}
.content-holder .product-slider h2 ,
.content-holder .blogs-slider h2 {
  text-align: left;
  margin-bottom: 30px;
}
.blogs-slider .blogs-holder .post-box {
  height: auto;
}
.blogs-holder .post-box {
  width: calc(33.3% - 20px);
  position: relative;
  padding-bottom: 50px;
}
.post-box__bottom {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E4E4E4;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.post-box__date {
  color: #A0A0A0;
}
.post-box__more {
  text-decoration: none;
  padding-right: 25px;
  background: url(../img/icons/arrow02-icon.svg) no-repeat 100% 50%;
}
.post-box__more:hover {
  text-decoration: underline;
}
.blogs-holder .post-box__title {
  line-height: 25px;
  margin-bottom: 25px;
}
.blogs-holder .post-box__image {
  margin-bottom: 22px;
}
.blogs-holder .post-box__image:hover img {
    border-radius: 10px;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
/* pagination */
.pagination {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #E4E4E4;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: space-between;
}
.pagination a {
  width: 36px;
  height: 36px;
  background: #ECECEC;
  color: var(--main-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
}
.pagination a:hover ,
.pagination a.active {
  color: #fff;
  background: var(--link-color);
}
.pagination_list {
  display: flex;
  gap: 5px;
}
.pagination_prev:after ,
.pagination_next:after {
  content: "\e90a";
  font-family: icomoon;
  font-size: 10px;
}
.pagination_next:after {
  transform: rotate(180deg);
}
.more-row {
  display: flex;
  justify-content: center;
  margin: 60px 0 30px;
}
.more-row__link {
  text-decoration: none;
  padding-left: 52px;
  line-height: 30px;
  display: flex;
  background: url(../img/icons/arrow03-icon.svg) no-repeat;
}
.more-row__link:hover {
  text-decoration: underline;
}
.post-content {
  padding: 110px 0 84px;
}
.post-content p {
  margin-bottom: 27px;
  padding: 0 20px;
}
.post-content__image {
  display: flex;
  margin-bottom: 55px;
}
.post-content__image img {
  display: block;
  max-width: 100%;
}
.post-content__image-couple {
  gap: 30px;
}
.post-content__image-couple img {
  width: calc(50% - 10px);
}
.post-content__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.post-content__title {
  text-transform: none;
  text-align: left;
  width: 80%;
  margin: 0;
}
.post-content__date {
  color: #A0A0A0;
}
.post-content__text {
  max-width: 860px;
  margin: 0 auto;
}
.bullet-list {
  margin-bottom: 45px;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}
.bullet-list li:after {
  width: 6px;
  height: 6px;
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background: var(--link-color);
  border-radius: 50%;
}
.contacts-info {
  padding: 110px 0;
}
.contacts-info__holder {
  display: flex;
  gap: 80px;
  align-items: center;
}
.contacts-info__map {
  width: 59.7%;
  flex-shrink: 0;
}
.contacts-info__map img {
  display: block;
  width: 100%;
}
.contacts-info-box h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 50px;
  padding-left: 74px;
  margin-bottom: 20px;
}
.contacts-info-box h4.address-icon {
  background: url(../img/icons/location-icon02.svg) no-repeat 10px 0;
}
.contacts-info-box h4.phone-icon {
  background: url(../img/icons/phone-icon02.svg) no-repeat;
}
.contacts-info-box h4.email-icon {
  background: url(../img/icons/mail-icon02.svg) no-repeat;
}
.contacts-info-box a {
  color: var(--main-text-color);
  text-decoration: none;
}
.contacts-info-box a:hover {
  color: var(--link-color);
}
.contacts-info-box strong {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}
.contacts-info-box p {
  margin-bottom: 20px;
}
.contacts-info-box p span {
  display: block;
}
.contacts-info-box p span:not(:last-child) {
  margin-bottom: 10px;
}
.contacts-form {
  padding: 110px 0;
}
.contacts-form .main-button {
  margin: 0 auto;
}
.contacts-form__row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.input-box {
  background: #fff;
  border: 1px solid #E8E8E8;
  margin-bottom: 30px;
}
.contacts-form__row .input-box {
  width: calc(33.3% - 22px);
}
.input-box .input-text {
  width: 100%;
  height: 51px;
  background: none;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
}
.input-box textarea {
  width: 100%;
  height: 130px;
  max-width: 100%;
  min-width: 100%;
  min-height: 130px;
  background: none;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
}
.input-box .input-text:focus ,
.input-box textarea:focus {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .content-holder .product-slider {
    margin-bottom: 50px;
  }
  .hero-block {
    height: 310px;
  }
  .hero-block:after {
    width: 100%;
    height: 142px;
    bottom: 0;
    top: auto;
  }
  .hero-block .container {
    left: 0;
    min-height: 142px;
    height: auto;
    transform: translateX(0);
    bottom: 0;
    top: auto;
    justify-content: center;
    padding: 30px 0;
  }
  .hero-block__title {
    font-size: 30px;
  }
  .hero-block__image-mobile {
    display: block;
  }
  .hero-block__image-main {
    display: none;
  }
  .breadcrumbs__list {
    height: 50px;
    overflow: auto;
    font-size: 14px;
    gap: 16px;
  }
  .breadcrumbs__list li {
    white-space: nowrap;
  }
  .breadcrumbs__list li:before {
    margin-right: 16px;
  }
  .sort-row {
    flex-direction: column;
    margin: 0 -20px 30px 0;
    gap: 13px;
    align-items: baseline;
  }
  .sort-row__title {
    font-size: 16px;
    padding: 0;
    min-width: auto;
  }
  .sort-row__list {
    gap: 8px;
    overflow: auto;
    width: 100%;
  }
  .sort-row__list li:last-child {
    padding-right: 5px;
  }
  .sort-row__list a {
    font-size: 14px;
    line-height: 34px;
    white-space: nowrap;
    padding: 0 18px;
  }
  .products-list {
    gap: 25px 4px;
    padding-top: 0;
  }
  .products-list .post-box {
    width: calc(50% - 2px);
  }
  .products-holder {
    padding: 60px 0;
  }
  .post-box__image {
    margin-bottom: 10px;
  }
  .more-row__link {
    font-size: 14px;
    background-size: 20px;
    padding-left: 35px;
    line-height: 20px;
  }
  .blogs-holder .post-box {
    width: 100%;
  }
  .post-box__bottom {
    font-size: 14px;
  }
  .blogs-slider .post-box__bottom {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .blogs-holder .post-box__image {
    margin-bottom: 14px;
  }
  .blogs-holder .post-box__title {
    line-height: 21px;
    margin-bottom: 15px;
  }
  .blogs-holder {
    padding: 10px 0 0;
    gap: 10px;
  }
  .post-content {
    padding: 65px 0 44px;
  }
  .post-content__image-couple {
    gap: 4px;
  }
  .post-content__image-couple img {
    width: calc(50% - 2px);
  }
  .post-content .container {
    padding: 0;
  }
  .post-content__text {
    padding: 0 20px;
  }
  .post-content p {
    margin-bottom: 17px;
  }
  .bullet-list {
    margin-bottom: 35px;
  }
  .post-content__head {
    padding: 0 20px;
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 25px;
  }
  .post-content__title {
    width: 100%;
    margin-bottom: 18px;
  }
  .post-content__image {
    margin-bottom: 35px;
  }
  .contacts-form__row {
    gap: 0;
    flex-direction: column;
  }
  .contacts-form .input-box {
    margin-bottom: 20px;
  }
  .contacts-form__row .input-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .contacts-form .main-button {
    width: 100%;
  }
  .contacts-form {
    padding: 60px 0 70px;
  }
  .contacts-info__holder {
    flex-direction: column;
    gap: 30px;
  }
  .contacts-info__map {
    width: 100%;
  }
  .contacts-info-box h4 {
    font-size: 16px;
    line-height: 40px;
    padding-left: 50px;
    margin-bottom: 15px;
  }
  .contacts-info-box h4.email-icon ,
  .contacts-info-box h4.phone-icon {
    background-size: 40px;
  }
  .contacts-info-box h4.address-icon {
    background-size: 26px 40px;
    background-position: 10px 0;
  }
  .contacts-info {
    padding: 60px 0;
  }
  .contacts-info-box p:last-child {
    margin-bottom: 0;
  }
  .hero-block__title:after {
    display: none;
  }
  .hero-block__title {
    padding: 0;
    line-height: 36px;
    min-width: auto;
    overflow: hidden;
    text-align: center;
  }
  .hero-block .container {
    background: rgba(88, 90, 89, 0.1);
    backdrop-filter: blur(10px);
  }
  .content-holder .product-slider ,
  .content-holder .blogs-slider {
    width: calc(100vw - 20px);
    margin-right: -20px;
  }
}

/* main-content */
.main-content {
  display: flex;
  gap: clamp(1.25rem, -10.78rem + 18.797vw, 4.375rem);
}
.main-content2 {
  overflow: hidden;
}
.main-content2 .container {
  gap: 70px;
  display: flex;
  padding: 0 20px;
}
/* sidebar */
.sidebar {
  width: 260px;
  padding: 110px 0;
  background: #F8F8F8;
  position: relative;
  flex-shrink: 0;
}
.sidebar:after {
  width: 1px;
  height: 100%;
  background: #F8F8F8;
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  padding-left: 9999px;
  margin-left: -9999px;
}
.filters__head {
  background: #fff;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 69px;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 20;
}
.filters__head-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: none;
}
.filters__close-btn {
  width: 20px;
  height: 20px;
  border: none;
  cursor: pointer;
  background: url(../img/icons/close-icon02.svg) no-repeat;
}
.sidebar__title ,
.filters__title {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  border-bottom: 2px solid var(--link-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.filters__check-list {
  margin-bottom: 32px;
}
.filters__check-list li input {
  display: none;
}
.filters__check-list li {
  line-height: 20px;
  margin-bottom: 16px;
}
.filters__check-list li:last-child {
  margin: 0;
}
.filters__check-list label {
  position: relative;
  line-height: 20px;
  padding-left: 34px;
  cursor: pointer;
}
.filters__check-list label:before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
}
.filters__check-list label:after {
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 6px;
  content: "";
  background: var(--link-color);
  display: none;
}
.filters__check-list input:checked + label:after {
  display: block;
}
.price-range__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.price-range__head-input {
  width: 100px;
}
.price-range__head-input input {
  display: block;
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid #E6E6E6;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
}
.price-range__head-input input:focus {
  outline: none;
}
.price-range__range {
  width: 100%;
}
.price-range {
  padding-right: 30px;
}
.content-holder {
  padding: 110px 0;
  max-width: 960px;
  width: 100%;
}
.main-content2 .content-holder {
  padding-top: 0;
}
/* catalog__list */
.catalog__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.product-item {
  width: calc(33.3% - 20px);
  position: relative;
  padding-bottom: 50px;
  background: #F8F8F8;
}
.product-item__image {
  border: 1px solid #E4E4E4;
  background: #fff;
}
.product-item__image img {
  display: block;
  width: 100%;
}
.product-item__content {
  padding: 25px clamp(1.25rem, -1.156rem + 3.759vw, 1.875rem);
}
.product-item__availability {
  display: block;
  color: var(--link-color);
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 5px;
}
.product-item__availability:after {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--link-color);
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
.product-item__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.product-item__title a {
  color: var(--main-text-color);
  text-decoration: none;
}
.product-item__title a:hover {
  color: var(--link-color);
}
.product-item__content p {
  font-size: 14px;
  line-height: 22.4px;
}
.product-item__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}
.product-item__price-row .price {
  font-weight: 700;
  font-size: 22px;
  color: var(--link-color);
}
.product-item__price-row span {
  font-size: 14px;
}
.product-item__price-row span strong {
  font-weight: 600;
}
.product__form {
  width: 50%;
  border: 1px solid #E4E4E4;
  position: relative;
  background: #fff;
}
.product__form-qt-field {
  width: 100%;
  height: 50px;
  background: none;
  border: none;
  text-align: center;
  padding: 0 35px;
  box-sizing: border-box;
  color: var(--main-text-color);
  font-size: 14px;
}
.product__form-qt-field:focus {
  outline: none;
}
.product__form-qt-control {
  position: absolute;
  top: 0;
  left: 10px;
  width: 30px;
  height: 100%;
  border: none;
  background: none;
  color: var(--main-text-color);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.product__form-qt-control-plus {
  right: 10px;
  left: auto;
}
.product__foot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
.product__foot .main-button {
  width: 50%;
  padding: 0;
}
.catalog__control {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: center;
}
.catalog__control-view {
  display: flex;
  gap: 10px;
  align-items: center;
}
.catalog__control__text {
  font-size: 14px;
  line-height: 22px;
}
.catalog__control__text strong {
  font-weight: 700;
}
.catalog__control-view .view-btn {
  width: 21px;
  height: 21px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}
.catalog__control-view .view-btn:after {
  width: 100%;
  line-height: 21px;
  color: #bdbdbd;
  font-family: icomoon;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
}
.grid-view .catalog__control-view .grid-view-button:after ,
.list-view .catalog__control-view .list-view-button:after ,
.catalog__control-view .view-btn:hover:after {
  color: var(--link-color);
}
.catalog__control-view .list-view-button:after {
  content: "\e90b";
}
.catalog__control-view .grid-view-button:after {
  content: "\e90c";
}
.r-hold {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sort-select {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sort-select label {
  font-weight: 700;
}
.sort-select select {
  width: 220px;
  height: 41px;
  border: 1px solid #E8E8E8;
  color: #989898;
  padding: 0 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/icons/arrow04-icon.svg) no-repeat 95% 50%;
}
.sort-select select:focus {
  outline: none;
}
.list-view .catalog__list {
  flex-direction: column;
  gap: 20px;
}
.list-view .product-item {
  width: 100%;
  padding: 0 150px 0 0;
  display: flex;
  box-sizing: border-box;
}
.list-view .product-item__image {
  width: 163px;
  flex-shrink: 0;
}
.list-view .product__foot {
  width: 150px;
  height: 100%;
  right: 0;
  left: auto;
  flex-direction: column;
  justify-content: space-between;
}
.list-view .product__form ,
.list-view .product__foot .main-button {
  width: 100%;
  box-sizing: border-box;
}
.list-view .product-item__price-row {
  position: absolute;
  width: 150px;
  height: 100%;
  right: 0;
  top: 0;
  padding: 0;
  flex-direction: column;
  justify-content: center;
}
.list-view .product-item__content {
  min-height: 115px;
}
.list-view .product-item__price-row span {
  line-height: 20px;
}
.filters-button {
  display: none;
}
.benefits-block {
  display: flex;
  flex-wrap: wrap;
  border: solid #E4E4E4;
  border-width: 1px 0 0 1px;
}
.benefits-block__box {
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 20px;
  padding: 40px 45px 30px 45px;
  width: 50%;
  box-sizing: border-box;
  flex-direction: column;
  text-align: center;
  border: solid #E4E4E4;
  border-width: 0 1px 1px 0;
}
.benefits-block__box p {
  margin-bottom: 0;
}
.team-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid #E4E4E4;
  padding-bottom: 60px;
  margin-bottom: -10px;
}
.team-list__box {
  text-align: center;
  width: calc(25% - 23px);
}
.team-list__photo {
  margin-bottom: 25px;
}
.team-list__photo img {
  display: block;
  width: 100%;
}
.team-list__title {
  font-size: 16px;
  line-height: 24px;
  padding: 0 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.partners-area {
  position: relative;
  padding: 110px  0 650px;
}
.partners-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.partners-area h2 {
  color: var(--white-color);
}
.partners-area .swiper-scrollbar {
  background: #ececec;
}
.partners-bg-mobile {
  display: none;
}
.login-form {
  width: 410px;
  margin: 0 auto;
}
.login-form .main-button {
  margin: 0 auto;
  width: 130px;
  box-sizing: border-box;
}
.login-form .reg-btn {
  width: 190px;
}
.login-form .input-box {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
.login-form .input-box input {
  width: 100%;
  height: 48px;
  background: none;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
}
.login-form .input-box input:focus {
  outline: none;
}
.login-form .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 5px 0;
}
.login-form .row a {
  text-decoration: none;
}
.login-form .row a:hover {
  text-decoration: underline;
}
.check-area {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
}
.check-row {
  margin-bottom: 30px;
}
.check-area .check-row {
  margin-bottom: 17px;
}
.check-row input {
  display: none;
}
.check-row label {
  position: relative;
  padding-left: 43px;
  display: block;
  font-size: 14px;
  line-height: 26px;
}
.check-row label:before {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
}
.check-row label:after {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 7px;
  left: 7px;
  content: "";
  background: var(--link-color);
  display: none;
}
.check-area .check-row label {
  line-height: 19px;
}
.check-area .check-row label:before {
  top: 5px;
}
.check-area .check-row label:after {
  top: 12px;
}
.check-row input:checked + label:after {
  display: block;
}
.input-box .show-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  width: 24px;
  height: 14px;
  cursor: pointer;
}
.input-box .show-icon:after {
  content: "\e90f";
  font-family: icomoon;
  color: #C5C5C5;
  font-size: 14px;
  position: absolute;
  top: -5px;
}
.input-box .show-icon.show:after {
  color: var(--link-color);
}
.sidebar__list {
  line-height: 36px;
  margin-top: -6px;
}
.sidebar__list a {
  color: var(--main-text-color);
  display: inline-block;
  padding-left: 35px;
  position: relative;
  text-decoration: none;
}
.sidebar__list a:after {
  width: 20px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #e6e6e6;
}
.sidebar__list a.active {
  font-weight: 700;
}
.sidebar__list a:hover:after ,
.sidebar__list a.active:after {
  background: var(--link-color);
}
.sidebar__list a:hover {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .content-holder .big-img .swiper-slide {
    width: 100% !important;
  }
  .login-form .main-button ,
  .login-form {
    width: 100%;
  }
  .check-area label {
    font-size: 13px;
    line-height: 17px;
  }
  .partners-area {
    padding: 60px 0;
    min-height: 650px;
    box-sizing: border-box;
  }
  .partners-bg-mobile {
    display: block;
  }
  .mobile-hide ,
  .partners-bg-desktop {
    display: none;
  }
  .team-list {
    gap: 20px 4px;
    padding-bottom: 30px;
  }
  .team-list__box {
    width: calc(50% - 4px);
  }
  .team-list__title {
    font-size: 14px;
    line-height: 19px;
  }
  .team-list__photo {
    margin-bottom: 10px;
  }
  .open-filter .filters__head {
    display: flex;
  }
  .open-filter .sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
    background: #F8F8F8;
    z-index: 501;
    padding: 0;
  }
  .filters__check-list label {
    font-size: 14px;
  }
  .filters__check-list li {
    margin-bottom: 12px;
  }
  .filters__title {
    font-size: 16px;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  .content-holder {
    padding: 60px 0;
  }
  .sidebar {
    display: none;
  }
  .catalog__list {
    gap: 4px;
  }
  .product-item {
    width: calc(50% - 2px);
    padding-bottom: 42px;
  }
  .product-item__availability {
    font-size: 12px;
    line-height: 19px;
    padding-left: 11px;
  }
  .product-item__title {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 7px;
  }
  .product-item__content p {
    font-size: 12px;
    line-height: 16px;
  }
  .product-item__price-row {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }
  .product-item__price-row span {
    font-size: 12px;
  }
  .product__foot .main-button {
    width: 100%;
  }
  .sort-select label ,
  .catalog__control__text ,
  .product__form {
    display: none;
  }
  .sort-select select {
    background: url(../img/icons/arrow05-icon.svg) no-repeat 0 50%;
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--main-text-color);
    width: auto;
  }
  .product-item__content {
    padding: 15px 15px 5px 15px;
  }
  .product-item__price-row .price {
    font-size: 20px;
  }
  .list-view .product-item {
    width: 100%;
    padding: 15px 15px 41px 15px;
    display: flex;
    box-sizing: border-box;
  }
  .list-view .product-item__image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }
  .list-view .product__foot {
    width: 100%;
    height: auto;
    right: auto;
    left: 0;
    flex-direction: row;
    justify-content: space-between;
  }
  .list-view .product__form ,
  .list-view .product__foot .main-button {
    width: 50%;
    box-sizing: border-box;
  }
  .list-view .product-item__price-row {
    position: static;
    width: auto;
    height: auto;
    padding: 8px 0 5px;
    margin-left: -115px;
    flex-direction: row;
    justify-content: space-between;
  }
  .list-view .product-item__content {
    min-height: auto;
    padding-left: 115px;
    padding-top: 10px;
    margin-left: -100px;
  }
  .list-view .product-item__price-row span {
    line-height: 20px;
  }
  .list-view .product__form {
    display: block;
  }
  .list-view .product__form-qt-field {
    height: 40px;
  }
  .list-view .product-item__title {
    min-height: 70px;
  }
  .list-view .product-item__content p {
    margin-left: -115px;
  }
  .filters-button {
    display: block;
    font-size: 13px;
    height: 25px;
    line-height: 25px;
    padding: 0 15px;
  }
  .filters {
    height: 100%;
    overflow: auto;
    padding: 88px 20px 30px 20px;
    box-sizing: border-box;
  }
  .price-range {
    padding-right: 0;
  }
  .filters__check-list.two-column {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
  }
  .filters__check-list.two-column li {
    width: calc(50% - 10px);
  }
  .price-range__head {
    justify-content: center;
  }
  body.open-filter {
    overflow: hidden;
  }
  .benefits-block__box {
    padding: 20px;
  }
  .about-company2 .about-company__text {
    padding: 0 20px;
    order: 1;
    margin-bottom: 50px;
  }
  .about-company2 .about-company__image {
    order: 2;
    margin: 0;
  }
  .about-company2 .container {
    padding-bottom: 0;
  }
}

.tab-box-holder {
  display: flex;
  gap: 30px;
}
.tab-box-holder .column {
  width: 100%;
}
.tab-box-holder .head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.tab-box-holder .head h4 {
  font-size: 16px;
  font-weight: 700;
}
.tab-box-holder .head-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/icon-bg.png) no-repeat;
  background-size: 100%;
}
.tab-box-holder .radio-row ,
.tab-box-holder .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.tab-box-holder .form-row .select-box ,
.tab-box-holder .form-row .input-box {
  width: 100%;
  margin-bottom: 0;
}
.select-box select {
  width: 100%;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.radio-box {

}
.radio-box input {
  display: none;
}
.radio-box label {
  padding-left: 38px;
  position: relative;
  line-height: 26px;
  display: inline-block;
}
.radio-box label:before {
  width: 26px;
  height: 26px;
  border: 1px solid #E8E8E8;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.radio-box label:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--link-color);
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  display: none;
}
.radio-box input:checked + label:after {
  display: block;
}
/* order list */
.order-list {
  margin-top: -30px;
}
.order-list__item .row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid #ECECEC;
  padding: 30px 0;
}
.order-list__item strong {
  font-weight: 700;
}
.order-list__date {
  font-size: 14px;
}
.order-list__item .col1 {
  width: 220px;
  flex-shrink: 0;
}
.order-list__item .col1 strong {
  display: block;
}
.order-list__item .col2 {
  width: 100px;
  flex-shrink: 0;
}
.order-list__item .col3 {
  width: 180px;
  flex-shrink: 0;
  text-align: right;
}
.order-list__item .col4 {
  width: 100%;
  display: flex;
  gap: 10px;
}
.order-list__item .col4 img {
  width: 38px;
  height: 38px;
  border: 1px solid #E4E4E4;
}
.order-list__item .main-button {
  height: 36px;
  line-height: 36px;
}
.order-info-open {
  color: var(--main-text-color);
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
.order-info-open:after {
  width: 8px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
  content: "";
  background: url(../img/icons/arrow05-icon.svg) no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}
.row.active .order-info-open:after {
  transform: rotate(0deg);
}
.order-list__info {
  background: #F8F8F8;
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-out;
}
.row.active + .order-list__info {
  max-height: 1000px;
}
.order-list__info .column {
  width: 100%;
  padding: 30px 40px;
  border-bottom: 1px solid #ECECEC;
}
.order-list__info .column:first-child {
  border-right: 1px solid #E2E2E2;
}
.order-list__info .order-info li {
  margin-bottom: 15px;
}
.order-list__info .order-info li:last-child {
  margin-bottom: 0;
}
.order-list__info .order-info li strong {
  width: 190px;
  padding-right: 10px;
  display: inline-block;
}
.order-list__info .total {
  text-align: right;
}
.order-box {
  border-bottom: 1px solid #E2E2E2;
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  align-items: center;
}
.order-box .img {
  width: 70px;
  height: 70px;
  border: 1px solid #E2E2E2;
  flex-shrink: 0;
}
.order-box .img img {
  display: block;
  width: 100%;
  background: #fff;
}
.order-box h4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}
.order-box .order-box__price {
  font-size: 14px;
  flex-shrink: 0;
  display: block;
  padding-left: 20px;
  line-height: 19px;
  text-align: right;
}
.order-box .order-box__price span {
  display: block;
}
.contact-form {
  display: flex;
  gap: 30px;
}
.contact-form .column {
  width: 100%;
}
.manager-contact {
  display: flex;
  gap: 20px;
  border: 1px solid #E8E8E8;
  margin-bottom: 30px;
  align-items: center;
  padding-right: 30px;
}
.manager-contact img {
  width: 107px;
  height: 107px;
  display: block;
}
.manager-contact__content {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.manager-contact .manager-phone {
  text-align: right;
  flex-shrink: 0;
  font-size: clamp(1rem, 0.429rem + 0.893vw, 1.5rem);
  line-height: 36px;
}
.manager-contact .manager-phone a {
  text-decoration: none;
  display: block;
}
.manager-contact .manager-phone a:hover {
  text-decoration: underline;
}
.manager-contact .manager-name {
  font-size: 14px;
  width: 100%;
}
.manager-contact .manager-name strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.contact-form .input-box textarea {
  height: 260px;
  min-height: 260px;
}
.manager-chat {
  background: #F8F8F8;
  border: 1px solid #E8E8E8;
}
.manager-chat__head {
  border-bottom: 1px solid #E2E2E2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.manager-chat__head h4 {
  font-weight: 700;
  width: 100%;
}
.product-tabset {
  margin-bottom: 80px;
}
.download-list li {
  border-bottom: 1px solid #E1E1E1;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.download-list .main-button {
  height: 35px;
  line-height: 35px;
}
.download-list p {
  padding-left: 44px;
  background: url(../img/icons/pdf-icon.svg) no-repeat 0 50%;
}
.faq-list h4 {
  padding: 18px 20px;
}
.faq-list .faq-open {
  font-weight: 700;
  position: relative;
  display: block;
  cursor: pointer;
}
.faq-list .faq-open:after {
  width: 8px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3px;
  content: "";
  background: url(../img/icons/arrow04-icon.svg) no-repeat;
}
.faq-list .active .faq-open:after {
  transform: rotate(180deg);
}
.faq-list li {
  border-bottom: 1px solid #E1E1E1;
  padding: 0;
}
.faq-list li a {
  line-height: 35px;
}
.faq-list .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-out;
}
.faq-list .faq-content__hold {
  padding: 20px 30px;
  border-top: 1px solid #E1E1E1;
  background: #F8F8F8;
}
.faq-list .active .faq-content {
  max-height: 500px;
}
.product-description p {
  margin-bottom: 20px;
}
.product-description {
  padding: 30px 0 10px;
  border-bottom: 1px solid #E1E1E1;
}
.product-img-row {
  display: flex;
  gap: 20px;
  padding: 50px 0;
}
.product-img-row img {
  display: block;
  width: 100%;
}
.product-block {
  display: flex;
  gap: clamp(1.25rem, -3.036rem + 6.696vw, 5rem);
  background: #F8F8F8;
  margin-bottom: 50px;
  padding: 120px 0;
  position: relative;
}
.mobile-view {
  display: none;
}
.product-block:before {
  width: 2px;
  height: 100%;
  background: #F8F8F8;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
  padding-right: 9999px;
  margin-right: -9999px;
}
.product-block:after {
  width: 272px;
  height: 100%;
  background: var(--link-color);
  position: absolute;
  top: 0;
  left: -70px;
  content: "";
}
.product-block__img {
  width: clamp(18.75rem, 8.75rem + 15.625vw, 27.5rem);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.product-block__img .big-img {
  width: 100%;
  margin-bottom: 10px;
}
.product-block__img .big-img img {
  display: block;
  width: 100%;
}
.slide-preview {
  display: flex;
  flex-wrap: wrap;
}
.slide-preview .swiper-wrapper {
  gap: 8px;
}
.slide-preview.swiper-initialized .swiper-wrapper {
  gap: 0;
}
.slide-preview .swiper-slide {
  width: 96px !important;
  height: 96px !important;
  opacity: 0.5;
  background: none;
  border: none;
  cursor: pointer;
}
.slide-preview img {
  display: block;
  width: 100%;
}
.slide-preview .swiper-slide:hover ,
.slide-preview .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.product-block__content h2 {
  font-size: 30px;
  line-height: 39px;
  text-align: left;
  margin-bottom: 30px;
  text-transform: none;
}
.product-block__content p {
  margin-bottom: 20px;
}
.product-block__content .product__foot {
  position: static;
  width: 320px;
  gap: 20px;
  margin-bottom: 30px;
}
.product-block__size {
  margin-bottom: 15px;
}
.product-block__size strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-list a {
  display: block;
  width: 47px;
  line-height: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid #e4e4e4;
  text-decoration: none;
  color: var(--main-text-color);
}
.size-list a:hover ,
.size-list a.active {
  background: var(--link-color);
  border-color: var(--link-color);
  color: #fff;
}
.product-block__content .product-item__price-row {
  margin-bottom: 20px;
  padding-top: 15px;
}
.product-block__content .product-item__price-row span {
  font-size: 20px;
}
.product-block__content .product-item__price-row .price {
  font-size: 32px;
}
.product-block__manager {
  display: flex;
  gap: 20px;
  background: #fff;
  align-items: center;
  font-size: 14px;
}
.product-block__manager img {
  width: 107px;
  height: 107px;
  display: block;
}
.product-block__manager p {
  margin: 0;
}
.product-block__manager strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.product-block__manager a {
  text-decoration: none;
}
.product-block__manager a:hover {
  text-decoration: underline;
}
.search-box {
  position: relative;
}
.search-box input {
  width: 275px;
  height: 50px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #E8E8E8;
  font-size: 14px;
}
.search-box input:focus {
  outline: none;
}
.search-box .search-btn {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 15px;
  right: 20px;
  background: url(../img/icons/search-icon.svg) no-repeat;
  border: none;
  cursor: pointer;
}
.manager-chat .delete-btn {
  border: none;
  cursor: pointer;
  color: var(--link-color);
  padding-right: 20px;
  font-size: 14px;
  background: url(../img/icons/trash-icon.svg) no-repeat 100% 50%;
  background-size: 11px 13px;
}
.manager-chat .delete-btn:hover {
  text-decoration: underline;
}
.chat-holder {
  padding: 20px;
  min-height: 277px;
}
.chat-holder__message {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.chat-holder__message:last-child {
  margin-bottom: 0;
}
.chat-holder__avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--link-color) url(../img/icons/icon11.svg) no-repeat 50% 50%;
}
.chat-holder__avatar img {
  display: block;
  width: 100%;
}
.chat-holder__holder strong {
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin: -7px 0 2px;
}
.chat-holder__message-content {
  padding: 15px 20px;
  background: #e9e9e9;
  font-size: 14px;
  line-height: 19px;
  border-radius: 0 10px 10px 10px;
}
.own-message .chat-holder__avatar {
  order: 2;
}
.own-message .chat-holder__message-content {
  order: 1;
  border-radius: 10px 0 10px 10px;
}
.own-message .chat-holder__holder strong {
  text-align: right;
}
.product-table {
  width: 100%;
}
.product-table th {
  background: var(--link-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 55px;
  text-align: center;
}
.product-table td {
  text-align: center;
  height: 45px;
}
.product-table tr td {
  background: #F8F8F8;
}
.product-table tr:nth-child(2n) td {
  background: #fff;
}
.product-table tr td.rowspan {
  background: #fff;
}
.product-table tr.border {
  border-bottom: 1px solid #F0F0F0;
}

@media screen and (max-width: 1024px) {
  .product-img-row {
    flex-wrap: wrap;
    gap: 4px;
    padding: 30px 0;
  }
  .product-img-row img {
    width: calc(50% - 2px);
  }
  .product-img-row .size100 {
    width: 100%;
  }
  .faq-list .faq-open {
    line-height: 18px;
  }
  .faq-list .faq-content__hold {
    padding: 20px;
  }
  .download-list li {
    padding: 15px 0;
  }
  .product-tabset {
    margin-bottom: 50px;
  }
  .mobile-view {
    display: block;
  }
  .product-block:after {
    display: none;
  }
  .product-block {
    flex-direction: column;
    padding: 50px 20px;
    margin: 0 -20px 50px -20px;
    gap: 0;
  }
  .product-block .select-box {
    margin-bottom: 25px;
  }
  .product-block .product-item__availability {
    margin-bottom: 10px;
  }
  .product-block__img {
    width: 100%;
    margin-bottom: 20px;
  }
  .slide-preview a {
    width: 61px;
    height: 61px;
  }
  .product-block:before ,
  .product-block__content .product-item__availability ,
  .product-block__content h2 {
    display: none;
  }
  .manager-chat__head {
    flex-wrap: wrap;
  }
  .search-box {
    width: 100%;
  }
  .search-box input {
    width: 100%;
  }
  .manager-chat__head h4 {
    width: auto;
  }
  .contact-form .input-box textarea {
    height: 160px;
    min-height: 160px;
  }
  .contact-form {
    flex-direction: column;
  }
  .tab-box-holder .head {
    margin-bottom: 20px;
  }
  .tab-box-holder {
    flex-direction: column;
    gap: 10px;
  }
  .tab-box-holder .form-row {
    flex-direction: column;
    gap: 10px;
  }
  .form-holder .main-button {
    width: 100%;
  }
  .form-holder .check-row label {
    line-height: 16px;
  }
  .form-holder .tabset-row {
    overflow: auto;
    white-space: nowrap;
    margin-right: -20px;
  }
  .form-holder .tabset {
    justify-content: left;
  }
  .form-holder .tabset li:last-child {
    padding-right: 10px;
  }
  .order-list__item .row {
    flex-direction: column;
    padding: 20px 0;
    position: relative;
    gap: 10px;
  }
  .order-list__item .col3 ,
  .order-list__item .col4 ,
  .order-list__item .col1 {
    width: 100%;
  }
  .order-list__item .col3 {
    text-align: left;
  }
  .order-list__item .col2 {
    position: absolute;
    right: 0;
    bottom: 20px;
    text-align: right;
    line-height: 36px;
  }
  .order-list__item .main-button {
    width: 136px;
    margin-top: 10px;
  }
  .order-info-open {
    display: block;
  }
  .order-list__title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .order-list__info {
    flex-direction: column;
  }
  .order-list__info .column:first-child {
    border-bottom: 1px solid #E2E2E2;
    border-right: none;
  }
  .order-list__info .order-info li {
    margin-bottom: 5px;
  }
  .order-list__info .order-info li strong {
    width: 100%;
    display: block;
    padding: 0;
  }
  .order-list__info .column {
    padding: 20px;
    box-sizing: border-box;
  }
  .order-box {
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .order-box h4 {
    font-size: 13px;
    width: 60%;
  }
  .order-box .order-box__price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .manager-contact__content {
    flex-direction: column;
    gap: 0;
  }
  .manager-contact .manager-phone {
    font-size: 16px;
    text-align: left;
    width: 100%;
    padding-top: 4px;
  }
  .manager-contact .manager-name {
    font-size: 13px;
  }
  .manager-contact .manager-name strong {
    font-size: 16px;
  }
  .product-block__content .product-item__price-row .price {
    font-size: 26px;
  }
  .product-block__size strong {
    margin-bottom: 10px;
  }
  .product-block__content .product__foot {
    width: 100%;
  }
  .product-block__content .product__form {
    display: block;
  }
  .product-block__content .product__foot .main-button {
    width: 50%;
    height: 46px;
    line-height: 46px;
  }
  .product-block__content .product__form .product__form-qt-field {
    height: 46px;
  }
  .product-block h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
    text-transform: none;
  }
}
/* cart styles */
.ordering-column {
  padding: 110px 0;
}
.ordering-column h2 {
  text-align: left;
}
.booking__products {
  margin-bottom: 50px;
}
.booking__products-item {
  margin-bottom: 10px;
  background: #F8F8F8;
  position: relative;
  display: flex;
}
.booking__product-image {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #E4E4E4;
}
.booking__product-image img {
  display: block;
  width: 100%;
}
.booking__product-head {
  width: 50%;
  margin: 0;
  display: flex;
  gap: clamp(1.25rem, 0.536rem + 1.116vw, 1.875rem);
  box-sizing: border-box;
  border-right: 1px solid #E4E4E4;
  align-items: center;
}
.booking__product__code {
  font-size: 14px;
  line-height: 22px;
  color: var(--link-color);
  display: block;
}
.booking__product__title {
  font-size: 16px;
  line-height: 22px;
  margin: 8px 0 0;
}
.booking__product__title a {
  text-decoration: none;
  color: var(--main-text-color);
}
.booking__product__title a:hover {
  color: var(--link-color);
}
.booking__product-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding-right: clamp(1.25rem, -1.069rem + 3.623vw, 1.875rem);
  box-sizing: border-box;
}
.booking__product-delete {
  width: 15px;
  height: 17px;
  border: none;
  background: url(../img/icons/trash-icon.svg) no-repeat;
  background-size: contain;
  flex-shrink: 0;
  cursor: pointer;
}
.product__price-cost ,
.total-price {
  font-size: 14px;
}
.product__price-cost strong ,
.total-price strong {
  font-weight: 700;
  font-size: 22px;
}
.product__price-cost strong {
  color: var(--link-color);
}
.booking__product-cont .product__form {
  width: 100px;
  display: block;
  margin-right: 20px;
  flex-shrink: 0;
}
.booking__product-cont .product__price {
  width: 140px;
  text-align: center;
}
.booking__product-cont .total-price {
  width: 152px;
  text-align: center;
}
.booking__product-text {
  padding: 10px 10px 10px 0;
}
.booking-form-box {
  margin-bottom: 45px;
}
.booking-form-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.booking-form-row-hold {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.booking-form-row {
  margin-bottom: 10px;
}
.booking-form-row2 {
  margin-bottom: 0;
}
.booking-form-row-hold .booking-form-row {
  width: calc(50% - 10px);
  margin-bottom: 0;
  position: relative;
}
.booking-form-input {
  width: 100%;
  height: 50px;
  border: 1px solid #E8E8E8;
  background: #fff;
  box-sizing: border-box;
  padding: 0 20px;
}
.booking-form-input:focus {
  outline: none;
}
.booking-form-row.error .booking-form-input {
  border-color: #FF0000;
}
.booking-form-row.error .form-error-msg {
  display: block;
}
.booking-form-row .form-error-msg {
  padding: 5px 20px 0 25px;
  color: #FF0000;
  display: none;
  line-height: 19.6px;
  font-size: 13px;
  margin-left: 20px;
  background: url(../img/icons/icon10.svg) no-repeat 0 6px;
}
.booking-form-box .radio-row {
  background: #fff;
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 56px;
  box-sizing: border-box;
  border: 1px solid #E8E8E8;
}
.booking-form-box .radio-row strong {
  color: var(--second-text-color);
  font-weight: 600;
  display: block;
  text-align: right;
}
.booking-form-box .radio-row input[type="radio"] {
  display: none;
}
.booking-form-box .radio-row label {
  padding-left: 40px;
  color: var(--second-text-color);
  position: relative;
}
.booking-form-box .radio-row strong br ,
.booking-form-box .radio-row label br {
  display: none;
}
.booking-form-box .radio-row label:before {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  border: 1px solid #D9D9D9;
  background: #fff;
  border-radius: 50%;
  content: "";
}
.booking-form-box .radio-row label:after {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -5px;
  background: var(--link-color);
  border-radius: 50%;
  content: "";
  display: none;
}
.booking-form-box .radio-row input:checked + label:after {
  display: block;
}
.choose-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 20px 20px;
  border-top: 1px solid #E8E8E8;
  margin: 20px -20px -20px -20px;
  display: none;
  background: #F8F8F8;
}
.booking-form-box .radio-row2 input:checked + label + .choose-box ,
.booking-form-box .radio-row2 input:checked + label + strong + .choose-box {
  display: block;
}
.choose-box .main-button {
  font-size: 14px;
  height: 38px;
  line-height: 38px;
  text-transform: capitalize;
}
.select-box {
  width: 100%;
  height: 52px;
  border: 1px solid #E8E8E8;
  color: #989898;
  padding: 0 20px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background:#fff url(../img/icons/arrow04-icon.svg) no-repeat 98% 50%;
  margin-bottom: 10px;
}
.select-box2 {
  background-color: #F8F8F8;
}
.select-box:focus {
  outline: none;
}
.add-btn {
  background: url(../img/icons/plus02-icon.svg) no-repeat 0 50%;
  border: none;
  font-size: 14px;
  color: var(--link-color);
  text-decoration: underline;
  padding-left: 22px;
  cursor: pointer;
}
.add-btn:hover {
  text-decoration: none;
}
.booking-form-comments {
  display: none;
}
.comments-open .booking-form-comments {
  display: block;
}
.booking-form-box textarea {
  border: 1px solid #E8E8E8;
  background: #fff;
  padding: 10px 20px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 140px;
  box-sizing: border-box;
  resize: none;
}
.booking-form-box textarea:focus {
  outline: none;
}
.promocode-open button.add-promocode-btn ,
.comments-open button.add-comments-btn {
  display: none;
}
.card-list {
  display: flex;
  gap: 10px;
}
.card-list .card-box input {
  display: none;
}
.card-list .card-box label {
  width: 140px;
  line-height: 40px;
  background: #fff;
  position: relative;
  border: 1px solid #E8E8E8;
  box-sizing: border-box;
  padding-left: 45px;
  display: block;
  font-size: 14px;
}
.card-list .card-box label img {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.card-list .card-box label:after ,
.card-list .card-box label:before {
  display: none !important;
}
.card-list .card-box input:checked + label {
  border-color: var(--link-color);
}

.promocode-column {
  width: 329px;
  background: #F8F8F8;
  flex-shrink: 0;
  padding: 110px 0;
}
.cart-holder .container {
  display: flex;
  gap: clamp(1.25rem, -12.663rem + 21.739vw, 5rem);
}
.confirmation-box {
  padding: 0 30px;
}
.promocode-box__btn {
  width: 100%;
  margin-bottom: 22px;
}
.confirmation-box__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 19.6px;
  margin-bottom: 25px;
}
.confirmation-box__total-row span strong {
  color: var(--link-color);
  font-size: 26px;
  font-weight: 600;
}
.confirmation__table .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 19.6px;
  margin-bottom: 22px;
}
.confirmation__table .row span strong {
  font-weight: 600;
  font-size: 16px;
}
.confirmation__table .row p strong {
  font-weight: 600;
  text-align: right;
  display: block;
}
.promocode-box__title {
  font-size: 20px;
  font-weight: 500;
  border: solid #E4E4E4;
  border-width: 1px 0;
  padding: 0 30px;
  margin: 0 -30px 25px -30px;
  line-height: 77px;
}
.confirmation__table {
  border-bottom: 1px solid #E4E4E4;
  margin: 0 -30px 30px -30px;
  padding: 0 30px;
}
.confirmation-checkbox input {
  display: none;
}
.confirmation-checkbox label {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  padding-left: 30px;
  display: block;
}
.confirmation-checkbox label:before {
  width: 20px;
  height: 20px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #E1E1E1;
  background: #fff;
}
.confirmation-checkbox label:after {
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  background: var(--link-color);
  display: none;
}
.confirmation-checkbox input:checked + label:after {
  display: block;
}
.add-promocode-btn {
  margin-bottom: 30px;
}
.promocode-box {
  padding: 20px 30px 30px 30px;
  background: #585A59;
  margin: 0 -30px;
  position: relative;
  display: none;
}
.promocode-open .promocode-box {
  display: block;
}
.promocode-box .close {
  width: 17px;
  height: 17px;
  background: url(../img/icons/close-icon03.svg) no-repeat;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 30px;
  top: 30px;
  display: block !important;
}
.promocode-box h3 {
  margin: 0 0 20px;
  color: var(--white-color);
  font-size: 20px;
}
.promocode-box input[type="text"] {
  width: 100%;
  height: 50px;
  background: #fff;
  padding: 0 20px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: none;
}
.promocode-box input[type="text"]:focus {
  outline: none;
}
.promocode-box .main-button {
  width: 100%;
}
.product-tabset .tabset-row {
  margin-bottom: 0;
}
.history-slider {
  width: 100%;
  position: relative;
}
.history-slider__text {
  padding-right: calc(50% + 100px);
  min-height: 400px;
}
.history-slider__img {
  position: absolute;
  right: 0;
  top: 75px;
  width: 50%;
}
.history-slider__img img {
  display: block;
  width: 100%;
}
.history-slider__text h3 {
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 40px;
}
.history-slider__text p:not(:last-child) {
  margin-bottom: 25px;
}
.years-list {
  display: flex;
  justify-content: space-around;
  position: relative;
  width: calc(100% + clamp(0rem, -38.393rem + 47.619vw, 18.75rem)) !important;
  margin: 0 -500px 30px 0;
  padding-top: 30px;
}
.years-list li:after {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: #E4E4E4;
  content: "";
  width: 100%;
  height: 1px;
  z-index: -1;
}
.years-list li {
  position: relative;
  padding-top: 40px;
  min-width: 100px;
  width: 100%;
  opacity: 1 !important;
  border-radius: 0 !important;
  background: none !important;
  margin: 0 !important;
  height: auto;
}
.years-list span {
  font-size: 26px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -33px;
  text-align: center;
  width: 66px;
}
.years-list a {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
  border: solid #fff;
  border-width: 0 5px;
  background: url(../img/icons/history-icon.svg) no-repeat;
}
.years-list .swiper-pagination-bullet-active a {
  background: url(../img/icons/history-icon-active.svg) no-repeat;
}
.years-list .swiper-pagination-bullet-active span {
  color: var(--link-color);
}
.history-slider .product-control {
  display: flex;
  gap: 30px;
  position: absolute;
  top: 150px;
  right: 0;
  z-index: 11;
}
.history-slider .slide-arrow {
  width: 82px;
  height: 5px;
  display: block;
  position: static;
  text-decoration: none;
}
.history-slider .slide-arrow:after {
  color: var(--link-color);
  font-size: 16px;
  font-family: icomoon;
}
.history-slider .swiper-button-prev:after {
  content: "\e911";
}
.history-slider .swiper-button-next:after {
  content: "\e910";
}
.history-slider .swiper-button-disabled {
  opacity: 1;
}
.history-slider .swiper-button-disabled:after {
  color: var(--main-text-color);
}
.history-slider__content {
  background: #fff;
}
.company-history {
  overflow: hidden;
}

@media screen and (max-width: 1140px) {
  .booking__product-cont .product__price {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .years-list {
    width: 100% !important;
    overflow: auto;
    margin: 0 0 40px;
    padding-top: 10px;
  }
  .years-list span {
    font-size: 18px;
  }
  .years-list li {
    padding-top: 35px;
  }
  .history-slider .product-control {
    top: auto;
    bottom: 0;
    width: 100%;
    justify-content: center;
  }
  .history-slider {
    padding-bottom: 40px;
  }
  .history-slider__text {
    padding-right: 0;
  }
  .history-slider__text h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .history-slider__img {
    position: static;
    width: 100%;
    margin-bottom: 23px;
  }
  .cart-holder .container {
    gap: 0;
    flex-direction: column;
  }
  .promocode-column {
    width: 100%;
    padding: 10px 0 20px;
    margin-bottom: 50px;
  }
  .booking__products-item {
    flex-direction: column;
    padding: 15px;
  }
  .booking__product-head {
    width: 100%;
    border: none;
    gap: 15px;
    margin-bottom: 15px;
  }
  .booking__product-image {
    width: 100px;
    height: 100px;
  }
  .booking__product-text {
    padding: 0;
  }
  .booking__product-cont {
    padding: 0;
    width: 100%;
  }
  .product__price {
    display: none;
  }
  .booking__product-cont .total-price {
    width: 100%;
    text-align: left;
  }
  .ordering-column {
    padding: 45px 0;
  }
  .booking__product__code {
    font-size: 12px;
    line-height: 19px;
  }
  .booking__product__title {
    font-size: 13px;
    line-height: 18.7px;
  }
  .booking-form-box h3 {
    font-size: 16px;
  }
  .booking-form-row-hold {
    flex-direction: column;
    gap: 10px;
  }
  .booking-form-row-hold .booking-form-row {
    width: 100%;
  }
  .booking-form-box {
    margin-bottom: 25px;
  }
  .booking-form-box .radio-row {
    padding: 10px 15px;
  }
  .booking-form-box .radio-row strong br ,
  .booking-form-box .radio-row label br {
    display: block;
  }
  .booking-form-box .radio-row strong ,
  .booking-form-box .radio-row label {
    font-size: 14px;
    line-height: 16px;
  }
  .choose-box {
    margin: 10px -15px -10px -15px;
  }
  .select-box {
    background-position: 95% 50%;
  }
  .card-list {
    flex-direction: column;
  }
  .card-list .card-box label {
    width: 100%;
    line-height: 40px;
    text-align: right;
    padding-right: 20px;
  }
  .card-list .card-box label img {
    left: 20px;
  }
  .radio-label {
    line-height: 34px !important;
  }
  .promocode-box__title {
    padding: 0 20px;
    margin: 0 -20px 0 -20px;
    border-bottom: none;
    line-height: 50px;
    font-size: 18px;
  }
  .confirmation-box {
    padding: 0 20px;
  }
  .confirmation__table {
    margin: 0 -20px 20px -20px;
    padding-top: 20px;
    background: #fff;
  }
  .add-promocode-btn {
    margin-bottom: 10px;
  }
  .promocode-box {
    padding: 20px;
    margin: 0 -20px;
  }
  .promocode-box h3 {
    font-size: 18px;
  }
  .promocode-box .close {
    top: 20px;
    right: 20px;
  }
  .comments-open .booking-form-comments {
    margin-bottom: 0;
  }
  .product-tabset .tabset-row {
    margin: 0 -30px 0 0;
    width: calc(100vw - 40px);
    overflow: auto;
    white-space: nowrap;
  }
  .product-tabset .tabset-row .tabset {
    width: auto;
  }
}

/* footer */
.footer {
  background-size: cover;
  min-height: 570px;
  padding-bottom: 50px;
}
.footer__container {
  display: flex;
  flex-flow: row wrap;
  column-gap: clamp(1.25rem, -6.99rem + 12.876vw, 5rem);
  row-gap: 60px;
  padding-top: 80px;
}
.footer__logo-column {
  width: clamp(14.375rem, 10.942rem + 5.365vw, 15.938rem);
}
.footer__logo-column p {
  margin-bottom: 38px;
}
.footer__logo {
  width: clamp(13.75rem, 11.278rem + 3.863vw, 14.875rem);
  margin-bottom: 25px;
  display: inline-block;
}
.footer__logo-image {
  display: block;
  width: 100%;
}
.footer p {
  color: #fff;
}
.footer h3 {
  color: #EC811A;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 20px 0;
  min-height: 45px;
  align-items: center;
}
.footer__bottom:after {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.footer__bottom-design img {
  margin: 3px 0 -3px 10px;
}
.footer__menu {
  width: clamp(7.5rem, 4.753rem + 4.292vw, 8.75rem);
}
.footer__menu-item {
  color: #fff;
  text-decoration: none;
}
.footer__menu-list {
  line-height: 33.6px;
}
.footer__menu-item:hover {
  text-decoration: underline;
  color: var(--link-color);
}
.footer__schedule {
  width: clamp(12.5rem, 5.633rem + 10.73vw, 15.625rem);
}
.footer__schedule-list li {
  color: #fff;
  line-height: 33.6px;
  display: flex;
  justify-content: space-between;
}
.footer__schedule-list li.bold {
  font-weight: 700;
}
.footer__contacts {
  width: clamp(18.75rem, 4.329rem + 22.532vw, 25.313rem);
}
.footer__contacts a {
  color: #fff;
}
.footer__contacts a:hover {
  color: var(--link-color);
  text-decoration: underline;
}
.footer__contacts p {
  line-height: 27.2px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 38px;
}
.footer__contacts strong {
  display: block;
  font-weight: 600;
}
.footer__contacts span {
  display: block;
}
.footer__contacts span:not(:last-child) {
  margin-bottom: 15px;
}
.footer__contacts span em {
  opacity: 0.4;
  padding: 0 7px;
}
.footer__contacts-map {
  background: url(../img/icons/location-icon.svg) no-repeat 0 5px;
}
.footer__contacts-email {
  background: url(../img/icons/mail-icon.svg) no-repeat 0 6px;
}
.footer__contacts-phone {
  background: url(../img/icons/phone-icon.svg) no-repeat 0 5px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links__link {
  width: 22px;
  height: 22px;
  display: block;
  text-decoration: none;
  text-align: center;
  line-height: 22px;
}
.social-links__link:after {
  font-family: icomoon;
  font-size: 20px;
  color: #fff;
}
.social-links__link.in-link:after {
  content: "\e902";
  font-size: 22px;
}
.social-links__link.youtube-link:after {
  content: "\e901";
}
.social-links__link.facebook-link:after {
  content: "\e900";
  font-size: 22px;
}
.social-links__link.inst-link:after {
  content: "\e903";
  font-size: 22px;
}
.social-links__link:hover:after {
  color: var(--link-color);
}
.footer__contacts span a {
  text-decoration: none;
}
.footer__contacts span a:hover {
  color: var(--link-color);
}
.fixed-bar {
  display: none;
}
.mobile-modal {
  position: fixed;
  background: #fff;
  top: 69px;
  left: 0;
  width: 100%;
  height: calc(100vh - 115px);
  box-sizing: border-box;
  padding: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
  overflow: auto;
}

@media screen and (max-width: 1024px) {
  /* fixed-bar */
  .fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--main-text-color);
    z-index: 501;
    border-top:1px solid #676968;
    display: block;
  }
  .fixed-bar__menu {
    display: flex;
  }
  .fixed-bar__link {
    flex-shrink: 0;
    border: solid #676968;
    border-width: 0 0 0 1px;
    width: calc(100% / 5);
    height: 50px;
    padding: 7px 2px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    text-decoration: none;
    background: none;
    box-sizing: border-box;
  }
  .fixed-bar__link:focus {
    outline: none;
  }
  .fixed-bar__link:first-child {
    border: none;
  }
  .fixed-bar__title {
    font-size: 13px;
    line-height: 18px;
    color: #fff;
  }
  .open-catalog-modal .footer-catalog-btn ,
  .open-login-modal .footer-login-btn ,
  .open-cart-modal .footer-cart-btn ,
  .open-contact-modal .footer-contact-btn ,
  .fixed-bar__link.active {
    background: var(--link-color);
  }
  .fixed-bar__icon {
    width: 18px;
    height: 18px;
    position: relative;
  }
  .fixed-bar__icon:after {
    width: 100%;
    line-height: 18px;
    font-family: icomoon;
    font-size: 18px;
    color: var(--link-color);
  }
  .footer-home-btn .fixed-bar__icon:after {
    content: "\e90d";
  }
  .footer-catalog-btn .fixed-bar__icon:after {
    content: "\e90c";
  }
  .footer-contact-btn .fixed-bar__icon:after {
    content: "\e907";
  }
  .footer-login-btn .fixed-bar__icon:after {
    content: "\e904";
  }
  .footer-cart-btn .fixed-bar__icon:after {
    content: "\e909";
  }
  .open-catalog-modal .footer-catalog-btn .fixed-bar__icon:after ,
  .open-login-modal .footer-login-btn .fixed-bar__icon:after ,
  .open-cart-modal .footer-cart-btn .fixed-bar__icon:after ,
  .open-contact-modal .footer-contact-btn .fixed-bar__icon:after ,
  .fixed-bar__link.active .fixed-bar__icon:after {
    color: #fff;
  }
  .cart-quantity {
    position: absolute;
    top: -5px;
    right: -12px;
    min-width: 16px;
    line-height: 16px;
    border-radius: 50%;
    font-size: 8px;
    color: #1C1B1B;
    text-align: center;
    background: var(--link-color);
    padding: 0 2px;
    box-sizing: border-box;
  }
  .open-cart-modal .footer-cart-btn .cart-quantity ,
  .fixed-bar__link.active .cart-quantity {
    background: #fff;
  }
  .footer {
    min-height: auto;
  }
  .footer__container {
    padding: 70px 20px 0 20px;
    flex-direction: column;
    gap: 0;
  }
  .footer__contacts {
    width: 100%;
  }
  .footer__schedule ,
  .footer__logo-column {
    width: 100%;
    padding-bottom: 25px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
  }
  .footer__schedule:after ,
  .footer__logo-column:after {
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
  }
  .footer__logo {
    width: 209px;
    margin: 0 auto 17px;
  }
  .footer p {
    font-size: 14px;
    line-height: 21px;
  }
  .social-links {
    justify-content: center;
  }
  .footer h3 {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 15px;
  }
  .footer__menu {
    display: none;
  }
  .footer__schedule-list {
    width: 205px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 26.6px;
  }
  .footer__bottom {
    justify-content: center;
    flex-direction: column;
    padding: 25px 0;
  }
  .footer__logo-column p {
    margin-bottom: 23px;
  }
  .footer__bottom p {
    line-height: 24px;
  }
  .footer__contacts strong {
    margin-bottom: 10px;
  }
  .footer__contacts span em {
    display: none;
  }
  .footer__contacts span a {
    display: flex;
  }
  .fixed-bar {
    display: block;
  }
  .swiper-grid-column>.swiper-wrapper {
    flex-direction: row;
    justify-content: center;
      align-items: center;
  }
  .partners-list.swiper-wrapper .swiper-slide {
    margin-top: 5px !important;
  }
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.post-content hr {
    margin: 50px 0;
}