@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  background: #e4eedf;
  overflow-x: hidden;
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

span {
  display: inline-block;
}

img {
  display: block;
  max-width: 100%;
}

li {
  list-style: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
  border: 0;
  background: none;
  outline: none;
  resize: none;
}

/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.woff") format("woff"), url("../fonts/Inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  display: swap;
}
.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f7ed), to(#e4eedf));
  background: linear-gradient(180deg, #f0f7ed 0%, #e4eedf 100%);
  border-radius: 50px 50px 0 0;
  margin-top: 24px;
  padding: 25px 0;
}
.header__navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__navbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.header__navbar-left nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.header__navbar-left nav ul li a {
  font-size: 16px;
  line-height: 130%;
  color: #66626a;
}
.header__navbar-left .burger-icon {
  cursor: pointer;
  display: none;
}
.header .header__mob-menu {
  width: 100%;
  padding-top: 30px;
  display: none;
}
.header .header__mob-menu nav ul li {
  margin-bottom: 10px;
}

.primary-btn {
  border: 1px solid #9bc36e;
  border-radius: 22px;
  padding: 3px;
}
.primary-btn span {
  background: -webkit-gradient(linear, left bottom, left top, from(#b9c8a7), to(#b8d5aa));
  background: linear-gradient(0deg, #b9c8a7 0%, #b8d5aa 100%);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #f5f3ef;
  padding: 10px 20px;
  border-radius: 40px;
}

.card {
  background: #460000;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  color: #fff;
  margin: 70px 0;
}

.card-content {
  padding: 24px;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.expand-btn {
  background: none;
  border: none;
  color: #b8d5aa;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.expand-btn:hover {
  color: #b8d5aa;
  text-decoration: underline;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.expandable-content.expanded {
  max-height: 100%;
  -webkit-transition: max-height 0.5s ease-in;
  transition: max-height 0.5s ease-in;
}

.expanded-text {
  padding: 5px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.bold-text {
  font-weight: 600;
  color: #b8d5aa;
}

.list-item {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.list-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
}

.numbered-item {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.section-indent {
  margin-bottom: 30px;
}

.section-title {
  color: #b8d5aa;
}

.hero {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero__rounded {
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #000;
  border: 1px solid #adcca1;
  border-radius: 20px;
  padding: 8px 15px;
  display: inline-block;
  margin-bottom: 25px;
}
.hero__left h1 {
  font-weight: 400;
  font-size: 64px;
  line-height: 105%;
  letter-spacing: -0.03em;
  color: #312335;
  margin-bottom: 15px;
}
.hero__left p {
  max-width: 600px;
  font-size: 18px;
  line-height: 150%;
  color: #433f46;
  margin-bottom: 15px;
}
.hero__right {
  position: relative;
  right: -50px;
}

.advantages {
  padding: 70px 0;
}
.advantages__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.advantages__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  max-width: 352px;
  width: 100%;
}
.advantages__card h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #312335;
  margin-top: 15px;
}
.advantages__card p {
  max-width: 352px;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #433f46;
  margin-top: 5px;
}

.about {
  margin-bottom: 100px;
}
.about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 64px;
  position: relative;
}
.about__wrapper::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #460000;
  height: 513px;
  width: 100%;
  border-radius: 24px;
}
.about__left {
  position: relative;
  z-index: 99999;
  margin-left: 80px;
}
.about__left img {
  height: 596px;
}
.about__right {
  max-width: 600px;
  position: relative;
  z-index: 99999;
}
.about__rounded {
  border: 1px solid #adcca1;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 24px;
}
.about__right h3 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #f5f3ef;
  margin-bottom: 10px;
}
.about__right p {
  font-size: 18px;
  line-height: 150%;
  color: #ebe7e0;
  margin-bottom: 15px;
}

.products {
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f7ed), to(#e4eedf));
  background: linear-gradient(180deg, #f0f7ed 0%, #e4eedf 100%);
  border-radius: 50px 50px 0 0;
  padding: 60px 0;
}
.products h3 {
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  margin-bottom: 50px;
}
.products__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
.products__cards h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #312335;
  margin-top: 20px;
}
.products__cards p {
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #433f46;
  max-width: 300px;
  margin: 10px auto 0;
}

.consult {
  margin-top: 70px;
}
.consult__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}
.consult__cards .consult__card:first-child {
  position: relative;
}
.consult__cards .consult__card:first-child::before {
  content: "";
  position: absolute;
  top: 66%;
  right: -60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 153px;
  height: 44px;
  background: url("../img/arrow.svg");
  background-repeat: no-repeat;
}
.consult__cards .consult__card:nth-child(2) {
  position: relative;
}
.consult__cards .consult__card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 66%;
  right: -60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 153px;
  height: 44px;
  background: url("../img/arrow.svg");
  background-repeat: no-repeat;
}
.consult__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.consult__card span {
  font-weight: 500;
  font-size: 72px;
  line-height: 140%;
  text-align: center;
  color: #b8d5aa;
  display: block;
}
.consult__card h4 {
  margin-bottom: 5px;
}
.consult__card p {
  max-width: 289px;
  text-align: center;
  line-height: 150%;
  text-align: center;
  color: #433f46;
}

.section-inner .block__rounded {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #000;
  border-radius: 20px;
  border: 1px solid #adcca1;
  display: inline-block;
  padding: 6px 12px;
}
.section-inner h3 {
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  color: #312335;
  margin-bottom: 10px;
}
.section-inner .block__subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #433f46;
  margin-bottom: 80px;
}

.reviews {
  margin-top: 130px;
}
.reviews__card {
  background: #f0f7ed;
  border-radius: 16px;
  padding: 30px 33px;
  height: 100%;
}
.reviews__card p {
  font-size: 18px;
  line-height: 150%;
  color: #433f46;
  margin: 15px 0;
}

.faq {
  margin-top: 100px;
  padding-top: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f7ed), to(#e4eedf));
  background: linear-gradient(180deg, #f0f7ed 0%, #e4eedf 100%);
  border-radius: 50px 50px 0 0;
}
.faq .block__subtitle {
  margin-bottom: 30px;
}
.faq .accordion-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.faq .accordion-item {
  border-bottom: 1px solid #e0e4dc;
}
.faq .accordion-item:last-child {
  border-bottom: none;
}
.faq .accordion-header {
  padding: 15px 0;
  cursor: pointer;
  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;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.faq .accordion-title {
  font-size: 18px;
  font-weight: 400;
  color: #2d3436;
  margin: 0;
}
.faq .accordion-icon {
  width: 24px;
  height: 24px;
  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;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #460000;
  font-size: 24px;
  font-weight: 300;
}
.faq .accordion-icon.rotated {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq .accordion-content.active {
  max-height: 300px;
}
.faq .accordion-text {
  padding: 24px 28px;
  color: #636e72;
  font-size: 16px;
  line-height: 1.6;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.faq .accordion-content.active .accordion-text {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.faq .accordion-text {
  padding: 0 0 15px;
  color: #636e72;
  font-size: 16px;
  line-height: 1.6;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
@media (max-width: 768px) {
  .faq .accordion-container {
    margin: 0 10px;
  }
  .faq .accordion-header {
    padding: 20px 20px;
  }
  .faq .accordion-title {
    font-size: 16px;
  }
  .faq .accordion-text {
    padding: 20px 20px;
    color: #636e72;
    font-size: 16px;
    line-height: 1.6;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
}

.cta-inner {
  margin-top: 150px;
  background-color: #460000;
  border-radius: 24px;
  height: 393px;
  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;
  gap: 50px;
}
.cta-inner .cta-left {
  max-width: 600px;
}
.cta-inner .cta-left h4 {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #f5f3ef;
  margin-bottom: 10px;
}
.cta-inner .cta-left p {
  font-size: 18px;
  line-height: 150%;
  color: #ebe7e0;
}

.modal-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  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;
  opacity: 0;
  z-index: -9999999999;
  visibility: hidden;
}
.modal-inner.active {
  opacity: 1;
  z-index: 9999999999;
  visibility: visible;
}

.modal-content {
  background-color: #b8d5aa;
  width: 440px;
  height: 400px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.modal-content h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 172%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 300px;
}
.modal-content form input {
  background-color: #d9eecf;
  padding: 19px 0 19px 10px;
  display: block;
}
.modal-content form input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
}
.modal-content form input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
}
.modal-content form input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
}
.modal-content form input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
}
.modal-content form input::placeholder {
  font-weight: 500;
  font-size: 16px;
}
.modal-content form button {
  background-color: #460000;
  width: 100%;
  padding: 19px 0;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.footer {
  padding: 50px 0;
}
.footer ul {
  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;
  gap: 20px;
}
.footer ul li a {
  font-size: 16px;
  line-height: 130%;
  color: #66626a;
}

@media (max-width: 1200px) {
  .about__right {
    max-width: 500px;
  }
  .consult__cards .consult__card:first-child::before {
    top: 62%;
    right: -32%;
  }
  .consult__cards .consult__card:nth-child(2)::before {
    top: 62%;
    right: -32%;
  }
}
@media (max-width: 992px) {
  .header__navbar {
    padding: 15px;
    border-radius: 10px 10px 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header__navbar-left {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__navbar-left nav {
    display: none;
  }
  .header__navbar-left .burger-icon {
    display: block;
  }
  .header__navbar .primary-btn {
    display: none;
  }
  .header .header__mob-menu.active {
    display: block;
  }
  .advantages__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
  }
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 100px 15px;
  }
  .about__wrapper::before {
    height: 100%;
  }
  .about__left {
    margin-left: 0;
  }
  .about__left img {
    height: auto;
  }
  .about__right p {
    margin-bottom: 25px;
  }
  .products__cards {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .products h3 {
    font-size: 35px;
  }
  .consult__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 230px;
  }
  .consult .consult__cards .consult__card:first-child::before {
    top: 153%;
    right: 27%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .consult .consult__cards .consult__card:nth-child(2)::before {
    top: 153%;
    right: 27%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .section-inner h3 {
    font-size: 35px;
  }
  .block__rounded {
    margin-bottom: 10px;
  }
  .section-inner .block__subtitle {
    margin-bottom: 50px;
  }
  .cta-inner .cta-left {
    max-width: 500px;
  }
  .cta-inner {
    padding: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 815px) {
  .cta-inner {
    margin-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
  }
  .hero__right {
    position: static;
  }
  .faq .accordion-text {
    padding-top: 0;
  }
  .cta-inner .cta-left h4 {
    font-size: 35px;
  }
  .cta-inner .cta-left p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero__left h1 {
    font-size: 50px;
  }
  .hero__left p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .about__wrapper {
    padding: 50px 15px;
  }
  .about__right h3 {
    font-size: 30px;
  }
  .about__right p {
    font-size: 16px;
  }
  .products {
    padding: 30px 0;
  }
  .products__cards {
    gap: 50px;
  }
  .reviews__card p {
    font-size: 15px;
  }
  .faq {
    margin-top: 70px;
  }
  .faq .accordion-container h3 {
    text-align: start;
  }
  .faq .accordion-header {
    padding: 20px 0;
  }
  .faq .accordion-text {
    padding: 0 0 20px;
  }
  .cta-inner .cta-left h4 {
    font-size: 23px;
    margin-bottom: 15px;
  }
  .cta-inner .cta-left p {
    font-size: 15px;
  }
}
@media (max-width: 430px) {
  .hero__left h1 {
    font-size: 35px;
  }
  .hero__left p {
    font-size: 15px;
  }
}