@charset "UTF-8";
/*обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  background: #000;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*---------------------------------*/
:root {
  --bg: #050807;
  --bg-2: #08130e;
  --card: rgba(255, 255, 255, 0.06);
  --card-2: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6fff3;
  --muted: rgba(236, 253, 245, 0.7);
  --muted-2: rgba(236, 253, 245, 0.5);
  --yellow: #f7d84c;
  --amber: #f2a43b;
  --lime: #b9f24a;
  --green: #103c29;
  --radius: 30px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
html,
body {
  scroll-behavior: smooth;
}

body {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  background: #f3f4f2;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #000;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 7, 0.84);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 16px;
}

.brand-title {
  display: block;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: #f6fff3;
}
.brand-subtitle {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}
.nav a {
  color: var(--muted);
}
.nav a:hover {
  color: var(--yellow);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}
.mobile-nav {
  display: none;
  padding: 0 0 18px;
}
.mobile-nav.open {
  display: grid;
  gap: 10px;
  position: absolute;
  width: 100%;
  background: #000;
  left: 0;
}
.mobile-nav a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  color: #10210e;
  background: linear-gradient(135deg, var(--yellow), #e8ff76);
  box-shadow: 0 18px 42px rgba(247, 216, 76, 0.18);
}
.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.btn.small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
}
@media (max-width: 1120px) {
  .nav {
    gap: 14px;
  }
}

@media (max-width: 1020px) {
  .nav,
  .header .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }
  .section {
    padding: 68px 0;
  }
  .header-inner {
    min-height: 70px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .brand-mark img {
    width: 100%;
  }
  .brand-title {
    font-size: 14px;
  }
  .brand-subtitle {
    white-space: normal;
  }
}
.s1 {
  background-image: url("../images/s1/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 74px 0 118px 0;
}
.s1__title {
  max-width: 693px;
  width: 100%;
  font-weight: 700;
  font-size: 64px;
  line-height: 116%;
  color: #f6fff3;
}
.s1__title span:nth-of-type(1) {
  font-size: 91px;
  line-height: 95%;
  color: #f7d84c;
}
.s1__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 30px;
  max-width: 623px;
}
.s1__buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 38px;
}
.s1__button {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #f6fff3;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: flex;
  padding: 17px 13px;
}
.s1__button-active {
  border: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0 18px 42px 0 rgba(247, 216, 76, 0.18);
  background: linear-gradient(167deg, #f7d84c 0%, #e8ff76 100%);
  backdrop-filter: none;
  color: #10210e;
}
.s1__info {
  margin-top: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 700px;
}
.s1__info-item {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 8px 15px;
  gap: 10px;
  min-height: 54px;
}
.s1__info-item span {
  font-size: 16px;
  color: rgba(247, 255, 244, 0.82);
}
.s1__subtitle {
  display: none;
}
@media (max-width: 992px) {
  .s1__title span:nth-of-type(1) {
    font-size: 66px;
  }
  .s1__title {
    font-size: 35px;
    max-width: 544px;
  }
  .s1__description {
    max-width: 505px;
  }
  .s1__buttons {
    gap: 18px;
  }
  .s1__info {
    margin-top: 65px;
    gap: 18px;
    max-width: 550px;
  }
}
@media (max-width: 768px) {
  .s1__title {
    font-size: 26px;
    max-width: 380px;
  }
  .s1__title span:nth-of-type(1) {
    font-size: 48px;
  }
  .s1__description {
    max-width: 376px;
    font-size: 16px;
  }
  .s1__info {
    gap: 10px;
    max-width: 524px;
    margin-top: 30px;
  }
  .s1 {
    padding: 44px 0 50px 0;
  }
}
@media (max-width: 576px) {
  .s1 {
    background: url("../images/s1/bg-mob.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 26px 0;
    background-position-y: center;
  }
  .s1__title span:nth-of-type(1) {
    font-size: 60px;
  }
  .s1__title span:nth-of-type(2) {
    display: none;
  }
  .s1__description {
    display: none;
  }
  .s1__title {
    max-width: none;
    text-align: center;
  }
  .s1__subtitle {
    display: block;
    font-weight: 700;
    font-size: 32px;
    line-height: 123%;
    text-align: center;
    color: #f6fff3;
    margin-top: 30px;
    max-width: 370px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .s1__buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 667px;
  }
  .s1__button {
    max-width: 400px;
    width: 100%;
    justify-content: center;
    backdrop-filter: blur(12px);
  }
  .s1__info {
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .s1__info-item {
    flex: 0 0 auto;
    width: 100%;
  }
  .s1__info-item span {
    max-width: 212px;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .s1__title span:nth-of-type(1) {
    font-size: 48px;
    line-height: 101%;
  }
  .s1__subtitle {
    max-width: 320px;
    font-size: 25px;
  }
  .s1__buttons {
    margin-top: 497px;
  }
  .s1__info {
    margin-top: 22px;
  }
}
@media (max-width: 389px) {
  .s1__title span:nth-of-type(1) {
    font-size: 42px;
  }
  .s1__subtitle {
    font-size: 26px;
  }
  .s1__buttons {
    margin-top: 438px;
  }
  .s1__subtitle {
    max-width: 255px;
  }
}

.s2 {
  padding: 92px 0;
  background: #1c2d18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.s2__head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.s2__eyebrow {
  margin: 0 0 50px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s2__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.s2__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  padding: 27px;
}
.s2__icon-chip {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #12210f;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  font-size: 24px;
  font-weight: 950;
}
.s2__card-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 17px;
}
.s2__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
}
@media (max-width: 1020px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .s2__title {
    font-size: 48px;
  }
  .s2__eyebrow {
    margin-bottom: 27px;
  }
  .s2 {
    padding: 40px 0 70px 0;
  }
  .s2__head {
    margin-bottom: 33px;
  }
}
@media (max-width: 479px) {
  .s2__eyebrow {
    font-size: 12px;
  }
  .s2__title {
    font-size: 27px;
    max-width: 255px;
    margin-left: auto;
    margin-right: auto;
  }
  .s2__card {
    padding: 21px;
  }
  .s2__card-title {
    font-size: 20px;
  }
  .s2__card-text {
    font-size: 14px;
  }
}
.s3 {
  background: url("../images/s3/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 77px 0 66px 0;
}
.s3__title {
  font-weight: 700;
  font-size: 52px;
  line-height: 105%;
  text-align: center;
  color: #e5de4a;
  margin-bottom: 30px;
}
.s3__subtitle {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  text-align: center;
}
.s3__text {
  font-size: 16px;
  line-height: 172%;
  text-align: center;
  color: rgba(236, 253, 245, 0.7);
  margin-bottom: 60px;
  max-width: 738px;
  width: 100%;
  margin: 0 auto;
}
.s3__items {
  max-width: 780px;
  width: 100%;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 2fr));
  gap: 30px 20px;
  margin-top: 60px;
}
.s3__item {
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 13px 20px 25px 27px;
  min-height: 394px;
}
.s3__item-top {
  display: flex;
  justify-content: space-between;
}
.s3__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-top: 12px;
}
.s3__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: rgba(236, 253, 245, 0.7);
}
.s3__swiper {
  display: none;
}
.s3__product {
  display: none;
}
.swiper-pagination {
  position: relative !important;
  top: 32px !important;
}
@media (max-width: 1400px) {
  .s3 {
    background-position: center;
  }
}
@media (max-width: 768px) {
  .s3__item-img {
    width: 110px;
  }
  .s3__item-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .s3__swiper {
    display: block;
    margin-top: 16px;
  }
  .s3__items {
    display: none;
  }
  .s3__title {
    font-size: 48px;
  }
  .s3 {
    background: linear-gradient(178deg, #273214 0%, #000000 100%);
    padding: 36px 0 100px 0;
  }
  .s3__product {
    display: block;
    margin-top: 28px;
  }
  .s3__product img {
    width: 100%;
  }
  .s3__item-img {
    width: 146px;
  }
  .s3__item {
    min-height: auto;
  }
  .swiper-pagination-bullet {
    background: rgba(217, 217, 217, 0.8) !important;
  }
  .swiper-pagination-bullet-active {
    background: #c5ed4b !important;
  }
  .swiper-wrapper {
    height: 100% !important;
  }
}
@media (max-width: 479px) {
  .s3__title {
    font-size: 27px;
    margin-bottom: 16px;
  }
  .s3__subtitle {
    font-size: 20px;
    max-width: 322px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }
  .s3__text {
    font-size: 14px;
    max-width: 322px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .s3__item {
    backdrop-filter: none;
    background: none;
    padding: 12px 18px 20px 18px;
  }
  .s3__item-text {
    font-size: 14px;
  }
  .s3__item-title {
    margin-top: 16px;
  }
}
.s4 {
  padding: 92px 0;
  background: linear-gradient(180deg, #20331a 0%, #1a2b16 100%);
}
.s4__head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.s4__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s4__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.s4__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  padding: 15px;
}
.s4__icon-chip {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #12210f;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  font-size: 24px;
  font-weight: 950;
}
.s4__card-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 30px;
  padding: 0 5px;
}
.s4__card-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  padding: 0 5px;
}
.s4__image {
  margin-bottom: 30px;
}
.s4__image img {
  width: 100%;
  border-radius: 26px;
}
@media (max-width: 1020px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .s4__title {
    font-size: 48px;
  }
  .s4__eyebrow {
    margin-bottom: 27px;
  }
  .s4 {
    padding: 40px 0 40px 0;
  }
  .s4__head {
    margin-bottom: 33px;
  }
}
@media (max-width: 479px) {
  .s4 {
    background: linear-gradient(180deg, #20331a 0%, #1a2b16 100%);
  }
  .s4__eyebrow {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .s4__title {
    font-size: 30px;
    max-width: 347px;
    margin-left: auto;
    margin-right: auto;
  }
  .s4__card {
    padding: 18px;
  }
  .s4__card-title {
    font-size: 22px;
    padding: 0 8px;
    max-width: 260px;
    width: 100%;
    margin-bottom: 20px;
  }
  .s4__card-text {
    font-size: 14px;
    padding: 0 8px;
    max-width: 260px;
    width: 100%;
  }
  .s4__image {
    margin-bottom: 20px;
  }
}
.s5 {
  background: #000;
  padding: 70px 0;
}
.s5__head {
  max-width: 870px;
  margin: 0 auto 60px;
  text-align: center;
}
.s5__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s5__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 24px;
}
.s5__text {
  font-size: 16px;
  line-height: 172%;
  text-align: center;
  color: rgba(236, 253, 245, 0.7);
  margin-bottom: 60px;
  max-width: 738px;
  width: 100%;
  margin: 0 auto;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.s5__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
}
.s5__card.featured {
  border-color: rgba(247, 216, 76, 0.38);
  background: radial-gradient(circle at 80% 0%, rgba(247, 216, 76, 0.18), transparent 30%), rgba(255, 255, 255, 0.07);
}
.s5__card .disclaimer {
  margin-top: auto;
  background: rgba(247, 216, 76, 0.08);
}
.s5__card .btn {
  margin-top: 16px;
  width: 100%;
}
.s5__product-photo {
  position: relative;
  min-height: 250px;
  margin-bottom: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: radial-gradient(circle at 50% 10%, rgba(247, 216, 76, 0.16), transparent 34%), linear-gradient(135deg, #07120d, #151714);
}

.s5__product-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.s5__product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
}
.s5__price {
  color: var(--yellow);
  font-size: 34px;
  font-weight: 950;
  white-space: nowrap;
}
.s5__volume {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff2ad;
  background: rgba(247, 216, 76, 0.12);
  font-size: 13px;
  font-weight: 850;
}
.s5__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.s5__tag {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: rgba(247, 255, 244, 0.76);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 750;
}
.s5__product-card .disclaimer {
  margin-top: auto;
  background: rgba(247, 216, 76, 0.08);
}
.s5 .btn {
  margin-top: 70px;
  max-width: 380px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.s5__formula-cta {
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 780px;
  padding: 20px;
  border: 1px solid rgba(247, 216, 76, 0.22);
  border-radius: 26px;
  background: rgba(247, 216, 76, 0.07);
}
.s5__formula-cta p {
  margin: 0;
  color: rgba(255, 248, 208, 0.82);
}
.s5__product-title_block {
  height: 52px;
}
.s5__product-title {
  font-size: 22px;
  line-height: 1.18;
  max-width: 270px;
}
.s5__product-text {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 60px;
}
@media (max-width: 1020px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .s5__product-title_block {
    height: auto;
  }
}
@media (max-width: 576px) {
  .s5__title {
    font-size: 48px;
  }
  .s5__eyebrow {
    margin-bottom: 27px;
  }
  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 479px) {
  .s5 {
    padding: 64px 0 32px 0;
  }
  .s5__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .s5__card {
    padding: 24px;
  }
  .s5__product-top {
    margin-bottom: 50px;
  }
  .s5__product-title {
    margin-bottom: 0;
  }
  .s5__product-text {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .grid-3 {
    gap: 30px;
  }
  .s5 .btn {
    font-size: 16px;
  }
}
.s6 {
  padding: 92px 0;
  background: url("../images/s6/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.s6__head {
  max-width: 520px;
  margin: 0 auto 43px;
  text-align: center;
}
.s6__eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s6__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 520px;
}

.s6__card {
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 29px 29px 51px 29px;
}
.s6__card_1 {
  background: url("../images/s6/card-bg-1.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.s6__card_2 {
  background: url("../images/s6/card-bg-2.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.s6__card_3 {
  background: url("../images/s6/card-bg-3.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.s6__icon-chip {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
.s6__icon-chip img {
  width: 100%;
}
.s6__card-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 17px;
}
.s6__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
}
.s6__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(255, 248, 208, 0.82);
  padding: 28px 40px 28px 23px;
  background: rgba(247, 216, 76, 0.08);
  border: 1px solid rgba(247, 216, 76, 0.26);
  border-radius: 24px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .s6__title {
    font-size: 48px;
  }
  .s6__eyebrow {
    margin-bottom: 27px;
  }
  .s6 {
    padding: 40px 0 70px 0;
  }
  .s6__head {
    margin-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .s6 {
    padding: 51px 0 80px 0;
  }

  .s6__title {
    font-size: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .s6__card {
    padding: 26px;
  }
  .s6__card-title {
    font-size: 20px;
  }
  .s6__card-text {
    font-size: 14px;
  }
  .s6 .grid-3 {
    gap: 18px;
  }
  .s6__info {
    margin-top: 18px;
    padding: 25px 21px;
    font-size: 14px;
  }
}
.s7 {
  background: rgba(15, 59, 42, 0.22);
  padding: 92px 0;
}
.s7__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.s7__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s7__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.s7__text {
  font-size: 16px;
  line-height: 172%;
  text-align: center;
  color: rgba(236, 253, 245, 0.7);
  margin-bottom: 60px;
  max-width: 738px;
  width: 100%;
  margin: 0 auto;
}
.s7__row {
  display: flex;
  gap: 34px;
  justify-content: center;
}
.s7__left {
  flex: 0 1 380px;
  display: flex;
  flex-direction: column;
}
.s7__left-item {
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 27px;
}
.s7__left-img {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #12210f;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  font-size: 42px;
  font-weight: 950;
  align-content: space-between;
  justify-content: stretch;
  align-items: center;
}
.s7__left-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 18px;
}
.s7__left-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
}
.s7__left-product {
  margin-top: auto;
}
.s7__left-product img {
  width: 100%;
}
.s7__right img {
  width: 100%;
}
.s7__mob {
  display: none;
}
.s7__left-sert {
  display: none;
}
@media (max-width: 992px) {
  .s7__row {
    flex-direction: column;
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
  }
  .s7__left-product {
    display: none;
  }
  .s7__left {
    flex: 0 0 auto;
  }
  .s7__row {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .s7__title {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .s7 {
    padding: 40px 0 32px 0;
  }
  .s7__mob {
    display: block;
    margin-top: 16px;
  }
  .s7__mob img {
    width: 100%;
  }
  .s7__left-sert {
    display: block;
    margin-top: 28px;
  }
  .s7__left-sert img {
    width: 100%;
  }
  .s7__right {
    display: none;
  }
  .s7__title {
    font-size: 30px;
  }
  .s7__text {
    max-width: 340px;
    font-size: 14px;
  }
  .s7__head {
    margin-bottom: 28px;
  }
  .s7__left-item {
    padding: 19px;
  }
  .s7__left-img {
    width: 49px;
    height: 49px;
    font-size: 38px;
  }
  .s7__left-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .s7__left-text {
    font-size: 14px;
  }
}
.s8 {
  background: rgba(0, 0, 0, 0.24);
  padding: 27px 0 45px 0;
}
.s8__head {
  max-width: 720px;
  margin: 0 auto 66px;
  text-align: center;
}
.s8__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s8__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.s8__item {
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 25px;
  width: 100%;
  height: 100% !important;
}
.s8__item-img {
  border-radius: 17px;
  width: 100%;
}
.s8__item-img img {
  border-radius: 8%;
  width: 100%;
}
.s8__item-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 172%;
  color: #fff;
  margin-top: 6px;
}
.s8__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 22px;
}
.s8__swiper {
  overflow: hidden;
  padding-bottom: 60px;
}
.s8__pagination {
  position: relative !important;
  top: 32px !important;
  text-align: center;
}
.s8 .swiper-slide {
  height: auto !important;
}
.s8 .swiper-pagination-bullet {
  background-color: #d9d9d9 !important;
}
.s8 .swiper-pagination-bullet-active {
  background: #c5ed4b !important;
}
@media (max-width: 576px) {
  .s8__title {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .s8 {
    padding: 45px 0;
  }
  .s8__eyebrow {
    font-size: 12px;
    margin-bottom: 11px;
  }
  .s8__title {
    font-size: 27px;
    max-width: 250px;
  }
  .s8__head {
    margin-bottom: 26px;
  }
  .s8__item {
    padding: 23px;
  }
  .s8__item-name {
    font-size: 14px;
  }
  .s8__item-text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.s9 {
  padding: 55px 0 96px 0;
  background: url("../images/s9/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.s9__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.s9__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s9__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.s9__faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.s9__faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}
.s9__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: #f6fff3;
}
.s9__faq-question:after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #10210e;
  background: var(--yellow);
  font-size: 20px;
  line-height: 1;
}
.s9__faq-question p {
  font-weight: 700;
  font-size: 16px;
  color: #f6fff3;
}
.s9__faq-item.open .s9__faq-question:after {
  content: "−";
}
.s9__faq-answer {
  display: none;
  padding: 0 24px 22px;
}
.s9__faq-answer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 8px;
}
.s9__faq-item.open .s9__faq-answer {
  display: block;
}
@media (max-width: 576px) {
  .s9__title {
    font-size: 48px;
  }
  .s9 {
    background-position: right;
  }
}
@media (max-width: 479px) {
  .s9 {
    padding: 42px 0 57px 0;
  }
  .s9__title {
    font-size: 27px;
    max-width: 260px;
  }
  .s9__faq-question {
    padding: 11px 22px;
    font-size: 14px;
  }
  .s9__faq-answer p {
    font-size: 14px;
  }
}
.s10 {
  padding: 65px 0;
  background: #030504;
}
.s10__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s10__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 480px;
}
.s10__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  margin: 25px 0;
}
.s10__cta-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: radial-gradient(circle at 10% 10%, rgba(247, 216, 76, 0.16), transparent 30%), linear-gradient(135deg, #07120d, #111714 56%, #0b2217);
  box-shadow: var(--shadow);
}
.s10__cta-media {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #07120d, #151714);
}
.s10__cta-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.s10__form {
  padding: 51px 29px 51px 29px;
  border: 1px solid rgba(247, 216, 76, 0.38);
  border-radius: 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
  background: radial-gradient(106.22% 237.21% at 80% 0%, rgba(247, 216, 76, 0.18) 0%, rgba(247, 216, 76, 0) 30%);
  flex: 0 1 521px;
}
.s10__form-grid {
}
.s10__form-status {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 242, 74, 0.28);
  border-radius: 16px;
  color: rgba(236, 253, 245, 0.88);
  background: rgba(185, 242, 74, 0.08);
  font-weight: 760;
}
.s10__form-status.show {
  display: block;
}
.s10 input {
  margin-bottom: 30px;
}
.s10 textarea {
  margin-bottom: 65px;
}
.s10 .btn {
  margin-top: 0;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
label span {
  margin-left: 18px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}
input,
select {
  min-height: 52px;
  padding: 0 22px;
}
textarea {
  min-height: 116px;
  padding: 19px 22px;
  resize: vertical;
}
option {
  color: var(--text);
  background: #08110d;
}
.s10__wide {
  grid-column: 1 / -1;
}
.s10__cta-left {
  flex: 0 0 491px;
}
.s10__form-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 81%;
  color: #f6fff3;
}
.s10__form-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #ecfdf5;
  margin-top: 30px;
  margin-bottom: 50px;
}
.s10__caption {
  font-weight: 400;
  font-size: 14px;
  line-height: 157%;
  text-align: center;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 28px;
}
@media (max-width: 992px) {
  .s10__form-title {
    font-size: 28px;
    line-height: 97%;
  }
  .s10__cta-left {
    flex: 0 1 500px;
  }
  .s10__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .s10__cta-box {
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 479px) {
  .s10 {
    padding: 0;
  }
  .s10__eyebrow {
    font-size: 12px;
  }
  .s10__title {
    font-size: 27px;
    line-height: 105%;
  }
  .s10__text {
    margin: 23px 0;
    font-size: 16px;
  }
  .s10__cta-box {
    gap: 26px;
  }
  .s10__form-title {
    font-size: 25px;
    text-align: center;
  }
  .s10__form {
    backdrop-filter: blur(12.923076629638672px);
    box-shadow: 0 17px 44px 0 rgba(0, 0, 0, 0.2);
    background: radial-gradient(106.22% 237.21% at 80% 0%, rgba(247, 216, 76, 0.18) 0%, rgba(247, 216, 76, 0) 30%);
    padding: 47px 15px 47px 15px;
  }
  .s10__form-text {
    margin-top: 27px;
    font-size: 18px;
    margin-bottom: 46px;
  }
  label span {
    font-size: 16px;
  }
  input {
    font-size: 14px;
    padding: 0 20px;
  }
  .s10 input {
    margin-bottom: 27px;
  }
  .s10 textarea {
    margin-bottom: 60px;
  }
  .s10 .btn {
    font-size: 14px;
  }
  .s10__caption {
    font-size: 12px;
  }
}
.s11 {
  background: rgba(15, 59, 42, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 93px 0;
}
.s11__head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.s11__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s11__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.s11__contacts-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
}
.s11__contacts-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
}
.s11__contact-card {
  padding: 29px;
}
.s11__contact-list {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.s11__contact-list li {
  display: flex;
  gap: 12px;
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  color: rgba(236, 253, 245, 0.7);
}
.s11__contact-list li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  color: rgba(236, 253, 245, 0.7);
}
.s11__contact-list strong {
  min-width: 141px;
  color: var(--text);
}
.s11__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}
.s11__icon-chip {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #12210f;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  font-size: 24px;
  font-weight: 950;
}
.s11__card-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 18px;
}
.s11__card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
}
@media (max-width: 768px) {
  .s11__contacts-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .s11 {
    background: linear-gradient(360deg, #1e3019 0%, #030403 100%);
  }
  .s11__title {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .s11 {
    padding: 40px 0 27px 0;
  }
  .s11__eyebrow {
    font-size: 12px;
  }
  .s11__title {
    font-size: 27px;
  }
  .s11__head {
    margin-bottom: 30px;
  }
  .s11__contact-card {
    padding: 20px;
  }
  .s11__contact-list li {
    flex-direction: column;
    gap: 6px;
  }
  .s11__contact-list {
    gap: 12px;
  }
  .s11__contact-list li {
    font-size: 14px;
  }
  .s11__contact-list strong {
    font-size: 14px;
  }
  .s11__icon-chip {
    width: 50px;
    height: 50px;
  }
  .s11__card-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .s11__contacts-grid {
    gap: 20px;
  }
  .s11__card-text {
    font-size: 14px;
  }
}
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: #020403;
  position: relative;
  z-index: 9;
}
.footer-flex {
  display: flex;
  gap: 70px;
  justify-content: flex-end;
}
.footer h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.18;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a,
.footer p {
  font-weight: 400;
  font-size: 16px;
  color: rgba(236, 253, 245, 0.5);
}
.footer-alert {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(247, 216, 76, 0.28);
  border-radius: 22px;
  color: #fff2ad;
  background: rgba(247, 216, 76, 0.09);
  font-weight: 850;
}
.copyright {
  margin-top: 180px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 14px;
  position: relative;
  z-index: 11;
}
.footer__contacs {
  flex: 0 0 390px;
}
.footer__mail,
.footer__contacs a {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.5);
  margin-bottom: 12px;
}
.footer__info {
  line-height: 172%;
}
.footer__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 118%;
  color: #f6fff3;
  margin-bottom: 29px;
  display: none;
}
@media (max-width: 1400px) {
  .footer-flex {
    display: flex;
  }
  .copyright {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 36px 0 31px 0;
  }
  .footer-flex {
    flex-direction: column;
    gap: 0;
  }
  .footer__contacs {
    flex: 0 0 auto;
  }
  .copyright {
    margin-top: 20px;
  }
}
@media (max-width: 479px) {
  .footer__title {
    font-size: 16px;
  }
  .copyright {
    margin-top: 555px;
  }
  .footer h3 {
    font-size: 16px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-links a,
  .footer p {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .copyright {
    margin-top: 420px;
  }
}
.s12 {
  background: url("../images/s12/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 90px 0 253px 0;
}
.s12__head {
  max-width: 720px;
  margin: 0 auto 90px;
  text-align: center;
}
.s12__eyebrow {
  margin: 0 0 40px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s12__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
.s12__text {
  font-size: 16px;
  line-height: 178%;
  color: #fff;
  max-width: 580px;
  width: 100%;
}
@media (max-width: 768px) {
  .s12__text {
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 13px 20px 25px 27px;
  }
  .s12__title {
    font-size: 48px;
  }
  .s12 {
    padding: 70px 0 70px 0;
  }
}
@media (max-width: 479px) {
  .s12 {
    padding: 28px 0 604px 0;
    background: url("../images/s12/bg-mob.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }
  .s12__text {
    backdrop-filter: none;
    box-shadow: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .s12__eyebrow {
    margin-bottom: 22px;
  }
  .s12__title {
    font-size: 27px;
    max-width: 259px;
  }
  .s12__head {
    margin-bottom: 29px;
  }
  .s12__text {
    font-size: 14px;
  }
}
.s13 {
  background: url("../images/s13/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 83px 0 146px 0;
  position: relative;
}
.s13 .container {
  position: relative;
  z-index: 10;
}
.s13__head {
  max-width: 720px;
  margin: 0 auto 25px;
  text-align: center;
}
.s13__head .s13__title {
  color: #fff;
}
.s13__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  color: #e5de4a;
  text-align: center;
}
.s13__top {
  margin-top: 66px;
}
.s13__top-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.s13__top-item {
  flex: 0 1 312px;
  text-align: center;
}
.s13__top-item p {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  line-height: 150%;
  color: #fff;
  margin-top: 30px;
  max-width: 276px;
  margin-left: auto;
  margin-right: auto;
}
.s13__top .s13__top-row:nth-of-type(1) {
  margin-bottom: 60px;
}
.s13__bottom {
  margin-top: 32px;
}
.s13__grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 45px;
}
.s13__item {
  background: url("../images/s13/item-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 46px 38px 40px;
  border-radius: 23px;
  position: relative;
}
.s13__item::after {
  position: absolute;
  content: " ";
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
}
.s13__item:nth-of-type(1)::after {
  background: url("../images/s13/icon1.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.s13__item:nth-of-type(2)::after {
  background: url("../images/s13/icon2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 132px;
}
.s13__item:nth-of-type(3)::after {
  background: url("../images/s13/icon3.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.s13__item:nth-of-type(4)::after {
  background: url("../images/s13/icon4.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.s13__item:first-of-type {
  padding-left: 55px;
}
.s13__item p {
  font-weight: 600;
  font-size: 23px;
  line-height: 150%;
  color: #000;
}
.s13__item-list li {
  font-weight: 600;
  font-size: 23px;
  line-height: 150%;
  color: #000;
  list-style-type: disc;
}
.s13__item-list li:first-of-type {
  margin-bottom: 12px;
}
.s13__bg-right {
  position: absolute;
  right: 0;
  top: 40px;
  width: 21%;
}
@media (max-width: 992px) {
  .s13__bg-right {
    display: none;
  }
  .s13__top-item p {
    font-size: 18px;
  }
  .s13__top-item img {
    width: 100px;
    height: 100px;
  }
  .s13__top-row {
    gap: 22px;
  }
  .s13__grid {
    gap: 40px 24px;
  }
  .s13__item {
    padding: 72px 24px 38px 24px;
  }
  .s13__item p {
    font-size: 18px;
  }
  .s13__item:first-of-type {
    padding-left: 40px;
  }
  .s13__item-list li {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .s13 {
    padding: 46px 0 39px 0;
  }
  .s13__top-row {
    flex-direction: column;
  }
  .s13__top-item {
    flex: 0 0 auto;
  }
  .s13__top-item p {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .s13__head .s13__title {
    font-size: 48px;
  }
  .s13__title {
    font-size: 48px;
  }
  .s13__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .s13__bottom {
    margin-top: 70px;
  }
}
@media (max-width: 479px) {
  .s13__bg-right {
    width: 32%;
    top: 80px;
  }
  .s13__head .s13__title {
    font-size: 27px;
    max-width: 230px;
  }
  .s13__title {
    font-size: 27px;
  }
  .s13__head {
    margin-bottom: 57px;
  }
  .s13__top-item p {
    margin-top: 26px;
    font-size: 21px;
    max-width: 260px;
  }
  .s13__top-row {
    gap: 15px;
  }
  .s13__top .s13__top-row:nth-of-type(2) .s13__top-item:nth-of-type(1) {
    order: 3;
  }
  .s13__top .s13__top-row:nth-of-type(2) .s13__top-item:nth-of-type(2) {
    order: 1;
  }
  .s13__top .s13__top-row:nth-of-type(2) .s13__top-item:nth-of-type(3) {
    order: 2;
  }
  .s13__item::after {
    width: 76px;
    height: 76px;
  }
  .s13__item:nth-of-type(2)::after {
    height: 79px;
  }
  .s13__grid {
    margin-top: 73px;
  }
  .s13__item {
    padding: 43px 28px 40px 23px;
  }
  .s13__grid {
    gap: 30px;
  }
  .s13__item p {
    font-size: 14px;
  }
  .s13__item-list li {
    font-size: 14px;
  }
  .s13__bg-right {
    display: block;
  }
}
.bg-1 {
  position: absolute;
  top: 8330px;
  width: 36%;
  left: 0;
}
.bg-2 {
  position: absolute;
  top: 12770px;
  width: 28%;
  right: 0;
}
.bg-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  z-index: 10;
  max-height: 550px;
  object-fit: cover;
}
.bg-footer-mob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  display: none;
  z-index: 10;
}
@media (max-width: 1400px) {
  .bg-footer {
    display: none;
  }
  .bg-2 {
    top: 12862px;
  }
}
@media (max-width: 1240px) {
  .bg-1 {
    display: none;
  }
  .bg-2 {
    display: none;
  }
}
@media (max-width: 479px) {
  .bg-footer-mob {
    display: block;
    width: 100%;
  }
  .footer {
    padding-left: 20px;
  }
}
.header.open {
  /* position: absolute;
  top: 0;
  width: 100%; */
}
.s14 {
  background: #1d3018;
  padding: 74px 0 125px 0;
}
.s14__head {
  max-width: 870px;
  margin: 0 auto 48px;
  text-align: center;
}
.s14__eyebrow {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.s14__title {
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 830px;
}
.s14__text {
  font-size: 16px;
  line-height: 172%;
  text-align: center;
  color: rgba(236, 253, 245, 0.7);
  margin-bottom: 60px;
  max-width: 738px;
  width: 100%;
  margin: 0 auto;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.s14 .grid-3 {
  position: relative;
  z-index: 11;
}
.s14__card {
  border: 1px solid rgba(247, 216, 76, 0.38);
  border-radius: 30px;
  background: radial-gradient(106.22% 237.21% at 80% 0%, rgba(247, 216, 76, 0.18) 0%, rgba(247, 216, 76, 0) 30%), rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
}
.s14__card.featured {
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px 0 rgba(0, 0, 0, 0.2), 0 4px 55px 16px #7e7b1a;
  background: radial-gradient(106.22% 237.21% at 80% 0%, rgba(247, 216, 76, 0.18) 0%, rgba(247, 216, 76, 0) 30%), rgba(255, 255, 255, 0.07);
}

.s14__card-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  text-transform: uppercase;
  color: #ecf268;
  margin-bottom: 32px;
}
.s14__card.featured .s14__card-title {
  margin-bottom: 10px;
}
.s14__card-desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #f6fff3;
  margin-bottom: 26px;
}
.s14__card .disclaimer {
  margin-top: auto;
  background: rgba(247, 216, 76, 0.08);
}
.s14__card .btn {
  margin-top: 16px;
  width: 100%;
}
.s14__product-photo {
  position: relative;
  min-height: 250px;
}
.s14__product-photo::after {
  position: absolute;
  content: "";
  width: 138px;
  height: 138px;
  filter: blur(40px);
  background-color: #ebf76d;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.s14__product-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 255px;
  object-fit: contain;
}
.s14__product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
}
.s14__price {
  color: var(--yellow);
  font-size: 34px;
  font-weight: 950;
  white-space: nowrap;
}
.s14__volume {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff2ad;
  background: rgba(247, 216, 76, 0.12);
  font-size: 13px;
  font-weight: 850;
}
.s14__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: auto;
  flex-direction: column;
}
.s14__tag {
  font-weight: 500;
  font-size: 16px;
  line-height: 172%;
  color: #fff;
  padding-left: 26px;
  position: relative;
}
.s14__tag::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #f3e055;
  border-radius: 50%;
}
.s14__product-card .disclaimer {
  margin-top: auto;
  background: rgba(247, 216, 76, 0.08);
}
.s14 .btn {
  margin-top: 70px;
  max-width: 380px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.s14__formula-cta {
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 780px;
  padding: 20px;
  border: 1px solid rgba(247, 216, 76, 0.22);
  border-radius: 26px;
  background: rgba(247, 216, 76, 0.07);
}
.s14__formula-cta p {
  margin: 0;
  color: rgba(255, 248, 208, 0.82);
}
.s14__product-title_block {
  height: 52px;
}
.s14__product-title {
  font-size: 22px;
  line-height: 1.18;
  max-width: 270px;
}
.s14__product-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 172%;
  color: rgba(236, 253, 245, 0.7);
  margin-top: 25px;
  margin-bottom: 25px;
}
.s14__price {
  font-weight: 500;
  font-size: 36px;
  line-height: 76%;
  color: #f3e055;
  margin-top: 35px;
}
.s14__delivery {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #f3e358;
  border-radius: 999px;
  padding: 8px 24px;
  margin-top: 20px;
  align-self: flex-start;
  font-weight: 400;
  font-size: 13px;
  color: rgba(247, 255, 244, 0.76);
}
.s14__btn {
  border-radius: 999px;
  box-shadow: 0 18px 42px 0 rgba(247, 216, 76, 0.18);
  background: linear-gradient(192deg, #54a957 0%, #ffea00 100%);
  display: block;
  text-align: center;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #10210e;
  margin-top: 20px;
}
.s14__btn:hover {
  background: linear-gradient(192deg, #ffea00 0%, #54a957 100%);
}
.s14__card.featured .s14__btn {
  background: url("../images/s14/btn-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.s14__card.featured {
  position: relative;
  overflow: unset;
}
.s14__card.featured .s14__icon-bg {
  position: absolute;
  right: -22px;
  top: 0;
  width: 142px;
  height: 142px;
  background: url("../images/s14/bg-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1200px) {
  .s14__btn {
    font-size: 13px;
  }
  .s14__tag {
    font-size: 13px;
  }
  .s14__card.featured .s14__icon-bg {
    right: -22px;
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 1020px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .s14__btn {
    font-size: 14px;
  }
  .s14__tag {
    font-size: 14px;
  }
  .s14__card.featured .s14__card-title {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .s14__product-title_block {
    height: auto;
  }
  .s14__card-title {
    font-size: 21px;
  }
  .s14__card-desc {
    font-size: 18px;
  }
  .s14__card.featured .s14__icon-bg {
    right: -40px;
  }
}
@media (max-width: 576px) {
  .s14__title {
    font-size: 48px;
  }
  .s14__eyebrow {
    margin-bottom: 27px;
  }
  .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .s14__card.featured .s14__icon-bg {
    right: -10px;
  }
}
@media (max-width: 479px) {
  .s14 {
    padding: 41px 0 45px 0;
  }
  .s14__title {
    font-size: 27px;
    margin-bottom: 41px;
  }
  .s14__text {
    font-size: 14px;
  }
  .s14__card {
    padding: 26px;
  }
  .s14__product-top {
    margin-bottom: 50px;
  }
  .s14__product-title {
    margin-bottom: 0;
  }
  .s14__product-text {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .grid-3 {
    gap: 30px;
  }
  .s14 .btn {
    font-size: 16px;
  }
  .s14__head {
    margin-bottom: 28px;
  }
  .s14__card-title {
    margin-bottom: 22px;
  }
  .s14__card-desc {
    font-size: 17px;
  }
  .s14__product-text {
    font-size: 14px;
    margin-top: 18px;
    margin-bottom: 15px;
  }
  .s14__price {
    font-size: 32px;
    margin-top: 32px;
  }
  .s14__delivery {
    font-size: 11px;
    margin-top: 18px;
  }
  .s14__btn {
    margin-top: 18px;
    padding: 14px 20px;
  }
  .s14__card.featured .s14__icon-bg {
    width: 124px;
    height: 124px;
    top: -15px;
  }
  .s14__card.featured {
    box-shadow: 0 16px 43px 0 rgba(0, 0, 0, 0.2), 0 0 16px 4px #7e7b1a;
  }
}
