.page {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", "Arial", "sans-serif";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  /*width: 100vw;*/
  width: 100%;
  box-sizing: border-box;
  /*background-color: red;*/
  background: #000000;
}

.page__content {
  margin: 0 auto;
  width: 1280px;
  min-width: 320px;
  background: #000000;
  min-height: 100vh;
  /*border: 9px solid rgb(16, 165, 36);*/
}

.pulse-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  padding: 10px;
  border: none;
  background: #0d76cc;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 180px;
  right: 50px;
  cursor: pointer;
  outline: none;
  z-index: 1000;
  text-decoration: none;
}

/*.pulse-button__icon {
  display: block;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}*/

.pulse-button__text {
  display: block;
  width: 100%;
  font-family: Inter;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  /*opacity: 0;
visibility: hidden;*/
  position: absolute;
  transition: 0.3s;
  margin-top: 1px;
}

.pulse-button:hover .pulse-button__text {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.pulse-button__rings {
  border: 1px solid #0657b4;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  width: auto;
  border-radius: 50%;
  animation-duration: 2s;
  animation-name: pulse_1;
  animation-iteration-count: infinite;
  z-index: -1;
}

.pulse-button__rings:nth-child(2) {
  animation-name: pulse_2;
}

.pulse-button__rings:nth-child(3) {
  animation-name: pulse_3;
}

@keyframes pulse_1 {
  from {
    opacity: 1;
    transform: scale(0.9, 0.9);
  }

  to {
    opacity: 0;
    transform: scale(1.3, 1.3);
  }
}

@keyframes pulse_2 {
  from {
    opacity: 1;
    transform: scale(0.8, 0.8);
  }

  to {
    opacity: 0;
    transform: scale(1.5, 1.5);
  }
}

@keyframes pulse_3 {
  from {
    opacity: 1;
    transform: scale(0.8, 0.8);
  }

  to {
    opacity: 0;
    transform: scale(1.7, 1.7);
  }
}

.pulse-button {
  display: none;
}

.header {
  max-width: 1280px;
  display: block;
  background: #ff0080;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 88px;
}

.header-mobile {
  display: none;
}

.header-mobile__link {
  text-decoration: none;
}

.hamburger-menu__container {
  list-style: none;
  padding: 0;
}

.header__wrapper-logo {
  display: block;
}

.header__logo {
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  width: 175px;
  height: 40px;
}

.header__logo_mobile {
  display: none;
}

.header__lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 600px;
  height: 16px;
  padding: 0;
  margin: 0;
}

.header__item {
  margin: 0;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
}

.header__link {
  text-decoration: none;
  color: #fff;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 169px;
  height: 40px;
  text-align: center;
  border-radius: 25px;
  background: transparent;
  background: #000000;
  border: none;
  text-decoration: none;
  margin-right: 16px;
}

.header__textTelephone {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ff0080;
  margin: 0;
  text-decoration: none;
}

.content {
  /*outline: 8px solid red;*/
  min-height: 100vh;
  flex: 1;
}

.banner {
  background-image: url(./images/banner-lashes-desktop-new.png);
  max-width: 1280px;
  min-height: 550px;
}

.banner__text {
  margin: 0;
  font-family: PT Sans Caption;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: left;
  max-width: 296px;
  color: #fff;
  padding: 107px 0 0 90px;
}

.banner__title {
  margin: 0;
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: 0.01em;
  text-align: left;
  max-width: 546px;
  color: #fff;
  padding: 30px 0 0 75px;
}

.banner__title {
  transition: opacity 0.9s ease-in-out;
}

.banner__title.hidden {
  opacity: 0;
}

.creeping-line {
  display: flex;
  align-items: center;
  height: 85px;
  background: #fff;
  margin: auto;
  width: 100%;
  overflow: hidden;
}
.creeping-line__stock {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: PT Sans Caption;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.01em;
  text-align: left;
  color: red;
  margin: 0;
  height: 85px;
}
.creeping-line__stock {
  animation: run 9s linear infinite;
}
@keyframes run {
  from {
    transform: translateX(0%);
  }
  /* Magic is here. This is the width of the elem with text after rendering the page */
  to {
    /*transform: translateX(-1683.35px);*/
    transform: translateX(-1183.35px);
  }
}

.creeping-line__text {
  margin: 0;
  font-family: Inter;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.01em;
  text-align: left;
}

.banners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
  padding: 15px 20px 20px 20px;
}

.banners__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  align-self: center;
  min-height: 300px;
}

.banners__buton {
  width: 1122px;
  height: 60px;
  border-radius: 20px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-self: center;
  align-items: center;
  transition: 0.9s ease-in-out;
  border: none;
  text-decoration: none;
}

.banners__buton:hover {
  transform: scale(1.09);
}

.banners__wrapper_flex {
  width: 250px;
  display: flex;
  flex-direction: column;
}

.banners__wrapper {
  width: 250px;
  display: flex;
  align-items: center;
}

.banners__buton_pink {
  background: #ff0080;
}
.banners__buton_wt {
  background: #2aa81a;
}

.banners__buton_tg {
  background: #039be5;
}

.banners__buton_vk {
  background: #4065d6;
}

.banners__icon {
  width: 33px;
  height: 33px;
}

.banners__title {
  margin: 0;
  font-family: Inter;
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff;
}

.banners__title_subtitle {
  color: #ffffffbf;
}

.stock {
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 30px;
}

.stock__content {
  width: 1120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
}

.stock__title {
  margin: 0;
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  color: #ff0080;
  padding-bottom: 30px;
}

.stock__block {
  display: flex;
  justify-content: space-between;
  align-self: center;
  width: 1120px;
  height: 300px;
}

.stock__wrapper-foto {
  position: relative;
}

.stock__text {
  margin: 0;
  max-width: 295px;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.01em;
  text-align: right;
  color: #fff;
  position: absolute;
  z-index: 999;
}

.stock__image {
  width: 300px;
  height: 300px;
  background-size: cover;
  background: #222222;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  transition: 0.9s ease-in-out;
  filter: brightness(69%);
}

.stock__image:hover {
  transform: scale(1.08);
}

.stock__image:hover {
  filter: brightness(50%);
}

.stock__paragraph {
  margin: 0;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.01em;
  padding-top: 10px;
  color: #fff;
}

.stock__span {
  color: red;
}

.my-advantages {
  max-width: 1280px;
  display: flex;
  justify-content: center;
  background: #000000;
  padding-top: 30px;
  background-image: url(./images/fon-advantage.png);
  background-size: cover;
  margin-top: 60px;
}

.my-advantages__block {
  height: 840px;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
}

.my-advantages__title {
  margin: 0;
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  color: #fff;
  margin-bottom: 55px;
}

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

.my-advantages__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 275px;
  height: 100%;
  margin-right: 25px;
}

.my-advantages__card:last-child {
  margin-right: 0px;
}

.my-advantages__image {
  height: 100px;
  width: 100px;
}

.my-advantages__text {
  margin: 0;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
  max-width: 295px;
}

.my-advantages__paragraph {
  margin: 0;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #fff;
  max-width: 243px;
}

.price {
  margin-top: -450px;
  /* outline: #2aa81a 3px solid;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.price__content {
  width: 1140px;
  /* outline: #1a2fa8 13px solid;*/
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__title {
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  color: #fff;
  margin: 0;
  position: absolute;
  left: 69px;
}

.price__card {
  border: #d9d9d9;
  border-radius: 20px;
  width: 600px;
  height: 476px;
  border: 1px solid #ffffff;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price__subtitle {
  font-family: Great Vibes;
  font-size: 96px;
  font-style: italic;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  color: #fff;
  margin: 0;
  padding-top: 60px;
  text-align: center;
}

.price__items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  margin: 60px 60px;
  width: 460px;
  height: 259px;
  /* outline: 3px solid green;*/
}

.price__item {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #fff;
  max-width: 460px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ff0080;
}

.photo-gallery {
  position: relative;
  padding-top: 65px;
}

.photo-gallery__title {
  padding-left: 66px;
  margin: 0;
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #ff0080;
}

.photo-gallery__container {
  margin: 0;
  max-width: 1184px;
  padding: 92px 48px 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}

.photo-gallery__container_mobile {
  display: none;
}

.photo-gallery__photo {
  background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 366px;
}

.photo-gallery__photo_filter {
  filter: brightness(75%);
}

.photo-gallery__photo_center {
  position: absolute;
  width: 500px;
  height: 500px;
  margin: auto;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}

.wrapper-fon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(./images/fon-reviews.png);
  background-size: cover;
  background-position: center;
}

.reviews {
  padding-top: 150px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* outline:  10px red solid;*/
}

.reviews__title {
  position: absolute;
  left: 0px;
  top: 60px;
  font-family: Great Vibes;
  font-size: 96px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #ff0080;
  padding-left: 48px;
  margin: 0;
}

.reviews__title_position-center {
  top: 120px;
  left: 30%;
}

.reviews__container {
  min-height: 120px;
  max-width: 1120px;
  margin-top: 30px;
}

.reviews__container_top-margin {
  margin-top: 120px;
}
.reviews__card {
  /* height: 120px;*/
  min-height: 120px;
  margin-bottom: 35px;
  background: #fff;
  border: 1px solid #ff0080;
  border-radius: 8px;
}
.reviews__wpapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
}

.reviews__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding-top: 10px;
}
.reviews__name {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 20px;
  margin: 0;
  color: #ff0080;
  max-width: 250px;
  /*outline:  3px green solid;*/
}
.reviews__date {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 20px;
  margin: 0;
  color: #959595;
  margin-right: 10px;
}

.reviews__stars-desktop {
  padding-left: 20px;
}

.reviews__stars {
  display: none;
}

/*.page-console-button {
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid black;
}*/
.page-console-button:hover {
  border: 1px dotted blue;
}

.comments-total-rating {
  margin: 0;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
}

/*.comments-total-image {
  padding-left: 88px;
}*/

.comments-form {
  margin-left: 80px;
}

.comments-totla-image {
  margin: 0 0 20px 80px;
  width: 300px;
  height: 50px;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
  color: red;
}

.comments-form-warning {
  background: #5ad84a;
  margin-top: 10px;
  color: white;
  display: none;
  text-align: center;
  padding: 7px 7px;
}

.comments-form-warning__text {
  max-width: 486px;
}
.comments-form-warning {
  display: none;
}
.container-page-console-button {
  margin-top: 40px;
  margin-bottom: 40px;
  /*outline: 3px red solid;*/
  max-width: 290px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 20px;
}

.comments-manage-buttons {
  width: 60px;
  height: 30px;
  border: 2px solid gray;
  border-radius: 3px;
  margin-left: 55px;
  cursor: pointer;
}

.page-console-button {
  width: 30px;
  height: 30px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  margin-right: 7px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.page-console-button:hover {
  border: 1px dotted blue;
}
.comments-form-rating {
  width: 486px;
  height: 90px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  cursor: pointer;
}
.comments-form-warning {
  display: none;
}

.name {
  margin-top: 20px;
  width: 300px;
  cursor: pointer;
}

.text {
  margin-top: 20px;
  width: 300px;
  cursor: pointer;
}

.commentariy {
  margin-top: 20px;
  width: 300px;
  cursor: pointer;
}

/*.container-comments-area {
  margin: 0 auto;
  width: 800px;
}*/

.reviews__comment {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  padding: 15px 20px 30px 90px;
  max-width: 1000px;
  text-align: left;
  margin: 0;
  color: #000000;
  overflow-wrap: break-word;
  white-space: pre-line;
}

.reviews__wrapper-form {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  max-width: 1120px;
}
.reviews__form {
  background: #ffffff;
  border: 1px solid #ff0080;
  width: 535px;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.reviews__containerForm {
  width: 496px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews__formTitle {
  font-family: Inter;
  font-size: 24px;
  font-weight: 900;
  line-height: 16px;
  text-align: left;
  margin: 0;
  color: #000;
  margin-bottom: 20px;
}
.reviews__formText {
  max-width: 189px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #000;
  margin-bottom: 20px;
}
.reviews__formInputName {
  outline: none;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 40px;
  width: 486px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px gray solid;
  /* margin-bottom: 10px;*/
  cursor: pointer;
}

.reviews__formInputName:focus {
  border-color: #928686;
  background: #d1c8c880;
}

::placeholder {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  padding-left: 10px;
}
.reviews__formInputTelephone {
  outline: none;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 40px;
  padding: 0;
  width: 486px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px gray solid;
  /* margin-bottom: 10px;*/
  cursor: pointer;
}

.reviews__formInputTelephone:focus {
  border-color: #928686;
  background: #d1c8c880;
}

.reviews__rating-master {
  max-width: 189px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  margin-bottom: 0px;
  color: #000;
}

.reviews__formInputComment {
  outline: none;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 80px;
  padding: 10px;
  width: 486px;
  box-sizing: border-box;
  border: 1px gray solid;
  /* margin-bottom: 10px;*/
  cursor: pointer;
}

.reviews__formInputComment:focus {
  border-color: #928686;
  background: #d1c8c880;
}

.reviews__formButtonRew {
  border: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  color: #000;
  width: 497px;
  height: 44px;
  background: #ff0080;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
  margin-bottom: 10px;
  cursor: pointer;
}
.reviews__formImage {
  background-size: cover;
  width: 376px;
  height: 423px;
}

.registration {
  display: flex;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 30px;
  margin: 0 auto;
}

.registration__wrap-form {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  width: 1120px;
}
.registration__formRegister {
  background: #ffffff;
  border: 1px solid #ff0080;
  width: 400px;
  min-height: 365px;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  flex-direction: column;
}

.registration__formRegisterContainer {
  /* width: 347px;*/
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.registration__formRegisterTitle {
  font-family: Inter;
  font-size: 20px;
  font-weight: 900;
  line-height: 16px;
  text-align: left;
  margin: 0;
  color: #000;
  padding: 20px 0 20px 15px;
}

.registration__label {
  display: flex;
  flex-direction: column;
  min-height: 60px;
  margin-bottom: 20px;
  position: relative;
}

.reviews__label {
  /* outline: 4px blue solid;*/
  margin-bottom: 20px;
  min-height: 50px;
}

.registration__label-text {
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #00000080;
}

.success-message {
  background: #5ad84a;
  margin-top: 10px;
  color: white;
  display: none;
  text-align: center;
  padding: 7px 7px;
}

.timer-message {
  background: #5ad84a;
  margin-top: 10px;
  color: white;
  display: none;
  text-align: center;
  padding: 7px 7px;
}

.registration__select-container {
  margin-top: 10px;
  width: 348px;
  height: 40px;
  border: 1px solid grey;
}

.registration__formRegisterInputName {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 40px;
  width: 348px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid grey;
  margin-top: 8px;
  outline: none;
  cursor: pointer;
}

.registration__formRegisterInputName:focus {
  background: #d1c8c880;
}

::placeholder {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  padding-left: 10px;
}
.registration__formRegisterInputTelephone {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 40px;
  padding: 0;
  width: 348px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid grey;
  margin-top: 8px;
  outline: none;
  cursor: pointer;
}

.registration__formRegisterInputTelephone:focus {
  background: #d1c8c880;
}

.registration__formRegisterInputComment {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  margin: 0;
  color: #00000080;
  height: 40px;
  padding: 10px;
  width: 348px;
  box-sizing: border-box;
  border: 1px solid grey;
  margin-top: 8px;
  outline: none;
  cursor: pointer;
}

.registration__formRegisterInputComment:focus {
  border-color: #928686;
  background: #d1c8c880;
}

.registration__input_type_errors {
  border: 1px solid #ff0000;
}

.reviews__input_type_errors {
  border: 1px solid #ff0000;
}

.errors {
  color: red;
  display: block;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  /* padding-left: 25px;*/
  padding-top: 5px;
  /* position: absolute;
    top: 56px;
    left: -20px;*/
}

.registration__formRegisterButton {
  border: none;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  color: #000;
  width: 348px;
  height: 44px;
  background: #ff0080;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
  margin-top: 38px;
  color: #fff;
  margin-bottom: 30px;
  cursor: pointer;
}

.registration__formRegisterButton_disabled {
  border: 1px solid #9c8d8d;
  background-color: #ffffff;
  color: #494646;
  background: #fae6e6;
  cursor: none;
}

.registration__formRegisterButton_valid {
  background: #ff0080;
  color: #fff;
}

.reviews__formButtonRew_disabled {
  border: 1px solid #9c8d8d;
  background-color: #ffffff;
  color: #494646;
  background: #fae6e6;
  cursor: none;
}

.reviews__formButtonRew_valid {
  background: #ff0080;
  color: #fff;
}

.registration__select-container {
  display: flex;
  flex-direction: column;
  min-height: 30px;
  /* outline: 5px red solid;*/
}

.reset {
  display: flex;
  width: 348px;
  padding: 8px 16px;
  margin: 0 auto;
  margin-bottom: 10px;
  border: solid 1px #c7ccd1;
  border-radius: 5px;
  transition: all 0.2s ease-out;
  cursor: pointer;
  font-weight: bold;
  background-color: #ffffff;
  color: #333333;
}

.reset:hover {
  background-color: #d8093a;
  color: #ffffff;
}

.__select {
  position: relative;
  display: flex;
  width: 348px;
  height: 40px;
  z-index: 1;
}

.__select[data-state="active"] .__select__title::before {
  transform: translate(-3px, -50%) rotate(-45deg);
}

.__select[data-state="active"] .__select__title::after {
  transform: translate(3px, -50%) rotate(45deg);
}

.__select[data-state="active"] .__select__content {
  border-width: 1px;
}

.__select[data-state="active"] .__select__label {
  max-height: 40px;
  width: 310px;
  /*outline: red solid 3px;*/
  border-width: 1px;
}

.__select[data-state="active"] .__select__label::before {
  opacity: 1;
}

.__select__title {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: 18.15px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #00000080;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 0px 0px 0px 20px;
  border-radius: 2px;
  border: 1px solid grey;
  cursor: pointer;
  z-index: 2;
}

.__select__title::before,
.__select__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 10px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #333333;
  transform: translate(-3px, -50%) rotate(45deg);
}

.__select__title::after {
  transform: translate(3px, -50%) rotate(-45deg);
}

.__select__title:hover {
  border-color: #d8093a;
}

.__select__title:hover::before,
.__select__title:hover::after {
  background-color: #d8093a;
}

.__select__content {
  position: absolute;
  top: 40px;
  left: 3px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 6px);
  background-color: #ffffff;
  border: 1px solid rgba(#c7ccd1, 0);
  border-top-width: 0;
  border-bottom-width: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.__select__input {
  display: none;
  pointer-events: none;
}

.__select__input:checked + label {
  background-color: #dedede;
}

.__select__input:checked + label::after {
  content: attr(data-value);
}

.__select__input:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}

.__select__label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  max-height: 0;
  padding: 0 16px;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.__select__label + .__select__input + .__select__label {
  border-top: 0 solid #c7ccd160;
}

.__select__label:hover {
  background-color: #d8093a !important;
  color: #ffffff;
}

.__select__label::before {
  content: attr(data-value);
  transition: all 0.2s ease-out;
  opacity: 0;
}

.__select__label::after {
  position: absolute;
  top: -40px;
  left: 0;
  display: flex;
  align-items: center;
  width: 200px;
  height: 40px;
  padding: 8px 16px;
  color: #333333;
  z-index: -1;
}

.procedures__message-procedures {
  display: none;
  color: red;
  font-family: Inter;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  /* padding-left: 25px; */
  padding-top: 10px;
  text-align: center;
}

.procedures__message-validation {
  display: none;
  color: red;
  font-family: Inter;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  /* padding-left: 25px; */
  padding-top: 10px;
  text-align: center;
}

.procedures__message-error {
  display: none;
  color: red;
  font-family: Inter;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  /* padding-left: 25px; */
  padding-top: 10px;
  text-align: center;
}

.reviews__formRegister_image {
  background-size: cover;
}

.registration__maps {
  position: relative;
  overflow: hidden;
}

.reviews__wrapper-date-stars {
  /* outline: 4px green solid;*/
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

.registration__link {
  color: #eee;
  font-size: 12px;
  position: absolute;
  top: 0px;
}

.registration__link-two {
  color: #eee;
  font-size: 12px;
  position: absolute;
  top: 14px;
}

.registration__iframe {
  position: relative;
  width: 560px;
  height: 400px;
}

.footer {
  background: #ff0080;
  width: 100%;
  min-height: 327px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-shrink: 0;
}

.footer__link {
  text-decoration: none;
  color: #000;
}

.footer__social {
  text-decoration: none;
}
.footer__wrapper {
  /*outline: blue 3px solid;*/
  width: 241px;
  height: 178px;
  display: flex;
  padding: 70px 0 0 70px;
}
.footer__lamiKo {
  /* outline: rgb(221, 13, 47) 3px solid;*/
  margin-right: 60px;
}

.footer__container {
  width: 170px;
}

.footer__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
}

.footer__icon_margin {
  margin-right: 15px;
}
.footer__title {
  margin: 0;
  padding-bottom: 30px;
  color: #000;
  font-family: Inter;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
  text-align: left;
}
.footer__text {
  margin: 0;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  width: 246px;
  padding-bottom: 45px;
  /*outline: rgb(18, 172, 31) 3px solid;*/
}

.footer__lists {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__listsTitle {
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin: 0;
  padding-bottom: 30px;
}

.footer__listsItem {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000;
  padding-bottom: 10px;
  margin: 0;
}

.footer__author {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000;
  padding-left: 70px;
  margin: 0;
}

@media screen and (max-width: 1160px) {
  .photo-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .photo-gallery__container {
    max-width: 1000px;
    /*padding: auto;*/
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .photo-gallery__photo_none {
    display: none;
  }

  .photo-gallery__photo_center {
    position: absolute;
    width: 550px;
    height: 550px;
    margin: auto;
    top: 100px;
    border-radius: 10px;
  }

  .my-advantages {
    margin-top: 20px;
    background-position: center;
  }

  .my-advantages__block {
    height: 840px;
    max-width: 1160px;
    align-items: center;
  }

  .my-advantages__title {
    margin-bottom: 70px;
    font-size: 84px;
  }

  .my-advantages__overlay {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    width: 90%;
  }

  .my-advantages__card {
    max-width: 100%;
    height: 100%;
  }

  .my-advantages__image {
    height: 100px;
    width: 100px;
  }

  .my-advantages__text {
    max-width: 360px;
  }

  .my-advantages__paragraph {
    max-width: 360px;
  }

  .price {
    margin-top: -160px;
  }

  .price__content {
    max-width: 90%;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price__title {
    font-family: Great Vibes;
    font-size: 96px;
    font-weight: 400;
    line-height: 50px;
    text-align: left;
    color: #fff;
    margin: 0;
    position: absolute;
    left: 50px;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 600px;
    height: 476px;
    border: 1px solid #ffffff;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price__subtitle {
    font-family: Great Vibes;
    font-size: 96px;
    font-style: italic;
    font-weight: 400;
    line-height: 50px;
    text-align: left;
    color: #fff;
    margin: 0;
    padding-top: 60px;
    text-align: center;
  }

  .price__items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    margin: 60px 60px;
    width: 460px;
    height: 259px;
    /* outline: 3px solid green;*/
  }

  .price__item {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #fff;
    max-width: 460px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ff0080;
  }

  .banners__buton {
    max-width: 1000px;
  }

  /*.stock {
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
}*/

  .stock__content {
    max-width: 1000px;
  }

  .stock__block {
    display: flex;
    justify-content: space-between;
    align-self: center;
    width: 100%;
  }

  .registration__wrap-form {
    padding-top: 50px;
    max-width: 1000px;
  }

  .reviews__container {
    width: 900px;
  }

  .reviews__wrapper-form {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    max-width: 1000px;
  }
}

@media screen and (max-width: 1140px) {
  .header {
    max-width: 1140px;
  }

  .header__lists {
    max-width: 550px;
  }
}

/*@media screen and (max-width: 1120px) {
  .reviews__container {
   width: 50%;
    background: red;
    border: 5px blue solid;
  }
  }
*/

@media screen and (max-width: 1040px) {
  .header__button {
    width: 140px;
    height: 40px;
  }

  .header__textTelephone {
    font-size: 14px;
  }

  .my-advantages {
    margin-top: 20px;
    background-position: center;
    max-width: 1040px;
  }

  .my-advantages__overlay {
    width: 85%;
  }

  .price__content {
    width: 600px;
  }

  .price__title {
    left: 60px;
    font-size: 54px;
  }

  .price__subtitle {
    left: 45px;
    font-size: 54px;
  }

  .photo-gallery {
    padding-top: 75px;
  }

  .photo-gallery__title {
    padding-left: 48px;
    font-size: 56px;
  }

  .reviews__title {
    position: absolute;
    left: 0px;
    top: 90px;
    font-size: 56px;
  }

  .photo-gallery__container {
    max-width: 100%;
    padding: 62px 18px 0 18px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .banners {
    max-width: 100%;
  }

  .banners__buton {
    max-width: 900px;
  }

  .footer {
    background: #ff0080;
    max-width: 1040px;
    min-height: 193px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
  }
  .footer__wrapper {
    /*outline: blue 3px solid;*/
    width: 300px;
    height: 178px;
    display: flex;
    padding: 10px 0 0 10px;
  }

  .page__content {
    max-width: 1040px;
  }
}

@media screen and (max-width: 1020px) {
  .reviews__container {
    width: 900px;
  }

  .reviews__wrapper-form {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    max-width: 900px;
  }
}

@media screen and (max-width: 1000px) {
  /* .stock {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
  }*/

  .banners__buton {
    max-width: 95%;
  }

  .banners__nav {
    max-width: 95%;
  }

  .stock__content {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
  }

  .stock__title {
    margin: 0;
    font-family: Great Vibes;
    font-size: 76px;
    font-weight: 400;
    line-height: 50px;
    text-align: left;
    color: #ff0080;
    padding-bottom: 30px;
  }

  .stock__block {
    max-width: 100%;
    height: 250px;
  }

  /*.stock__wrapper-foto {
    position: relative;
  }*/

  /*.stock__text {
    margin: 0;
    max-width: 295px;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: 0.01em;
    text-align: right;
    color: #fff;
    position: absolute;
    z-index: 999;
  }*/

  .stock__image {
    width: 250px;
    height: 250px;
  }

  .price__title {
    left: 120px;
    font-size: 54px;
  }

  .photo-gallery {
    padding: 45px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .photo-gallery__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 45px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-left: 120px;
    align-self: flex-start;
    /*outline: 3px solid red;*/
  }

  .reviews__title {
    left: 0px;
    top: 90px;
    font-size: 70px;
  }

  .photo-gallery__container {
    display: none;
  }

  .photo-gallery__container_mobile {
    max-width: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .photo-gallery__wrapper {
    display: block;
  }

  .photo-gallery__photo {
    width: 850px;
    height: 700px;
    border-radius: 5px;
  }

  .photo-gallery__button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 140px;
    margin-top: 25px;
  }

  .photo-gallery__button-block {
    display: block;
    width: 50px;
    height: 50px;
  }

  .photo-gallery__button-right {
    border: none;
    outline: none;
    background: transparent;
    width: 50px;
    height: 50px;
    background-image: url(./images/button-right-tablet.png);
    background-repeat: no-repeat;
  }

  .photo-gallery__button-left {
    border: none;
    outline: none;
    background: transparent;
    width: 50px;
    height: 50px;
    background-image: url(./images/button-left-tablet.png);
  }

  .registration__wrap-form {
    padding-top: 0px;
    max-width: 900px;
  }

  .registration__iframe {
    width: 470px;
  }
}

@media screen and (max-width: 950px) {
  .page__content {
    max-width: 950px;
  }

  .banner {
    background-image: url(./images/banner-lashes-tablet-new.png);
    min-height: 412px;
    background-size: cover;
  }

  .header {
    max-width: 950px;
  }

  .header__item {
    font-size: 14px;
  }

  .header__lists {
    max-width: 460px;
  }

  .banner__text {
    max-width: 262px;
    padding: 40px 0 0 40px;
    font-family: Inter;
    font-size: 14px;
  }

  .banner__title {
    max-width: 297px;
    padding-left: 40px;
    padding-top: 10px;
    font-family: Great Vibes;
    font-size: 64px;
    font-weight: 400;
    line-height: 105px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .photo-gallery__photo {
    width: 600px;
    height: 500px;
    border-radius: 5px;
  }

  .footer__wrapper {
    width: 400px;
    height: 200px;
    display: flex;
    padding: 50px 0 20px 50px;
  }

  .footer__text {
    max-width: 180px;
  }

  .footer__author {
    padding-left: 40px;
  }
}

@media screen and (max-width: 948px) {
  .stock__image {
    width: 240px;
    height: 240px;
  }
}

@media screen and (max-width: 904px) {
  .stock__image {
    width: 220px;
    height: 220px;
  }
}

@media screen and (max-width: 900px) {
  .reviews__container {
    max-width: 750px;
  }

  .reviews__wrapper-form {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    padding-top: 50px;
    max-width: 800px;
  }

  .reviews__formImage {
    display: none;
  }
}

@media screen and (max-width: 874px) {
  .page__content {
    max-width: 874px;
  }

  .header {
    max-width: 874px;
  }

  .banner__text {
    max-width: 262px;
    padding: 40px 0 0 10px;
    font-family: Inter;
    font-size: 14px;
  }

  .banner__title {
    max-width: 297px;
    padding-left: 10px;
    padding-top: 10px;
    font-family: Great Vibes;
    font-size: 64px;
    font-weight: 400;
    line-height: 105px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .banners__nav {
    min-height: 340px;
  }

  .banners__buton {
    width: 794px;
  }

  .banners__wrapper_flex {
    width: 255px;
  }

  .stock {
    padding-top: 30px;
  }

  .stock__content {
    max-width: 100%;
  }

  .stock__title {
    padding: 0px 0 20px 15px;
    font-size: 64px;
    line-height: 45px;
    text-align: left;
  }

  .stock__block {
    width: 792px;
    height: 254px;
  }

  .stock__text {
    max-width: 151px;
    font-size: 15px;
    line-height: 30px;
    top: 10px;
    right: 10px;
  }

  .stock__image {
    width: 100%;
    height: 100%;
  }

  .stock__paragraph {
    padding-left: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .my-advantages {
    margin-top: 20px;
    background-position: center;
  }

  .my-advantages__block {
    height: 840px;
    max-width: 874px;
  }

  .my-advantages__title {
    margin-bottom: 70px;
    font-size: 64px;
  }

  .my-advantages__overlay {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 800px;
  }

  .my-advantages__card {
    max-width: 380px;
    height: 100%;
  }

  .my-advantages__image {
    height: 100px;
    width: 100px;
  }

  .my-advantages__text {
    max-width: 260px;
  }

  .my-advantages__paragraph {
    max-width: 260px;
  }

  .price {
    margin-top: -110px;
  }

  .price__content {
    width: 800px;
  }

  .price__title {
    left: 20px;
    font-size: 64px;
  }

  .price__subtitle {
    padding-top: 30px;
    font-size: 96px;
  }

  /* .photo-gallery {
    padding-top: 65px;
  }
  
  .photo-gallery__title {
    padding-left: 48px;
    margin: 0;
    font-family: Great Vibes;
    font-size: 96px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0.01em;
    text-align: left;
    color: #ff0080;
  }
  
  .photo-gallery__container {
    margin: 0;
    max-width: 1184px;
    padding: 92px 48px 0 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
  }
  
  .photo-gallery__container_mobile {
    display: none;
  }
  
  .photo-gallery__photo {
    width: 100%;
    height: 366px;
  }
  
  .photo-gallery__photo_center {
    position: absolute;
    width: 500px;
    height: 500px;
    margin: auto;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
  }*/

  .reviews__wrapper-form {
    /*  display: flex;
    justify-content: space-between;*/
    align-items: center;
    padding-top: 0px;
    max-width: 790px;
  }
  .reviews__form {
    width: 350px;
    min-height: 464px;
  }

  .reviews__containerForm {
    width: 300px;
    min-height: 320px;
    align-items: center;
    /* outline: 5px blue solid;*/
  }

  .comments-form-rating {
    width: 280px;
    height: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .reviews__formTitle {
    font-size: 12px;
    align-self: flex-start;
    padding-left: 10px;
    padding-top: 20px;
    /*margin: 10px 0 10px;*/
  }
  .reviews__formText {
    font-size: 12px;
    line-height: 11.68px;
    align-self: flex-start;
    padding-left: 10px;
    /*margin-bottom: 10px;*/
  }
  .reviews__formInputName {
    height: 35px;
    width: 280px;
    /*margin-bottom: 20px;*/
  }

  ::placeholder {
    padding-left: 10px;
    font-size: 12px;
    line-height: 14.52px;
  }
  .reviews__formInputTelephone {
    width: 280px;
    height: 35px;
    /*margin-bottom: 20px;*/
  }
  .reviews__formInputComment {
    width: 280px;
    height: 85px;
    /* margin-bottom: 20px;*/
  }
  .reviews__formButtonRew {
    width: 260px;
    margin-bottom: 30px;
    /*margin: 20px 0 20px;*/
  }
  /* .reviews__formImage {
    width: 274px;
    height: 270px;
  }*/

  .reviews__comment {
    padding: 12px 20px 30px 25px;
    max-width: 1000px;
  }

  .registration {
    display: flex;
    justify-content: center;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .registration__wrap-form {
    padding-top: 0px;
    width: 790px;
  }
  .registration__formRegister {
    width: 300px;
    min-height: 340px;
  }

  .errors {
    max-width: 280px;
    text-align: left;
  }

  .registration__formRegisterTitle {
    font-size: 12px;
  }

  .registration__select-container {
    width: 280px;
    height: 40px;
  }

  .__select__title {
    width: 280px;
    padding: 0px;
  }

  .__select[data-state="active"] .__select__label {
    max-height: 40px;
    width: 240px;
    border-width: 1px;
  }

  .__select {
    width: 280px;
  }

  .registration__formRegisterInputName {
    width: 280px;
  }

  ::placeholder {
    padding-left: 10px;
    font-size: 12px;
    line-height: 16px;
  }
  .registration__formRegisterInputTelephone {
    width: 280px;
  }
  .registration__formRegisterInputComment {
    width: 280px;
  }
  .registration__formRegisterButton {
    width: 220px;
  }

  .__select__title {
    padding-left: 20px;
  }

  .registration__maps {
    position: relative;
    overflow: hidden;
  }

  .registration__link {
    color: #eee;
    font-size: 12px;
    position: absolute;
    top: 0px;
  }

  .registration__link-two {
    color: #eee;
    font-size: 12px;
    position: absolute;
    top: 14px;
  }

  .registration__iframe {
    position: relative;
    width: 440px;
    height: 340px;
  }

  .footer__wrapper {
    width: 400px;
    height: 200px;
    display: flex;
    padding: 50px 0 0 50px;
  }

  .footer__text {
    max-width: 180px;
  }
  /*.footer__lamiKo {
 
  margin-right: 60px;
}

.footer__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
}

.footer__icon_margin {
  margin-right: 15px;
}
.footer__title {
  margin: 0;
  padding-bottom: 30px;
  font-family: Playfair Display;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #000;
}
.footer__text {
  margin: 0;
  font-family: Work Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000;
  max-width: 246px;
  padding-bottom: 60px;
}

.footer__main {
  
}
.footer__lists {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__listsTitle {
  font-family: Work Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin: 0;
  padding-bottom: 30px;
}

.footer__listsItem {
  font-family: Work Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000;
  padding-bottom: 10px;
  margin: 0;
}

.footer__author {
  font-family: Work Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000;
  padding-left: 70px;
  margin: 0;
}*/
}

@media screen and (max-width: 854px) {
  .banner__text {
    padding: 40px 0 0 60px;
  }

  .banner__title {
    padding-left: 60px;
  }
}

@media screen and (max-width: 834px) {
  .pulse-button {
    display: flex;
  }
  .banner__text {
    padding: 40px 0 0 10px;
  }

  .banner__title {
    padding-left: 10px;
  }

  .banners__nav {
    max-width: 100%;
    min-height: 300px;
  }

  .banners__buton {
    max-width: 794px;
  }

  .stock__title {
    padding-bottom: 0;
  }

  .my-advantages {
    margin-top: 10px;
  }

  .my-advantages__overlay {
    margin-top: -38px;
  }

  .my-advantages__block {
    height: 740px;
    max-width: 874px;
  }

  .my-advantages__title {
    align-self: flex-start;
  }

  .price__card {
    margin-top: 118px;
  }

  .price__subtitle {
    padding-top: 47px;
  }

  .photo-gallery {
    padding-top: 65px;
  }

  .photo-gallery__title {
    padding-left: 20px;
  }

  .footer {
    min-height: 327px;
  }

  .footer__wrapper {
    padding: 10px 0 0 60px;
  }

  .footer__title {
    padding-bottom: 20px;
  }

  .footer__text {
    padding-bottom: 50px;
  }

  .footer__author {
    padding-left: 20px;
    max-width: 172px;
    margin-bottom: -25px;
  }

  .footer__main {
    margin-left: 28px;
  }

  .footer__listsTitle {
    padding-bottom: 26px;
  }

  .footer__listsItem {
    padding-bottom: 21px;
  }

  .footer__listsItem:last-child {
    padding-bottom: 0;
  }
}

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

  .header-mobile {
    display: flex;
    justify-content: space-between;
    max-width: 810px;
    height: 60px;
    background: #ff0080;
  }

  .hamburger-menu__containerBoottom {
    padding: 0 0 15px 30px;
  }

  .header__wrapper-logo {
    display: flex;
    justify-content: center;
    margin: 10px 0 10px 0;
  }

  .hamburger-menu {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 10px;
    height: 10px;
    padding-top: 15px;
    padding-right: 15px;
    background: #ff0080;
    /* outline: 5px red solid;*/
  }

  .hamburger-menu__social {
    text-decoration: none;
  }

  .hamburger-menu__paragraph {
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    margin: 0;
    color: #000;
    max-width: 290px;
  }

  .hamburger-menu__title {
    margin: 0;
    color: #000;
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
  }

  .hamburger-menu__toggle {
    display: none;
    opacity: 0;
  }
  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span {
    transform: rotate(45deg);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span::before {
    top: 0;
    transform: rotate(0);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span::after {
    top: 0;
    transform: rotate(90deg);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__box {
    visibility: visible;
    left: 0;
    transition: 0.7s ease-in-out;
  }

  .hamburger-menu__wrapper {
    position: fixed;
    top: 13px;
    left: 92.6%;
    z-index: 3;
    background: #ff0080;
    /*outline: 5px red solid;*/
    width: 40px;
    height: 40px;
    border-radius: 2px;
  }

  .hamburger-menu__button {
    display: flex;
    align-items: center;
    position: fixed;
    top: 11px;
    left: 93%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 999999;
  }

  .hamburger-menu__button > span,
  .hamburger-menu__button > span::before,
  .hamburger-menu__button > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transition-duration: 0.25s;
    z-index: 999999;
  }

  .hamburger-menu__button > span {
    width: 20px;
  }

  .hamburger-menu__button > span::before {
    content: "";
    top: -8px;
    width: 30px;
  }

  .hamburger-menu__button > span::after {
    content: "";
    top: 8px;
    width: 30px;
  }

  .hamburger-menu__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 68%;
    z-index: 9999;
    margin: 0;
    background: #ff0080;
    transition-duration: 0.25s;
    opacity: 0.97;
    /*  outline: 22px green solid;*/
  }

  .hamburger-menu__box_padding {
    padding: 60px 0 0px 0;
  }

  .hamburger-menu__box_padding_min {
    padding: 25px 0 0px 0;
  }

  .hamburger-menu__logoAbsolut {
    position: absolute;
    top: 5px;
    left: 10px;
  }

  .hamburger-menu__item {
    display: block;
    padding: 8px 0 8px 30px;
    font-family: Inter;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
    transition-duration: 0.25s;
    border-bottom: 0.5px solid #ffffff;
  }

  .hamburger-menu__item_padding {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
  }

  .hamburger-menu__item:hover {
    background: #c55b90;
  }

  .hamburger-menu__icon_margin {
    margin-right: 5px;
  }

  .hamburger-menu__icon {
    width: 32px;
    height: 32px;
  }

  .media-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .page__content {
    max-width: 810px;
  }

  .creeping-line__text {
    font-size: 28px;
  }

  .banners {
    max-width: 90%;
    margin: 0 auto;
  }

  .banners__buton {
    max-width: 100%;
  }

  .header__logo {
    display: none;
  }

  .header__logo_mobile {
    display: block;
    width: 140px;
  }

  .stock__content {
    width: 520px;
  }

  .comments-total-image {
    padding-left: 98px;
  }

  .stock__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: 0.01em;
    padding-bottom: 40px;
  }

  .stock__block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 100%;
    height: 1260px;
  }

  .stock__text {
    max-width: 295px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }

  .stock__paragraph {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.01em;
    padding-top: 30px;
    padding-left: 10px;
    color: #fff;
  }

  .stock__image {
    width: 400px;
    height: 400px;
  }

  .my-advantages {
    padding-top: 40px;
    /*background-image: url(./images/fon-advantage-mobile.png);*/
    height: 100%;
    background-position: center;
    margin-top: 80px;
  }

  .my-advantages__block {
    max-width: 520px;
    display: flex;
    /*flex-direction: column;*/
  }

  .my-advantages__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 45px;
    text-align: center;
    margin-bottom: 40px;
  }

  .my-advantages__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 520px;
    /*outline: 7px red solid;*/
  }

  .my-advantages__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 520px;
    height: 100%;
  }

  .my-advantages__image {
    height: 100px;
    width: 100px;
  }

  .my-advantages__text {
    font-family: Inter;
    font-size: 19px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.01em;
  }

  .my-advantages__paragraph {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    max-width: 260px;
    letter-spacing: 0.01em;
  }

  .price {
    margin-top: 210px;
    /* outline: #2aa81a 13px solid;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .price__content {
    margin-top: 50px;
    width: 520px;
    /* outline: #1a2fa8 13px solid;*/
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 50px;
    color: #ff0080;
    top: 50px;
    left: 180px;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 520px;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 100px;
  }

  .price__subtitle {
    font-family: Great Vibes;
    font-size: 60px;
    font-weight: 400;
    line-height: 50px;
    padding-top: 30px;
    text-align: center;
  }

  .price__items-list {
    /*outline: 5px red solid;*/
    margin: 0;
    margin-bottom: 30px;
    width: 400px;
    height: 259px;
  }

  .price__item {
    font-size: 16px;
  }

  .photo-gallery {
    padding-top: 45px;
    padding-bottom: 60px;
  }

  .photo-gallery__title {
    font-size: 70px;
    font-weight: 400;
    line-height: 45px;
    padding-left: 0px;
    align-self: center;
    /* padding-bottom: 20px;*/
  }

  .photo-gallery__container {
    display: none;
  }

  .photo-gallery__container_mobile {
    width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .photo-gallery__wrapper {
    display: block;
  }

  .photo-gallery__photo {
    width: 520px;
    height: 520px;
    border-radius: 5px;
  }

  .photo-gallery__button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 80px;
    margin-top: 35px;
  }

  .photo-gallery__button-block {
    display: block;
    width: 30px;
    height: 30px;
  }

  .photo-gallery__button-right {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-right.png);
  }

  .photo-gallery__button-left {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-left.png);
  }

  .registration {
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    width: 100%;
  }
  .registration__formRegister {
    width: 460px;
    min-height: 290px;
  }

  .registration__select-container {
    width: 400px;
  }

  .__select {
    width: 400px;
  }

  .__select__title {
    width: 400px;
    padding-left: 20px;
  }

  .__select[data-state="active"] .__select__label {
    width: 360px;
    border-width: 1px;
  }

  .errors {
    max-width: 400px;
  }

  .reviews__form {
    width: 462px;
    min-height: 464px;
  }

  .reviews__formInputName {
    width: 400px;
  }

  .reviews__formInputTelephone {
    width: 400px;
  }

  .reviews__formInputComment {
    width: 400px;
  }

  .reviews__card {
    width: 600px;
  }

  .reviews__name {
    font-size: 18px;
  }

  .reviews__container {
    min-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .reviews__wrapper-form {
    max-width: 600px;
  }

  .reviews__formButtonRew {
    width: 280px;
  }

  .comments-form-rating {
    width: 400px;
    height: 70px;
  }

  .registration__formRegisterTitle {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  ::placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }

  .registration__formRegisterInputName {
    width: 400px;
  }

  .registration__formRegisterInputTelephone {
    width: 400px;
  }
  .registration__formRegisterInputComment {
    width: 400px;
  }
  .registration__formRegisterButton {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: -0.02em;
    width: 280px;
    margin-bottom: 20px;
  }

  .registration__maps {
    width: 462px;
    height: 332px;
    margin-bottom: 30px;
  }

  .registration__iframe {
    width: 462px;
    height: 332px;
  }

  .footer {
    background: #ff0080;
    max-width: 100%;
    /* min-height: 193px;*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-shrink: 0;
  }
}

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

  .comments-total-image {
    padding-left: 48px;
  }
}

@media screen and (max-width: 690px) {
  .creeping-line__text {
    margin: 0;
    font-family: Inter;
    font-size: 24px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .banners__nav {
    max-width: 100%;
  }

  .banners__buton {
    max-width: 100%;
  }
}

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

@media screen and (max-width: 600px) {
  .reviews__container {
    min-width: 500px;
  }

  .reviews__card {
    max-width: 500px;
  }

  .reviews__stars-desktop {
    display: none;
  }

  .reviews__stars {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    font-weight: bold;
  }

  .reviews__stars0 {
    background-image: url("/images/clock-new/12.svg");
  }

  .reviews__stars1 {
    background-image: url("/images/clock-new/11.svg");
  }

  .reviews__stars2 {
    background-image: url("/images/clock-new/1.svg");
  }

  .reviews__stars3 {
    background-image: url("/images/clock-new/2.svg");
  }

  .reviews__stars4 {
    background-image: url("/images/clock-new/3.svg");
  }

  .reviews__stars5 {
    background-image: url("/images/clock-new/4.svg");
  }

  .reviews__stars6 {
    background-image: url("/images/clock-new/5.svg");
  }

  .reviews__stars7 {
    background-image: url("/images/clock-new/6.svg");
  }

  .reviews__stars8 {
    background-image: url("/images/clock-new/7.svg");
  }

  .reviews__stars9 {
    background-image: url("/images/clock-new/8.svg");
  }

  .reviews__stars10 {
    background-image: url("/images/clock-new/9.svg");
  }

  .reviews__stars11 {
    background-image: url("/images/clock-new/10.svg");
  }

  .reviews__container_top-margin {
    margin-top: 50px;
  }

  .comments-total-rating {
    font-size: 20px;
  }

  .comments-total-image {
    padding-left: 78px;
  }
}

@media screen and (max-width: 590px) {
  .hamburger-menu__button {
    top: 11px;
    left: 87%;
  }

  .hamburger-menu__wrapper {
    top: 13px;
    left: 86.6%;
  }

  .banner {
    background-position: center;
  }

  .creeping-line__text {
    margin: 0;
    font-family: Inter;
    font-size: 21px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .creeping-line__stock marquee {
    height: 50px;
  }
}

@media screen and (max-width: 550px) {
  .reviews__container {
    width: 400px;
  }
}

@media screen and (max-width: 400px) {
  .reviews__container {
    width: 320px;
  }
}

@media screen and (max-width: 534px) {
  .price__title {
    left: 100px;
  }
  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 440px;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 100px;
  }
}

@media screen and (max-width: 520px) {
  .my-advantages__block {
    max-width: 500px;
    display: flex;
    /* flex-direction: column; */
  }
  .my-advantages__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    /* outline: 7px red solid; */
  }

  .price {
    margin-top: 230px;
    /* outline: #2aa81a 13px solid; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .photo-gallery__container_mobile {
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .photo-gallery__photo {
    width: 440px;
    height: 440px;
  }
}

@media screen and (max-width: 500px) {
  .reviews__container {
    min-width: 400px;
  }

  .reviews__card {
    max-width: 400px;
  }

  .reviews__wrapper-date-stars {
    position: relative;
    /* outline: 4px green solid;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
  }

  .reviews__name {
    position: absolute;
    top: 10px;
    left: 10px;
    padding-left: 0px;
    font-size: 16px;
  }

  .reviews__date {
    font-size: 14px;
  }

  .reviews__avatar {
    padding-top: 0px;
    padding-bottom: 20px;
    width: 60px;
    height: 60px;
  }

  .comments-total-image {
    padding-left: 0px;
  }
}

@media screen and (max-width: 490px) {
  .my-advantages__block {
    width: 100%;
  }

  .my-advantages__overlay {
    width: 100%;
    /* outline: 7px red solid; */
  }

  .price {
    margin-top: 270px;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 98%;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 100px;
  }

  .price__title {
    left: 80px;
  }

  .photo-gallery__photo {
    width: 450px;
    height: 450px;
    border-radius: 5px;
  }

  .photo-gallery__container_mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    width: 100%;
  }

  .registration__maps {
    max-width: 450px;
    min-height: 450px;
  }

  .registration__iframe {
    max-width: 450px;
    min-height: 450px;
  }

  .footer {
    background: #ff0080;
    width: 100%;
    min-height: 193px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    /*outline: blue 23px solid;*/
  }

  .footer__overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*height: 193px;*/
    /*outline: rgb(182, 11, 145) 13px solid;*/
  }
  .footer__wrapper {
    /* outline: rgb(11, 160, 18) 3px solid;*/
    max-width: 300px;
    height: 138px;
    display: flex;
    padding: 10px 0 0 10px;
  }
  .footer__lamiKo {
    /*outline: rgb(221, 13, 47) 3px solid;*/
    margin-right: 70px;
    width: 119px;
  }

  .footer__icon_margin {
    margin-right: 5px;
  }
  .footer__title {
    padding-bottom: 10px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 800;
    line-height: 30px;
    text-align: left;
  }
  .footer__text {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 8px;
    /*outline: rgb(18, 172, 31) 3px solid;*/
    max-width: 88px;
    margin: 0;
  }

  .footer__lists {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer__listsTitle {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 12px;
  }

  .footer__listsItem {
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    padding-bottom: 10px;
  }

  .footer__author {
    padding-left: 15px;
    padding-top: 30px;
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
  }
}

@media screen and (max-width: 462px) {
  .registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    max-width: 380px;
  }

  .registration__formRegister {
    width: 380px;
  }

  .registration__formRegisterInputName {
    width: 340px;
  }

  .registration__formRegisterInputTelephone {
    width: 340px;
  }
  .registration__formRegisterInputComment {
    width: 340px;
  }

  .__select {
    width: 340px;
  }

  .registration__select-container {
    width: 340px;
  }

  /* .__select__title {
    width: 280px;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
  }*/

  .__select[data-state="active"] .__select__label {
    width: 300px;
  }

  .registration__maps {
    width: 462px;
    height: 332px;
    margin-bottom: 30px;
  }

  .registration__iframe {
    width: 462px;
    height: 332px;
  }

  .reviews__form {
    width: 380px;
    min-height: 464px;
  }

  .reviews__formInputName {
    width: 340px;
    height: 40px;
  }

  .reviews__formInputTelephone {
    width: 340px;
    height: 40px;
  }

  .reviews__formInputComment {
    width: 340px;
  }
  .comments-form-rating {
    width: 340px;
    height: 70px;
  }
}

@media screen and (max-width: 454px) {
  .creeping-line__text {
    margin: 0;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .creeping-line__stock {
    height: 32px;
  }

  .creeping-line__stock marquee {
    height: 32px;
  }

  .creeping-line {
    height: 32px;
  }

  .banner {
    min-height: 258px;
  }

  .banners {
    padding: 20px 0 0 0;
  }

  .banner__text {
    padding: 40px 0 0 30px;
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .banner__title {
    padding-left: 30px;
    padding-top: 15px;
    max-width: 186px;
    font-family: Great Vibes;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0.01em;
    text-align: left;
  }

  .banners__nav {
    max-width: 100%;
    min-height: 206px;
  }

  .banners__buton {
    max-width: 100%;
    width: 400px;
    height: 40px;
  }

  .banners__title {
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-align: center;
    /*padding-left: 70px;*/
    margin: 0 auto;
  }

  .stock__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: 0.01em;
    padding-bottom: 20px;
  }

  .stock__image {
    width: 380px;
    height: 380px;
  }

  .price__title {
    font-size: 40px;
  }

  .price__subtitle {
    font-size: 40px;
  }

  .my-advantages {
    padding-top: 20px;
    /* background-image: url(./images/fon-advantage-mobile.png);*/
    height: 325px;
    background-position: center;
    margin-top: 20px;
  }

  .my-advantages__block {
    width: 320px;
    /*display: flex;
    flex-direction: column;*/
  }

  .my-advantages__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    text-align: center;
    margin-bottom: 40px;
  }

  .my-advantages__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
  }

  .my-advantages__card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 350px;
    height: 100%;
  }

  .my-advantages__image {
    height: 70px;
    width: 70px;
  }

  .my-advantages__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .my-advantages__paragraph {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    max-width: 193px;
  }

  .price {
    margin-top: 90px;
    /* outline: #2aa81a 13px solid;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .price__content {
    width: 320px;
    /* outline: #1a2fa8 13px solid;*/
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #ffffff;

    left: 20px;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 380px;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 60px;
  }

  .price__subtitle {
    font-family: Great Vibes;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;

    padding-top: 30px;
    text-align: center;
  }

  .price__items-list {
    /*outline: 5px red solid;*/
    margin: 0;
    margin-bottom: 30px;
    width: 250px;
    height: 259px;
  }

  .price__item {
    font-size: 12px;
  }

  .photo-gallery {
    padding-top: 45px;
  }

  .photo-gallery__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    padding-left: 20px;
    padding-bottom: 20px;
    align-self: flex-start;
  }

  .reviews__title {
    padding-left: 20px;
    top: 20px;
    font-size: 40px;
  }

  .comments-total-rating {
    font-size: 14px;
    max-width: 320px;
  }

  .comments-total-image {
    padding-left: 40px;
  }

  .reviews {
    padding-top: 50px;
  }

  .photo-gallery__container {
    display: none;
  }

  .photo-gallery__container_mobile {
    width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .photo-gallery__wrapper {
    display: block;
  }

  .photo-gallery__photo {
    width: 380px;
    height: 380px;
    border-radius: 5px;
  }

  .photo-gallery__button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 80px;
    margin-top: 15px;
  }

  .photo-gallery__button-block {
    display: block;
    width: 30px;
    height: 30px;
  }

  .photo-gallery__button-right {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-right.png);
  }

  .photo-gallery__button-left {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-left.png);
  }

  .registration {
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    max-width: 380px;
  }
  .registration__formRegister {
    width: 380px;
    min-height: 290px;
  }

  .errors {
    max-width: 340px;
  }

  .registration__select-container {
    width: 340px;
  }

  .__select {
    width: 340px;
  }

  .__select__title {
    width: 340px;
  }

  .__select[data-state="active"] .__select__label {
    width: 300px;
  }

  .registration__formRegisterTitle {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  .registration__formRegisterInputName {
    width: 340px;
  }

  ::placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }
  .registration__formRegisterInputTelephone {
    width: 340px;
  }
  .registration__formRegisterInputComment {
    width: 340px;
  }
  .registration__formRegisterButton {
    width: 280px;
  }

  .registration__maps {
    width: 380px;
    min-height: 232px;
    margin-bottom: 30px;
    /* outline: 35px red solid;*/
  }

  .registration__iframe {
    width: 380px;
    min-height: 232px;
    /*outline: 35px red solid;*/
  }
}

@media screen and (max-width: 420px) {
  .page__content {
    max-width: 420px;
  }
  .header-mobile {
    display: flex;
    justify-content: space-between;
    max-width: 420px;
    height: 40px;
    background: #ff0080;
    padding: 3px;
  }

  .header__wrapper-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
  }

  .hamburger-menu__button {
    top: 0px;
    left: 87.5%;
  }

  .hamburger-menu__wrapper {
    top: 0px;
    left: 86.6%;
  }

  .success-message {
    max-width: 300px;
    padding: 0px 0px;
  }
}

@media screen and (max-width: 400px) {
  .reviews__container {
    min-width: 380px;
  }
  .reviews__card {
    width: 380px;
  }

  .comments-total-image {
    padding: 0 0 30px 20px;
  }

  .reviews__form {
    width: 380px;
  }

  .reviews__formInputName {
    width: 340px;
  }

  .reviews__formInputTelephone {
    width: 340px;
  }

  .reviews__formInputComment {
    width: 340px;
  }

  .comments-form-rating {
    width: 340px;
    height: 60px;
  }
}

@media screen and (max-width: 400px) {
  .registration__wrap-form {
    /*  width: 330px;*/
  }
  .registration__formRegister {
    /* width: 330px;*/
    /*height: 290px;*/
    /*outline: 35px red solid;*/
  }
}

@media screen and (max-width: 380px) {
  /* .banners__nav {
    max-width: 100%;
    min-height: 206px;
  }*/

  .banners__buton {
    max-width: 100%;
    width: 350px;
    height: 40px;
  }

  .banners__title {
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-align: center;
    margin: 0 auto;
  }

  /*.banners__wrapper {
    width: 100%;
    outline: 4px red solid;
  }*/
  .stock {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
  }

  .stock__content {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
  }

  .stock__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: 0.01em;
    padding-bottom: 20px;
  }

  .stock__block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 350px;
    height: 950px;
  }

  .stock__text {
    max-width: 295px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }

  .stock__image {
    width: 300px;
    height: 300px;
  }

  .stock__paragraph {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.01em;
    padding-top: 10px;
    padding-left: 10px;
    color: #fff;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 100%;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 60px;
  }

  .photo-gallery__container_mobile {
    max-width: 330px;
  }

  .photo-gallery__photo {
    max-width: 320px;
    height: 320px;
    border-radius: 5px;
  }

  .registration__wrap-form {
    max-width: 380px;
  }

  .registration__maps {
    max-width: 330px;
    min-height: 232px;
    margin-bottom: 30px;
    /* outline: 35px red solid;*/
  }

  .registration__iframe {
    max-width: 330px;
    min-height: 232px;
    /*outline: 35px red solid;*/
  }

  .registration__wrap-form {
    max-width: 330px;
  }
  .registration__formRegister {
    max-width: 330px;
    /*height: 290px;*/
    /*outline: 35px red solid;*/
  }

  .registration__select-container {
    width: 300px;
  }

  .__select {
    width: 300px;
  }

  .__select__title {
    width: 300px;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
  }

  .__select[data-state="active"] .__select__label {
    width: 260px;
  }

  .errors {
    max-width: 300px;
  }

  /*.registration__formRegisterContainer {
    align-items: center;
    
  }*/
  .registration__formRegisterTitle {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }

  .registration__formRegisterInputName {
    width: 300px;
  }

  /*::placeholder {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
  }*/
  .registration__formRegisterInputTelephone {
    width: 300px;
  }
  .registration__formRegisterInputComment {
    width: 300px;
  }
  .registration__formRegisterButton {
    width: 240px;
  }

  .my-advantages {
    padding-top: 70px;
    background-image: url(./images/fon-advantage-mobile.png);
    height: 325px;
    background-position: center;
    margin-top: 80px;
  }

  .my-advantages__block {
    width: 320px;
    /*display: flex;
    flex-direction: column;*/
  }

  .my-advantages__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    text-align: center;
    margin-bottom: 40px;
  }

  .my-advantages__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
  }

  .my-advantages__card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 300px;
    height: 100%;
  }

  .my-advantages__image {
    height: 70px;
    width: 70px;
  }

  .my-advantages__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .my-advantages__paragraph {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    max-width: 193px;
  }

  .reviews__container {
    min-width: 330px;
  }
  .reviews__card {
    width: 330px;
  }

  .reviews__form {
    width: 330px;
  }

  .reviews__formInputName {
    width: 300px;
  }

  .reviews__formInputTelephone {
    width: 300px;
  }

  .reviews__formInputComment {
    width: 300px;
  }

  .comments-form-rating {
    width: 300px;
    height: 60px;
  }
}

@media screen and (max-width: 350px) {
  .registration {
    width: 330px;
  }
  .registration__wrap-form {
    width: 330px;
  }

  .registration__formRegister {
    width: 330px;
  }
}

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

  .banners__nav {
    max-width: 100%;
    min-height: 206px;
  }

  .banners__buton {
    max-width: 100%;
    width: 300px;
    height: 40px;
  }

  .reviews__form {
    width: 300px;
  }

  .reviews__formInputName {
    width: 280px;
  }

  .reviews__formInputTelephone {
    width: 280px;
  }

  .reviews__formInputComment {
    width: 280px;
  }

  .comments-form-rating {
    width: 280px;
    height: 50px;
  }

  .registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    max-width: 320px;
  }
  .registration__formRegister {
    max-width: 300px;
    /*height: 290px;*/
  }

  .registration__select-container {
    width: 280px;
  }

  .__select {
    width: 280px;
  }

  .__select__title {
    width: 280px;
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.15px;
  }

  .__select[data-state="active"] .__select__label {
    width: 220px;
  }

  .errors {
    max-width: 280px;
  }

  /*.registration__formRegisterContainer {
    align-items: center;
    
  }*/
  .registration__formRegisterTitle {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }

  .registration__formRegisterInputName {
    width: 280px;
  }

  ::placeholder {
    font-size: 11px;
    font-weight: 400;
    line-height: 12px;
  }
  .registration__formRegisterInputTelephone {
    width: 280px;
  }
  .registration__formRegisterInputComment {
    width: 280px;
  }
  .registration__formRegisterButton {
    width: 220px;
  }

  .registration__maps {
    width: 300px;
    height: 232px;
    margin-bottom: 30px;
  }

  .registration__iframe {
    width: 300px;
    height: 232px;
  }

  .reviews__formText {
    font-size: 10px;
  }

  .reviews__container {
    min-width: 300px;
  }

  .reviews__card {
    width: 300px;
  }
}

@media screen and (max-width: 330px) {
  .registration {
    /*outline: 3px red solid;*/
    width: 300px;
  }
  .registration__wrap-form {
    width: 300px;
  }

  .registration__formRegister {
    width: 300px;
  }

  .photo-gallery__container_mobile {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 320px) {
  .page__content {
    max-width: 320px;
  }

  .header {
    display: none;
  }

  .header-mobile {
    display: flex;
    justify-content: space-between;
    width: 320px;
    height: 40px;
    background: #ff0080;
  }

  .header__wrapper-logo {
    padding-top: 0;
  }

  .hamburger-menu {
    display: block;
    width: 13px;
    height: 13px;
    padding-top: 10px;
    padding-right: 15px;
    /*outline: 5px red solid;*/
  }

  .hamburger-menu__containerBoottom {
    /*  outline: 5px rgb(8, 155, 57) solid;*/
    padding-left: 30px;
  }

  .hamburger-menu__paragraph {
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    margin: 0;
    color: #000;
    max-width: 290px;
  }

  .hamburger-menu__title {
    margin: 0;
    color: #000;
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
  }

  /* .hamburger-menu__toggle {
    display: none;
    opacity: 0;
    

  }*/

  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span {
    transform: rotate(45deg);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span::before {
    top: 0;
    transform: rotate(0);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__button > span::after {
    top: 0;
    transform: rotate(90deg);
  }

  #hamburger-menu__toggle:checked ~ .hamburger-menu__box {
    visibility: visible;
    left: 0;
    transition: 0.7s ease-in-out;
  }

  .hamburger-menu__wrapper {
    position: fixed;
    top: 7px;
    left: 84.6%;
    z-index: 3;
    background: #ff0080;
    /*outline: 5px red solid;*/
    width: 37px;
    height: 30px;
    border-radius: 2px;

    /*@media (max-width: 320px) {
      top: 25px;
      left: 83.5%;
    }*/
  }

  .hamburger-menu__button {
    display: flex;
    align-items: center;
    position: fixed;
    top: 14px;
    left: 86%;
    width: 20px;
    height: 12px;
    cursor: pointer;
    z-index: 999999;
    /* outline: 5px red solid;*/

    /* @media (max-width: 575px) {
      left: 88%;
    }

    @media (max-width: 320px) {
      top: 32px;
      left: 84%;
    }*/
  }

  .hamburger-menu__button > span,
  .hamburger-menu__button > span::before,
  .hamburger-menu__button > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #ffffff;
    transition-duration: 0.25s;
    z-index: 999999;
  }

  .hamburger-menu__button > span {
    width: 20px;
  }

  .hamburger-menu__button > span::before {
    content: "";
    top: -8px;
    width: 30px;
  }

  .hamburger-menu__button > span::after {
    content: "";
    top: 8px;
    width: 30px;
  }

  .hamburger-menu__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: -100%;
    width: 100%;
    max-height: 68%;
    z-index: 9999;
    margin: 0;

    padding: 60px 0 0px 0;
    list-style: none;
    background: #ff0080;
    transition-duration: 0.25s;
    opacity: 0.97;
    /* outline: 22px green solid;*/
  }

  .hamburger-menu__item {
    display: block;
    padding: 8px 0 8px 30px;
    font-family: Inter;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #ffffff;
    text-decoration: none;
    transition-duration: 0.25s;
    border-bottom: 0.5px solid #ffffff;
  }

  .hamburger-menu__item_padding {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
  }

  .hamburger-menu__item:hover {
    background: #ff0000;
  }

  .hamburger-menu__icon_margin {
    margin-right: 5px;
  }

  .hamburger-menu__icon {
    width: 32px;
    height: 32px;
  }

  .media-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;

    /*  @media (max-width: 575px) {
    display: none;
  }*/
  }

  .banner {
    min-height: 238px;
    width: 320px;
    background-image: url(./images/banner-lashes-mobile-new.png);
    background-repeat: no-repeat;
    background-position: center;
  }

  .banner__text {
    padding: 22px 0 0 15px;
  }

  .banner__title {
    padding-left: 20px;
  }

  .creeping-line {
    height: 30px;
    max-width: 320px;
    justify-content: center;
  }

  .creeping-line__stock {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    height: 30px;
    padding-top: 0px;
  }

  .creeping-line__stock marquee {
    height: 30px;
  }

  .creeping-line__text {
    font-family: Inter;
    font-size: 12px;
  }

  .banners {
    padding: 10px 0 0 0;
  }

  .banners__nav {
    max-width: 100%;
    min-height: 206px;
  }

  .banners__buton {
    max-width: 100%;
    width: 300px;
    height: 40px;
  }

  /*.banners__title {
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-align: center;
    margin: 0 auto;
  }*/

  .banners__wrapper {
    width: 290px;
  }

  .stock {
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
  }

  .stock__content {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
  }

  .stock__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: 0.01em;
    padding-bottom: 10px;
  }

  .stock__block {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 320px;
    height: 950px;
  }

  .stock__text {
    max-width: 295px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }

  .stock__image {
    width: 300px;
    height: 300px;
  }

  .stock__paragraph {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.01em;
    padding-top: 5px;
    padding-left: 10px;
    color: #fff;
  }

  .my-advantages {
    padding-top: 10px;
    background-image: url(./images/fon-advantage-mobile.png);
    height: 325px;
    background-position: center;
    margin-top: 26px;
  }

  /*.my-advantages__block {
    width: 320px;
    display: flex;
    flex-direction: column;
  }*/

  .my-advantages__title {
    margin-left: 10px;
  }

  .my-advantages__card {
    margin-right: 0;
  }

  .my-advantages__text {
    margin-bottom: 5px;
  }

  /*
  

  .my-advantages__card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 300px;
    height: 100%;
  }

  .my-advantages__image {
    height: 70px;
    width: 70px;
  }

  .my-advantages__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .my-advantages__paragraph {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
    max-width: 193px;
  }*/

  .price {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 300px;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 70px;
  }

  .price__subtitle {
    padding-top: 36px;
  }

  .price__items-list {
    margin: 0;
    margin-top: 21px;
    margin-bottom: 30px;
    width: 250px;
    height: 259px;
  }

  /*.price__content {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: #ff0080;

    left: 10px;
  }

  .price__card {
    border: #d9d9d9;
    border-radius: 20px;
    width: 300px;
    height: 350px;
    border: 1px solid #ffffff;
    margin-top: 60px;
  }

  .price__subtitle {
    font-family: Great Vibes;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;

    padding-top: 30px;
    text-align: center;
  }

  .price__items-list {
    margin: 0;
    margin-bottom: 30px;
    width: 250px;
    height: 259px;
  }

  .price__item {
    font-size: 12px;
  }*/

  .photo-gallery {
    padding-top: 27px;
  }

  .photo-gallery__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 45px;
    padding-left: 10px;
    padding-bottom: 20px;
  }

  .photo-gallery__container {
    display: none;
  }

  .photo-gallery__wrapper {
    display: block;
  }

  .photo-gallery__photo {
    width: 300px;
    height: 300px;
    border-radius: 5px;
  }

  .photo-gallery__button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 80px;
    margin-top: 15px;
  }

  .photo-gallery__button-block {
    display: block;
    width: 30px;
    height: 30px;
  }

  .photo-gallery__button-right {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-right.png);
  }

  .photo-gallery__button-left {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-left.png);
  }

  .reviews {
    padding-top: 75px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /*outline:  10px red solid;*/
  }

  .reviews__title {
    left: 0px;
    top: 20px;
    padding-left: 18px;
    font-size: 40px;
  }
  .reviews__container {
    /*outline: 4px red solid;*/
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reviews__card {
    /*outline: 9px rgb(12, 167, 25) solid;*/
    min-height: 250px;
    width: 300px;
    border-radius: 20px;
    margin-bottom: 0;
    margin-bottom: 15px;
  }

  .reviews__wpapper {
    margin-left: 20px;
  }

  .reviews__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .reviews__wrapper-title {
    display: flex;
    flex-direction: column;
  }

  .reviews__wrapper-date-stars {
    display: flex;
    padding-top: 20px;
  }
  .reviews__name {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding-left: 10px;
    margin: 0;
    color: #ff0080;
  }
  .reviews__date {
    font-size: 15px;
    padding-left: 20px;
    margin: 0;
    color: #959595;
  }

  /* .reviews__comment {
    font-size: 12px;
    font-weight: 400;
    line-height: 18.15px;
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
*/
  /* .reviews__button-wrapper {
    display: flex;
    justify-content: space-between;
    width: 80px;
    margin-top: 15px;
  }
*/
  /*  .reviews__button-block {
    display: block;
    width: 30px;
    height: 30px;
  }*/

  /*  .reviews__button-right {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-right.png);
  }

  .reviews__button-left {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    background-image: url(./images/photo-gallery__button-left.png);
  }*/

  /*.reviews__wrapper-form {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    width: 320px;
  }*/
  /*.reviews__form {
    width: 300px;
    height: 264px;
    flex-direction: column;
  }*/

  /*.reviews__containerForm {
    width: 262px;
    height: 270px;
  }*/
  .reviews__formTitle {
    font-size: 12px;
    line-height: 14.52px;
    padding-top: 18px;
  }

  .reviews__formText {
    font-size: 8px;
    line-height: 9.68px;
  }

  /*.reviews__formInputName {
    font-size: 12px;
    line-height: 14.52px;
    height: 35px;
    width: 262px;
    padding: 10px;
  }*/

  ::placeholder {
    font-size: 12px;
    line-height: 14.52px;
    padding-left: 10px;
  }
  /*.reviews__formInputTelephone {
    height: 35px;
    width: 262px;
  }
  .reviews__formInputComment {
    height: 32px;
    width: 262px;
  }
  .reviews__formButtonRew {
    height: 44px;
    width: 260px;
    margin-bottom: 20px;
    color: #fff;
  }*/
  .reviews__formImage {
    display: none;
  }

  .registration {
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .success-message {
    max-width: 280px;
  }

  /*.registration__wrap-form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-flow: wrap-reverse;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    width: 320px;
  }
  .registration__formRegister {
    width: 300px;
    height: 290px;
  }

  .registration__formRegisterContainer {
    align-items: center;
    width: 300px;
  }
  .registration__formRegisterTitle {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }

  .registration__formRegisterInputName {
    width: 280px;
  }

  ::placeholder {
    font-size: 8px;
    font-weight: 400;
    line-height: 12px;
  }
  .registration__formRegisterInputTelephone {
    width: 280px;
  }
  .registration__formRegisterInputComment {
    width: 280px;
  }
  .registration__formRegisterButton {
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: -0.02em;
    text-align: center;
    width: 220px;
    margin-bottom: 20px;
    color: #fff;
  }

  .registration__maps {
    width: 300px;
    height: 232px;
    margin-bottom: 30px;
  }

  .registration__iframe {
    width: 300px;
    height: 232px;
  }*/

  /*.footer {
    background: #ff0080;
    width: 320px;
    min-height: 193px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
  }
  .footer__wrapper {
    width: 300px;
    height: 128px;
    display: flex;
    padding: 10px 0 0 10px;
  }
  .footer__lamiKo {
    margin-right: 70px;
    width: 119px;
  }

  .footer__icon_margin {
    margin-right: 5px;
  }
  .footer__title {
    padding-bottom: 10px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 800;
    line-height: 30px;
    text-align: left;
  }
  .footer__text {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 8px;
    max-width: 88px;
    margin: 0;
  }

  .footer__main {

  }
  .footer__lists {
    list-style: none;
    margin: 0;
    padding: 0;
  }*/

  /* .footer__listsTitle {
    padding-bottom: 20px;
    font-family: Inter;
    font-size: 12px;
  }*/

  /* .footer__listsItem {
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    padding-bottom: 10px;
  }*/

  /*.footer__author {
    padding-left: 15px;
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
  }*/

  .footer__wrapper {
    width: 300px;
    height: 100%;
    display: flex;
    padding: 0px 0 0 10px;
  }

  .footer__author {
    padding-left: 15px;
    font-family: Inter;
    font-size: 8px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
  }
}
