@charset "UTF-8";
/*обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink:wght@400;700&family=Arsenal:ital,wght@0,400;0,700;1,400;1,700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&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 {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
}

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 {
  --font-family: "IBM Plex Sans", sans-serif;
  --second-family: "Arsenal", sans-serif;
  --third-family: "Aref Ruqaa Ink", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  background: #f3f4f2;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.header__block {
  background-color: rgb(254, 255, 248);
  border-radius: 20px;
}
.header__row {
  display: flex;
  align-items: center;
  padding: 18px 17px 18px 17px;
  gap: 16px;
  justify-content: space-between;
}
.header__burger {
  background-color: rgba(237, 217, 215, 0.88);
  border-radius: 5px;
  width: 63px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__links {
  flex: 0 1 465px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.header__links:nth-of-type(2) {
  flex: 0 1 362px;
}
.header__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #a45c55;
  transition: all 0.3s ease;
}
.header__link:hover {
  opacity: 0.8;
  transform: translateX(2px);
}
.header__logo {
  position: relative;
  top: -11px;
  display: flex;
  flex: 0 1 236px;
}
.header__logo img {
  width: 100%;
}
.header__number {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #fdfef8;
  max-width: 262px;
  width: 100%;
  padding: 10px 14px;
  background: rgba(158, 0, 0, 0.88);
  border-radius: 5px;
}

.burger__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 13px;
}
.burger__line {
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(153, 74, 66, 0.88);
}
.burger__line:nth-of-type(2) {
  width: 28px;
}

.header__burger:hover .burger__line {
  width: 36px;
}

@keyframes slowMove {
  0% {
    opacity: 1;
    transform: translateX(0px);
    animation-timing-function: 0;
  }
  100% {
    opacity: 0.8;
    transform: translateX(2px);
  }
}
@media (max-width: 1500px) {
  .header__link {
    font-size: 15px;
  }
  .header__links {
    gap: 12px;
  }
  .header__number {
    max-width: 220px;
  }
  .header__links {
    flex: 0 1 350px;
  }
  .header__links:nth-of-type(2) {
    flex: 0 1 270px;
  }
  .header__logo {
    flex: 0 1 190px;
  }
}
@media (max-width: 1240px) {
  .header__link {
    font-size: 12px;
  }
  .header__links {
    gap: 8px;
  }
  .header__number {
    max-width: 140px;
    font-size: 14px;
  }
  .header__links {
    flex: 0 1 280px;
  }
  .header__links:nth-of-type(2) {
    flex: 0 1 220px;
  }
  .header__burger {
    width: 52px;
    height: 42px;
  }
}
@media (max-width: 992px) {
  .header__links:nth-of-type(2) {
    display: none;
  }
  .header__number {
    display: none;
  }
  .hidden__mob {
    display: none;
  }
  .header__links {
    flex: 0 0 auto;
    order: 1;
  }
  .header__logo {
    order: 2;
    top: -6px;
  }
  .header__link {
    font-size: 20px;
    font-weight: 600;
    display: none;
  }
  .header__burger {
    order: 3;
    position: absolute;
    right: 20px;
  }
  .header {
    padding: 0 10px;
  }
  .header__row {
    padding: 11px 17px 11px 17px;
    justify-content: center;
    position: relative;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .header__link {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .header__link {
    font-size: 14px;
  }
  .header__burger {
    width: 47px;
    height: 28px;
  }
  .burger__lines {
    gap: 3px;
  }
  .burger__line {
    height: 1px;
  }
  .header__logo {
    max-width: 116px;
    flex: 0 1 116px;
  }
}
.s1 {
  margin-top: 8px;
}
.s1__row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.s1__left {
  border-radius: 20px;
  max-width: 1141px;
  width: calc(60% - 6px);
  position: relative;
  padding: 79px 20px 84px 35px;
}
.s1__left-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.s1__left-block {
  position: relative;
  z-index: 9;
}
.s1__left_title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 141px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #aae8ff 0%, #f1ffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s1__left_subtitle {
  font-family: var(--second-family);
  font-size: 66px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  margin-top: 44px;
}
.s1__left_text {
  max-width: 497px;
  width: 100%;
  margin-top: 42px;
  font-family: var(--font-family);
  font-size: 32px;
  line-height: 100%;
  color: #fff;
}
.s1__left-row {
  margin-top: 62px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.s1__left-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 407px;
}
.s1__left-item:nth-of-type(2) {
  max-width: 164px;
}
.s1__left-item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #ecf4e8;
}
.s1__left-button {
  display: flex;
  border-radius: 5px;
  margin-top: 73px;
  background: linear-gradient(64deg, #cfb469 0%, #8f7428 55.08%, #ffeb9f 100%);
  max-width: 384px;
  width: 100%;
  padding: 32px 22px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.s1__left-button span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 103%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}
.s1__left-button img:nth-of-type(1) {
  animation: movePx 0.8s infinite linear;
}
.s1__left-button img:nth-of-type(2) {
  transform: rotate(180deg);
  animation: movePxMirror 0.8s infinite linear;
}
.s1__right {
  border-radius: 20px;
  max-width: 762px;
  width: calc(40% - 6px);
  position: relative;
}
.s1__right-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 1600px) {
  .s1__left_title {
    font-size: 62px;
  }
  .s1__left {
    padding: 50px 20px 84px 35px;
  }
  .s1__left_subtitle {
    font-size: 46px;
  }
  .s1__left-button {
    font-size: 48px;
    margin-top: 48px;
  }
  .s1__left-row {
    margin-top: 45px;
  }
}
@media (max-width: 1240px) {
  .s1__left {
    padding: 24px 20px 40px 35px;
  }
  .s1__left_subtitle {
    font-size: 38px;
    margin-top: 34px;
  }
  .s1__left_text {
    font-size: 29px;
    margin-top: 34px;
  }
  .s1__left-item {
    max-width: 300px;
  }
  .s1__left-item p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .s1__left_title {
    font-size: 60px;
  }
  .s1__left_subtitle {
    font-size: 28px;
  }
  .s1__left_text {
    font-size: 18px;
    margin-top: 22px;
  }
  .s1__left-row {
    margin-top: 32px;
  }
  .s1__left-item p {
    font-size: 14px;
  }
  .s1__left-item {
    gap: 12px;
  }
  .s1__left-item {
    max-width: 230px;
  }
  .s1__left-button {
    padding: 22px 22px;
    margin-top: 32px;
  }
  .s1__left-button span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .s1__row {
    flex-direction: column;
  }
  .s1__right-bg {
    height: auto;
  }
  .s1__right {
    width: 100%;
  }
  .s1__left {
    width: 100%;
    padding: 24px 20px 40px 20px;
  }
  .s1 {
    padding: 0 10px;
  }
}
@media (max-width: 479px) {
  .s1 {
    margin-top: 10px;
  }
  .s1__left {
    padding: 24px 20px 40px 20px;
  }
  .s1__left_title {
    font-size: 51px;
    margin-left: 10px;
  }
  .s1__left_subtitle {
    font-size: 30px;
    margin-top: 32px;
    margin-left: 10px;
  }
  .s1__left_text {
    margin-top: 30px;
    font-size: 16px;
    max-width: 212px;
    width: 100%;
    margin-left: 10px;
  }

  .s1__left-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 37px;
    gap: 10px;
    margin-left: 10px;
  }
  .s1__left-item:nth-of-type(2) {
    max-width: 180px;
  }
  .s1__left-button span {
    font-size: 18px;
  }
  .s1__left-button {
    margin-top: 30px;
    padding: 13px 19px;
    border-radius: 5px;
  }
  .s1__left-button img {
    display: none;
  }
  .s1__left-item {
    gap: 20px;
  }
  .s1__row {
    gap: 10px;
  }
  .s1__left-bg {
    border-radius: 10px;
  }
  .s1__right-bg {
    border-radius: 10px;
  }
  .s1__right-bg_flowers {
    border-radius: 10px;
  }
}
.s1__right-bg_flowers {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 31%;
  border-radius: 20px;
}

.s2 {
  padding: 233px 40px 0 40px;
  background: url(../img/s2/bg.jpg);
  background-size: cover;
  background-position: right;
}
.s2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}
.s2__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 1162px;
}
.s2__top-title i {
  color: #7d2a1c;
}
.s2__top-title img {
  position: relative;
  top: 9px;
}
.s2__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  max-width: 350px;
  width: 100%;
}
.s2__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s2__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}
.s2__center {
  margin-top: 90px;
}
.s2__center-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.s2__center-item {
  border-radius: 20px;
}
.s2__desc {
  background-color: #64808f;
  flex: 0 1 732px;
  padding: 60px 32px 88px 32px;
  position: relative;
}
.s2__desc-block {
  position: relative;
  z-index: 9;
}
.s2__desc-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 41%;
}
.s2__desc-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ecf4e8;
  max-width: 321px;
  width: 100%;
}
.s2__desc-text {
  margin-top: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #ecf4e8;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.s2__desc-text:nth-child(1) {
  max-width: 623px;
  width: 100%;
}
.s2__desc-text:nth-child(2) {
  max-width: 610px;
  width: 100%;
}
.s2__weight {
  flex: 0 1 361px;
  background: rgba(254, 255, 248, 0.9);
  padding: 46px 31px 56px 31px;
}
.s2__weight-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
}
.s2__weight-warning {
  margin-top: 64px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #7d2a1c;
}
.s2__weight-warning span {
  font-size: 70px;
  line-height: 110%;
  letter-spacing: -0.04em;
}
.s2__weight-text {
  margin-top: 48px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #4a4646;
}
.s2__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 362px;
  justify-content: space-between;
}
.s2__steps-block {
  background: #ad9a84;
  border-radius: 20px;
  padding: 46px 32px 66px 32px;
}
.s2__steps-block:nth-of-type(1) {
  height: 100%;
}
.s2__steps-block:nth-of-type(2) {
  background: #9a0003;
  padding: 32px 24px 42px 33px;
}
.s2__steps-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ecf4e8;
}
.s2__steps-description {
  margin-top: 37px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #ecf4e8;
}
.s2__steps-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  background: linear-gradient(222deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1650px) {
  .s2 {
    padding: 133px 40px 0 40px;
  }
  .s2__desc {
    flex: 0 1 620px;
  }
  .s2__desc-title {
    font-size: 41px;
  }
  .s2__desc-text {
    font-size: 20px;
  }
  .s2__desc-text {
    font-size: 18px;
  }
  .s2__weight {
    flex: 0 1 320px;
  }
  .s2__weight-title {
    font-size: 32px;
  }
  .s2__weight-warning {
    font-size: 32px;
  }
  .s2__weight-warning span {
    font-size: 66px;
  }
  .s2__weight-text {
    font-size: 18px;
  }
  .s2__steps-title {
    font-size: 32px;
  }
  .s2__steps-description {
    font-size: 18px;
  }
  .s2__steps-text {
    font-size: 20px;
  }
  .s2__steps {
    flex: 0 0 320px;
  }
  .s2__top-title {
    font-size: 52px;
  }
  .s2__top-title img {
    top: 9px;
    width: 30px;
  }
}
@media (max-width: 1240px) {
  .s2__top-info {
    max-width: 220px;
    font-size: 14px;
  }
  .s2__top-info::after {
    top: 2px;
  }
  .s2__top-info::before {
    top: 2px;
  }
  .s2__top-title {
    font-size: 28px;
  }
  .s2__top-title img {
    width: 23px;
    top: 0;
  }
  .s2__center {
    margin-top: 60px;
  }
  .s2__desc-title {
    font-size: 28px;
  }
  .s2__desc-text {
    font-size: 16px;
  }
  .s2__steps-title {
    font-size: 25px;
  }
  .s2__steps-block {
    padding: 46px 24px 66px 24px;
  }
  .s2__weight {
    flex: 0 1 240px;
  }
  .s2__steps {
    flex: 0 0 240px;
  }
  .s2__weight-warning {
    font-size: 28px;
  }
  .s2__weight-warning span {
    font-size: 66px;
  }
  .s2__weight-text {
    font-size: 16px;
  }
  .s2__weight-title {
    font-size: 25px;
  }
  .s2__steps-description {
    font-size: 16px;
  }
  .s2__steps-text {
    font-size: 16px;
  }
  .s2__steps-block:nth-of-type(2) {
    padding: 32px 24px 42px 23px;
  }
}
.s2__bottom {
  margin-top: 140px;
}
.s2__bottom-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.s2__bottom-title {
  font-family: var(--second-family);
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 355px;
  width: 100%;
  margin-top: 4px;
}
.s2__bottom-title i {
  color: #7d2a1c;
}
.s2__bottom-section {
  display: flex;
  gap: 8px;
}
.s2__bottom-row {
  display: flex;
  gap: 8px;
}
.s2__bottom-item {
  flex: 0 0 361px;
  background: rgba(254, 255, 248, 0.9);
  border-radius: 20px;
  padding: 16px 24px 24px 16px;
}
.s2__bottom-img {
  border-radius: 10px;
  width: 96px;
  height: 96px;
  background: #9a0003;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s2__bottom-procent {
  margin-top: 99px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 100px;
  line-height: 66%;
  text-transform: uppercase;
  color: #7d2a1c;
  margin-left: 12px;
}
.s2__bottom-text {
  margin-top: 48px;
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 120%;
  color: #4a4646;
  max-width: 253px;
  margin-left: 12px;
}
.s2__bottom-link {
  display: block;
  margin-left: auto;
  margin-top: 49px;
  border-bottom: 0.63px solid #4a4646;
  font-family: var(--font-family);
  font-size: 9px;
  line-height: 156%;
  color: #4a4646;
  width: 66px;
  transition: all 0.3s ease;
}
.s2__bottom-link:hover {
  opacity: 0.7;
}

@media (max-width: 1800px) {
  .s2__bottom-procent {
    font-size: 84px;
  }
  .s2__bottom-item {
    flex: 0 0 280px;
  }
  .s2__bottom-text {
    font-size: 18px;
  }
  .s2__bottom-title {
    font-size: 37px;
  }
}
@media (max-width: 1500px) {
  .s2__bottom-item {
    flex: 0 0 230px;
  }
  .s2__bottom-title {
    font-size: 32px;
  }
  .s2__bottom-procent {
    font-size: 64px;
  }
  .s2__bottom-text {
    font-size: 14px;
  }
}
@media (max-width: 1240px) {
  .s2__bottom-img {
    width: 70px;
    height: 70px;
  }
  .s2__bottom-img img {
    width: 36px;
  }
  .s2__bottom-item:nth-of-type(2) .s2__bottom-img img {
    width: 39px;
  }
  .s2__bottom-procent {
    font-size: 48px;
    margin-left: 0px;
  }
  .s2__bottom-item {
    padding: 16px 19px 13px 12px;
    flex: 0 0 180px;
  }
  .s2__bottom-text {
    font-size: 12px;
    margin-left: 0px;
  }
  .s2__bottom-title {
    font-size: 23px;
  }
}
@media (max-width: 992px) {
  .s2 {
    padding: 80px 40px 0 40px;
  }
  .s2__center-row {
    flex-direction: column;
  }
  .s2__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .s2__top-info {
    max-width: none;
    margin-left: 25px;
  }
  .s2__top-info::after {
    top: 2px;
    left: -22px;
  }
  .s2__top-info::before {
    top: 2px;
    left: -22px;
  }
  .s2__top-title {
    font-size: 38px;
  }
  .s2__top-title img {
    width: 28px;
    top: 0;
  }
  .s2__center {
    margin-top: 40px;
  }
  .s2__center-item {
    flex: none;
  }
  .s2__bottom-block {
    flex-direction: column;
  }
  .s2__bottom-item {
    flex: 0 1 280px;
  }
  .s2__bottom-text {
    max-width: 220px;
  }
  .s2__bottom-text {
    font-size: 10px;
  }
  .s2__bottom {
    margin-top: 70px;
  }
  .s2__bottom-title {
    font-size: 38px;
  }
  .s2__bottom-title {
    max-width: none;
  }
  .s2__top-info {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .s2__bottom-section {
    flex-direction: column;
    width: 100%;
  }
  .s2__top-title {
    font-size: 30px;
  }
  .s2__bottom-item {
    flex: 0 0 50%;
  }
  .s2__bottom-text {
    font-size: 16px;
  }
  .s2__top-title img {
    width: 26px;
  }
}
@media (max-width: 576px) {
  .s2__bottom-text {
    font-size: 12px;
  }
  .s2 {
    padding: 80px 20px 0 20px;
  }
  .s2__bottom-procent {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .s2__bottom-text {
    font-size: 14px;
    margin-top: 20px;
  }
  .s2__bottom-title {
    font-size: 30px;
  }
  .s2 {
    padding: 60px 10px 0 10px;
  }
  .s2__center {
    margin-top: 30px;
  }
  .s2__desc {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .s2__desc-title {
    max-width: 222px;
  }
  .s2__desc-text {
    margin-top: 30px;
    gap: 20px;
  }
  .s2__desc-bg {
    width: 35%;
  }
  .s2__center-row {
    gap: 10px;
  }
  .s2__weight {
    padding: 35px 16px 35px 20px;
  }
  .s2__weight-title {
    font-size: 28px;
  }
  .s2__weight-warning span {
    font-size: 70px;
  }
  .s2__weight-warning {
    margin-top: 30px;
  }
  .s2__weight-text {
    margin-top: 30px;
  }
  .s2__steps-block {
    padding: 30px 16px 35px 20px;
  }
  .s2__steps-title {
    font-size: 28px;
  }
  .s2__steps-description {
    margin-top: 30px;
    font-size: 16px;
  }
  .s2__steps-text {
    font-size: 22px;
    background: linear-gradient(165deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .s2__steps-block:nth-of-type(2) {
    padding: 30px 20px;
  }
  .s2__bottom {
    margin-top: 60px;
  }
  .s2__bottom-img {
    width: 55px;
    height: 55px;
  }
  .s2__bottom-procent {
    margin-top: 23px;
    font-size: 45px;
  }
  .s2__bottom-link {
    margin-top: 7px;
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1, 1);
    animation-timing-function: ease-in;
  }
  1% {
    opacity: 0;
    transform: scale(1, 1);
    animation-timing-function: ease-in;
  }
  21% {
    opacity: 0;
    transform: scale(1, 1);
    animation-timing-function: ease-in;
  }
  29% {
    opacity: 1;
    transform: scale(1, 1);
    animation-timing-function: ease-out;
  }
  100% {
    opacity: 0;
    transform: scale(2.16, 2.16);
  }
}
@keyframes movePx {
  0% {
    transform: translateX(0px);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateX(-1px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movePxMirror {
  0% {
    transform: translateX(0px) rotate(180deg);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateX(-1px) rotate(180deg);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateX(0px) rotate(180deg);
  }
}
.s3 {
  padding: 233px 40px 0 40px;
  background: url(../img/s3/bg.jpg);
  background-size: cover;
  background-position: right;
}
.s3__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}
.s3__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 1162px;
}
.s3__top-title i {
  color: #7d2a1c;
}
.s3__top-title img {
  position: relative;
  top: 9px;
}
.s3__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  max-width: 350px;
  width: 100%;
}
.s3__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s3__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s3__main {
  display: flex;
  gap: 9px;
  margin-top: 90px;
}
.s3__main-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.s3__main-column:nth-of-type(1) {
  flex: 0 0 917px;
}
.s3__main-column:nth-of-type(2) {
  flex: 0 1 915px;
}
.s3__desc {
  position: relative;
  background: rgba(254, 254, 248, 0.9);
  border-radius: 20px;
  padding: 61px 32px 70px 32px;
}
.s3__flowers {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 25%;
}
.s3__desc-subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  color: #7d2a1c;
  max-width: 625px;
  width: 100%;
  position: relative;
  z-index: 9;
}
.s3__desc-text {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 142%;
  color: #7d2a1c;
  margin-top: 64px;
  max-width: 700px;
  width: 100%;
}
.s3__desc-text__high {
  font-family: var(--font-family);
  font-style: italic;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #7d2a1c;
  margin-top: 56px;
}
.s3__desc-text__weight {
  font-family: var(--font-family);
  font-size: 24px;
  line-height: 142%;
  letter-spacing: 0.04em;
  color: #7d2a1c;
  margin-top: 13px;
  max-width: 693px;
  width: 100%;
}
.s3__steps {
  padding-top: 52px;
}
.s3__steps-top {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  justify-content: space-between;
}
.s3__steps-title {
  font-family: var(--second-family);
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
}
.s3__steps-title i {
  color: #7d2a1c;
}
.s3__steps-info {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: rgba(74, 70, 70, 0.9);
  position: relative;
  max-width: 512px;
  width: 100%;
}
.s3__steps-info::after {
  content: "";
  background-image: url("../img/s3/icon.svg");
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: -27px;
}
.s3__steps-row {
  margin-top: 19px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.s3__step {
  border-radius: 20px;
  padding: 21px 0 0 21px;
  background: #fcfcf7;
  position: relative;
}
.s3__step:nth-of-type(1) .s3__step-title {
  margin-bottom: 21px;
}
.s3__step-num {
  border-radius: 7px;
  width: 42px;
  height: 42px;
  background: #9a0003;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s3__step-num span {
  font-family: var(--second-family);
  font-size: 34px;
  line-height: 71%;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(222deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s3__step-title {
  margin-top: 51px;
  font-family: var(--second-family);
  font-size: 42px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #4a4646;
  margin-right: 21px;
}
.s3__step-title i {
  color: #7d2a1c;
}
.s3__step-branch {
  margin-left: auto;
  display: block;
  margin-bottom: 20px;
}
.s3__step-ball {
  display: block;
  margin-left: auto;
}
.s3__photo {
  background: #9a0003;
  padding: 50px 92px;
  border-radius: 20px;
  min-height: 566px;
  display: flex;
  align-items: center;
}
.s3__photo img {
  animation: bounce 4s infinite linear;
  max-width: 731px;
  width: 100%;
}
.s3__photos {
  display: flex;
  gap: 8px;
  height: 100%;
}
.s3__photos-block {
  flex: 0 0 calc(50% - 4px);
  border-radius: 20px;
  background: #9a0003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.s3__photos-block:nth-of-type(1) img {
  max-width: 368px;
  width: 100%;
  animation: bounce 4s infinite linear;
}
.s3__photos-block:nth-of-type(2) img {
  max-width: 379px;
  width: 100%;
  animation: bounce 4s infinite linear;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateY(6px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 1500px) {
  .s3 {
    padding: 133px 40px 0 40px;
  }
  .s3__main-column:nth-of-type(1) {
    flex: 0 0 700px;
  }
  .s3__step {
    flex: 0 0 31%;
  }
  .s3__steps-row {
    justify-content: space-between;
  }
  .s3__step-title {
    font-size: 28px;
  }
  .s3__step-branch {
    width: 180px;
  }
  .s3__step-ball {
    width: 120px;
  }
  .s3__steps-title {
    font-size: 38px;
  }
  .s3__steps-info {
    font-size: 18px;
  }
  .s3__steps-info {
    max-width: 318px;
  }
  .s3__desc-text__high {
    font-size: 26px;
  }
  .s3__desc-subtitle {
    font-size: 22px;
  }
  .s3__desc-text {
    font-size: 22px;
  }
  .s3__desc-text__weight {
    font-size: 22px;
  }
  .s3__top-title {
    font-size: 52px;
  }
  .s3__top-title img {
    top: 9px;
    width: 30px;
  }
  .s3__photo {
    min-height: 508px;
  }
  .s3__photo {
    padding: 50px 44px;
  }
  .s3__photos-block {
    padding: 0 16px;
  }
}
@media (max-width: 1240px) {
  .s3__main-column:nth-of-type(1) {
    flex: 0 0 560px;
  }
  .s3__photo {
    min-height: 462px;
  }
  .s3__desc-subtitle {
    font-size: 18px;
  }
  .s3__desc-text {
    font-size: 18px;
  }
  .s3__desc-text__high {
    font-size: 20px;
  }
  .s3__desc-text__weight {
    font-size: 18px;
  }
  .s3__steps-title {
    font-size: 32px;
  }
  .s3__steps-info {
    max-width: 318px;
    font-size: 16px;
  }
  .s3__step-title {
    font-size: 20px;
  }
  .s3__step-ball {
    width: 100px;
  }
  .s3__step-branch {
    width: 130px;
  }
  .s3__step-title {
    margin-top: 30px;
  }
  .s3__top-title {
    font-size: 28px;
  }
  .s3__top-title img {
    width: 23px;
    top: 0;
  }
  .s3__top-info {
    max-width: 230px;
  }
}
.s4 {
  padding: 189px 40px 20px 40px;
  background: url(../img/s4/bg.jpg);
  background-repeat: no-repeat;
}
.s4__container {
  margin: 0 auto;
  position: relative;
}
.s4__title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #4a4646;
  max-width: 918px;
  margin: 0 auto;
}
.s4__title i {
  color: #7d2a1c;
}
.s4__subtitle {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 39px;
  line-height: 62%;
  text-align: center;
  color: rgba(74, 70, 70, 0.9);
  margin-top: 59px;
}
.s4__steps {
  margin: 90px auto 0 auto;
  max-width: 616px;
  width: 100%;
  position: relative;
}
.s4__steps::after {
  content: "";
  width: 3px;
  height: 100%;
  opacity: 0.2;
  background: #096935;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
}
.s4__step {
  position: relative;
  z-index: 9;
  background: #f9fcf3;
  border-radius: 19px;
  max-width: 616px;
  width: 100%;
  padding: 35px 21px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.s4__step:not(:nth-of-type(1)) {
  margin-top: 41px;
}
.s4__step-num {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: #7d2a1c;
  font-family: var(--second-family);
  font-size: 43px;
  line-height: 53%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s4__step-text {
  font-family: var(--second-family);
  font-size: 44px;
  line-height: 69%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #4a4646;
}
.s4__step-text i {
  color: #7d2a1c;
}
.s4__info {
  margin-top: 94px;
}
.s4__info-title {
  font-family: var(--second-family);
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #4a4646;
  max-width: 694px;
  margin: 0 auto;
}
.s4__info-row {
  margin-top: 86px;
  display: flex;
  gap: 19px;
}
.s4__info-block {
  display: flex;
  gap: 13px;
}
.s4__info-block__left {
  flex: 0 0 392px;
  position: relative;
}
.s4__info-block__img img {
  max-width: 192px;
  width: 100%;
}
.s4__info-text {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: rgba(53, 53, 53, 0.9);
  text-align: left;
  max-width: 344px;
  width: 100%;
  margin-bottom: 80px;
}
.s4__info-line {
  height: 1px;
  width: 100%;
  background: #7d2a1c;
  position: absolute;
  top: 50%;
  left: 0;
}
.s4__info-line::after {
  content: "";
  position: absolute;
  background-image: url(../img/s4/arrow.svg);
  width: 25px;
  height: 36px;
  top: -18px;
  right: -4px;
}
.s4__info-footer {
  margin-top: 46px;
  max-width: 814px;
  width: 100%;
  font-family: var(--second-family);
  font-size: 30px;
  line-height: 107%;
  text-transform: uppercase;
  color: #4a4646;
}
.s4__info-footer i {
  color: #7d2a1c;
}

@media (max-width: 1700px) {
  .s4__info-block__left {
    flex: 0 1 392px;
  }
}
@media (max-width: 1500px) {
  .s4__info-text {
    font-size: 16px;
  }
  .s4__title {
    max-width: 660px;
    font-size: 48px;
  }
}
@media (max-width: 1240px) {
  .s4__info-block__img {
    align-self: center;
  }
  .s4__info-text {
    font-size: 12px;
  }
  .s4 {
    padding: 133px 40px 0 40px;
  }
  .s4__title {
    font-size: 32px;
    max-width: 400px;
  }
  .s4__subtitle {
    font-size: 32px;
  }
  .s4__steps {
    max-width: 430px;
    margin: 60px auto 0 auto;
  }
  .s4__step-text {
    font-size: 28px;
  }
  .s4__info-title {
    font-size: 32px;
  }
  .s4__info {
    margin-top: 60px;
  }
  .s4__info-footer {
    font-size: 24px;
  }
}
.s4__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: absolute;
  right: 0;
  top: 6px;
  max-width: 200px;
  width: 100%;
}
.s4__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s4__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

@media (max-width: 1240px) {
  .s4__top-info::before,
  .s4__top-info::after {
    top: 3px;
  }
  .s4__top-info {
    font-size: 16px;
    max-width: 160px;
  }
}
.s5 {
  padding: 160px 40px 0 40px;
  background: #f3f4f2;
}
.s5__block {
  display: flex;
  gap: 8px;
  max-width: 1840px;
  width: 100%;
}
.s5__block-left {
  flex: 0 1 calc(50% - 4px);
}
.s5__block-left img {
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.s5__right {
  flex: 0 1 calc(50% - 4px);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  background-color: #fefef8;
  padding: 92px 32px 51px 32px;
  position: relative;
  overflow: hidden;
}
.s5__right-flowers {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  animation: rotationFlowers 16s infinite linear;
}
.s5__right-flowers img {
  width: 100%;
}
.s5__right-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #7d2a1c;
  max-width: 829px;
  width: 100%;
}
.s5__right-title span {
  display: block;
}
.s5__right-docname {
  margin-top: 43px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #7d2a1c;
}
.s5__right-desc {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 106%;
  color: #7d2a1c;
  margin-top: 9px;
}
.s5__right-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #4a4646;
  margin-top: 43px;
}

@media (max-width: 1500px) {
  .s5__right-title {
    font-size: 32px;
    max-width: 829px;
  }
  .s5__right {
    padding: 48px 32px 51px 32px;
  }
  .s5__right-title {
    font-size: 48px;
    max-width: 435px;
  }
  .s5__right-text {
    font-size: 16px;
  }
}
@media (max-width: 1240px) {
  .s5__right-title {
    font-size: 32px;
    max-width: 430px;
  }
  .s5 {
    padding: 133px 40px 0 40px;
  }
}
@keyframes rotationFlowers {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.s6 {
  padding: 233px 40px 0 40px;
  background: #f3f4f2;
}
.s6__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}
.s6__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 756px;
}
.s6__top-title i {
  color: #7d2a1c;
}
.s6__top-title img {
  position: relative;
  top: 9px;
}
.s6__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  max-width: 270px;
  width: 100%;
}
.s6__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s6__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s6__center {
  margin-top: 90px;
  position: relative;
}
.s6__cards {
  max-width: 1848px;
  display: flex;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) {
  margin-top: 8px;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) {
  background: #64808f;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) {
  background: #9a0003;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img {
  top: 13%;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img img {
  width: 98%;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img {
  top: 41%;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img img {
  width: 110%;
}
.s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img {
  top: 40%;
}
.s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img img {
  width: 108%;
}
.s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) {
  background: #252525;
}
.s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__product-text {
  background: rgba(167, 85, 85, 0.4);
}
.s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__product-text {
  background: rgba(233, 209, 209, 0.4);
}
.s6__card {
  position: relative;
  border-radius: 20px;
  padding: 96px 25px 128px 25px;
  flex: 0 0 calc(50% - 4px);
}
.s6__card-flowers {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.s6__item-top {
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  max-width: 416px;
  align-items: end;
  width: 100%;
  margin-left: auto;
}
.s6__item-title {
  font-family: var(--second-family);
  font-size: 34px;
  line-height: 76%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #353d0c;
  background: linear-gradient(222deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
  padding: 18px 21px 19px 19px;
  border-radius: 8px;
}
.s6__item-desc {
  font-size: 20px;
  line-height: 80%;
  color: #ecf4e8;
}
.s6__card-row {
  display: flex;
  justify-content: end;
}
.s6__item {
  position: relative;
  z-index: 9;
}
.s6__item:nth-of-type(1) {
  position: relative;
  flex: 0 1 440px;
  z-index: 9;
}
.s6__item:nth-of-type(2) {
  flex: 0 0 416px;
  justify-self: flex-end;
}
.s6__item-img {
  position: absolute;
  left: -15px;
  top: 0;
}
.s6__item-block {
  margin-top: 22px;
  max-width: 392px;
  width: 100%;
}
.s6__item-product {
  font-family: var(--second-family);
  font-size: 42px;
  line-height: 95%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ecf4e8;
}
.s6__product-desc {
  font-family: var(--second-family);
  font-size: 26px;
  line-height: 100%;
  color: #ecf4e8;
  margin-top: 24px;
}
.s6__product-info {
  margin-top: 40px;
  max-width: 392px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.s6__product-text {
  border-radius: 10px;
  backdrop-filter: blur(4px);
  background: rgba(254, 255, 248, 0.1);
  padding: 24px 33px 24px 53px;
  font-size: 20px;
  line-height: 120%;
  color: #ecf4e8;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.s6__umbrella {
  position: absolute;
  right: -40px;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 1;
}

.s6__item-img__text {
  position: absolute;
  top: 15px;
  left: 30px;
  font-family: var(--second-family);
  font-size: 36px;
  line-height: 60%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  background: #e32121;
  transform: rotate(339deg);
  border-radius: 50%;
  height: 192px;
  width: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 1650px) {
  .s6__item:nth-of-type(2) {
    flex: 0 0 380px;
  }
  .s6__item-img__text {
    height: 160px;
    width: 160px;
  }
  .s6__product-info {
    max-width: 365px;
  }
  .s6__product-text {
    padding: 24px 23px 24px 38px;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img {
    top: 30%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img {
    top: 52%;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img {
    top: 51%;
  }
  .s6__card {
    padding: 96px 25px 80px 25px;
  }
  .s6__umbrella img {
    width: 90%;
  }
}
@media (max-width: 1500px) {
  .s6__item-img__text {
    height: 100px;
    width: 100px;
  }
  .s6__item:nth-of-type(2) {
    flex: 0 0 340px;
  }
  .s6__item-desc {
    font-size: 16px;
  }
  .s6__item-title {
    font-size: 24px;
  }
  .s6__item-img__text {
    font-size: 24px;
  }
  .s6__card-flowers {
    width: 46%;
  }
  .s6__card-flowers img {
    width: 100%;
  }
  .s6__item:nth-of-type(2) {
    flex: 0 0 290px;
  }
  .s6__item-product {
    font-size: 32px;
  }
  .s6__product-desc {
    font-size: 22px;
    margin-top: 18px;
  }
  .s6__product-info {
    margin-top: 24px;
  }
  .s6__product-text {
    padding: 16px 16px 18px 28px;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img {
    top: 43%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img {
    top: 18%;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img {
    top: 37%;
  }
  .s6__umbrella img {
    width: 75%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img {
    top: 23%;
  }
  .s6__top-title {
    font-size: 52px;
  }
  .s6 {
    padding: 133px 40px 0 40px;
  }
}
.s6__item-img {
  animation: moveUpDown 4s infinite linear;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0px);
    animation-timing-function: ease-in-out;
  }
  50% {
    transform: translateY(10px);
    animation-timing-function: ease-out;
  }
  100% {
    transform: translateY(0px);
  }
}
.s7 {
  padding: 304px 40px 8px 40px;
}
.s7__block {
  background-image: url(../img/s7/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 33px 46px 58px 48px;
  max-width: 1840px;
  width: 100%;
}
.s7__row {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.s7__left {
  flex: 0 0 720px;
}
.s7__title {
  font-family: var(--second-family);
  font-size: 130px;
  line-height: 65%;
  text-transform: uppercase;
  color: #7d2a1c;
  margin-top: 60px;
}
.s7__desc {
  font-family: var(--font-family);
  font-size: 27px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #4a4646;
  margin-top: 50px;
}
.s7__button {
  margin-top: 118px;
  display: flex;
  background: #9e0000;
  max-width: 720px;
  width: 100%;
  border-radius: 5px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.s7__button span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 116%;
  text-align: center;
  background: linear-gradient(181deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s7__button img {
  position: relative;
  top: 2px;
}
.s7__text {
  margin-top: 34px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 111%;
  text-align: center;
  justify-content: center;
  color: #6c2425;
  display: flex;
  gap: 30px;
  align-items: center;
}
.s7__text-arrow:nth-of-type(1) {
  animation: movePx 0.8s infinite linear;
}
.s7__text-arrow:nth-of-type(2) {
  position: relative;
  top: -3px;
  animation: movePxMirror 0.8s infinite linear;
}
.s7__right {
  flex: 0 1 897px;
  display: flex;
  align-items: center;
}
.s7__img {
  width: 100%;
  animation: moveUpDown 4s infinite linear;
}

.s8 {
  padding: 160px 40px 0 40px;
}
.s8__block {
  background-image: url(../img/s8/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  padding: 118px 35px 78px 32px;
  max-width: 1840px;
  width: 100%;
}
.s8__title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  max-width: 557px;
  width: 100%;
  flex: 0 1 557px;
}
.s8__title span {
  font-size: 84px;
  line-height: 100%;
  background: linear-gradient(222deg, #fde298 0%, #ebd188 35.1%, #6e5b27 51.92%, #e2c880 82.21%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s8__row {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: stretch;
  flex: 0 1 1063px;
}
.s8__item {
  border-radius: 20px;
  background: rgba(254, 255, 248, 0.2);
  padding: 12px 23px 55px 23px;
  flex: 0 0 calc(33.333% - 6px);
}
.s8__item-img {
  border-radius: 12px;
}
.s8__item-title {
  font-family: var(--second-family);
  font-size: 30px;
  line-height: 107%;
  text-transform: uppercase;
  color: #fff;
  margin-top: 60px;
  max-width: 290px;
  width: 100%;
}
.s8__item-text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 125%;
  color: #fff;
  margin-top: 46px;
}

.s9 {
  padding: 233px 40px 0 40px;
}
.s9__weight {
  margin-top: 88px;
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.s9__weight img {
  width: 100%;
  object-fit: cover;
}
.s9__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}
.s9__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 1162px;
}
.s9__top-title i {
  color: #7d2a1c;
}
.s9__top-title img {
  position: relative;
  top: 9px;
}
.s9__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 26, 26, 0.5);
  position: relative;
  max-width: 210px;
  width: 100%;
}
.s9__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s9__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s10 {
  padding: 100px 40px 0 40px;
  position: relative;
}
.s10__title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #4a4646;
}
.s10__title span {
  color: #4a1a1a;
}
.s10__subtitle {
  margin-left: 174px;
  margin-top: 125px;
  font-family: var(--second-family);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 48px;
  color: #4a4646;
}
.s10__subtitle i {
  color: #7d2a1c;
  font-size: 95px;
}
.s10__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: #666;
  margin-top: 47px;
  margin-left: 174px;
  max-width: 336px;
  width: 100%;
}
.s10__row {
  margin-left: 174px;
  display: flex;
  gap: 75px;
  align-items: center;
}
.s10__row_1 {
  margin-top: -175px;
}
.s10__row_1 .s10__item {
  position: relative;
  top: 75px;
  z-index: 9;
}
.s10__row_1 .s10__img {
  width: 38%;
}
.s10__row_1 .s10__img img {
  width: 100%;
}
.s10__row_2,
.s10__row_3 {
  margin-top: 14px;
}
.s10__row_2 .s10__img,
.s10__row_3 .s10__img {
  width: 35%;
}
.s10__row_2 .s10__img img,
.s10__row_3 .s10__img img {
  width: 100%;
}
.s10__item {
  flex: 0 0 850px;
  position: relative;
  z-index: 9;
}
.s10__item-border {
  border-radius: 20px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  position: absolute;
  left: -3px;
  top: -3px;
  z-index: 1;
  background: -webkit-linear-gradient(190deg, rgb(253, 226, 152), rgb(226, 200, 128), rgb(110, 91, 39));
  background: -moz-linear-gradient(190deg, rgb(253, 226, 152), rgb(226, 200, 128), rgb(110, 91, 39));
  background: linear-gradient(190deg, rgb(253, 226, 152), rgb(226, 200, 128), rgb(110, 91, 39));
}
.s10__item-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 29px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
}
.s10__item-text {
  font-family: var(--font-family);
  font-size: 20px;
  line-height: 100%;
  color: #4d4132;
  margin-top: 45px;
}
.s10__img {
  position: relative;
  z-index: 9;
}

.s10__item-content {
  background: #f9fcf3;
  padding: 71px 72px 60px 60px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
}

.s10__item-num {
  position: absolute;
  width: 128px;
  height: 128px;
  left: calc(50% - 64px);
  top: -85px;
  background: linear-gradient(270deg, #ae7f62 0%, #e2b980 53.29%, #f8dd93 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 90px;
  line-height: 87%;
  text-align: center;
  color: #fff;
  z-index: 10;
  border-radius: 50%;
}

.s10__bg_1 {
  position: absolute;
  right: 0;
  top: 29%;
  z-index: 1;
  width: 12%;
}
.s10__bg_1 img {
  width: 100%;
}

.s10__bg_2 {
  position: absolute;
  left: 0;
  top: 29%;
  z-index: 1;
  width: 27%;
}
.s10__bg_2 img {
  width: 100%;
}

@media (max-width: 1650px) {
  .s10__item {
    flex: 0 0 650px;
  }
  .s10__row_2,
  .s10__row_3 {
    margin-top: 110px;
  }
  .s10__row_1 {
    margin-top: -100px;
  }
}
.s11 {
  padding: 76px 40px 0 40px;
}
.s11__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
}
.s11__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 1162px;
}
.s11__top-title i {
  color: #7d2a1c;
}
.s11__top-title img {
  position: relative;
  top: 9px;
}
.s11__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 26, 26, 0.5);
  position: relative;
  max-width: 150px;
  width: 100%;
}
.s11__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}
.s11__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s11__reviews {
  margin-top: 62px;
}
.s11__review {
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.s11__review-img img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
}
.s11__review-block {
  background-color: #fefff8;
  padding: 14px 25px 25px 25px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.s11__review-name {
  font-family: var(--second-family);
  font-size: 35px;
  line-height: 63%;
  letter-spacing: -0.03em;
  color: #6c2425;
}
.s11__review-age {
  margin-top: 10px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 157%;
  letter-spacing: -0.07em;
  color: rgba(74, 70, 70, 0.6);
}
.s11__review-text {
  margin-top: 16px;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 130%;
  color: #4a4646;
}

.swiper-wrapper {
  align-items: stretch !important;
}

.swiper-slide {
  height: auto !important;
}

.s11__review {
  height: 100%;
}

.s11__review-block {
  height: 100%;
}

.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
}

.s11__button {
  margin-top: 30px;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #9e0000;
  border-radius: 5px;
  font-family: var(--second-family);
  font-size: 24px;
  line-height: 97%;
  letter-spacing: -0.01em;
  color: #ecf4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 30px;
  gap: 12px;
}
.s11__button img {
  position: relative;
  top: 2px;
}

.swiper-pagination {
  margin-top: 40px;
}

.swiper-pagination-bullet-active {
  background-color: #9e0000 !important;
  width: 15px !important;
  height: 15px !important;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
}

.swiper-pagination-bullet-active-next {
  width: 15px !important;
  height: 15px !important;
  transform: none !important;
}

.swiper-pagination-bullet-active-prev {
  width: 15px !important;
  height: 15px !important;
  transform: none !important;
}

.swiper-pagination-bullet-active-prev-prev {
  width: 15px !important;
  height: 15px !important;
  transform: none !important;
}

.swiper-pagination-bullet-active-next-next {
  width: 15px !important;
  height: 15px !important;
  transform: none !important;
}

.s12 {
  padding: 130px 40px 99px 40px;
  position: relative;
}
.s12__bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.s12__bg img {
  width: 100%;
}
.s12__title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #4a4646;
}
.s12__title i {
  color: #7d2a1c;
}
.s12__subtitle {
  margin-top: 40px;
  font-weight: 500;
  font-size: 39px;
  line-height: 126%;
  text-align: center;
  color: #4a4646;
  margin-bottom: 140px;
}
.s12__product {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
.s12__product-img img {
  border-radius: 20px;
  width: 100%;
}
.s12__product-info {
  border: 1px solid #dad7d7;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  padding: 52px 26px 35px 31px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.s12__product-title {
  font-family: var(--second-family);
  font-size: 40px;
  line-height: 120%;
  text-transform: uppercase;
  color: #4a1a1a;
}
.s12__product-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: #353535;
  margin-top: 38px;
  margin-bottom: 55px;
}
.s12__product-bottom {
  display: flex;
  align-items: center;
  margin-top: auto;
  gap: 40px;
  justify-content: space-between;
}
.s12__product-button {
  background: #9e0000;
  border-radius: 5px;
  font-family: var(--second-family);
  font-size: 24px;
  line-height: 97%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ecf4e8;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 248px;
  width: 100%;
  padding: 11px 18px 13px 18px;
  justify-content: center;
}
.s12__product-button img {
  position: relative;
  top: 2px;
}
.s12__product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s12__product-old_price {
  font-family: var(--second-family);
  font-size: 20px;
  line-height: 155%;
  text-decoration: line-through;
  color: #7d2a1c;
  opacity: 0.5;
}

.s12__product-new_price {
  font-family: var(--second-family);
  font-size: 32px;
  line-height: 97%;
  color: #7d2a1c;
}

/* Базовые стили */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Разные направления появления */
.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.fade-in-up {
  transform: translateY(50px);
}

.fade-in-down {
  transform: translateY(-50px);
}

/* Эффект масштабирования */
.fade-in-scale {
  transform: translateY(30px) scale(0.9);
}

/* Класс, который добавляется при появлении */
.fade-in.appear {
  opacity: 1;
  transform: translate(0) scale(1);
}

.s3__main-column_mob {
  display: none;
}
.br__479 {
  display: none;
}
.s3__steps-info_mob {
  display: none;
}
.s4__info-block__img img:nth-of-type(2) {
  display: none;
}
@media (max-width: 992px) {
  .s3__main-column_mob {
    display: flex;
  }
  .s3__main-column_desktop .s3__desc {
    display: none;
  }
  .s3__desc-text {
    position: relative;
    z-index: 9;
  }
  .s3__main {
    flex-direction: column;
  }
  .s3__main-column:nth-of-type(1) {
    order: 3;
  }
  .s3__main-column:nth-of-type(2) {
    order: 2;
  }
  .s3__main-column:nth-of-type(3) {
    order: 1;
  }
  .s3__photo {
    min-height: auto;
    justify-content: center;
  }
  .s3__photos-block {
    padding: 16px;
  }
  .s3__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .s3__top-info {
    max-width: none;
    margin-left: 25px;
    font-size: 16px;
  }
  .s3__top-info::before {
    top: 2px;
    left: -22px;
  }
  .s3__top-info::after {
    top: 2px;
    left: -22px;
  }
  .s3__main {
    margin-top: 40px;
  }
  .s3__top-title {
    font-size: 38px;
    max-width: 500px;
  }
  .s3__desc-subtitle {
    font-size: 24px;
  }
  .s3__desc-text {
    font-size: 22px;
    margin-top: 32px;
  }
  .s3__desc-text__high {
    font-size: 22px;
    margin-top: 32px;
  }
  .s3__desc-text__weight {
    font-size: 22px;
    margin-top: 8px;
  }
  .s3__desc {
    padding: 40px 32px 50px 32px;
  }
  .s3__photo img {
    max-width: 550px;
  }
  .s3__photos-block:nth-of-type(1) img {
    max-width: 320px;
  }
  .s3__photos-block:nth-of-type(2) img {
    max-width: 320px;
  }
  .s3__main-column:nth-of-type(1) {
    flex: 0 0 auto;
  }
  .s3__flowers {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .s3__steps-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .s3__steps-top .s3__steps-info {
    display: none;
  }
  .s3__step {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 20px;
  }
  .s3__step-branch {
    display: none;
  }
  .s3__step-ball {
    display: none;
  }
  .s3__step-title {
    margin: 0;
    font-size: 24px;
    max-width: 162px;
  }
  .s3__step:nth-of-type(1) .s3__step-title {
    margin: 0;
  }
  .s3__step:nth-of-type(1) {
    gap: 24px;
  }
  .s3__step:nth-of-type(2) {
    gap: 34px;
  }
  .s3__step:nth-of-type(3) {
    gap: 44px;
  }
  .s3__main-column:nth-of-type(2) {
    flex: 0 0 auto;
  }
  .s3__steps-info_mob {
    display: block;
    margin-top: 51px;
  }
  .s3__steps-info {
    font-weight: 500;
  }
  .s3__steps-info::after {
    height: 24px;
    background-repeat: no-repeat;
  }
}
@media (max-width: 576px) {
  .s3__desc-subtitle {
    font-size: 20px;
    line-height: 125%;
  }
  .s3__desc-text {
    font-size: 18px;
    line-height: 100%;
  }
  .s3__desc-text__high {
    font-size: 18px;
  }
  .s3__desc-text__weight {
    font-size: 18px;
    line-height: 100%;
  }
  .s3__top-title {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .s3 {
    padding: 60px 10px 0 10px;
  }
  .s3__top-title {
    font-size: 30px;
    max-width: 340px;
  }
  .br__479 {
    display: block;
  }
  .s3__main {
    margin-top: 30px;
  }
  .s3__desc {
    padding: 50px 25px 20px 20px;
  }
  .s3__desc-subtitle {
    font-size: 16px;
  }
  .s3__desc-text {
    margin-top: 30px;
    font-size: 16px;
  }
  .s3__desc-text__high {
    margin-top: 30px;
  }
  .s3__desc-text__weight {
    font-size: 16px;
    margin-top: 20px;
  }
  .s3__photo {
    padding: 34px 22px;
  }
  .s3__steps {
    padding: 0;
    margin-top: 50px;
  }
  .s3__steps-title {
    font-size: 30px;
    max-width: 340px;
  }
  .s3__steps-row {
    gap: 10px;
  }
}
@media (max-width: 992px) {
  .s4__top-info {
    position: relative;
    margin-left: 25px;
  }
  .s4__title {
    margin-top: 20px;
  }
  .s4__subtitle {
    font-size: 28px;
  }
  .s4__step-text {
    font-size: 24px;
  }
  .s4__step {
    padding: 28px 16px;
  }
  .s4__step:not(:nth-of-type(1)) {
    margin-top: 24px;
  }
  .s4__info-title {
    color: #7d2a1c;
  }
  .s4__info-title i {
    color: #4a4646;
  }
  .s4__title {
    margin-top: 40px;
  }
  .s4__info-row {
    margin-top: 60px;
  }
  .s4__info-text {
    position: relative;
    top: -6px;
  }
  .s4__info-title {
    max-width: 550px;
  }
  .s4__top-info::after {
    top: 2px;
    left: -22px;
  }
  .s4__top-info::before {
    top: 2px;
    left: -22px;
  }
}

@media (max-width: 768px) {
  .s4__info-row {
    flex-direction: column;
  }
  .s4__info-block {
    flex-direction: column;
    align-items: center;
    gap: 27px;
  }
  .s4__info-line {
    display: none;
  }
  .s4__info-text {
    margin-bottom: 0;
    text-align: center;
    font-size: 16px;
    top: 0;
  }
  .s4__info-block__left {
    flex: 0 0 auto;
  }
  .s4__info-block__img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .s4__info-block__img img:nth-of-type(2) {
    display: block;
    width: 36px;
  }
  .s4__info-footer {
    font-size: 18px;
  }
}
@media (max-width: 479px) {
  .s4 {
    padding: 60px 10px 0 10px;
  }
  .s4__title {
    text-align: left;
    font-size: 30px;
    margin-top: 20px;
  }
  .s4__subtitle {
    display: none;
  }
  .s4__steps {
    max-width: 270px;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
  .s4__step {
    padding: 17px 14px 20px 21px;
  }
  .s4__step-num {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .s4__info-text {
    line-height: 125%;
    max-width: 300px;
  }
  .s4__step-text {
    line-height: 100%;
  }
  .s4__step-num {
    font-size: 34px;
    line-height: 71%;
  }
  .s4__steps::after {
    left: 15%;
  }
  .s4__step:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
  .s4__steps::after {
    background-color: rgba(154, 0, 3);
  }
  .s4__info-row {
    margin-top: 37px;
  }
  .s4__info-title {
    font-size: 30px;
  }
  .s4__info-block__img img {
    width: 140px;
  }
  .s4__info-footer {
    font-size: 24px;
    margin-top: 30px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .s5__block {
    flex-direction: column;
    gap: 10px;
  }
  .s5__right-flowers {
    width: 19%;
  }
}
@media (max-width: 479px) {
  .s5 {
    padding: 60px 10px 0 10px;
  }
  .s5__right {
    padding: 30px 20px 65px 20px;
  }
  .s5__right-flowers {
    animation: none;
    width: 36%;
  }
  .s5__right-title {
    font-size: 28px;
  }
  .s5__right-docname {
    margin-top: 30px;
    font-size: 18px;
  }
  .s5__right-desc {
    font-size: 14px;
    margin-top: 10px;
  }
  .s5__right-text {
    margin-top: 30px;
  }
}
.s6__item_mob {
  display: none;
}
@media (max-width: 1240px) {
  .s6__umbrella img {
    width: 60%;
  }
  .s6__item:nth-of-type(2) {
    flex: 0 0 240px;
  }
  .s6__item-title {
    font-size: 16px;
    padding: 13px 16px 14px 14px;
  }
  .s6__item-desc {
    font-size: 14px;
  }
  .s6__item-product {
    font-size: 28px;
  }
  .s6__product-desc {
    font-size: 18px;
  }
  .s6__product-text {
    font-size: 16px;
  }
  .s6__product-text {
    padding: 12px 12px 14px 24px;
  }
  .s6__item-img__text {
    font-size: 20px;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img {
    top: 41%;
  }
}
@media (max-width: 992px) {
  .s6__cards {
    flex-direction: column;
  }
  .s6__item:nth-of-type(2) {
    flex: 0 0 416px;
  }
  .s6__item-img {
    display: flex;
    justify-content: center;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img img {
    width: 52%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img img {
    width: 75%;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img img {
    width: 65%;
  }
  .s6__umbrella img {
    display: none;
  }
  .s6__card-flowers {
    width: 30%;
  }
  .s6__item-title {
    font-size: 24px;
    padding: 18px 21px 19px 19px;
  }
  .s6__item-desc {
    font-size: 20px;
  }
  .s6__item-product {
    font-size: 32px;
  }
  .s6__product-desc {
    font-size: 22px;
  }
  .s6__product-text {
    padding: 16px 16px 18px 28px;
    font-size: 20px;
  }

  .s6__top-info {
    margin-top: 0;
    font-size: 16px;
  }
  .s6__top-info::after {
    top: 2px;
    left: -22px;
  }
  .s6__top-info::before {
    top: 2px;
    left: -22px;
  }
  .s6__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .s6__top-info {
    margin-left: 25px;
  }
  .s6__top-title {
    font-size: 38px;
    max-width: 380px;
  }
  .s6__center {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .s6__card-flowers {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    transform: scaleX(-1);
  }
  .s6__card {
    overflow: hidden;
  }
  .s6__card-row {
    flex-direction: column;
    align-items: center;
  }
  .s6__item-img {
    position: relative;
    animation: unset;
  }
  .s6__item:nth-of-type(1) {
    flex: 0 0 auto;
  }
  .s6__item_mob {
    display: block;
  }
  .s6__item:nth-of-type(2) .s6__item-top {
    display: none;
  }
  .s6__item:nth-of-type(2) .s6__item-product {
    display: none;
  }
  .s6__item:nth-of-type(2) .s6__product-desc {
    display: none;
  }
  .s6__item:nth-of-type(2) {
    flex: 0 0 auto;
    order: 3;
  }
  .s6__item:nth-of-type(3) {
    order: 1;
  }
  .s6__item:nth-of-type(1) {
    order: 2;
  }
  .s6__item_mob .s6__item-product {
    margin-top: 20px;
  }
  .s6__item_mob .s6__product-desc {
    margin-bottom: 30px;
  }
  .s6__card {
    padding: 43px 25px 80px 25px;
  }
  .s6__item-img {
    left: 0;
  }
}
@media (max-width: 479px) {
  .s6 {
    padding: 60px 10px 0 10px;
  }
  .s6__top-title {
    font-size: 30px;
    max-width: 330px;
  }
  .s6__card {
    padding: 30px 20px 50px 20px;
  }
  .s6__item-title {
    font-size: 20px;
    padding: 8px 17px;
  }
  .s6__item-desc {
    font-size: 14px;
    opacity: 0.7;
  }
  .s6__item_mob {
    max-width: 300px;
    width: 100%;
  }
  .s6__item_mob .s6__item-product {
    font-size: 28px;
  }
  .s6__product-desc {
    font-size: 16px;
    max-width: 250px;
    width: 100%;
  }

  .s6__item-img {
    width: 100%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(1) .s6__item-img img {
    width: 201px;
  }
  .s6__item-img__text {
    width: 100px;
    height: 100px;
    top: -15px;
    left: -33px;
  }
  .s6__product-info {
    margin-top: 18px;
  }
  .s6__product-text {
    font-size: 16px;
    padding: 20px 19px;
    line-height: 100%;
  }
  .s6__center {
    margin-top: 30px;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img img {
    width: 100%;
  }
  .s6__cards:nth-of-type(1) .s6__card:nth-of-type(2) .s6__item-img__text {
    top: -15px;
    left: 13px;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img__text {
    top: -9px;
    left: 11px;
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__product-text {
    background: rgba(254, 255, 248, 0.1);
  }
  .s6__cards:nth-of-type(2) .s6__card:nth-of-type(1) .s6__item-img img {
    width: 100%;
  }
}
.s7__img_mob {
  display: none;
}
@media (max-width: 1500px) {
  .s7__row {
    gap: 50px;
  }
  .s7__left {
    flex: 0 0 650px;
  }
  .s7 {
    padding: 133px 40px 8px 40px;
  }
}
@media (max-width: 1240px) {
  .s7__left {
    flex: 0 0 500px;
  }
  .s7__title {
    font-size: 100px;
  }
}
@media (max-width: 992px) {
  .s7__right {
    display: none;
  }
  .s7__img_mob {
    display: block;
    margin-top: 20px;
  }
  .s7__row {
    justify-content: center;
  }
  .s7__button {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .s7__left {
    flex: 0 1 500px;
  }
  .s7__title {
    font-size: 80px;
  }
  .s7__desc {
    font-size: 24px;
  }
  .s7__title {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .s7__button {
    padding: 22px;
    gap: 12px;
  }

  .s7__block {
    padding: 33px 24px 58px 24px;
  }
  .s7__arrow {
    display: none;
  }
  .s7__text-arrow:nth-of-type(1) {
    display: none;
  }
  .s7__text-arrow:nth-of-type(2) {
    display: none;
  }
}
@media (max-width: 479px) {
  .s7 {
    padding: 60px 10px 0 10px;
  }
  .s7__block {
    padding: 30px 10px 14px 10px;
  }
  .s7__title {
    margin-top: 10px;
    font-size: 73px;
    text-align: center;
  }
  .s7__desc {
    font-size: 16px;
    margin-top: 24px;
    font-weight: 500;
    color: #7e7e7e;
    text-align: center;
    max-width: 290px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .s7__img {
    animation: unset;
  }
  .s7__img_mob {
    margin-top: 60px;
  }
  .s7__button {
    margin-top: 60px;
  }
  .s7__button {
    padding: 17px 18px;
  }
  .s7__button span {
    line-height: 103%;
  }
  .s7__text {
    margin-top: 20px;
  }
  .s7__text span {
    font-size: 14px;
  }
}
@media (max-width: 1500px) {
  .s8__block {
    flex-direction: column;
  }
  .s8__title {
    flex: 0 0 auto;
  }
  .s8__row {
    flex: 0 0 auto;
  }
  .s8 {
    padding: 133px 40px 0 40px;
  }
}
@media (max-width: 1240px) {
  .s8__item-title {
    max-width: 230px;
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .s8__title {
    font-size: 48px;
  }
  .s8__title span {
    font-size: 48px;
  }
  .s8__block {
    padding: 60px 26px 50px 26px;
    gap: 40px;
  }
  .s8__item-img {
    width: 90px;
  }
  .s8__item-title {
    font-size: 18px;
  }
  .s8__item-text {
    font-size: 16px;
  }
  .s8__item-title {
    margin-top: 40px;
  }
  .s8__item-text {
    margin-top: 28px;
  }
}
@media (max-width: 768px) {
  .s8__row {
    flex-direction: column;
  }
  .s8__title {
    font-size: 38px;
  }
  .s8__title span {
    font-size: 38px;
  }
  .s8__item-title {
    font-size: 26px;
  }
  .s8__item-text {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .s8__title {
    font-size: 32px;
  }
  .s8__title span {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .s8 {
    padding: 60px 10px 0 10px;
  }
  .s8__title {
    font-size: 30px;
    max-width: 200px;
    margin-left: 10px;
  }
  .s8__block {
    padding: 30px 10px 35px 10px;
    gap: 30px;
  }
  .s8__item {
    padding: 12px 5px 47px 10px;
  }
  .s8__item-img {
    width: 88px;
  }
  .s8__row {
    gap: 10px;
  }
  .s8__item-title {
    font-size: 28px;
    margin-left: 12px;
    margin-top: 35px;
    max-width: none;
  }
  .s8__item-text {
    font-size: 16px;
    margin-left: 12px;
    max-width: 276px;
    width: 100%;
    margin-top: 30px;
  }
}
.s10 .container {
  position: relative;
  z-index: 9;
}

@media (max-width: 1500px) {
  .s10__title {
    font-size: 52px;
  }
  .s10__row {
    margin-left: 120px;
  }
  .s10__subtitle {
    margin-left: 120px;
  }
  .s10__row_1 {
    margin-top: 100px;
    align-items: flex-end;
  }
  .s10__row_1 .s10__item {
    top: 0;
  }
  .s10__text {
    margin-left: 120px;
  }
  .s10__subtitle i {
    font-size: 70px;
  }
  .s10__subtitle {
    font-size: 42px;
  }
  .s10__text {
    margin-top: 34px;
  }
  .s10__subtitle {
    margin-top: 90px;
  }
}
@media (max-width: 1240px) {
  .s10__row_1 {
    margin-top: 100px;
  }
  .s10__row {
    margin-left: 60px;
  }
  .s10__text {
    margin-left: 60px;
  }
  .s10__subtitle {
    margin-left: 60px;
  }
  .s10__item {
    flex: 0 0 550px;
  }
}
@media (max-width: 992px) {
  .s10__row {
    flex-direction: column-reverse;
    gap: 0;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .s10__row_1 .s10__item {
    z-index: 10;
  }
  .s10__item {
    flex: 0 0 auto;
    position: relative;
    z-index: 10;
    max-width: 580px;
    width: 100%;
  }
  .s10__row_1 .s10__img {
    max-width: 280px;
    width: 100%;
    top: 30px;
  }
  .s10__item-num {
    top: -60px;
    width: 90px;
    height: 90px;
    font-size: 62px;
    left: calc(50% - 45px);
  }
  .s10__title {
    font-size: 38px;
  }
  .s10__subtitle {
    margin-left: 0;
    max-width: 335px;
    font-size: 32px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
  }
  .s10__subtitle i {
    font-size: 32px;
  }
  .s10__text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
  }
  .s10__row_1 {
    margin-top: 60px;
  }
  .s10__item-title {
    font-size: 26px;
  }
  .s10__row_2,
  .s10__row_3 {
    margin-top: 80px;
  }
  .s10__row_2 .s10__img,
  .s10__row_3 .s10__img {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .s10__item-content {
    padding: 50px 40px 50px 40px;
  }
  .s10__item-title {
    font-size: 24px;
  }
  .s10__item-text {
    font-size: 18px;
  }
  .s10__row_1 {
    margin-top: 40px;
  }
  .s10__row_2,
  .s10__row_3 {
    margin-top: 60px;
  }
}
@media (max-width: 479px) {
  .s10 {
    padding: 60px 10px 0 10px;
  }
  .s10__title {
    font-size: 30px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .s10__subtitle {
    font-size: 28px;
    margin-top: 40px;
  }
  .s10__text {
    max-width: 300px;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #7d2a1c;
    margin-top: 10px;
  }
  .s10__row_1 .s10__img {
    max-width: 220px;
  }
  .s10__item-num {
    width: 65px;
    height: 65px;
    font-size: 56px;
    left: calc(50% - 32px);
    top: -48px;
  }
  .s10__item-content {
    padding: 49px 20px 32px 20px;
  }
  .s10__item-text {
    font-size: 16px;
    margin-top: 26px;
  }
  .s10__row_1 {
    margin-top: 10px;
  }
  .s10__row_2 .s10__img {
    top: 25px;
  }
  .s10__row_3 .s10__img {
    top: 64px;
  }
  .s10__row_2 {
    margin-top: 40px;
  }
  .s10__row_3 {
    margin-top: 0;
  }
  .s10__subtitle {
    max-width: 300px;
  }
}
@media (max-width: 1500px) {
  .s11__top-title {
    font-size: 52px;
    max-width: 700px;
  }
}
@media (max-width: 1240px) {
  .s11__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .s11__top-info {
    margin-top: 0;
    margin-left: 25px;
    max-width: none;
    font-size: 16px;
  }
  .s11__top-info::before {
    top: 2px;
    left: -22px;
  }
  .s11__top-info::after {
    top: 2px;
    left: -22px;
  }
}
@media (max-width: 768px) {
  .s11__top-title {
    font-size: 38px;
  }
  .s11__reviews {
    margin-top: 40px;
  }
}
@media (max-width: 479px) {
  .s11 {
    padding: 60px 10px 0 10px;
  }
  .s11__top-title {
    font-size: 30px;
  }
  .s11__reviews {
    margin-top: 30px;
  }
  .s11__review-name {
    font-size: 20px;
  }
  .s11__review-block {
    padding: 14px 20px 25px 14px;
  }
  .s11__review-text {
    font-size: 16px;
  }
  .swiper-pagination {
    margin-top: 25px;
  }
  .s11__button img {
    display: none;
  }
  .s11__button {
    padding: 17px 20px;
    font-size: 24px;
  }
}
@media (max-width: 1850px) {
  .s12__product-new_price {
    font-size: 26px;
  }
  .s12__product-old_price {
    font-size: 18px;
  }
}
@media (max-width: 1500px) {
  .s12__subtitle {
    margin-bottom: 80px;
  }
}
@media (max-width: 1240px) {
  .s12__title {
    font-size: 52px;
  }
  .s12__subtitle {
    font-size: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .s12__title {
    font-size: 38px;
  }
  .s12__subtitle {
    font-size: 26px;
  }
  .s12__product {
    gap: 16px;
  }
  .s12__product-info {
    padding: 40px 20px 30px 18px;
  }
  .s12__product-desc {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .s12__product-title {
    font-size: 32px;
  }
  .s12__product-button {
    max-width: 190px;
    font-size: 18px;
    padding: 11px 18px 13px 18px;
  }
  .s12__product-button img {
    width: 18px;
  }
  .s12__product-bottom {
    gap: 30px;
  }
  .s12__product-new_price {
    font-size: 18px;
  }
  .s12__product-old_price {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .s12__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .s12 {
    padding: 60px 10px 0 10px;
  }
  .s12__title {
    font-size: 30px;
    text-align: left;
  }
  .s12__subtitle {
    text-align: left;
    font-size: 16px;
    margin: 30px 0;
    max-width: 230px;
    font-weight: 500;
    line-height: 125%;
    color: #7d2a1c;
  }
  .s12__product-info {
    padding: 27px 13px 25px 16px;
  }
  .s12__product-title {
    font-size: 24px;
  }
  .s12__product-desc {
    margin-top: 20px;
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 100%;
  }

  .s12__product-button {
    font-size: 14px;
    max-width: 132px;
    gap: 3px;
    padding: 6px 14px 7px 10px;
  }
  .s12__product-button img {
    width: 10px;
  }
  .s12__product-new_price {
    font-size: 16px;
  }
  .s12__product-old_price {
    font-size: 12px;
  }
}
.swiper2-pagination {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  z-index: 10;
}
.s9__swiper {
  display: none;
}
@media (max-width: 1500px) {
  .s9__top-title {
    font-size: 52px;
  }
  .s9 {
    padding: 133px 40px 0 40px;
  }
}
@media (max-width: 992px) {
  .s9__top-title {
    font-size: 38px;
  }
  .s9__top-info {
    margin-left: 25px;
    margin-top: 0;
    font-size: 16px;

    max-width: none;
  }
  .s9__top-info::before {
    top: 2px;
    left: -22px;
  }
  .s9__top-info::after {
    top: 2px;
    left: -22px;
  }
  .s9__top {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .s9__weight {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .s9__weight {
    display: none;
  }
  .s9__swiper {
    display: block;
    margin-top: 60px;
  }

  .s9__swiper-block img {
    width: 100%;
  }
}
@media (max-width: 479px) {
  .s9__top-title {
    font-size: 32px;
  }
  .s9 {
    padding: 60px 10px 0 10px;
  }
  .s9__top-info {
    max-width: 190px;
  }
}
.swiper3-pagination {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
  z-index: 10;
}
.s20 {
  padding: 100px 40px 0 40px;
  background: #f4f2f0 url(../img/s20/bg.png) no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.s20__container {
  max-width: 1840px;
  margin: 0 auto;
  width: 100%;
}

.s20__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  margin-bottom: 43px;
}

.s20__main {
  display: flex;
  justify-content: space-between;
}

.s20__img {
  border-radius: 20px;
  width: 100%;
}

.s20__main-right,
.s20__main-left {
  width: calc(50% - 5px);
}

.s20__main-right {
  padding-bottom: 66px;
}

.s20__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-left: 100px;
  padding-right: 40px;
}

.s20__item-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
  color: #7d2a1c;
  margin-bottom: 40px;
}

.s20__item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #4a4646;
}

.s20__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  width: 100%;
  display: none;
  text-transform: none;
  padding-left: 30px;
  margin-bottom: 20px;
}

.s20__top-info::after {
  position: absolute;
  top: 5px;
  left: 0px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}

.s20__top-info::before {
  position: absolute;
  top: 5px;
  left: 0px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

@media (max-width: 1500px) {
  .s20__top-title {
    font-size: 52px;
  }

  .s20__list {
    padding-left: 50px;
  }

  .s20__item-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .s20__main-right {
    padding-bottom: 20px;
  }

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

@media (max-width: 1240px) {
  .s20__top-title {
    font-size: 28px;
  }

  .s20__item-title {
    font-size: 34px;
  }

  .s20__item-text {
    font-size: 20px;
  }

  .s20__list {
    padding-right: 0px;
  }
}

@media (max-width: 992px) {
  .s20 {
    background-position: 100% 7%;
    background-size: 50%;
  }

  .s20__main {
    flex-direction: column;
  }

  .s20__main-right,
  .s20__main-left {
    width: 100%;
  }

  .s20__img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .s20__main-left {
    order: 2;
  }

  .s20__main-right {
    order: 1;
    margin-bottom: 10px;
  }

  .s20__list {
    padding-left: 0;
    gap: 40px;
  }

  .s20__top-info {
    display: block;
  }
}

@media (max-width: 768px) {
  .s20 {
    padding: 60px 10px 0 10px;
  }

  .s20__top-title {
    margin-bottom: 60px;
  }

  .s20__item-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

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

.s21 {
  padding: 133px 40px 0 40px;
  background: #f4f2f0;
}

.s21__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.s21__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #f44;
  margin-bottom: 69px;
  position: relative;
}

.s21__title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 41px);
  width: 82px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f44 0%, #f88 100%);
}

.s21__main {
  border-left: 5px solid #f44;
  border-radius: 20px;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 40px;
  margin-bottom: 67px;
}

.s21__main-text__top {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: #353535;
  margin-bottom: 34px;
}

.s21__main-text__center {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  color: #555;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .s21 {
    padding: 100px 10px 0 10px;
  }

  .s21__img {
    border-radius: 20px;
  }

  .s21__title {
    font-size: 28px;
    margin-bottom: 89px;
  }

  .s21__main {
    padding: 40px 20px 20px 20px;
    margin-bottom: 12px;
  }

  .s21__main-text__top {
    font-size: 20px;
    line-height: 125%;
    margin-bottom: 30px;
  }

  .s21__main-text__center {
    font-size: 20px;
    line-height: 125%;
    margin-bottom: 40px;
  }

  .s21__main-text__bottom {
    padding: 37px 20px;
    font-size: 17px;
  }
}

.s21__main-text__bottom {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 17px;
  color: #f44;
  border-left: 4px solid #ff6b6b;
  border-radius: 8px;
  background: #fff0f0;
  padding: 25px 15px;
}

.s21__img {
  width: 100%;
}

.s22 {
  padding: 100px 40px 0 40px;
  background: #f4f2f0;
}

.s22__container {
  max-width: 1840px;
  margin: 0 auto;
  width: 100%;
}

.s22__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
  margin-bottom: 90px;
}

.s22__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 756px;
}

.s22__top-title i {
  color: #7d2a1c;
}

.s22__top-title img {
  position: relative;
  top: 9px;
}

.s22__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  max-width: 40px;
  width: 100%;
}

.s22__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}

.s22__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s22__accordion {
  margin: 0 auto;
  font-family: sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.s22__accordion-item {
  border-radius: 20px;
  width: calc(50% - 30px);
  background: #fefff8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s22__accordion-header {
  width: 100%;
  padding: 45px;
  background: #fefff8;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  text-align: left;
}

/* Контент */
.s22__accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.s22__accordion-body {
  padding: 45px;
  padding-top: 0;
  background: #fefff8;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #353535;
}

/* ===== ПЛЮСИК ===== */
.s22__icon {
  position: relative;
  width: 37px;
  height: 37px;
  min-width: 37px;
  min-height: 37px;
  margin-left: 62px;
}

/* Горизонтальная линия */
.s22__icon::before,
.s22__icon::after {
  content: "";
  position: absolute;
  background: #7d2a1c;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Горизонтальная */
.s22__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Вертикальная */
.s22__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* СОСТОЯНИЕ ОТКРЫТО */
.s22__accordion-item.active .s22__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
  /* вертикальная линия исчезает */
}

@media (max-width: 1500px) {
  .s22__top-title {
    font-size: 52px;
  }

  .s22__accordion-header {
    font-size: 32px;
    padding: 35px;
  }

  .s22__accordion-body {
    padding: 35px;
    padding-top: 0;
  }

  .s22__accordion-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 1240px) {
  .s22__top-title {
    font-size: 28px;
  }

  .s22__accordion-header {
    font-size: 26px;
    padding: 35px;
  }

  .s22__accordion-body {
    padding: 30px;
    padding-top: 0;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .s22__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .s22__top-title {
    order: 1;
  }

  .s22__top-info {
    padding-left: 30px;
    font-size: 16px;
  }

  .s22__top-info::before,
  .s22__top-info::after {
    left: 0;
    top: 3px;
  }

  .s22__accordion-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .s22 {
    padding: 60px 10px 0 10px;
  }

  .s22__accordion-header {
    padding: 35px 18px;
    padding-right: 10px;
    font-size: 24px;
  }

  .s22__accordion-body {
    padding: 35px 18px;
    padding-top: 0;
    font-size: 16px;
  }

  .s22__icon {
    width: 35px;
    height: 35px;
    margin-left: 6px;
  }
}

.s23__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 756px;
}

.s23 {
  padding: 160px 40px 0 40px;
  background: #f4f2f0;
}

.s23__container {
  max-width: 1840px;
  margin: 0 auto;
  width: 100%;
}

.s23__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 110px;
  margin-bottom: 90px;
}

.s23__top-title {
  font-family: var(--second-family);
  font-size: 74px;
  line-height: 100%;
  text-transform: uppercase;
  color: #4a4646;
  max-width: 756px;
}

.s23__top-title i {
  color: #7d2a1c;
}

.s23__top-title img {
  position: relative;
  top: 9px;
}

.s23__top-info {
  margin-top: 6px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: rgba(74, 70, 70, 0.5);
  position: relative;
  max-width: 100px;
  width: 100%;
}

.s23__top-info::after {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
  animation: pulse 2.5s infinite linear;
}

.s23__top-info::before {
  position: absolute;
  top: 5px;
  left: -32px;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a2591c;
}

.s23__main {
  display: flex;
  justify-content: space-between;
}

.s23__left,
.s23__right {
  width: calc(50% - 5px);
}

.s23__form {
  padding: 40px 45px 20px 45px;
  background: #7d2a1c;
  border-radius: 20px;
}

.s23__form-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 146%;
  color: #ecf4e8;
  margin-bottom: 40px;
}

.s23_form-label {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.s23_form-input,
.s23_form-select {
  border-bottom: 0.62px solid #ecf4e8;
  background: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  color: rgba(236, 244, 232, 0.25);
  padding: 22px 0;
  padding-top: 12px;
  margin-bottom: 13px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.s23_form-input::placeholder {
  color: rgba(236, 244, 232, 0.25);
}

.s23_form-input:focus,
.s23_form-input:active {
  padding: 30px;
  border: 0.62px solid #ecf4e8;
}

.s23_form-select {
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: url("../img/s23/arrow.png") no-repeat;
  background-position: right center;
  box-sizing: border-box;
}

.s23_form-button {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  color: #7d2a1c;
  padding: 21px 89px;
  border-radius: 5px;
  background: linear-gradient(222deg, #fde298 0%, #e2c880 53.29%, #6e5b27 100%);
  cursor: pointer;
}

.s23__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: space-between;
  height: 100%;
  gap: 8px;
}

.s23__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
  background: #f9fcf3;
  padding: 16px 16px 47px 30px;
}

.s23__item-top {
  display: flex;
  justify-content: end;
}

.s23__item-icon {
  width: 80px;
  height: 80px;
  background: #9e0000;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.s23__item-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 95%;
  color: #4a4646;
  opacity: 0.5;
  margin-bottom: 6px;
}

.s23__item-text-big {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 116%;
  color: #4a4646;
}

.s23_form-checkbox__wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.s23_form-checkbox__wrapper a {
  color: #3795cb;
}

textarea.s23_form-input {
  resize: none;
}

@media (max-width: 1700px) {
  .s23__item:last-child {
    grid-column: span 2;
  }

  .s23__item-text-big br {
    display: none;
  }
}

@media (max-width: 1500px) {
  .s23__top-title {
    font-size: 52px;
  }
}

@media (max-width: 1400px) {
  .s23__item-text-big {
    font-size: 32px;
  }
}

@media (max-width: 1240px) {
  .s23__top-title {
    font-size: 28px;
  }
}

@media (max-width: 1100px) {
  .s23__form {
    padding: 30px 20px 40px 20px;
  }

  .s23__form-text {
    font-size: 20px;
    margin-bottom: 35px;
  }

  .s23_form-label {
    font-size: 24px;
  }

  .s23_form-input,
  .s23_form-select {
    font-size: 20px;
    padding: 18px 0;
  }

  .s23_form-input:focus,
  .s23_form-input:active {
    padding: 24px;
  }

  .s23_form-checkbox__text {
    font-size: 16px;
  }

  .s23_form-button {
    font-size: 24px;
    padding: 15px 50px;
  }

  .s23__list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .s23__item:last-child {
    grid-column: auto;
  }
}

@media (max-width: 992px) {
  .s23__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .s23__top-title {
    order: 1;
  }

  .s23__top-info {
    padding-left: 30px;
    font-size: 16px;
  }

  .s23__top-info::before,
  .s23__top-info::after {
    left: 0;
    top: 3px;
  }

  .s23__main {
    flex-direction: column;
  }

  .s23__left,
  .s23__right {
    width: 100%;
  }

  .s23__left {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .s23 {
    padding: 60px 10px 0 10px;
  }

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

  .s23_form-input,
  .s23_form-select {
    padding: 10px 0;
    border-bottom: 1px solid #995c4f;
  }

  .s23_form-select {
    padding-right: 20px;
  }

  .s23__form {
    border-radius: 10px;
  }

  .s23_form-input:focus,
  .s23_form-input:active {
    padding: 10px;
    border: 1px solid #995c4f;
  }

  textarea.s23_form-input:focus,
  textarea.s23_form-input:active {
    min-height: 82px;
  }

  .s23_form-select {
    background: url("../img/s23/arrow-mob.png") no-repeat;
    background-position: right center;
    box-sizing: border-box;
  }

  .s23__item-icon {
    width: 40px;
    height: 40px;
  }

  .s23__item-icon img {
    width: 20px;
  }

  .s23__item {
    padding: 23px 23px 49px 18px;
  }

  .s23__item-text {
    font-size: 16px;
    margin-bottom: 13px;
  }

  .s23__item-text-big {
    font-size: 26px;
  }
}

@media (max-width: 400px) {
  .s23__item-text-big br {
    display: block;
  }
}

.footer {
  padding: 160px 40px 60px 40px;
  background: #f4f2f0 url("../img/footer/bg.png") no-repeat;
  background-position: bottom right;
  background-size: contain;
}

.footer__container {
  max-width: 1840px;
  margin: 0 auto;
  width: 100%;
}

.footer__logo {
  margin-bottom: 28px;
  max-width: 100%;
}

.footer__address {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 166%;
  color: #4a4646;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  padding-right: 150px;
}

.footer__center {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 80px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 80px;
}

.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 124%;
  color: #7d2a1c;
}

.footer__img {
  width: 80%;
  max-width: 100%;
}

@media (max-width: 1400px) {
  .footer__wrapper {
    padding-right: 0;
  }
}

@media (max-width: 1100px) {
  .footer {
    padding: 60px 40px 60px 40px;
    background: #f4f2f0 url(../img/footer/bg-mob.png) no-repeat;
    background-position: 100% 20%;
    background-size: 50%;
  }

  .footer__wrapper {
    flex-direction: column;
  }

  .footer__left {
    order: 3;
  }

  .footer__center {
    order: 1;
    padding-top: 0;
    margin-bottom: 50px;
  }

  .footer__right {
    order: 2;
    padding-top: 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 10px 60px 10px;
    background: #f4f2f0 url(../img/footer/bg-mob.png) no-repeat;
    background-position: 100% 14%;
    background-size: 65%;
  }

  .footer__logo {
    max-width: 220px;
  }

  .footer__link {
    font-size: 16px;
    line-height: 60%;
  }

  .footer__address {
    font-size: 16px;
  }

  .footer__img {
    width: 100%;
  }
}
.popup__product {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 100%;
  width: 100%;
  background-color: rgba(184, 184, 184, 0.459);
}
.popup__product_1 .popup__product-block {
  background-color: #64808f;
}
.popup__product_2 .popup__product-block {
  background-color: #9a0003;
}
.popup__product_3 .popup__product-block {
  background-color: #252525;
}

.popup__product-block {
  height: 347px;
  width: 511px;
  padding: 66px 45px 10px 45px;
  border-radius: 20px;
  position: relative;
  z-index: 99999;
}
.popup__product-title {
  font-family: var(--second-family);
  font-size: 53px;
  line-height: 75%;
  text-transform: uppercase;
  color: #fff;
}

.popup__product-text {
  font-family: var(--font-family);
  font-size: 27px;
  line-height: 111%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 30px;
}
.popup__product-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  cursor: pointer;
}
.popup__product-close img {
  width: 100%;
}
.block__overflow {
  overflow-y: hidden;
}
@media (max-width: 576px) {
  .popup__product-block {
    height: 270px;
    width: 320px;
    padding: 54px 34px 10px 26px;
  }
  .popup__product-title {
    font-size: 32px;
  }
  .popup__product-text {
    font-size: 18px;
  }
}
.s23_form-select option{
  color:#000;
}