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

:root {
  --app-height: 100vh;
  --sect-offset: 120px;
  --wave-sect-offset: 220px;
  --box-offset: 60px;
  --light-color: #F5F3F7;
  --dark-color: #3B1657;
  --border-color: rgba(59,22,87,.1);
  --main-color: #FFB81C;
  --main-dark-color: #ED8B00;
  --accent-color: #C069C2;
  --accent-color2: #00BFB3;
  scroll-behavior: auto;
}

::-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: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

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

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

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

button {
  cursor: pointer;
}

strong, b {
  font-weight: bold;
}

p, blockquote, ul, ol {
  margin: 0 0 20px;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: bold;
}

h1 {
  font-style: italic;
  line-height: 1.07;
  font-size: 60px;
}
h1._small {
  line-height: 1.08;
  font-size: 50px;
}

h2 {
  font-style: italic;
  line-height: 1.08;
  font-size: 50px;
}

h3 {
  font-style: italic;
  line-height: 1.1;
  font-size: 40px;
}
h3._small {
  font-size: 30px;
}

h4 {
  line-height: 1.3;
  font-size: 24px;
}

h5 {
  line-height: 1.4;
  font-size: 20px;
}

h6 {
  font-size: 1rem;
}

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

hr {
  margin: 20px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: none;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  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: var(--main-color);
}

.c-main-dark {
  color: var(--main-dark-color);
}

.c-accent {
  color: var(--accent-color);
}

.c-gradient {
  color: var(--main-color);
}

@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
  .c-gradient {
    background-color: var(--main-color);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
    background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.m-sect {
  margin-top: var(--sect-offset);
  margin-bottom: var(--sect-offset);
}

.mt-sect {
  margin-top: var(--sect-offset);
}

.mb-sect {
  margin-bottom: var(--sect-offset);
}

.p-sect {
  padding-top: var(--sect-offset);
  padding-bottom: var(--sect-offset);
}

.pt-sect {
  padding-top: var(--sect-offset);
}

.pb-sect {
  padding-bottom: var(--sect-offset);
}

.p-wave {
  padding-top: var(--wave-sect-offset);
  padding-bottom: var(--wave-sect-offset);
}

.pt-wave {
  padding-top: var(--wave-sect-offset);
}

.pb-wave {
  padding-bottom: var(--wave-sect-offset);
}

.p-box {
  padding: var(--box-offset);
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.hidden {
  display: none !important;
}

[data-animate-item] {
  opacity: 0;
}

[data-children-animate] > * {
  opacity: 0;
}

[data-animate] {
  opacity: 0;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
[data-animate].animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

[data-animate=fade].animated {
  -webkit-animation-name: fade;
          animation-name: fade;
}

[data-animate=fadeLeft].animated {
  -webkit-animation-name: fadeLeft;
          animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
  -webkit-animation-name: fadeRight;
          animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
  -webkit-animation-name: fadeDown;
          animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
            transform: translate3d(100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
            transform: translate3d(-100px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
            transform: translate3d(0, -100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.bg-light {
  background-color: #F1EBF8;
  background-image: radial-gradient(50% 50% at 50% 50%, #fff 0%, #F1EBF8 100%);
}

.bg-dark {
  background-color: var(--dark-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#411A62), color-stop(30%, #66388C), color-stop(60%, #500778), color-stop(80%, #411A62), to(#3B1657));
  background-image: linear-gradient(to right, #411A62 0%, #66388C 30%, #500778 60%, #411A62 80%, #3B1657 100%);
  color: #fff;
}

.bg-wave {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  left: 50%;
  margin-left: -960px;
  width: 1920px;
  height: 120px;
}
.bg-wave._top {
  top: -20px;
}
.bg-wave._bot {
  bottom: -20px;
}

.title {
  margin-bottom: 60px;
}

.content img {
  display: block;
  border-radius: 20px;
  margin: 20px 0;
}
.content ul {
  padding: 0;
  list-style: none;
}
.content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px;
  line-height: 26px;
}
.content ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark-color);
  content: "\e904";
  text-align: center;
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 26px;
  font-size: 10px;
  color: #fff;
}
.content > :first-child {
  margin-top: 0;
}
.content > :last-child {
  margin-bottom: 0;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 5;
  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: 60px;
  border: none;
  border-radius: 100px;
  -webkit-box-shadow: inset 0 0 0 1px var(--main-color);
          box-shadow: inset 0 0 0 1px var(--main-color);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  line-height: 20px;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn > span {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding: 5px 25px;
}
.btn .ic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  border-radius: 50%;
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  color: var(--main-dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn .ic:before {
  display: inline-block;
  position: relative;
  z-index: 1;
  -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:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn .ic-left, .btn .ic-right {
  font-size: 16px;
}
.btn .ic-rotate:before {
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
}
.btn .ic-up-right {
  font-size: 14px;
}
.btn:hover {
  color: var(--main-color);
}
.btn:hover:before {
  opacity: 0;
}
.btn:hover .ic {
  background-color: var(--main-color) !important;
  color: #fff !important;
}
.btn:hover .ic:after {
  opacity: 1;
}
.btn:hover .ic:before {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.btn:hover .ic-up-right:before {
  -webkit-transform: translate(2px, -2px);
      -ms-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.btn:hover .ic-right:before {
  -webkit-transform: translate(2px, 0);
      -ms-transform: translate(2px, 0);
          transform: translate(2px, 0);
}
.btn:hover .ic-left:before {
  -webkit-transform: translate(-2px, 0);
      -ms-transform: translate(-2px, 0);
          transform: translate(-2px, 0);
}
.btn:hover .ic-rotate:before {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.btn._bd {
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
          box-shadow: inset 0 0 0 1px var(--accent-color);
  color: var(--accent-color);
}
.btn._bd:before {
  display: none;
}
.btn._bd .ic {
  background: var(--accent-color);
  color: #fff;
}
.btn._bd:hover {
  -webkit-box-shadow: inset 0 0 0 1px var(--main-color);
          box-shadow: inset 0 0 0 1px var(--main-color);
  color: var(--main-color);
}
.btn._accent {
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
          box-shadow: inset 0 0 0 1px var(--accent-color);
}
.btn._accent .ic {
  color: var(--accent-color);
}
.btn._accent .ic:after {
  background: var(--accent-color);
}
.btn._accent:before {
  background: var(--accent-color);
}
.btn._accent:hover {
  color: var(--accent-color);
}
.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;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.btn._glare:hover:after {
  opacity: 0;
}
.btn._medium {
  min-height: 50px;
  font-size: 16px;
}
.btn._medium > span {
  padding: 5px 15px;
}
.btn._medium .ic {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.btn._w-medium {
  min-width: 280px;
}
.btn._w-big {
  width: 100%;
  max-width: 370px;
}
.btn._full {
  width: 100%;
}
.btn[disabled], .btn.disabled {
  pointer-events: none;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #F1EBF3;
  color: #b7a8bd;
}
.btn[disabled]:before, .btn.disabled:before {
  opacity: 0;
}
.btn[disabled] .ic, .btn.disabled .ic {
  background-color: #fff;
  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;
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  width: 60px;
  height: 60px;
  line-height: 60px;
  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:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.breadcrumbs {
  margin-bottom: 80px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 300;
  line-height: 20px;
  font-size: 14px;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li {
  position: relative;
  display: inline-block;
  margin-right: 0.4em;
  padding-right: 1em;
}
.breadcrumbs li:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  content: "\e913";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 8px;
}
.breadcrumbs li:last-child {
  margin-right: 0;
  padding-right: 0;
  opacity: 0.4;
}
.breadcrumbs li:last-child:after {
  display: none;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 17px 19px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  line-height: 1.2;
  font-weight: normal;
  font-size: 16px;
  color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.form-field:focus {
  border-color: var(--main-color);
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 100px;
}

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

.social-item {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  background: var(--accent-color);
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.social-item:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: transparent;
  color: var(--accent-color);
}

.cat-btns__grid {
  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;
}

.cat-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 17px 30px;
  border-radius: 25px;
  border: none;
  background: none;
  text-decoration: none;
  line-height: 16px;
  font-size: 14px;
  color: var(--dark-color);
}
.cat-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-color);
  opacity: 0.2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cat-btn:hover:before {
  opacity: 0.3;
}
.cat-btn.active {
  color: #fff;
}
.cat-btn.active:before {
  opacity: 1;
}

.lang-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.1;
  font-weight: 500;
  font-size: 18px;
}
.lang-menu li {
  position: relative;
}
.lang-menu li:nth-child(n+2) {
  margin-left: 10px;
  padding-left: 24px;
}
.lang-menu li:nth-child(n+2):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}
.lang-menu span {
  cursor: default;
  color: var(--accent-color);
}
.lang-menu a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.lang-menu a:hover {
  color: var(--accent-color);
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--accent-color);
}
.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  border-radius: 1px;
  background: #fff;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.sandwich span:nth-child(3) {
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu__wrapper {
  overflow: hidden;
  padding: 100px 0 20px;
  min-height: var(--app-height);
}
.mob-menu__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  line-height: 1.1;
  font-size: 16px;
}
.mob-menu__list a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mob-menu__list li._dropdown > a:after {
  padding-left: 6px;
  content: "\e907";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 12px;
}
.mob-menu__list > li {
  margin-bottom: 20px;
}
.mob-menu__list > li:last-child {
  margin-bottom: 0;
}
.mob-menu__list > li > a {
  font-weight: 500;
  font-size: 18px;
}
.mob-menu__list > li ul {
  padding: 0;
  list-style: none;
}
.mob-menu__list > li ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}
.mob-menu__list > li ul li:after {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  border-bottom: 1px solid currentColor;
}
.mob-menu__row {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}
.mob-menu__row._social {
  display: none;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.header._menu {
  background-color: #fff;
}
.header._scrolled {
  background-color: #fff;
}
.header._scrolled .header__grid {
  height: 80px;
}
.header__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  height: 100px;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}
.header__grid:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.header__grid > .social {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.header__grid > .btn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.header__logo {
  display: inline-block;
  max-width: 200px;
}
.header__logo img {
  max-height: 60px;
}
.header__menu, .header__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
  font-weight: 500;
  line-height: 1.1;
  font-size: 18px;
}
.header__menu ul {
  display: none;
}
.header__menu a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header__menu a:hover {
  color: var(--accent-color);
}
.header__menu > li {
  position: relative;
  padding: 20px 0;
}
.header__menu > li > ul {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: -30px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 100px rgba(80, 7, 120, 0.1);
          box-shadow: 0 0 100px rgba(80, 7, 120, 0.1);
  white-space: nowrap;
}
.header__menu > li > ul > li:nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}
.header__menu li._dropdown:hover > ul {
  display: block;
}
.header__menu li._dropdown > a {
  position: relative;
  padding-right: 24px;
}
.header__menu li._dropdown > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -1px;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  -webkit-box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
          box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}
.header__toggle {
  display: none;
}

.bann {
  position: relative;
}
.bann__wrapper {
  overflow: hidden;
  position: relative;
  padding: 180px 0 60px;
  background: url("../img/bann/flowers.svg") no-repeat 54% 75px;
}
.bann__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.bann__main {
  width: 450px;
  padding-bottom: 120px;
}
.bann__title {
  margin-bottom: 20px;
}
.bann__title > * {
  margin-bottom: 10px;
}
.bann__title p {
  font-weight: bold;
  font-size: 18px;
}
.bann__checklist {
  margin-top: 40px;
}
.bann__person {
  position: absolute;
  left: 50%;
  bottom: 0;
  max-height: 760px;
  margin-left: 20px;
  -webkit-filter: drop-shadow(0 0 120px rgba(192, 105, 194, 0.5));
          filter: drop-shadow(0 0 120px rgba(192, 105, 194, 0.5));
  will-change: filter;
}
.bann__mosaic {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-left: 92px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.bann__mosaic-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px -10px;
}
.bann__mosaic-col {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
  padding: 0 5px 10px;
}
.bann__mosaic-col:nth-child(2), .bann__mosaic-col:nth-child(4) {
  margin-top: 60px;
}
.bann__mosaic-col:nth-child(3) {
  margin-top: 120px;
}
.bann__mosaic-col:nth-child(2) .bann__mosaic-item {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.bann__mosaic-col:nth-child(3) .bann__mosaic-item {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.bann__mosaic-col:nth-child(4) .bann__mosaic-item {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.bann__mosaic-item {
  display: block;
  padding: 20px 10px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
          box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  -webkit-animation: floating 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
          animation: floating 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
.bann__mosaic-item .img-box {
  position: relative;
  margin-bottom: 20px;
  height: 140px;
}
.bann__mosaic-item .img-box:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--light-color);
}
.bann__mosaic-item .img-box img {
  z-index: 2;
  top: auto;
}

@-webkit-keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(7%);
            transform: translateY(7%);
  }
}

@keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(7%);
            transform: translateY(7%);
  }
}
.b-about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.b-about__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  width: 560px;
  margin-right: 60px;
  min-height: 750px;
  border-radius: 20px;
  background: url("../img/about/b-about.jpg") center/cover;
}
.b-about__img-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 130px;
}
.b-about__img-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
}
.b-about__img-product {
  position: absolute;
}
.b-about__img-product._first {
  z-index: 2;
  right: 23%;
  bottom: 3%;
  max-width: 33%;
}
.b-about__img-product._second {
  z-index: 1;
  right: 3%;
  bottom: 2%;
  max-width: 35%;
}
.b-about__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.b-about__title {
  margin-bottom: 40px;
}
.b-about__logo {
  margin-bottom: 10px;
}
.b-about__logo img {
  display: block;
  max-height: 70px;
}
.b-about__head span {
  display: inline-block;
}
.b-about__action {
  margin-top: 40px;
}

.helper {
  position: relative;
}
.helper__wrapper {
  background: url("../img/helper/flowers.svg") no-repeat 57% 155px;
}
.helper__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.helper__content {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 560px;
  margin-right: 60px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.helper__content-wrap {
  width: 100%;
}
.helper__content .btn {
  margin-top: 40px;
}
.helper__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.helper-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 1.25;
}
.helper-item__img {
  display: block;
  max-width: 140px;
  margin: 0 auto 20px;
}
.helper-item__img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background: #fff;
  opacity: 0.1;
}
.helper-item__img img {
  top: auto;
}
.helper-item__lvl {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  padding: 4px;
  text-decoration: none;
  line-height: 1;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.helper-item__lvl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--accent-color);
}
.helper-item__lvl:nth-child(1):before {
  opacity: 0.2;
}
.helper-item__lvl:nth-child(2):before {
  opacity: 0.6;
}
.helper-item__lvl:last-child {
  margin-bottom: 0;
}
.helper-item__lvl:hover {
  opacity: 0.7;
}
.helper-item._yellow .helper-item__lvl:before {
  background: var(--main-color);
}
.helper-item._orange .helper-item__lvl:before {
  background: var(--main-dark-color);
}
.helper-item._green .helper-item__lvl:before {
  background: var(--accent-color2);
}

.home-news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
.home-news__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--light-color);
}
.home-news__img img {
  max-width: 140px;
  max-height: 140px;
}
.home-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.home-news__content > * {
  margin-bottom: 10px;
}
.home-news__content > *:last-child {
  margin-bottom: 0;
}
.home-news__head span {
  color: var(--accent-color);
}
.home-news__cats {
  padding-right: 260px;
}
.home-news__items {
  position: relative;
  padding-top: 30px;
}
.home-news__tab {
  position: relative;
}
.home-news__tab:nth-child(n+2) {
  display: none;
}
.home-news__more {
  position: absolute;
  right: 0;
  bottom: 100%;
}
.home-news__row {
  margin-bottom: var(--sect-offset);
}
.home-news__row:last-child {
  margin-bottom: 0;
}
.home-news__row._yellow .home-news__head span {
  color: var(--main-color);
}
.home-news__row._yellow .cat-btn:before {
  background-color: var(--main-color);
}
.home-news__row._orange .home-news__head span {
  color: var(--main-dark-color);
}
.home-news__row._orange .cat-btn:before {
  background-color: var(--main-dark-color);
}
.home-news__row._green .home-news__head span {
  color: var(--accent-color2);
}
.home-news__row._green .cat-btn:before {
  background-color: var(--accent-color2);
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.news-grid._similar .news-item:nth-child(n+5) {
  display: none;
}

.news-item {
  display: block;
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
}
.news-item__img {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 76.5%;
  border-radius: 20px 20px 0 0;
  background: #ededed;
}
.news-item__img > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  -webkit-transition: 1s;
  transition: 1s;
}
.news-item__main {
  padding: 20px;
}
.news-item__main > * {
  margin-bottom: 10px;
}
.news-item__main > *:last-child {
  margin-bottom: 0;
}
.news-item__date {
  opacity: 0.6;
  font-size: 12px;
}
.news-item__date strong {
  display: inline-block;
}
.news-item:hover .news-item__img > span {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.news-item._light {
  background-color: var(--light-color);
}

.news-categories {
  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;
  gap: 20px;
  margin-bottom: 30px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.news-more {
  margin-top: 30px;
}

.pr-about__thanks {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  border-radius: 20px;
}
.pr-about__thanks:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: url("../img/products/pr-about-thanks.svg") no-repeat 50% 100%/100% auto;
}
.pr-about__thanks-title {
  margin-bottom: 20px;
}
.pr-about__thanks-title > * {
  margin-bottom: 10px;
}
.pr-about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.pr-about__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
  text-align: center;
}
.pr-about__item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: url("../img/products/flowers1.svg") no-repeat 68% 150px;
}
.pr-about__item:nth-child(2n):before {
  background: url("../img/products/flowers2.svg") no-repeat 70% 80px;
}
.pr-about__item > * {
  margin-bottom: 40px;
}
.pr-about__item > *:last-child {
  margin-bottom: 0;
}
.pr-about__item-title > * {
  margin-bottom: 10px;
}
.pr-about__item-img {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  max-height: 300px;
}
.pr-about__item-img:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 89%;
}

.checklist {
  position: relative;
}
.checklist__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: var(--sect-offset);
}
.checklist__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/checklist/flowers.svg") no-repeat 68% 90px;
}
.checklist__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checklist__main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  z-index: 2;
  margin-right: 10px;
  width: calc(50% - 5px);
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
          box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
}
.checklist__title {
  margin-bottom: 40px;
}
.checklist__title > * {
  margin-bottom: 10px;
}
.checklist__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0 40px 100px rgba(80, 7, 120, 0.2);
          box-shadow: 0 40px 100px rgba(80, 7, 120, 0.2);
}
.checklist__img img {
  position: absolute;
  top: 50%;
  right: 0;
  max-width: 106%;
  max-height: 130%;
  -webkit-transform: translate(9%, -50%);
      -ms-transform: translate(9%, -50%);
          transform: translate(9%, -50%);
}

.b-thanks {
  position: relative;
  border-radius: 20px;
}
.b-thanks__bg {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: url("../img/products/b-thanks.svg") no-repeat 50% 100%/100% auto;
}
.b-thanks__bg-product {
  position: absolute;
}
.b-thanks__bg-product._first {
  z-index: 2;
  right: 11.5%;
  bottom: 5%;
  max-width: 25%;
}
.b-thanks__bg-product._second {
  z-index: 1;
  right: 6%;
  bottom: 28%;
  max-width: 26.5%;
}
.b-thanks__wrap {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.b-thanks__head {
  margin-bottom: 10px;
}

.buy-shops__title {
  margin-bottom: 40px;
}
.buy-shops__title > * {
  margin-bottom: 10px;
}
.buy-shops__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.buy-shops__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 30%;
}

.buy-shop {
  display: block;
  padding: 20px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  background: var(--light-color);
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.buy-shop:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 2px 0 #cbc7cf;
          box-shadow: 0 2px 0 #cbc7cf;
}
.buy-shop .img-box {
  width: 100%;
  max-width: 250px;
}

.footer {
  padding: 80px 0 40px;
  border-bottom: 10px solid var(--accent-color);
  line-height: 1.5;
  font-weight: 300;
}
.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.footer__first {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 34%;
  margin-right: auto;
}
.footer__logo {
  display: inline-block;
  max-width: 200px;
}
.footer__logo img {
  max-height: 60px;
}
.footer__content {
  margin-top: 20px;
}
.footer__content > * {
  margin-bottom: 10px;
}
.footer__content > *:last-child {
  margin-bottom: 0;
}
.footer__content a[href^=tel] {
  display: inline-block;
  text-decoration: none;
}
.footer__head {
  line-height: 1.25;
}
.footer__menu._main {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 17%;
}
.footer__menu._links {
  max-width: 360px;
}
.footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu-list li {
  margin-bottom: 10px;
}
.footer__menu-list li:last-child {
  margin-bottom: 0;
}
.footer__menu-list a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer__menu-list a:hover {
  color: var(--main-color);
}
.footer__social {
  max-width: 170px;
}

.foot-bot {
  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: 15px 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.25;
}
.foot-bot__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin: 0;
}
.foot-bot__dev a {
  font-weight: bold;
  color: var(--accent-color);
}

.inn-sect {
  position: relative;
  padding-top: 180px;
}
.inn-sect._bread {
  padding-top: 100px;
}
.inn-sect__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.inn-sect__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/inn-flowers.svg") no-repeat 35% 85px;
}
.inn-sect.news .inn-sect__bg {
  bottom: 200px;
}
.inn-sect .b-thanks {
  margin-top: var(--sect-offset);
}

.product-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--sect-offset);
}
.product-top__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.product-top__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 440px;
  margin-left: 60px;
  padding: 60px 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
          box-shadow: 0 40px 100px rgba(80, 7, 120, 0.1);
}
.product-top__img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: url("../img/products/flowers-info.svg") no-repeat 44% 15px;
}
.product-top__img-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 320px;
}
.product-top__img-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 20px 20px;
}
.product-top__img .img-box {
  overflow: hidden;
  z-index: 5;
  width: 100%;
  max-height: 300px;
}
.product-top__img .img-box:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 89%;
}
.product-top__action {
  margin-top: 40px;
}

.product-tabs {
  margin-bottom: 30px;
}
.product-tabs__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.product-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  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;
  position: relative;
  z-index: 1;
  padding: 10px 17px;
  min-height: 50px;
  border-radius: 25px;
  background: rgba(192, 105, 194, 0.1);
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  font-size: 14px;
  color: var(--dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-tab:hover {
  background: rgba(192, 105, 194, 0.2);
}
.product-tab.active {
  background: var(--accent-color);
  color: #fff;
}

.product-info {
  margin-bottom: 10px;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
}
.product-info:last-child {
  margin-bottom: 0;
}
.product-info__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.product-info__title > :last-child {
  margin-bottom: 0;
}
.product-info > * {
  margin-bottom: 20px;
}
.product-info > :last-child {
  margin-bottom: 0;
}
.product-info__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.faq-item {
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
  padding: 20px 30px;
  border-radius: 20px;
  background: var(--light-color);
  color: var(--dark-color);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--dark-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#411A62), color-stop(30%, #66388C), color-stop(60%, #500778), color-stop(80%, #411A62), to(#3B1657));
  background-image: linear-gradient(to right, #411A62 0%, #66388C 30%, #500778 60%, #411A62 80%, #3B1657 100%);
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.faq-item__title {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  font-weight: bold;
  line-height: 1.4;
  font-size: 20px;
}
.faq-item__title:hover .faq-item__arrow:before {
  opacity: 1;
}
.faq-item__title:hover .faq-item__arrow .ic {
  color: #fff;
}
.faq-item__number {
  min-width: 34px;
  color: var(--accent-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.faq-item__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.faq-item__arrow {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  color: var(--dark-color);
}
.faq-item__arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.faq-item__arrow .ic {
  display: block;
  position: relative;
  z-index: 2;
  line-height: 40px;
  font-size: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.faq-item__content {
  display: none;
  padding: 5px 50px 5px 44px;
  color: #fff;
}
.faq-item__content > :last-child {
  margin-bottom: 0;
}
.faq-item._show:before {
  opacity: 1;
}
.faq-item._show .faq-item__number,
.faq-item._show .faq-item__head {
  color: var(--main-color);
}
.faq-item._show .faq-item__arrow:before {
  opacity: 1;
}
.faq-item._show .faq-item__arrow .ic {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #fff;
}

.post-title {
  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 30px;
  margin-bottom: 20px;
}
.post-title__head {
  margin-bottom: 10px;
  width: 100%;
}
.post-title__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
  font-size: 14px;
}
.post-title__author > * {
  display: inline-block;
}
.post-title__author > img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.post-title__author > span {
  opacity: 0.6;
}
.post-title__info {
  line-height: 1.4;
  font-size: 14px;
}

.post-img {
  display: block;
  border-radius: 20px;
  margin-bottom: 60px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.quiz {
  font-size: 18px;
}
.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 {
  line-height: 1;
}
.quiz__action-count span {
  font-size: 60px;
}
.quiz__action .btn[disabled],
.quiz__action .btn.disabled {
  background-color: rgba(255, 255, 255, 0.1);
}
.quiz__action .btn[disabled] .ic,
.quiz__action .btn.disabled .ic {
  background-color: rgba(255, 255, 255, 0.1);
}
.quiz__progress {
  position: relative;
  margin-top: 20px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}
.quiz__progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  max-width: 100%;
  border-radius: inherit;
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.quiz.finish .quiz-wrapper,
.quiz.finish .quiz__action,
.quiz.finish .quiz__progress {
  display: none;
}
.quiz.finish .quiz-finish {
  display: block;
}

.quiz-item {
  display: none;
}
.quiz-item.active {
  display: block;
}
.quiz-item__top {
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--main-color);
}
.quiz-item__top:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 40px;
  border-bottom: 2px solid var(--main-color);
}
.quiz-item__title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.quiz-item__list {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.quiz-item__list > * {
  max-width: 100%;
}
.quiz-item__list label {
  cursor: pointer;
  display: inline-block;
}
.quiz-item__list label input {
  display: none;
}
.quiz-item__list label input:checked ~ span {
  color: var(--main-color);
}
.quiz-item__list label input:checked ~ span:after {
  opacity: 1;
}
.quiz-item__list label span {
  display: block;
  position: relative;
  padding: 7px 0 0 60px;
  min-height: 40px;
  line-height: 26px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.quiz-item__list label span:before, .quiz-item__list label span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.quiz-item__list label span:before {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.quiz-item__list label span:after {
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(237, 139, 0, 0)), to(var(--main-dark-color)));
  background-image: linear-gradient(to right, rgba(237, 139, 0, 0), var(--main-dark-color));
  content: "\e904";
  text-align: center;
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.quiz-item__list label span:hover:before {
  background-color: rgba(255, 255, 255, 0.2);
}

.quiz-finish {
  display: none;
}
.quiz-finish .content {
  font-weight: 300;
}
.quiz-finish__action {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-box {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 30px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
.share-box__head {
  margin: 0;
}
.share-box__social {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.nodrug-line {
  position: fixed;
  z-index: 10000;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(234, 231, 240, 0.8);
  backdrop-filter: blur(10px);
}
.nodrug-line__close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -15px;
  border-radius: 50%;
  background: var(--accent-color);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 10px;
  color: #fff;
}
.nodrug-line__descr {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.045em;
  line-height: 1;
  font-weight: 300;
  font-size: 40px;
}

.cookie-line {
  position: fixed;
  z-index: 9000;
  left: 0;
  right: 0;
  bottom: 60px;
  padding: 15px 0;
  background: rgba(245, 243, 247, 0.9);
  backdrop-filter: blur(10px);
}
.cookie-line__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie-line__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.cookie-line__btn {
  margin-left: 80px;
  min-width: 220px;
}
.cookie-line__link {
  margin-top: 8px;
  font-size: 14px;
}
.cookie-line__link a {
  color: var(--accent-color);
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  border-radius: 20px;
  margin: 20px auto;
  padding: 60px;
  background-color: var(--dark-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#411A62), color-stop(30%, #66388C), color-stop(60%, #500778), color-stop(80%, #411A62), to(#3B1657));
  background-image: linear-gradient(to right, #411A62 0%, #66388C 30%, #500778 60%, #411A62 80%, #3B1657 100%);
  color: #fff;
}

.post-popup .content h2,
.post-popup .content h3 {
  word-wrap: break-word;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(245, 243, 247, 0.8);
  backdrop-filter: blur(15px);
}

.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: var(--main-color);
}

.mfp-preloader {
  color: var(--main-color);
}

.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;
}