* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Geometria-Bold.ttf");
  src: local("Helvetica-Bold"), local("Helvetica-Bold"), url("./fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica.ttf");
  src: local("Helvetica"), local("Helvetica"), url("./fonts/Helvetica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("./fonts/Helvetica-Oblique.ttf");
  src: local("Helvetica-Oblique"), local("Helvetica-Oblique"), url("./fonts/Helvetica-Oblique.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
body {
  font-family: "Helvetica", sans-serif;
  background: #FFF;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  background-image: url("./img/button.svg");
  background-repeat: no-repeat;
  width: 227px;
  height: 55px;
  color: #FFF;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  overflow: hidden;
}

.footer {
  margin-top: 33px;
  padding-bottom: 23px;
}
.footer__logo {
  display: flex;
  align-self: center;
  width: 190px;
  height: 70px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .footer__content {
    padding: 13px;
  }
}
.footer__text {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}
.footer__text a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
}
.footer__links {
  margin: 0 auto;
  max-width: 912px;
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer__links a, .footer__links span {
  cursor: pointer;
  color: #000;
  text-align: center;
  font-size: 12px;
  line-height: 17px;
}
@media (max-width: 575px) {
  .footer__links {
    margin-top: 15px;
    gap: 10px;
  }
}

.cookie {
  position: fixed;
  bottom: 40px;
  z-index: 10;
  width: 100%;
  padding: 15px;
}
.cookie.remove-cookie {
  display: none;
}
.cookie__container {
  max-width: 1110px;
  display: flex;
  margin: 0 auto;
  gap: 14px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 575px) {
  .cookie__container {
    flex-direction: column;
    padding: 15px;
  }
}
.cookie__content {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 575px) {
  .cookie__content {
    display: inline;
    align-items: flex-start;
  }
}
.cookie__img {
  float: left;
}
@media (max-width: 575px) {
  .cookie__img {
    shape-outside: circle(50%);
    margin: 10px;
    width: 34px;
    height: 34px;
  }
  .cookie__img img {
    width: 100%;
    height: 100%;
  }
}
.cookie__text {
  max-width: 757px;
  width: 100%;
  color: #000;
  font-size: 15px;
  line-height: 17px;
}
.cookie__btn {
  margin: 0 auto;
  min-width: 227px;
  cursor: pointer;
  border-radius: 8px;
  background: #1DAA2B !important;
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.overlay.active-overlay {
  display: block;
}

.modal {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 625px;
}
@media (max-width: 768px) {
  .modal {
    transform: translate(0, -50%);
    left: 0;
    width: auto;
  }
}
.modal.active-modal {
  display: block;
}
.modal__content {
  margin: 0 auto;
  max-width: 635px;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.modal__title {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}
.modal__input-block {
  max-width: 445px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__input-block label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.modal__input {
  position: relative;
  width: 100%;
}
.modal__input input {
  width: 100%;
  border-radius: 100px;
  border: 1px solid #B9B9B9;
  padding: 14px 20px;
  color: #000;
  font-size: 15px;
  line-height: 17px;
}
.modal__send {
  margin: 0 auto;
  max-width: 445px;
  background-position: center;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.info {
  padding: 47px 0;
}
.info .faq__title {
  margin-bottom: 10px;
}
.info__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.info__card {
  max-width: 350px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #CCC;
  background: #FFF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.info__card span {
  position: relative;
  color: #454545;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  padding: 8px;
  border-bottom: 1px solid #CCC;
}
.info__card span.title {
  color: #030303;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
}
.info__card span:last-child {
  border-bottom: transparent;
}
.info__card-img {
  position: absolute;
  z-index: 0;
  top: 40%;
  left: 0;
  transform: scaleX(-1);
}

.header {
  position: relative;
  padding-top: 15px;
  background: radial-gradient(80.59% 80.38% at 47.29% 100%, rgba(255, 105, 0, 0.2) 0%, rgba(249, 230, 216, 0.2) 100%), radial-gradient(943.89% 78.89% at 72.22% 100%, #F9E4D3 0%, rgba(248, 226, 203, 0.56) 100%);
}
@media (max-width: 575px) {
  .header {
    overflow: hidden;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 68px;
  position: relative;
}
@media (max-width: 575px) {
  .header__container {
    gap: 1px;
  }
}
.header__imgs {
  position: relative;
  max-width: 180px;
}
@media (max-width: 575px) {
  .header__imgs {
    align-self: flex-end;
  }
}
.header .coin-1 {
  position: absolute;
  z-index: 0;
  left: -20px;
  top: 50px;
  width: 20px;
  height: 20px;
}
.header .coin-1 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .header .coin-1 {
    right: 30px;
    top: 50px;
    left: auto;
  }
}
.header .coin-2 {
  position: absolute;
  z-index: 0;
  left: -20px;
  bottom: 110px;
  width: 17px;
  height: 17px;
}
.header .coin-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .header .coin-2 {
    right: 20px;
    bottom: 30px;
    left: auto;
  }
}
.header .coin-3 {
  position: absolute;
  z-index: 0;
  right: 20px;
  top: 50px;
}
@media (max-width: 575px) {
  .header .coin-3 {
    right: -50px;
    top: 20px;
  }
}
.header .coin-4 {
  position: absolute;
  z-index: 0;
  right: -10px;
  bottom: 60px;
  width: 17px;
  height: 17px;
}
.header .coin-4 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .header .coin-4 {
    top: 10px;
    right: -100%;
  }
}
.header__img {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .header__img {
    max-width: 180px;
    min-width: 140px;
    height: 216px;
  }
  .header__img img {
    width: 100%;
    height: 100%;
  }
}
.header__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 575px) {
  .header__content {
    gap: 7px;
    position: relative;
    padding-bottom: 10px;
  }
}
.header__logo {
  margin-bottom: 7px;
  width: 116px;
  height: 83px;
}
.header__logo img {
  width: 100%;
  height: 83px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 575px) {
  .header__logo {
    width: 98px;
    height: 70px;
    align-self: center;
  }
  .header__logo img {
    height: 70px;
  }
}
.header__title {
  color: #32363D;
  font-size: 22px;
  line-height: 20px;
  max-width: 473px;
}
@media (max-width: 575px) {
  .header__title {
    font-size: 17px;
    line-height: 17px;
  }
}
.header__recomended {
  color: #32363D;
  font-size: 17px;
  line-height: 17px;
}
.header__recomended span {
  color: #32363D;
  font-size: 24px;
  font-weight: 700;
  line-height: 17px;
}

.catalog {
  position: relative;
  z-index: 3;
}
.catalog__container {
  padding: 38px 15px;
  display: flex;
  flex-direction: column;
}
.catalog__top {
  display: flex;
  align-self: center;
  padding: 30px 0;
  align-items: center;
  gap: 5px;
  color: #8C8C8C;
  font-size: 21px;
  line-height: 17px;
}
.catalog__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  row-gap: 10px;
  justify-items: center;
}
@media (max-width: 991px) {
  .catalog__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .catalog__content {
    grid-template-columns: 1fr;
  }
}
.catalog__cart {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.catalog__cart-rait {
  position: absolute;
  top: -20px;
  left: -10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.catalog__cart-rait svg {
  position: relative;
  z-index: 0;
}
.catalog__cart-rait span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
  font-weight: 700;
  line-height: 17px;
  color: #ffffff;
}
.catalog__cart-content {
  background: #ffffff;
  border-radius: 40px 40px 0px 0px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog__cart-header {
  border-radius: 40px;
  background-color: #ffffff;
  display: flex;
  padding-bottom: 0;
  justify-content: center;
  align-items: center;
}
.catalog__cart-logo {
  margin-top: 15px;
  max-height: 43px;
  max-width: 167px;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.catalog__cart-logo img {
  height: 43px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__cart-fill {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.catalog__cart-fill img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__cart-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
@media (max-width: 575px) {
  .catalog__cart-info {
    gap: 10px;
  }
}
.catalog__cart-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.catalog__cart-text {
  color: #030303;
  font-size: 12px;
  font-weight: 500;
}
.catalog__cart-text:nth-child(even) {
  font-weight: 700;
}
.catalog__cart-description-bottom {
  color: #696969;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  line-height: 13px;
  margin-top: 16px;
  padding-bottom: 10px;
}

.btn-container {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.faq {
  padding: 48px 0px;
}
.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 9;
  width: 100%;
}
.faq__title-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.faq__title-content img {
  min-width: 60px;
}
.faq__title {
  margin: 0 auto;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 21px;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  width: 100%;
}
.faq__block {
  cursor: pointer;
  border-radius: 4px;
  border: 1px solid rgba(204, 204, 204, 0.8);
  background: #FFF;
  transition: all 0.5s;
}
.faq__block.active {
  transition: all 0.5s;
}
.faq__block.active .faq__block-header .faq__block-title {
  color: #000;
}
.faq__block.active .faq__sun {
  visibility: visible;
  opacity: 1;
}
.faq__block.active .plus__block .plus-block-minus {
  display: block;
}
.faq__block.active .plus__block svg {
  transform: rotate(30deg);
  display: none;
}
.faq__block.active .faq__block-info {
  display: block;
}
.faq__block-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.faq__block-header svg {
  transition: 0.3s;
}
@media (max-width: 575px) {
  .faq__block-header {
    padding: 10px;
  }
}
.faq__block-title {
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  color: #3D3D3D;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 479.98px) {
  .faq__block-title {
    font-size: 14px;
  }
}
.faq__block-info {
  margin-top: 8px;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-top: 0;
  display: none;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
  transition: all 0.5s;
}
.faq__block-info p {
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .faq__block-info {
    font-size: 11px;
    padding: 10px;
    padding-top: 0;
  }
}
.faq .plus__block {
  transition: 0.3s;
}
.faq .plus__block .plus-block-minus {
  display: none;
  width: 14px;
  height: 2px;
  background: #D12121;
}
