@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBlack.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraBold.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaLight.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaMedium.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaSemiBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("../fonts/LufgaThin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
:root {
  --font-family: "Lufga", sans-serif;
}
:root {
  --primary-primary-800: #3b269d;
  --primary-primary-600: #6432ff;
  --primary-primary-200: #d2cde8;
  --secondary-blue: #1badff;
  --secondary-pink: #e93fe2;
  --text-primary: #051f2e;
  --text-secondary: #375262;
  --text-extra: #a4afb5;
  --text-white: #fff;
  --dark-shades-900: #051f2e;
  --dark-shades-800: #0e2b3b;
  --dark-shades-400: #2c688a;
  --light-shades-300: #e1e7eb;
  --light-shades-200: #f5f7fa;
  --light-shades-white: #fff;
  --gradient-primary: linear-gradient(135.98deg, #6b83f4 0%, #a862eb 100%);
  --gradient-secondary: linear-gradient(90deg, #6835ff 0%, #1aadff 100%);
  --gradient-tertiary: linear-gradient(128.26deg, #a3deff 0%, #fdadf2 100%);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

body {
  background: #ffffff1a;
  height: 100%;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

h1 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 64px;
  line-height: 128%;
  text-align: center;
  color: var(--text-primary);
}

h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 45px;
  line-height: 133%;
  text-align: center;
  color: var(--text-primary);
}

h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  color: var(--primary-primary-800);
}

h4 {
  font-family: var(--font-family);
  font-size: 19px;
  font-weight: 400;
  line-height: 168%;
  text-align: left;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-secondary);
}

.wrapper-product {
  background: var(--light-shades-white);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wrapper-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 82.75%);
  background: url("../img/product-background.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1310px) {
  .wrapper-product::before {
    height: calc(100% - 83%);
  }
}
@media (max-width: 1145px) {
  .wrapper-product::before {
    height: calc(100% - 84%);
  }
}
/* Product-title section */

.product-title-wrapper {
  display: flex;
  flex-direction: column;
  padding: 86px 0 124px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.product-title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.product-title-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.product-title-text p {
  font-size: 19px;
  line-height: 168%;
  text-align: center;
  color: var(--text-primary);
}
.product-title-button {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 11px 0;
  max-width: 235px;
  width: 100%;
  background: var(--primary-primary-600);
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 168%;
  letter-spacing: 0.02em;
  color: var(--text-white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product-title-button:hover {
  background-color: var(--primary-primary-800);
}
.product-title-button:active {
  background-color: var(--primary-primary-600);
}

/* seo-traffic section */

.seo-traffic-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 84px 120px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.seo-traffic-title {
  display: flex;
  justify-content: center;
}
.seo-traffic-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.seo-traffic-block-1,
.seo-traffic-block-2,
.seo-traffic-block-3,
.seo-traffic-block-4 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 12px;
}
.seo-traffic-block-1 {
  background: url(../img/seo-traffic-background-1.png) no-repeat center;
  background-size: cover;
}
.seo-traffic-block-2 {
  background: url(../img/seo-traffic-background-2.png) no-repeat center;
  background-size: cover;
}
.seo-traffic-block-3 {
  background: url(../img/seo-traffic-background-3.png) no-repeat center;
  background-size: cover;
}
.seo-traffic-block-4 {
  background: url(../img/seo-traffic-background-4.png) no-repeat center;
  background-size: cover;
}
.seo-traffic-block-top {
  display: flex;
  gap: 12px;
  align-items: center;
}
.seo-traffic-block-bottom {
  display: flex;
  max-width: 500px;
  width: 100%;
}
/* Features section */
#features-section {
  background: var(--light-shades-200);
}
.features-wrapper {
  display: flex;
  gap: 62px;
  padding: 100px 0 100px 84px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
.features-left {
  display: flex;
  flex-direction: column;
  max-width: 624px;
  width: 100%;
}
.features-left-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.features-left-title h2 {
  text-align: left;
}
.features-left-text {
  display: flex;
}
.features-left-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.features-left-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--text-primary);
}
.features-left-line {
    display: flex;
    width: 100%;
    border-top: 1.5px solid var(--light-shades-300);
    margin: 40px 0;
}
.features-right-img-mobile {
  display: none;
}
.features-right {
  margin-right: -150px;
}
.features-right-img {
  max-width: 100%;
}

/* Reviews section */
#reviews-section {
  background: url(../img/reviews-background.png) no-repeat center;
  background-size: 100% 100%;
}
.reviews-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 100px 0 116px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.reviews-title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  max-width: 888px;
  width: 100%;
}
.reviews-title-text p {
    text-align: center;
}


.reviews-slider {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.reviews-slider-item {
    display: flex;
    align-items: center;
    border-radius: 12px;
    height: 440px;
}
.reviews-slider-item-block {
  display: flex;
  flex-direction: column;
  padding: 26.6px 32px 32px;
  box-shadow: 0 12px 34px 0 rgba(16, 15, 53, 0.1);
  background: var(--text-white);
  border-radius: 12px;
}
.reviews-slider-item img {
  margin-bottom: 16px;
}
.reviews-slider-item-text {
  margin-bottom: 20px;
  color: var(--text-primary);
}
.reviews-slider-item-author {
  font-size: 19px;
  line-height: 168%;
  color: var(--text-primary);
}
.reviews-slider .slick-list {
  overflow: visible !important;
}

.slick-track {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.reviews-slider .slick-arrow {
  position: absolute;
  font-size: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1.5px solid var(--text-primary);
  border-radius: 8px;
  z-index: 1;
}

.reviews-slider .slick-arrow.slick-prev {
  left: 42.4%;
  top: 95%;
  background: url(../icon/arrow-prev.svg) no-repeat center;
  cursor: pointer;
}

.reviews-slider .slick-arrow.slick-next {
  right: 42.4%;
  top: 95%;
  background: url(../icon/arrow-next.svg) no-repeat center;
  cursor: pointer;
}

@media (max-width: 1250px) {
    .reviews-slider .slick-arrow.slick-prev {
  left: 41%;
  top: 95%;
  background: url(../icon/arrow-prev.svg) no-repeat center;
  cursor: pointer;
}

.reviews-slider .slick-arrow.slick-next {
  right: 41%;
  top: 95%;
  background: url(../icon/arrow-next.svg) no-repeat center;
  cursor: pointer;
}
} 
.reviews-slider .slick-arrow:hover {
  border: 1.5px solid #4c34c2;
}

.reviews-slider .slick-arrow.slick-prev:hover {
  background: url(../icon/arrow-prev-hover.svg) no-repeat center;
}

.reviews-slider .slick-arrow.slick-next:hover {
  background: url(../icon/arrow-next-hover.svg) no-repeat center;
}

.reviews-slider .slick-arrow:active {
  border: 1.5px solid #2e1d80;
}

.reviews-slider .slick-arrow.slick-prev:active {
  background: url(../icon/arrow-prev-active.svg) no-repeat center;
}

.reviews-slider .slick-arrow.slick-next:active {
  background: url(../icon/arrow-next-active.svg) no-repeat center;
}

.reviews-slider .slick-dots {
  display: flex;
  margin-top: 20px;
  gap: 8px;
  justify-content: center;
}

.reviews-slider .slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  outline: none;
  border: 1.5px solid var(--dark-shades-900);
  background: transparent;
  cursor: pointer;
}

.reviews-slider .slick-dots li button:hover {
  background-color: #4c34c2;
  border: none;
}

.reviews-slider .slick-dots li button:active {
  background-color: #2e1d80;
  border: none;
}

.reviews-slider .slick-dots .slick-active button {
  background-color: var(--dark-shades-900);
  border: none;
}
/* Start section */
#start-section {
  background: url(../img/background-start.png) no-repeat center;
  background-size: cover;
}

.start-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.start-wrapper-discription {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.start-wrapper-discription h2,
.start-wrapper-discription p {
  text-align: center;
  color: var(--text-white);
}

.start-wrapper-button {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  max-width: 243px;
  width: 100%;
  background-color: var(--light-shades-white);
  border-radius: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 168%;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 auto;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}
.start-wrapper-button:hover {
    background-color: var(--text-primary);
    color: var(--text-white);
}
.start-wrapper-button:active {
    background-color: var(--light-shades-white);
    color: var(--text-primary);
}


/* Breakpoint */

@media (max-width: 1024px) {
    h1 {
    font-size: 45px;
    line-height: 133%;
    }
  h2 {
    font-size: 36px;
    line-height: 144%;
  }

  h3 {
    font-size: 20px;
    line-height: 180%;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--text-primary);
  }

  .wrapper-product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 83%);
    background: url("../img/product-background.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  @media (max-width: 1020px) {
    .wrapper-product::before {
      height: calc(100% - 83%);
    }
  }
   @media (max-width: 1008px) {
    .wrapper-product::before {
      height: calc(100% - 83%);
    }
  }
     @media (max-width: 977px) {
    .wrapper-product::before {
      height: calc(100% - 84%);
    }
  }
      @media (max-width: 900px) {
    .wrapper-product::before {
      height: calc(100% - 84.5%);
    }
  }
     @media (max-width: 810px) {
    .wrapper-product::before {
      height: calc(100% - 85.76%);
    }
  }
  /* Product-title section */

  .product-title-wrapper {
    padding: 64px 0 80px;
    max-width: 1024px;
    width: 100%;
  }

  /* seo-traffic section */

  .seo-traffic-wrapper {
    padding: 64px 84px 80px;
    max-width: 1024px;
    width: 100%;
  }

  .seo-traffic-block-1 {
    background: url(../img/seo-traffic-background-1.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-2 {
    background: url(../img/seo-traffic-background-2.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-3 {
    background: url(../img/seo-traffic-background-3.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-4 {
    background: url(../img/seo-traffic-background-4.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-top {
    gap: 12px;
  }
  .seo-traffic-block-top img {
    max-width: 26px;
    width: 100%;
  }
  .seo-traffic-block-bottom {
    max-width: 350px;
    width: 100%;
  }
  /* Features section */

  .features-wrapper {
    gap: 24px;
    padding: 80px 0 80px 84px;
    max-width: 1024px;
    width: 100%;
  }
  .features-left {
    max-width: 636px;
    width: 100%;
  }
  .features-left-title {
    margin-bottom: 16px;
  }

  .features-left-text {
      max-width: 560px;
      width: 100%;
  }

  .features-left-list {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 16px;
}

  .features-right {
    margin-right: -420px;
  }

  /* Reviews section */
  #reviews-section {
    background: url(../img/reviews-background.png) no-repeat center;
    background-size: 100% 100%;
  }
 
  .reviews-wrapper {
    padding: 64px 0 96px;
    max-width: 1024px;
    width: 100%;
  }

  .reviews-slider {
    max-width: 1024px;
    width: 100%;
  }


  .reviews-slider-item-block {
    padding: 20px 32px 32px;
  }

  .reviews-slider-item-text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 200%;
    color: var(--text-primary);
  }
  .reviews-slider-item-author {
    font-size: 16px;
    line-height: 175%;
    color: var(--text-primary);
  }
  .reviews-slider .slick-list {
    overflow: hidden;
  }

  .reviews-slider .slick-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .reviews-slider .slick-arrow.slick-prev {
    left: 40%;
    top: 95%;
    background: url(../icon/arrow-prev.svg) no-repeat center;
    cursor: pointer;
  }

  .reviews-slider .slick-arrow.slick-next {
    right: 40%;
    top: 95%;
    background: url(../icon/arrow-next.svg) no-repeat center;
    cursor: pointer;
  }

  .reviews-slider .slick-dots {
    display: flex;
    margin-top: 0px;
    gap: 8px;
    justify-content: center;
  }

  /* Start section */
  #start-section {
    background: url(../img/background-start-tab.png) no-repeat center;
    background-size: cover;
  }

  .start-wrapper {
    max-width: 1024px;
    width: 100%;
    padding: 64px 0 80px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 43px;
    line-height: 133%;
  }

  h2 {
    font-size: 36px;
    line-height: 144%;
  }

  h3 {
    font-size: 19px;
    line-height: 168%;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--text-secondary);
  }

  .wrapper-product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 89.2%);
    background: url("../img/product-background-mobile.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Product-title section */

  .product-title-wrapper {
    padding: 32px 64px 72px;
  }
  .product-title {
    margin-bottom: 16px;
  }

  .product-title-text {
    margin-bottom: 32px;
    text-align: left;
  }
  .product-title-text p {
    font-size: 16px;
    line-height: 175%;
    text-align: center;
    color: var(--text-secondary);
  }
  .product-title-button {
    font-size: 16px;
    line-height: 137%;
  }

  /* seo-traffic section */

  .seo-traffic-wrapper {
    gap: 32px;
    padding: 40px 64px 64px;
    max-width: 1024px;
    width: 100%;
  }

  .seo-traffic-title h2 {
      text-align: center;
  }

  .seo-traffic-blocks {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
  }
  .seo-traffic-block-1,
  .seo-traffic-block-2,
  .seo-traffic-block-3,
  .seo-traffic-block-4 {
    gap: 10px;
    padding: 20px;
  }
  .seo-traffic-block-1 {
    background: url(../img/seo-traffic-background-1-mobile.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-2 {
    background: url(../img/seo-traffic-background-2-mobile.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-3 {
    background: url(../img/seo-traffic-background-3-mobile.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-4 {
    background: url(../img/seo-traffic-background-4-mobile.png) no-repeat center;
    background-size: cover;
  }
  .seo-traffic-block-top {
    gap: 8px;
  }
  .seo-traffic-block-top img {
    max-width: 24px;
    width: 100%;
  }
  .seo-traffic-block-bottom {
    max-width: 290px;
    width: 100%;
  }
  .seo-traffic-block-bottom p {
    font-size: 14px;
    line-height: 200%;
    color: var(--text-primary);
  }
  /* Features section */

  .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 64px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .features-left {
    max-width: 100%;
  }
  .features-left-title {
    margin-bottom: 12px;
  }

  .features-left-text {
    display: flex;
  }
  .features-left-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 16px;
  }
  .features-left-line {
      margin: 24px 0;
  }
  .features-right-img {
    display: none;
  }
  .features-right-img-mobile {
    display: block;
    width: 100%;
  }
  .features-right {
    max-width: 100%;
  }

  /* Reviews section */
  #reviews-section {
    background: transparent;
  }
  .reviews-wrapper {
    gap: 32px;
    padding: 40px 64px 56px;
    background: url(../img/reviews-background-mobile.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .reviews-title-text {
    gap: 12px;
  }

  .reviews-title-text h2 {
      text-align: left;
  }
  .reviews-title-text p {
      text-align: left;
  }
  .reviews-slider {
    max-width: 393px;
    width: 100%;
  }

  .reviews-slider-item {
      height: 100%;
  }

  .reviews-slider-item-block {
    padding: 20px 32px 32px;
    box-shadow: 0 12px 34px 0 rgba(16, 15, 53, 0.1);
    background: var(--text-white);
  }

  .reviews-slider-item-block img {
      max-width: 110px;
      width: 100%;
  }

  .reviews-slider-item-author {
    font-size: 16px;
    line-height: 175%;
    color: var(--text-primary);
  }
  .reviews-slider .slick-list {
    overflow: hidden;
    border-radius: 12px;
  }

  .reviews-slider .slick-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .reviews-slider .slick-arrow.slick-prev {
    left: 20%;
    top: 96.2%;
    background: url(../icon/arrow-prev.svg) no-repeat center;
    cursor: pointer;
  }

  .reviews-slider .slick-arrow.slick-next {
    right: 20%;
    top: 96.2%;
    background: url(../icon/arrow-next.svg) no-repeat center;
    cursor: pointer;
  }

  .reviews-slider .slick-dots {
    display: flex;
    margin-top: 52px;
    gap: 8px;
    justify-content: center;
  }

  .reviews-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    outline: none;
    border: 1.5px solid var(--dark-shades-900);
    background: transparent;
    cursor: pointer;
  }

  /* Start section */
  #start-section {
    background: url(../img/background-start.png) no-repeat center;
    background-size: cover;
  }

  .start-wrapper {
    max-width: 393px;
    width: 100%;
    padding: 40px 20px;
    gap: 32px;
  }

  .start-wrapper-button {
    max-width: 100%;
    font-size: 16px;
    line-height: 137%;
  }
}

@media (max-width: 520px) {
    .product-title-wrapper {
    padding: 32px 20px 72px;
    max-width: 393px;
    width: 100%;
  }

    .product-title-button {
    max-width: 100%;
    font-size: 16px;
    line-height: 137%;
  }

    .product-title-text p {
    font-size: 16px;
    line-height: 175%;
    text-align: left;
    color: var(--text-secondary);
  }

    .seo-traffic-wrapper {
    gap: 32px;
    padding: 40px 20px 64px;
    max-width: 1024px;
    width: 100%;
  }

    .seo-traffic-title h2 {
      text-align: left;
  }

    .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
    max-width: 393px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

    .reviews-wrapper {
    gap: 32px;
    padding: 40px 20px 56px;
    width: 100%;
    background: url(../img/reviews-background-mobile.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media (max-width: 378px) {
  .wrapper-product::before {
    height: calc(100% - 89.2%);
  }
}
@media (max-width: 374px) {
  .wrapper-product::before {
    height: calc(100% - 88%);
  }
}

@media (max-width: 354px) {
  .wrapper-product::before {
    height: calc(100% - 88.5%);
  }
}

@media (max-width: 320px) {
  .wrapper-product::before {
    height: calc(100% - 88.7%);
  }
}

