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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p,
figure {
  margin: 0;
}

.text-bold {
  font-weight: bold;
}

.text-padding {
  padding: 0 0.5rem;
}

.text-center {
  text-align: center;
}

.line-through {
  text-decoration: line-through;
}

.text-red {
  color: #e70000;
}

.text-green {
  color: #1eb336;
}

.text-gray {
  font-size: 1.2rem;
  color: #aaaaaa;
}

.text-gray {
  color: #a7a7a7;
}

.text-white {
  color: white;
}

.text-bg-green {
  background-color: #19ae30;
}

.text-bg-red {
  background-color: #cf0000;
}

.text-bg-yellow {
  background-color: #f2cc0f;
}

.red {
  color: #bc1212;
}

.green {
  color: #23aa1f;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  background: #188f14;
  border-radius: 15px;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn span {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(52, 120, 49, 0.6901960784);
}
.btn img {
  width: 34px;
  height: 34px;
}
.btn:hover {
  background-color: #23aa1f;
}

.phone-button--hidden {
  display: none;
  width: 100%;
  border: 2px solid #23aa1f;
  background-color: white;
}
.phone-button--hidden span {
  color: #23aa1f;
}
.phone-button--hidden:hover {
  background-color: white;
}

.header {
  background: #000000 url("../images/header-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.header__container {
  width: 100%;
  max-width: 994px;
  padding: 15px 0;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  margin-right: 25px;
}
.header__link {
  font-size: 20px;
  line-height: 24px;
  color: white;
  font-weight: 300;
}

.hero {
  background-image: url("../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero__title {
  font-family: "Amiri", serif;
  font-size: 56px;
  line-height: 72px;
  font-weight: 700;
  color: #323232;
}
.hero__heading {
  font-family: "Amiri", serif;
  font-size: 90px;
  line-height: 89px;
  font-weight: 700;
  color: #323232;
}
.hero__heading--gold {
  color: #b58d5a;
}
.hero__text {
  font-size: 20px;
  line-height: 36px;
  font-weight: 300;
  color: #323232;
}
.hero__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.hero__image-mobile {
  display: none;
}
.hero__badge {
  position: absolute;
  top: 0;
  right: 0;
}
.hero__col {
  position: relative;
  padding: 90px 0;
}

.lead {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #323232;
  margin-bottom: 25px;
}

.paragraph {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #323232;
  margin-bottom: 25px;
}

.list {
  margin-bottom: 30px;
}
.list__row {
  display: grid;
  grid-template-columns: 60% 40%;
}
.list__list {
  margin-bottom: 30px;
  list-style-type: none;
}
.list__list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.list__list li:not(:last-of-type) {
  margin-bottom: 30px;
}
.list .btn {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.list .btn span {
  font-size: 28px;
  line-height: 34px;
}

.delivery {
  background-color: #e9e2d8;
  padding: 20px 30px;
  margin-bottom: 30px;
}
.delivery--img-mobile {
  display: none;
}
.delivery img {
  margin: 0 auto 30px;
}
.delivery p {
  margin-bottom: 0;
}

.human__row {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
}

.bracelet__row {
  display: grid;
  grid-template-columns: 1fr 439px;
  align-items: center;
  grid-gap: 30px;
}
.bracelet img {
  max-width: 439px;
  width: 100%;
}

.slider {
  margin-top: 85px;
  position: relative;
}

.swiper {
  padding: 50px 15px 0 !important;
}

.slider-container {
  width: 100%;
  max-width: 814px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.swiper-wrapper .swiper-slide {
  height: unset;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  width: 28px;
  height: 28px;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.slide {
  border: 1px solid #8e8e8e;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  padding: 70px 20px 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
.slide__header {
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.slide__body {
  padding-top: 20px;
  min-height: 539px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slide__body .paragraph {
  font-style: italic;
  font-weight: 300;
}
.slide__image {
  margin-inline: auto;
}
.slide__avatar {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 110px;
  margin: 0;
}
.slide__name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #b58d5a;
  margin-bottom: 8px;
}
.slide__stars img {
  margin-inline: auto;
}
.slide__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.slide__date {
  font-size: 18px;
  line-height: 28px;
  color: #b58d5a;
}
.slide__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.slide__inner img {
  width: 22px;
  height: 20px;
  margin-bottom: 2px;
}
.slide__inner span {
  font-size: 18px;
  line-height: 28px;
  color: #8e8e8e;
}

.product-section {
  background-image: url("../images/product-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 0 70px;
}

.product {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.368627451);
}
.product__heading {
  font-family: "Amiri", serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #323232;
}
.product__heading--gold {
  color: #b58d5a;
}
.product__heading--green {
  color: #23aa1f;
}
.product__paragraph {
  margin-bottom: 47px;
}
.product__content {
  border: 2px solid #b58d5a;
  border-radius: 4px;
  padding: 20px 50px;
  background-color: white;
}
.product__content--summary {
  padding: 15px;
}
.product__image {
  max-width: 400px;
}
.product__row {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  margin-bottom: 15px;
}
.product__title {
  font-size: 50px;
  line-height: 67px;
  font-weight: 700;
  color: #323232;
  text-align: center;
  margin-bottom: 10px;
}
.product__title--green {
  color: #23aa1f;
}
.product__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product__price {
  margin-bottom: 10px;
}
.product__price--red {
  color: #bc1212;
  font-weight: 700;
  text-decoration: line-through;
  font-size: 18px;
  line-height: 28px;
}
.product__price--green {
  color: #23aa1f;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
}
.product .btn {
  margin-inline: auto;
  padding: 15px 34px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.16);
}
.product .btn span {
  font-size: 28px;
  line-height: 37px;
}
.product .paragraph {
  margin-bottom: 17px;
  text-align: center;
}

.text-shadow {
  text-shadow: 0px 3px 50px rgba(0, 25, 255, 0.5019607843);
}

.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
}

.summary-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #009f20;
  padding: 1.5rem;
  border: 1px solid #009f20;
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  border-radius: 1rem;
  margin: 1.5rem auto;
  transition: all 0.35s ease-in-out;
}
.summary-button:hover {
  cursor: pointer;
  background-color: white;
  color: #009f20;
}

.image-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 50%;
  margin: 2.5rem 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin: 0;
}
ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

.container {
  width: 100%;
  max-width: 994px;
  margin-left: auto;
  margin-right: auto;
}
.container--summary {
  max-width: 1160px;
  padding-top: 55px;
  position: relative;
  z-index: 2;
}

.main-top {
  margin-top: 50px;
  margin-bottom: 80px;
}

.main-top,
.main-bottom,
.main-summary {
  background-color: white;
}

.comments {
  padding: 100px 0 80px;
}
.comments__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #323232;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 1px solid #323232;
}
.comments__btn-icons {
  height: 30px;
}
.comments__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.comments__btn-wrapper .btn {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.comments__btn-wrapper .btn span {
  font-size: 28px;
  line-height: 37px;
}
.comments__inner {
  position: relative;
}
.comments__buttons {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 20px 15px;
}
.comments__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.comments__btn-icons {
  cursor: pointer;
}
.comments__separator {
  background-color: #8e8e8e;
  width: 2px;
  height: 30px;
}
.comments__btn {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  padding: 8px 15px;
  color: white;
  background-color: #8e8e8e;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.comments__btn:hover {
  background-color: #5f6468;
}
.comments__error {
  font-size: 12px;
  line-height: 20px;
  color: #bc1212;
  display: none;
}

.summary .btn {
  margin-bottom: 20px;
  padding: 15px;
}
.summary .btn span {
  font-size: 22px;
}

.form-add-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.form-add-comment input {
  margin-bottom: 0.8rem;
  padding: 10px 25px;
}
.form-add-comment textarea {
  width: 100%;
  resize: none;
  min-height: 25rem;
  padding: 25px 25px 0 25px;
}
.form-add-comment input,
.form-add-comment textarea {
  outline: none;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  border: 0;
  line-height: 2.1rem;
  background-color: #f2f2f2;
}
.form-add-comment input::-moz-placeholder, .form-add-comment textarea::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.form-add-comment input::placeholder,
.form-add-comment textarea::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 2.1rem;
}

.comments-wrapper .comment,
.added-comments .comment {
  display: flex;
  margin-bottom: 2.3rem;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
}
.comments-wrapper .comment .comment-avatar,
.added-comments .comment .comment-avatar {
  width: 48px;
  height: 48px;
  margin-right: 2.4rem;
}
.comments-wrapper .comment .comment-content-wrapper .comment-row,
.added-comments .comment .comment-content-wrapper .comment-row {
  display: flex;
}
.comments-wrapper .comment .comment-content-wrapper .comment-row-image,
.added-comments .comment .comment-content-wrapper .comment-row-image {
  display: flex;
  flex-direction: column;
}
.comments-wrapper .comment .comment-content-wrapper .comment-author,
.added-comments .comment .comment-content-wrapper .comment-author {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  margin-right: 0.9rem;
  margin-bottom: 0.8rem;
}
.comments-wrapper .comment .comment-content-wrapper .comment-date,
.added-comments .comment .comment-content-wrapper .comment-date {
  color: #7f919e;
  font-size: 1.4rem;
}
.comments-wrapper .comment .comment-content-wrapper .comment-content,
.added-comments .comment .comment-content-wrapper .comment-content {
  margin-bottom: 1.1rem;
}
.comments-wrapper .comment .comment-content-wrapper .comment-attachment,
.added-comments .comment .comment-content-wrapper .comment-attachment {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 20rem;
  margin-bottom: 1.8rem;
}

.footer {
  padding: 50px 0 40px;
  background-color: #323232;
}
.footer--summary {
  padding-top: 165px;
  margin-top: -120px;
}
.footer__text {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
}
.footer__text:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 79rem;
}
.footer .copyright {
  margin-bottom: 2.3rem;
}
.footer .attachments {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.footer .attachments a {
  text-decoration: underline;
}
.footer .company-address {
  margin-top: 2.3rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 1000px) {
  .header__container {
    padding: 15px;
  }
  .header__nav {
    display: none;
  }
  .header__logo img {
    max-width: 174px;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .hero {
    background-image: url("../images/hero-bg-mobile.png");
  }
  .hero__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero__image-mobile {
    display: block;
    max-width: 470px;
    margin-inline: auto;
    width: 100%;
  }
  .hero__col {
    padding: 0;
  }
  .hero__text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .product__bracelet {
    background-image: none;
  }
  .product__row {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .bracelet__row {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .delivery {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
  }
  .hero__heading {
    font-size: 48px;
    line-height: 52px;
  }
  .list__picture {
    display: none;
  }
  .list__row {
    grid-template-columns: repeat(1, 1fr);
  }
  .list .btn {
    margin-inline: auto;
  }
  .human__row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .product__heading {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 525px) {
  .header .btn {
    padding: 7px;
  }
  .header .btn span {
    font-size: 14px;
    line-height: 17px;
  }
  .header__logo img {
    max-width: 150px;
  }
  .hero__badge {
    width: 70px;
    height: auto;
  }
  .delivery {
    padding: 0 0 10px 0;
  }
  .delivery--img-desktop {
    display: none;
  }
  .delivery--img-mobile {
    display: block;
  }
  .delivery .paragraph {
    padding: 10px;
  }
  .comments__buttons {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
  .comments__btn {
    width: 100%;
  }
  .comments__box:last-of-type {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .product__title {
    font-size: 30px;
    line-height: 40px;
  }
  .product__row {
    grid-gap: 20px;
  }
  .product__image {
    width: 100%;
  }
  .product__content {
    padding: 15px;
  }
  .paragraph {
    font-size: 16px;
  }
  .summary .btn span {
    font-size: 18px;
    line-height: 24px;
  }
}/*# sourceMappingURL=styles.css.map */