html,
body {
  height: 100%;
}

body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  flex-direction: column;
}

body.locked {
  overflow: hidden;
}

header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
main {
  background-color: #80808005;
  padding-top: 85px;
}

.fix-bg {
  background-color: #ffffff;
}

footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

hr {
  width: 100%;
  height: 3px;
  background: #dcddeb;
}

.btn {
  display: inline-flex; /* makes it behave like flexbox while remaining inline */
  align-items: center; /* vertically centers the text */
  justify-content: center; /* horizontally centers the text */

  padding: 26px 32px;
  background-color: #9ac969;
  border-radius: 14px;
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 10px rgba(20, 20, 43, 0.04);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  text-align: center;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #729954;
}

@media screen and (max-width: 1060px) {
  .btn {
    padding: 18px 24px;
  }
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #dcddeb;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.phone__img {
  width: 32px;
}

.phone:hover {
  transform: translateX(10px);
}

@media screen and (max-width: 768px) {
  .phone {
    width: 50px;
    height: 50px;
  }

  .phone__img {
    width: 25px;
  }

  .container {
    max-width: 1240px;
    padding: 0 10px;
  }
}

nav {
  /* overflow: hidden; */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* === Dropdown Styles === */
.menu__item--has-dropdown {
  position: relative;
}

.menu__dropdown {
  display: none;
  position: absolute;
  text-align: left;
  /* align-items: flex-start; */
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0.5em 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 160px;
}

.menu__item--has-dropdown:hover .menu__dropdown {
  display: block;
}

.menu__dropdown-item {
  list-style: none;
}

.menu__dropdown-link {
  display: block;
  color: inherit;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.menu__dropdown-link:hover {
  background-color: #f0f0f0;
  color: #7b9954;
}

@media (max-width: 768px) {
  .menu__dropdown {
    display: block !important; /* Always show dropdown */
    position: static; /* Flow naturally in menu */
    box-shadow: none; /* Remove shadow */
    padding-left: 0; /* Remove indent for cleaner alignment */
    background-color: transparent; /* Transparent background */
    min-width: auto; /* Adaptive width */
    text-align: center; 
  }

  /* Make dropdown links visually match main menu links */
  .menu__dropdown-link {
    background-color: transparent; /* No background */
    color: #fff;
    padding: 0.5em 1em; /* Keep consistent padding */
    white-space: normal; /* Allow wrapping if needed */
  }

  .menu__dropdown-link:hover {
    background-color: transparent; /* No hover bg on mobile */
    color: #007bff; /* Optional: keep hover color */
  }

  /* Optional: remove bullet points */
  .menu__dropdown-item {
    list-style: none;
  }
}

.navbar__phone {
  margin-left: auto;
}

.logo {
  margin-left: -20px;
  max-width: 100px;
  width: 100%;
}

.logo__img {
  max-height: 50px;
}

@media screen and (max-width: 768px) {
  .logo {
    margin-left: 0;
  }

  .logo__img {
    max-height: 50px;
  }
}

@media screen and (max-width: 1100px) {
  .navbar__phone {
    margin-right: 50px;
  }
}

.menu {
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;

  font-weight: bold;
}

.menu__item {
  flex: 1;
  text-align: center;
}

.menu__item-link {
  color: #211f54;
  line-height: 1.66;
  transition: color 0.3s ease;
}

.menu__item-link:hover {
  color: #729954;
}

.burger {
  display: none;
  cursor: pointer;
}

.navbar__number {
  font-weight: bold;
  color: #729954;
  padding-left: 25px;
}

@media screen and (max-width: 1000px) {
  .logo {
    margin-right: 32px;
  }

  .menu__item {
    margin-right: 50px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }

  .menu {
    position: fixed;
    top: 0;
    left: 0;
    background: #131418;
    overflow-y: auto;
    height: 100vh;
    width: 100vw;
    display: none;
  }

  .menu.active {
    display: flex;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    pointer-events: all;
    justify-content: flex-start;
    align-items: center;
    z-index: 22;
    animation: fade 0.1s linear;
  }

  .burger {
    display: block;
    position: relative;
    height: 20px;
    width: 30px;
    z-index: 102;
    cursor: pointer;
  }

  .burger.active-burger:before {
    background: red;
    transform: rotate(45deg);
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    top: 8px;
  }

  .burger.active-burger:after {
    background: red;
    transform: rotate(-45deg);
    bottom: 10px;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger.active-burger span {
    transform: scale(0);
  }

  .burger:before,
  .burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #729954;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger:before {
    top: 0;
  }

  .burger::after {
    bottom: 0;
  }

  .burger span {
    position: absolute;
    top: 9px;
    right: 0;
    width: 100%;
    background: #729954;
    height: 2px;
    transform: scale(1);
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .menu__item {
    margin-top: 15px;
    margin-right: 0;
    max-width: 200px;
    width: 100%;
    font-size: 22px;
    flex: unset;
  }

  .menu__item-link {
    display: block;
    color: white;
    text-align: center;
    padding: 10px 20px;
  }
}

.feedback {
  display: flex;
}

.feedback__left {
  margin-top: 40px;
}

.feedback__right {
  padding-top: 20px;
}

.feedback__left,
.feedback__right {
  width: 49.8%;
}

.feedback__head {
  font-weight: 700;
  font-size: 68px;
  line-height: 1.08;
  color: #211f54;
}

.feedback__text {
  font-size: 21px;
  line-height: 1.428;
  color: #6e7191;
  margin-top: 40px;
  max-width: 555px;
}

.feedback__text + .feedback__text {
  margin-top: 35px;
}

.feedback__btn {
  margin-top: 40px;
}

.feedback__phone {
  margin-top: 25px;
  display: flex;
  align-items: center;
}

.feedback__phone_img {
  margin-right: 33px;
}

.feedback__phone_text {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.28;
  color: #211f54;
}

.feedback__img {
  height: 100%;
  max-width: 720px;
  border-radius: 16px;
}

@media screen and (max-width: 1440px) {
  .feedback__img {
    width: 100%;
    height: auto;
  }

  .feedback__left {
    margin-top: 20px;
  }

  .feedback__text {
    margin-top: 20px;
  }

  .feedback__btn {
    margin-top: 20px;
  }

  .feedback__phone {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1060px) {
  .navbar__number {
    display: none;
  }

  .feedback__head {
    font-size: 48px;
    line-height: 1;
  }

  .feedback__text {
    font-size: 17px;
  }

  .feedback__phone_text {
    font-size: 22px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 768px) {
  .feedback {
    flex-wrap: wrap;
  }

  .feedback__left,
  .feedback__right {
    width: 99%;
  }

  .feedback__left {
    margin-top: 5px;
  }

  .feedback__text {
    margin-top: 15px;
    max-width: none;
  }

  .feedback__phone_img {
    margin-right: 15px;
  }
}

.feedback__text + .feedback__text {
  margin-top: 10px;
}

.section__form {
  padding-top: 90px;
}

.section__form hr {
  margin-top: 52px;
}

.form {
  display: flex;
  position: relative;
}

.form__bg {
  position: absolute;
  width: 100%;
  height: 90%;
  background: #eff0f7;
  z-index: -1;
  border-radius: 24px;
  top: 0;
}

.form__left {
  margin-right: 86px;
  width: 100%;
  max-width: 518px;
}

.form__right {
  min-width: 544px;
  margin-right: 70px;
}

.form__img {
  max-width: 100%;
}

.form__head {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.45;
  color: #211f54;
  margin-top: 77px;
}

.form__main {
  padding: 69px 48px 47px 48px;
  background: #ffffff;
  border: 1px solid #eff0f6;
  box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 16px;
  margin-top: 26px;
}

.form__fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.form__label {
  display: flex;
  flex-direction: column;
  width: 48%;
}

.form__label:last-child {
  width: 100%;
}

.form__name {
  margin-bottom: 12px;
  line-height: 1.66;
  color: #211f54;
}

.form__input {
  width: 100%;
  height: 72px;
  font-size: 22px;
  outline: none;
  padding: 0 10px;
  background: #ffffff;
  border: 2px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 12px rgba(20, 20, 43, 0.08);
  border-radius: 16px;
}

.form__label.error input {
  border-color: #dc3545;
}

.form__label.success input {
  border-color: #28a745;
}

.form__label small {
  margin-top: 10px;
  color: #dc3545;
}

.form__button {
  display: flex;
  margin-top: 44px;
}

.form__phone {
  margin-left: 36px;
}

@media screen and (max-width: 1260px) {
  .form__right {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1060px) {
  .form__head {
    font-size: 27px;
    line-height: 1.33;
    margin-top: 30px;
  }

  .form__main {
    padding: 30px 20px 20px 20px;
    margin-top: 26px;
  }

  .form__label {
    width: 100%;
  }

  .form__right {
    min-width: 344px;
    margin-right: 70px;
  }

  .form__left {
    margin-right: 50px;
  }

  .form__name {
    margin-bottom: 1px;
  }

  .form__input {
    height: 52px;
  }

  .section__form {
    padding-top: 40px;
  }
}

@media screen and (max-width: 928px) {
  .form__head {
    font-size: 25px;
    line-height: 1.2;
  }

  .form__fields {
    justify-content: space-between;
  }

  .form__input {
    height: 50px;
  }

  .form__name {
    margin-bottom: 10px;
    line-height: 1.11;
  }

  .form__btn {
    font-size: 16px;
    padding: 12px 16px;
  }

  .form__phone {
    margin-left: 26px;
  }
}

@media screen and (max-width: 768px) {
  .form {
    flex-direction: column-reverse;
  }

  .form__right {
    margin: 10px auto 0;
    min-width: 312px;
  }

  .form__input {
    width: 100%;
    font-size: 18px;
  }

  .form__head {
    margin-top: 26px;
    font-size: 23px;
    text-align: center;
  }

  .form__fields {
    padding: 30px 0 12px 0;
  }

  .form__left {
    max-width: 100%;
    text-align: center;
  }

  .section__form {
    padding-top: 20px;
  }
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 587px;
  width: 48%;
}

.product-card__head {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.41;
  color: #211f54;
}

.product-card__text {
  font-size: 21px;
  margin-top: 4px;
  line-height: 1.428;
  color: #6e7191;
}

.product-card__left {
  margin-right: 52px;
  min-width: 190px;
  display: flex;
  justify-content: end;
}

.product-card__img {
  max-width: 199px;
  width: 100%;
}

.product-card__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 342px;
  padding: 39px 32px;
  border: 1px solid #eff0f6;
  box-shadow: 0px 5px 6px rgba(20, 20, 43, 0.25);
  border-radius: 24px;
  height: 100%;

  background-color: #ffffff;
}

.product-card__link {
  display: block;
  position: relative;
  margin-top: 7px;
  padding-top: 14px;
  padding-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  color: #211f54;
  transition: transform 0.3s ease, color 0.3s ease;
}

.product-card__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease;
  background-image: url("../img/icons/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.product-card__link-block:hover .product-card__link {
  color: #121133;
}

.product-card__link-block:hover .product-card__link::after {
  transform: translateX(8px);
}

@media screen and (max-width: 1250px) {
  .product-card__left {
    margin-right: 15px;
  }
}

@media screen and (max-width: 1180px) {
  .product-card {
    max-width: 48%;
  }

  .product-card__left {
    margin-right: 5px;
  }

  .product-card__right {
    width: 100%;
    max-width: 302px;
  }

  .product-card__right {
    padding: 20px 16px;
  }
}

@media screen and (max-width: 1060px) {
  .product-card__head {
    font-size: 20px;
  }

  .product-card__text,
  .product-card__link {
    font-size: 17px;
  }
}

@media screen and (max-width: 928px) {
  .product-card__left {
    justify-content: center;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-card {
    flex-direction: column;
    width: 47%;
  }

  .product-card__right {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .product-card {
    width: 100%;
    max-width: none;
  }

  .product-card + .product-card {
    margin-top: 15px;
  }

  .product-card__right {
    text-align: left;
  }
}

.product-card--big .product-card__right {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card--big h4 {
  flex: 0 0 auto;
}

.product-card--big p {
  flex: 1 0 auto;
}

@media screen and (max-width: 1180px) {
  .product-card--big .product-card__left {
    margin-right: 20px;
  }
}

@media screen and (max-width: 928px) {
  .product-card--big .product-card__left {
    margin-right: 0;
  }

  .product-card--big .product-card__right {
    margin-top: 15px;
  }
}

.section__products {
  padding-top: 75px;
}

.section__products--big {
  padding-top: 25px;
}

.container--products {
  max-width: 1290px;
}

.products__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 25px;
  column-gap: 21px;
  row-gap: 120px;
}

.products__list--big {
  row-gap: 70px;
}

.products__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.208;
  text-align: center;
  color: #211f54;
}

.products__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.products__action {
  padding: 20px 30px;
  width: 241px;
  font-weight: 900;
  font-size: 20px;
  line-height: 0.9;
  background-color: #9ac969;
  transition: background-color 0.3s ease;
}

.products__action:hover {
  background-color: #57753f;
}

.products__action + .products__action {
  margin-left: 170px;
}

@media screen and (max-width: 928px) {
  .products__list {
    row-gap: 60px;
  }
}

@media screen and (max-width: 740px) {
  .products__action {
    padding: 15px 20px;
    width: 47%;
    max-width: 241px;
    line-height: 1.38;
    font-size: 15px;
  }

  .products__list--big {
    row-gap: 45px;
  }
}

@media screen and (max-width: 640px) {
  .products__action + .products__action {
    margin-left: 0;
  }

  .products__actions {
    justify-content: space-around;
  }

  .products__list {
    padding-top: 25px;
  }
}

@media screen and (max-width: 410px) {
  .products__action {
    font-size: 13px;
    padding: 10px 15px;
  }
}

.section__surfaces {
  padding-top: 85px;
}

.surfaces {
  display: flex;
}

.surfaces__left {
  min-width: 640px;
}

.surfaces__img {
  max-width: 100%;
  border-radius: 16px;
}

.surfaces__right {
  margin-top: 60px;
  margin-left: 80px;
  margin-right: 5px;
}

.surfaces__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.208;
  color: #211f54;
}

.surfaces__text {
  font-size: 18px;
  line-height: 1.66;
  color: #9ac969;
  margin-top: 19px;
}

.surfaces__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-bottom: 57px;
}

.surfaces__element {
  width: 33%;
  height: 26px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.44;
  color: #211f54;
  margin-bottom: 24px;
  position: relative;
  padding-left: 35px;
}

.surfaces__element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/icons/check.svg");
  width: 26px;
  height: 26px;
}

.surfaces__link {
  padding: 26px 29px;
}

.section__surfaces hr {
  margin-top: 116px;
}

@media screen and (max-width: 1260px) {
  .surfaces__head {
    font-size: 36px;
    line-height: 1.25;
  }

  .surfaces__element {
    font-size: 17px;
    padding-left: 32px;
  }

  .surfaces__right {
    margin-left: 50px;
  }
}

@media screen and (max-width: 1160px) {
  .surfaces__head {
    font-size: 29px;
    line-height: 1.38;
  }

  .surfaces__text {
    font-size: 17px;
    line-height: 1.47;
    margin-top: 10px;
  }

  .surfaces__right {
    margin-top: 60px;
    margin-left: 40px;
  }

  .surfaces__left {
    min-width: 55%;
  }
}

@media screen and (max-width: 1060px) {
  .surfaces__head {
    font-size: 27px;
    line-height: 1.33;
  }

  .surfaces__text {
    font-size: 15px;
    line-height: 1.46;
  }

  .surfaces__element {
    width: 50%;
  }

  .surfaces__list {
    padding-bottom: 37px;
  }

  .surfaces__right {
    margin-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .section__surfaces {
    padding-top: 60px;
  }

  .surfaces {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .surfaces__left,
  .surfaces__right {
    width: 100%;
  }

  .surfaces__left {
    text-align: center;
    margin-top: 20px;
  }

  .surfaces__right {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .surfaces__element {
    width: 33%;
    font-size: 15px;
  }

  .surfaces__link {
    padding: 18px 24px;
  }

  .section__surfaces hr {
    margin-top: 66px;
  }
}

.solution-card {
  display: flex;
  flex-direction: column;
  max-width: 388px;
  height: 494px;
  border: 1px solid #eff0f6;
  box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 16px;

  background-color: #ffffff;
}

.solution-card__img-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 270px;
}

.solution-card__img {
  display: block;
  max-width: 100%;
  margin-bottom: 25px;
}

.solution-card__img--factory {
  margin-bottom: 50px;
}

.solution-card__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.416;
  text-align: center;
  color: #4e6641;
}

.solution-card__text {
  font-size: 21px;
  line-height: 1.428;
  text-align: center;
  color: #6e7191;
  padding: 13px 38px 0;
}

@media screen and (max-width: 1200px) {
  .solution-card {
    width: 33%;
  }
}

@media screen and (max-width: 1000px) {
  .solution-card__name {
    font-size: 20px;
    line-height: 1.5;
  }

  .solution-card__text {
    font-size: 17px;
    line-height: 1.47;
    padding: 8px 25px 0;
  }
}

@media screen and (max-width: 768px) {
  .solution-card {
    width: 49%;
    height: 430px;
    margin-bottom: 20px;
  }

  .solution-card__img--factory {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 640px) {
  .solution-card {
    width: 99%;
  }

  .solution-card__img {
    margin-bottom: 15px;
  }
}

.section__solutions {
  padding-top: 98px;
}

.solutions__list {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  gap: 10px;
}

.solutions__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.208;
  text-align: center;
  color: #211f54;
  max-width: 1083px;
  margin: 0 auto;
}

.solutions__actions {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.solutions__action {
  width: 100%;
  max-width: 214px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11;
  padding: 26px 19px;
}

.solutions__action + .solutions__action {
  margin-left: 126px;
}

.solutions__action--primary {
  background: #9ac969;
}

.solutions__action--primary:hover {
  background: #303242;
}

@media screen and (max-width: 1000px) {
  .solutions__head {
    font-size: 40px;
    line-height: 1.15;
  }
}

@media screen and (max-width: 768px) {
  .solutions__head {
    font-size: 35px;
    line-height: 1.2;
  }

  .solutions__list {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }

  .solutions__actions {
    margin-top: 10px;
  }
}

@media screen and (max-width: 640px) {
  .solutions__head {
    font-size: 28px;
    line-height: 1.285;
  }

  .solutions__list {
    margin-top: 0;
  }

  .solutions__action + .solutions__action {
    margin-left: 0;
  }

  .solutions__actions {
    justify-content: space-around;
    margin-top: 40px;
  }

  .solutions__action {
    padding: 15px 20px;
    width: 47%;
    max-width: 241px;
    line-height: 1.384;
    font-size: 13px;
  }
}

.section__video {
  padding-top: 55px;
}

.video {
  max-width: 1150px;
  margin: 0 auto;
}

.video__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.208;
  text-align: center;
  color: #211f54;
  max-width: 719px;
  margin: 0 auto;
  padding-bottom: 42px;
}

@media screen and (max-width: 700px) {
  .section__video {
    padding-bottom: 80px;
  }

  .video__head {
    font-size: 40px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 640px) {
  .video__head {
    font-size: 25px;
    line-height: 1.2;
    padding-bottom: 22px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  padding-top: 110px;
}

.footer__head {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #211f54;
}

.footer__column {
  width: 100%;
}

.footer__column--first {
  max-width: 310px;
}

.footer__column--first .footer__head {
  max-width: 240px;
  line-height: 1.285;
  margin-bottom: 20px;
}

.footer__column--second {
  max-width: 280px;
}

.footer__column--third {
  max-width: 265px;
}

.footer__text {
  font-size: 18px;
  line-height: 1.66;
  color: #6e7191;
}

.footer__text + .footer__text {
  margin-top: 18px;
}

.footer__icons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.footer__icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  transition: box-shadow 0.3s ease;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__icon:hover {
  box-shadow: 0px 5px 6px rgba(20, 20, 43, 0.25);
}

.footer__icon--wa {
  background-color: #48c95f;
  background-image: url("../img/icons/icon-wa.svg");
}

.footer__icon--ya {
  background-color: #ed1e24;
  background-image: url("../img/icons/icon-ya.svg");
}

.footer__icon--vk {
  background-color: #7294c7;
  background-image: url("../img/icons/icon-vk.svg");
}

.footer__icon--ok {
  background-color: #f79a38;
  background-image: url("../img/icons/icon-ok.svg");
}

.footer__icon--yt {
  background-color: #f40000;
  background-image: url("../img/icons/icon-yt.svg");
}

.footer__phone {
  display: block;
  margin-top: 26px;
  margin-bottom: 41px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.285;
  color: #9ac969;
}

.footer__call {
  width: 225px;
  padding: 26px 23px;
}

@media screen and (max-width: 1260px) {
  .footer {
    padding-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .footer {
    column-gap: 30px;
  }

  .footer__head {
    font-size: 18px;
    line-height: 1.11;
    margin-bottom: 15px;
  }

  .footer__column--first .footer__head {
    margin-bottom: 15px;
  }

  .footer__column--first .footer__head {
    font-size: 24px;
    line-height: 1.25;
  }

  .footer__text {
    font-size: 14px;
    line-height: 1.714;
  }

  .footer__text + .footer__text {
    margin-top: 12px;
  }

  .footer__phone {
    font-size: 24px;
    line-height: 1.33;
  }

  .footer__call {
    width: 100%;
    padding: 20px 30px;
  }

  .footer__icon {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    flex-wrap: wrap;
    row-gap: 30px;
    justify-content: space-around;
    padding-top: 60px;
  }

  .footer__phone {
    margin-top: 13px;
    margin-bottom: 20px;
  }

  .footer__column {
    max-width: 300px;
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .footer__column {
    max-width: none;
  }

  .footer__icons {
    justify-content: space-around;
    margin-top: 20px;
  }
}

.section__members {
  padding-top: 75px;
}

.section__members hr {
  margin-top: 82px;
}

.container--members {
  max-width: 1310px;
}

.members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 47px;
}

.members__card {
  width: 100%;
  max-width: 300px;
  padding: 40px 27px;
  background: #cce4b4;
  border: 1px solid #eff0f6;
  box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 24px;
}

.members__head {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.416;
  margin-bottom: 26px;
  max-width: 227px;
  color: #211f54;
}

.members__text {
  font-size: 16px;
  line-height: 0.94;
  color: #6e7191;
}

.members__text + .members__text {
  margin-top: 16px;
}

.members__text b {
  font-weight: 600;
}

@media screen and (max-width: 1310px) {
  .members__card {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 1080px) {
  .members__head {
    font-size: 20px;
    line-height: 1.5;
  }

  .members__text {
    font-size: 15px;
    line-height: 1;
  }

  .members__text + .members__text {
    margin-top: 20px;
  }
}

@media screen and (max-width: 950px) {
  .members {
    row-gap: 25px;
  }

  .members__head {
    font-size: 18px;
    line-height: 1.5;
  }

  .members__text {
    font-size: 17px;
    line-height: 1.35;
  }

  .members__card {
    padding: 20px 27px;
    background: #cce4b4;
  }
}

@media screen and (max-width: 768px) {
  .members {
    row-gap: 15px;
    column-gap: 15px;
    justify-content: space-around;
  }

  .members__head {
    font-size: 17px;
    line-height: 1.41;
  }

  .members__text {
    font-size: 15px;
    line-height: 1.33;
  }

  .members__card {
    min-width: 310px;
  }
}

.section__copyright {
  padding: 32px 0;
}

.copyright {
  font-size: 21px;
  line-height: 1.428;
  text-align: center;
  color: #6e7191;
}

@media screen and (max-width: 1080px) {
  .section__copyright {
    padding: 24px 0;
  }
}

@media screen and (max-width: 768px) {
  .section__copyright {
    padding: 20px 0;
  }

  .copyright {
    font-size: 19px;
    line-height: 1.57;
  }
}

.main-head {
  font-weight: 700;
  font-size: 68px;
  line-height: 1.09;
  color: #9ac969;
}

.main-head span {
  color: #7d7d7d;
}

@media screen and (max-width: 1060px) {
  .main-head {
    font-size: 48px;
    line-height: 1;
  }
}

.about-us {
  display: flex;
  position: relative;
}

.about-us__left {
  max-width: 632px;
  padding-top: 40px;
}

.about-us__right {
  width: 48%;
  z-index: -1;
  margin-left: -87px;
}

.about-us__img {
  width: 676px;
  height: auto;
}

.about-us__subtitle {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.32;
  color: #6e7191;
  margin-top: 10px;
}

.about-us__text {
  font-weight: 400;
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
  margin-top: 19px;
}

@media screen and (max-width: 1260px) {
  .about-us__img {
    width: 100%;
    height: auto;
  }

  .about-us__right {
    margin-left: 0;
    display: flex;
    align-items: center;
  }

  .about-us__left,
  .about-us__right {
    width: 50%;
  }
}

@media screen and (max-width: 1060px) {
  .section__about-us {
    padding-top: 30px;
  }

  .about-us__subtitle {
    font-size: 19px;
  }

  .about-us__text {
    font-size: 16px;
  }

  .about-us__left {
    width: 55%;
    padding-top: 20px;
  }

  .about-us__right {
    width: 60%;
    margin-left: -7%;
  }
}

@media screen and (max-width: 768px) {
  .about-us {
    flex-wrap: wrap;
  }

  .about-us__left {
    max-width: none;
  }

  .about-us__left,
  .about-us__right {
    width: 99%;
  }

  .about-us__text {
    margin-top: 15px;
    max-width: none;
  }

  .section__about-us {
    padding-top: 15px;
  }
}

.section__portfolio {
  padding-top: 70px;
}

.portfolio {
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 16px;
  padding: 50px 0;
}

.portfolio__head {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  color: #211f54;
}

.portfolio__slider {
  position: relative;
  margin-top: 30px;
}

.swiper {
  display: flex;
  align-items: center;
  margin: 0 40px;
  padding: 1px 0;
}

.swiper-wrapper {
  width: auto;
  transform: translate3d(-1331px, 0px, 0px);
}

.swiper-slide {
  position: relative;
  width: 180px;
  height: 180px;
  border-width: 3px;
  border-style: solid;
  border-color: rgb(240, 240, 240);
  outline: rgb(139, 139, 139) solid 1px;
  text-align: center;
  margin-right: 20px;
  cursor: pointer;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: url("../img/icons/icon-search.svg");
  opacity: 0;
}

.swiper-slide:hover::before,
.swiper-slide:hover::after {
  opacity: 1;
}

.swiper-slide img {
  height: 100%;
  width: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #211f54;
  transition: color 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #6e7191;
}

.swiper-button-next {
  right: 6px;
  left: auto;
}

.swiper-button-prev {
  left: 6px;
  right: auto;
}

.section__partners {
  padding-top: 88px;
}

.partners__text {
  font-size: 21px;
  line-height: 1.43;
  text-align: center;
  color: #6e7191;
  max-width: 1180px;
  margin: 0 auto;
}

.partners__logos {
  padding-top: 63px;
  display: flex;
  justify-content: space-around;
  align-items: end;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 30px;
}

.partners__logo {
  display: block;
  max-width: 100%;
}

.section__partners hr {
  margin-top: 109px;
}

@media screen and (max-width: 1060px) {
  .partners__logos {
    padding-top: 32px;
  }

  .section__partners hr {
    margin-top: 54px;
  }
}

@media screen and (max-width: 768px) {
  .partners__text {
    font-size: 16px;
    line-height: 1.3;
  }
}

.section__why-we {
  margin-top: 45px;
}

.why-we {
  display: flex;
}

.why-we__left {
  max-width: 522px;
}

.why-we__right {
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 16px;
  padding: 41px 43px;
  margin-top: 40px;
  margin-left: 45px;
}

.why-we__head {
  font-weight: 700;
  margin-left: 10px;
  font-size: 33px;
  line-height: 1;
  color: #211f54;
}

.why-we__img {
  width: 100%;
  height: auto;
}

.why-we__list {
  max-width: 565px;
  margin-top: 33px;
}

.why-we__element {
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
  position: relative;
  padding-left: 40px;
}

.why-we__element::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url("../img/icons/check-circle.svg");
  width: 32px;
  height: 32px;
}

.why-we__element + .why-we__element {
  margin-top: 23px;
}

@media screen and (max-width: 1260px) {
  .why-we__right {
    padding: 31px 33px;
    margin-top: 10px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 1060px) {
  .why-we__left {
    display: flex;
    align-items: center;
  }

  .why-we__right {
    padding: 21px 23px;
    margin-left: 20px;
  }

  .why-we__head {
    font-size: 28px;
  }

  .why-we__element {
    font-size: 17px;
  }

  .why-we__element + .why-we__element {
    margin-top: 14px;
  }

  .why-we__element::before {
    top: 0;
  }

  .why-we__list {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .why-we {
    flex-wrap: wrap;
  }

  .why-we__left {
    margin: 0 auto;
  }

  .why-we__left,
  .why-we__right {
    width: 99%;
  }

  .why-we__right {
    padding: 15px 17px;
    margin-left: 0;
  }
}

.product-kit {
  display: flex;
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    1px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 24px;
  padding: 61px 40px;
  padding-right: 29px;
  max-width: 587px;
  width: 48%;
  align-items: center;
}

.product-kit__img {
  width: 100%;
}

.product-kit__right {
  margin-top: 17px;
  margin-left: 26px;
  min-width: 185px;
}

.product-kit__text {
  font-size: 18px;
  line-height: 1.67;
  color: #6e7191;
  max-width: 179px;
}

.product-kit__link {
  background-color: #729954;
  transition: background-color 0.3s ease;
  border-radius: 14px;
  display: block;
  color: white;
  font-weight: 900;
  font-size: 19px;
  line-height: 0.9;
  text-align: center;
  padding: 19px;
  margin-top: 23px;
}

.product-kit__link:hover {
  background-color: #57753f;
}

@media screen and (max-width: 1250px) {
  .product-kit {
    padding: 20px 20px;
    flex-direction: column;
  }

  .product-kit__right {
    margin-top: 15px;
    margin-left: 0;
    min-width: 185px;
  }

  .product-kit__link {
    padding: 14px;
    margin-top: 15px;
  }

  .product-kit__text {
    max-width: none;
    text-align: center;
    line-height: 1.35;
  }

  .product-kit__img {
    max-height: 233px;
  }
}

@media screen and (max-width: 1180px) {
  .product-kit {
    max-width: 48%;
  }
}

@media screen and (max-width: 928px) {
  .product-kit {
    justify-content: center;
  }
}

@media screen and (max-width: 640px) {
  .product-kit {
    width: 100%;
    max-width: none;
  }
}

.section__products-company {
  padding-top: 70px;
}

.products-company__list {
  display: flex;
  flex-direction: column;
  row-gap: 83px;
}

@media screen and (max-width: 900px) {
  .products-company__list {
    row-gap: 60px;
  }
}

@media screen and (max-width: 740px) {
  .section__products-company {
    padding-top: 45px;
  }
}

.product-company-card {
  display: flex;
  justify-content: space-between;
}

.product-company-card__left {
  display: flex;
  align-items: center;
}

.product-company-card__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    1px 2px 6px rgba(20, 20, 43, 0.04);
  border-radius: 24px;
  padding: 41px 52px 35px;
  margin-left: 62px;
  max-width: 868px;
}

.product-company-card__head {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.21;
  color: #211f54;
  margin-bottom: 22px;
}

.product-company-card__text {
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
}

.product-company-card__text + .product-company-card__text {
  margin-top: 25px;
}

.product-company-card__link-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 664px;
}

.product-company-card__amount {
  display: flex;
  align-items: center;
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 12px rgba(20, 20, 43, 0.08);
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  color: #211f54;
  padding: 24px 40px;
  flex-shrink: 0;
}

.product-company-card__link {
  display: flex;
  align-items: center;
  border: 1px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 12px rgba(20, 20, 43, 0.08);
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11;
  color: #211f54;
  padding: 24px 37px;
  max-width: 350px;
  width: 100%;
  position: relative;
  min-width: 245px;
}

.product-company-card__link::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 15px;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease;
  background-image: url("../img/icons/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Only move the arrow on hover */
.product-company-card__link-block:hover .product-company-card__link::after {
  transform: translateX(8px);
}

/* Optional: if you want text color change too */
.product-company-card__link-block:hover .product-company-card__link {
  color: #121133;
}

.product-company-card__img {
  width: 100%;
  max-width: 290px;
  height: auto;
}

@media screen and (max-width: 1240px) {
  .product-company-card__head {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .product-company-card__text {
    font-size: 18px;
    line-height: 1.3;
    color: #6e7191;
  }

  .product-company-card__link {
    padding: 15px 30px;
  }

  .product-company-card__amount {
    padding: 15px 30px;
  }

  .product-company-card__link::after {
    top: 5px;
    right: 10px;
    height: 40px;
    width: 40px;
  }
}

@media screen and (max-width: 1190px) {
  .product-company-card__right {
    padding: 21px 52px 15px;
  }

  .product-company-card__head {
    margin-bottom: 15px;
  }

  .product-company-card__text + .product-company-card__text {
    margin-top: 10px;
  }
}

@media screen and (max-width: 1160px) {
  .product-company-card__right {
    max-width: 70%;
  }

  .product-company-card__link {
    width: auto;
  }

  .product-company-card__link::after {
    top: 5px;
    right: 10px;
    height: 40px;
    width: 40px;
  }
}

@media screen and (max-width: 900px) {
  .product-company-card__link::after {
    top: 11px;
    right: 15px;
    height: 25px;
    width: 25px;
  }

  .product-company-card__right {
    margin-left: 31px;
    padding: 21px 26px 15px;
  }

  .product-company-card__link,
  .product-company-card__amount {
    font-size: 16px;
  }

  .product-company-card__text {
    font-size: 17px;
    line-height: 1.25;
  }
}

@media screen and (max-width: 768px) {
  .product-company-card__top {
    margin-bottom: 20px;
  }

  .product-company-card {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .product-company-card__right {
    max-width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 540px) {
  .product-company-card__head {
    font-size: 21px;
  }

  .product-company-card__link-block {
    flex-direction: column;
  }

  .product-company-card__link {
    width: 100%;
    max-width: none;
  }
}

.product__ul {
  all: revert;
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
}

.product__ul li {
  all: revert;
}

.section__product {
  padding-top: 25px;
}

.product__head {
  font-weight: 700;
  font-size: 60px;
  line-height: 0.97;
  text-align: center;
  color: #211f54;
}

.product__main {
  padding-top: 45px;
  display: flex;
  justify-content: flex-start;
}

.product__left {
  width: 395px;
}

.product__right {
  margin-top: 20px;
  margin-left: 20px;
  width: 100%;
  max-width: 777px;
}

.product__top-desc {
  display: flex;
  align-items: center;
}

.product__top-icons {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.product__plus {
  max-width: 715px;
}

.product__subtitle {
  margin-left: 49px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.42;
  color: #6e7191;
  max-width: 570px;
}

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

.product__icon img {
  float: right;
  margin-left: 10px;
  margin-top: -35px;
  margin-bottom: 30px;
}

.product__big-text {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.1;
  color: #211f54;
}

.product__small-text {
  font-weight: 700;
  font-size: 25px;
  line-height: 0.96;
  color: #6e7191;
}

.product__plus-part {
  display: flex;
  column-gap: 17px;
  margin-top: 15px;
  align-items: center;
}

.product__left-part,
.product__right-part {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__plus-icon {
  position: relative;
}

.product__plus-icon::before {
  content: "+";
  display: flex;
  height: 68px;
  width: 68px;
  font-size: 110px;
  line-height: 68px;
}

.product__desc {
  margin-top: 25px;
  max-width: 715px;
}

.product__text {
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
}

.product__text + .product__text {
  margin-top: 34px;
}

.product__text--small {
  font-size: 18px;
  line-height: 1.11;
}

.product__list {
  margin-top: 34px;
  margin-bottom: 34px;
}

.product__item::before {
  content: "•";
  position: absolute;
  font-size: 38px;
  top: -12px;
  left: 0;
}

.product__item {
  position: relative;
  padding-left: 15px;
  font-size: 21px;
  line-height: 1.43;
  color: inherit;
}

.product__item-text {
  color: #6e7191;
}

.product__warning {
  margin-top: 10px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.43;
  color: #f40000;
}

.product__buy {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 53px;
}

.product__buy--mobile {
  display: none;
}

.product__buy-link {
  display: block;
  padding: 21px 44px;
  background: #4e6641;
  border-radius: 14px;
  text-align: center;
  font-size: 20px;
  line-height: 0.9;
  color: #ffffff;
  max-width: 373px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.product__buy-link--ya {
  background-color: #fc0;
  color: #212121;
}

.product__buy-link--lerua {
  background-color: #66c05d;
}

.product__buy-link--ozon {
  background-color: #005bff;
}

.product__buy-link--ya:hover {
  background-color: #d4aa02;
}

.product__buy-link--lerua:hover {
  background-color: #376b32;
}

.product__buy-link--ozon:hover {
  background-color: #052d77;
}

.product__buy-link + .product__buy-link {
  margin-top: 12px;
}

@media screen and (max-width: 1220px) {
  .product__icon img {
    margin-left: 20px;
  }

  .product__image {
    width: 100%;
    height: auto;
  }

  .product__left {
    width: 30%;
  }

  .product__right {
    width: 70%;
  }

  .product__buy-link {
    padding: 21px 24px;
    font-size: 18px;
  }

  .product__icon img {
    max-width: 200px;
  }

  .product__subtitle {
    font-size: 20px;
    max-width: 480px;
  }

  .product__top-desc {
    align-items: center;
  }

  .product__top-icons {
    max-height: 100px;
    display: flex;
  }

  .product__top-desc img {
    height: 100%;
    width: auto;
  }

  .product__big-text {
    font-size: 50px;
  }

  .product__small-text {
    font-size: 22px;
  }

  .product__plus-icon::before {
    width: 59px;
    font-size: 100px;
  }

  .product__subtitle {
    margin-left: 28px;
  }
}

@media screen and (max-width: 1060px) {
  .product__head {
    font-size: 48px;
  }

  .product__main {
    padding-top: 40px;
  }
}

@media screen and (max-width: 1000px) {
  .product__icon img {
    max-width: 140px;
    margin-left: 0px;
  }

  .product__buy-link {
    padding: 21px 0;
    font-size: 16px;
  }

  .product__text {
    font-size: 20px;
    line-height: 1.4;
  }

  .product__text + .product__text {
    margin-top: 24px;
  }

  .product__text--small {
    font-size: 18px;
  }

  .product__list {
    margin: 24px 0;
  }

  .product__item {
    font-size: 18px;
  }

  .product__item::before {
    top: -15px;
  }

  .product__plus-part--smaller .product__big-text {
    font-size: 41px;
  }

  .product__plus-part--smaller .product__small-text {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .section__product {
    padding-top: 25px;
  }

  .product__head {
    font-size: 40px;
  }

  .product__main {
    flex-direction: column;
    align-items: center;
    padding-top: 25px;
  }

  .product__image {
    width: auto;
    height: 100%;
    max-height: 390px;
  }

  .product__left {
    width: 100%;
    text-align: center;
  }

  .product__buy {
    display: none;
  }

  .product__buy--mobile {
    display: flex;
  }

  .product__buy-link {
    font-size: 18px;
  }

  .product__right {
    width: 100%;
    margin-left: 0;
  }

  .product__top-icons {
    display: none;
  }

  .product__subtitle {
    margin: 0 auto;
    /* text-align: center; */
  }

  .product__icon img {
    max-width: 70px;
    float: none;
    margin-top: 0;
    margin-left: 20px;
    margin-bottom: 0;
  }

  .product__big-text {
    font-size: 30px;
  }

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

  .product__ul {
    font-size: 18px;
  }

  .product__plus {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 20px;
    max-width: none;
  }

  .product__plus-icon::before {
    width: 47px;
    font-size: 80px;
  }

  .product__plus-part--smaller .product__plus-icon::before {
    width: 28px;
    font-size: 53px;
  }

  .product__plus-part {
    margin-top: 0;
  }

  .product__plus-part--smaller .product__big-text {
    font-size: 24px;
  }

  .product__plus-part--smaller .product__small-text {
    font-size: 17px;
  }

  .product__desc {
    margin-top: 20px;
    max-width: none;
  }

  .product__text {
    font-size: 18px;
  }
}

@media screen and (max-width: 340px) {
  .product__icon img {
    max-width: 70px;
    float: none;
    margin-top: 0;
    margin-left: 6px;
    margin-bottom: 0;
  }
}

.section__product-company {
  padding-top: 65px;
}

.product-company__head {
  font-weight: 700;
  font-size: 60px;
  line-height: 0.97;
  text-align: center;
  color: #211f54;
}

.product-company__main {
  display: flex;
  padding-top: 70px;
  gap: 25px;
}

.product-company__left {
  width: 25%;
}

.product-company__right {
  width: 75%;
}

.product-company__image {
  width: 100%;
  height: auto;
}

.product-company__text + .product-company__text {
  margin-top: 34px;
}

.product-company__text {
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
}

.product-company__list {
  margin: 15px 0 25px;
}

.product-company__element {
  font-size: 21px;
  line-height: 1.43;
  color: #6e7191;
  position: relative;
  padding-left: 40px;
}

.product-company__element::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background-image: url("../img/icons/check-circle.svg");
  width: 32px;
  height: 32px;
}

.product-company__element + .product-company__element {
  margin-top: 23px;
}

.product-company__table {
  border: 2px solid #a6bf93;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 25px;
}

.product-company__list-prep {
  margin: 10px 0 10px;
}

.product-company__list-head {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.43;
  color: #6e7191;
}

.product-company__element-prep {
  font-size: 20px;
  line-height: 1.43;
  color: #6e7191;
  padding: 15px 10px;
}

.product-company__element-prep:nth-child(2n-1) {
  background-color: #e4ffe2;
}

@media screen and (max-width: 1060px) {
  .product-company__head {
    font-size: 48px;
  }

  .product-company__text {
    font-size: 19px;
  }

  .product-company__text + .product-company__text {
    margin-top: 24px;
  }

  .product-company__element {
    font-size: 17px;
  }

  .product-company__element + .product-company__element {
    margin-top: 14px;
  }

  .product-company__element::before {
    top: 0;
  }

  .product-company__list-head {
    font-size: 21px;
  }

  .product-company__element-prep {
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .section__product-company {
    padding-top: 25px;
  }

  .product-company__head {
    font-size: 34px;
  }

  .product-company__main {
    flex-direction: column;
    padding-top: 35px;
  }

  .product-company__left,
  .product-company__right {
    width: auto;
  }

  .product-company__left {
    margin: 0 auto;
    max-width: 295px;
  }

  .product-company__text {
    font-size: 17px;
  }
}

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  display: none;
}

.modal__wrapper .modal {
  background: white;
  padding: 25px;
  border-radius: 5px;
  min-height: 350px;
  width: 300px;
}

.modal__wrapper .modal__title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.08;
  color: #211f54;
  margin: 20px 0;
}

.modal__wrapper .modal__close {
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}

.modal__fields {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.modal__name {
  margin-bottom: 12px;
  line-height: 1.66;
  color: #211f54;
}

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

.modal__input {
  width: 100%;
  height: 50px;
  font-size: 20px;
  outline: none;
  padding: 0 10px;
  background: #ffffff;
  border: 2px solid #eff0f6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    0px 2px 12px rgba(20, 20, 43, 0.08);
  border-radius: 16px;
}

.modal__label.error input {
  border-color: #dc3545;
}

.modal__label.success input {
  border-color: #28a745;
}

.modal__label small {
  margin-top: 10px;
  color: #dc3545;
}

.modal__main small.form-result {
  text-align: center;
}

small.form-result {
  margin-top: 10px;
  display: block;
  color: #dc3545;
  font-size: 20px;
}

small.form-result.success {
  color: #28a745;
}

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

.not-found__head {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.208;
  text-align: center;
  color: #211f54;
  margin-top: 50px;
}

.not-found__text {
  font-size: 21px;
  line-height: 1.428;
  color: #6e7191;
  margin-top: 40px;
}

@media screen and (max-width: 1260px) {
  .not-found__head {
    font-size: 36px;
    line-height: 1.25;
  }
}

.youtube-video {
  position: relative;
  margin-top: 15px;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scrollTopBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #9ac969;
  border: 3px solid #9ac969;
  border-radius: 5px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}

.scrollTopBtn:hover {
  color: #729954;
  border: 3px solid #729954;
}

.scrollTopBtn--show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .scrollTopBtn {
    border: 2px solid #9ac969;
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .scrollTopBtn svg {
    height: 24px;
    width: 24px;
  }

  .scrollTopBtn:hover {
    border: 2px solid #729954;
  }
}
