@charset "UTF-8";

:root {
  --bg-black: #f2f2f2;
  --color-black: #2E3031;
  --logo-black: #393e3a;
  --logo-green: #61a337;
  --logo-green-dark: #538138;
  --color-white: #ffffff;
  --color-red: linear-gradient(90deg, #EA4B43 19%, #FFCF08 60%, #FFCF08 97%);
}

/*--- COMMON ---*/
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2E3031;
}

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

h1 {
  line-height: 1;
  font-weight: 600;
}

@media (max-width: 767px) {
  h1 {
    font-size: calc(22px + 34 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h1 {
    font-size: calc(22px + 20 * 100vw / 1900);
  }
}

h2 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h2 {
    font-size: calc(24px + 23.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h2 {
    font-size: calc(24px + 14 * 100vw / 1900);
  }
}

h3 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h3 {
    font-size: calc(20px + 13.6 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h3 {
    font-size: calc(20px + 8 * 100vw / 1900);
  }
}

h4 {
  font-weight: 500;
}

@media (max-width: 767px) {
  h4 {
    font-size: calc(20px + 6.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  h4 {
    font-size: calc(20px + 4 * 100vw / 1900);
  }
}

p {
  line-height: 1.4;
}

@media (max-width: 767px) {
  p {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  p {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

a {
  text-decoration: none;
}

p:not(:last-child) {
  margin-bottom: 10px;
}

.container {
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 15px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  border: none;
  background: #4CB75D;
  box-sizing: border-box;
  padding: 14px 30px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 26px 26px;
  cursor: pointer;
}

@media (max-width: 575px) {
  .btn {
    padding: 12px 30px;
  }
}

.visibility-cart {
  display: none;
  visibility: hidden;
  font-size: 0;
}

.map-dostavka {
  height: 220px;
  margin: 20px 0;
}

.text-bold {
  font-weight: 600;
}

/*--- COMMON ---*/
/*--- HEADER ---*/
.header {
  background-color: #2C3236;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
  }
}

.container-header {
  padding-top: 28px;
  padding-bottom: 28px;
}

@media (max-width: 767px) {
  .container-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-catalog__link {
  display: block;
  background-color: #4CB75D;
  box-sizing: border-box;
  padding: 10px 30px;
  border-radius: 26px 26px;
  color: #fff;
  font-weight: 600;
}

.wrap-search {
  width: 250px;
  position: relative;
}

@media (max-width: 767px) {
  .wrap-search {
    width: 55%;
  }
}

.wrap-search__input {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding: 10px 14px;
  border-radius: 26px 26px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wrap-search__input::-moz-placeholder {
  color: #fff;
}

.wrap-search__input::placeholder {
  color: #fff;
}

.wrap-search__img {
  position: absolute;
  top: 12px;
  right: 15px;
}

.logo {
  width: 70px;
}

.logo__link {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 767px) {
  .logo__link {
    font-size: calc(16px + 0 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .logo__link {
    font-size: calc(16px + 0 * 100vw / 1900);
  }
}

.social {
  display: flex;
}

@media (max-width: 600px) {
  .social {
    display: none;
  }
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid #424445;
}

.social__link:not(:last-child) {
  margin-right: 10px;
}

.social__img {
  width: 18px;
}

.adres-hero {
  display: flex;
  align-items: center;
  color: #ffffff;
  width: 330px;
}

@media (max-width: 1330px) {
  .adres-hero {
    width: 190px;
  }
}

@media (max-width: 900px) {
  .adres-hero {
    display: none;
  }
}

.adres-hero--time {
  width: 200px;
}

@media (max-width: 1090px) {
  .adres-hero--time {
    display: none;
  }
}

.adres-hero svg {
  margin-right: 10px;
}

.adres-hero__title {
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 14px;
}

.adres-hero__text {
  font-size: 14px;
}

.img-time {
  width: 20px;
  margin-right: 10px;
}

.adres-hero:first-child {
  width: 280px;
}

.adres-hero:last-child {
  width: 300px;
}

@media (max-width: 767px) {
  .header-tel {
    display: none;
  }
}

.header-tel__link {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  color: #ffffff;
}

.header-tel__mail {
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.wrapper-basket__content {
  text-align: center;
}

@media (max-width: 1260px) {
  .wrapper-basket__content {
    display: none;
  }
}

.link-basket {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  width: 120px;
}

@media (max-width: 1260px) {
  .link-basket {
    width: auto;
  }
}

.group-basket {
  position: relative;
}

.group-basket__img {
  width: 28px;
  margin-right: 8px;
}

.total-product {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #4CB75D;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

/*--- BURGER-MENU ---*/
.burger {
  display: none;
  width: 30px;
  height: 25px;
  border: none;
  background-color: transparent;
  font-size: 0;
  position: relative;
}

@media (max-width: 900px) {
  .burger {
    display: block;
  }
}

.burger::before,
.burger::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 26px 26px;
  background-color: rgb(255, 255, 255);
  transition: transform 0.2s ease-in-out;
  z-index: 1;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger__line {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 26px 26px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.burger--active::before {
  top: 47%;
  transform: rotate(45deg);
}

.burger--active::after {
  bottom: 47%;
  transform: rotate(-45deg);
}

.burger--active .burger__line {
  opacity: 0;
}

/*--- BURGER-MENU ---*/
.header-menu {
  background-color: #2C3236;
}

@media (max-width: 900px) {
  .header-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 61px;
    bottom: 0;
    border-top: rgba(255, 255, 255, 0.7);
    transform: translateX(150%);
    transition: transform 0.2s ease-in-out;
    z-index: 100;
  }
}

.active-menu {
  transform: translateX(0);
}

.header-menu--active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

@media (max-width: 900px) {
  .header-menu--active {
    top: 60px;
    bottom: 0;
  }
}

.container-header-menu {
  padding: 0 15px;
}

@media (max-width: 900px) {
  .container-header-menu {
    padding-top: 20px;
  }
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .menu-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .menu-list__item {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .menu-list__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.menu-list__link {
  display: block;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 0;
  color: #ffffff;
}

@media (max-width: 900px) {
  .menu-list__link {
    padding: 10px 0;
  }
}

.menu-list__link:hover {
  text-decoration: underline;
}

.menu-list__link--catalog {
  display: block;
  background-color: #4CB75D;
  box-sizing: border-box;
  padding: 10px 30px;
  border-radius: 26px 26px;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .menu-list__link--catalog {
    background-color: transparent;
    padding: 0px 0;
  }
}

.header-tel--mobile {
  display: none;
}

@media (max-width: 900px) {
  .header-tel--mobile {
    display: block;
    margin: 20px 0 0 0;
    text-align: center;
  }
}

/*--- HEADER ---*/
/*--- DROPDOWN ---*/
.dropdown {
  position: relative;
  padding: 10px 0;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 350px !important;
  background-color: #fff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  z-index: 10;
}

.dropdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-list__item:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
}

.dropdown-list__link {
  display: block;
  color: #2E3031;
  box-sizing: border-box;
  padding: 12px 10px;
}

.dropdown-list__link:hover {
  background-color: #E3F1E9;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/*--- DROPDOWN ---*/
/*--- HERO ---*/
.hero {
  background-color: #fff;
}

.container-hero {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 900px) {
  .container-hero {
    padding-top: 75px;
  }
}

.wrapper-hero {
  background-image: url(../img/background/bg-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 22px 22px;
  box-sizing: border-box;
  padding: 65px 45px;
  position: relative;
}

@media (max-width: 767px) {
  .wrapper-hero {
    padding: 15px 15px;
    background-position: left 0%;
  }
}

.wrapper-hero__content {
  width: 60%;
}

@media (max-width: 1260px) {
  .wrapper-hero__content {
    width: 64%;
  }
}

@media (max-width: 991px) {
  .wrapper-hero__content {
    width: 100%;
  }
}

.wrapper-hero__content h1 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .wrapper-hero__content h1 {
    margin-bottom: 20px;
  }
}

.wrapper-hero__content .btn {
  display: block;
  width: 250px;
  text-align: center;
  margin-top: 55px;
}

@media (max-width: 767px) {
  .wrapper-hero__content .btn {
    margin-top: 25px;
  }
}

@media (max-width: 400px) {
  .wrapper-hero__content .btn {
    width: 100%;
    text-align: center;
  }
}

.wrapper-hero .hero-text {
  line-height: 1.35;
}

@media (max-width: 767px) {
  .wrapper-hero .hero-text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-hero .hero-text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-hero .hero-text:not(:last-child) {
  margin-bottom: 10px;
}

.hero-title {
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .hero-title {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

.hero-img {
  position: absolute;
  width: 480px;
  top: calc(50% - 200px);
  right: 30px;
}

@media (max-width: 1260px) {
  .hero-img {
    width: 370px;
  }
}

@media (max-width: 991px) {
  .hero-img {
    display: none;
  }
}

.wrapper-hero-adv {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .wrapper-hero-adv {
    display: none;
  }
}

.wrapper-hero-adv__item {
  width: calc(25% - 15px);
  background-color: #F6F6F6;
  box-sizing: border-box;
  padding: 15px 15px;
  border-radius: 26px 26px;
}

@media (max-width: 1260px) {
  .wrapper-hero-adv__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .wrapper-hero-adv__item {
    width: 100%;
  }
}

.wrapper-hero-adv__content {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.wrapper-hero-adv__title {
  width: calc(70% - 65px);
  margin-left: 10px;
  font-weight: 600px;
  font-weight: 600;
}

.wrapper-hero-adv__text {
  line-height: 1.35;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #E3F1E9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle__img {
  width: 30px;
}

/*--- HERO ---*/
/*--- FOOTER ---*/
.footer {
  background-color: #2C3236;
}

@media (max-width: 567px) {
  .container-footer {
    padding: 30px 15px;
  }
}

.wrapper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .wrapper-footer {
    flex-direction: column;
  }
}

.footer-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48%;
}

@media (max-width: 1400px) {
  .footer-navigation {
    width: 50%;
  }
}

@media (max-width: 1100px) {
  .footer-navigation {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-navigation {
    flex-direction: column;
  }
}

.menu-footer {
  width: 100%;
}

.list-menu-footer {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .list-menu-footer {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .list-menu-footer__item:not(:last-child) {
    margin-bottom: 10px;
  }
}

.list-menu-footer__link {
  color: var(--color-white);
}

.list-menu-footer__link:hover {
  color: #4CB75D;
  text-decoration: underline;
}

.footer-social {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .footer-social {
    width: 100%;
    margin-top: 20px;
  }
}

.footer-social__phone {
  display: flex;
  flex-direction: column;
}

@media (max-width: 575px) {
  .footer-social__phone {
    justify-content: center;
    text-align: center;
  }
}

.footer-social__tel {
  color: var(--color-white);
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .footer-social__tel {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .footer-social__tel {
    font-size: calc(16px + 0.1052631579vw);
  }
}

.footer-social__mail {
  color: var(--color-white);
}

.footer-social .btn {
  padding: 12px 40px;
}

@media (max-width: 575px) {
  .footer-social .btn {
    width: 100%;
    margin: 20px 0;
    text-align: center;
  }
}

.group-social {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 4px 4px;
}

@media (max-width: 575px) {
  .group-social {
    width: 40px;
    height: 40px;
  }
}

.group-social__img {
  width: 20px;
}

.group-social:first-child .group-social__link.group-social__img {
  width: 26px;
}

@media (max-width: 575px) {
  .group-social:not(:last-child) {
    margin-right: 14px;
  }
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .footer-content {
    flex-direction: column;
  }
}

.footer-content__date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
  background-color: #323a3f;
  box-sizing: border-box;
  padding: 25px 15px;
  border-radius: 8px 8px;
}

@media (max-width: 1400px) {
  .footer-content__date {
    width: 50%;
    padding: 25px 10px;
  }
}

@media (max-width: 1330px) {
  .footer-content__date {
    width: 50%;
    padding: 25px 20px;
  }
}

@media (max-width: 1100px) {
  .footer-content__date {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .footer-content__date {
    flex-direction: column;
    padding: 10px 10px;
    font-size: 14px;
    text-align: center;
  }
}

.footer-content__zakon {
  width: 48%;
}

@media (max-width: 1100px) {
  .footer-content__zakon {
    width: 100%;
    margin-top: 30px;
  }
}

.footer-content__zakon .text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-content__zakon .text a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-decoration: underline;
}

.name-company {
  color: var(--color-white);
  border-right: 1px solid var(--color-white);
  box-sizing: border-box;
  padding-right: 10px;
}

@media (max-width: 575px) {
  .name-company {
    width: 100%;
    border-right: none;
    padding-bottom: 6px;
  }
}

.adres {
  color: var(--color-white);
  padding-left: 10px;
}

@media (max-width: 1400px) {
  .adres {
    padding-left: 10px;
  }
}

@media (max-width: 1330px) {
  .adres {
    padding-left: 10px;
  }
}

@media (max-width: 575px) {
  .adres {
    width: calc(100% - 0);
  }
}

.developed {
  background-color: #323a3f;
  box-sizing: border-box;
  padding: 10px;
}

.developed__link {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}

.developed__link:hover {
  text-decoration: underline;
}

/*--- MODAl ---*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: 100;
}

.modal:target {
  pointer-events: auto;
  opacity: 1;
}

.container-modal {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 567px) {
  .container-modal {
    width: 98%;
  }
}

.modal-content {
  position: absolute;
  top: 80px;
  background-color: #ffffff;
  border-radius: 24px 24px;
  width: 480px;
  box-sizing: border-box;
  padding: 20px 20px;
}

@media (max-width: 567px) {
  .modal-content {
    top: 10px;
    width: 98%;
    left: 1%;
    padding: 10px 10px;
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--color-black);
}

@media (max-width: 767px) {
  .close {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .close {
    font-size: calc(18px + 4 * 100vw / 1900);
  }
}

.close::before {
  position: absolute;
  content: "✖";
  top: 5px;
  right: 5px;
}

.close:hover {
  color: #f12828;
}

.modal-title {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 767px) {
  .modal-title {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .modal-title {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

.modal-text {
  text-align: center;
  line-height: 1.35;
}

.form-modal {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 567px) {
  .form-modal {
    margin-top: 10px;
  }
}

.form-modal .btn {
  width: 300px;
  margin: 0 auto;
  padding: 12px 30px;
}

@media (max-width: 567px) {
  .form-modal .btn {
    width: 100%;
  }
}

.form-modal__text {
  margin-bottom: 6px;
}

.form-modal__input {
  width: 100%;
  height: 46px;
  border: 1px solid #bfbfbf;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 26px 26px;
  outline-color: rgba(76, 183, 94, 0.3647058824);
}

@media (max-width: 567px) {
  .form-modal__input {
    height: 40px;
  }
}

.form-modal__massage {
  width: 100%;
  height: 90px;
  border: 1px solid #bfbfbf;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 26px 26px;
  resize: vertical;
  outline-color: rgba(76, 183, 94, 0.3647058824);
}

@media (max-width: 567px) {
  .form-modal__massage {
    height: 75px;
  }
}

.form-modal-group {
  width: 100%;
  margin-bottom: 10px;
}

.form-text {
  margin-top: 10px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .form-text {
    font-size: calc(12px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .form-text {
    font-size: calc(12px + 2 * 100vw / 1900);
  }
}

.form-link {
  color: #2E3031;
  font-weight: 500;
}

/*--- MODAl ---*/
/*--- ABOUT ---*/
.about {
  border: 1px solid #e1e1e1;
}

.wrapper-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .wrapper-about {
    flex-direction: column-reverse;
  }
}

.wrapper-about__company {
  width: 300px;
}

@media (max-width: 1300px) {
  .wrapper-about__company {
    width: 220px;
  }
}

@media (max-width: 1100px) {
  .wrapper-about__company {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.wrapper-about__subtext {
  text-transform: uppercase;
  color: #bfbfbf;
}

.wrapper-about__content {
  width: calc(100% - 320px);
}

@media (max-width: 1300px) {
  .wrapper-about__content {
    width: calc(100% - 230px);
  }
}

@media (max-width: 1100px) {
  .wrapper-about__content {
    width: 100%;
  }
}

.wrapper-about__text {
  margin: 30px 0;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .wrapper-about__text {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-about__text {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 991px) {
  .wrapper-about__text {
    margin-bottom: 10px;
  }
}

.wrapper-about__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.title-about {
  font-weight: 600;
  margin: 12px 0;
}

@media (max-width: 767px) {
  .title-about {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .title-about {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

@media (max-width: 1100px) {
  .title-about {
    display: none;
  }
}

.btn-about {
  display: block;
  width: 200px;
  text-align: center;
  color: var(--color-black);
  font-weight: 500;
  border: 1px solid #4CB75D;
  border-radius: 26px 26px;
  box-sizing: border-box;
  padding: 12px 30px;
  transition: background 0.2s ease-in-out;
}

.btn-about:hover {
  background: #4CB75D;
  color: #fff;
}

@media (max-width: 1100px) {
  .btn-about {
    margin-top: 20px;
    width: 280px;
  }
}

@media (max-width: 400px) {
  .btn-about {
    width: 100%;
  }
}

.about-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 32%;
}

@media (max-width: 991px) {
  .about-group {
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
  }
}

.about-group__img {
  width: 40px;
}

.about-group__content {
  width: calc(100% - 60px);
}

.about-group__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.about-group__text {
  line-height: 1.35;
}

/*--- ABOUT ---*/
/*--- HERO-CONTACT ---*/
@media (max-width: 575px) {
  .container-hero-contact {
    padding-top: 10px;
  }
}

.container-hero-contact h2 {
  margin-bottom: 20px;
}

.wrapper-hero-contact {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .wrapper-hero-contact {
    flex-direction: column;
  }
}

.wrapper-hero-contact__content {
  width: 45%;
}

.wrapper-hero-contact__content .title {
  line-height: 1.4;
}

@media (max-width: 767px) {
  .wrapper-hero-contact__content .title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-hero-contact__content .title {
    font-size: calc(16px + 0.1052631579vw);
  }
}

@media (max-width: 860px) {
  .wrapper-hero-contact__content {
    width: 100%;
  }
}

.wrapper-hero-contact__online {
  width: 50%;
}

.wrapper-hero-contact__online h3 {
  margin-bottom: 10px;
}

.wrapper-hero-contact__online .text {
  margin-bottom: 20px;
}

@media (max-width: 860px) {
  .wrapper-hero-contact__online {
    width: 100%;
  }
}

.group-contact {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 0;
}

@media (max-width: 860px) {
  .group-contact {
    padding: 20px 0 10px 0;
  }
}

@media (max-width: 570px) {
  .group-contact {
    flex-wrap: wrap;
  }
}

.group-contact__icon {
  width: 100%;
}

.group-contact__title {
  font-size: 18px;
  font-weight: 500;
}

.group-contact__text {
  font-weight: 400;
  margin-top: 4px;
}

.group-contact__link {
  display: flex;
  align-self: center;
  background-color: #28a8e9;
  border-radius: 26px 26px 26px 26px;
  box-sizing: border-box;
  padding: 14px 45px;
  color: #fff;
}

@media (max-width: 575px) {
  .group-contact__link {
    width: 100%;
    justify-content: center;
  }
}

.group-contact__link:not(:last-child) {
  margin-right: 10px;
  background-color: #2cb742;
}

@media (max-width: 575px) {
  .group-contact__link:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.group-contact__img {
  margin-right: 10px;
}

.circle-contact {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px;
  margin-right: 10px;
}

@media (max-width: 575px) {
  .circle-contact {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575px) {
  .group-contact__content {
    width: calc(100% - 55px);
  }
}

.group-contact:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.forms-text {
  font-size: 18px;
  margin: 10px 0;
  font-weight: 600;
}

.map-contact {
  width: 100%;
  height: 100%;
}

/*--- HERO-CONTACT ---*/
/*--- ADVANTEGES ---*/
.advanges {
  background-color: #F6F6F6;
}

.wrapper-advanges {
  margin-top: 40px;
}

.wrapper-advanges__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advanges-content .text span {
  font-weight: 600;
}

.group-advanges {
  background-color: #E3F1E9;
  box-sizing: border-box;
  width: 24%;
  padding: 20px 20px;
  border-radius: 26px 26px;
  margin-top: 30px;
}

@media (max-width: 1260px) {
  .group-advanges {
    width: 49.2%;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .group-advanges {
    width: 100%;
    margin-top: 12px;
  }
}

.group-advanges__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 2px 2px;
  background-color: #4CB75D;
  margin-bottom: 10px;
  position: relative;
}

.group-advanges__circle::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon/check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
}

.group-advanges__text {
  width: calc(100% - 14px);
  line-height: 1.35;
}

.group-advanges__text span {
  font-weight: 600;
}

/*--- ADVANTEGES ---*/
/*--- NEWS-HERO ---*/
.news-hero {
  background-color: #F6F6F6;
}

.container-news-hero {
  padding-bottom: 50px;
}

.swiper h2 {
  margin-bottom: 30px;
}

.slide-news {
  display: flex;
  justify-content: space-between;
  height: 310px;
  margin: 6px 6px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

@media (max-width: 767px) {
  .slide-news {
    height: auto;
  }
}

.swiper-slide__content {
  width: 60%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 20px;
}

@media (max-width: 767px) {
  .swiper-slide__content {
    width: 100%;
  }
}

.swiper-slide__title {
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .swiper-slide__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .swiper-slide__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.swiper-slide__text {
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.swiper-slide__item {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 400px) {
  .swiper-slide__item {
    flex-direction: column;
  }
}

.swiper-slide__image {
  width: 40%;
  height: 310px;
}

@media (max-width: 767px) {
  .swiper-slide__image {
    display: none;
  }
}

.swiper-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.swiper-group {
  display: flex;
  align-items: center;
}

.swiper-group__img {
  width: 20px;
  margin-right: 6px;
}

.swiper-group__link {
  color: var(--color-black);
  box-sizing: border-box;
  padding: 8px 14px;
  border: 1px solid #4CB75D;
  border-radius: 26px 26px;
  transition: background 0.25s ease-in-out;
}

@media (max-width: 400px) {
  .swiper-group__link {
    text-align: center;
    margin: 10px 0 0 0;
  }
}

.swiper-group__link:hover {
  background: #4CB75D;
  color: #ffffff;
}

/*--- NEWS-HERO ---*/
/*--- CATALOG-HERO ---*/
.container-hero-catalog h2 {
  text-align: center;
}

.wrapper-hero-catalog {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.wrapper-hero-catalog__item {
  width: calc(25% - 15px);
  background-image: url(../img/background/elipse.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  box-sizing: border-box;
  padding: 10px 10px;
  overflow: hidden;
}

@media (max-width: 1260px) {
  .wrapper-hero-catalog__item {
    width: calc(33.333% - 15px);
  }
}

@media (max-width: 991px) {
  .wrapper-hero-catalog__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 567px) {
  .wrapper-hero-catalog__item {
    width: 100%;
  }
}

.wrapper-hero-catalog__item .btn {
  display: block;
  width: 60%;
  text-align: center;
  margin: 10px auto;
  margin-top: 14px;
  padding: 8px 30px;
  background: #ffffff;
  color: var(--color-black);
  transition: background 0.25s ease-in-out;
  border: 1px solid #4CB75D;
}

@media (max-width: 567px) {
  .wrapper-hero-catalog__item .btn {
    width: 100%;
    text-align: center;
  }
}

.wrapper-hero-catalog__item .btn:hover {
  background: #4CB75D;
  color: #fff;
  border: 1px solid #4CB75D;
}

.wrapper-hero-catalog__item:last-child {
  padding: 20px 20px;
  width: calc(50% - 15px);
}

@media (max-width: 1260px) {
  .wrapper-hero-catalog__item:last-child {
    display: none;
  }
}

@media (max-width: 567px) {
  .wrapper-hero-catalog__item:last-child {
    display: block;
    width: 100%;
  }
}

.wrapper-hero-catalog__item:last-child .wrapper-hero-catalog__title {
  margin-top: 0;
}

@media (max-width: 767px) {
  .wrapper-hero-catalog__item:last-child .wrapper-hero-catalog__title {
    font-size: calc(20px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-hero-catalog__item:last-child .wrapper-hero-catalog__title {
    font-size: calc(20px + 2 * 100vw / 1900);
  }
}

.wrapper-hero-catalog__item:last-child .wrapper-hero-catalog__text span {
  font-weight: 600;
}

.wrapper-hero-catalog__item:last-child .btn {
  background: #4CB75D;
  color: #fff;
}

.wrapper-hero-catalog__item:last-child .btn:hover {
  color: var(--color-black);
  background: #fff;
}

.wrapper-hero-catalog__link {
  color: var(--color-black);
}

.wrapper-hero-catalog__img {
  width: 100%;
  transition: transform 0.2s ease-in-out;
}

.wrapper-hero-catalog__title {
  text-align: center;
  font-weight: 500;
  margin: 16px 0px;
}

@media (max-width: 767px) {
  .wrapper-hero-catalog__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-hero-catalog__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-hero-catalog__text {
  line-height: 1.3;
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.wrapper-hero-catalog__link:hover .wrapper-hero-catalog__img {
  transform: scale(1.15);
}

.wrapper-hero-catalog__item:hover .wrapper-hero-catalog__title {
  color: #4CB75D;
}

.form-catalog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-catalog__input {
  width: 48%;
  height: 44px;
  border: 1px solid #bfbfbf;
  border-radius: 26px 26px;
  box-sizing: border-box;
  padding: 10px 20px;
  margin-bottom: 10px;
  outline-color: rgba(76, 183, 94, 0.3647058824);
}

@media (max-width: 567px) {
  .form-catalog__input {
    width: 100%;
  }
}

.form-catalog__text {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.3;
}

.form-catalog__text a {
  font-weight: 500;
  color: var(--color-black);
}

.form-catalog .btn {
  padding: 10px 20px;
}

.form-catalog__item {
  display: flex;
  width: 100%;
  margin-top: 0px;
}

@media (max-width: 600px) {
  .form-catalog__item {
    flex-direction: column;
  }
}

.btn-label {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  width: calc(33.333% - 10px);
  box-sizing: border-box;
  padding: 12px 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  border: 1px solid transparent;
}

@media (max-width: 600px) {
  .btn-label {
    width: 100%;
  }
}

.btn-label:not(:last-child) {
  margin-right: 15px;
}

@media (max-width: 600px) {
  .btn-label:not(:last-child) {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.form-catalog__item label {
  position: relative;
  padding-left: 30px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 575px) {
  .form-catalog__item label {
    width: 31.8%;
  }
}

.form-catalog__item label::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 100%;
  border: 1px solid #61a337;
  top: 1px;
  left: 10px;
}

.form-catalog__item label:not(:last-child) {
  margin-right: 10px;
}

.form-catalog__radio {
  display: none;
}

.form-catalog__radio:checked+label::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #61a337;
  top: 4px;
  left: 13px;
}

/*--- CATALOG-HERO ---*/
/*--- PAGES ---*/
.container-pages {
  padding: 50px 0 40px 0;
}

@media (max-width: 900px) {
  .container-pages {
    padding: 70px 0 20px 0;
  }
}

.wrapper-pages {
  display: flex;
  flex-wrap: wrap;
}

.wrapper-pages__item {
  line-height: 1.3;
}

@media (max-width: 767px) {
  .wrapper-pages__item {
    font-size: calc(12px + 6.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-pages__item {
    font-size: calc(12px + 4 * 100vw / 1900);
  }
}

.wrapper-pages__item:not(:last-child) {
  margin-right: 20px;
  font-weight: 400;
  position: relative;
}

.wrapper-pages__item:not(:last-child)::before {
  position: absolute;
  content: "|";
  right: -12px;
}

.wrapper-pages__link {
  color: var(--color-black);
}

.wrapper-pages__item:last-child {
  color: #A8A8A8;
}

/*--- PAGES ---*/
/*--- CATALOG ---*/
.catalog {
  background-color: #fcfcfc;
  border-bottom: 1px solid #e1e1e1;
}

.container-catalog {
  padding-top: 10px;
  padding-bottom: 40px;
}

@media (max-width: 500px) {
  .container-catalog {
    padding-bottom: 30px;
  }
}

.container-catalog h4 {
  margin: 20px 0;
}

.container-catalog .text {
  font-size: 16px;
}

.container-catalog .text span {
  font-size: 18px;
  font-weight: 600;
}

.wrapper-catalog {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .wrapper-catalog {
    flex-direction: column;
    margin-top: 20px;
  }
}

.wrapper-navigation {
  border-radius: 8px 8px;
  width: 300px;
}

@media (max-width: 1260px) {
  .wrapper-navigation {
    width: 260px;
  }
}

@media (max-width: 900px) {
  .wrapper-navigation {
    width: 100%;
    margin-bottom: 20px;
  }
}

.wrapper-navigation__content {
  position: sticky;
  top: 80px;
}

.wrapper-navigation__title {
  box-sizing: border-box;
  padding: 10px 20px;
  text-align: center;
  background-color: #4CB75D;
  border: 1px solid #4CB75D;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px 8px 0 0;
}

@media (max-width: 767px) {
  .wrapper-navigation__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-navigation__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 900px) {
  .wrapper-navigation__title {
    display: none;
  }
}

.price-filter {
  border: 1px solid #e4e4e4;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
  padding: 20px 20px;
  border-radius: 8px 8px;
  background-color: #ffffff;
}

@media (max-width: 900px) {
  .price-filter {
    padding: 8px 10px;
  }
}

.fillter-product-price {
  display: none;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .fillter-product-price {
    display: flex;
  }
}

@media (max-width: 767px) {
  .fillter-product-price__title {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .fillter-product-price__title {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.fillter-product-price__icon {
  width: 25px;
}

.navigation-catalog {
  box-sizing: border-box;
  padding: 10px 20px;
  margin-bottom: 24px;
  border: 1px solid #e4e4e4;
  border-radius: 0 0 8px 8px;
  background-color: #ffffff;
}

@media (max-width: 900px) {
  .navigation-catalog {
    display: none;
  }
}

.navigation-catalog-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation-catalog-list__item:not(:last-child) {
  border-bottom: 1px dashed #e4e4e4;
}

.navigation-catalog-list__link {
  display: block;
  color: var(--color-black);
  box-sizing: border-box;
  padding: 10px 0;
}

.wrapper-catalog-products {
  width: calc(100% - 330px);
}

@media (max-width: 1260px) {
  .wrapper-catalog-products {
    width: calc(100% - 280px);
  }
}

@media (max-width: 900px) {
  .wrapper-catalog-products {
    width: 100%;
  }
}

.catalog-products {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.catalog-products__item {
  width: calc(33.333% - 15px);
  box-sizing: border-box;
  padding: 15px 15px;
  border-radius: 6px 6px;
  background-color: var(--color-white);
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

@media (max-width: 1134px) {
  .catalog-products__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 580px) {
  .catalog-products__item {
    width: 100%;
  }
}

.catalog-products__item--brend {
  width: calc(25% - 15px);
}

.catalog-products__item--main {
  background-image: url(../img/background/elipse.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

.catalog-products__item--main .btn {
  display: block;
  width: 60%;
  text-align: center;
  margin: 10px auto;
  margin-top: 14px;
  padding: 8px 30px;
  background: #ffffff;
  color: var(--color-black);
  transition: background 0.25s ease-in-out;
  border: 1px solid #4CB75D;
}

.catalog-products__item--main .btn:hover {
  background: #4CB75D;
  color: #fff;
  border: 1px solid #4CB75D;
}

.catalog-products__img {
  width: 100%;
}

.catalog-products__title {
  margin: 14px 0;
  line-height: 1.2;
  color: var(--color-black);
  font-weight: 500;
}

@media (max-width: 767px) {
  .catalog-products__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .catalog-products__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

@media (max-width: 900px) {
  .catalog-products__title {
    margin: 10px 0;
  }
}

.catalog-products__title:hover {
  color: #4CB75D;
}

.catalog-products__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-height: 1.3;
  margin-bottom: 14px;
}

.wrapper-sort {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.title-sort {
  font-weight: 500;
  margin-right: 16px;
}

.sort-price {
  width: 250px;
  border-radius: 26px 26px;
  background-color: #ffffff;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.sort-price__title {
  box-sizing: border-box;
  padding: 10px 20px;
}

.sort-price__selected {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100% !important;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 10px 10px;
  z-index: 10;
}

.sort-price__option {
  padding: 8px 12px;
}

.sort-price__option:hover {
  background-color: #f5f5f5;
  border-radius: 10px 10px;
}

.catalog-price {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .catalog-price {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .catalog-price {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.catalog-price__text {
  font-size: 16px;
  color: #A8A8A8;
}

.catalog-price-product {
  font-weight: 600;
}

.wrapper-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper-counter {
  display: flex;
  justify-content: flex-start;
  font-weight: 500;
  width: 49%;
  border: 1px solid #e1e1e1;
  border-radius: 26px 26px;
}

@media (max-width: 767px) {
  .wrapper-counter {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-counter {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.wrapper-counter__btn {
  width: 33.33%;
  background-color: transparent;
  border: none;
  border-radius: 26px 26px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 10px 10px;
  transition: background 0.2s ease-in-out;
}

.wrapper-counter__btn:hover {
  background: #E3F1E9;
}

.wrapper-counter__btn:first-child:hover {
  border-radius: 26px 0 0 26px;
}

.wrapper-counter__btn:last-child:hover {
  border-radius: 0 26px 26px 0;
}

.wrapper-counter__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  box-sizing: border-box;
  padding: 10px 10px;
}

.wrapper-buy-add {
  width: 46%;
  border: none;
  background: #E3F1E9;
  color: #4CB75D;
  text-align: center;
  box-sizing: border-box;
  border-radius: 26px 26px;
  padding: 12px 10px;
  transition: background 0.2s ease-in-out;
  cursor: pointer;
}

.wrapper-buy-add:hover {
  background: #4CB75D;
  color: var(--bg-black);
}

.btn-basket:disabled {
  background: #575757;
  color: var(--color-white);
  cursor: no-drop;
}

.wrapper-buy-add:disabled {
  font-size: 14px;
}

.btn-filter {
  padding: 12px 20px;
  width: 100%;
}

@media (max-width: 1260px) {
  .btn-filter {
    padding: 10px 10px;
  }
}

.reset {
  color: #ACACAC;
  margin-top: 18px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 991px) {
  .fillter-content {
    width: 100%;
    position: absolute;
    transform: translateX(-150%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 991px) {
  .fillter-content--active {
    width: 100%;
    position: static;
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.burger-fillter {
  position: absolute;
  width: 30px;
  height: 30px;
  top: -2px;
  left: 200px;
  background-color: transparent;
  font-size: 0;
  border: none;
  display: none;
}

@media (max-width: 991px) {
  .burger-fillter {
    display: block;
  }
}

@media (max-width: 575px) {
  .burger-fillter {
    left: auto;
    right: 30px;
  }
}

.burger-fillter::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon/filter.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .fillter-price {
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .fillter-price {
    display: none;
    margin-top: 10px;
  }
}

.fillter-price--active {
  display: block;
}

.fillter-price__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-black);
}

.range {
  width: 100%;
  cursor: pointer;
}

.filters {
  margin: 0 auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.filters-price__inputs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e4e1e4;
}

@media (max-width: 900px) {
  .filters-price__inputs {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.filters-price__label {
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  width: 47%;
  height: 40px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .filters-price__label {
    height: 36px;
  }
}

.filters-price__text {
  font-size: 14px;
  color: gray;
}

.filters-price__text:first-child {
  margin-right: 5px;
}

.filters-price__text:last-child {
  margin-left: 5px;
}

.filters-price__input {
  border: none;
  width: 80%;
  color: #4D4D4D;
  font-size: 13px;
  background-color: var(--color-white);
  box-sizing: border-box;
  padding: 8px;
  outline: none;
  border: 1px solid var(--color-white);
  border-radius: 4px;
}

.filters-price__input::-moz-placeholder {
  color: var(--color-black);
  font-size: 14px;
}

.filters-price__input::placeholder {
  color: var(--color-black);
  font-size: 14px;
}

.filters-price__title {
  margin-bottom: 20px;
}

.filters-price__slider {
  width: 92%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.noUi-target {
  background-color: #bfbfbf;
  border: none;
  border-radius: 100px;
  box-shadow: none;
  height: 3px;
}

.noUi-handle::after,
.noUi-handle::before {
  display: none;
}

.noUi-handle {
  box-shadow: none;
  border-radius: 100%;
  background-color: #fff;
  border: 3px solid #5d71dd;
}

.noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  top: -10px;
}

.noUi-horizontal .noUi-handle-upper {
  right: 0;
}

/*--- CATALOG ---*/
/*--- INFO-PRODUCTS ---*/
.wrapper-products {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 1260px) {
  .wrapper-products {
    position: relative;
  }
}

@media (max-width: 991px) {
  .wrapper-products {
    flex-direction: column;
    margin-top: 45px;
  }
}

.wrapper-products__visual {
  width: 45%;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 0px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  border-radius: 12px 12px;
}

@media (max-width: 1330px) {
  .wrapper-products__visual {
    width: 40%;
  }
}

@media (max-width: 1260px) {
  .wrapper-products__visual {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .wrapper-products__visual {
    width: 100%;
    padding-top: 20px;
  }
}

@media (max-width: 991px) {
  .wrapper-products__visual .swiper {
    padding-bottom: 2px;
  }
}

.wrapper-products__content {
  width: calc(55% - 20px);
}

@media (max-width: 1330px) {
  .wrapper-products__content {
    width: calc(60% - 20px);
  }
}

@media (max-width: 1260px) {
  .wrapper-products__content {
    width: calc(65% - 20px);
  }
}

@media (max-width: 991px) {
  .wrapper-products__content {
    width: 100%;
  }
}

.wrapper-products__content h1 {
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wrapper-products__content h1 {
    font-size: calc(23px + 25.5 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-products__content h1 {
    font-size: calc(23px + 15 * 100vw / 1900);
  }
}

@media (max-width: 991px) {
  .wrapper-products__content .title-basket {
    position: absolute;
    top: -55px;
    left: 0;
  }
}

.product-image {
  width: 100%;
}

.product-info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .product-info {
    flex-direction: column;
  }
}

.product-info__parametr {
  width: calc(60% - 20px);
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  border-radius: 12px 12px;
}

@media (max-width: 1330px) {
  .product-info__parametr {
    width: calc(65% - 20px);
  }
}

@media (max-width: 700px) {
  .product-info__parametr {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 1260px) {
  .product-info__parametr .list-info {
    font-size: 14px;
  }
}

.product-info__title {
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .product-info__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .product-info__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.product-info__text {
  line-height: 1.3;
  margin-bottom: 10px;
}

.product-info__buy {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: calc(40% - 0px);
  border: 1px solid #e1e1e1;
  border-radius: 12px 12px;
  background-color: #ffffff;
}

@media (max-width: 1330px) {
  .product-info__buy {
    width: calc(35% - 0px);
  }
}

@media (max-width: 700px) {
  .product-info__buy {
    width: 100%;
    margin-bottom: 10px;
  }
}

.product-info__content {
  box-sizing: border-box;
  padding: 12px 12px;
}

@media (max-width: 1330px) {
  .product-info__content .wrapper-counter {
    width: 100%;
  }
}

.availability {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #e1e1e1;
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.availability-img {
  width: 22px;
  margin-right: 8px;
}

.group-price {
  margin-bottom: 14px;
}

.group-price__title {
  font-weight: 500;
  margin-bottom: 4px;
}

.price-product {
  font-weight: 600;
}

@media (max-width: 767px) {
  .price-product {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .price-product {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.product-basket-btn {
  display: flex;
  width: 100%;
  border: none;
  border-radius: 26px 26px;
  background-color: #4CB75D;
  color: #fff;
  box-sizing: border-box;
  padding: 12px 20px;
  margin-top: 14px;
  cursor: pointer;
}

@media (max-width: 1260px) {
  .product-basket-btn {
    padding: 10px 20px;
  }
}

.product-basket-btn span {
  display: flex;
  justify-content: center;
  text-align: center;
  width: calc(100% - 15px);
}

.buy-click-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: #E3F1E9;
  color: #4CB75D;
  border-radius: 26px 26px;
  box-sizing: border-box;
  padding: 10px 20px;
  margin-top: 14px;
  cursor: pointer;
}

@media (max-width: 1260px) {
  .buy-click-btn {
    padding: 7px 20px;
  }
}

.buy-click-btn span {
  display: flex;
  justify-content: center;
  text-align: center;
  width: calc(100% - 15px);
}

.group-social-product {
  display: flex;
  justify-content: space-between;
  background-color: #E3F1E9;
  margin-top: 14px;
  box-sizing: border-box;
  padding: 12px 12px;
  border-radius: 12px 12px 0 0;
}

@media (max-width: 1260px) {
  .group-social-product {
    margin-top: 0;
  }
}

.group-social-product__text {
  font-size: 14px;
  width: calc(100% - 80px);
}

@media (max-width: 1330px) {
  .group-social-product__text {
    width: calc(100% - 65px);
  }
}

.group-social-product__item {
  display: flex;
  justify-content: space-between;
  width: 80px;
}

@media (max-width: 1330px) {
  .group-social-product__item {
    width: 60px;
  }
}

.social-link-product {
  width: 36px;
}

@media (max-width: 1330px) {
  .social-link-product {
    width: 27px;
  }
}

.social-link-product img {
  width: 100%;
}

.list-info {
  margin: 0;
  padding-bottom: 0;
  padding-left: 30px;
}

.list-info__item {
  line-height: 1.3;
}

.list-info__item a {
  font-weight: 500;
  color: #2C3236;
  text-decoration: underline;
}

.list-info__item:not(:last-child) {
  margin-bottom: 5px;
  padding: 0;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border-bottom: 1px solid #e7e7e7;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .tab {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .tab {
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .tab {
    gap: 5px;
  }
}

/* Style the buttons inside the tab */
.tab button {
  display: flex;
  align-items: center;
  background-color: inherit;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

@media (max-width: 767px) {
  .tab button {
    width: calc(50% - 5px);
    border: 1px solid #e1e1e1;
    padding: 10px 10px;
  }
}

@media (max-width: 560px) {
  .tab button {
    width: 100%;
  }
}

.tab button svg {
  margin-right: 10px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #f1f1f1;
}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 2px solid #4CB75D;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 14px 0px;
  border-top: none;
}

.tabcontent h3 {
  margin: 20px 0;
}

@media (max-width: 600px) {
  .tabcontent h3 {
    margin: 10px 0;
  }
}

.tabcontent .text {
  font-size: 16px;
}

.tabcontent .text a {
  display: block;
}

.title-related-products {
  font-weight: 500;
  margin: 50px 0 30px 0;
}

@media (max-width: 767px) {
  .title-related-products {
    font-size: calc(20px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .title-related-products {
    font-size: calc(20px + 6 * 100vw / 1900);
  }
}

@media (max-width: 900px) {
  .title-related-products {
    margin: 20px 0 30px 0;
  }
}

/*--- INFO-PRODUCTS ---*/
/*--- CARACUL ---*/
.carousel-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 10px;
}

@media (max-width: 1260px) {
  .carousel-item {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 900px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 590px) {
  .carousel-item {
    flex: 0 0 100%;
  }
}

.carousel-item-inner {
  padding: 14px;
  text-align: center;
  border-radius: 6px 6px;
  background-color: var(--color-white);
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.carousel-item-inner .catalog-price {
  text-align: left;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #4CB75D;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 7px;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 590px) {
  .carousel-btn {
    top: 45%;
  }
}

.carousel-btn.prev {
  left: 10px;
}

@media (max-width: 767px) {
  .carousel-btn.prev {
    font-size: calc(20px + 51 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .carousel-btn.prev {
    font-size: calc(20px + 30 * 100vw / 1900);
  }
}

.carousel-btn.next {
  padding-left: 7px;
  right: 10px;
}

@media (max-width: 767px) {
  .carousel-btn.next {
    font-size: calc(20px + 51 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .carousel-btn.next {
    font-size: calc(20px + 30 * 100vw / 1900);
  }
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*--- CARACUL ---*/
/*--- COMPANY ---*/
.company {
  border-bottom: 1px solid #e1e1e1;
}

@media (max-width: 767px) {
  .company .wrapper-hero-adv {
    display: flex;
    margin-top: 0px;
  }
}

.container-company {
  padding-top: 10px;
}

.container-company h1 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .container-company h1 {
    font-size: calc(24px + 27.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .container-company h1 {
    font-size: calc(24px + 16 * 100vw / 1900);
  }
}

.container-company h4 {
  margin: 20px 0;
}

.container-company .text {
  font-size: 16px;
}

.container-company .text span {
  font-size: 18px;
  font-weight: 600;
}

.container-company .list-info {
  margin: 15px 0;
}

.container-company .list-info__item {
  font-style: italic;
}

.container-company .list-info__item span {
  font-weight: 600;
}

.container-company .wrapper-hero-adv {
  margin-top: 40px;
}

.company .catalog-products__text {
  text-align: left;
  font-size: 16px;
}

.company .carousel-container .btn {
  padding: 10px 30px;
}

.company .carousel-container {
  margin-top: 40px;
}

/*--- COMPANY ---*/
/*--- CONTACT ---*/
.container-conatct {
  padding-top: 10px;
}

.container-conatct h1 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .container-conatct h1 {
    font-size: calc(24px + 27.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .container-conatct h1 {
    font-size: calc(24px + 16 * 100vw / 1900);
  }
}

.wrapper-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.wrapper-contact__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapper-contact__img {
  width: 22px;
}

.wrapper-contact__content {
  width: calc(100% - 50px);
}

.wrapper-contact__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #f3f3f3;
  border-radius: 50%;
}

.map-contact {
  width: 100%;
  height: 430px;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .map-contact {
    height: 220px;
  }
}

.container-online {
  background-image: url(../img/background/bg-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  position: relative;
  margin-bottom: 110px;
}

@media (max-width: 991px) {
  .container-online {
    padding-top: 30px;
    padding-bottom: 30px;
    width: calc(100% - 0px);
    margin-bottom: 50px;
  }
}

.wrapper-online {
  display: flex;
  justify-content: space-between;
  color: var(--color-black);
}

@media (max-width: 991px) {
  .wrapper-online {
    flex-direction: column;
  }
}

.wrapper-online__item {
  width: 35%;
}

@media (max-width: 991px) {
  .wrapper-online__item {
    width: 100%;
    text-align: center;
  }
}

.wrapper-online__item:last-child {
  width: 18%;
}

@media (max-width: 991px) {
  .wrapper-online__item:last-child {
    width: 100%;
    margin-top: 10px;
  }
}

.wrapper-online__text {
  margin-top: 20px;
  line-height: 1.4;
}

.wrapper-online__link {
  font-weight: 600;
  color: var(--color-black);
}

@media (max-width: 767px) {
  .wrapper-online__link {
    font-size: calc(22px + 10.2 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-online__link {
    font-size: calc(22px + 0.3157894737vw);
  }
}

@media (max-width: 575px) {
  .wrapper-online__link {
    display: block;
    margin-top: 10px;
  }
}

.online-social {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 24px;
  box-sizing: border-box;
  padding: 6px 20px;
  width: 180px;
  color: var(--color-black);
}

@media (max-width: 991px) {
  .online-social {
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .online-social {
    padding: 5px 20px;
    width: 100%;
  }
}

.online-social__img {
  margin-right: 10px;
}

@media (max-width: 575px) {
  .online-social__img {
    margin-right: 16px;
  }
}

.online-social:not(:last-child) {
  margin-bottom: 10px;
}

.online-img {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .online-img {
    display: none;
  }
}

.form-question__content {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 767px) {
  .form-question__content {
    flex-direction: column;
  }
}

.form-question__item {
  width: 49.5%;
}

@media (max-width: 767px) {
  .form-question__item {
    width: 100%;
  }
}

.form-question__item .btn {
  margin-top: 18px;
  padding: 14px 40px;
}

.form-question__label {
  position: absolute;
  top: -10px;
  left: 5px;
  background-color: var(--color-white);
  color: rgba(136, 136, 136, 0.6);
  box-sizing: border-box;
  padding: 0 5px;
}

.form-question__input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  padding: 10px 10px;
  border: 1px solid #E0E0E0;
}

.form-question__file {
  display: none;
}

.form-question__text {
  line-height: 1.4;
}

@media (max-width: 767px) {
  .form-question__text {
    font-size: calc(14px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .form-question__text {
    font-size: calc(14px + 2 * 100vw / 1900);
  }
}

.form-question__massage {
  width: 100%;
  height: 185px;
  box-sizing: border-box;
  padding: 20px 10px;
  border: 1px solid #E0E0E0;
  margin-bottom: 10px;
}

.form-question .btn {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .form-question .btn {
    width: 100%;
  }
}

.form-question-group:not(:last-child) {
  margin-bottom: 20px;
}

.form-question-group {
  position: relative;
}

.group-file {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  position: relative;
  box-sizing: border-box;
  padding: 10px 10px;
  padding-left: 15px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .group-file {
    margin-bottom: 25px;
  }
}

.group-file::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-image: url(../img/background/bg-5.png);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
}

.group-file__img {
  width: 25px;
}

.group-file__text {
  cursor: pointer;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
  }
}

.contact-info .wrapper-contact {
  width: 350px;
  justify-content: flex-start;
  flex-direction: column;
}

@media (max-width: 700px) {
  .contact-info .wrapper-contact {
    width: 100%;
  }
}

.contact-info .wrapper-contact .wrapper-contact__item {
  width: 100%;
}

.contact-info .map-contact {
  width: calc(100% - 400px);
  height: 300px;
}

@media (max-width: 700px) {
  .contact-info .map-contact {
    width: 100%;
    height: 200px;
  }
}

.wrapper-contact__item:not(:last-child) {
  margin-bottom: 20px;
}

.wrapper-contact__link {
  color: var(--color-black);
}

/*--- CONTACT ---*/
/*--- BASKET ---*/
.wrapper-basket-page {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 40px 0;
}

@media (max-width: 991px) {
  .wrapper-basket-page {
    margin: 30px 0 0 0;
  }
}

@media (max-width: 991px) {
  .wrapper-basket-page {
    flex-direction: column-reverse;
  }
}

.basket-list {
  width: calc(100% - 390px);
}

@media (max-width: 1239px) {
  .basket-list {
    width: calc(100% - 360px);
  }
}

@media (max-width: 991px) {
  .basket-list {
    width: 100%;
  }
}

.basket-scroll {
  max-height: 370px;
  background-color: var(--color-white);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 4px 10px 10px 2px;
  transition: max-height 0.05s ease-in-out;
  scrollbar-width: thin;
  scrollbar-color: #777;
  scroll-behavior: smooth;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .basket-scroll {
    max-height: 500px;
  }
}

.list-product-basket {
  width: 100%;
}

.list-product-basket__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 5px 5px;
}

@media (max-width: 1239px) {
  .list-product-basket__item {
    padding: 10px 10px;
  }
}

@media (max-width: 767px) {
  .list-product-basket__item {
    padding-top: 0;
    flex-direction: column;
    position: relative;
  }
}

.list-product-basket__item:not(:last-child) {
  margin-bottom: 16px;
}

.list-product-basket__img {
  width: 120px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px;
}

@media (max-width: 1239px) {
  .list-product-basket__img {
    width: 100px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .list-product-basket__img {
    width: 100%;
    height: auto;
    border: 1px solid transparent;
  }
}

.list-product-basket__content {
  width: calc(100% - 470px);
  margin-left: 20px;
}

@media (max-width: 1239px) {
  .list-product-basket__content {
    width: calc(100% - 340px);
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .list-product-basket__content {
    width: 100%;
    margin: 10px;
  }
}

.list-product-basket__title {
  margin-bottom: 6px;
  color: var(--color-black);
  font-weight: 500;
}

@media (max-width: 767px) {
  .list-product-basket__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .list-product-basket__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.list-product-basket__art {
  color: #888888;
}

.list-product-basket__counter {
  width: 250px;
}

@media (max-width: 767px) {
  .list-product-basket__counter {
    width: 100%;
    margin: 0 auto;
  }

  .list-product-basket__counter .wrapper-counter {
    width: 100%;
  }
}

.list-product-basket__title:hover {
  color: #4CB75D;
}

.link-product:hover {
  color: var(--logo-green);
  border-bottom: 1px dashed var(--logo-green);
}

.delete-product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 2px 2px;
  box-sizing: border-box;
  padding: 10px 10px;
  cursor: pointer;
}

.delete-product::before {
  content: "✖";
}

.delete-product:hover {
  transition: all 0.05s ease-in-out;
  background: #f05151;
  border: 1px solid #f05151;
  color: var(--color-white);
}

@media (max-width: 767px) {
  .delete-product {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

.basket-info {
  width: 350px;
  box-sizing: border-box;
  padding: 20px 20px;
  background-color: #f9f9f9;
  border: 1px solid #e1e1e1;
  position: sticky;
  top: 80px;
}

@media (max-width: 991px) {
  .basket-info {
    display: none;
    width: 100%;
  }
}

.basket-info h3 {
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .basket-info h3 {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .basket-info h3 {
    font-size: calc(18px + 4 * 100vw / 1900);
  }
}

.wrapper-all-products__content {
  display: flex;
}

.wrapper-all-products__num {
  margin-left: 10px;
  font-weight: 500;
}

.wrapper-all-sum {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #bfbfbf;
}

.wrapper-all-sum__text {
  margin-top: 4px;
}

.all-price {
  font-weight: 500;
}

.wrapper-social-basket {
  margin-top: 24px;
}

.wrapper-social-basket .btn {
  width: 100%;
  text-align: center;
  padding: 10px 20px;
}

.group-social-basket {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #D7D9DC;
  margin-top: 18px;
  width: 100%;
}

.group-social-basket__text {
  font-size: 16px;
  line-height: 1.4;
}

.group-social-basket__item {
  display: flex;
  align-items: center;
  margin-left: 10px;
  width: calc(40% - 10px);
}

.social-basket-link {
  text-decoration: none;
}

.social-basket-link img {
  width: 38px;
}

@media (max-width: 1180px) {
  .social-basket-link img {
    width: 35px;
  }
}

.social-basket-link:not(:last-child) {
  display: block;
  margin-right: 10px;
}

.form-basket {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}

.form-basket__input {
  width: 49%;
  height: 48px;
  box-sizing: border-box;
  padding: 14px 14px;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 6px 6px;
  outline-color: rgba(96, 163, 55, 0.4862745098);
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .form-basket__input {
    width: 100%;
    margin-bottom: 10px;
    height: 40px;
  }
}

.form-basket__input--adress {
  width: 100%;
  margin-top: 10px;
}

.form-basket__input:first-child {
  width: 100%;
}

.form-basket__radio {
  display: none;
}

.form-basket__massage {
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  padding: 14px 14px;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 6px 6px;
  resize: vertical;
  outline-color: rgba(96, 163, 55, 0.4862745098);
}

@media (max-width: 575px) {
  .form-basket__massage {
    width: 100%;
    margin-bottom: 0px;
    padding: 10px 10px;
    height: 90px;
  }
}

.form-basket .btn {
  padding: 14px 30px;
}

@media (max-width: 500px) {
  .form-basket .btn {
    width: 100%;
    padding: 12px 30px;
  }
}

.form-basket-content {
  width: 100%;
}

.text-adress-doskavki {
  width: 100%;
}

.form-basket-title {
  font-weight: 600;
  margin: 12px 0;
}

@media (max-width: 767px) {
  .form-basket-title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .form-basket-title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

.form-basket-inner {
  display: flex;
  margin-bottom: 20px;
}

@media(max-width: 450px) {
  .form-basket-inner {
    flex-direction: column;
  }
}

.form-basket-inner__group:first-child {
  margin-right: 20px;
}

@media(max-width: 450px) {
  .form-basket-inner__group:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.group-adres {
  display: none;
}

.label-dostavka {
  display: block;
  box-sizing: border-box;
  padding: 10px 44px;
  text-align: center;
  border: 1px solid #4CB75D;
  border-radius: 26px 26px;
  transition: background 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
}

.label-dostavka::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 22px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.label-dostavka:hover {
  background: #2cb742;
  color: #fff;
}

.form-basket__radio:checked+.label-dostavka {
  background: #2cb742;
  color: #fff;
}

.form-basket__radio:checked+.label-dostavka::before {
  background-image: url(../img/icon/check.svg);
}

.group-form {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 100%;
}

.form-basket__checkbox {
  display: none;
}

.label-basket {
  display: block;
  margin: 10px 0;
  margin-top: 30px;
  box-sizing: border-box;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

@media (max-width: 500px) {
  .label-basket {
    margin-top: 10px;
  }
}

.label-basket::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #bfbfbf;
  top: -2px;
  left: 0;
  border-radius: 3px;
}

.label-basket a {
  color: var(--logo-green);
  font-weight: 500;
}

.form-basket__checkbox:checked+.label-basket::after {
  position: absolute;
  content: "✔";
  top: -1px;
  left: 4px;
  color: var(--logo-green);
  font-weight: 500;
  font-size: 18px;
}

/*--- BASKET ---*/
/*--- NEWS ----*/
.news {
  background-color: #fcfcfc;
  border-bottom: 1px solid #e1e1e1;
}

.container-news {
  padding-top: 20px;
}

.container-news .text {
  font-size: 16px;
}

.container-news .text span {
  font-weight: 600;
}

.wrapper-news {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.wrapper-news__item {
  width: calc(33.333% - 15px);
  box-sizing: border-box;
  padding: 14px;
  border-radius: 6px 6px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  background: #fff;
  position: relative;
}

@media (max-width: 1240px) {
  .wrapper-news__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .wrapper-news__item {
    width: 100%;
  }
}

.wrapper-news__link {
  display: block;
  color: #2C3236;
  overflow: hidden;
}

.wrapper-news__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px 4px;
  transition: transform 0.2s ease-in-out;
}

@media (max-width: 400px) {
  .wrapper-news__img {
    height: 240px;
  }
}

.wrapper-news__title {
  font-weight: 500;
  text-align: center;
  color: #2C3236;
  margin: 10px 0;
}

.wrapper-news__title:hover {
  color: #2cb742;
}

@media (max-width: 767px) {
  .wrapper-news__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-news__title {
    font-size: calc(16px + 0.1052631579vw);
  }
}

.wrapper-news__text {
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.date-public {
  position: absolute;
  padding: 0 16px;
  border: 1px solid #e1e1e1;
  background: #F5F5F7;
  border-radius: 15px;
  color: #737373;
  font-size: 12px;
  line-height: 30px;
  left: 30px;
  top: 25px;
  z-index: 1;
}

.wrapper-news__link:hover .wrapper-news__img {
  transform: scale(1.2);
}

.link-news {
  color: #2C3236;
}

.news-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  margin: 20px 0;
}

@media (max-width: 991px) {
  .news-img {
    height: 300px;
  }
}

@media (max-width: 450px) {
  .news-img {
    height: 220px;
  }
}

.data-public {
  font-weight: 500;
  margin: 30px 0 40px 0;
}

@media (max-width: 500px) {
  .data-public {
    margin: 30px 0 20px 0;
  }
}

.wrapper-potfolio-info {
  width: 100%;
  margin: 0 auto;
}

.wrapper-potfolio-info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}

@media (max-width: 500px) {
  .wrapper-potfolio-info {
    margin-bottom: 0;
  }
}

.wrapper-potfolio-info__item {
  width: calc(33.33% - 11px);
}

@media (max-width: 991px) {
  .wrapper-potfolio-info__item {
    width: calc(50% - 11px);
  }
}

@media (max-width: 767px) {
  .wrapper-potfolio-info__item {
    width: 100%;
  }
}

.wrapper-potfolio-info__img {
  width: 100%;
  height: 270px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px 6px;
}

@media (max-width: 450px) {
  .wrapper-potfolio-info__img {
    height: 220px;
  }
}

.my-video {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 500px) {
  .my-video {
    height: 240px;
    margin-top: 0;
  }
}

.video-container {
  position: relative;
  display: inline-block;
}

.youtube-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24L27 14v20" fill="white"/></svg>') no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

.my-video::-webkit-media-controls-start-playback-button {
  display: none;
}

.main-news {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  float: right;
  border-radius: 6px 6px;
  margin: 0 0 10px 10px;
}

@media (max-width: 700px) {
  .main-news {
    width: 100%;
    float: none;
    margin: 0 0 10px 0;
    height: 220px;
  }
}

.text-data {
  font-weight: 500;
  margin: 40px 0 20px 0;
}

@media (max-width: 700px) {
  .text-data {
    margin: 20px 0 26px 0;
  }
}

/*--- NEWS ----*/
/*--- DOSTAVKA ---*/
.wrapper-dostavka {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .wrapper-dostavka {
    gap: 10px;
  }
}

.wrapper-dostavka__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(33.333% - 15px);
  box-sizing: border-box;
  padding: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e1e1e1;
  border-radius: 6px 6px;
}

@media (max-width: 600px) {
  .wrapper-dostavka__item {
    width: 100%;
  }
}

.wrapper-dostavka__link {
  color: #2C3236;
}

.wrapper-dostavka__img {
  width: 100%;
}

.wrapper-dostavka__title {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 767px) {
  .wrapper-dostavka__title {
    font-size: calc(16px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-dostavka__title {
    font-size: calc(16px + 2 * 100vw / 1900);
  }
}

/*--- DOSTAVKA ---*/
/*--- PROJECT ---*/
.wrapper-project {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.wrapper-project__item {
  width: calc(33.333% - 15px);
  border-radius: 10px 10px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .wrapper-project__item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 575px) {
  .wrapper-project__item {
    width: 100%;
  }
}

.wrapper-project__link {
  position: relative;
}

.wrapper-project__link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 13%, rgba(0, 0, 0, 0.75) 47%, rgba(0, 0, 0, 0.01) 100%);
  width: 100%;
  height: 150px;
  z-index: 10;
}

.wrapper-project__img {
  width: 100%;
  height: 320px;
  border-radius: 10px 10px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
  transition: transform 0.35s ease-in-out;
}

@media (max-width: 1239px) {
  .wrapper-project__img {
    height: 290px;
  }
}

@media (max-width: 767px) {
  .wrapper-project__img {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .wrapper-project__img {
    height: 290px;
  }
}

@media (max-width: 400px) {
  .wrapper-project__img {
    height: 270px;
  }
}

.wrapper-project__img:hover {
  transform: scale(1.2);
}

.wrapper-project__title {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 35px;
  text-align: center;
  color: #fff;
  z-index: 11;
}

@media (max-width: 767px) {
  .wrapper-project__title {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1900);
  }
}

@media (min-width: 767px) {
  .wrapper-project__title {
    font-size: calc(18px + 2 * 100vw / 1900);
  }
}

.container-project-slider {
  position: relative;
}

/*--- PROJECT ---*/

/*--- ERROR ---*/
.wrapper-error {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 26px 26px;
}

.wrapper-error__content {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
}

.wrapper-btn-error {
  margin: 30px 0 0 0;
}

.wrapper-btn-error .btn {
  width: 100%;
}

.wrapper-btn-error .btn:last-child {
  display: block;
  margin-top: 20px;
  background-color: #ffffff;
  color: #2C3236;
  border: 1px solid #2cb742;
}

.wrapper-error__bg {
  width: 60%;
}

.wrapper-error__img {
  width: 100%;
}

@media(max-width: 900px) {
  .wrapper-error {
    flex-direction: column;
    padding: 10px 10px;
  }

  .wrapper-error__content {
    width: 100%;
    padding: 0 0 20px 0;
  }

  .wrapper-error__bg {
    width: 100%;
  }

  .wrapper-btn-error {
    margin: 10px 0 0 0;
  }
}