@font-face{
  font-display: swap;
  font-family: 'Commissioner';
  font-weight: 300;
  src: url('../font/Commissioner-Light.woff2') format('woff2'),
       url('../font/Commissioner-Light.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Commissioner';
  font-weight: 400;
  src: url('../font/Commissioner-Regular.woff2') format('woff2'),
       url('../font/Commissioner-Regular.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Commissioner';
  font-weight: 500;
  src: url('../font/Commissioner-Medium.woff2') format('woff2'),
       url('../font/Commissioner-Medium.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Commissioner';
  font-weight: 600;
  src: url('../font/Commissioner-SemiBold.woff2') format('woff2'),
       url('../font/Commissioner-SemiBold.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Commissioner';
  font-weight: 700;
  src: url('../font/Commissioner-Bold.woff2') format('woff2'),
       url('../font/Commissioner-Bold.woff') format('woff')
}

@font-face{
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 400;
  src: url('../font/Roboto-Regular.woff2') format('woff2'),
       url('../font/Roboto-Regular.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 400;
  font-style: italic;
  src: url('../font/Roboto-Regular-Italic.woff2') format('woff2'),
       url('../font/Roboto-Regular-Italic.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 500;
  src: url('../font/Roboto-Medium.woff2') format('woff2'),
       url('../font/Roboto-Medium.woff') format('woff')
}
@font-face{
  font-display: swap;
  font-family: 'Roboto';
  font-weight: 700;
  src: url('../font/Roboto-Bold.woff2') format('woff2'),
       url('../font/Roboto-Bold.woff') format('woff')
}

/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}
nav,footer,header,aside{display: block;}
html,body{
	min-height: 100vh;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	-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;max-width:100%;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/
:root {
	--primary-100: #c4e8c8;
	--primary-200: #9ddaa6;
	--primary-300---accent: #1ca641;
	--primary-400: #099435;
	--primary-500: #00832a;
	--primary-alphja-10: rgba(28, 166, 65, 0.1);
	--black-1000: #333;
	--black-800: #606060;
	--red-100: #fb3748;
	--red-200: #d00416;
	--green-100: #8ef5be;
	--green-200: #1fc16b;
	--yellow-100: #fe0;
	--yellow-200: #dfb400;
	--neutral-100: #fff;
	--neutral-200: #e8e8e8;
	--neutral-300: #d2d2d2;
	--neutral-400: #bbb;
	--neutral-500: #a4a4a4;
	--neutral-600: #8e8e8e;
	--neutral-700: #777;
	--pink: #b54092;
	--light-pink: #d68fbd;
	--dark-pink: #a61c81;
	--gray: #f8f8f8;

    --font-family: "Commissioner", sans-serif;
}

.h1{color:var(--black-1000);line-height:1.1;margin-bottom:24px;font-size:64px;font-weight:500}
.h2{color:var(--black-1000);line-height:1.1;margin-bottom:24px;font-size:48px;font-weight:500}
.h3{color:var(--black-1000);line-height:1.1;margin-bottom:24px;font-size:32px;font-weight:700}
.h4{color:var(--black-1000);line-height:1.1;margin-bottom:24px;font-size:26px;font-weight:500}
.h5{color:var(--black-1000);line-height:1.1;margin-bottom:16px;font-size:20px;font-weight:500}

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

small{font-size:14px}

.article-text {
  margin-bottom: 24px;
}
p, .p{margin-bottom:10px;}
p:last-child, .p:last-child{margin-bottom:0}

a:not(.button, .header-nav__link, .footer-nav__link, .header-user__menu__link):hover{color:var(--primary-500)}

body {
  background: var(--neutral-100);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #4a4a4a;
}
.container{width:100%;min-width:320px;max-width:1270px;margin:0 auto;padding:0 15px}
@media (max-width: 1299px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (min-width: 1200px) {
  body.compensate-for-scrollbar {
    padding-right: 15px;
  }
}

.wrapper{overflow:clip;display:flex;flex-direction:column;min-height:100vh}
.hidden{display:none;visibility:hidden}
.overflow{overflow:hidden}
.img-absolute{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-position:center;object-fit:cover;border-radius:inherit}

.block-blue{background:#eaf3ff;margin-bottom:120px}
.block-blue > section:nth-child(1){padding-top:120px}

.overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:90;width:100%;height:100%;background:rgba(15, 5, 30, .35);backdrop-filter:blur(2px);opacity:0;pointer-events:none;visibility:hidden;transition:.3s ease-in-out}
.overlay.is-active{opacity:1;pointer-events:all;visibility:visible}

.button{
  transition:.3s;
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
  cursor:pointer}
.button svg{flex-shrink:0}
.button-small{gap:10px;height:36px;padding:0 16px;font-size:14px;font-weight:600;border-radius:25px}
.button-medium{gap:16px;height:50px;padding:0 28px;font-size:16px;font-weight:500;border-radius:35px}
.button-large{gap:12px;height:60px;padding:0 24px;font-size:18px;font-weight:500;border-radius:45px}
.button-border-yellow{color:var(--black-1000);border:1px solid #8094b1}
.button-border-yellow:hover{color:var(--primary-300---accent);border-color:var(--primary-300---accent)}
.button-border-gray{color:#3a383c;border:1px solid var(--primary-300---accent)}
.button-border-gray:hover{background:#3a383c;color:var(--neutral-100)}
.button-border-green{color:var(--primary-300---accent);border:2px solid var(--primary-300---accent)}
.button-border-green:hover{background:var(--primary-300---accent);color:var(--neutral-100)}
.button-border-green path{transition: ease .3s;}
.button-border-green:hover path{fill:var(--neutral-100)}
.button-border-green .svg-arrow path {
  fill: var(--primary-300---accent);
}
.button-border-green:hover .svg-arrow path {
  fill:var(--neutral-100);
}

.button-bg-yellow{background:#f5da41;color:var(--black-1000)}
.button-bg-yellow::before{transition:.3s;opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;content:'';border-radius:inherit}
.button-bg-yellow:hover{background:#ffc401;}
.button-bg-yellow:hover::before{opacity:1}
.button-bg-green{background:var(--primary-300---accent);color:var(--neutral-100)}
.button-bg-green::before{transition:.3s;opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;content:'';background:var(--primary-500);border-radius:inherit}
.button-bg-green:hover{background:var(--primary-500)}
.button-bg-green:hover::before{opacity:1}

.button-bg-gray{backdrop-filter: blur(6px);
background: #f7f7f7;color:var(--black-1000)}
.button-bg-gray::before{transition:.3s;opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;content:'';border-radius:inherit}
.button-bg-gray:hover{background:var(--black-1000);color: var(--neutral-100);}
.button-bg-gray:hover::before{opacity:1}

.button.is-disabled{opacity:.7;pointer-events:none}

.list-disc{display:flex;flex-direction:column;gap:12px;margin-bottom:25px;line-height:1.3}
.list-disc li{position:relative;display:flex;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    gap:8px}
.list-disc li::before{flex-shrink:0;content:'';
    position: relative;
    top: 6px;
    background:url(../img/index/romb.svg);
    width:11px;height:12px;}

@media screen and (max-width: 575px) {
  .list-disc li {
    font-size: 16px;
    line-height: 120%;
  }
}

.list-disc__black {
    gap: 0;
    font-size: 16px;
}
.list-disc__black li::before {
    background:#4a4a4a;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    top: 11px;
}

.list-check{display:flex;flex-direction:column;gap:10px;margin-bottom:24px;line-height:1.3}
.list-check li{position:relative;padding-left:24px}
.list-check li::before{position:absolute;top:8px;left:0;content:'';background:url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 1.25L4.625 8.125L1.5 5' stroke='%233183FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / cover;width:13px;height:10px}

.list-number{display:flex;flex-direction:column;gap:16px;margin-bottom:24px;line-height:1.3;counter-reset: item;}
.list-number li{position:relative;padding-left:30px;}
.list-number > li::before{
  position:absolute;
  top:1px;
  left:0;
  content: counter(item) '.';
  counter-increment: item;
  display:flex;justify-content:center;align-items:center;line-height:1;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: var(--primary-200);
  
  width:20px;height:20px;
}

.list-rhombus{display:flex;flex-direction:column;gap:12px;margin-bottom:24px;line-height:1.3;counter-reset:list}
.list-rhombus li{position:relative;padding-left:15px}
.list-rhombus li::before{position:absolute;top:8px;left:0;content:'';background:url(../img/article/rhombus.svg) no-repeat;width:8px;height:8px;}

.list-triangle{display:flex;flex-direction:column;gap:12px;margin-bottom:24px;line-height:1.3;counter-reset:list}
.list-triangle li{position:relative;padding-left:15px}
.list-triangle li::before{position:absolute;top:7px;left:0;content:'';background-image: url("data:image/svg+xml,%3Csvg width='7' height='8' viewBox='0 0 7 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.90625 4.78628C6.48958 4.44949 6.48958 3.60752 5.90625 3.27074L1.3125 0.618533C0.729167 0.281746 0 0.70273 0 1.37631V6.68071C0 7.35429 0.729167 7.77527 1.3125 7.43848L5.90625 4.78628Z' fill='%233183FF'/%3E%3C/svg%3E%0A");width:7px;height:8px}

.list-plus{display:flex;flex-direction:column;gap:11px;margin-bottom:24px;line-height:1.3}
.list-plus li{position:relative;padding-left:20px}
.list-plus li::before{position:absolute;top:5px;left:0;content:'';background:url(../img/article/plus.svg) no-repeat center / cover;width:10px;height:10px}

.list-minus{display:flex;flex-direction:column;gap:11px;margin-bottom:24px;line-height:1.3}
.list-minus li{position:relative;padding-left:20px}
.list-minus li::before{position:absolute;top:9px;left:0;content:'';background:url(../img/article/minus.svg) no-repeat center / cover;width:10px;height:2px}

.breadcrumbs{margin:20px 0 40px}
.breadcrumbs-grid{display:flex;align-items:center;flex-wrap: wrap;gap:5px 22px;overflow-x:auto;overflow-y:hidden;white-space:nowrap;padding-bottom:10px;font-size:16px}
/*.breadcrumbs-grid a{position:relative;transition:.3s;color:#ababab}
.breadcrumbs-grid a::before{position:absolute;top:1px;right:-14px;content:'';background:url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.58569 1.47455L6.41357 6.30243L1.58569 11.1303' stroke='%23595959' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / cover;width:8px;height:12px;pointer-events:none;opacity:.5}
.breadcrumbs-grid span{color:var(--primary-300---accent)}*/
.breadcrumbs-grid > span[itemprop]{position:relative;color:var(--neutral-700)}
.breadcrumbs-grid > span[itemprop]::before{position:absolute;top:7px;right:-14px;content:'';background:url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.58569 1.47455L6.41357 6.30243L1.58569 11.1303' stroke='%23595959' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / cover;width:6px;height:10px;pointer-events:none;opacity:.5}
.breadcrumbs-grid > span[itemprop] a{color: var(--neutral-700);opacity: 0.5;transition:.3s}
.breadcrumbs-grid > span[itemprop] a:hover{color: var(--primary-300---accent);opacity: 1;}
.breadcrumbs-grid > span:not([itemprop]){color:var(--primary-300---accent)}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin: 20px 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .breadcrumbs-grid{font-size:14px}
}

/* down up */
.up .svg,
.down .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.up,
.down {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  position: fixed;
  z-index: 10;
  right: 20px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 15px -4px rgba(16, 40, 20, 0.26);
  transition: ease .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.up .svg,
.down .svg {
  transition: ease .3s;
}
.up path,
.down path {
  transition: ease .3s;
}
.up.is-visible,
.down.is-visible {
  opacity: 1;
  visibility: visible;
}
.up {
  /* bottom: 45px;
  right: 37px; */
}
.down {
  animation: pulsePlay 2s infinite linear;
}
.down:hover {
  animation-play-state: paused;
}
.up:hover,
.down:hover {
  
}
.up:hover path,
.down:hover path {
  stroke: var(--primary-500);
}
.down .svg {
  transform: rotate(180deg) translate(50%, 50%);
}
@media (max-width: 575px) {
  .up,
  .down {
    width: 35px;
    height: 35px;
    right: 15px;
    bottom: 25px;
  }
  .up svg,
  .down svg {
    width: 13px;
  }
}

.article a:not(.article-nav a, .article-pic__img, .article-gallery__item, .article-slider-item, .article-video__img, .button, .article-pics__item){color:var(--primary-300---accent);}
.article a:not(.article-nav a, .article-pic__img, .article-gallery__item, .article-slider-item, .article-video__img, .button, .article-pics__item):hover{color: var(--primary-300---accent);}

.link {
    color: var(--primary-300---accent);
    text-decoration: underline solid var(--primary-300---accent);
    transition: ease .3s;
}
.link:hover {
    color: var(--primary-300---accent);
    text-decoration-color: transparent;
}

.mobile-warning{padding:40px 0;font-size:15px}
.mobile-warning-wrap{display:flex;flex-direction:column;justify-content:center;align-items:center}
.mobile-warning-social{display:flex;justify-content:center;align-items:center;gap:10px;margin-bottom:20px}
.mobile-warning-social__text{}
.mobile-warning-social__grid{display:flex;justify-content:center;align-items:center;gap:10px}
.mobile-warning-social__link{}
.mobile-warning-title{color:#131313;margin-bottom:25px;text-align:center;font-size:24px;font-weight:700}
.mobile-warning-desc{position:relative;background:#ebf3fe;max-width:500px;margin-bottom:16px;padding:25px 15px 15px 15px;text-align:left;border-radius:18px}
.mobile-warning-desc::before{position:absolute;top:-16px;left:16px;content:'';background:url('../img/icons/icon-mark.svg') no-repeat center / cover;width:32px;height:32px}
.mobile-warning-form{width:100%;max-width:500px;padding:15px 20px 20px 20px;border:1px solid #e7e7e7;box-shadow:0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(16, 24, 40, .08);border-radius:18px}
.mobile-warning-form__title{line-height:1.2;margin-bottom:15px;color:#131313;font-size:16px;font-weight:700;text-align:center}
.mobile-warning-form__label{display:block;margin-bottom:10px}
.mobile-warning-form__label__input{padding:0 15px!important;width:100%;height:36px;font-size:14px;border: 1px solid #e7e7e7;box-shadow:0 1px 2px rgba(16, 24, 40, .05);border-radius:8px}
.mobile-warning-form-checkbox{display:flex;align-items:center;gap:10px;margin-top:15px;text-wrap:auto}
.mobile-warning-form-checkbox__input{position:absolute;z-index:-1;opacity:0}
.mobile-warning-form-checkbox__input:checked ~ .mobile-warning-form-checkbox__replace::before{opacity:1}
.mobile-warning-form-checkbox__replace{position:relative;display:flex;justify-content:center;align-items:center;flex-shrink:0;width:20px;height:20px;box-shadow:0 1px 2px 0 rgba(16, 24, 40, .05);border:1px solid #e7e7e7;border-radius:3px;cursor:pointer}
.mobile-warning-form-checkbox__replace::before{opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;content:'';background:url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.33464 1L2.7513 5.58333L0.667969 3.5' stroke='%233183FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / contain;width:12px;height:100%;margin:auto;}
.mobile-warning-form-checkbox__text{font-size:14px}
.mobile-warning-form-button{width:100%;margin-top:20px}
.mobile-warning-link{margin-top:15px;color:var(--primary-300---accent);text-decoration:underline}

.mobile-warning-check{display:flex;justify-content:center;align-items:center;flex-direction:column;background:var(--neutral-100);width:100%;max-width:500px;padding:15px 20px 20px 20px;border:1px solid #e7e7e7;box-shadow:0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(16, 24, 40, .08);border-radius:18px}
.mobile-warning-check__img{background:url('../img/icons/icon-check.webp') no-repeat center / cover;width:63px;height:63px;margin-bottom:15px}
.mobile-warning-check__title{line-height:1.2;margin-bottom:15px;color:#131313;font-size:16px;font-weight:700;text-align:center}
.mobile-warning-check__desc{text-align:center}

@media screen and (max-width: 375px) {
    .mobile-warning-social{flex-direction:column;justify-content:center}
}

.header{position:relative;z-index:100;background:var(--neutral-100);width:100%;padding:0;margin:0;border-bottom: 1px solid var(--neutral-200);}
.header .container {
  max-width: 100%;
  padding: 0 50px;
}
.header-wrap{display:flex;justify-content:space-between;align-items:center;height:76px}
.header-logo{display:flex;flex-shrink:0;width:113px;height:32px;margin-right: 145px;}
.header-logo picture, .header-logo img{width:100%;height:100%}
.header-nav{display:flex;gap:12px}
.header-nav__link{position:relative;font-weight: 400;font-size: 16px;padding: 0 14px;}
.header-menu{display:flex;justify-content:space-between;align-items:center;flex-grow:1;}
.header-action__button {
  font-weight: 500;
  font-size: 16px;
  padding: 0 24px;
}
.header-action__button.button-border-green {
  border: 1px solid var(--primary-300---accent);
}
.header-action__button img {
    width: 16px;
}

body .hide-desktop {
  display: none;
}
@media (max-width: 991px) {
  body .hide-mobile {
    display: none;
  }
  body .hide-desktop {
    display: flex;
    align-items: flex-start;
  }
}

.header-action{display:flex;align-items:center;gap:12px;margin-left:30px}
.header-action__help{transition:.2s;margin-right:15px}
.header-action__help:hover{color:var(--primary-300---accent)}
.header-action__help__icon{width:20px;height:20px}
.header-action .button-bg-green{color:#000}
.header-action .button-bg-green:hover{color:#000}

.header-user{position:relative;width:40px;height:40px}
.header-user__icon{position:relative;display:flex;justify-content:center;align-items:center;background:var(--primary-300---accent);color:var(--neutral-100);width:40px;height:40px;border-radius:50%;cursor:pointer}
.header-user__icon__text{font-size:24px;font-weight:500}
.header-user__menu{position:absolute;top:calc(100% + 10px);right:0;z-index:5;display:flex;flex-direction:column;justify-content:center;background:var(--neutral-100);padding:6px;box-shadow:0 0 5px 1px rgba(85, 120, 115, .2);white-space:nowrap;border-radius:5px}
.header-user__menu::before{position:absolute;top:-10px;right:0;bottom:0;left:0;z-index:-5;content:''}
.header-user__menu__link{display:flex;align-items:center;gap:10px;stroke:#494949;color:#131313;padding:6px 10px;border-radius:4px}
.header-user__menu__link--red{stroke:#f14545;color:#f14545}
.header-user__menu__link span{font-size:14px}
.header-user__menu__link svg{}

@media screen and (min-width: 992px) {
    .header-user:hover .header-user__menu{pointer-events:all;opacity:1}
    .header-user__menu{pointer-events:none;opacity:0;transition:.3s;transition-delay:.2s}
    .header-user__menu__link:hover{background:var(--primary-300---accent);stroke:var(--neutral-100);color:var(--neutral-100)}
    .header-user__menu__link--red:hover{background:#f14545;stroke:var(--neutral-100);color:var(--neutral-100)}
}

@media screen and (max-width: 991px) {
    .header-action-auth{display:flex;flex-direction:column-reverse;width:100%;background:#fbfbfb;padding:20px 20px 15px 20px;border:1px solid #f5f5f5}
    .header-user{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:auto}
    .header-user__icon{margin-bottom:15px}
    .header-user__menu{position:static;background:0;width:100%;padding:0;box-shadow:none}
    .header-user__menu__link{justify-content:center;padding:10px 0}
}

.header-hamburger{position:relative;z-index:100;display:flex;justify-content:center;align-items:center;width:30px;height:30px;background: transparent;}
.header-hamburger__line{transition:margin .3s .3s, opacity .3s 0s, transform .3s;position:absolute;background:#2c3333;width:100%;height:3px;border-radius:3px}
.header-hamburger__line:nth-child(1){margin-top:-21px}
.header-hamburger__line:nth-child(2){}
.header-hamburger__line:nth-child(3){margin-top:21px}
.header-hamburger.is-active .header-hamburger__line{transition:margin .3s, opacity .3s 0s, transform .3s .3s}
.header-hamburger.is-active .header-hamburger__line:nth-child(1){margin:0;transform:rotate(-45deg)}
.header-hamburger.is-active .header-hamburger__line:nth-child(2){opacity:0}
.header-hamburger.is-active .header-hamburger__line:nth-child(3){margin:0;transform:rotate(45deg)}

.fixed-header-prepared{visibility:hidden;transform:translateY(-100%);position:fixed;top:0;right:0;left:0;z-index:100;background:var(--neutral-100);box-shadow:0 0 15px rgba(0, 0, 0, 0)}
.fixed-header-preshow{visibility:visible;transition:transform .3s ease, box-shadow .3s ease}
.fixed-header-ready{transform:translateY(0);box-shadow:0 5px 25px 0 rgba(80, 125, 130, .1), 0 10px 10px -10px rgba(15, 115, 125, .1)}
.fixed-header-ready .header-action__button__tooltip{opacity:1;transition:.5s .5s}

.hero{overflow:hidden;background:var(--neutral-100);position:relative;
    padding:52px 0 52px;
    background: url(../img/index/hero-bg.webp) no-repeat center / auto;
    /* max-width: 1920px; */
    width: 100%;
    margin: 0 auto;
    height: 674px;
}
.hero::before {
    position: absolute;
    top: -48px;
    left: -280px;
    content: '';
    background: rgb(0 0 0 / 80%);
    filter: blur(100px);
    width: 1163px;
    height: 1163px;
    border-radius: 100%;
    pointer-events: none;
    z-index: 2;
}
@media screen and (min-width: 1920px) {
  .hero {
    background: url(../img/index/hero-bg-mid.webp) no-repeat center / auto;
  }
  .hero::before {
    display: none;
  }
}
@media screen and (min-width: 2560px) {
  .hero {
    background: url(../img/index/hero-bg-big.webp) no-repeat center / auto;
  }
}
.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
}
.hero-wrap{display:flex;gap:40px;position: relative;height: 100%;}
.hero-wrap::before {
    position: absolute;
    top: -393px;
    left: -354px;
    content: '';
    background: rgb(28 28 28 / 80%);
    filter: blur(200px);
    width: 1163px;
    height: 1163px;
    border-radius: 100%;
    pointer-events: none;
    z-index: 2;
}
.hero-info{position:relative;z-index:3;
    max-width: 757px;
    width: 100%;
    display:flex;flex-direction:column;align-items:start;justify-content: center;}
.hero-info__title{
    color: var(--neutral-100);
    font-size: 54px;
    line-height: 110%;
    max-width: 677px; /* 655px */
}
.hero-info__list{color: var(--neutral-200);margin-bottom:28px}
.hero-info__desc{
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--neutral-200);
    margin-bottom:16px;
}
.hero-info__grade {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}
.hero-info__button {
    min-width: 292px;
}
.hero-info__grade .btn-block {
    padding-top: 12px;
}
.btn-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-block-info {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    color: var(--neutral-200);
    margin-top: 10px;
}
.hero-rating {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 24px;
    padding: 16px 24px;
    background: rgba(96, 96, 96, 0.6);
    max-width: 276px;
}
.hero-rating:after {
  content: '';
  position: absolute;
  left: -32px;
  top: calc(50% - 16px);
  border: 16px solid transparent;
  border-right: 16px solid rgba(96, 96, 96, 0.6);
  transition: ease .3s;
}
.hero-rating__num {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: var(--neutral-100);
    gap: 12px;
    margin-bottom: 8px;
}
.hero-rating__stars {
    display: flex;
    align-items: center;
    gap: 2.5px;
}
.hero-rating-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--neutral-100);
}

.hero-group{
    position: relative;
    z-index: 3;
    bottom: 0;
    right: 0;
    flex-shrink: 0;
    width: 443px;
    height: 284px;
    top: 156px;
}
.hero-group video{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #000;
    border-top-left-radius: 6px;
}
.hero-picture{position:relative;z-index:2}
.hero-picture__img{}

.video-wrap {
    padding: 120px 0 85px;
}
.video-title {
}
.video-desc {
    margin-bottom: 60px;
}
.video-block {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding-bottom: 40.323%;
    border-radius: 20px;
    position: relative;
    margin: 40px 0;
}
.video-block video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
        object-fit: cover;
}
@media screen and (max-width: 1299px) {
    .video-wrap {
        padding: 80px 0 5px;
    }
}
@media screen and (max-width: 767px) {
    .video-wrap {
        padding: 40px 0 25px;
    }
}



.create {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.create-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 358px; /* высота картинки */
    background: #eefaf5;
    background: #456140;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    z-index: 1;
}
.create-parallax::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background: url(../img/index/place-bg1.webp) no-repeat center / cover;
    width: 462px;
    height: 258px;
    pointer-events: none;
}
.create-parallax::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    background: url(../img/index/place-bg2.webp) no-repeat center / cover;
    width: 906px;
    height: 347px;
    pointer-events: none;
}
.create .container {
    position: relative;
    z-index: 2;
}
.create-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    max-width: 1030px;
    margin: 0 auto;
    height: 200px;
}
.create-title {
    margin: 0;
    color: var(--neutral-100);
}
@media screen and (max-width: 767px) {
  .create-block {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .create-parallax::before {
    width: 290px;
    height: 220px;
  }
  .create-parallax::after {
    width: 506px;
    height: 247px;
  }
}
@media screen and (max-width: 575px) {
  .create-parallax::before {
    width: 262px;
    height: 175px;
  }
  .create-parallax::after {
    height: 195px;
  }
}


.swiper-action{position:absolute;right:0;bottom:20px;left:0;z-index:10;display:flex;justify-content:center;align-items:center;gap:15px}
.swiper-action-counter{display:flex;justify-content:center;align-items:center;gap:10px}
.swiper-action-counter__number{width:50px;color:#8094b1;font-size:14px;text-align:center}

.example{margin-bottom:200px}
.example-head{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;margin-bottom:45px}
.example-head__title{text-align:center}
.example-head__subtitle{padding:5px 30px;text-align:center}
.example-group{display:flex;gap:40px}
.example-main{position:relative;flex-shrink:0;background:#fff;width:580px;height:340px;border-radius:8px}
.example-main::before{position:absolute;top:0;right:0;bottom:0;left:0;content:'';border:1px solid rgba(91, 91, 91, 0.15);pointer-events:none;border-radius:inherit}
.example-main__picture{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:inherit}
.example-main__picture__img{border-radius:inherit}
.example-main__picture__img-main{}
.example-main__picture__img-filter{}
.example-main__select{position:absolute;bottom:-55px;left:50%;transform:translateX(-50%);display:flex;justify-content:center;align-items:center;gap:8px;background:#fff;padding:14px 12px;border-radius:8px;box-shadow:0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(16, 24, 40, .08)}
.example-main__select__item{position:relative;width:128px;height:82px;border-radius:6px;cursor:pointer}
.example-filter{max-width:443px}
.example-filter__desc{margin-bottom:20px}
.example-filter__select{display:grid;grid-template-columns:repeat(3, 1fr);gap:16px 20px}
.example-filter__item{transition:color .3s;background:#fff;box-shadow:0 2px 4px -2px rgba(16, 24, 40, .06), 0 4px 8px -2px rgba(16, 24, 40, .1);border-radius:8px;cursor:pointer}
.example-filter__item:hover{color:#7519eb}
.example-filter__item.is-selected .example-filter__item__img::after{opacity:1}
.example-filter__item__img{position:relative;height:82px;border-radius:8px}
.example-filter__item__img::before{position:absolute;top:0;right:0;bottom:0;left:0;content:'';border:1px solid rgba(91, 91, 91, 0.15);pointer-events:none;border-radius:inherit}
.example-filter__item__img::after{position:absolute;top:0;right:0;bottom:0;left:0;content:'';background:rgba(255,255,255,.5);border:1px solid #892dff;border-radius:inherit;opacity:0;transition:.3s}
.example-filter__item__title{padding:11px;font-size:14px;text-align:center}

.advantage{margin-bottom:145px}
.advantage-wrap{display:flex;gap:135px}
.advantage-title{margin-bottom:100px;text-align:center}
.advantage-media{flex-shrink:0;position:relative;background:var(--neutral-100);width:100%;max-width:454px;border-radius:24px}
.advantage-media::after{position:absolute;top:30px;bottom:0;content:'';background:url('../img/section_advantage/grid.svg') no-repeat center / cover;width:490px;height:408px}
.advantage-media-container{position:relative;z-index:1;background:var(--neutral-100);width:100%;height:100%;border-radius:24px}
.advantage-media__head{display:flex;align-items:center;gap:25px;padding:37px}
.advantage-media__head__icon{flex-shrink:0;width:72px;height:72px}
.advantage-media__head__text{display:flex;flex-direction:column}
.advantage-media__head__text span{margin-bottom:8px;font-size:20px;font-weight:500}
.advantage-media__head__text p{font-size:14px}
.advantage-media__iframe{position:relative;display:block;margin:0 8px 8px;padding-bottom:55.85%;border-radius:20px;cursor:pointer}
.advantage-media__iframe:hover .advantage-media__iframe-player svg{fill:var(--neutral-100)}
.advantage-media__iframe:hover .advantage-media__iframe-player{animation-play-state:paused}
.advantage-media__iframe:hover .advantage-media__iframe-player::before{animation-play-state:paused}
.advantage-media__iframe-container{position:absolute;top:0;right:0;bottom:0;left:0}
.advantage-media__iframe-player{pointer-events:none;animation:pulse 2s infinite;cursor:pointer;position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;display:flex;justify-content:center;align-items:center;background:var(--primary-300---accent);width:48px;height:48px;margin:auto;border-radius:50%}
.advantage-media__iframe-player::before{animation:pulse-before 2s infinite;position:absolute;top:-5px;right:-5px;bottom:-5px;left:-5px;z-index:-1;content:'';background:rgba(50, 130, 255, .35);border-radius:inherit}
.advantage-media__iframe-player:hover::before{opacity:1}
.advantage-media__iframe-player svg{transition:.3s;color:transparent;stroke:var(--neutral-100);margin-left:3px}
.advantage-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:45px 65px;margin-top:40px}
.advantage-item{display:flex;flex-direction:column;gap:12px}
.advantage-item__icon{width:72px;height:72px}
.advantage-item__text{}

@keyframes pulse {
    0% {transform: scale(0.9)}
    70% {transform: scale(1)}
    100% {transform: scale(0.9)}
}

@keyframes pulse-before {
    0% {transform: scale(0.9)}
    70% {transform: scale(1)}
    100% {transform: scale(0.9)}
}

.step{padding: 170px 0 25px;}
.step-head{margin:0 auto 60px;text-align:center;width:100%;max-width:730px}
.step-head__title{margin-bottom:24px}
.step-head__desc{margin-top:25px}
.step-grid{display:flex;flex-direction:column;gap:50px;margin-bottom:60px}
.step-item{display:flex;justify-content:space-between;align-items: center; gap:60px}
.step-item__pic{position: relative;
    flex-shrink: 0;
    max-width: 556px;
    width: 100%;
    padding-bottom: 22.339%;
    border-radius: 20px;
    margin: 16px 0 0 16px;}
.step-item__pic::after {
    position: absolute;
    top: -16px;
    left: -16px;
    bottom: -16px;
    z-index: -1;
    content: '';
    border-radius: 24px;
    background: var(--gray);
    width: 91%;
    height: calc(100% + 32px);
}
.step-item__pic-invers {
    margin: 16px 16px 0 0;
}
.step-item__pic-invers::after {
    right: -16px;
    left: initial;
}
.step-item__pic img{border-radius:20px}
.step-item__info{display:flex;flex-direction:column;align-items:start;flex-grow:1;}
.step-item__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.step-item__info__number{font-weight: 700;
font-size: 60px;
line-height: 110%;
color: var(--primary-300---accent);}
.step-item__info__title{font-weight: 700;
font-size: 32px;
line-height: 110%;}
.step-item__info__desc{}
.step-action{display:flex;justify-content:center;align-items:center}
@media screen and (max-width: 1299px) {
  .step {
    padding: 100px 0 25px;
  }
	.step-item{align-items:center;gap: 30px;}
  .step-item__pic{width:50%;height:auto}
  .step-item__info{padding:0}
}
@media screen and (max-width: 991px) {
	.step{padding: 80px 0 25px;}
	.step-item{align-items:center;gap: 30px;flex-direction: column;}
  .step-item__pic{width: 100%;padding-bottom: 32%;order:-1}
  .step-head{margin-bottom:40px}
}
@media screen and (max-width: 767px) {
  .step {
    padding: 65px 0 25px;
  }
  .step-item__top {
    gap: 20px;
    margin-bottom: 15px;
  }
  .step-item__info__number {
    font-size: 52px;
  }
  .step-item__info__title {
    font-size: 28px;
  }
  .step-item__pic {
    padding-bottom: 40%;
  }
}

.cta-wrap {
    padding: 24px 0 43px;
    background: radial-gradient(214.35% 77.63% at 6.25% 9.36%, #324d38 0%, #18281b 100%);
}
.cta-block {
    display: flex;
    align-items: center;
    gap: 100px;
}
.cta-img {
    display: flex;
    flex-direction: column;
    max-width: 715px;
    width: 100%;
    margin-left: -184px;
}
.cta-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.cta-title {
    color: var(--neutral-100);
}
.cta-list {
    color: var(--neutral-300);
    margin-bottom: 40px;
}
@media screen and (max-width: 1299px) {
  .cta-block {
    gap: 30px;
  }
  .cta-img {
    max-width: 600px;
  }
}
@media screen and (max-width: 991px) {
  .cta-block {
    flex-direction: column;
  }
  .cta-info {
    order: -1;
  }
  .cta-img {
    max-width: 550px;
    margin-left: 0;
  }
}

.cta-2-wrap {
    padding: 35px 0 0;
    background: linear-gradient(360deg, #fafef8 0%, #dff6e2 100%);
}
.cta-3-wrap {
  padding: 55px 0 55px;
  background: linear-gradient(138deg, #fefffe 0%, #dff6e2 100%);
}
.cta-2-block {
    display: flex;
    align-items: center;
    gap: 40px;
}
.cta-2-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 655px;
    width: 100%;
}
.cta-2-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}
.cta-2-list {
    margin-bottom: 40px;
}
.cta-2-subtitle {
  margin-bottom: 40px;
  max-width: 400px;
}
@media screen and (max-width: 1299px) {
  .cta-2-block {
    gap: 30px;
  }
  .cta-2-img {
    max-width: 430px;
  }
}
@media screen and (max-width: 991px) {
  .cta-2-block {
    flex-direction: column;
  }
  .cta-2-info {
    order: -1;
  }
  .cta-2-img {
    max-width: 550px;
    margin-left: 0;
  }
}

.plot-wrap {
    padding: 85px 0;
}
.plot-block {
    display: flex;
    margin: 60px 0 70px;
    gap: 24px;
}
.plot-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 24px;
    padding: 8px 8px 32px;
    background: var(--gray);
    width: 50%;
}
.plot-left__img img {
    border-radius: 20px;
}
.plot-left__info {
    margin-left: 24px;
}
.plot-h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom: 16px;
}
.plot-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    border-radius: 24px;
    background: var(--gray);
    overflow: hidden;
    width: 50%;
}
.plot-right__info {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 24px 32px;
}
.plot-right__info-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.plot-right__info-img {
    width: 108px;
    height: 108px;
}
.plot-right__img {
}
@media screen and (max-width: 1299px) {
    .plot-wrap {
        padding: 65px 0;
    }
}
@media screen and (max-width: 991px) {
    .plot-block {
        margin: 50px 0 50px;
        flex-direction: column;
        align-items: center;
    }
    .plot-left {
        width: 100%;
        max-width: 550px;
    }
    .plot-right {
        width: 100%;
        max-width: 550px;
    }
}
@media screen and (max-width: 575px) {
    .plot-left {
        padding: 8px 8px 20px;
        gap: 24px;
    }
    .plot-left__info {
        margin-left: 0;
    }
    .plot-right {
        gap: 15px;
    }
    .plot-right__info {
        gap: 15px;
        padding: 16px 10px;
    }
    .plot-right__info-img {
      width: 75px;
      height: 75px;
    }
}

.location {
    display: flex;
    align-items: center;
    background: var(--gray);
    border-radius: 24px;
    gap: 24px;
    padding: 8px;
    margin: 70px 0;
}
#location-nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  gap: 10px;
}
.location-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#location-nav a {
  display: flex;
  gap: 8px;
  border: 1px solid var(--neutral-100);
  background: var(--neutral-100);
  border-radius: 12px;
    padding: 12px 20px;
    width: 145px;
    height: 48px;
  cursor: pointer;
  transition: ease .3s;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #4a4a4a;
}
#location-nav a:hover,
#location-nav a.active {
  background: var(--neutral-100);
  border: 1px solid var(--primary-300---accent);
  color: var(--primary-300---accent);
}
#location-nav a path,
#location-nav a path {
    transition: ease .3s;
}
#location-nav a:hover path,
#location-nav a.active path {
    fill: var(--primary-300---accent);
}
#location-block {
    display: flex;
    flex-direction: column;
    max-width: 705px;
    width: 100%;
}
.location-content {
  display: flex;
  align-items: center;
  border-radius: 24px;
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transition: ease .3s;
}
.location-content:not(.active) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.location-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 80px;
}
.location-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom: 24px;
}
.location-img {
    width: 100%;
    position: relative;
    padding-bottom: 56.738%;
}
.location-img img {
    border-radius: 20px;
}
@media screen and (max-width: 1299px) {
    .location {
      padding: 8px;
      margin: 65px 0;
    }
    #location-block {
        max-width: 430px;
    }
    .location-info {
      margin-bottom: 15px;
    }
}
@media screen and (max-width: 991px) {
    .location{
        margin: 50px 0 50px;
        flex-direction: column;
        align-items: center;
    }
    .location-info {
      text-align: center;
    }
    .location-title {
      margin-bottom: 14px;
    }
    .location-btn {
      justify-content: center;
    }
    #location-nav {
      order: -1;
    }
    #location-nav a {
      padding: 10px 5px;
      width: 126px;
      height: 42px;
    }
}

.mode {
    display: flex;
    align-items: center;
    gap: 39px;
    background: var(--gray);
    border-radius: 24px;
    gap: 24px;
    padding: 8px;
    margin: 70px 0;
}
#mode-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  flex: 1;
  padding-left: 16px;
  gap: 10px;
}
.mode-btn {
    display: flex;
    gap: 10px;
    border-radius: 16px;
    padding: 4px;
    background: var(--neutral-200);
    flex-wrap: wrap;
}
#mode-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 10px 12px;
  height: 44px;
  cursor: pointer;
  transition: ease .3s;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  text-align: center;
  color: var(--neutral-700);
}
#mode-nav a:hover,
#mode-nav a.active {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-100);
  color: var(--primary-300---accent);
}
#mode-nav a path,
#mode-nav a path {
    transition: ease .3s;
}
#mode-nav a:hover path,
#mode-nav a.active path {
    fill: var(--primary-300---accent);
}
#mode-block {
    display: flex;
    flex-direction: column;
    max-width: 705px;
    width: 100%;
}
.mode-content {
  display: flex;
  align-items: center;
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transition: ease .3s;
}
.mode-content:not(.active) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.mode-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 452px;
    margin-bottom: 212px;
}
.mode-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom: 16px;
}
.mode-img {
    width: 100%;
    position: relative;
    padding-bottom: 61.561%;
}
.mode-img img {
    border-radius: 20px;
}
@media screen and (max-width: 1299px) {
    .mode {
      padding: 8px;
      margin: 65px 0;
    }
    #mode-block {
        max-width: 430px;
    }
    .mode-info {
      margin-bottom: 15px;
    }
}
@media screen and (max-width: 991px) {
    .mode {
        margin: 50px 0 50px;
        flex-direction: column;
        align-items: center;
    }
    #mode-nav {
      padding-left: 0;
    }
    .mode-info {
      text-align: center;
    }
    .mode-title {
      margin-bottom: 14px;
    }
    .mode-btn {
      justify-content: center;
      margin: 0 auto;
    }
}

.possibilities-wrap {
    padding: 85px 0 170px;
}
.possibilities {
}
#possibilities-nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 60px auto;
  padding: 10px 15px;
  border-radius: 16px;
  background: var(--gray);
  gap: 10px;
}
#possibilities-nav a {
  display: flex;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 10px 2px 10px 6px;
  width: 270px;
  height: 44px;
  cursor: pointer;
  transition: ease .3s;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  text-align: center;
  color: var(--neutral-700);
}
#possibilities-nav a:hover,
#possibilities-nav a.active {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-100);
  color: var(--primary-300---accent);
}
#possibilities-nav a path,
#possibilities-nav a path {
    transition: ease .3s;
}
#possibilities-nav a:hover path,
#possibilities-nav a.active path {
    fill: var(--primary-300---accent);
}
.possibilities-content {
  display: flex;
  align-items: center;
  gap: 60px;
  border-radius: 24px;
  background: var(--gray);
  padding: 8px 8px 10px 36px;
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transition: ease .3s;
}
.possibilities-content:not(.active) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.possibilities-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 536px;
}
.possibilities-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom: 24px;
}
.possibilities-img {
    position: relative;
    max-width: 600px;
    padding-bottom: 30.101%;
    width: 100%;
}
.possibilities-img img {
    border-radius: 20px;
}
@media screen and (max-width: 1299px) {
  .possibilities-wrap {
    padding: 65px 0 120px;
  }
  #possibilities-nav {
    justify-content: center;
  }
  .possibilities-content {
    gap: 30px;
    padding: 8px 8px 10px 8px;
  }
  .possibilities-img {
    max-width: 420px;
  }
}
@media screen and (max-width: 991px) {
  #possibilities-nav {
    margin: 30px auto;
  }
  .possibilities-content {
    flex-direction: column;
  }
  .possibilities-img {
    padding-bottom: 37%;
  }
}
@media screen and (max-width: 767px) {
  .possibilities-wrap {
    padding: 65px 0 80px;
  }
  #possibilities-nav a {
    padding: 10px 6px 10px 6px;
    width: initial;
  }
  .possibilities-img {
    padding-bottom: 51%;
  }
} 
@media screen and (max-width: 575px) {
  #possibilities-nav {
    padding: 10px;
  }
  #possibilities-nav a {
    gap: 6px;
    padding: 6px;
    height: 32px;
    font-size: 12px;
    line-height: 140%;
  }
  #possibilities-nav a svg {
    width: 20px;
  }
  .possibilities-img {
    padding-bottom: 56%;
  }
} 

/* .possibilities {
  width: 600px;
  background-color: #09F;
  border-radius: 5px 5px 5px 5px;
}
#possibilities-nav {
  list-style: none;
  margin: 0;
  padding: 5px;
  overflow: auto;
}
#possibilities-nav a {
  float: left;
  font-weight: bold;
  margin-right: 2px;
  padding: 8px 10px;
  border-radius: 5px 5px 5px 5px;
  cursor: pointer;
}
#possibilities-nav a:hover,
#possibilities-nav a.active {
  background-color: #08E;
}
#possibilities-nav a {
  text-decoration: none;
  color: #FFF;
}
.possibilities-content {
  padding: 10px;
  border: 5px solid #09F;
  background-color: #FFF;
} */

.beauty-wrap {
    padding: 170px 0;
}
.beauty-block {
    position: relative;
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.beauty-block-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 24px;
    width: 397px;
    background: var(--gray);
}
.beauty-block-item__center {
    position: relative;
    top: -10px;
}
.beauty-block-img {
    max-width: 100px;
    margin-bottom: 24px;
}
.beauty-block-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
    color: var(--black-1000);
    margin-bottom: 16px;
}
@media screen and (max-width: 1299px) {
  .beauty-wrap {
    padding: 65px 0;
  }
  .beauty-block-item {
    padding: 10px 15px;
    width: 290px;
  }
}
@media screen and (max-width: 991px) {
  .beauty-block {
    margin-top: 55px;
  }
  .beauty-block-item__center {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .beauty-block-item {
    width: 100%;
  }
}

.project-wrap {
    padding: 80px 0;
    background: var(--gray);
}
.project-title {
    margin-bottom: 60px;
}
.project-wrap .container {
    overflow: hidden;
}
.project-slider {
  width: 100%;
  height: 500px;
  width: 818px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -159px;
}
.project-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  position: relative;
  transition: ease .9s;
}
.project-slider .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background: #1c1c1c63;
}
.project-slider .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background: #000;
}
.project-slider .slide-content {
    border-radius: 20px;
}
.project-slider .slide-content .img-absolute {
    opacity: .5;
}
.project-slider .slide-content-info {
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: 0;
    width: calc(100% + 2px);
    background: var(--neutral-100);
    padding: 24px;
    text-align: left;
    border-radius: 0 0 20px 20px;
}
.project-slider .slide-content-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom: 24px;
}
.project-slider .slide-content-data {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.project-slider .slide-content-text {
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #4a4a4a;
}
.project-slider .slide-content-text span {
    font-weight: 700;
}
.project-slider .swiper-slide.swiper-slide-active {
    position: relative;
}
@media screen and (min-width: 1300px) {
  /* .project-slider .swiper-slide.swiper-slide-prev {
      margin-right: 0 !important;
  }
  .project-slider .swiper-slide.swiper-slide-active {
      margin-right: 424px !important;
      margin-left: 361px;
  } */
  .project-slider .swiper-slide.swiper-slide-active {
      position: relative;
      width: 818px !important;
  }
}
.project-slider .swiper-slide.swiper-slide-active::after {
    display: none;
}
.project-slider .swiper-slide.swiper-slide-active::before {
    display: none;
}
.project-slider .swiper-slide.swiper-slide-active .slide-content {
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    z-index: 2;
    /* width: 818px;
    transform: translateX(calc(-50% - -72px)); */
    width: 100%;
    height: 100%;
}
.project-slider .swiper-slide.swiper-slide-active .slide-content .img-absolute {
    opacity: 1;
    transition: opacity .6s;
}
.project-slider .swiper-slide.swiper-slide-active .slide-content-info {
    opacity: 1;
    transition: opacity 0.6s ease-in 0.6s;
}
.project-slider .swiper-button-next-project {
    right: -400px;
}
.project-slider .swiper-button-prev-project {
    left: 340px;
}
.project-button-block {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 1299px) {
  .project-wrap .container {
    overflow: visible;
  }
  .project-slider {
    margin: 0 auto;
  }
  .project-slider .swiper-slide.swiper-slide-active {
    margin: initial;
  }
  .project-slider .swiper-slide.swiper-slide-active .slide-content {
    width: 100%;
    transform: initial;
  }
  .project-slider .swiper-button-prev-project {
    left: -26px;
  }
  .project-slider .swiper-button-next-project {
    right: -26px;
  }
}
@media screen and (max-width: 991px) {
  .project-wrap {
    padding: 60px 0;
  }
  .project-title {
    margin-bottom: 35px;
  }
  .project-slider {
    height: 422px;
    width: 690px;
  }
}
@media screen and (max-width: 767px) {
  .project-slider {
    height: 311px;
    width: 510px;
  }
  .project-slider .slide-content-info {
    padding: 15px;
  }
  .project-slider .slide-content-title {
    margin-bottom: 10px;
  }
  .project-slider .slide-content-data {
    gap: 6px;
  }
}
@media screen and (max-width: 575px) {
  .project-slider {
    width: 100%;
    margin-bottom: 100px;
  }
  .project-slider .slide-content-info {
    bottom: -80px;
  }
  .project-slider .slide-content-title {
    font-size: 20px;
  }
  .project-slider .swiper-button-prev-project {
    left: -10px;
  }
  .project-slider .swiper-button-next-project {
    right: -10px;
  }
}

.reviews-wrap {padding: 170px 0;}
.reviews-title{margin-bottom:45px;text-align:center}
.reviews-slider{position:relative;margin-top: 60px;}
.reviews-slider .swiper-slide{height:auto}
.swiper-pagination.swiper-pagination-bullets {bottom:-85px;width: calc(100% + 44px) !important;}
.swiper-button-prev{width: 60px;height: 60px;border: none; background: var(--neutral-100); box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);top:50%;left:-30px;transform:translateY(-50%);filter: grayscale(1);transition: ease .3s;}
.swiper-button-next{width: 60px;height: 60px;border: none; background: var(--neutral-100); box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1); top:50%;right:-30px;transform:translateY(-50%);filter: grayscale(1);transition: ease .3s;}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  filter: grayscale(0);
}
.reviews-slide{display:flex;flex-direction:column;gap:16px;background: var(--gray);height:100%;padding:24px 36px;border-radius:20px;position: relative;}
.reviews-slide__comment{font-size: 16px;line-height: 120%;margin: 0;padding-bottom: 40px;
  /* border-bottom: 1px solid var(--neutral-300); */
}
.reviews-slide__footer{position:relative;margin-top:auto}
.reviews-slide__footer__name{font-weight: 500;
font-size: 20px;
line-height: 120%;
color: var(--black-1000);
margin-bottom: 5px;
}
.reviews-slide__footer__pos{font-size: 16px;line-height: 120%;}
.reviews-slide__footer__rating{padding:0!important;margin:10px 0 0 0!important}
.reviews-slide__footer__quotes{position:absolute;top:5px;right:0;color:#e4e0ed;width:30px;height:30px}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    background: var(--neutral-600);
    transform: scale(1);
    margin: 0 4px !important;
    width: 12px;
    height: 12px;
    border-radius: 20px;
    transition: ease .3s;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 56px;
}

@media screen and (max-width: 1299px) {
  .reviews-wrap {
    padding: 85px 0 120px;
  }
  .swiper-button-prev{left:0;width:36px;height:36px}
  .swiper-button-prev svg{width:14px;height:14px}
  .swiper-button-next{right:0;width:36px;height:36px}
  .swiper-button-next svg{width:14px;height:14px}
  .reviews-slider{    margin-top: 40px;padding:0 50px}
}
@media screen and (max-width: 991px) {
  .reviews-slider {
    padding: 0 35px;
  }
  .reviews-slide {
    padding: 24px;
  }
  .swiper-pagination {
    bottom: -60px;
  }
}
@media screen and (max-width: 767px) {
  .reviews-wrap {
    padding: 65px 0 100px;
  }
}
@media screen and (max-width:575px) {
  .reviews-slider{padding:0}
  .swiper-button-prev{left:-12px}
  .swiper-button-next{right:-12px}
}


.promo{overflow:hidden;position:relative;padding: 90px 0; background: radial-gradient(214.35% 77.63% at 6.25% 9.36%, #324d38 0%, #18281b 100%);}
.promo-wrap{display:flex;align-items:center;gap:30px;}
.promo-picture{position:relative;flex-shrink:0;width:100%;max-width:640px;height: 370px; margin-left:-25px}
.promo-picture-img1 {
    position: absolute;
    left: 88px;
    top: 12px;
    z-index: 1;
    width: 275px;
    height: 263px;
    transform: rotate(15deg);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.promo-picture-img2 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 423px;
    height: 373px;
    transform: rotate(-15deg);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.promo-picture-img3 {
    position: absolute;
    left: 0;
    top: 108px;
    z-index: 3;
    width: 382px;
    height: 297px;
    transform: rotate(15deg);
    transform-origin: center center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.promo-picture:hover .promo-picture-img1 {
    transform: rotate(-5deg) translateY(-10px);
}
.promo-picture:hover .promo-picture-img2 {
    transform: rotate(2deg) translateY(-5px);
}
.promo-picture:hover .promo-picture-img3 {
    transform: rotate(-3deg) translateY(-15px);
}

.promo-info{display:flex;flex-direction:column;justify-content:start;align-items:start;flex-grow:1}
.promo-info__head{margin-bottom:40px}
.promo-info__head__title{color: var(--neutral-100);}
.promo-info__head__subtitle{color: var(--neutral-300);max-width: 400px;}

@keyframes circle{
    0% {transform:rotate(0deg) translate(-10px) rotate(0deg)}
    100% {transform:rotate(360deg) translate(-10px) rotate(-360deg)}
}

@keyframes circle-reverse{
    0% {transform:rotate(0deg) translate(10px) rotate(0deg)}
    100% {transform:rotate(-360deg) translate(10px) rotate(360deg)}
}
@media screen and (max-width: 1299px) {
  .promo {
    padding: 80px 0;
  }
  .promo-picture {
    margin-left: -100px;
    transform: scale(.8);
  }
}
@media screen and (max-width: 991px) {
  .promo-wrap {
    flex-direction: column;
  }
  .promo-picture {
    margin-left: 0;
    transform: scale(1);
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .promo {
    padding: 65px 0;
  }
  .promo-picture {
    width: 640px;
    transform: scale(.8);
  }
}
@media screen and (max-width: 575px) {
  .promo {
    padding: 60px 0;
  }
  .promo-picture {
    transform: scale(.5);
    height: 220px;
  }
}




.footer{background:var(--black-1000);margin-top:auto}
.footer-wrap{display:flex;justify-content:space-between;gap:20px;padding:40px 0 20px}
.footer-head{flex-shrink:0;display:flex;flex-direction:column;align-items:start;width:100%;max-width:490px}
.footer-head .button {min-width:158px;}
.footer-body{display:flex;justify-content:space-between;gap:136px;}
.footer-logo{width:156px;height:41px;margin-bottom:20px}
.footer-social{display:flex;align-items:center;gap:10px;margin-bottom:20px}
.footer-social__link{transition: ease .3s;}
.footer-social__link:hover{transform: scale(1.1);}
.footer-info{margin-top:32px;color: var(--neutral-300);font-size:16px}
.footer-info span {color: var(--neutral-300) !important;}
.footer-copyright{margin-top:57px;color: var(--neutral-300);font-size:14px}
.footer-policy{font-size:14px;text-decoration:underline;margin-bottom:15px}
.footer-policy:hover{text-decoration:none}
.footer-nav{display:flex;flex-direction:column}
.footer-nav__head{margin-bottom:20px}
.footer-nav__head__title{color:var(--neutral-100);font-size:18px;font-weight:700}
.footer-nav__list{}
.footer-nav__list-column-1{display:grid;grid-template-columns:repeat(1, 1fr);gap:10px 35px}
.footer-nav__list-column-2{display:grid;grid-template-columns:repeat(2, 1fr);gap:10px 35px}
.footer-nav__list__link{color: var(--neutral-300);line-height: 120%;font-size:16px;transition: ease .3s;}

.inner-page{padding:30px 0}
.inner-page-title{margin-bottom:45px;text-align:center}

.price{margin-bottom:60px}
.price-title{margin-bottom:35px;text-align:center}
.price-menu{display:flex;justify-content:center;align-items:center;flex-direction:column;gap:21px;margin-bottom:70px;user-select:none}
.price-menu__wrap{display:flex;justify-content:center;align-items:center;background:var(--gray);height:52px;padding: 4px;border-radius:16px}
.price-menu__item{position:relative;display:flex;justify-content:center;align-items:center;text-align: center; min-width:140px;height:100%;padding:0 24px;cursor:pointer;border-radius:inherit}
.price-menu__item:not(.is-selected):hover{color:var(--primary-300---accent)}
.price-menu__item.is-selected{font-weight: 700;background:var(--neutral-100);color:var(--primary-300---accent);pointer-events:none}
.price-menu__item__value{}
.price-menu__item__discount{
  position:absolute;top:-20px;right:-5px;display:flex;justify-content:center;align-items:center;
  border: 1px solid var(--primary-100);
  border-radius: 12px;
  padding: 6px 12px;
  width: 53px;
  height: 26px;
  background: var(--neutral-100);
  transform: rotate(10deg);
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  color: var(--primary-300---accent);
}
.price-grid{display:grid;grid-template-columns:repeat(4, 1fr);background:var(--neutral-100);border:1px solid var(--neutral-300);border-radius:24px;box-shadow:none}
.price-item{padding:20px 24px 24px;border-right:1px solid var(--neutral-300)}
.price-item-hit{position:absolute;top:-10px;right:-9px;display:flex;justify-content:center;align-items:center;background:#f5da41;color:var(--black-1000);height:35px;padding:0 16px;font-size:16px;font-weight:700;border-radius:0 24px 0 12px}
.price-item-hit-green {
  color: var(--primary-300---accent);
}
.price-item-wrap{position:relative;z-index:5;display:flex;flex-direction:column;align-items:start}
.price-item-premium{position:relative}
.price-item-premium::before{position:absolute;top:-10px;right:-9px;bottom:-6px;left:-9px;content:'';background:var(--neutral-100);border:1px solid #f5da41;border-radius:24px;pointer-events:none}
.price-item .button-bg-green{width:100%;max-width:262px}
.price-item .button-bg-yellow{width:100%;max-width:262px}
.price-item:last-child{border-right:0}
.price-item__name{color:var(--black-1000);margin-bottom:16px;font-style: italic;font-size:20px;font-weight:600}
.price-item__value{margin-bottom:32px;width: 100%;}
.price-item__value__block{display:flex;align-items:flex-end;gap:10px}
.price-item__value__number{color:var(--black-1000)}
.price-item__value__number span:nth-child(1){font-size:40px;font-weight:700}
.price-item__value__number span:nth-child(2){font-size:24px;font-weight:700}
.price-item__value__count{color: var(--neutral-700)}
.price-item__value__count span:nth-child(1){font-size:18px;font-weight:700}
.price-item__value__count span:nth-child(2){font-size:16px;font-weight:400}
.price-item__button{margin-bottom:32px}
.price-item__list{}
.price-item__list__head{color:#4a4a4a;margin-bottom:16px;font-size:18px;font-weight:700}
.price-item__list__body{display:flex;flex-direction:column;gap:12px;color: #4a4a4a;font-size:16px}
.price-item__list__body li{position:relative;padding-left:22px;line-height:150%}
.price-item__list__body li::before{position:absolute;top:4px;left:0;content:'';background:url("../img/order/check.svg") no-repeat center / cover;width:14px;height:14px}

.payment {
    display: flex;
    align-items: center;
    justify-content: center;
		flex-wrap: wrap;
    gap: 15px 60px;
    background: #eefaf5;
    border-radius: 20px;
    padding: 12px 24px;
    max-width: 774px;
    margin: 66px auto 0;
}
.payment__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #4a4a4a;
}
.payment-grid {
    display: flex;
    align-items: center;
    justify-content: center;
		flex-wrap: wrap;
    gap: 8px;
}
.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.faq{margin-bottom:140px}
.faq-wrap{display:flex;flex-direction: column;}
.faq-info{display:flex;flex-direction:column;align-items:start;flex-shrink:0;width:100%;max-width:360px}
.faq-info__title{text-align: center; margin-bottom:60px}
.faq-info__desc{margin-bottom:35px}
.faq-info__button{}
.faq-question{display:grid;gap:24px;flex-grow:1;flex-wrap: wrap;grid-template-columns: repeat(2, 1fr);}
.faq-question-item{transition:.3s .3s;border-radius: 20px;padding: 32px;background: var(--gray);
order: 1;}
.faq-question-item__btn {grid-column: 1 / -1;display: flex;order: 3;}
.faq-question-item__head{display:flex;justify-content:space-between;align-items:center;gap:20px;margin-bottom: 16px;}

.faq-question-item__head__title{transition:.3s;font-weight: 700;
	font-size: 24px;
	line-height: 110%;
	color: var(--black-1000);}
.faq-question-item__head__icon{transition:.3s;display:flex;justify-content:center;align-items:center}
.faq-question-item__head__icon svg{}
.faq-question-item__body{}
.faq-question-item__body__text{}

.faq-question__link{
	display: flex;
  margin: 24px auto 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
	text-decoration: underline;
	color:var(--primary-300---accent);
	gap: 12px;
	grid-column: 1 / -1;
	cursor: pointer;
  order: 3;
}
.faq-question__link:hover{color:var(--primary-300---accent);text-decoration: none;}
.faq-question__link:hover .faq-question-item__head__icon{transition: ease .3s;}
.faq-question__link.is-open{transition:.3s;}
.faq-question__link.is-open .faq-question-item__head__icon{transform:rotate(180deg)}
.faq-question__block{
	display:none;
	gap: 24px;
  flex-grow: 1;
  flex-wrap: wrap;
	grid-column: 1 / -1;
  order: 2;
}

.any-questions {
  background: var(--gray);
	padding: 60px 0;
}
.any-questions-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.any-questions__desk {
	text-align: center;
	max-width: 680px;
	margin-bottom: 40px;
}

.contact-top {
    position: relative;
    background: var(--gray);
}
.contact-top::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background: url(../img/contacts/bg1.webp) no-repeat center / cover;
    width: 299px;
    height: 277px;
    pointer-events: none;
}
.contact-top::after {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: url(../img/contacts/bg2.webp) no-repeat center / cover;
    width: 285px;
    height: 306px;
    pointer-events: none;
}
.contact-block {
    padding: 50px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px 25px;
}
.contact-info {
    max-width: 650px;
}
.contact-title {
    margin-bottom: 24px;
}
.contact-desc {
    max-width: 610px;
}
.contact-support {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 422px;
}
.contact-support-img {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    margin-left: 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.contact-support-img::after {
    position: absolute;
    top: -16px;
    left: -16px;
    content: '';
    border-radius: 20px;
    background: var(--primary-100);
    width: 100%;
    height: 100%;
}
.contact-support-img .img-absolute {
    border-radius: 20px;
    z-index: 2;
}
.contact-support-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: var(--black-1000);
    margin-bottom: 10px;
}
.contact-support-link {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    text-align: center;
    color: var(--primary-300---accent);
}
.contact-button {
    margin: 0 auto;
}
.faq-contact {
    padding: 80px 0 80px;
}
@media screen and (max-width: 991px) {
    .faq-contact {
        padding: 80px 0 80px;
    }
}
@media screen and (max-width: 767px) {
    .contact-block {
        flex-direction: column;
        text-align: center;
        padding: 15px 0 70px;
    }
    .contact-top::before {
      width: 190px;
      height: 190px;
    }
    .contact-top::after {
      width: 150px;
      height: 150px;
    }
    .faq-contact {
        padding: 60px 0 60px;
    }
}

.about{}
.about-desc{margin-bottom:76px;text-align:center}
.about-lead{display:flex;align-items: center; gap:105px;margin-bottom:170px}
.about-lead-info{flex-shrink:0;width:100%;max-width:608px}
.about-lead-info__text{margin-bottom:10px}
.about-lead-group{position:relative;flex-grow:1;width:100%;max-width:530px;height:220px}
.about-lead-img {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-top: 19px;
  padding-right: 16px;
  position: relative;
}
.about-lead-item{position:absolute;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:8px;
  z-index: 1;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
background: var(--gray);
  width:185px;height:75px;text-align:center;border-radius:20px}
.about-lead-item:nth-child(2){    top: -44px;
    left: 0;}
.about-lead-item:nth-child(3){bottom: 36px;
    right: 10px;}
.about-lead-item:nth-child(4){bottom: -65px;
right: 10px;}
.about-lead-item__value{font-weight: 500;
font-size: 20px;
line-height: 120%;
text-align: center;
color: var(--primary-300---accent);}
.about-lead-item__desc{font-weight: 400;
font-size: 16px;
line-height: 120%;
color: #4a4a4a;}

.about-user{margin-bottom:50px}
.about-user-title{margin-bottom:60px;text-align:center}
.about-user-grid{display:flex;gap:24px}
.about-user-item{overflow:hidden;display:flex;align-items:center;flex-direction: column; background: var(--gray);border-radius: 24px;
padding: 8px 8px 24px;
    max-width: 292px;
    width: 100%;}
.about-user-item__pic{    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 20px;
    position: relative;
    padding-bottom: 54%;}
.about-user-item__info{
  padding: 24px 12px 0;
}
.about-user-item__info__title{font-weight: 500;
font-size: 20px;
line-height: 120%;
text-align: center;
color: var(--black-1000);
margin-bottom: 16px;}
.about-user-item__info__desc{font-weight: 400;
font-size: 16px;
line-height: 120%;
text-align: center;
color: #4a4a4a;}

.about-values-wrap {
  margin: 170px 0;
}
.about-values {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.about-values-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  padding: 24px;
  max-width: 397px;
  background: var(--gray);
  width: 100%;
}
.about-values-item__big {
  max-width: 608px;
}
.about-values-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.about-values-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: var(--black-1000);
  margin-bottom: 16px;
}
@media screen and (max-width: 1299px) {
  .about-values-wrap {
    margin: 100px 0;
  }
  .about-values-item__big {
    max-width: 397px;
  }
  .about-values {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-values-item,
  .about-values-item__big {
    max-width: 332px;
  }
}
@media screen and (max-width: 767px) {
  .about-values-item,
  .about-values-item__big {
    max-width: 100%;
  }
  .about-values-title br {
    display: none;
  }
}

.about-mission{background: var(--gray);margin:170px 0;border-radius:24px;position: relative;
  overflow:hidden;position:relative;display:flex;gap: 30px 66px;
padding: 0 0 0 50px;}
.about-mission::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 299px;
  height: 151px;
  background: url(../img/about/mission-bg1.webp);
}
.about-mission::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 287px;
  height: 306px;
  background: url(../img/about/mission-bg2.webp);
}
.about-mission-info{display:flex;flex-direction:column;align-items:start;width:100%;max-width:558px;
padding: 50px 0;
  position: relative;
  z-index: 1;}
.about-mission-title {
  margin-bottom: 32px;
}
.about-mission-text__big {
font-weight: 700;
font-size: 24px;
line-height: 110%;
color: var(--primary-300---accent);
margin-bottom: 16px;
}
.about-mission-text {
  margin-bottom: 24px;
}
.about-mission-img {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  flex: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1299px) {
  .about-mission {
    margin: 100px 0;
    gap: 0px;
    padding: 0 0px 0 25px;
  }
  .about-mission-info {
    max-width: 400px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 991px) {
  .about-mission-info {
    max-width: 350px;
    padding: 35px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-mission {
    flex-direction: column;
    padding: 0;
  }
  .about-mission::before {
    width: 150px;
    height: 277px;
  }
  .about-mission-info {
    max-width: 100%;
    padding: 20px;
  }
}

.about-team-wrap {
  margin: 170px 0;
}
.about-team-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
.about-team {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.about-team-img-block {
  width: 397px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-team-img {
  position: relative;
  width: 276px;
  height: 276px;
  flex-shrink: 0;
  margin: 16px 0 0 16px;
  border-radius: 20px;
}
.about-team-img .img-absolute {
  z-index: 2;
}
.about-team-img::after {
  position: absolute;
  top: -16px;
  left: -16px;
  content: '';
  border-radius: 20px;
  background: var(--primary-100);
  width: 100%;
  height: 100%;
}
.about-team-info {
  flex: 1;
}
.about-team-name {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  color: var(--primary-300---accent);
  margin-bottom: 12px;
}
.about-team-prof {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: var(--black-1000);
  margin-bottom: 24px;
}
.about-team-text {
}
@media screen and (max-width: 1299px) {
  .about-team-wrap {
    margin: 100px 0;
  }
  .about-team-block {
    margin-top: 45px;
  }
  .about-team {
    gap: 50px;
  }
  .about-team-img-block {
    width: 292px;
  }
}
@media screen and (max-width: 767px) {
  .about-team {
    flex-direction: column;
    gap: 35px;
  }
  .about-team-img-block {
    order: -1;
  }
}


.about-garden-wrap {
  margin: 170px 0;
}
.about-garden-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
}
.about-garden {
  display: flex;
  flex-direction: column;
  width: calc(50% - 24px);
  background: var(--gray);
  border-radius: 20px;
  padding: 24px 36px;
}
.about-garden-title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: var(--black-1000);
  margin-bottom: 24px;
}
.about-garden-img {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.about-garden-text {
}
@media screen and (max-width: 1299px) {
  .about-garden-wrap {
    margin: 100px 0;
  }
  .about-garden {
    padding: 24px;
  }
  .about-garden-block {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-garden {
    width: 100%;
  }
}

/* .a-feedback{margin-bottom:140px}
.a-feedback-wrap{position:relative;display:flex;align-items:center;background:var(--neutral-100);width:100%;max-width:950px;height:279px;padding:25px 35px;margin:0 auto;border: 1px solid #e7e7e7;border-radius:24px;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08)}
.a-feedback-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 299px;
  height: 151px;
  background: url(../img/about/mission-bg1.webp);
}
.a-feedback-wrap::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 287px;
  height: 306px;
  background: url(../img/about/mission-bg2.webp);
}
.a-feedback-info{display:flex;flex-direction:column;align-items:start;width:100%;max-width:540px}
.a-feedback-info__title{position:relative;color:#131313;margin-bottom:25px;padding-left:15px;font-size:30px;font-weight:500}
.a-feedback-info__desc{}
.a-feedback-info__button{} */


.b-feedback{margin-bottom:140px}
.b-feedback-wrap{position:relative;display:flex;align-items:center;background:var(--neutral-100);width:100%;max-width:950px;height:279px;padding:25px 65px;margin:0 auto;border: 1px solid #e7e7e7;border-radius:24px;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08)}
.b-feedback-wrap::before{position:absolute;bottom:-26px;left:30px;z-index:-1;content:'';background:url('../img/section_feedback/a-grid.webp') no-repeat center / cover;width:950px;height:279px}
.b-feedback-info{display:flex;flex-direction:column;align-items:start;width:100%;max-width:510px}
.b-feedback-info__title{position:relative;color:#131313;margin-bottom:25px;padding-left:15px;font-size:30px;font-weight:500}
.b-feedback-info__title::before{position:absolute;top:-2px;left:0;bottom:-2px;content:'';background:var(--primary-300---accent);width:4px;border-radius:24px}
.b-feedback-info__desc{margin-bottom:30px}
.b-feedback-info__button{}
.b-feedback-pic{overflow:hidden;position:absolute;right:50px}

.author{margin-bottom:30px}
.author-subtitle{text-align:center}
.author-wrap{display:flex;gap:32px;margin-bottom:60px}
.author-pic{position:relative;width:211px;height:211px;flex-shrink:0;margin-left: 16px; border-radius: 20px;}
.author-pic::after {
  position: absolute;
  top: -16px;
  left: -16px;
  z-index: -1;
  content: '';
	border-radius: 20px;
  background: var(--gray);
  width: 100%;
  height: 100%;
}
.author-pic .img-absolute {
	border-radius: 20px;
}
.author-info{}
.author-info__head{display:flex;flex-direction: column; gap:8px;margin-bottom:24px}
.author-info__head__pos{position:relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: var(--neutral-700);
    margin-bottom: 0;
}
.author-info__head__name{
    font-weight: 500;
    font-size: 48px;
    line-height: 110%;
    color: var(--black-1000);
    margin-bottom:0
}

.author-read {
    position: relative;
    background: var(--gray);
    border-radius: 24px;
    margin: 60px 0;
    padding: 60px 26px;
}
.author-read::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background: url(../img/author/bg1.webp) no-repeat center / cover;
    width: 304px;
    height: 172px;
    pointer-events: none;
}
.author-read::after {
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background: url(../img/author/bg2.webp) no-repeat center / cover;
    width: 289px;
    height: 387px;
    pointer-events: none;
}
.author-block {
    position: relative;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.author-block-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 24px;
    width: 285px;
    background: var(--neutral-100);
    color: #4a4a4a;
}
.author-block-img {
    max-width: 40px;
    margin-bottom: 20px;
}

.blog{margin-bottom:135px}
.blog-wrap{padding: 85px 0 85px;}
.blog-title{margin-bottom: 60px;}
.blog-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:24px 24px}
.blog-item{display:flex;flex-direction:column;background: var(--gray);border-radius: 24px;}
.blog-item:hover .blog-item-info__title__text{
	color: var(--primary-300---accent);
}
.blog-item:hover .blog-item-info__title__icon{background:var(--primary-300---accent);color:var(--neutral-100)}
.blog-item-pic{position:relative;padding:8px;border-radius:20px}
.blog-item-pic__img{overflow:hidden;position:relative;padding-bottom:57%;border-radius:20px;}
.blog-item-pic__tags{display:flex;flex-wrap:wrap;gap:6px 12px;margin-top:auto;margin-bottom: 20px;}
.blog-item-pic__tags__item{display:flex;justify-content:center;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
  color: var(--primary-300---accent);
  text-decoration: underline solid var(--primary-300---accent);
  transition: ease .3s;
}
.blog-item:hover .blog-item-pic__tags__item {
  color: var(--primary-300---accent);
  text-decoration-color: transparent;
}
.blog-item-info{
	padding: 16px 24px 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-item-info__cat{
	color: #4a4a4a;
	margin-bottom:20px;
}
.blog-item-info__title{display:flex;align-items:center;gap:20px;width: 100%;}
.blog-item-info__title__text{transition:.3s;
	font-weight: 700;
	font-size: 24px;
	line-height: 110%;
	color: var(--black-1000);
	width: 100%;
	margin-bottom: 16px;
}
.blog-item-info__title__icon{transition:.3s;flex-shrink:0;display:flex;justify-content:center;align-items:center;background:#eaf3ff;width:36px;height:36px;border-radius:50%}
.blog-item-info__title__icon svg{width:16px;height:16px}

.blog-loader{display:flex;justify-content:center;align-items:center;margin-top:-70px}
.blog-loader__button{}
.blog__button {
    margin: 45px auto 0;
}
.block-center {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notfound{margin:0 0 100px}
.notfound-wrap{display:flex;flex-direction: column;justify-content: center;align-items: center; gap:12px}
.notfound-info{display:flex;flex-direction:column;justify-content: center;align-items: center;}
.notfound-info__title{margin-bottom:24px;}
.notfound-info__desc{margin-bottom: 40px;max-width: 885px;}
.notfound-info__list{margin-bottom:35px}
.notfound-info__button{}

.fancybox-modal .fancybox-button{display:none}
.fancybox-modal .fancybox-slide--html{padding:15px}

.modal-close{transition:.3s;position:absolute;top:22px;right:24px;display:flex;justify-content:center;align-items:center;background:#e7e7e7;color:#8094b1;width:24px;height:24px;border-radius:50%;cursor:pointer}
.modal-close:hover{transform-origin:center;background:var(--primary-300---accent);color:var(--neutral-100)}
.modal-close__icon{width:10px;height:10px}
.modal-question{position:relative;overflow:visible;z-index:1;background:var(--neutral-100);width:100%;max-width:630px;padding:45px 65px;border:1px solid #e7e7e7;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);border-radius:24px}
.modal-question-container{display:flex;flex-direction:column;justify-content:start;align-items:start}
.modal-question-title{position:relative;color:#131313;margin-bottom:20px;padding-left:12px;font-size:30px;font-weight:500}
.modal-question-title::before{position:absolute;top:-2px;left:0;bottom:-2px;content:'';background:var(--primary-300---accent);width:4px;border-radius:24px}
.modal-question-desc{line-height:1.4;margin-bottom:20px}
.modal-question-label{display:block;width:100%;max-width:370px;margin-bottom:8px}
.modal-question-input{transition:.3s ease-in-out;width:100%;height:38px;padding:0 20px!important;font-size:16px;border:1px solid #e7e7e7;border-radius:8px}
.modal-question-input::placeholder{opacity:.6}
.modal-question-input:focus{border-color:var(--primary-300---accent)}
.modal-question-textarea{transition:.3s ease-in-out;resize:none;width:100%;height:140px;padding:10px 20px;font-size:16px;border:1px solid #e7e7e7;border-radius:8px}
.modal-question-textarea::placeholder{opacity:.6}
.modal-question-textarea:focus{border-color:var(--primary-300---accent)}
.modal-question-button{margin-top:20px}
.modal-question-policy{margin-top:10px;font-size:12px;opacity:.6;line-height:1.3}
.modal-question-policy a{text-decoration:underline}
.modal-question-policy a:hover{text-decoration:none}

.modal-check{position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);overflow:visible;z-index:1;background:var(--neutral-100);width:100%;max-width:420px;padding:25px 20px;border:1px solid #e7e7e7;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);border-radius:12px}
.modal-check .modal-close{top:12px;right:12px}
.modal-check__img{background:url('../img/icons/icon-check.webp') no-repeat center / cover;width:63px;height:63px;margin:0 auto 15px}
.modal-check__title{line-height:1.2;margin-bottom:10px;color:#131313;font-size:20px;font-weight:700;text-align:center}
.modal-check__desc{text-align:center;margin-bottom:0}

.tutorial{}
.tutorial-title{margin-bottom:32px;text-align:center}
.tutorial-desc{max-width:580px;margin:0 auto 25px;text-align:center}

.content-menu{display:flex;justify-content:center;align-items:center;margin-bottom:60px;user-select:none}
.content-menu-wrapper{display:flex;justify-content:center;align-items:center;background:var(--gray);height:52px;border-radius:16px;padding: 4px;}
.content-menu-button{transition:.3s;position:relative;display:flex;justify-content:center;align-items:center;height:100%;padding:0 24px;font-weight:400;cursor:pointer;border-radius:12px}
.content-menu-button:not(.is-selected):hover{color: var(--primary-300---accent);}
.content-menu-button.is-selected{background: var(--neutral-100);color: var(--primary-300---accent);pointer-events:none}

.content-container{margin-bottom:80px}
.content-container-block{}


.help{}
.help-title{margin-bottom:20px;text-align:center}
.help-desc{max-width:580px;margin:0 auto 25px;text-align:center}
.help-menu{margin-bottom:85px}
.a-help{margin-bottom:120px}
.a-help-group{display:flex;justify-content:space-between;width:100%;max-width:1115px;margin-bottom:55px}
.a-help-info{width:100%;max-width:550px;padding-top:75px}
.a-help-info__desc{}
.a-help-pic{position:relative;width:491px;height:422px}
.a-help-pic img{filter:drop-shadow(0px 0px 4px rgba(0, 0, 0, .15))}
.a-help-desc{position:absolute;background:#eaf3ff;width:100%;max-width:335px;padding:14px 24px;border:1px solid rgba(128, 148, 177, .45);border-radius:16px;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08)}
.a-help-desc-01{top:-45px;left:-95px}
.a-help-desc-01 .a-help-desc__icon{top:calc(100% + 5px);left:85px}
.a-help-desc-02{top:280px;left:70px}
.a-help-desc-02 .a-help-desc__icon{bottom:100%;left:90px}
.a-help-desc-03{top:135px;right:-175px}
.a-help-desc-03 .a-help-desc__icon{bottom:calc(100% + 5px);left:165px}
.a-help-desc__text{margin-bottom:0;line-height:1.2}
.a-help-desc__text i{font-size:16px}
.a-help-desc__text span{font-size:14px}
.a-help-desc__icon{position:absolute;width:35px;height:35px}
.a-help-subtitle{color:#131313;font-size:28px;font-weight:500;margin-bottom:20px}
.a-help-text{max-width:750px;margin-bottom:40px}
.a-help-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:30px 35px}
.a-help-item{display:flex;align-items:center;gap:16px;background:var(--neutral-100);padding:24px 25px;border:1px solid #e7e7e7;box-shadow:0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(16, 24, 40, .08);border-radius:30px}
.a-help-item__icon{display:flex;justify-content:center;align-items:center;flex-shrink:0;width:76px;height:76px}
.a-help-item__icon__img{width:50px;height:100%}
.a-help-item__text{font-size:16px}
.b-help{margin-bottom:80px}
.b-help-desc{width:100%;max-width:970px;margin-bottom:40px}
.b-help-desc + .b-help-desc{margin-top:-20px}
.b-help-pic{overflow:hidden;position:relative;display:block;margin:30px 0 40px;padding-bottom:56.25%;border-radius:30px}
.b-help-pic::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;content:'';border:1px solid #e7e7e7;border-radius:30px}

.c-help{margin-bottom:120px}
.c-help-desc{width:100%;max-width:970px;margin-bottom:40px}
.c-help-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:30px 32px}
.c-help-item{display:flex;flex-direction:column;background:var(--neutral-100);border:1px solid #8094b1;border-radius:24px}
.c-help-item__info{padding:20px 25px}
.c-help-item__info__title{margin-bottom:10px;font-size:20px;font-weight:500;color:#131313}
.c-help-item__info__desc{line-height:1.3;font-size:14px}
.c-help-item__pic{overflow:hidden;position:relative;margin:auto 8px 8px;padding-bottom:46%;border-radius:20px}
.help-faq{margin-top:-20px}
.help-faq-item{margin-bottom:80px}
.help-faq-item__title{margin-bottom:40px;text-align:center}
.help-faq-item__block{width:100%;max-width:950px;margin:0 auto}
.help-video{display:grid;grid-template-columns:repeat(3, 1fr);gap:36px;margin-top:-20px}
.help-video-item{display:flex;flex-direction:column}
.help-video-item:hover .help-video-item-info__title__text{color:var(--primary-300---accent)}
.help-video-item:hover .help-video-item-info__title__icon{background:var(--primary-300---accent);color:var(--neutral-100)}
.help-video-item-pic{position:relative;margin-bottom:20px;padding-bottom:56.25%;border:1px solid #8094b1;border-radius:16px}
.help-video-item-info{}
.help-video-item-info__title{display:flex;justify-content:space-between;align-items:center;gap:20px}
.help-video-item-info__title__text{transition:.3s;color:#131313;font-size:20px;font-weight:500;line-height:1.2}
.help-video-item-info__title__icon{transition:.3s;flex-shrink:0;display:flex;justify-content:center;align-items:center;background:#eaf3ff;color:#8094b1;width:36px;height:36px;border-radius:50%}
.help-video-item-info__title__icon svg{width:16px;height:16px;margin-left:2px}

.article-hero {
  background: var(--gray);
  padding-bottom: 60px;
}
.article-hero-block {
  display: flex;
  align-items: flex-start;
  gap: 20px 140px;
  position: relative;
}
.article-hero-info {
  position: relative;
  z-index: 1;
  max-width: 565px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.article-hero-text {
  margin-bottom: 16px;
}
.article-hero-img {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 532px;
  padding-top: 19px;
  padding-right: 16px;
  position: relative;
}
.article-hero-list {
  margin-bottom: 32px;
}
.article-hero-button {
  min-width: 292px;
}
.article-hero-bottom{display:flex;flex-wrap:wrap;align-items:center;gap:15px;margin-top:40px}
@media screen and (max-width: 1299px) {
  .article-hero-block {
    gap: 30px 20px;
  }
}
@media screen and (max-width: 991px) {
  .article-hero-block {
    flex-direction: column;
  }
  .article-hero-info {
    max-width: 532px;
    width: 100%;
    margin: 0 auto;
  }
  .article-hero-img {
    width: 100%;
    max-width: 532px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .article-hero-bottom {
    flex-direction: column;
    gap: 30px;
  }
}

.article-title{margin-bottom:35px;line-height:1.3;max-width:800px}
.article-author{display:flex;align-items:center;gap:12px}
.article-author__pic{position:relative;flex-shrink:0;width:50px;height:50px}
.article-author__pic img{border-radius: 16px;}
.article-author__info{display:flex;flex-direction:column;gap:2px}
.article-author__info__name{
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: var(--black-1000);
}
.article-author__info__pos{
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #4a4a4a;
}
.article-meta{display:flex;align-items:center;gap:20px;margin-left:25px}
.article-meta__item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 1px 9px 20px 14px rgb(93 86 86 / 8%);
  background: var(--neutral-100);
  gap: 8px;
}
.article-meta__item:after {
  content: '';
  position: absolute;
  left: -30px;
  top: calc(50% - 16px);
  border: 16px solid transparent;
  border-right: 16px solid var(--neutral-100);
  transition: ease .3s;
}
.article-meta__item:nth-child(n+2)::before{position:absolute;top:50%;left:-11px;content:'';transform:translateY(-50%);background:#595959;width:3px;height:3px;border-radius:50%}
.article-meta__item-date {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #4a4a4a;
}
.article-img-shadow {
  position: relative;
  display: block;
  z-index: 1;
}
.article-img-shadow::after {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: -1;
  content: '';
  background: var(--primary-100);
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.article-img-shadow img {
  border-radius: 24px;
}
@media screen and (max-width: 575px) {
  .article-meta__item:after {
    left: 25px;
    top: -30px;
    border: 16px solid transparent;
    border-bottom: 16px solid var(--neutral-100);
  }
}

.article-wrap {
  margin-top: 64px;
  padding-bottom: 100px;
}
.article-blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.article-aside {
  width: 292px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  z-index: 2;
  background: var(--neutral-100);
  border-radius: 10px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.article{width: calc(100% - 316px);
    flex-shrink: 0;}
.article-subtitle{margin-top:40px}

.article-subtitle-logo__block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.article-subtitle-logo__block .article-subtitle{margin: 0}
.article-subtitle-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 5px 9px;
  margin-bottom: 0;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
}
.article-subtitle-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
}

.article-link {
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: var(--primary-300---accent);
  transition: ease .3s;
}
.article-link:hover {

}

.article-nav{padding:24px;border: 1px solid var(--neutral-300);
border-radius: 10px;}
.article-nav-head{display:flex;gap:25px;align-items:center}
.article-nav-head__title{
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--black-1000);
}
.article-nav-list{display:flex;flex-direction:column;gap:14px;
  list-style: none;
  counter-reset: li;
}
.article-nav-list-main{padding-top:10px;margin-top:6px}
.article-nav-list li:before {
  counter-increment: li;
  content: counters(li, ".") ".";
}
.article-nav-list li:hover:before {
  color: var(--primary-300---accent);
}
.article-nav-list li:hover > a {
  color: var(--primary-300---accent);
}
.article-nav-list li > ul{gap:8px;padding:9px 15px 0 15px}
.article-nav-list li .article-nav-list-number {
  counter-reset: item;
}
.article-nav-list li .article-nav-list-number li::before {
  counter-increment: li;
  content: counters(li, ".");
}
.article-nav-list li a {
  color: #4a4a4a;
}
.article-nav-list li a:hover {
  color: var(--primary-300---accent);
}
.article-nav-list-number{position:relative;
font-weight: 400;
font-size: 16px;
line-height: 120%;
color: var(--primary-300---accent);}
.article-nav-list-number::before{position: static;content: counter(item) '.';
counter-increment: item;
margin-right: 5px;
font-weight: 400;
font-size: 16px;
line-height: 120%;
  color: #4a4a4a;
}
.article-nav-list-number li:hover::before {
  color: var(--primary-300---accent);
}
.article-nav-list-rhombus{position:relative;padding-left:15px;font-size:14px}
.article-nav-list-rhombus::before{position:absolute;top:5px;left:0;content:'';background:var(--primary-300---accent);width:6px;height:6px;border-radius:1px;transform:rotate(45deg)}
@media screen and (max-width: 1299px) {
  .article {
    width: calc(100% - 285px);
  }
  .article-aside {
    width: 270px;
  }
  .article-nav {
    padding: 15px;
  }
}
@media screen and (max-width: 991px) {
  .article-aside {
    position: relative;
    width: 100%;
    order: -1;
    top: 0;
    margin-bottom: 20px;
    max-height: initial;
    overflow-y: initial;
  }
  .article {
    width: 100%;
  }
}

.article-block{margin-bottom:80px}
.article-block:last-child{margin-bottom:0}
.article-block > *:last-child{margin-bottom:0}

.article-plot {
  background: #eefaf5;
  margin: 60px 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.article-plot::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 55px;
  background: url(../img/article/plot1.webp);
}
.article-plot::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 424px;
  height: 126px;
  background: url(../img/article/plot2.webp);
}
.article-plot-block {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  padding: 40px;
}
.article-plot-title {
  margin: 0;
  position: relative;
  z-index: 1;
}
.article-plot-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1299px) {
  .article-plot-block {
    padding: 30px 20px;
  }
  .article-plot-title {
    font-size: 26px;
  }
  .article-plot .article-btn {
    gap: 15px;
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
    min-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .article-plot-block {
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px 0;
  }
  .article-plot-img {
    position: static;
    margin: 0 auto;
    transform: none;
    order: 2;
    z-index: 1;
  }
}
@media screen and (max-width: 575px) {
  .article-plot .article-btn img {
    display: none;
  }
}

.article-widget {
  margin: 60px 0;
  background: radial-gradient(214.35% 77.63% at 6.25% 9.36%, #324d38 0%, #18281b 100%);
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.article-widget__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--neutral-300);
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.article-widget__info__title {
  color: var(--neutral-100);
}
.article-widget__list {
  color: var(--neutral-300);
  margin-bottom: 40px;
}
.article-widget__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.article-widget__pic-block {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 420px;
  height: 324px;
  z-index: 2;
}
.article-widget__pic1 {
  position: absolute;
  left: -10px;
  bottom: -10px;
  z-index: 1;
  border: 5px solid var(--neutral-100);
  border-radius: 20px;
}
.article-widget__pic2 {
  position: absolute;
  left: 50%;
  bottom: 106px;
  transform: translateX(-50%);
  z-index: 2;
  border: 5px solid var(--neutral-100);
  border-radius: 20px;
}
.article-widget__pic3 {
  position: absolute;
  right: -10px;
  bottom: -10px;;
  z-index: 1;
  border: 5px solid var(--neutral-100);
  border-radius: 20px;
}
.article-widget-bg1 {
  padding: 60px 40px;
}
.article-widget-bg1::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -132px;
  width: 728px;
  height: 663px;
  border-radius: 100%;
  background: rgba(24, 40, 27, 0.6);
  filter: blur(200px);
  z-index: 1;
}
.article-widget-bg1 .article-widget__info {
  max-width: 550px;
}
.article-widget-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: inherit;
}
@media screen and (max-width: 1299px) {
  .article-widget {
    flex-direction: column;
    padding: 0;
  }
  .article-widget__info {
    padding: 30px 20px 20px;
  }
  .article-widget__pic {
    max-width: 340px;
  }
  .article-widget__pic-block {
    transform: scale(0.6);
    right: -60px;
    bottom: -5px;
  }
  .article-widget-bg1 .article-widget__info {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .article-widget__pic {
    position: static;
    margin-left: auto;
    max-width: 440px;
    height: 275px;
  }
  .article-widget__pic-block {
    transform: scale(0.7);
    position: static;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .article-widget .article-btn img {
    display: none;
  }
  .article-widget__pic {
    max-width: 340px;
    height: 212px;
  }
  .article-widget__pic-block {
    transform: scale(0.6);
    position: static;
    margin: 0 auto;
  }
}

.article-compare-wrap {
  margin: 60px 0;
}
.article-compare{display:flex;
  margin-top: 60px;
  box-shadow: 3px 7px 13px 0 rgba(0, 0, 0, 0.08);
  background: var(--gray);
  border-radius: 24px;}
.article-compare-info{flex-shrink:0;width:193px;padding-top:178px;border-right: 1px solid var(--neutral-300);
position: relative;
left: 2px;}
.article-compare-info__item{display:flex;justify-content:start;align-items:center;height:78px;border-bottom: 1px solid var(--neutral-300);
font-weight: 700;
font-size: 16px;
line-height: 120%;
color: var(--black-1000);
padding: 20px 16px;
}
.article-compare-info__item:first-child::after{content: '';
width: 100%;left: 0;    top: 177px;    position: absolute;height: 1px;background: var(--neutral-300);}
.article-compare-info__item:last-child{border: none}
.article-compare-slider{min-width:0}

.compare-slider{position:relative}
.compare-slide__main {
background: var(--neutral-100);
}
/* .compare-slider::before{position:absolute;top:70px;right:0;bottom:0;left:0;content:'';
  background:#F9F9F9;
  border:1px solid #f4f4f4;border-radius:8px} */
.compare-slider  .swiper-wrapper {left: 2px;}
.compare-slider .swiper-slide{width:220px;border-right: 1px solid var(--neutral-300);}
.compare-slider .swiper-slide:last-child .compare-slide__item{border-right:0}
.compare-slider .swiper-prev, .compare-slider .swiper-next{position:absolute;top:88px;z-index:1;transform:translateY(-50%);width:32px;height:32px;border-radius: 60px;
background: var(--neutral-100);box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;}
.compare-slider .swiper-prev{left:-16px}
.compare-slider .swiper-next{right:-16px}
.compare-slider .swiper-prev svg, .compare-slider .swiper-next svg{width:14px;height:14px}
.compare-slider .swiper-prev:hover svg path, .compare-slider .swiper-next:hover svg path {
  stroke: var(--primary-300---accent);
}
.compare-slider .swiper-button-disabled{opacity:0;pointer-events:none}
.compare-slide{}
.compare-slide__head{display:flex;flex-direction:column;justify-content:center;align-items:center;height:178px;text-align:center;    border-bottom: 1px solid var(--neutral-300);padding: 16px 24px 20px;}
.compare-slide__head__img {max-width: 30px;margin:0 auto 12px;}
.compare-slide__head__title{
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
font-size: 18px;
line-height: 135%;
text-align: center;
color: var(--black-1000);
min-height: 50px;
margin-bottom: 20px;}
.compare-slide .button {
  font-size: 16px;
  font-weight: 500;
  padding: 0 22px 2px;
  line-height: 1;
}
.compare-slide .button.button-bg-yellow {
  padding: 0 17px;
}
.compare-slide .button.button-border-green {
  border: 1px solid var(--primary-300---accent);
}
.compare-slide__group{display:flex;flex-direction:column}
.compare-slide__item{display:flex;justify-content:center;align-items:center;height:78px;
font-weight: 400;
font-size: 16px;
line-height: 120%;
color: var(--black-1000);
text-align: center;
padding: 20px;
}
.compare-slide__item__text{}
.compare-slide__item{border-bottom: 1px solid var(--neutral-300);}
.compare-slide__item:last-child{border-bottom:0}

@media screen and (max-width: 1299px) {
  .compare-slide__head {
    padding: 16px 4px 20px;
  }
  .compare-slide .button {
    height: 40px;
  }
}
@media screen and (max-width: 575px) {
  .article-compare {
    margin-top: 30px;
  }
  .compare-slider .swiper-prev, .compare-slider .swiper-next {
    top: 145px;
  }
  .compare-slider .swiper-slide {
    width: 176px;
  }
  .compare-slide__head {
    height: 144px;
    padding: 12px;
  }
  .compare-slide__head__img {
    margin: 0 auto 5px;
  }
  .compare-slide__head__title {
    font-size: 14px;
    margin-bottom: 7px;
    min-height: 38px;
  }
  .compare-slide .button {
    padding: 0 12px;
    font-size: 14px;
  }
  .article-compare-info {
    padding-top: 144px;
    width: 160px;
  }
  .article-compare-info__item:first-child::after {
    top: 143px;
  }
  .article-compare-info__item {
    font-size: 14px;
    height: 54px;
    padding: 12px;
  }
  .compare-slide__item {
    height: 54px;
    font-size: 14px;
    padding: 12px;
  }
}


.article-pic{margin:60px auto 60px;max-width:100%}
.article-pic__img{display:block;position:relative;padding-bottom:56.25%;border-radius:24px}
.article-pic__img::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;content:'';border:1px solid #e7e7e7;border-radius:30px}
.article-pic__text{margin-top:16px;font-weight: 400;
font-size: 18px;
line-height: 135%;
text-align: center;
color: #4a4a4a;}
@media screen and (max-width: 767px) {
  .article-pic {
    margin: 30px auto 30px;
  }
}

.article-list{margin:20px 0}

.article-gallery{margin:30px 0;display: flex;
    flex-direction: column;
    gap: 24px;}
.article-gallery__grid{display:flex;gap:24px;}
.article-gallery__grid__primary{display:flex;flex-shrink:0;gap:24px;width:100%;}
.article-gallery__grid__secondary{display:flex;gap:24px;flex-shrink:1;width:100%;}
.article-gallery__item{overflow:hidden;position:relative;border-radius:24px}
.article-gallery__item-01{width:100%;}
.article-gallery__item-02{width:100%;}
.article-gallery__item-03{width:100%;}
.article-gallery__item-04{width:100%;}
.article-gallery__item-05{width:100%;}
.article-gallery__item__pic{overflow:hidden;position:relative;padding-bottom: 62.225%; border-radius:inherit}
.article-gallery__grid__secondary .article-gallery__item__pic {
  padding-bottom: 75.345%;
}

@media screen and (max-width: 575px) {
  .article-gallery__grid__primary {
    flex-direction: column;
  }
  .article-gallery__grid__secondary {
    flex-direction: column;
  }
}

.article-quote{display:flex;align-items:center;gap:10px 40px;background: var(--gray);margin:60px 0;padding:24px;border-radius:24px}
.article-quote .article-author{flex-shrink:0}
.article-quote__text{font-style:italic}
.article-quote-column {
  flex-direction: column;
  align-items: flex-start;
}



.article-video{position:relative;margin:60px 0 60px;max-width:100%}
.article-video:hover .article-video__player svg{fill:var(--neutral-100)}
.article-video:hover .article-video__player{animation-play-state:paused}
.article-video:hover .article-video__player::before{animation-play-state:paused}
.article-video__img{display:block;position:relative;padding-bottom:56.25%;border-radius:16px}
.article-video__img::before{position:absolute;top:-1px;right:-1px;bottom:-1px;left:-1px;content:'';border:1px solid #e7e7e7;border-radius:30px}
.article-video__text{color:#494949;margin-top:15px;font-size:16px;opacity:.75}
.article-video__player{pointer-events:none;animation:pulse 2s infinite;cursor:pointer;position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;display:flex;justify-content:center;align-items:center;width:60px;height:60px;margin:auto;border-radius:50%}
/* .article-video__player::before{animation:pulse-before 2s linear infinite;position:absolute;top:-5px;right:-5px;bottom:-5px;left:-5px;z-index:-1;content:'';background:rgba(50, 130, 255, .35);border-radius:inherit}
.article-video__player:hover::before{opacity:1} */
.article-video__player svg{transition:.3s;color:transparent;stroke:var(--neutral-100);margin-left:3px}

.article-phrase{display:flex;align-items:center;background: var(--gray);margin:60px 0;padding:33px 24px 15px;border-radius:24px;position: relative;}
.article-phrase__icon{flex-shrink:0;background: var(--neutral-100) url('../img/article/icon-mark.svg') no-repeat center / contain;background-size: 28px; width:50px;height:50px;padding: 11px; border: 1px solid var(--neutral-200);
border-radius: 16px;position: absolute;
left: 24px; top: -25px;}
.article-phrase__text{}
.article-phrase-border {
  padding: 24px 24px 24px 32px;
}
.article-phrase-border::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--primary-300---accent);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.online{background: #eefaf5;margin:60px 0;border-radius:24px;position: relative;overflow: hidden;}
.online::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 104px;
  height: 63px;
  background: url(../img/article/online-img1.webp);
}
.online::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 435px;
  height: 140px;
  background: url(../img/article/online-img2.webp);
}
.online-wrap{overflow:hidden;position:relative;display:flex;align-items:center;padding:45px}
.online-info{display:flex;flex-direction:column;align-items:start;width:100%;max-width:500px}
.online-info__title{margin-bottom:16px}
.online-info__text{margin-bottom:25px}
.online-info__button{}
.online-pic{position:absolute}
.online-pic-01{right:30px;bottom:-5px}
.online-pic-02{right:65px;bottom:20px}

.gallery{margin:30px 0 80px}
.gallery .article-gallery{margin:0}
.gallery-slider{}
.gallery-slider .swiper{overflow:visible}
.gallery-slider .swiper-slide{opacity:0!important}
.gallery-slider .swiper-slide-active {opacity:1!important}
.gallery-slider .swiper:not(.swiper-initialized) .swiper-wrapper{justify-content:center;gap:35px}
.gallery-slider .swiper:not(.swiper-initialized) .swiper-prev, .gallery-slider .swiper:not(.swiper-initialized) .swiper-next{opacity:0}
.gallery-slider .swiper-slide{width:258px}
.gallery-slider .swiper-prev, .gallery-slider .swiper-next{transition:.3s;position:absolute;top:50%;z-index:5;transform:translateY(-50%);display:flex;justify-content:center;align-items:center;background:var(--neutral-100);box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);width:60px;height:60px;border-radius:50%;cursor:pointer;filter: grayscale(1);}
.gallery-slider .swiper-prev:hover, .gallery-slider .swiper-next:hover{filter: grayscale(0);}
.gallery-slider .swiper-prev{left:12px}
.gallery-slider .swiper-prev svg{transform:translateX(-2px)}
.gallery-slider .swiper-next{right:12px}
.gallery-slider .swiper-next svg{transform:translateX(2px)}
.gallery-slider .swiper-pagination.swiper-pagination-bullets {
  bottom: -55px;
}

.article-group-wrap {
  margin: 60px 0;
}
.article-group {
  margin: 60px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.article-group-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-group-info__title {
  margin-bottom: 32px;
}
.article-group-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 397px;
  border-radius: 24px;
  padding-bottom: 45.455%;
}
@media screen and (max-width: 1299px) {
 .article-group-img {
   width: 277px;
 }
}
@media screen and (max-width: 767px) {
  .article-group-info__title {
    margin-bottom: 24px;
  }
 .article-group-img {
   width: 220px;
 }
}
@media screen and (max-width: 575px) {
 .article-group {
  flex-direction: column;
 }
 .article-group-info {
  order: -1;
 }
 .article-group-img {
    max-width: 397px;
    width: 100%;
    padding-bottom: 83.455%;
  }
}

.a-online{position:relative;background:#eefaf5 url('../img/article/a-online-bg.webp') no-repeat center right;margin:60px 0;border-radius:24px}
.a-online-wrap{overflow:hidden;position:relative;display:flex;justify-content:center;align-items:center;padding:60px;text-align:center}
.a-online-info{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;max-width:725px;
position: relative;
        z-index: 2;}
.a-online-info__title{margin-bottom:16px}
.a-online-info__text{margin-bottom:32px}
.a-online-info__button{}
.a-online-decor-01{position:absolute;top:-21px;right:-9px;}
.a-online-decor-02{position:absolute;top:37px;left:-76px;}
.a-online-decor-01-1{position:absolute;top:18px;right:-10px;}
.a-online-decor-02-1{position:absolute;top:-22px;left:-49px;}
.a-online-decor-03{position:absolute;top:0;left:124px;}
.a-online-decor-04{position:absolute;bottom:0;right:147px;}
.a-online-decor-05{position:absolute;top:-13px;right:139px;}
.a-online-decor-06{position:absolute;bottom:-22px;left:50%;transform: translateX(-50%);}

@media screen and (max-width: 1299px) {
  .a-online-decor-02,
  .a-online-decor-02-1 {
    width: 150px;
  }
}

.article-more{margin:60px 0;position:relative;display:flex;align-items:center;gap: 25px;    justify-content: space-between;background: #eefaf5;width:100%;padding:30px;border-radius:24px;}
.article-more__bg {
  background: var(--gray) url(../img/article/article-more-bg.webp) no-repeat center right;
}
.article-more-info{display:flex;flex-direction:column;align-items:start;width:100%;max-width:376px;padding: 10px;}
.article-more-info__title{margin-bottom:28px;}
.article-more-info__desc{margin-bottom:28px}
.article-more-pic{display: flex;justify-content: flex-end;overflow:hidden;position:absolute;right:12px;bottom: 0; max-width:460px;width: 100%;}
.article-more-pic__border {
  position: relative;
  display: block;
  z-index: 1;
  border-radius: 20px;
  width: 394px;
  padding-bottom: 27.845%;
}
.article-more-pic__border::after {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: -1;
  content: '';
  background: var(--neutral-100);
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 1299px) {
 .article-more {
  padding: 20px;
 }
 .article-more-info {
  padding: 0;
 }
 .article-more-pic {
  max-width: 270px;
 }
 .article-more-pic__border {
  padding-bottom: 21.845%;
 }
}
@media screen and (max-width: 767px) {
  .article-more{flex-direction:column;justify-content:center;align-items:center;padding: 0;gap: 15px;}
  .article-more-info{padding:20px 20px 0;max-width: 100%;}
  .article-more-pic{position:relative;width:100%;max-width:100%;height:auto;padding-bottom:57.5%;}
  .article-more-pic img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .article-more-pic__border {
    margin: 20px;
    width: calc(100% - 40px);
    padding-bottom: 54.845%;
  }
}
@media screen and (max-width: 575px) {
  .article-more-pic {
    padding-bottom: 62.5%;
  }
  .article-more-pic__border {
    padding-bottom: 51.845%;
  }
}

.article-pics{display:grid;grid-template-columns:repeat(2, 1fr);gap:20px;margin:30px 0 40px}
.article-pics__item{overflow:hidden;border-radius:28px}
.article-pics__item__container{position:relative;padding-bottom:60%;border-radius:inherit}
.article-pics__item__container img{object-fit:fill}
.article-total{display:flex;gap:24px;margin:30px 0}
.article-total-block {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.article-total-title__plus {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--primary-300---accent);
  margin-bottom: 20px;
}
.article-total-title__minus {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--red-100);
  margin-bottom: 20px;
}
.article-total .list-plus,
.article-total .list-minus {
  border-radius: 20px;
  padding: 32px 24px;
  background: var(--gray);
  height: 100%;
}
.article-total .list-plus li::before{top:5px}
.article-total .list-minus li::before{top:10px}
.article-total__list{font-size:16px;line-height: 120%;}

.article-slider{margin:30px auto 60px;overflow: hidden;}
.article-slider-container {
width:100%;max-width:735px;
margin: 0 auto;
}
.article-slider .swiper{overflow:visible;opacity:1;transition:opacity .5s}
.article-slider .swiper:not(.swiper-initialized) .swiper-wrapper{justify-content:center;gap:35px}
.article-slider .swiper:not(.swiper-initialized), .article-slider .swiper:not(.swiper-initialized){opacity:0}
.article-slider .swiper:not(.swiper-initialized) .swiper-prev, .article-slider .swiper:not(.swiper-initialized) .swiper-next{opacity:0}
.article-slider .swiper-prev, .article-slider .swiper-next{transition:.5s;position:absolute;top:50%;z-index:5;transform:translateY(-50%);display:flex;justify-content:center;align-items:center;background:var(--neutral-100);box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);width:60px;height:60px;border-radius:50%;cursor:pointer;    filter: grayscale(1);}
.article-slider .swiper-prev:hover, .article-slider .swiper-next:hover{filter: grayscale(0);}
.article-slider .swiper-prev{left:-24px}
.article-slider .swiper-prev svg{transform:translateX(-2px)}
.article-slider .swiper-next{right:-24px}
.article-slider .swiper-next svg{transform:translateX(2px)}
.article-slider-item{transition:.5s linear;position:relative;display:block;padding-bottom:50.2%;border-radius:20px;transform-origin:center}

.swiper-slide:not(.swiper-slide-active) .article-slider-item{transition:.3s;
  /* transform:scale(.9); */
  transform: scale3d(.25, 1.33, 1);
  transform-origin:center;pointer-events:none}
.swiper-slide:not(.swiper-slide-active) .article-slider-item::before {
  transition: .2s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: rgba(0, 0, 0, .5);
  border-radius: inherit;
  z-index: 2;
}
.swiper-slide.swiper-slide-active .article-slider-item{transform:scale(1)}
@media screen and (max-width: 1299px) {
  .article-slider .swiper-prev{left:12px}
  .article-slider .swiper-next{right:12px}
}

.article-btn-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  margin: 60px 0;
}
.article-btn {
  min-width: 292px;
}
.article-btn-center__bg {
  background: #eefaf5;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
.article-btn-center__bg::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 435px;
  height: 130px;
  background: url(../img/article/article-btn-center2.webp);
}
.article-btn-center__bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 169px;
  height: 130px;
  background: url(../img/article/article-btn-center1.webp);
}
@media screen and (max-width: 991px) {
  .article-btn {
    min-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .article-btn-center {
    margin: 30px 0;
  }
}

.related{margin:60px 0}
.related .container{width:100%;max-width:974px}
.related-title{margin-bottom:32px;}
.related-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:15px}
.related-item{
  border-radius: 24px;
  padding: 8px 8px 24px;
  background: var(--gray);
}
.related .related-grid a.related-item {
  text-decoration: none;
}
.related-item:hover img{filter:brightness(.7)}
.related-item:hover .related-item__info__title{color:var(--primary-300---accent)}
.related-item:hover .related-item__pic__button{opacity:1}
.related-item__info{padding:20px 8px 0}
.related-item__info__title{transition:.3s;margin-bottom:16px;
font-weight: 700;
font-size: 24px;
line-height: 110%;
text-align: center;
color: var(--black-1000);}
.related-item__info__desc{font-weight: 400;
font-size: 18px;
line-height: 135%;
text-align: center;
color: #4a4a4a;}
.related-item__pic{display:flex;justify-content:center;align-items:center;position:relative;padding-bottom:54%}
.related-item__pic img{transition:.3s;border-radius: 20px;}
.related-item__pic__button{opacity:0;transition:.3s;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);gap:15px;padding:0 26px;background:var(--neutral-100);color:#3a383c;white-space:nowrap;height:42px;font-size:16px;font-weight:600}

.program{margin:60px 0}
.program .container{width:100%;max-width:974px}
.program-title{margin-bottom:50px;}
.program-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:30px 0}
.program-item{position:relative}
.program-item:first-child .program-item-wrap {
  border-radius: 24px 0 0 24px;
}
.program-item:last-child .program-item-wrap {
  border-radius: 0 24px 24px 0;
}
.program-item-expert {
  margin: -10px 0;
  border: 1px solid var(--primary-400);
  border-radius: 24px;
}
.program-item-choise{position:absolute;    
  top: -1px;
    right: -1px;
    display:flex;justify-content:center;align-items:center;text-align:center;background: var(--primary-300---accent);color:var(--neutral-100);border-radius: 0 24px 0 12px;
padding: 8px 16px;
height: 33px;
font-weight: 400;
font-size: 14px;
line-height: 120%;
text-align: center;
color: var(--neutral-100);
white-space:nowrap}
.program-item-wrap{display:flex;flex-direction:column;align-items:center;background: var(--gray);height:100%;padding:30px 24px;border-radius:24px}
.program-item-expert .program-item-wrap {
  padding:40px 24px;
}
.program-item-logo{display:flex;justify-content:center;align-items:center;width:42px;height:42px;padding:5px 9px;margin-bottom:8px;border: 1px solid var(--neutral-200);border-radius: 12px;}
.program-item-logo img{width:32px;height:32px;object-fit:contain;object-position:center}
.program-item-title{margin-bottom:12px;font-weight: 700;
font-size: 24px;
line-height: 110%;
color: var(--black-1000);}
.program-item-rating{display:flex;gap:12px;align-items:center;margin:0 auto 20px}
.program-item-rating svg{white-space:nowrap;flex-shrink:0;width:16px;height:16px}
.program-item-rating__stars{position:relative;
display: flex;
justify-content: center;
align-items: center;}
.program-item-rating__stars__empty, .program-item-rating__stars__filled{display:flex;align-items:center;gap:5px}
.program-item-rating__stars__empty svg{color:#bdbdbd}
.program-item-rating__stars__filled{overflow:hidden;position:absolute;top:0;left:0}
.program-item-rating__stars__filled svg{color:var(--primary-300---accent)}
.program-item-rating__value{font-weight: 700;
font-size: 14px;
line-height: 120%;}
.program-item-desc{font-weight: 400;
font-size: 18px;
line-height: 135%;
text-align: center;
margin-bottom:20px}
.program-item-button{gap:15px;margin-top:auto;font-size: 16px;height: 50px;}

.program-item-list{display:flex;flex-direction:column;gap:10px;margin-bottom:40px;font-weight: 400;
font-size: 16px;
line-height: 120%;}
.program-item-list__check{position:relative;padding-left:22px}
.program-item-list__check::before{position:absolute;top:3px;left:0;content:'';background:url("../img/article/list-check.svg") no-repeat center / cover;width:12px;height:12px}
.program-item-list__times{position:relative;padding-left:22px}
.program-item-list__times::before{position:absolute;top:3px;left:0;content:'';background:url("../img/article/list-close.svg") no-repeat center / cover;width:12px;height:12px}
@media screen and (max-width: 1299px) {
  .program-item-wrap {
    padding:30px 16px;
  }
  .program-item-expert .program-item-wrap {
    padding:40px 16px;
  }
  .program-item-button {
    padding: 0 10px;
    gap: 6px;
  }
}

.article-faq{margin-bottom:60px}
.article-faq .container{width:100%;max-width:974px}
.article-faq-title{margin-bottom:40px;text-align:center}

.article-social{margin-bottom:60px}
.article-social-wrap{display:flex;align-items:center;gap:10px 32px;margin-bottom:20px}
.article-social__text{font-weight: 700;
font-size: 24px;
line-height: 110%;
color: var(--black-1000);}
.article-social__grid{display:flex;justify-content:center;align-items:center;gap:10px}
.article-social__link{transition: ease .3s;}
.article-social__link:hover{transform: scale(1.1);}

.article-comments{margin:60px 0 0}
.article-comments .container{width:100%;max-width:974px}

.article-lead{margin-bottom:100px}
.article-lead-wrap{display:flex;justify-content:space-between;width:100%;max-width:1090px;gap:50px}
.article-lead-info{}
.article-lead-info__title{margin-bottom:20px}
.article-lead-info__text{}
.article-lead-info__list{margin-bottom:35px}
.article-lead-group{display:flex;align-items:center;gap:25px 45px}
.article-lead-meta{display:flex;flex-direction:column;gap:5px}
.article-lead-meta__date{color:#131313;font-size:14px}
.article-lead-meta__ratings{}
.article-lead-pic{position:relative;width:450px;height:260px;flex-shrink:0}
.article-lead-pic::before{position:absolute;top:15px;left:65px;bottom:-40px;content:'';background:#ebf3fe;width:200vw;border-radius:33px}
.article-lead-pic::after{position:absolute;top:20px;left:20px;content:'';background:url('../img/section_article/lead-grid-01.webp') no-repeat center / cover;width:449px;height:259px}
.article-lead-pic__img{overflow:hidden;position:relative;z-index:10;width:100%;height:100%;border:1px solid #e7e7e7;border-radius:16px}
.article-lead-pic__text{position:absolute;top:-15px;left:50%;z-index:15;transform:translateX(-50%);display:flex;justify-content:center;align-items:center;text-align:center;background:#5599ff;color:var(--neutral-100);height:32px;font-size:16px;font-weight:500;border-radius:64px;padding:0 20px;white-space:nowrap}
.article-lead-pic__img-small{overflow:hidden;position:absolute;top:60px;left:-40px;z-index:15;width:77px;height:77px;border:1px solid #e7e7e7;border-radius:12px;box-shadow:0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08)}
.article-lead-pic__img-decor{position:absolute;top:-50px;left:-45px;background:url('../img/section_article/lead-decor.svg') no-repeat center / cover;width:519px;height:117px}

.reviews{margin-bottom: 90px;}
.reviews-title{margin-bottom:24px;text-align:center}
.reviews-desc{max-width:700px;margin:0 auto 60px;text-align:center}
.reviews-menu{margin-bottom:50px}
.reviews-grid{display: grid; grid-template-columns: repeat(2, 1fr);gap:40px 24px;margin:0 auto}
.reviews-item{background: var(--gray);padding:24px 36px;border-radius:20px}
.reviews-item-full{grid-column: 1 / -1;}
.reviews-item-head{display:flex;align-items:center;gap:12px;margin-bottom:30px}
.reviews-item-head__icon{overflow:hidden;position:relative;display:flex;justify-content:center;align-items:center;flex-shrink:0;width:50px;height:50px;border-radius:16px}
.reviews-item-head__info{display:flex;align-items: center;gap:60px}
.reviews-item-head__info__group{display:flex;flex-wrap:wrap;flex-direction: column; gap:5px}
.reviews-item-head__info__name{
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: var(--black-1000);
}
.reviews-item-head__info__pos{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #4a4a4a;
}
.reviews-item-head__social{transform-origin:center;display:flex;align-items:center;gap:10px}
.reviews-item-head__social__link{transition:.3s ease-in-out;display:flex;justify-content:center;align-items:center;width:32px;height:32px}
.reviews-item-head__social__link:hover{transform:scale(1.1)}
.reviews-item-body{
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #4a4a4a;
    margin-bottom:20px}
.reviews-item-body__desc{margin-bottom:15px}
.reviews-item-body__desc:last-child{margin-bottom:0}
.reviews-item-footer{display:flex;align-items:center;justify-content: space-between;gap:12px}
.reviews-item-footer__link{display:flex;align-items:center;gap:10px}
.reviews-item-footer__link:hover .reviews-item-footer__link__text{border-bottom-color:transparent}
.reviews-item-footer__link__text{transition:.3s ease-in-out;color: var(--primary-300---accent);border-bottom:1px solid}
.reviews-item-footer__link__icon{display:flex;justify-content:center;align-items:center;background:var(--neutral-100);width:30px;height:30px;padding:2px;border-radius:10px}

@media screen and (min-width: 992px) {
    .mobile{display:none}
}

@media screen and (max-width: 1299px) {
    .hero {
        background-position-x: left;
        height: initial;
        padding: 30px 0;
        background-size: cover;
    }
    .hero-wrap{flex-direction:column;justify-content:center;align-items:center;gap:45px}
    .hero-wrap::before{display: none;}
    .hero-info{flex-direction:column;justify-content:center;align-items:center;max-width: 820px;}
    .hero-info__title{font-size: 42px; text-align:center}
    .hero-info__desc{margin-bottom:10px;text-align:center}
    .hero-group{width: 100%;
    height: initial;
    position: initial;
    margin: 0 auto;
    max-width: 550px;}
    .hero-picture{position:absolute;top:0;right:0;bottom:0;left:0}
    .hero-picture__img{position:absolute;top:0;right:0;bottom:0;left:0}
    .hero-group video{position: initial;border: none; border-radius: 15px;}
}
@media screen and (max-width: 1299px) {
    .header .container {padding: 0 15px;}
    .header-logo{margin-right: 15px;}
    .header-nav{
      margin:0 auto;
      gap: 10px;
    }
    .header-nav__link {
      padding: 0 8px;
    }
    .header-action__button {
      padding: 0 16px;
    }
    .header-menu{margin-left:0}
    .header-action{margin-left:15px}
    .header-action__help{margin-right:10px}

    .h1{font-size:52px}
    .h2{font-size:42px}

    .hero-group{}
    .hero-info__title {
        font-size: 42px;
    }

    .advantage-wrap{gap:80px}
    .advantage-grid{gap:30px}
    .advantage-item__text{}
    .advantage-item__text br{display:none}

    .price-item__value__number span:nth-child(1){font-size:24px}
    .price-item__value__number span.month-rub{font-size:18px!important}

    
    .about-lead{flex-direction:column-reverse;justify-content:center;align-items:center;gap: 65px;
    margin-bottom: 100px;}
    .about-lead-group{height:275px}
    .about-lead-item:nth-child(3) {
      bottom: 115px;
    }
    .about-lead-item:nth-child(4) {
      bottom: 15px;
    }
    .about-lead-info {
      max-width: 100%;
    }

    .about-user-grid{display:grid;grid-template-columns:repeat(2, 1fr);max-width:900px;margin:0 auto}
    .about-user-item{display:flex;flex-direction:column;align-items:center;gap:0;max-width: 100%;}
    .about-user-item__pic{width:100%;padding-bottom:63.25%}
    .about-user-title{margin-bottom:40px;}

    
    .related-item__info {
      padding: 10px 8px 0;
    }
    .related-item__info__title {
      font-size: 20px;
      margin-bottom: 10px;
    }
    .related-item__info__desc {
      font-size: 16px;
    }

		.blog-item-info {
			padding: 16px 16px 0;
			display: flex;
			flex-direction: column;
			height: 100%;
		}
    .blog-item-info__title__text{font-size:21px}
    .blog-item-info__cat {
			margin-bottom: 12px;
		}
    
    .online-wrap{flex-direction:column;justify-content:center;align-items:center;gap:25px;height:auto;padding:35px 25px 0 25px}
    .online-info{flex-direction:column;justify-content:center;align-items:center;height:auto;text-align:center}
    .online-pic{position:static}
    .online-pic-02{margin-right:auto;margin-left:auto;margin-bottom:15px}

    .a-help-group{flex-direction:column;justify-content:center;align-items:center}
    .a-help-info{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-bottom:70px;padding-top:0;text-align:center}
    .a-help-subtitle{text-align:center}
    .a-help-text{text-align:center;margin-left:auto;margin-right:auto}

    .b-help-title{text-align:center}
    .b-help-desc{text-align:center;margin-left:auto;margin-right:auto}

    .c-help-title{text-align:center}
    .c-help-desc{text-align:center;margin-left:auto;margin-right:auto}

    .help-video{gap:45px 30px}
    .help-video-item-info__title__text{font-size:18px}

    .article-lead-wrap{flex-direction:column;justify-content:center;align-items:center}
    .article-lead-pic::before{left:-100%}
    .article-lead-info{display:flex;flex-direction:column;justify-content:center;align-items:center}
    .article-lead-info__title{text-align:center}

    .article-title{text-align:center;margin-right:auto;margin-left:auto}
    .article-head{justify-content:center}

    .footer-head{max-width:300px}
}

@media screen and (max-width: 991px) {
    [data-aos]{opacity:1!important;transform:none!important}

    .h1{font-size:38px}
    .h2{font-size:32px}
    .h3{font-size:26px}
    .h4{font-size:24px}
    .h5{font-size:20px}

    body {
      font-size:16px
    }
    .overflow-mobile{overflow:hidden}

    .button-small{padding:0 15px}
    .button-medium{gap:15px;height:46px;padding:0 25px;font-size:16px}
    .button-large{gap:15px;height:50px;padding:0 25px;font-size:16px}
    .block-blue > section:nth-child(1){padding-top:70px}

    .list-number li::before{top:0}
    .list-rhombus li::before{top:6px}
    .list-triangle li::before{top:5px}

    .header-wrap{height:60px}
    .header-menu{transform:translateX(100%);overflow-y:auto;overflow-x:hidden;position:fixed;top:60px;right:0;bottom:0;z-index:100;display:flex;flex-direction:column;align-items:center;gap:30px;background:var(--neutral-100);width:280px;padding:30px 15px;transition:.3s ease-in-out;pointer-events:none}
    .header-menu.is-open{transform:translateX(0);pointer-events:all}
    .header-nav{width: 80%;flex-direction:column;align-items:initial;justify-content:center;margin:0}
    .header-nav__link{padding:10px 0;font-size:14px}
    .header-action{margin: 0;flex-direction: column;}
    .header-action__help{margin-right:0}

    .hero-info__title {
        font-size: 42px;
    }
    .hero-rating {
      padding: 16px 20px;
    }

    .price-menu {
      margin-bottom: 45px;
    }
    .advantage-wrap{flex-direction:column;justify-content:center;align-items:center;gap:50px}
    .advantage-title{margin-bottom:50px}
    .advantage-media::after{display:none}
    .advantage-grid{margin:0}
    .advantage-item{justify-content:start;align-items:center;text-align:center}

    .price-grid{grid-template-columns:repeat(2, 1fr)!important;}
    .price-item:nth-child(1){border-bottom:1px solid #e7e7e7}
    .price-item:nth-child(2){border-bottom:1px solid #e7e7e7;border-right:0}
    .price-item-premium::before{top:-1px;bottom:-1px;border-radius:0 0 0 24px;right: -2px;left: -1px;}
    .price-item-hit{top:0;border-radius:0 0 0 12px;right: -1px;}
    .price-item__value__number span:nth-child(1){font-size:28px}

    .client{margin-bottom:100px}

    .faq{margin-bottom:100px}
    .faq-wrap{flex-direction:column;justify-content:center;align-items:center}
    .faq-info{justify-content:center;align-items:center;max-width:100%;text-align:center}
    .faq-info__desc{margin-bottom:20px}
    .faq-question{width:100%}

    .a-feedback{margin-bottom:100px}
    .a-feedback-wrap{justify-content:center;align-items:center;height:auto;min-height:280px;padding:25px 40px}
    .a-feedback-wrap::before{bottom:-15px;left:50%;transform:translateX(-50%)}
    .a-feedback-info{justify-content:center;align-items:center;text-align:center}
    .a-feedback-pic{display:none}

    .b-feedback{margin-bottom:100px}
    .b-feedback-wrap{justify-content:center;align-items:center;height:auto;min-height:280px;padding:25px 40px}
    .b-feedback-wrap::before{bottom:-15px;left:50%;transform:translateX(-50%)}
    .b-feedback-info{position:relative;z-index:1;justify-content:center;align-items:center;text-align:center}
    .b-feedback-pic{display:none}

    .footer-wrap{position:relative;flex-direction:column-reverse;justify-content:center;align-items:center;gap:0;padding:40px 0}
    .footer-head{justify-content:center;align-items:center;max-width:100%;text-align:center}
    .footer-body{margin:65px 0 40px 0;padding:40px 0;border:1px solid rgba(255,255,255,.1);border-right:0;border-left:0}
    .footer-body{flex-direction:column;justify-content:center;align-items:center;gap:30px;width:100%}
    .footer-nav{justify-content:center;align-items:center}
    .footer-nav__head{margin-bottom:20px}
    .footer-nav__list{display:flex;flex-direction:column;justify-content:center;align-items:center}
    .footer-logo{position:absolute;top:40px;right:0;left:0;margin:0 auto}

    .blog-grid{grid-template-columns:repeat(2, 1fr)}

    .ask{margin-bottom:100px}
    .ask-head{justify-content:center;align-items:center}
    .ask-title{flex-direction:column;justify-content:center;align-items:center}
    .ask-title__button{height:42px}
    .ask-item-question{padding:10px 20px}
    .ask-item-block{padding:25px}
    .ask-item-answer{padding:15px 20px;max-width:100%}

    .a-help{margin-bottom:100px}
    .a-help-subtitle{font-size:26px}
    .a-help-desc-03{top:135px;right:-120px}
    .a-help-desc-03 .a-help-desc__icon{left:205px}
    .a-help-grid{gap:20px}
    .a-help-item{padding:20px}
    .a-help-item__icon{width:60px;height:60px}
    .b-help{margin-bottom:100px}
    .c-help{margin-bottom:100px}
    .help-video{grid-template-columns:repeat(2, 1fr)}

    .article-blocks{
      flex-direction: column;
    }

    .article-block{margin-bottom:60px}
    .article-intro{margin-bottom:80px}
    .article-intro::after{display:none}
    .article-intro__decor-left{display:none}
    .article-intro__decor-right{display:none}
    .article-slider .swiper-prev, .article-slider .swiper-next{width:40px;height:40px}

    .gallery-slider .swiper-prev, .gallery-slider .swiper-next{width:40px;height:40px}
    .gallery-slider .swiper-prev{left:-20px}
    .gallery-slider .swiper-next{right:-20px}

    .a-online{margin:60px 0}
    .a-online-wrap{flex-direction:column;justify-content:center;align-items:center;gap:25px;height:auto;padding:35px 25px}
    .a-online-info{flex-direction:column;justify-content:center;align-items:center;height:auto;text-align:center;max-width:480px;margin:0 auto}

    .program-item-title{font-size:18px}
    .program-item-button{padding:0 15px;gap:15px;font-size:14px}
    .program-item-button svg{width:16px;height:16px}

    .article-social{margin-bottom:30px}
    .article-comments{margin:50px 0 0px}

    .about-user-item__info {
      padding: 12px 0px 0;
    }
}

@media screen and (max-width: 767px) {
    .h1{font-size:36px}
    .h2{font-size:30px}
    .h3{font-size:26px}
    .h4{font-size:22px}
    .h5{font-size:18px}


    .advantage-title br{display:none}

    .blog-wrap {
      padding: 65px 0 65px;
    }

    .faq{margin-bottom:60px}
		.faq-info__title {
			margin-bottom: 30px;
		}
    .faq-question {
			grid-template-columns: repeat(1, 1fr);
		}


    .author-wrap{flex-direction:column;justify-content:center;align-items:center}
    .author-info__head{flex-direction:column;justify-content:center;align-items:center;gap:10px;text-align:center}
    .author-info__head__name{font-size:24px}
    .author-info__head__pos::before{top:-7px;left:50%;transform:translateX(-50%)}

    .content-menu {margin-bottom: 30px;}
    .content-container{margin-bottom:60px}
    .content-menu-wrapper{flex-wrap:wrap;gap:10px;height:auto;padding: 15px;}
    .content-menu-button{background:#ececec;height:40px;padding:0 20px}

    .ask-title{margin-bottom:30px}
    .ask-title__wrap{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}
    .ask-title__text{margin-bottom:10px}
    .ask-title__text br{display:none}
    .ask-title__button{position:static;transform:none}
    .ask-item-block{background:#dbe6f4}

    .a-help-grid{grid-template-columns:repeat(1, 1fr)}
    .a-help-desc{max-width:300px;padding:5px 10px;border-radius:12px}
    .a-help-pic{width:320px;height:275px}
    .a-help-desc{background:rgba(234, 243, 255, .95)}
    .a-help-desc__text i{font-size:14px}
    .a-help-desc__text span{font-size:12px}
    .a-help-desc-01{top:-50px;left:10px}
    .a-help-desc-01 .a-help-desc__icon{left:65px;transform:scale(-1, 1)}
    .a-help-desc-02{top:190px;left:10px}
    .a-help-desc-03{top:75px;left:10px}
    .a-help-desc-03 .a-help-desc__icon{left:215px;transform:scale(-1, 1)}
    .a-help-item{padding:15px}
    .c-help-grid{grid-template-columns:repeat(1, 1fr);gap:20px}

    .article-nav{padding:20px}
    .article-slider{max-width:100%}
    .article-quote{flex-direction:column;justify-content:center;align-items:center;gap:20px;padding:25px 20px;margin: 35px 0;}
    .article-quote__text{text-align:center}
    .article-phrase{position:relative;margin-top:40px}
    .article-phrase__icon{position:absolute;top:-30px;left:20px;width:30px;height:30px;padding:25px 20px}
    .article-phrase__text{text-align:center}

    .a-online-info{position:relative;z-index:10}
    .a-online-decor-01{display:none}
    .a-online-decor-02{display:none}
    .a-online-decor-01-1{display:none}
    .a-online-decor-02-1{display:none}
    .a-online-decor-03{display:none}
    .a-online-decor-04{display:none}
    .a-online-decor-05{display:none}
    .a-online-decor-06{left: 10px;top: -10px;transform: translateX(0);}

    .program-title {
      margin-bottom: 30px;
    }
    .program-grid{display:flex;flex-direction:column;justify-content:center;align-items:center}
    .program-item{max-width:340px;width:100%}
    .program-item:first-child .program-item-wrap,
    .program-item:last-child .program-item-wrap{border-radius: 24px}
    .program-item-title{font-size:18px}

    
    .article-total .list-plus, .article-total .list-minus {
      padding: 20px 15px;
    }

    .related-grid{display:flex;flex-direction:column;justify-content:center;align-items:center}
    .related-item{max-width:340px;width:100%}
    .related-item__info {
      padding: 20px 8px 0;
    }
    .related-item__info__title {
      font-size: 24px;
      margin-bottom: 16px;
    }
    .related-item__info__desc {
      font-size: 18px;
    }

    .reviews-grid{grid-template-columns: repeat(1, 1fr);}
    .reviews-item{padding:20px 16px}
    .reviews-item-head{gap:12px;margin-bottom:10px}
    .reviews-item-head__icon{width:58px;height:58px}
    .reviews-item-head__info__name{font-size:18px}
    .reviews-item-head__info__pos{font-size:14px}
    .reviews-item-body{margin-bottom:15px}
    .reviews-item-footer__link__text{font-size:14px;border-bottom:0}
    .reviews-item-footer__link__icon{width:20px;height:20px}

}

@media screen and (max-width: 575px) {
    .header-menu{width:100%}

    .hero {
      background-position-x: -360px;
      background-position-y: top;
      padding: 30px 0 50px;
    }
    .hero-info {
      align-items: flex-start;
    }
    .hero-info__desc {
      font-size: 18px;
      text-align: left;
    }
    .hero-info__title {
      text-align: left;
    }
    .hero-info__title br{display:none}

    .hero-group{
      width:289px;
      height:185px;
      position: relative;
      bottom: initial;
      top: initial;
    }
    .hero-group video{
      position: relative;
      z-index: 2;
      border-radius: 0;
    }
    .hero-group::after {
      content: '';
      position: absolute;
      left: -55px;
      top: -11px;
      width: 393px;
      height: 229px;
      background: url(../img/index/laptop.webp);
      z-index: 1;
    }

    .hero-info__grade {
      flex-direction: column;
      gap: 30px;
    }
    .hero-info__grade .btn-block {
      flex-direction: row;
      gap: 20px;
    }
    .hero-info__button {
      min-width: 222px;
      gap: 10px;
      padding: 0 14px;
    }
    .hero-info__grade .btn-block .btn-block-info {
      text-align: left;
      margin-top: 0;
      max-width: 110px;
      font-size: 14px;
      line-height: 120%;
    }
    .hero-rating:after {
      left: 92px;
      top: -32px;
      border: 16px solid transparent;
      border-bottom: 16px solid rgba(96, 96, 96, 0.6);
    }
    .hero-rating {
      padding: 16px 20px;
    }
    .hero-rating__num {
      font-size: 22px;
    }
    .hero-rating-text {
      font-size: 14px;
    }

    .advantage-media__head{gap:20px;padding:20px}

		.faq-question-item {
			padding: 20px;
		}
    .faq-question-item__head__title{font-size:18px}

    .price-grid{grid-template-columns:repeat(1, 1fr)!important;width:100%;max-width:380px;margin:0 auto;    border: none !important;gap: 20px;}
    .price-item-premium::before{border-radius:24px;top: -1px;bottom: -1px;}
    .price-item-hit {
        top: -1px;
        right: -1px;
        border-radius: 0 24px 0 12px;
    }
    .price-item{border: 1px solid var(--neutral-300);border-radius: 24px;}
    .price-item:nth-child(2){border: 1px solid var(--neutral-300);border-radius: 24px;}
    .price-item:last-child{border: 1px solid var(--neutral-300);border-radius: 24px;}
    .price-menu{margin-bottom:30px}
    .price-menu__item{min-width:100px;padding: 0 15px;}
    .price-item__value__number span:nth-child(1){font-size:36px}

    .about-title{margin-bottom:40px}
    .about-lead-group{display:grid;grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));gap:10px;height:auto}
    .about-lead-group::before{display:none}
    .about-lead-item{position:static;width:auto;height:100px}
    .about-lead-item__value{font-size:32px}

    .about-user-grid{grid-template-columns:repeat(1, 1fr);max-width:300px}


    .a-feedback-wrap{padding:30px 20px}
    .a-feedback-info__title{font-size:24px}
    .a-feedback-info__desc br{display:none}

    .b-feedback-wrap{padding:30px 20px}
    .b-feedback-info__title{font-size:24px}
    .b-feedback-info__desc br{display:none}

    .blog-grid{grid-template-columns:repeat(1, 1fr)}

    .modal-close{top:19px;right:12px}
    .modal-question{padding:20px}
    .modal-question-container{}
    .modal-question-title{padding-right:30px;font-size:20px}
    .modal-question-desc br{display:none}
    .modal-question-button{margin-top:10px}

    .ask-item-block{padding:15px}
    .ask-head__info__pos{font-size:14px}

    .help-video{grid-template-columns:repeat(1, 1fr)}

    /* .article-slider .swiper-prev, .article-slider .swiper-next{display:none} */
    .gallery-slider .swiper-prev, .gallery-slider .swiper-next{display:none}

    .article-lead-pic{width:100%;max-width:450px;height:auto}
    .article-lead-pic::after{display:none}
    .article-lead-pic::before{bottom:-25px}
    .article-lead-pic__img{padding-bottom:57.35%}
    .article-lead-pic__text{font-size:14px;padding:0 15px}
    .article-lead-pic__img-small{left:-25px;width:55px;height:55px}
    .article-lead-group{justify-content:center;align-items:center;flex-wrap:wrap}
    .article-lead-meta{justify-content:center;align-items:center;flex-wrap:wrap}
    .article-lead-info__title br{display:none}

    .article-title{font-size:28px}
    .article-title br{display:none}
    .article-meta{justify-content:center;flex-wrap:wrap}
    .article-meta__item:nth-child(3){flex-shrink:0;width:100%}
    .article-meta__item:nth-child(3)::before{display:none}
    .article-nav-head{justify-content:space-between}
    .article-nav-list-number{font-size:14px}
    .article-total{flex-direction: column; gap:0}
    .article-total-block{width: 100%;}

    .online-wrap{padding:20px 20px 0}
    .online-info__button{gap:10px;padding:0 20px;font-size:14px}

    .a-online-wrap{padding:20px}
    .a-online-decor-06{width: 202px;}
    .a-online-info__button{gap:10px;padding:0 20px;}
    .a-online-info__button img{display: none;}

    .article-pics{gap:10px;grid-template-columns:repeat(1, 1fr)}

    .article-social-wrap{flex-direction:column;justify-content:center;align-items:center}

    .mobile-warning-form-checkbox__text{font-size:12px}
}

.upgrade-extend .price-menu__item {
    width: 152px;
}

.block-diabled {
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}

.period-grid, .price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: 24px;
}

.period-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-grid-two {
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--primary-200);
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .price-grid-two .price-item:nth-child(1),
  .price-grid-two .price-item:nth-child(2) {
    border: none;
  }
}
@media screen and (max-width: 575px) {
  .price-grid-two .price-item:nth-child(1) {
    border: 1px solid var(--primary-200);
  }
}

.period-grid .price-item {
    height: 272px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.period-item-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.period-item__name {
    font-weight: 700;
    font-size: 18px;
    color: #282828;
}

.period-price-wrap {
    height: 68px;
    background-color: #F8F8F8;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.period-item .price-item__value__number span:nth-child(1) {
    font-size: 18px;
}

.period-item .price-item__value__block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    position: relative;
}

.period-end-date {
    font-size: 16px;
    color: #AAAAAC;
    width: 100%;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
}

.period-item .button-medium {
    width: 136px;
    height: 44px;
    gap: 10px;
}

.period-item .button-medium span {
    font-size: 15px;
    font-weight: 500;
}

.period-profit {
    position: absolute;
    background-color: var(--primary-300---accent);
    border-radius: 20px;
    top: -11px;
    left: 133px;
    color: var(--neutral-100)FFF;
    font-size: 13px;
    font-weight: 900;
    width: 107px;
    height: 22px;
    text-align: center;
    padding-top: 4px;
}

.tariff-note {
    font-size: 14px;
    font-weight: 700;
    color: #59595980;
    margin-top: 20px;
    line-height: 20.3px;

}

.tariff-note ol {
    list-style: decimal;
    margin-left: 20px;
}

.period-grid .price-item__name {
    margin-top: 39px;
}

.period-grid .price-item-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

.period-grid .price-item__value {
    margin-top: 20px;
}

.period-grid .price-item__value__block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.period-grid .price-item .button-bg-green {
    max-width: 227px;
    width: 227px;
}

.period-note span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0;
}

.period-note span.blue-text {
    color: var(--primary-300---accent);
}

.price-item__value__number span.month-rub {
    font-size: 20px;
}

.price-grid_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-grids {
  display: flex;
  gap: 25px;
  margin-top: 70px;
} 
.price-grids .price-item {
  border: 1px solid #f5da41;
  border-radius: 24px;
  padding: 30px 24px;
  position: relative;
}
.price-grids .price-item.price-item-green {
  border: 1px solid var(--primary-300---accent);
}
.price-item-sale {
  position: absolute;
  top: -1px;
  right: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eefaf5;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: var(--primary-300---accent);
  height: 40px;
  border: 1px solid var(--primary-100);
  border-radius: 0 24px 0 12px;
  padding: 6px 23px;
}
.price-grids .button-bg-green {
  font-size: 18px;
}
.price-grids .price-item__value__block {
  gap: 17px;
  justify-content: space-between;
}
.price-grids .price-item__value__count {
  color: #999797;
}
@media screen and (max-width: 1299px) {
  .price-grids .price-item {
    padding: 30px 10px;
  }
  .price-item-sale {
    height: 34px;
    padding: 6px 18px;
  }
}
@media screen and (min-width: 992px) {
  .price-grids .button-bg-green {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .price-grids {
    flex-direction: column;
  }
  .price-grids .price-item {
    padding: 30px 24px;
  }
}

.support{}
.support-wrap{display:flex;justify-content:space-between;align-items:start;gap:60px 30px;padding-top:20px;margin-bottom: 100px;}
.support-info{display:flex;flex-direction:column;justify-content:start;align-items:start;max-width:633px}
.support-info__title{margin-bottom:20px}
.support-info__desc{margin-bottom:30px}
.support-info__form{width:100%;height:580px;margin-bottom:20px}
.support-info__form iframe{width:100%;height:100%;border:0;outline:none}
.support-info__button{margin-bottom:60px}
.support-info__desc-article{max-width:580px;margin-bottom:20px}
.support-info__button-article{}
.support-info__link-article{}
.support-block{position:relative;z-index:1;background:#f5f5fb;display:flex;flex-direction:column;justify-content:center;align-items:center;flex-shrink:0;width:100%;max-width:446px;padding:30px;border-radius:10px}
.support-block::before{position:absolute;top:-75px;right:-85px;z-index:-1;content:'';background:url('../img/section_support/head-stars.svg') no-repeat center / contain;width:205px;height:175px}
.support-block__pic{overflow:hidden;position:relative;width:100px;height:100px;margin-bottom:20px;border-radius:50%}
.support-block__title{margin-bottom:20px}
.support-block__desc{margin-bottom:5px}
.support-block__mail{transition:.3s;padding:3px 0;margin:-3px 0;font-weight:600;text-decoration:underline #1a6ac8}
.support-block__mail:hover{text-decoration-color:transparent}

@media screen and (min-width: 992px) {
  .support-info__form{width:calc(100% + 30px);margin-right:-15px;margin-left:-15px;height:554px}
}
/* .article-circle */
.article-circle {
  display: flex;
  position: relative;
  width: 100%;
  padding-bottom: 44%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  margin: 80px 0;
}
.article-circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: filter 0.3s ease;
  pointer-events: none;
}
.article-circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.article-circle-btn-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: 500;
  border-radius: 100%;
  border: 1px solid var(--neutral-100);
  width: 122px;
  height: 122px;
  padding: 11px;
  white-space: nowrap;
  z-index: 5;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.article-circle-btn-top span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid var(--neutral-100);
  border-radius: 100%;
}
.article-circle-btn-botton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 110%;
  color: var(--black-1000);
  background: #f5da41;
  border-radius: 80px;
  padding: 18px 24px;
  gap: 12px;
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.article-circle-circle {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  left: var(--x, 0);
  top: var(--y, 0);
  z-index: 4;
  pointer-events: none;
  transition: width 0.3s, height 0.3s;
  will-change: width, height, left, top;
}
.article-circle-circle::after {
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  z-index: -1;
  content: '';
  background: #7ed5736b;
  filter: blur(40px);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 50%;
}
.article-circle::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(7px);
  background: rgba(32, 60, 40, 0.15);
  left: var(--x, 0);
  top: var(--y, 0);
  z-index: 5;
  pointer-events: none;
  transition: width 0.3s, height 0.3s;
  will-change: width, height, left, top;
  opacity: 0;
}
.article-circle:hover .article-circle-bg {
  filter: blur(12px);
}
.article-circle:hover .article-circle-btn-top {
  opacity: 0;
}
.article-circle:hover .article-circle-circle {
  width: 358px;
  height: 358px;
}
.article-circle:hover::before {
  width: 358px;
  height: 358px;
  opacity: 1;
  mix-blend-mode: normal;
}
.article-circle:hover .article-circle-btn-botton {
  opacity: 1;
  z-index: 7;
}
.article-circle:hover .article-circle-img {
  z-index: 6;
  clip-path: circle(179px at var(--x) var(--y));
  -webkit-clip-path: circle(179px at var(--x) var(--y));
}
@media screen and (max-width: 991px) {
  .article-circle {
    margin: 60px 0;
  }
  .article-circle:hover .article-circle-img {
    clip-path: initial;
    -webkit-clip-path: initial;
  }
  .article-circle-img {
    z-index: 5;
  }
  .article-circle-bg {
    display: none;
  }
  .article-circle-btn-top {
    display: none;
  }
  .article-circle-btn-botton {
    opacity: 1;
    z-index: 5;
  }
}

.tags-wrap {
  margin-bottom: 110px;
}
.tags-block {
  margin: 60px 0;
}
.tags-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--neutral-300);
}
.tags-item-img {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  width: 381px;
  height: 204px;
  border-radius: 20px;
  transition: ease .3s;
}
.tags-item-img:hover {
  filter:brightness(.75);
  transform:scale(1.04)
}
.tags-item-info {
  display: flex;
  flex-direction: column;
}
.tags-item-info__head {
  margin-bottom: 16px;
}
.tags-item-info__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  color: var(--black-1000);
  transition: ease .3s;
}
.tags-item-info__title:hover {
  color: var(--primary-300---accent);
  text-decoration-color: transparent;
}
.tags-item-desc + .tags-article {
  margin-top: 14px;
}
.tags-article {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.tags-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--primary-300---accent);    
  text-decoration: underline solid var(--primary-300---accent);
  transition: ease .3s;
}
.tags-link:hover {
  color: var(--primary-300---accent);
  text-decoration-color: transparent;
}
@media screen and (max-width: 1299px) {
  .tags-wrap {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 991px) {
  .tags-block {
    margin: 30px 0;
  }
  .tags-item {
    flex-direction: column;
  }
  .tags-item-info {
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .tags-item-img {
    width: 100%;
  }
}