@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Light.woff2) format('woff2'),
    url(../fonts/HelveticaNeue-Light.woff) format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Roman.woff2) format('woff2'),
    url(../fonts/HelveticaNeue-Roman.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Roman.woff2) format('woff2'),
    url(../fonts/HelveticaNeue-Medium.woff) format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Bold.woff2) format('woff2'),
    url(../fonts/HelveticaNeue-Bold.woff) format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}
li {
  list-style: none;
}
a {
  color: inherit;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}
body {
  font-family: 'HelveticaNeue', sans-serif;
  line-height: 1.3;
  color: #333;
  padding-top: 54px;
}
.container {
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 480px) {
  .container {
    width: 480px;
  }
}

@media screen and (min-width: 640px) {
  .container {
    width: 640px;
  }
  body {
    padding-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }
  body {
    padding-top: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    width: 1024px;
  }
  body {
    padding-top: 73px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}

/*----- Header ------ */
.header {
  background: var(
    --Green,
    linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%)
  );
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 110;
  padding: 10px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  transition: 0.3s all ease;
}

.logo:hover,
.logo:focus {
  transform: scale(1.02);
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title,
.logo-subtitle {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.04;
}

.logo-title {
  font-size: 23px;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.959px;
}

.menu-burger-btn {
  position: relative;
  width: 43px;
  height: 30px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 5;
  padding-bottom: 7px;
}

@media screen and (min-width: 1199px) {
  .menu-burger-btn {
    display: none;
  }
}

.menu-burger-btn {
  > span {
    display: block;
    position: absolute;
    border-radius: 5px;
    width: 34px;
    height: 4px;
    left: 5px;
    background-color: #fff;
    transition: background-color 0.3s, opacity 0.3s, transform 0.5s;
    will-change: transform;
  }
}

.menu-burger-btn span:nth-child(1) {
  transform: translateY(-10px);
}

.menu-burger-btn span:nth-child(3) {
  transform: translateY(10px);
}

.header-content.open .menu-burger-btn span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.header-content.open .menu-burger-btn span:nth-child(2) {
  opacity: 0;
}

.header-content.open .menu-burger-btn span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
  .menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: var(
      --Green,
      linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%)
    );
    color: #fff;
    backdrop-filter: blur(6px);
    z-index: 4;
    padding: 30px;
    transition: right 0.5s ease-in-out;
  }
  .menu-item {
    width: 100%;
    text-align: center;
  }
  .menu-item a {
    padding: 20px 0;
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 480px) and (max-width: 1023px) {
  .menu-item a {
    font-size: 18px;
  }
}

.header-content.open .menu-list {
  right: 0;
}

.header-button {
  display: none;
  outline: transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 7px;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  padding: 15px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: pulse 1.5s ease-in-out infinite;
}

@media screen and (min-width: 1024px) {
  .menu-list {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
  }
  .menu-item a {
    position: relative;
    transition: background 0.3s ease;
  }

  .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .menu-item a:hover::after {
    width: 100%;
  }
}

.header-sale {
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 5px;
  font-size: 15px;
}

@media screen and (min-width: 380px) {
  .menu-list {
    width: 380px;
  }
  .header-sale {
    font-size: 16px;
  }
}

@media screen and (min-width: 640px) {
  .logo-title {
    font-size: 27px;
  }
  .logo-subtitle {
    font-size: 11px;
  }
}

@media screen and (min-width: 768px) {
  .logo-title {
    font-size: 30px;
  }
  .logo-subtitle {
    font-size: 12px;
  }
  .header-sale {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu-item a {
    font-size: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .menu-burger-btn {
    display: none;
  }
  .header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-button {
    display: block;
  }
  .menu-list {
    width: 100%;
  }
  .header {
    padding: 14px 0;
  }
  .logo-title {
    font-size: 25px;
  }
  .logo-subtitle {
    font-size: 9px;
  }
  .header-sale {
    display: none;
  }
  .menu-item {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 15px 0;
  }
  .logo-title {
    font-size: 35px;
  }
  .logo-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
  }
  .header-button {
    font-size: 20px;
  }
  .header-nav {
    gap: 30px;
  }
  .menu-list {
    gap: 20px;
  }
}

/*----- Promo section ------  */

.promo-section {
  padding: 25px 0 35px;
  background-image: url('../images/stomach.png'),
    url('../images/background-2.jpg');
  background-repeat: no-repeat, no-repeat;
  background-size: 230px, cover;
  background-position: calc(50% - 35px) calc(50% - 73px), center;
}

.promo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.promo-title .accent {
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-subtitle {
  font-size: 17px;
  color: #333;
  font-weight: 700;
  line-height: 1.47;
  margin-bottom: 60px;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 169px;
  max-width: 290px;
  position: relative;
  margin-bottom: 140px;
}

.order-product-wrapper::after,
.promo-content::after,
.effects-product-wrapper::after,
.popup-image-wrapper::after {
  content: '-50%';
  width: 54px;
  height: 26px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  border-radius: 6.083px;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  color: #fff;
  position: absolute;
  top: -10px;
  right: -21px;
  text-align: center;
}

.order-product-wrapper::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-content::after {
  z-index: 2;
  top: -10px;
  right: 3px;
}

.circles-block {
  counter-reset: circle-counter;
}

.circle-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  position: absolute;
  counter-increment: circle-counter;
  z-index: 2;
  background: radial-gradient(circle, #f8fafd 40%, #eef2f6 100%);
  outline: 7px solid #fff;
  box-shadow: inset 10px 10px 18px rgba(0, 0, 0, 0.2),
    inset -10px -10px 18px rgba(255, 255, 255, 1),
    10px 10px 18px rgba(0, 0, 0, 0.25),
    -10px -10px 18px rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
  padding: 0 7px;
}

.circle-content::after {
  content: counter(circle-counter, decimal-leading-zero);
  font-size: 25px;
  font-weight: 700;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.circle-content:first-child {
  left: 25px;
  top: -40px;
  z-index: 3;
  animation: float-up 3s ease-in-out infinite;
}

.circle-content:first-child::before {
  content: '';
  width: 220px;
  height: 1px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  position: absolute;
  top: 210px;
  left: -111px;
  transform: rotate(98deg);
  z-index: -1;
}

.circle-content:nth-child(2) {
  top: 95px;
  left: 45px;
  z-index: 2;
  animation: move-left-right 4s ease-in-out infinite;
}

.circle-content:nth-child(2)::before {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  position: absolute;
  top: 52px;
  right: -52px;
  transform: rotate(6deg);
  z-index: -1;
}

.circle-content:nth-child(3) {
  top: 228px;
  left: 10px;
  z-index: 3;
  animation: float-down 3s ease-in-out infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes float-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes move-left-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0);
  }
}

.promo-image-wrapper {
  position: relative;
  max-width: 124px;
  z-index: 2;
}
.promo-image-wrapper img {
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.5));
}

.promo-image-wrapper::after {
  content: '';
  width: 100px;
  height: 1px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  position: absolute;
  top: 48px;
  left: -81px;
  transform: rotate(30deg);
  z-index: -1;
}

.promo-image-wrapper::before {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  position: absolute;
  bottom: 5px;
  left: -65px;
  transform: rotate(-25deg);
  z-index: -1;
}

.form {
  max-width: 290px;
  width: 100%;
  border-radius: 12.352px;
  background-color: #fff;
  box-shadow: 0px 2.47px 6.176px 0px rgba(0, 0, 0, 0.12);
  padding: 18px;
  position: relative;
}

@media screen and (min-width: 640px) {
  .footer-promo .form {
    padding: 22px 18px 18px;
  }
}

.form-prices-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.price-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.02;
}

.new-price-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 25px;
  border-right: 1px solid #ccc;
}

.new-price {
  font-size: 27px;
  line-height: 1.02;
}

.old-price-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: #ccc;
  line-height: 1.02;
  font-weight: 400;
}

.old-price {
  font-size: 27px;
  text-decoration: line-through;
  font-weight: 400;
}

.price-title.old {
  font-weight: 400;
}

.form-inputs-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.form-input {
  outline: transparent;
  width: 100%;
  padding: 12px;
  border-radius: 60px;
  border: 1px solid #0d7c75;
  text-align: center;
  line-height: 0.79;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border: 1px solid #319da2;
  box-shadow: 0 0 5px rgba(49, 157, 162, 0.6);
  outline: none;
}
.form-input::placeholder {
  font-size: 14px;
}

.promo-section .form-input::placeholder {
  color: #333;
}

.form-button {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  outline: transparent;
  width: 100%;
  border-radius: 61.762px;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  box-shadow: 0px 3.088px 12.352px 0px rgba(50, 118, 71, 0.1);
  padding: 12.117px 82.142px 12.295px 82.085px;
  animation: pulse 1.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-button:hover,
.form-button:focus,
.header-button:hover,
.header-button:focus {
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(50, 118, 71, 0.3);
  background: linear-gradient(90deg, #d7263d 0%, #6a0a0a 100%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (min-width: 380px) {
  .promo-title,
  .promo-subtitle {
    text-align: center;
  }
  .circle-content {
    width: 120px;
    height: 120px;
    font-size: 11px;
  }
  .promo-content {
    max-width: 305px;
  }

  .circle-content::after {
    bottom: 62px;
  }
  .circle-content:first-child {
    top: -40px;
  }
  .circle-content:nth-child(2) {
    top: 98px;
    left: 38px;
  }
  .circle-content:nth-child(3) {
    top: 230px;
    left: -10px;
  }
  .circle-content:nth-child(2)::before {
    top: 58px;
  }
  .circle-content:first-child::before {
    left: -122px;
    top: 200px;
  }
  .promo-image-wrapper::before {
    width: 100px;
    bottom: 0;
    left: -92px;
  }
}

@media screen and (min-width: 480px) {
  .promo-content {
    max-width: 350px;
    margin-bottom: 85px;
  }
  .circle-content {
    font-size: 12px;
    width: 130px;
    height: 130px;
  }
  .promo-image-wrapper {
    max-width: 180px;
  }
  .promo-subtitle {
    margin-bottom: 40px;
  }
  .promo-image-wrapper::after {
    top: 78px;
  }
  .promo-image-wrapper::before {
    bottom: 45px;
    left: -90px;
  }
  .circle-content:first-child {
    top: -20px;
  }
  .circle-content:first-child::before {
    left: -138px;
    width: 240px;
  }
  .circle-content:nth-child(2) {
    top: 130px;
    left: 27px;
  }
  .circle-content:nth-child(2)::before {
    top: 70px;
  }
  .circle-content:nth-child(3) {
    top: 270px;
    left: -40px;
  }
  .promo-content::after {
    width: 64px;
    height: 36px;
    font-size: 22px;
    line-height: 1.8;
  }

  .promo-title {
    font-size: 29px;
  }
  .promo-subtitle {
    font-size: 19px;
  }
  .form {
    max-width: 350px;
  }
  .new-price,
  .old-price {
    font-size: 29px;
  }
  .form-input::placeholder {
    font-size: 15px;
  }
  .form-button {
    font-size: 16px;
  }
}

@media screen and (min-width: 640px) {
  .promo-section {
    padding-top: 40px;
    padding-bottom: 180px;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .promo-content {
    order: 1;
  }
  .promo-info {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
  .promo-title {
    font-size: 29px;
  }
  .promo-subtitle {
    font-size: 20px;
  }
  .promo-content {
    margin-bottom: 0;
  }
  .promo-content::after {
    width: 65px;
    height: 30px;
    top: -10px;
    right: 3px;
    font-size: 20px;
  }
  .order-product-wrapper::after,
  .promo-content::after,
  .effects-product-wrapper::after,
  .popup-image-wrapper::after {
    line-height: 1.7;
  }
  .circle-content {
    padding: 0 9px;
  }
  .circle-content:first-child::before {
    left: -134px;
    top: 210px;
  }
  .circle-content:first-child {
    top: -25px;
  }
  .circle-content:nth-child(2) {
    top: 125px;
    left: 30px;
  }
  .circle-content:nth-child(2)::before {
    top: 63px;
  }
  .circle-content:nth-child(3) {
    top: 265px;
    left: -25px;
  }
  .promo-image-wrapper::before {
    bottom: 5px;
  }
  .form {
    max-width: 290px;
  }
  .form-prices-block {
    gap: 8px;
  }
  .new-price-block {
    padding-right: 10px;
  }
}

@media screen and (min-width: 768px) {
  .promo-section {
    padding-top: 60px;
    padding-bottom: 160px;
  }
  .promo-title {
    font-size: 35px;
  }
  .promo-subtitle {
    font-size: 23px;
    margin-bottom: 100px;
  }
  .promo-info {
    gap: 30px;
  }
  .promo-content {
    max-width: 370px;
  }
  .promo-image-wrapper {
    max-width: 150px;
  }
  .circle-content {
    font-size: 14px;
  }
  .circle-content:first-child {
    left: -25px;
    top: -80px;
  }
  .circle-content:nth-child(2) {
    left: 5px;
    top: 90px;
  }
  .circle-content:nth-child(3) {
    top: 242px;
    left: -80px;
  }
  .circle-content {
    width: 150px;
    height: 150px;
    padding: 0 10px;
  }
  .circle-content::after {
    font-size: 35px;
    bottom: 77px;
  }
  .circle-content:first-child::before {
    top: 243px;
    left: -120px;
  }
  .circle-content:nth-child(2)::before {
    top: 85px;
  }
  .form {
    max-width: 330px;
  }

  .new-price,
  .old-price {
    font-size: 32px;
  }

  .form-button {
    font-size: 16px;
  }
  .promo-content::after {
    font-size: 22px;
    width: 70px;
    height: 35px;
    top: -10px;
    right: 3px;
  }
  .promo-image-wrapper::after {
    top: 60px;
    left: -80px;
  }
  .promo-image-wrapper::before {
    width: 120px;
    left: -110px;
  }

  .promo-content::after,
  .effects-product-wrapper::after,
  .popup-image-wrapper::after {
    line-height: 1.8;
  }
  .order-product-wrapper::after {
    line-height: 1.5;
  }
  .new-price-block {
    padding-right: 25px;
  }
  .form-prices-block {
    gap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .promo-section {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .promo-title {
    text-align: left;
    max-width: 480px;
    font-size: 43px;
    margin-bottom: 30px;
  }
  .promo-subtitle {
    max-width: 460px;
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
  .form {
    flex-grow: 1;
    max-width: 400px;
    padding: 25px;
  }
  .price-title {
    font-size: 16px;
  }
  .new-price,
  .old-price {
    font-size: 37px;
  }
  .form-input,
  .form-button {
    font-size: 18px;
  }
  .circle-content {
    width: 190px;
    height: 190px;
    font-size: 18px;
    padding: 0 12px;
  }

  .circle-content::after {
    font-size: 55px;
  }
  .promo-info {
    position: relative;
    justify-content: flex-start;
    gap: 178px;
  }
  .promo-image-wrapper {
    flex-shrink: 0;
    max-width: 250px;
  }
  .promo-content {
    position: absolute;
    top: -170px;
    right: 45px;
  }
  .circle-content:first-child {
    left: -90px;
    top: -80px;
  }
  .circle-content:nth-child(2) {
    top: 130px;
    left: -45px;
  }
  .circle-content:nth-child(3) {
    top: 320px;
    left: -160px;
  }
  .circle-content:first-child::before {
    width: 270px;
    top: 302px;
    height: 2px;
  }
  .circle-content:nth-child(2)::before {
    top: 115px;
    width: 80px;
    right: -80px;
    height: 2px;
  }
  .promo-image-wrapper::after {
    width: 170px;
    top: 95px;
    left: -150px;
    height: 2px;
  }
  .promo-image-wrapper::before {
    bottom: 80px;
    left: -200px;
    width: 230px;
    height: 2px;
  }
  .circle-text {
    top: 105px;
    left: 31px;
  }
  .circle-text.third {
    top: 88px;
  }
  .circle-content.third::after {
    bottom: 93px;
  }
  .promo-content::after {
    font-size: 30px;
    width: 100px;
    height: 50px;
    top: -10px;
    right: -40px;
  }
  .form-prices-block {
    margin-bottom: 20px;
  }
  .form-inputs-block {
    gap: 15px;
    margin-bottom: 20px;
  }

  .form-input::placeholder {
    font-size: 15px;
  }
  .form-input {
    padding: 15px;
  }
  .form-button {
    font-size: 20px;
    padding: 15px 107.504px 15px 107px;
  }
}

@media screen and (min-width: 1280px) {
  .promo-section {
    padding-top: 170px;
    padding-bottom: 100px;
  }
  .promo-title {
    font-size: 50px;
    max-width: 575px;
    margin-bottom: 18px;
  }
  .promo-subtitle {
    max-width: none;
    font-size: 27px;
    margin-bottom: 35px;
  }
  .form {
    max-width: 430px;
  }
  .price-title {
    font-size: 18px;
  }
  .new-price,
  .old-price {
    font-size: 42px;
  }

  .form-input {
    padding: 18px;
  }
  .form-input::placeholder {
    font-size: 18px;
  }
  .form-prices-block {
    margin-bottom: 30px;
  }
  .form-inputs-block {
    gap: 18px;
    margin-bottom: 25px;
  }

  .circle-content {
    width: 230px;
    height: 230px;
    font-size: 20px;
    padding: 0 23px;
  }
  .circle-content:first-child {
    left: -170px;
    top: -32px;
  }
  .circle-content:nth-child(2) {
    left: -90px;
    top: 216px;
  }
  .circle-content:nth-child(3) {
    left: -257px;
    top: 420px;
  }
  .circle-content:first-child::before {
    width: 250px;
    top: 348px;
    left: -70px;
  }
  .promo-content {
    top: -263px;
    right: 125px;
  }
  .promo-image-wrapper {
    max-width: 330px;
  }
  .promo-image-wrapper::after {
    width: 250px;
    top: 161px;
    left: -195px;
  }
  .promo-image-wrapper::before {
    bottom: 163px;
  }
  .promo-content::after {
    width: 130px;
    height: 60px;
    font-size: 35px;
    top: -20px;
    right: -120px;
  }

  .circle-content::after {
    bottom: 100px;
  }
  .circle-content:nth-child(2)::before {
    top: 137px;
  }
  .menu-item {
    font-size: 16px;
  }
}

/*------- Reasons section -------- */
.reasons-section {
  padding-top: 35px;
  padding-bottom: 43px;
  background-color: #f2f4f3;
}

.reasons-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.29;
  text-align: center;
  margin-bottom: 14px;
}

.reasons-text {
  font-weight: 300;
  line-height: 1.5;
}

.reason-right-block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.capsule-image-wrapper {
  max-width: 70px;
}

.capsule-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.29;
  text-transform: uppercase;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statistics-list {
  border-radius: 14.4px;
  border: 0.72px solid #fff;
  background: #fff;
  box-shadow: 0px 2.88px 7.2px 0px rgba(0, 0, 0, 0.12);
  padding: 20px;
}

.statistic-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.statistic-item {
  position: relative;
}

.statistic-item:not(:last-child) {
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}

.statistic-item:not(:first-child) {
  padding-top: 25px;
}

.statistic-item:first-child::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 46px;
  background: url('../images/intestines.svg');
  background-size: 100% 100%;
}

.statistic-item:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 25px;
  right: 0;
  width: 32px;
  height: 39px;
  background: url('../images/cross.svg');
  background-size: 100% 100%;
}

.statistic-item:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 25px;
  right: 0;
  width: 35px;
  height: 35px;
  background: url('../images/stomach.svg');
  background-size: 100% 100%;
}

.statistic-data {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.statistic-text {
  font-weight: 300;
  line-height: 1.37;
}

.statistic-text .accent {
  font-weight: 400;
}

@media screen and (min-width: 380px) {
  .reasons-text {
    text-align: center;
  }
}

@media screen and (min-width: 480px) {
  .reasons-title {
    font-size: 29px;
  }
  .reasons-text {
    font-size: 18px;
  }
  .capsule-title {
    font-size: 29px;
  }
  .statistic-text {
    font-size: 18px;
  }
}

@media screen and (min-width: 480px) {
  .statistic-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .statistic-text {
    max-width: 260px;
    padding-right: 40px;
  }

  .capsule-image-wrapper {
    flex-shrink: 0;
  }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
}

@media screen and (min-width: 640px) {
  .reasons-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .reasons-title,
  .capsule-title {
    font-size: 29px;
  }

  .reasons-text,
  .reasons-title {
    text-align: left;
  }
  .reasons-header-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
  }
  .reasons-left-block {
    flex-basis: 107%;
  }
  .reason-right-block {
    margin: 0;
  }
  .capsule-image-wrapper {
    flex-shrink: 0;
  }

  .statistic-data {
    font-size: 50px;
  }
  .statistic-item:not(:last-child) {
    padding-right: 20px;
  }
  .statistic-item:first-child::after {
    width: 30px;
    height: 41px;
  }
  .statistic-item:nth-child(2)::after {
    width: 27px;
    height: 34px;
  }
  .statistic-item:nth-child(3)::after {
    width: 30px;
    height: 35px;
  }
  .statistic-text {
    max-width: 395px;
  }
  .statistic-text.third {
    max-width: 415px;
  }
}

@media screen and (min-width: 768px) {
  .reasons-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .reasons-title {
    font-size: 35px;
  }
  .capsule-title {
    font-size: 34px;
  }
  .statistics-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
    padding: 25px;
  }
  .statistic-item {
    display: block;
    flex: 1;
  }
  .statistic-item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #ccc;
    padding-bottom: 0;
    padding-right: 25px;
  }

  .statistic-item:not(:first-child) {
    padding-top: 0;
  }

  .statistic-item:first-child::after {
    right: 14px;
    width: 35px;
    height: 46px;
  }
  .statistic-item:nth-child(2)::after {
    top: 0;
    width: 32px;
    height: 39px;
    right: 14px;
  }
  .statistic-item:nth-child(3)::after {
    top: 0;
    width: 35px;
    height: 40px;
  }
  .statistic-text {
    max-width: none;
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .reasons-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .reasons-title {
    font-size: 40px;
    max-width: none;
  }
  .reasons-text {
    font-size: 20px;
    max-width: 420px;
  }
  .reasons-left-block {
    flex-basis: 88%;
  }
  .reason-right-block {
    gap: 40px;
  }
  .capsule-image-wrapper {
    max-width: 80px;
  }
  .capsule-title {
    font-size: 50px;
  }
  .reasons-header-block {
    gap: 0;
  }
  .statistic-data {
    font-size: 75px;
  }
  .statistic-text {
    font-size: 18px;
  }
  .statistics-list {
    padding: 40px;
    gap: 20px;
  }
  .statistic-item:not(:last-child) {
    padding-right: 40px;
  }
  .statistic-item:first-child::after,
  .statistic-item:nth-child(2)::after {
    right: 25px;
  }
  .statistic-item:first-child::after {
    width: 48px;
    height: 64px;
  }
  .statistic-item:nth-child(2)::after {
    width: 45px;
    height: 54px;
  }
  .statistic-item:nth-child(3)::after {
    width: 48px;
    height: 48px;
    top: 8px;
  }
}
@media screen and (min-width: 1280px) {
  .reasons-section {
    padding-top: 100px;
  }
  .reasons-title {
    font-size: 60px;
    max-width: 540px;
    line-height: 1.16;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .capsule-title {
    font-size: 85px;
    line-height: 1.17;
  }
  .reasons-header-block {
    margin-bottom: 82px;
    gap: 25px;
  }
  .reason-right-block {
    gap: 25px;
  }
  .reasons-text {
    line-height: 1.66;
  }
  .capsule-image-wrapper {
    max-width: 165px;
  }
  .statistics-list {
    padding: 70px 20px;
    gap: 45px;
  }

  .statistic-item:first-child {
    padding-right: 95px;
  }
  .statistic-data {
    font-size: 85px;
  }
  .statistic-text {
    line-height: 1.66;
  }
  .statistic-item:nth-child(2) {
    max-width: 400px;
    padding-right: 44px;
  }
  .statistic-item:first-child::after {
    right: 50px;
  }
  .statistic-item:nth-child(2)::after {
    top: 8px;
    right: 58px;
  }
  .statistic-item:nth-child(3)::after {
    top: 14px;
    right: 0;
  }
  .reasons-left-block {
    flex-basis: 94%;
  }
}

/* ------- sign-disease-section -------- */
.signs-disease-section {
  padding-bottom: 53px;
  background-color: #f2f4f3;
}

.swiper-diseases {
  width: 100vw;
  max-width: 100%;
}

.signs-disease-title {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 23px;
}

.swiper-diseases .swiper-slide {
  position: relative;
  max-width: 180px;
  min-height: 210px;
  overflow: hidden;
}

.signs-disease-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
  color: #fff;
  max-width: 160px;
  transition: all 0.3s ease;
  z-index: 2;
}

.signs-disease-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.swiper-diseases .swiper-slide:hover .signs-disease-image-wrapper .overlay {
  background: rgba(0, 0, 0, 0);
}

.signs-disease-image-wrapper {
  width: 100%;
  height: 210px;
  position: relative;
}

.signs-disease-image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.swiper-diseases .swiper-slide:hover .signs-disease-image-wrapper img {
  filter: grayscale(10%);
}

.swiper-diseases .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    270deg,
    #d2dfe3 0.17%,
    #ecf1f3 73.59%,
    #cedce0 99.84%
  );
  transition: all 0.3s ease;
  opacity: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.swiper-diseases .swiper-slide:hover .signs-disease-text {
  color: #333;
  z-index: 3;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 29%;
}

@media screen and (min-width: 480px) {
  .signs-disease-title {
    font-size: 29px;
  }
}

@media screen and (min-width: 640px) {
  .signs-disease-title {
    font-size: 29px;
  }
  .signs-disease-section {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .signs-disease-title {
    font-size: 35px;
  }
  .signs-disease-section {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .signs-disease-title {
    font-size: 43px;
  }
  .swiper-diseases .swiper-slide {
    max-width: 205px;
  }
  .signs-disease-section {
    padding-bottom: 70px;
  }
  .signs-disease-text {
    max-width: 170px;
  }
}

@media screen and (min-width: 1280px) {
  .signs-disease-section {
    padding-bottom: 100px;
  }
  .signs-disease-title {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 84px;
  }
  .signs-disease-text {
    font-size: 18px;
  }
}

/* -------   indications section   ----------*/

.indications-section {
  padding-top: 36px;
  padding-bottom: 35px;
  background-image: url('../images/background-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.indications-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.indications-header-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.indications-product-wrapper {
  max-width: 68px;
}

.indications-product-wrapper img {
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.5));
}

.indications-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.indications-title .accent {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.indications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.indications-item {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  animation: fadeInUp 0.6s ease-in-out forwards;
  gap: 10px;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  background: radial-gradient(circle, #f8fafd 40%, #eef2f6 100%);
  outline: 7px solid #fff;
  box-shadow: inset 10px 10px 18px rgba(0, 0, 0, 0.2),
    inset -10px -10px 18px rgba(255, 255, 255, 1),
    10px 10px 18px rgba(0, 0, 0, 0.25),
    -10px -10px 18px rgba(255, 255, 255, 0.95);
  padding: 0 12px;
}

.indications-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.indications-item:nth-child(1) {
  transition-delay: 0.2s;
}
.indications-item:nth-child(2) {
  transition-delay: 0.4s;
}
.indications-item:nth-child(3) {
  transition-delay: 0.6s;
}
.indications-item:nth-child(4) {
  transition-delay: 0.8s;
}
.indications-item:nth-child(5) {
  transition-delay: 1s;
}
.indications-item:nth-child(6) {
  transition-delay: 1.2s;
}

.indications-item:first-child::before {
  content: '';
  width: 42px;
  height: 48px;
  background: url('../images/indication-1.svg');
  background-size: 100% 100%;
}

.indications-item:nth-child(2)::before {
  content: '';
  width: 36px;
  height: 36px;
  background: url('../images/indication-2.svg');
  background-size: 100% 100%;
}

.indications-item:nth-child(3)::before {
  content: '';
  width: 50px;
  height: 32px;
  background: url('../images/indication-3.svg');
  background-size: 100% 100%;
}
.indications-item:nth-child(4)::before {
  content: '';
  width: 38px;
  height: 49px;
  background: url('../images/indication-4.svg');
  background-size: 100% 100%;
}
.indications-item:nth-child(5)::before {
  content: '';
  width: 39px;
  height: 39px;
  background: url('../images/indication-5.svg');
  background-size: 100% 100%;
}
.indications-item:nth-child(6)::before {
  content: '';
  width: 46px;
  height: 40px;
  background: url('../images/indication-6.svg');
  background-size: 100% 100%;
}

.indications-button {
  max-width: 375px;
  padding: 9.51px 15px 9.374px;
}
.indications-product-wrapper.desk {
  display: none;
}

@media screen and (min-width: 360px) {
  .indications-list {
    gap: 35px 45px;
  }
}

@media screen and (min-width: 380px) {
  .indications-item {
    width: 140px;
    height: 140px;
  }
}

@media screen and (min-width: 480px) {
  .indications-title {
    font-size: 29px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .indications-header-block {
    padding: 0 30px;
  }
}

@media screen and (min-width: 640px) {
  .indications-list {
    gap: 25px;
  }
  .indications-list::before {
    content: '';
    width: 80px;
    height: 58px;
    background: url('../images/recomended.png');
    background-size: 100% 100%;
    position: absolute;
    top: -28px;
    left: -77px;
    z-index: 2;
  }
}

@media screen and (min-width: 640px) and (max-width: 1023px) {
  .indications-wrapper {
    gap: 0;
  }
  .indications-list {
    position: relative;
  }
  .indications-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .indications-list {
    max-width: 455px;
    align-self: flex-end;
    margin-bottom: 45px;
  }
  .indications-item {
    width: 125px;
    height: 125px;
  }
  .indications-header-block {
    position: relative;
    padding: 0;
    margin-bottom: 45px;
  }
  .indications-product-wrapper.mob {
    max-width: 150px;
    position: absolute;
    top: 70px;
    left: -85px;
  }
  .indications-button {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .indications-text {
    bottom: 50px;
  }
  .indications-list {
    max-width: 545px;
    gap: 30px;
  }
  .indications-title {
    font-size: 35px;
  }
  .indications-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .indications-header-block {
    margin-bottom: 60px;
  }

  .indications-product-wrapper.mob {
    max-width: 180px;
    left: -105px;
    top: 92px;
  }
  .indications-item {
    width: 150px;
    height: 150px;
    font-size: 14px;
  }
  .indications-item:first-child::before {
    width: 52px;
    height: 58px;
  }
  .indications-item:nth-child(2)::before {
    width: 46px;
    height: 46px;
  }
  .indications-item:nth-child(3)::before {
    width: 60px;
    height: 42px;
  }
  .indications-item:nth-child(4)::before {
    width: 48px;
    height: 59px;
  }
  .indications-item:nth-child(5)::before {
    width: 49px;
    height: 49px;
  }
  .indications-item:nth-child(6)::before {
    width: 56px;
    height: 50px;
  }

  .indications-list {
    margin-bottom: 60px;
  }

  .indications-list::before {
    content: '';
    width: 100px;
    height: 73px;
    left: -110px;
  }
  .indications-button {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .indications-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .indications-wrapper {
    position: relative;
    gap: 0;
  }

  .indications-list::before {
    width: 150px;
    height: 110px;
    top: 125px;
    left: 505px;
    z-index: 4;
  }

  .indications-title {
    font-size: 43px;
  }
  .indications-item {
    width: 165px;
    height: 165px;
    position: absolute;
    gap: 15px;
    z-index: 2;
    font-size: 16px;
    padding: 0 12px;
  }
  .indications-product-wrapper.mob {
    display: none;
  }
  .indications-product-wrapper.desk {
    display: block;
    position: relative;
    z-index: 4;
    max-width: 230px;
    margin-bottom: 60px;
  }
  .indications-item:first-child {
    top: 125px;
    left: 70px;
    z-index: 3;
  }
  .indications-item:nth-child(2) {
    top: 125px;
    right: 70px;
  }
  .indications-item:nth-child(3) {
    top: 325px;
    left: 170px;
  }
  .indications-item:nth-child(4) {
    top: 325px;
    right: 170px;
  }
  .indications-item:nth-child(5) {
    top: 485px;
    left: 15px;
    z-index: 3;
  }
  .indications-item:nth-child(6) {
    top: 485px;
    right: 15px;
  }
  .indications-item:first-child,
  .indications-item:nth-child(2) {
    animation: float-up 3s ease-in-out infinite;
  }
  .indications-item:nth-child(3),
  .indications-item:nth-child(4) {
    animation: move-left-right 4s ease-in-out infinite;
  }
  .indications-item:nth-child(5),
  .indications-item:nth-child(6) {
    animation: float-down 3s ease-in-out infinite;
  }

  .lines-container::before {
    content: '';
    width: 200px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 245px;
    left: 210px;
    transform: rotate(30deg);
    z-index: 1;
  }
  .lines-container::after {
    content: '';
    width: 200px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 250px;
    right: 210px;
    transform: rotate(151deg);
    z-index: 1;
  }
  .indications-item:first-child::after {
    content: '';
    width: 200px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 270px;
    left: -52px;
    transform: rotate(98deg);
    z-index: -1;
  }
  .indications-item:nth-child(2)::after {
    content: '';
    width: 200px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 270px;
    right: -55px;
    transform: rotate(80deg);
    z-index: -1;
  }
  .indications-item:nth-child(3)::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 110px;
    right: -60px;
    transform: rotate(14deg);
    z-index: -1;
  }
  .indications-item:nth-child(4)::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    top: 110px;
    left: -50px;
    transform: rotate(-14deg);
    z-index: -1;
  }
  .indications-item:nth-child(5)::after {
    content: '';
    width: 220px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    bottom: 95px;
    left: 165px;
    transform: rotate(-14deg);
    z-index: -1;
  }
  .indications-item:nth-child(6)::after {
    content: '';
    width: 220px;
    height: 1px;
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    position: absolute;
    bottom: 95px;
    right: 165px;
    transform: rotate(14deg);
    z-index: -1;
  }
  .indications-button {
    font-size: 20px;
    padding: 20px 15px;
  }

  .indications-product-wrapper.desk::before,
  .indications-product-wrapper.desk::after,
  .indications-item::after {
    z-index: 0;
  }

  .indications-item {
    z-index: 2;
  }

  .indications-product-wrapper.desk {
    z-index: 3;
  }
}

@media screen and (min-width: 1280px) {
  .indications-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .indications-title {
    font-size: 50px;
  }
  .indications-list::before {
    top: 130px;
    left: 650px;
  }

  .indications-item {
    font-size: 20px;
    width: 220px;
    height: 220px;
  }
  .indications-item:first-child {
    top: 95px;
    left: 56px;
  }
  .indications-item:first-child::before {
    width: 65px;
    height: 74px;
  }
  .indications-item:nth-child(2) {
    top: 95px;
    right: 56px;
  }
  .indications-item:nth-child(2)::before {
    width: 56px;
    height: 56px;
    left: 85px;
  }
  .indications-item:nth-child(3) {
    top: 325px;
    left: 210px;
  }
  .indications-item:nth-child(3)::before {
    width: 77px;
    height: 48px;
    top: 61px;
    left: 64px;
  }
  .indications-item:nth-child(4) {
    top: 325px;
    right: 190px;
  }
  .indications-item:nth-child(4)::before {
    width: 57px;
    height: 75px;
    top: 41px;
    left: 80px;
  }
  .indications-item:nth-child(5) {
    top: 528px;
  }
  .indications-item:nth-child(5)::before {
    width: 59px;
    height: 59px;
    top: 58px;
    left: 79px;
  }
  .indications-item:nth-child(6) {
    top: 528px;
  }
  .indications-item:nth-child(6)::before {
    width: 71px;
    height: 61px;
    top: 53px;
    left: 90px;
  }
  .indications-product-wrapper.desk {
    max-width: 275px;
  }
  .lines-container::before {
    width: 250px;
    top: 285px;
    left: 264px;
    height: 2px;
  }
  .lines-container::after {
    width: 250px;
    top: 285px;
    right: 264px;
    height: 2px;
  }
  .indications-item:first-child::after {
    width: 225px;
    top: 332px;
    left: -50px;
    height: 2px;
  }
  .indications-item:nth-child(2)::after {
    width: 225px;
    top: 332px;
    right: -50px;
    height: 2px;
  }
  .indications-item:nth-child(3)::after {
    width: 90px;
    right: -90px;
    height: 2px;
    top: 130px;
  }
  .indications-item:nth-child(4)::after {
    width: 90px;
    left: -90px;
    height: 2px;
    top: 130px;
  }
  .indications-item:nth-child(5)::after {
    width: 270px;
    bottom: 115px;
    left: 215px;
    height: 2px;
  }
  .indications-item:nth-child(6)::after {
    width: 270px;
    bottom: 115px;
    right: 215px;
    height: 2px;
  }
}

/* ------------ action section  ----------- */
.action-section {
  padding-top: 35px;
  background: #f2f4f3;
}

.action-wrapper {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.action-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
}

.action-subtitle {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 23px;
}

.action-title .accent {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-item {
  position: relative;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 3.476px 8.689px 0px rgba(0, 0, 0, 0.12);
  padding: 10px;
}

.action-description {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-image-wrapper {
  flex-shrink: 0;
  width: 35px;
  height: 66px;
  transition: all 0.3s ease;
}

.action-headline {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 50px;
}

.action-button {
  outline: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #0d7c75;
  font-size: 24px;
  color: #0d7c75;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.action-button:hover {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  color: white;
}

.action-item.open .action-button {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  color: white;
  top: 40px;
}

.action-item.open {
  border: 1px solid #0d7c75;
}

.action-item.open .action-image-wrapper {
  width: 73px;
  height: 138px;
}

.action-item.open .action-headline {
  margin-bottom: 10px;
}

.action-item.open::before {
  content: '';
  width: 73px;
  height: 130px;
  top: 20px;
  left: 15px;
}

.action-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, max-height 0s opacity 0.5s ease;
  opacity: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.28;
  padding-right: 20px;
}

.action-item.open .action-content {
  max-height: 200px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

@media screen and (max-width: 345px) {
  .action-item--sixth.open .action-button {
    top: 60px;
  }
}

@media screen and (min-width: 480px) {
  .action-title {
    font-size: 29px;
  }
  .action-subtitle {
    font-size: 19px;
  }
  .action-headline {
    font-size: 19px;
  }
  .action-content {
    font-size: 16px;
  }
  .action-item.open .action-button {
    top: 40px;
  }
}

@media screen and (max-width: 639px) {
  .action-title {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 640px) {
  .action-section {
    padding-top: 40px;
  }
  .action-title {
    font-size: 29px;
    line-height: 1.77;
  }
  .action-subtitle {
    font-size: 20px;
  }
  .action-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .action-item {
    max-width: 295px;
    height: 105px;
  }
  .action-item.open {
    height: auto;
    max-height: 250px;
  }
  .action-image-wrapper {
    width: 45px;
    height: 85px;
  }
  .action-item.open .action-button {
    top: 30px;
  }
  .action-item--sixth .action-content {
    padding-right: 55px;
  }
  .action-item--third.open .action-button,
  .action-item--sixth.open .action-button {
    top: 50px;
  }
  .action-description {
    gap: 15px;
  }
}

@media screen and (min-width: 768px) {
  .action-section {
    padding-top: 40px;
  }
  .action-title {
    font-size: 35px;
  }
  .action-subtitle {
    font-size: 23px;
  }
  .action-item {
    max-width: 360px;
  }
  .action-item.open .action-button {
    top: 40px;
  }
  .action-content {
    padding-right: 10px;
  }
  .action-item--sixth .action-content {
    padding-right: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .action-section {
    padding-top: 70px;
  }
  .action-image-wrapper {
    display: none;
  }
  .action-wrapper {
    border: none;
    padding-bottom: 120px;
  }
  .action-list {
    gap: 40px;
  }
  .action-item {
    position: relative;
    height: 70px;
    padding: 20px 25px;
    max-width: 330px;
  }
  .action-headline {
    font-size: 20px;
    padding-right: 0;
  }
  .action-content {
    font-size: 16px;
  }
  .action-button {
    right: 155px;
    top: 98%;
  }
  .action-item.open .action-button {
    top: 100%;
    transform: translateY(-50%);
  }
  .action-button {
    background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
    color: white;
  }
  .action-header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  .action-title {
    font-size: 43px;
    line-height: 1.1;
    max-width: 450px;
  }
  .action-subtitle {
    font-size: 25px;
    line-height: 1.29;
    max-width: 403px;
  }

  .action-item.action-item--first.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk-1.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -130px;
    left: 328px;
    pointer-events: none;
  }

  .action-item.action-item--second.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk-2.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -245px;
    left: 328px;
    pointer-events: none;
  }

  .action-item.action-item--third.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk-3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -305px;
    left: 328px;
    pointer-events: none;
  }
  .action-item.action-item--fourth.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk4.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -152px;
    left: -300px;
    pointer-events: none;
  }

  .action-item.action-item--fifth.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk-5.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -230px;
    left: -300px;
    pointer-events: none;
  }
  .action-item.action-item--sixth.open::before {
    content: '';
    width: 300px;
    height: 470px;
    background: url('../images/action-desk-6.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -350px;
    left: -300px;
    pointer-events: none;
  }

  .action-item--fifth {
    height: 95px;
  }

  .action-item:nth-child(1) {
    order: 1;
  }
  .action-item:nth-child(2) {
    order: 2;
  }
  .action-item:nth-child(3) {
    order: 3;
  }
  .action-item:nth-child(4) {
    order: 1;
  }
  .action-item:nth-child(5) {
    order: 2;
  }
  .action-item:nth-child(6) {
    order: 3;
  }
}

@media screen and (min-width: 1280px) {
  .action-section {
    padding-top: 150px;
  }
  .action-title {
    font-size: 50px;
    max-width: 420px;
  }
  .action-subtitle {
    font-size: 27px;
    max-width: 437px;
  }
  .action-headline {
    font-size: 22px;
  }
  .action-content {
    font-size: 18px;
  }
  .action-item {
    max-width: 400px;
  }
  .action-item {
    height: 75px;
    padding: 25px 19px;
  }

  .action-item.action-item--first.open::before {
    width: 403px;
    height: 663px;
    top: -210px;
    left: 398px;
  }
  .action-button {
    right: 190px;
  }
  .action-item.action-item--second.open::before {
    width: 403px;
    height: 663px;
    top: -305px;
    left: 398px;
  }
  .action-item.action-item--third.open::before {
    width: 403px;
    height: 663px;
    top: -427px;
    left: 398px;
  }
  .action-item.action-item--fourth.open::before {
    width: 403px;
    height: 663px;
    top: -210px;
    left: -403px;
  }
  .action-item.action-item--fifth.open::before {
    width: 403px;
    height: 663px;
    top: -315px;
    left: -403px;
  }
  .action-item.action-item--sixth.open::before {
    width: 403px;
    height: 663px;
    top: -434px;
    left: -403px;
  }
}

/*----- expert opinion section ----- */
.expert-opinion-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #f2f4f3;
}
.expert-opinion-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.expert-opinion-info {
  display: flex;
  flex-direction: column;
}
.expert-opinion-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.expert-opinion-title {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
}

.expert-opinion-text {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.57;
  padding: 15px 20px;
}

.expert-opinion-text .accent {
  font-weight: 400;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.expert-opinion-text::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url('../images/quote-1.svg');
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.expert-opinion-text::after {
  content: '';
  width: 15px;
  height: 15px;
  background: url('../images/quote-2.svg');
  background-size: 100% 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.expert-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.expert-image-wrapper {
  position: relative;
  max-width: 140px;
  top: 20px;
  z-index: 1;
}

.expert-information {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 26px;
  position: relative;
  max-width: 130px;
}

.expert-information::before {
  content: '';
  width: 85px;
  height: 2px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  position: absolute;
  left: 0;
  top: 0;
}

.expert-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.22;
}

.expert-position {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.42;
}

.results-block {
  position: relative;
  border-radius: 17.379px;
  background: #fff;
  box-shadow: 0px 3.476px 8.689px 0px rgba(0, 0, 0, 0.12);
  padding: 20px 15px;
  z-index: 2;
}

.results-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.29;
  margin-bottom: 15px;
}

.results-title .accent {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results-item {
  display: flex;
  flex-direction: column;
}

.results-item:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

.results-item:not(:first-child) {
  padding-top: 15px;
}

.results-data {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results-text {
  font-size: 14px;
  line-height: 1.42;
}

.results-text .accent {
  font-weight: 700;
  white-space: nowrap;
}

@media screen and (min-width: 360px) {
  .expert-information {
    max-width: none;
  }
}

@media screen and (min-width: 480px) {
  .expert-opinion-text {
    font-size: 16px;
  }
  .expert-name {
    font-size: 20px;
  }
  .expert-position {
    font-size: 16px;
  }
  .results-title {
    font-size: 19px;
  }
  .results-item {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .results-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 640px) {
  .expert-opinion-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .expert-opinion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
  }
  .expert-opinion-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .expert-opinion-title {
    max-width: 197px;
    text-align: left;
    font-size: 29px;
    margin-bottom: 0;
    border-right: 2px solid #299698;
  }
  .expert-opinion-content {
    display: flex;
    align-items: center;
  }
  .expert-opinion-text {
    order: 1;
    margin-top: 25px;
  }
  .expert-position {
    max-width: 175px;
  }
  .expert-block {
    flex-shrink: 0;
  }
  .results-title {
    font-size: 21px;
  }
  .results-data {
    line-height: 1;
  }
  .expert-image-wrapper {
    max-width: 184px;
    position: absolute;
    order: 0;
    flex-shrink: 0;
    top: 57px;
    left: 0;
  }
  .expert-information {
    max-width: none;
    padding-top: 0;
  }
  .expert-information::before {
    display: none;
  }

  .expert-opinion-info {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-bottom: 50px;
    max-width: 435px;
  }
}

@media screen and (min-width: 768px) {
  .expert-opinion-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .results-title {
    font-size: 25px;
  }
  .expert-opinion-title {
    font-size: 35px;
    max-width: 240px;
  }
  .expert-opinion-text {
    font-size: 16px;
  }
  .expert-image-wrapper {
    max-width: 210px;
  }
  .expert-opinion-info {
    max-width: 485px;
  }
  .expert-image-wrapper {
    top: -9px;
  }
  .results-list {
    display: flex;
    align-items: stretch;
    gap: 30px;
  }

  .results-item {
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 10px;
  }

  .results-item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid #ccc;
    padding-right: 30px;
  }
  .results-item:not(:first-child) {
    padding-top: 0;
  }
  .results-data {
    line-height: 1;
  }
  .results-block {
    padding: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .expert-opinion-section {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .expert-opinion-wrapper {
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
  }
  .expert-opinion-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .expert-opinion-title {
    font-size: 43px;
    max-width: 287px;
  }

  .expert-opinion-text {
    font-size: 20px;
    padding: 20px 40px;
  }

  .expert-position {
    font-size: 16px;
    max-width: 330px;
  }

  .expert-name {
    font-size: 25px;
  }

  .results-block {
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 650px;
  }

  .results-list {
    border-radius: 17.379px;
    background: #fff;
    box-shadow: 0px 3.476px 8.689px 0px rgba(0, 0, 0, 0.12);
    padding: 20px 15px;
    gap: 20px;
  }

  .results-item:not(:last-child) {
    padding-right: 15px;
  }

  .expert-image-wrapper {
    max-width: 390px;
    top: -2px;
    left: -60px;
  }

  .expert-content {
    display: flex;
    flex-direction: column;
  }

  .expert-opinion-info {
    margin-bottom: 20px;
  }

  .expert-opinion-info {
    max-width: 650px;
  }

  .results-data {
    font-size: 50px;
  }
  .expert-opinion-text::before,
  .expert-opinion-text::after {
    width: 30px;
    height: 20px;
  }
  .results-text {
    font-size: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .expert-opinion-section {
    padding-top: 90px;
  }
  .expert-opinion-title {
    font-size: 50px;
  }
  .expert-name {
    font-size: 27px;
  }
  .expert-position {
    font-size: 18px;
  }
  .expert-image-wrapper {
    max-width: 480px;
    top: 3px;
    left: 15px;
  }
  .expert-opinion-info {
    max-width: 710px;
    margin-bottom: 40px;
  }
  .expert-position {
    max-width: 365px;
  }
  .expert-opinion-text {
    margin-top: 75px;
  }
  .expert-opinion-title {
    max-width: 320px;
  }
  .results-title {
    font-size: 27px;
    margin-bottom: 40px;
  }
  .results-data {
    font-size: 55px;
  }
  .results-list {
    padding: 35px 25px;
    gap: 17px;
  }
  .results-block {
    max-width: 710px;
  }
  .results-item:not(:last-child) {
    padding-right: 10px;
  }
}

/*------ order section ------ */
.order-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  box-shadow: 0px 2.47px 6.176px 0px rgba(0, 0, 0, 0.12);
}

.order-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
}

.order-header-block {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.order-product-wrapper {
  max-width: 89px;
  position: relative;
}

.order-form {
  width: 100%;
}

.order-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
}

@media screen and (min-width: 380px) {
  .order-title {
    font-size: 26px;
  }
}

@media screen and (min-width: 480px) {
  .order-title {
    font-size: 29px;
  }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
  .order-section {
    padding-bottom: 60px;
  }
  .order-wrapper {
    position: relative;
    margin: 0;
    justify-content: flex-end;
    max-width: 100%;
  }
  .order-product-wrapper {
    position: absolute;
    top: 90px;
    left: 0;
    max-width: 130px;
  }
  .order-title {
    text-align: center;
    margin-bottom: 25px;
  }
  .order-form {
    margin-left: auto;
    max-width: 300px;
  }
}

.order-section .new-price-block {
  background: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.order-section .form-input {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  border: 1px solid #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  border: 1px solid #c8d7dc;
  box-shadow: 0 0 8px rgba(76, 155, 139, 0.6);
  outline: transparent;
}

.order-section .form-input {
  color: #fff;
}

.order-section .form-input::placeholder {
  color: #fff;
}

@media screen and (min-width: 640px) {
  .order-wrapper {
    margin: 0;
    max-width: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .order-header-block {
    flex-shrink: 0;
    gap: 20px;
  }
  .order-title {
    font-size: 25px;
    max-width: 220px;
  }
  .order-header-block {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .order-title {
    font-size: 30px;
    max-width: 265px;
  }
  .order-product-wrapper {
    max-width: 110px;
  }
}

@media screen and (min-width: 1024px) {
  .order-section {
    position: relative;
    z-index: 1;
  }
  .order-title {
    max-width: 431px;
  }
  .order-header-block,
  .order-wrapper {
    align-items: flex-start;
  }
  .order-header-block {
    margin-bottom: 0;
  }
  .order-product-wrapper {
    max-width: 70px;
  }
  .order-wrapper {
    position: relative;
    gap: 148px;
  }
  .order-form .form-inputs-block {
    flex-direction: row;
    position: absolute;
    top: 85px;
    left: 100px;
    margin-bottom: 0;
  }
  .order-form .form-input {
    width: 285px;
  }
  .order-form .form-button {
    position: absolute;
    top: 85px;
    right: 0;
    max-width: 290px;
  }
  .order-header-block::after {
    content: '';
    background: url('../images/rec-white.png');
    background-size: 100% 100%;
    position: absolute;
    width: 90px;
    height: 66px;
    top: 0;
    right: 341px;
  }
  .order-header-block {
    gap: 30px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .order-section .new-price-block {
    padding-right: 15px;
  }
  .order-section .form-prices-block {
    gap: 15px;
  }
}

@media screen and (min-width: 1280px) {
  .order-wrapper {
    gap: 240px;
  }
  .order-title {
    max-width: 510px;
    font-size: 35px;
    line-height: 1.14;
  }
  .order-product-wrapper {
    max-width: 78px;
  }
  .order-header-block {
    gap: 45px;
  }
  .order-header-block::after {
    width: 123px;
    height: 90px;
    top: -13px;
    right: 445px;
  }
  .order-form .form-input {
    width: 355px;
  }
  .order-form .form-button {
    max-width: 380px;
    top: 95px;
    padding: 18px;
  }
  .order-form .form-inputs-block {
    left: 125px;
    top: 95px;
  }
}
/*-------- effects section ------- */

.effects-section {
  padding-top: 38px;
  background-color: #f2f4f3;
}

.effects-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.effects-swiper {
  width: 100%;
  text-align: center;
  border-radius: 17.379px;
  background: #fff;
  box-shadow: 0px 3.476px 8.689px 0px rgba(0, 0, 0, 0.12);
  padding: 25px 10px;
  margin-bottom: 43px;
}

.effects-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.06;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
  text-align: left;
}

.effects-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.effects-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.46;
  text-align: left;
}

.effects-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.progress-bar-container {
  border-radius: 4.345px;
  background-color: #ccc;
  box-shadow: 0px 3.476px 3.476px 0px rgba(0, 0, 0, 0.25) inset;
  position: relative;
  width: 100%;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 4px;
}

.progress-line {
  position: absolute;
  width: 10%;
  height: 8px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  border-radius: 4px;
}

.progress-thumb {
  position: absolute;
  top: -9px;
  left: 8%;
  width: 24px;
  height: 24px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: left 0.3s ease;
  gap: 2px;
  z-index: 1;
}

.progress-thumb:active {
  cursor: grabbing;
}

.progress-icon {
  background-color: #fff;
  width: 2px;
  height: 10px;
  border-radius: 10px;
}

.progress-markers {
  position: absolute;
  width: 100%;
  display: flex;
  top: -6px;
  left: 25px;
  justify-content: space-between;
}

.marker {
  width: 3px;
  height: 18px;
  background-color: #ccc;
  border-radius: 3px;
  position: absolute;
}

.week-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.week-btn {
  outline: transparent;
  width: 56px;
  height: 25px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
  line-height: 1;
}

.week-btn.active {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  color: #fff;
  border: 1px solid #0d7c75;
}

.effects-get {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-bottom: 43px;
  border-bottom: 1px solid #ccc;
}
.effects-get-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.effects-get-title .accent {
  white-space: nowrap;
}

@media screen and (min-width: 380px) {
  .effects-get-title {
    font-size: 27px;
  }
}

.composition-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
}

.effects-get-title .accent,
.composition-title .accent {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.effects-get-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.effects-product-wrapper {
  max-width: 93px;
  position: relative;
}

.effects-product-wrapper img {
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.5));
}

.effects-button {
  padding: 12px 15px;
  width: 100%;
}

.effects-button.desk {
  display: none;
}

@media screen and (min-width: 480px) {
  .effects-title {
    font-size: 24px;
  }
  .effects-get-title {
    font-size: 26px;
  }
}

@media screen and (min-width: 640px) {
  .effects-section {
    padding-top: 40px;
  }
  .effects-wrapper {
    flex-direction: row;
    gap: 10px;
  }
  .effects-swiper {
    max-width: 320px;
  }
  .effects-get {
    padding-bottom: 0;
    border-bottom: none;
  }
  .effects-product-wrapper {
    max-width: 110px;
    flex-shrink: 0;
  }
  .effects-get {
    gap: 10px;
  }
  .effects-swiper {
    margin-bottom: 0;
  }
  .effects-button {
    font-size: 16px;
  }
  .effects-product-wrapper::after {
    content: '';
    background: url(../images/recomended.png);
    background-size: 100% 100%;
    position: absolute;
    width: 80px;
    height: 58px;
    top: -40px;
    left: 70px;
    animation: none;
  }
}

@media screen and (min-width: 768px) {
  .effects-section {
    padding-top: 60px;
  }
  .effects-wrapper {
    gap: 22px;
  }
  .effects-get-title {
    font-size: 34px;
  }
  .effects-product-wrapper {
    max-width: 140px;
  }
  .effects-button {
    font-size: 18px;
  }
  .effects-swiper {
    max-width: 360px;
  }
  .progress-markers {
    gap: 91px;
  }
  .effects-title {
    font-size: 24px;
  }
  .effects-product-wrapper::after {
    width: 110px;
    height: 80px;
    top: -40px;
    left: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .effects-section {
    padding-top: 90px;
  }
  .effects-wrapper {
    border-radius: 17.379px;
    background: #fff;
    box-shadow: 0px 3.476px 8.689px 0px rgba(0, 0, 0, 0.12);
    padding: 30px 20px;
    justify-content: space-between;
    position: relative;
  }
  .effects-swiper {
    max-width: 345px;
    text-align: center;
    border-radius: 0;
    background: none;
    box-shadow: none;
    margin-bottom: 0;
    padding: 0;
  }
  .effects-get-title {
    font-size: 40px;
  }
  .effects-product-wrapper {
    position: absolute;
    max-width: 200px;
    top: -24px;
    left: 405px;
  }
  .effects-get-content {
    max-width: 350px;
  }
  .progress-markers {
    gap: 94px;
  }
  .effects-item {
    font-size: 18px;
  }

  .effects-product-wrapper::after {
    width: 150px;
    height: 110px;
    top: -43px;
    left: 98px;
  }
  .effects-button.desk {
    display: block;
    padding: 19px 15px 17px 15px;
    max-width: 375px;
  }
  .effects-button.mob {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .effects-section {
    padding-top: 156px;
  }
  .effects-wrapper {
    padding: 40px 23px 40px 45px;
  }
  .effects-title {
    font-size: 27px;
    margin-bottom: 30px;
  }
  .effects-get-title {
    font-size: 50px;
  }
  .effects-get-content {
    max-width: 430px;
    gap: 55px;
  }
  .effects-button {
    font-size: 20px;
  }
  .effects-product-wrapper {
    max-width: 232px;
    top: -51px;
    left: 525px;
  }
  .effects-swiper {
    max-width: 430px;
  }
  .effects-list {
    gap: 14px;
  }
  .effects-item {
    gap: 20px;
  }
  .week-btn {
    width: 79px;
    font-size: 16px;
  }
  .progress-markers {
    gap: 119px;
  }
  .effects-product-wrapper::after {
    top: -42px;
    left: 130px;
  }
}

/*----- composition section ----- */
.composition-section {
  padding-top: 37px;
  padding-bottom: 18px;
  background-image: url('../images/background-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.composition-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.composition-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 27px;
}

.composition-capsule-wrapper {
  max-width: 175px;
  margin-bottom: 42px;
}

.composition-list {
  display: flex;
  flex-direction: column;
}

.composition-item:not(:first-child) {
  padding-top: 21px;
}

.composition-item:not(:last-child) {
  padding-bottom: 19px;
  border-bottom: 1px solid #fff;
}

.composition-header-block {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 17px;
}

.composition-image-wrapper {
  max-width: 78px;
}

.composition-headline {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.composition-text {
  line-height: 1.46;
}

.composition-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

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

@media screen and (min-width: 480px) {
  .composition-title {
    font-size: 29px;
  }
  .composition-headline {
    font-size: 20px;
  }
  .composition-text {
    font-size: 18px;
  }
}

@media screen and (min-width: 640px) {
  .composition-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .composition-title {
    font-size: 29px;
  }
  .composition-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    column-gap: 15px;
  }
  .composition-item {
    max-width: 295px;
  }
  .composition-item:nth-child(2) {
    padding-top: 0;
    padding-bottom: 19px;
  }
  .composition-item:nth-child(3) {
    padding-bottom: 17px;
  }
}

@media screen and (min-width: 768px) {
  .composition-title {
    font-size: 35px;
  }
  .composition-section {
    padding-top: 60px;
    padding-bottom: 190px;
  }
  .composition-capsule-wrapper {
    margin-bottom: 0;
    padding-top: 50px;
  }
  .composition-list {
    column-gap: 38px;
  }
  .composition-item {
    max-width: 350px;
  }
  .composition-image-wrapper {
    max-width: 85px;
  }
  .composition-item:nth-child(2) {
    padding-bottom: 28px;
  }

  .composition-item {
    max-width: 267px;
  }
  .composition-item:first-child {
    position: absolute;
    top: 145px;
    left: 0;
  }

  .composition-item:first-child .composition-image-wrapper,
  .composition-item:nth-child(2) .composition-image-wrapper {
    order: 1;
  }

  .composition-item:nth-child(2) {
    position: absolute;
    top: 378px;
    left: 0;
  }

  .composition-item:nth-child(2) {
    padding-top: 0;
  }

  .composition-item:nth-child(3) {
    padding-top: 0;
    position: absolute;
    top: 140px;
    right: 0;
  }
  .composition-item:nth-child(4) {
    padding-top: 0;
    position: absolute;
    top: 360px;
    right: 0;
  }
  .composition-item:nth-child(5) {
    padding-top: 0;
    position: absolute;
    bottom: -140px;
    right: 140px;
    width: 100%;
    max-width: 60%;
  }
  .composition-item:nth-child(3) {
    padding-bottom: 31px;
  }
}

@media screen and (min-width: 1024px) {
  .composition-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .composition-title {
    text-align: left;
    font-size: 40px;
    max-width: 400px;
    margin-bottom: 0;
  }
  .composition-wrapper {
    align-items: flex-start;
    flex-direction: row;
  }
  .composition-capsule-wrapper {
    padding-top: 0;
    max-width: 200px;
  }
  .composition-header-block {
    margin-bottom: 0;
    gap: 22px;
  }
  .composition-item {
    max-width: 350px;
  }
  .composition-item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .composition-image-wrapper {
    max-width: 75px;
  }

  .composition-item:first-child {
    top: 192px;
    max-width: 360px;
  }
  .composition-item:first-child .composition-header-block {
    gap: 40px;
  }
  .composition-item:nth-child(2) .composition-header-block {
    gap: 56px;
  }
  .composition-item:nth-child(2) {
    top: 360px;
    max-width: 354px;
  }
  .composition-item:first-child .composition-text,
  .composition-item:nth-child(2) .composition-text {
    padding-right: 108px;
  }
  .composition-item:nth-child(3) {
    top: 10px;
    right: 0;
  }
  .composition-item:nth-child(3) .composition-text,
  .composition-item:nth-child(4) .composition-text,
  .composition-item:nth-child(5) .composition-text {
    padding-left: 99px;
  }
  .composition-item:nth-child(4) {
    top: 178px;
    right: 0;
  }
  .composition-item:nth-child(5) {
    top: 360px;
    right: 0;
    max-width: 350px;
  }
  .composition-item:first-child::before,
  .composition-item:nth-child(2)::before {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 19px;
    left: 365px;
  }
  .composition-item:first-child::after,
  .composition-item:nth-child(2)::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 16px;
    left: 364px;
    animation: pulse-dot 1.5s infinite ease-in-out;
  }
  .composition-item:nth-child(3)::before,
  .composition-item:nth-child(4)::before,
  .composition-item:nth-child(5)::before {
    content: '';
    width: 70px;
    height: 1px;
    background-color: #fff;
    position: absolute;
  }
  .composition-item:nth-child(3)::before {
    top: 37px;
    right: 372px;
  }
  .composition-item:nth-child(3)::after,
  .composition-item:nth-child(4)::after,
  .composition-item:nth-child(5)::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 33px;
    right: 372px;
    animation: pulse-dot 1.5s infinite ease-in-out;
  }
  .composition-item:nth-child(4)::before {
    width: 50px;
    top: 33px;
    right: 373px;
  }
  .composition-item:nth-child(4)::after {
    top: 29px;
  }
  .composition-item:nth-child(5)::before {
    width: 50px;
    top: 20px;
    right: 373px;
  }
  .composition-item:nth-child(5)::after {
    top: 16px;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 1280px) {
  .composition-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .composition-title {
    font-size: 50px;
    max-width: 515px;
  }
  .composition-wrapper {
    gap: 0;
  }
  .composition-capsule-wrapper {
    max-width: 240px;
  }
  .composition-headline {
    font-size: 22px;
    line-height: 1.22;
  }
  .composition-text {
    font-size: 18px;
    line-height: 1.5;
  }
  .composition-image-wrapper {
    max-width: 100px;
  }
  .composition-item:nth-child(4) .composition-image-wrapper {
    max-width: 90px;
  }
  .composition-item {
    max-width: 445px;
  }
  .composition-item:first-child .composition-header-block {
    gap: 75px;
  }
  .composition-item:nth-child(2) .composition-header-block {
    gap: 88px;
  }
  .composition-item:first-child,
  .composition-item:nth-child(4) {
    top: 228px;
    max-width: 435px;
  }
  .composition-item:nth-child(2) {
    top: 430px;
    max-width: 435px;
  }
  .composition-item:nth-child(3) {
    top: 33px;
  }
  .composition-item:nth-child(5) {
    top: 440px;
    max-width: 440px;
  }
  .composition-item:nth-child(3) .composition-text,
  .composition-item:nth-child(5) .composition-text {
    padding-left: 120px;
  }

  .composition-item:nth-child(4) .composition-text {
    padding-left: 114px;
  }

  .composition-item:first-child::before,
  .composition-item:nth-child(2)::before {
    width: 90px;
    top: 32px;
    left: 457px;
  }
  .composition-item:first-child::after,
  .composition-item:nth-child(2)::after {
    top: 29px;
    left: 451px;
  }
  .composition-item:nth-child(3)::before,
  .composition-item:nth-child(5)::before {
    width: 80px;
  }
  .composition-item:nth-child(3)::before {
    width: 80px;
    right: 463px;
  }
  .composition-item:nth-child(4)::before,
  .composition-item:nth-child(5)::before {
    width: 70px;
  }

  .composition-item:nth-child(4)::before,
  .composition-item:nth-child(5)::before {
    right: 460px;
  }

  .composition-item:nth-child(3)::after {
    right: 460px;
  }

  .composition-item:nth-child(4)::after,
  .composition-item:nth-child(5)::after {
    right: 455px;
  }
}
/* ------ reviews section ----- */
.reviews-section {
  padding-top: 26px;
  padding-bottom: 39px;
  background-color: #f2f4f3;
}

.reviews-title {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
}

.reviews-images-list {
  max-width: 300px;
  padding: 0 20px;
  height: 238px;
  margin: 0 auto 60px;
}

.reviews-images-item {
  position: relative;
  max-width: 125px;
  border-radius: 10px;
  background-color: #000;
  transform: rotate(-12.539deg);
  z-index: 2;
}

.reviews-images-item::before {
  content: '';
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  z-index: -1;
}

.reviews-images-item::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -15px;
}

.reviews-images-item:first-child {
  top: -14px;
}

.reviews-images-item:nth-child(2) {
  max-width: 110px;
  transform: rotate(11.48deg);
  left: 85px;
  top: -80px;
}
.reviews-images-item:nth-child(3) {
  max-width: 88px;
  transform: rotate(16.274deg);
  top: -253px;
  left: 166px;
}
.reviews-images-item:nth-child(4) {
  max-width: 105px;
  transform: rotate(-5.048deg);
  top: -211px;
  left: -11px;
}
.reviews-images-item:nth-child(5) {
  max-width: 83px;
  transform: rotate(7.092deg);
  top: -313px;
  right: -161px;
  z-index: 3;
}
.reviews-images-item:nth-child(6) {
  max-width: 60px;
  transform: rotate(0.376deg);
  top: -331px;
  right: -113px;
}

.reviews-content {
  display: flex;
  gap: 15px;
}

.user-ava {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 46.054px;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.user-information {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0d7c75;
  bottom: 10px;
  top: auto;
  z-index: 20;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 30px;
}

.swiper-button-prev {
  left: 15%;
}

.swiper-button-next {
  right: 15%;
}
.swiper.reviews-swiper {
  padding-bottom: 80px;
}

.swiper-pagination {
  position: absolute;
  bottom: 8px !important;
  left: 3px !important;
}

.reviews-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.reviews-content:not(:first-child) {
  padding-top: 20px;
}

.swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
}

.form-footer-sale {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12.352px 12.352px 0px 0px;
  background: linear-gradient(91deg, #0d7c75 1.38%, #319da2 60.64%);
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  padding: 6px;
  font-size: 14px;
}

.form-prices-block.footer-form {
  margin-top: 30px;
}

.footer {
  background-color: #f2f4f3;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.promo-section.footer-promo {
  padding: 34px 0 33px;
}

@media screen and (min-width: 480px) {
  .reviews-title {
    font-size: 29px;
  }
  .reviews-images-list {
    max-width: 300px;
    height: 330px;
  }

  .reviews-images-item:first-child {
    max-width: 145px;
  }

  .reviews-images-item:nth-child(2) {
    max-width: 130px;
    transform: rotate(11.48deg);
    left: 85px;
    top: -80px;
  }
  .reviews-images-item:nth-child(3) {
    max-width: 108px;
    transform: rotate(16.274deg);
    top: -285px;
    left: 185px;
  }
  .reviews-images-item:nth-child(4) {
    max-width: 125px;
    transform: rotate(-5.048deg);
    top: -211px;
    left: -18px;
  }
  .reviews-images-item:nth-child(5) {
    max-width: 103px;
    transform: rotate(7.092deg);
    top: -342px;
    right: -170px;
    z-index: 3;
  }
  .reviews-images-item:nth-child(6) {
    max-width: 80px;
    transform: rotate(0.376deg);
    top: -367px;
    right: -118px;
  }
  .user-name {
    font-size: 20px;
  }
  .reviews-text {
    font-size: 18px;
  }
  .form-footer-sale {
    font-size: 16px;
  }
}

@media screen and (min-width: 640px) {
  .promo-section.footer-promo {
    padding: 40px 0 160px;
  }
  .reviews-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .reviews-title {
    font-size: 29px;
    line-height: 1.77;
  }

  .reviews-images-list {
    max-width: 350px;
    height: 410px;
  }

  .reviews-images-item:first-child {
    max-width: 165px;
  }

  .reviews-images-item:nth-child(2) {
    max-width: 150px;
    transform: rotate(11.48deg);
    left: 110px;
    top: -80px;
  }
  .reviews-images-item:nth-child(3) {
    max-width: 138px;
    transform: rotate(16.274deg);
    top: -315px;
    left: 185px;
  }
  .reviews-images-item:nth-child(4) {
    max-width: 145px;
    transform: rotate(-5.048deg);
    top: -255px;
    left: -18px;
  }
  .reviews-images-item:nth-child(5) {
    max-width: 123px;
    transform: rotate(7.092deg);
    top: -385px;
    right: -195px;
    z-index: 3;
  }
  .reviews-images-item:nth-child(6) {
    max-width: 100px;
    transform: rotate(0.376deg);
    top: -397px;
    right: -131px;
  }
  .form-footer-sale {
    display: none;
  }
  .form-prices-block.footer-form {
    margin-top: 0;
  }
  .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
  }

  .swiper-pagination {
    bottom: 7px !important;
    left: 4px !important;
  }
}

@media screen and (min-width: 768px) {
  .promo-section.footer-promo {
    padding: 60px 0 160px;
  }
  .reviews-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .reviews-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 30px;
  }
  .reviews-images-list {
    flex-shrink: 0;
    order: 1;
  }
  .reviews-swiper {
    max-width: 345px;
  }
  .swiper.reviews-swiper {
    margin: 0;
  }
  .reviews-images-list {
    margin: 0;
  }
  .reviews-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .user-name {
    font-size: 20px;
  }
  .swiper-pagination {
    bottom: 6px !important;
    left: 4px !important;
  }

  .reviews-images-item:first-child {
    top: -84px;
  }

  .reviews-images-item:nth-child(2) {
    top: -100px;
  }
  .reviews-images-item:nth-child(3) {
    top: -360px;
  }
  .reviews-images-item:nth-child(4) {
    top: -245px;
  }
  .reviews-images-item:nth-child(5) {
    top: -385px;
  }
  .reviews-images-item:nth-child(6) {
    top: -390px;
  }
}
@media screen and (min-width: 1024px) {
  .promo-section.footer-promo {
    padding: 80px 0 130px;
  }
  .reviews-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .reviews-title {
    font-size: 43px;
  }
  .reviews-wrapper {
    gap: 20px;
  }
  .reviews-swiper {
    max-width: 490px;
  }
  .reviews-images-item:first-child {
    max-width: 200px;
    top: -30px;
  }

  .reviews-images-item:nth-child(2) {
    max-width: 185px;
    left: 142px;
    top: -97px;
  }
  .reviews-images-item:nth-child(3) {
    max-width: 160px;
    top: -399px;
    left: 280px;
  }
  .reviews-images-item:nth-child(4) {
    max-width: 180px;
    top: -325px;
    left: -5px;
  }
  .reviews-images-item:nth-child(5) {
    max-width: 150px;
    top: -495px;
    right: -274px;
    z-index: 3;
  }
  .reviews-images-item:nth-child(6) {
    max-width: 100px;
    top: -540px;
    right: -180px;
  }
  .footer-copy {
    font-size: 16px;
  }
  .footer {
    padding: 25px 0;
  }
  .user-information {
    gap: 10px;
  }
  .swiper-pagination {
    bottom: 4px !important;
    left: 2px !important;
  }
  .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .promo-section.footer-promo {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .reviews-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .reviews-swiper {
    max-width: 600px;
  }
  .reviews-title {
    font-size: 50px;
    margin-bottom: 70px;
  }
  .user-name {
    font-size: 22px;
  }
  .reviews-text {
    font-size: 18px;
  }
  .reviews-images-item:first-child {
    max-width: 250px;
  }

  .reviews-images-item:nth-child(2) {
    max-width: 220px;
    left: 167px;
    top: -182px;
  }
  .reviews-images-item:nth-child(3) {
    max-width: 180px;
    top: -500px;
    left: 317px;
  }
  .reviews-images-item:nth-child(4) {
    max-width: 215px;
    top: -447px;
    left: -39px;
  }
  .reviews-images-item:nth-child(5) {
    max-width: 170px;
    top: -656px;
    right: -325px;
    z-index: 3;
  }
  .reviews-images-item:nth-child(6) {
    max-width: 122px;
    top: -689px;
    right: -230px;
  }
  .reviews-wrapper {
    gap: 105px;
  }
  .reviews-images-item:first-child {
    top: -49px;
  }
  .footer-copy {
    font-size: 18px;
  }
}

/*------ Popup ----- */

.popup-image-wrapper {
  max-width: 160px;
  display: none;
}

.popup-title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(90deg, #e83351 0%, #841212 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 12.352px;
  background-color: #fff;
  box-shadow: 0px 2.47px 6.176px 0px rgba(0, 0, 0, 0.12);
  padding: 20px 15px;
  position: relative;
}

.popup .form {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.ever-popup__inner {
  max-width: 290px !important;
}

.popup .form-prices-block {
  gap: 10px;
}
.popup .new-price-block {
  padding-right: 10px;
}
@media screen and (min-width: 640px) {
  .popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-radius: 12.352px;
    background-color: #fff;
    box-shadow: 0px 2.47px 6.176px 0px rgba(0, 0, 0, 0.12);
    padding: 40px 30px;
    position: relative;
  }
  .popup-title {
    font-size: 24px;
  }
  .popup-image-wrapper {
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.5));
  }
  .ever-popup .form {
    border-radius: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .ever-popup .form-inputs-block {
    gap: 20px;
    margin-bottom: 20px;
  }
  .ever-popup .form-prices-block {
    margin-bottom: 20px;
  }

  .popup-image-wrapper::after {
    width: 65px;
    height: 35px;
    font-size: 20px;
    top: -5px;
  }
  .popup-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .ever-popup__inner {
    max-width: 580px !important;
  }
  .popup .form-prices-block {
    gap: 13px;
  }
  .popup .new-price-block {
    padding-right: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .ever-popup .form {
    max-width: 360px;
  }
  .ever-popup__inner {
    max-width: 640px !important;
  }
}
@media screen and (min-width: 1280px) {
  .popup-title {
    font-size: 28px;
  }
  .ever-popup__inner {
    width: 650px !important;
  }
}

.product-name-image-wrapper {
  display: none;
}

@media screen and (min-width: 1570px) {
  .action-wrapper::before,
  .effects-wrapper::before,
  .reasons-header-block::before {
    content: '';
    width: 100px;
    height: 696px;
    position: absolute;
    top: -70px;
    left: -150px;
    background: url('../images/name.png');
    background-size: 100% 100%;
  }

  .reasons-header-block::before {
    top: -50px;
  }

  .effects-wrapper::before {
    top: -100px;
  }

  .action-wrapper::after,
  .reviews-wrapper::after,
  .reasons-header-block::after {
    content: '';
    width: 100px;
    height: 696px;
    position: absolute;
    bottom: -750px;
    right: -150px;
    background: url('../images/name.png');
    background-size: 100% 100%;
  }
  .reviews-wrapper::after {
    bottom: -50px;
  }
  .reasons-header-block::after {
    bottom: -500px;
  }
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 20, 23, 0.4);
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 2;
}

.header-content.open .backdrop {
  visibility: visible;
  opacity: 1;
}

.nowrap {
  white-space: nowrap;
}

.footer-wrapper-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  .footer-wrapper-text {
    font-size: 15px;
  }
}
