@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  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;
}

body {
  font-family: "Montserrat";
  background: #FBFBFB;
}
body.no-scroll {
  overflow: hidden;
}

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

.footer {
  position: relative;
  overflow: hidden;
  margin-top: 33px;
  padding-bottom: 23px;
  background: #FFF;
  box-shadow: 0px -4px 6px 0px rgba(0, 0, 0, 0.05);
}
.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 {
  position: relative;
  z-index: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
@media (max-width: 575px) {
  .footer__content {
    padding: 13px;
  }
}
.footer__text {
  color: #000;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}
.footer__text a {
  color: #9363C0;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}
.footer__links {
  border-top: 1px solid #CDCDCD;
  padding-top: 21px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.footer__links a, .footer__links span {
  cursor: pointer;
  color: #000;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  text-underline-offset: 4px;
}
@media (max-width: 575px) {
  .footer__links {
    margin-top: 15px;
    gap: 10px;
    justify-content: flex-start;
  }
}

.footer-img-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 575px) {
  .footer-img-right {
    width: 160px;
    height: 160px;
  }
  .footer-img-right img {
    width: 100%;
    height: 100%;
  }
}

.footer-img-left {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(-1);
}
@media (max-width: 575px) {
  .footer-img-left {
    display: none;
  }
}

.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 {
  max-width: 160px;
  height: 42px;
  border-radius: 100px !important;
  background: #8C67BE !important;
  justify-content: center !important;
}
@media (max-width: 575px) {
  .cookie__btn {
    width: 100%;
    text-align: center;
  }
}

.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 {
  padding: 30px;
  overflow: hidden;
  position: relative;
  top: -20px;
  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);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
@media (max-width: 768px) {
  .modal__content {
    gap: 10px;
    padding: 15px;
  }
}
.modal__title {
  border-radius: 20px 20px 0 0;
  position: relative;
  z-index: 2;
  background: #8969BD;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .modal__title {
    padding: 10px;
  }
}
.modal__input-block {
  padding: 20px;
  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%;
  height: 40px;
}
.modal__input svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.modal__input input {
  height: 40px;
  width: 100%;
  border-radius: 100px;
  border: 1px solid #B9B9B9;
  padding: 14px;
  color: #000;
  font-size: 15px;
  line-height: 17px;
}
.modal__send {
  max-width: 445px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 32px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ED57B0 0%, #FC6767 100%);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .modal__send {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

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: 20px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(0px 2px 7px rgba(0, 0, 0, 0.15));
}
.info__card span {
  position: relative;
  color: #535353;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  padding: 8px;
  border-bottom: 1px solid #EFEFEF;
}
.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;
}

.actions {
  margin-top: 20px;
}
.actions__content {
  display: flex;
  position: relative;
  align-items: center;
  overflow: hidden;
  padding: 0px 18px;
  width: 100%;
  border-radius: 20px;
  gap: 5px;
  border: 1px solid #E9E9E9;
  background: #FFF;
}
@media (max-width: 768px) {
  .actions__content {
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }
}
.actions__img {
  align-self: flex-start;
  transform: translateY(-12px);
  width: 338px;
  min-width: 300px;
  height: 80px;
}
.actions__img img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .actions__img {
    align-self: center;
    transform: translateY(-18px);
  }
}
.actions__text {
  color: #141414;
  font-size: 17px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .actions__text {
    text-align: center;
  }
}
.actions__link {
  display: flex;
  max-width: 260px;
  width: 100%;
  gap: 20px;
  padding: 5px 7px 5px 13px;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  border: 1px solid #DEDEDE;
  background: #FFF;
  color: #8B68BE;
  font-size: 18px;
  font-weight: 600;
}

.btn {
  padding: 5px 6px 5px 18px;
  display: flex;
  border-radius: 40px;
  background: linear-gradient(92deg, #5E84B1 6.41%, #9C5CC2 98.4%);
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
}

.header {
  padding-top: 20px;
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
}
.header__content {
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 20px;
  width: 100%;
  justify-content: center;
  background: linear-gradient(111deg, #4692AA 0.8%, #A854C6 50.91%, #4E86A6 97.93%);
}
.header__text {
  position: relative;
  z-index: 4;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  padding: 33px 9px;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .header__text {
    gap: 7px;
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .header__text {
    position: relative;
    right: -40px;
  }
}
@media (max-width: 360px) {
  .header__text {
    right: -70px;
  }
}
.header__logo {
  width: 108px;
  height: 34px;
}
.header__logo img {
  width: 100%;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo {
    width: 86px;
    height: 33px;
  }
  .header__logo img {
    height: 33px;
  }
}
.header__title {
  margin-top: 8px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header__title {
    margin-top: 0;
    width: 100%;
  }
}
.header__subtitle {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  padding: 12px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.1);
}
.header__img {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .header__img {
    max-width: 231px;
    min-width: 231px;
    width: 100%;
    height: 211px;
  }
  .header__img img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .header__img {
    position: relative;
    right: -60px;
    transform: translateX(-40px);
  }
}

.catalog {
  position: relative;
  z-index: 3;
}
.catalog__container {
  position: relative;
  z-index: 1;
  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: 15px;
  row-gap: 15px;
  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-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.catalog__cart-links a{
  color: #1E1A99;
  text-align: center;
  font-size: 12px;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
.catalog__spoiler{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catalog-spoiler{
  text-align: center;
  color: #1E1A99;
  text-align: center;
  font-size: 12px;
  text-decoration-line: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.catalog-spoiler.active{
  display: none;
}
.spoiler-content{
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.spoiler-content.active{
  display: flex;
}
.spoiler-content a{
  color: #1E1A99;
  text-align: center;
  font-size: 12px;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
.catalog__cart {
  overflow: hidden;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
}
.catalog__cart-rait {
  display: flex;
  align-items: center;
  color: #141414;
  gap: 3px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.catalog__cart-rait svg.active path {
  fill: #DD9553;
}
.catalog__cart-content {
  background: #ffffff;
  border-radius: 10px 10px 0px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog__cart-header {
  border-radius: 10px 10px 0px 0px;
  background: #F4F4F4;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__cart-description-top {
  padding: 12px 6px;
  text-align: center;
  border-radius: 100px;
  color: #141414;
  font-family: Montserrat;
  font-size: 15px;
}
.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: flex;
  flex-direction: column;
  gap: 19px;
}
@media (max-width: 575px) {
  .catalog__cart-info {
    gap: 19px;
  }
}
.catalog__cart-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7px;
}
.catalog__cart-text {
  color: #030303;
  font-size: 14px;
  font-weight: 500;
}
.catalog__cart-text:nth-child(even) {
  font-weight: 700;
}
.catalog__cart-description-bottom {
  padding: 10px 20px;
  background: #F4F4F4;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  text-align: left;
}
.cart-back-svg {
  top: 80px;
  right: -10px;
  position: absolute;
}

.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 {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq__title p {
  color: #030303;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}
.faq__title-top-left {
  position: absolute;
  width: 20.919px;
  height: 20.919px;
  background: #FDB913;
  top: -20px;
  left: 0;
  border-radius: 100%;
}
.faq__title-bottom-left {
  position: absolute;
  width: 20.919px;
  height: 20.919px;
  background: #0072D8;
  bottom: 0;
  left: 30px;
  border-radius: 100%;
}
.faq__title-top-right {
  position: absolute;
  width: 20.919px;
  height: 20.919px;
  background: #FDB913;
  top: -20px;
  right: 0;
  border-radius: 100%;
}
.faq__title-bottom-right {
  position: absolute;
  width: 20.919px;
  height: 20.919px;
  background: #0072D8;
  bottom: 0;
  right: 30px;
  border-radius: 100%;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  width: 100%;
}
.faq__block {
  cursor: pointer;
  border-radius: 10px;
  background: #FFF;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
  transition: all 0.5s;
}
.faq__block.active {
  border-color: #0072D8;
  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: none;
}
.faq__block.active .plus__block svg {
  transform: rotate(180deg);
}
.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 {
  transform: rotate(45deg);
  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: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
@media (max-width: 479.98px) {
  .faq__block-title {
    font-size: 14px;
  }
}
.faq__block-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-top: 0;
  display: none;
  transition: all 0.5s;
}
.faq__block-info p, .faq__block-info span {
  color: #454545;
  font-size: 13px;
  line-height: 17px;
}
.faq__block-info p {
  margin-top: 8px;
}
.faq__block-info ul {
  margin-top: 4px;
}
.faq__block-info ul li {
  list-style: inside;
  margin-top: 4px;
  color: #454545;
  font-size: 13px;
  font-weight: 300;
  line-height: 17px;
}
.faq__block-info span {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq__block-info .faq__block-info-title {
  margin-top: 12px;
  color: #454545;
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
}
@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: 17px;
  height: 3px;
  background-color: #FFF;
}
