@charset "UTF-8";

@font-face {
  font-family: "RobotoCondensed";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Light.woff2") format("woff2"), url("../fonts/RobotoCondensed-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "RobotoCondensed";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Regular.woff2") format("woff2"), url("../fonts/RobotoCondensed-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "RobotoCondensed";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Medium.woff2") format("woff2"), url("../fonts/RobotoCondensed-Medium.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "RobotoCondensed";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/RobotoCondensed-Bold.woff2") format("woff2"), url("../fonts/RobotoCondensed-Bold.woff") format("woff");
  font-display: swap;
}

*,
:before,
:after {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  scroll-behavior: auto;
  --app-height: 100vh;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #EC659E;
}

body,
html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "RobotoCondensed", sans-serif;
  line-height: 1.45;
  color: #6A357E;
}

a {
  text-decoration: underline;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong,
b {
  font-weight: bold;
}

p,
blockquote,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}

ul,
ol {
  padding-left: 1.3em;
}

h1,
h2 {
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: bold;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: #EC659E;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  min-height: 70px;
  border: none;
  border-radius: 100px;
  background: #EC659E;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.btn>span {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  padding: 10px 25px;
}

.btn .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  border-radius: 50%;
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  color: #EC659E;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.btn .ic:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.btn .ic-more {
  font-size: 14px;
}

.btn:hover {
  background-color: #EE7A30;
}

.btn:hover .ic {
  color: #EE7A30;
}

.btn:hover .ic-more:before {
  -webkit-transform: translate(3px, -3px);
  -ms-transform: translate(3px, -3px);
  transform: translate(3px, -3px);
}

.btn:hover .ic-right:before {
  -webkit-transform: translate(3px, 0);
  -ms-transform: translate(3px, 0);
  transform: translate(3px, 0);
}

.btn._glare:after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  background: #fff;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  opacity: 0.5;
  -webkit-animation: btn-glare 4s infinite;
  animation: btn-glare 4s infinite;
}

.btn._medium {
  min-height: 60px;
}

.btn._medium .ic {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.btn[disabled],
.btn.disabled {
  pointer-events: none;
  cursor: default;
  background: #F1EBF3;
  color: #b7a8bd;
}

.btn[disabled] .ic,
.btn.disabled .ic {
  color: #b7a8bd;
}

.btn[disabled]._glare:after,
.btn.disabled._glare:after {
  display: none;
}

@-webkit-keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
    transform: skewX(-28deg);
  }

  40%,
  100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
    transform: skewX(-28deg);
  }
}

@keyframes btn-glare {
  0% {
    right: 100%;
    -webkit-transform: skewX(-28deg);
    transform: skewX(-28deg);
  }

  40%,
  100% {
    right: -150%;
    -webkit-transform: skewX(-28deg);
    transform: skewX(-28deg);
  }
}

.close-btn {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  border-radius: 0 20px 0 20px;
  background: #EC659E;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.close-btn:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.close-btn:hover {
  background-color: #EE7A30;
}

.close-btn:hover:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.social__head {
  margin-bottom: 10px;
  line-height: 1.35;
  font-weight: 300;
}

.social__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.social__grid .social-item {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.social._top {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: none;
}

.social._top._show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social._top .social__head {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0 15px 0 0;
  max-width: 150px;
}

.social-item {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(236, 101, 158, 0.1);
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #EC659E;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.social-item:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  background-color: #EE7A30;
  color: #fff;
}

.social-item.ic-youtube:hover {
  background-color: #FF0033;
}

.social-item.ic-facebook:hover {
  background-color: #0866FF;
}

.nav-arrow-prev,
.nav-arrow-next {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -30px 0 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #EC659E;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  -webkit-transition: opacity 0.15s, background-color 0.3s;
  transition: opacity 0.15s, background-color 0.3s;
}

.nav-arrow-prev:hover,
.nav-arrow-next:hover {
  background-color: #EE7A30;
}

.nav-arrow-prev.swiper-button-disabled,
.nav-arrow-next.swiper-button-disabled {
  cursor: default;
  opacity: 0;
}

.nav-arrow-prev.swiper-button-lock,
.nav-arrow-next.swiper-button-lock {
  display: none !important;
}

.nav-arrow-prev {
  left: 0;
}

.nav-arrow-next {
  right: 0;
}

.header {
  padding: 20px 0;
}

.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
}

.header__logo {
  display: inline-block;
  margin-right: auto;
}

.header__logo img {
  display: block;
  max-height: 50px;
}

.header__sep {
  display: none;
}

.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__lang li {
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 300;
}

.header__lang li:nth-child(n+2) {
  margin-left: 10px;
  padding-left: 24px;
}

.header__lang li:nth-child(n+2):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  border-bottom: 1px solid currentColor;
}

.header__lang span {
  cursor: default;
  color: #EC659E;
}

.header__lang a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__lang a:hover {
  color: #EC659E;
}

.bann {
  overflow: hidden;
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: url("../img/bg.jpg") top center/cover;
  min-height: var(--app-height);
  padding: 0 0 40px;
}

.bann:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
}

.bann .header {
  margin-bottom: 20px;
}

.bann__img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
  margin-left: 100px;
}

.bann__img-ellips {
  position: absolute;
  left: -9%;
  bottom: -3%;
  width: 118%;
  background: #F8D85D;
  border-radius: 50%;
  opacity: 0.4;
}

.bann__img-ellips.aos-animate {
  opacity: 0.4 !important;
}

.bann__img-ellips:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.bann__img img {
  position: relative;
  z-index: 1;
  max-width: 450px;
  max-height: 500px;
}

.bann-box {
  max-width: 640px;
  padding: 60px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.bann-box> :last-child {
  margin-bottom: 0;
}

.bann-box__head {
  word-wrap: break-word;
}

.bann-box__descr {
  font-weight: bold;
  line-height: 1.55;
  font-size: 20px;
}

.bann-box__action {
  margin-top: 40px;
}

.bann-box__action .btn {
  min-width: 300px;
}

.bann-bot {
  margin-top: 40px;
}

.bann-bot__disclaimer {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 14px;
}

.bann-bot__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 40px;
}

.bann-bot__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 60px;
  font-weight: 300;
}

.bann-bot__info>* {
  margin-bottom: 0;
}

.bann-bot .social {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
}

.result-products {
  margin: 0 -20px 20px;
  padding: 0 20px;
}

.result-products .nav-arrow-prev,
.result-products .nav-arrow-next {
  top: 200px;
}

.result-product__subhead {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #EC659E;
}

.result-product__head {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #EC659E;
}

.result-product__img {
  cursor: pointer;
  display: block;
  position: relative;
  margin-bottom: 10px;
  border-radius: 20px;
  height: 280px;
}

.result-product__img img {
  max-width: 87%;
  max-height: 87%;
}

.result-product__img:after {
  content: "Нажми и узнай подробнее";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 0.3em 0.6em 0.2em;
  max-width: 100%;
  border-radius: 100px;
  background: #EC659E;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
}

[lang="az"] .result-product__img:after {
  content: "Buraya toxun və ətraflı məlumat al";
}

.result-product__descr {
  padding-right: 10px;
}

.result-product__descr::first-letter {
  text-transform: uppercase;
}

.result-product> :last-child {
  margin-bottom: 0;
}

.quiz.popup {
  overflow: hidden;
}

.quiz__step:nth-child(n+2) {
  display: none;
}

.quiz__top {
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
  color: #EC659E;
}

.quiz__top:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  border-bottom: 1px solid currentColor;
}

.quiz__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(106, 53, 126, 0.1);
}

.quiz__title>* {
  margin-bottom: 10px;
}

.quiz__options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(106, 53, 126, 0.1);
}

.quiz__options._4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.quiz__options._auto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quiz__options._images {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.quiz__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.quiz__action-count {
  font-weight: 500;
  line-height: 1;
}

.quiz__action-count span {
  font-weight: 300;
  font-size: 60px;
  color: #EC659E;
}

.quiz__progress {
  position: relative;
  margin-top: 20px;
  height: 10px;
  border-radius: 5px;
  background: rgba(106, 53, 126, 0.1);
}

.quiz__progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background: #EC659E;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.quiz__result {
  display: none;
}

.quiz__result-item {
  display: none;
}

.quiz__result-item> :last-child {
  margin-bottom: 0;
}

.quiz-option {
  cursor: pointer;
  display: block;
}

.quiz-option__input {
  display: none;
}

.quiz-option__input:checked~.quiz-option__img {
  border-color: #EC659E;
}

.quiz-option__input:checked~.quiz-option__img svg {
  fill: #EC659E;
}

.quiz-option__input:checked~.quiz-option__grid .quiz-option__check {
  background-color: #EC659E;
}

.quiz-option__input:checked~.quiz-option__grid .quiz-option__check .ic {
  opacity: 1;
  color: #fff;
}

.quiz-option__input:checked~.quiz-option__grid .quiz-option__descr {
  color: #EC659E;
}

.quiz-option__img {
  position: relative;
  display: block;
  height: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(106, 53, 126, 0.1);
  border-radius: 20px;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}

.quiz-option__img svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80%;
  height: 80px;
  fill: #6A357E;
  -webkit-transition: fill 0.4s;
  transition: fill 0.4s;
}

.quiz-option__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quiz-option__check {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(106, 53, 126, 0.1);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.quiz-option__check .ic {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -0.5em;
  text-align: center;
  font-size: 14px;
  color: #EC659E;
  opacity: 0;
  -webkit-transition: opacity 0.2s, color 0.2s;
  transition: opacity 0.2s, color 0.2s;
}

.quiz-option__descr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mouse-device .quiz-option:hover:hover .quiz-option__img {
  border-color: #EC659E;
}

.mouse-device .quiz-option:hover:hover .quiz-option__check .ic {
  opacity: 1;
}

.quiz-option__input[type=checkbox]~.quiz-option__grid .quiz-option__check {
  border-radius: 8px;
}

.quiz-option._ellips .quiz-option__check {
  border-radius: 50% !important;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  background: #fff;
  border-radius: 20px;
  margin: 30px auto;
  padding: 40px;
}

.product-pop {
  max-width: 940px;
}

.product-pop__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px 0;
}

.product-pop__grid {
  display: none;
  width: 100%;
}

.product-pop__grid._show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-pop__img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 280px;
  margin-right: 40px;
  border: 1px solid rgba(106, 53, 126, 0.1);
  border-radius: 20px;
}

.product-pop__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}

.product-pop__img img {
  max-width: 87%;
  max-height: 87%;
}

.product-pop__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  padding-right: 20px;
}

.product-pop__content> :last-child {
  margin-bottom: 0;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container.mfp-inline-holder {
  padding: 0 15px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #6A357E;
}

.mfp-preloader {
  color: #6A357E;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}

.mfp-image-holder .close-btn:hover,
.mfp-iframe-holder .close-btn:hover {
  opacity: 0.7;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}