*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  color: rgb(91, 91, 91);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4em;
}
body.locked {
  overflow: hidden;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  background-color: #ff7038;
  color: #fff;
  padding: 15px 60px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:hover {
  background-color: rgb(254, 90, 25);
  color: #fff;
}
@media (max-width: 412px) {
  .btn {
    padding: 15px 45px;
    font-size: 16px;
  }
}

.section-title {
  padding-bottom: 60px;
  padding-top: 80px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2em;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 20px;
    padding-top: 60px;
    width: 100%;
    font-size: 24px;
  }
}

.header {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  max-height: 70px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(241, 241, 241);
  z-index: 2;
}
.header.scrolled {
  position: fixed;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .header__inner {
    padding: 15px 0;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
@media (max-width: 768px) {
  .logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.logo__img {
  width: 150px;
}
@media (max-width: 992px) {
  .logo__img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: -100%;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(241, 241, 241);
    color: #fff;
    text-align: right;
    padding: 90px 20px;
  }
  .menu--active {
    top: 0;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .menu__list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .menu__list {
    display: block;
    text-align: center;
  }
}

.menu__item {
  color: rgb(91, 91, 91);
  font-weight: 400;
}
@media (max-width: 767px) {
  .menu__item {
    margin-top: 30px;
  }
}

.menu__link:hover {
  color: #009c6a;
}
@media (max-width: 992px) {
  .menu__link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .menu__link {
    font-size: 28px;
  }
}

.burger {
  display: none;
}
.burger::before, .burger::after {
  content: "";
  background-color: #009c6a;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
@media (max-width: 768px) {
  .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 3;
    margin-left: 20px;
  }
}

.burger__line {
  position: absolute;
  background-color: #009c6a;
  width: 100%;
  height: 2px;
  left: 0;
  top: 7px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.burger--active .burger__line {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.burger--active::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}
.burger--active::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 7px;
}

.select__title {
  padding-right: 10px;
  font-size: 16px;
}
.select__title::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 80px;
  background-color: rgb(91, 91, 91);
  height: 20px;
  width: 0.5px;
}
@media (max-width: 576px) {
  .select__title {
    display: none;
  }
}

.select {
  position: relative;
  z-index: 3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  outline: none;
  font-family: "Raleway", sans-serif;
  color: rgb(91, 91, 91);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
}
.select:focus {
  outline: none;
}

.select__btn {
  font-weight: 300;
}
.select__btn-quiz {
  border: 1px solid #009c6a;
  border-radius: 4px;
  width: 100%;
  text-align: left;
  padding: 5px 10px;
  font-size: 16px;
  position: relative;
}
.select__btn-quiz::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 7px 4px 0 4px;
  border-color: #009c6a transparent transparent transparent;
  border-style: solid;
  pointer-events: none;
}

.select__list {
  display: none;
  list-style: none;
  position: absolute;
  right: 0;
  top: 25px;
}
.select__list.visible {
  display: block;
}
.select__list-quiz {
  top: 35px;
  left: 0;
}

.select__item {
  padding-right: 2px;
  cursor: pointer;
  font-size: 16px;
}
.select__item-quiz {
  padding-left: 10px;
  margin-bottom: 1px;
  background-color: #fff;
  border: 1px solid #969696;
  border-radius: 4px;
}
.select__item-quiz:hover {
  background-color: rgb(241, 241, 241);
}

.select__input-hidden {
  display: none;
}

.hero {
  background-color: rgb(241, 241, 241);
}

.hero__inner {
  position: relative;
  padding-top: 100px;
}

.hero__content {
  position: absolute;
  max-width: 600px;
  top: 200px;
  left: 400px;
}
@media (max-width: 992px) {
  .hero__content {
    left: 290px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    left: 250px;
  }
}
@media (max-width: 576px) {
  .hero__content {
    top: 50px;
    left: 0;
  }
}
@media (max-width: 412px) {
  .hero__content {
    top: 30px;
  }
}

.hero__title {
  color: #343434;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1.3em;
  margin-bottom: 20px;
}
.hero__title span {
  color: #009c6a;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media (max-width: 412px) {
  .hero__title {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.hero__text {
  font-weight: 300;
  margin-bottom: 50px;
}

a.btn__hero {
  color: #fff;
}

.benefits {
  padding-top: 100px;
  margin: 0 auto;
}
.benefits__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .benefits__inner {
    display: block;
  }
}

.benefit {
  width: 30%;
}
.benefit__img {
  width: 100px;
  height: auto;
  background-color: rgb(241, 241, 241);
  padding: 20px;
  border-radius: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.benefit__titile {
  font-weight: 500;
  margin-bottom: 10px;
}
.benefit__text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .benefit {
    width: 100%;
  }
}

.tabs {
  padding-top: 100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tabs {
    padding-top: 50px;
  }
}

.tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tabs__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tabs__btn {
  padding: 10px 150px;
  background-color: rgb(241, 241, 241);
  border: 0;
  border-right: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow-wrap: normal;
  text-align: center;
}
.tabs__btn:last-child {
  border-right: none;
}
.tabs__btn:hover {
  background-color: #ff7038;
  color: #fff;
}
.tabs__btn.active {
  background-color: #ff7038;
  color: #fff;
}
@media (max-width: 1200px) {
  .tabs__btn {
    padding: 10px 110px;
  }
}
@media (max-width: 992px) {
  .tabs__btn {
    padding: 10px 90px;
  }
}
@media (max-width: 860px) {
  .tabs__btn {
    padding: 10px 70px;
  }
}
@media (max-width: 768px) {
  .tabs__btn {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}

.tabs__inner {
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .tabs__inner {
    padding: 40px 0;
  }
}

.tabs__item {
  display: none;
}
.tabs__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tabs__item.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tabs__content {
  max-width: 580px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .tabs__content {
    max-width: 400px;
    margin-right: 30px;
  }
}

.tab__title {
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 768px) {
  .tab__title {
    padding-bottom: 10px;
    font-size: 16px;
  }
}

.tab__text ol {
  padding-left: 15px;
  padding-bottom: 20px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .tab__text ol {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.tab__text ol li {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .tab__text ol li {
    margin-bottom: 5px;
  }
}

.tab__img {
  max-width: 500px;
  height: auto;
}
.tab__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.foto-slider {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .foto-slider {
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.slider {
  position: relative;
  max-width: 900px;
  height: auto;
  overflow: hidden;
}

.slider-nav {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 0 10px;
}

.slider-nav-item {
  width: 50px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slider-nav-item:hover {
  background-color: #fff;
}

#s1:checked ~ .s1 {
  margin-left: 0;
}

#s2:checked ~ .s1 {
  margin-left: -20%;
}

#s3:checked ~ .s1 {
  margin-left: -40%;
}

#s4:checked ~ .s1 {
  margin-left: -60%;
}

#s5:checked ~ .s1 {
  margin-left: -80%;
}

.slider-items {
  width: 500%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-items input {
  position: absolute;
  visibility: hidden;
}

.slider-item {
  width: 20%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.slider-item img {
  max-width: 100%;
}

.sertificate__bg {
  background-color: rgb(241, 241, 241);
  margin: 0 auto;
  max-width: 900px;
  border-radius: 16px;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sertificate__bg {
    padding: 20px;
    display: block;
    text-align: center;
  }
}
.sertificate__title {
  font-weight: 400;
  max-width: 400px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .sertificate__title {
    width: 100%;
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

a.sertificate__btn {
  color: #fff;
  display: block;
}

.contacts {
  padding-top: 50px;
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .contacts__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.contacts__text {
  max-width: 390px;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4em;
}
@media (max-width: 992px) {
  .contacts__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .contacts__text {
    margin: 0 auto;
  }
}

.contacts__bold {
  font-weight: 500;
  font-size: 32px;
  color: #009c6a;
}
@media (max-width: 992px) {
  .contacts__bold {
    font-size: 28px;
  }
}

.contacts__name {
  font-weight: 500;
  font-size: 20px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .contacts__name {
    font-size: 18px;
  }
}

.contacts__form {
  max-width: 600px;
  background-color: #fff;
  padding: 50px;
  -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contacts__form {
    margin: 0 auto;
    text-align: left;
    padding: 20px;
  }
}

.form__group {
  padding-bottom: 30px;
}

.error-message {
  color: #e74c3c;
  line-height: 1.1;
  font-size: 14px;
}

.success-message {
  color: #009c6a;
  font-weight: 500;
  line-height: 1.1;
  font-size: 14px;
}

.form__label {
  display: block;
  font-weight: 500;
}
@media (max-width: 768px) {
  .form__label {
    text-align: left;
  }
}
@media (max-width: 412px) {
  .form__label {
    font-size: 16px;
  }
}

.form__input {
  padding: 5px 5px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #969696;
}
.form__input::-webkit-input-placeholder {
  font-size: 12px;
  color: #969696;
}
.form__input::-moz-placeholder {
  font-size: 12px;
  color: #969696;
}
.form__input:-ms-input-placeholder {
  font-size: 12px;
  color: #969696;
}
.form__input::-ms-input-placeholder {
  font-size: 12px;
  color: #969696;
}
.form__input::placeholder {
  font-size: 12px;
  color: #969696;
}

.range {
  margin-bottom: 30px;
  margin-top: 40px;
}

.slider-value {
  position: relative;
  width: 100%;
}

.value-number {
  position: absolute;
  height: 45px;
  width: 45px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  bottom: 25px;
  -webkit-transform: translateX(-50%) scale(0);
      -ms-transform: translateX(-50%) scale(0);
          transform: translateX(-50%) scale(0);
  line-height: 55px;
  z-index: 2;
}
.value-number::after {
  content: "";
  position: absolute;
  height: 45px;
  width: 45px;
  background: #009c6a;
  left: -13%;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  z-index: -1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.value-number.show {
  -webkit-transform: translateX(-50%) scale(1);
      -ms-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
}

.field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.field-input {
  -webkit-appearance: none;
  height: 5px;
  width: 100%;
  background-color: #009c6a;
  border-radius: 16px;
  border: none;
  outline: none;
}

.field-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid #009c6a;
  background: #fff;
  cursor: pointer;
}

.field-input::-moz-range-progress {
  background: #009c6a;
}

.value {
  position: absolute;
  font-weight: 500;
  top: 5px;
}
.value.left {
  left: 0;
}
.value.right {
  right: 0;
}

.radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 576px) {
  .radios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.radio__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio__input {
  display: none;
}

.radio-fake {
  width: 20px;
  height: 20px;
  border: 2px solid #009c6a;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}
.radio-fake::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #009c6a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.radio__input:checked + .radio-fake::before {
  opacity: 1;
}

.btn-quiz {
  background-color: #ff7038;
  color: #fff;
  padding: 15px 60px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 20px;
}

.politic {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 300;
  color: #8b8b8b;
}
.politic a {
  text-decoration: underline;
}
.politic a:hover {
  color: #009c6a;
}

.footer {
  background-color: rgb(241, 241, 241);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0 100px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.footer__logo {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__contacts {
  font-weight: 500;
  font-size: 20px;
  color: #009c6a;
}
@media (max-width: 768px) {
  .footer__contacts {
    margin: 0 auto;
  }
}

.header-catalog {
  background-color: #fff;
  z-index: 100;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  max-height: 60px;
}
.header-catalog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.header-catalog.scrolled {
  position: fixed;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.header-catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

.catalog__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 4;
}
.catalog__logo .logo__img {
  width: 150px;
}
@media (max-width: 576px) {
  .catalog__logo .logo__img {
    display: none;
  }
}

a.btn-back {
  z-index: 4;
  font-size: 16px;
  color: #009c6a;
  font-weight: 500;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a.btn-back:hover {
  color: #04d895;
}
@media (max-width: 576px) {
  a.btn-back {
    font-size: 14px;
  }
}

.cart {
  z-index: 10000;
  position: relative;
  padding-right: 10px;
  font-weight: 500;
}
.cart.active:hover {
  color: #009c6a;
  cursor: pointer;
}
.cart.active:hover .cart__inner {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #656363;
}
@media (max-width: 576px) {
  .cart {
    font-size: 14px;
  }
}

.cart__inner {
  cursor: default;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 20px rgba(122, 122, 122, 0.2);
          box-shadow: 0 0 20px rgba(122, 122, 122, 0.2);
  width: 400px;
  height: 450px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 412px) {
  .cart__inner {
    max-width: 260px;
  }
}

.cart-success {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20000;
  display: none;
}

.cart-success__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  border-radius: 8px;
  width: 240px;
  height: 120px;
  padding: 15px;
  text-align: center;
  font-weight: 400;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cart-success__close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -10px;
  right: -10px;
  background-color: #fff;
  border-radius: 100%;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.cart-success__close:hover {
  color: #009c6a;
}

.cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart__content-list {
  max-height: 270px;
}

.cart__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}

.cart__img {
  max-width: 60px;
  margin-right: 15px;
  border-radius: 8px;
}
@media (max-width: 412px) {
  .cart__img {
    display: none;
  }
}

.cart__title {
  font-size: 14px;
  font-weight: 400;
  max-width: 260px;
  line-height: 1;
  margin-bottom: 5px;
}

.cart__price {
  font-size: 14px;
  font-weight: 600;
}

.cart__summary {
  padding: 10px;
  border-top: 1px solid rgba(77, 77, 77, 0.2);
}

.cart__fullprice {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fullprice {
  font-size: 16px;
  font-weight: 600;
  color: #009c6a;
}

.currency {
  font-weight: 400;
}

.btn__cart {
  background-color: #ff7038;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}

.simplebar-track.simplebar-vertical {
  width: 4px;
  background: rgba(77, 77, 77, 0.1);
  border-radius: 5px;
  right: 5px;
  margin-top: 20px;
  height: calc(100% - 40px);
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  background: rgba(77, 77, 77, 0.2);
  border-radius: 5px;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
}

.catalog__hero {
  background-color: #d4fcf0;
}

.catalog__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.catalog__img {
  width: 25%;
  padding-top: 60px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .catalog__img {
    padding: 40px 10px 40px 20px;
  }
}
@media (max-width: 412px) {
  .catalog__img {
    display: none;
  }
}

.catalog__content {
  width: 65%;
  padding-left: 100px;
}
@media (max-width: 992px) {
  .catalog__content {
    padding-left: 60px;
  }
}
@media (max-width: 768px) {
  .catalog__content {
    padding-left: 20px;
  }
}
@media (max-width: 412px) {
  .catalog__content {
    padding-left: 0;
    width: 100%;
  }
}

.catalog__title {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1.3em;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .catalog__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .catalog__title {
    font-size: 42px;
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .catalog__title {
    font-size: 36px;
  }
}
@media (max-width: 412px) {
  .catalog__title {
    font-size: 28px;
  }
}

.catalog__subtitle {
  font-size: 24px;
  line-height: 1.3em;
}
@media (max-width: 992px) {
  .catalog__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .catalog__subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }
}

.products__list {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 768px) {
  .products__list {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .products__list {
    padding: 50px 0;
  }
}

.product__item {
  width: 24%;
  border-radius: 16px;
  background-color: #d4fcf0;
}
.product__item:hover {
  -webkit-box-shadow: 0 0 20px rgba(122, 122, 122, 0.2);
          box-shadow: 0 0 20px rgba(122, 122, 122, 0.2);
}
@media (max-width: 992px) {
  .product__item {
    width: 49%;
  }
}
@media (max-width: 576px) {
  .product__item {
    width: 98%;
  }
}

.product__info {
  padding: 20px;
}

.product__img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}

.product__title {
  margin: 20px 0;
  font-size: 18px;
}

.product__discription {
  font-size: 14px;
  font-weight: 500;
}

.discription__text {
  margin: 0;
}

.product__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
}

.counter__control {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid #d4fcf0;
  line-height: 1;
}
.counter__control:hover {
  background-color: #ff7038;
}
.counter__current {
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid #d4fcf0;
  line-height: 1;
}

.product__price {
  margin: 20px 0;
  font-size: 28px;
  color: #009c6a;
  font-weight: 600;
}

.product__details {
  display: inline-block;
  font-size: 16px;
  padding: 8px 36px;
  border-radius: 8px;
  border: 1px solid #ff7038;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0 20px;
}
.product__details:hover {
  background-color: rgb(254, 90, 25);
  color: #fff;
}

.product__btn {
  margin: 20px 0;
  font-size: 16px;
  padding: 15px 50px;
}