* {
    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 {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
    font-family: inherit;
}
input::-ms-clear {
    display: none;
}
button {
    cursor: pointer;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
a,
a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: #1d1d1d;
}
.container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 15px;
}
.header {
    padding: 12px 0;
}
.header__inner {
    display: flex;
    align-items: center;
}
.header__menu {
    display: flex;
    gap: 28px;
    margin-left: 80px;
    margin-right: auto;
}
.header__menu-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
}
.btn {
    background: linear-gradient(0deg, #529d7b 0%, #71e2af 74%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 201px;
    height: 50px;
    text-align: center;
    color: #1d1d1d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgb(113 226 175 / 0.4);
}
.header__auth {
    width: 107px;
    background: #fff0;
    border: 1px solid #fff;
    color: #fff;
    margin-left: 10px;
}
.header__registration {
    margin-left: 30px;
}
.language-switcher {
    position: relative;
    display: inline-block;
}
.selected-lang {
    background: #1e1f23;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease;
}
.selected-lang:hover {
    background: #2b2f36;
}
.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.language-switcher:hover .arrow {
    transform: rotate(180deg);
}
.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1f23;
    border-radius: 10px;
    padding: 5px 0;
    list-style: none;
    margin: 0;
    display: none;
    min-width: 80px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.3);
    z-index: 10;
}
.language-dropdown li {
    text-align: left;
}
.language-dropdown a {
    display: block;
    color: #bfbfbf;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.2s ease;
    border-radius: 5px;
}
.language-dropdown a:hover {
    color: #fff;
    background: linear-gradient(180deg, #529d7b 0%, #71e2af 74%);
}
.language-switcher:hover .language-dropdown {
    display: block;
}
.selected-lang span:not(.arrow) {
    text-decoration: underline;
    font-size: 18px;
    font-weight: 700;
}
.header {
    border-bottom: 1px solid #f0f2f5;
}
.hero {
    padding-top: 80px;
    padding-bottom: 100px;
}
.hero__title {
    font-weight: 900;
    font-size: 70px;
    line-height: 120%;
    letter-spacing: -1.1%;
    max-width: 1060px;
    text-align: center;
    margin: 0 auto;
}
.section-title span,
.hero__title span {
    color: #71e2af;
}
.hero__title {
    margin-bottom: 30px;
}
.hero__subtitle {
    text-align: center;
    max-width: 682px;
    margin: 0 auto;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -1.1%;
    margin-bottom: 50px;
}
.hero__btn {
    margin: 0 auto;
    height: 60px;
    border-radius: 100px;
    width: 213px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 50px;
}
.video-preview {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 828px;
    display: block;
    margin: 0 auto;
}
.video-preview:hover {
    transform: scale(1.02);
}
.video-preview img {
    width: 100%;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0 0 0 / 0.6);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.play-button:hover {
    background: rgb(0 0 0 / 0.8);
}
.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 24px solid #fff;
    border-top: 14px solid #fff0;
    border-bottom: 14px solid #fff0;
    margin-left: 6px;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.modal.active {
    display: flex;
}
.modal iframe {
    width: 80%;
    height: 60vh;
    border: none;
    border-radius: 10px;
}
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}
.why {
    padding-top: 80px;
    padding-bottom: 100px;
}
.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    line-height: 140%;
}
.why__title {
    margin-bottom: 74px;
}
.why__list {
    display: flex;
    gap: 33px;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.why__list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 50px;
    width: 430px;
    height: 200px;
    background: rgb(255 255 255 / 0.07);
    border-radius: 30px;
    position: relative;
    border-radius: 40px;
}
.why__list-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(
            90deg,
            rgb(255 255 255) 0%,
            rgb(113 226 175 / 0.7) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}
.why__list-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 5px;
}
.why__list-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -1.1%;
    max-width: 330px;
}
.why__list-title span {
    color: #71e2af;
}
.for__title {
    max-width: 836px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 90px;
}
.for__list {
    display: flex;
    justify-content: center;
}
.for__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.for__list-item img {
    width: 351px;
}
.for__list-text {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1.1%;
}
.for__list-text {
    position: relative;
}
.for__list-text-1 {
    top: 53px;
    max-width: 258px;
}
.for__list-text-2 {
    max-width: 238px;
    top: 10px;
    right: 25px;
}
.for__list-text-3 {
    max-width: 401px;
    top: 58px;
}
.for {
    padding-bottom: 90px;
}
.benefits {
    padding-top: 80px;
}
.for__list-item-1 {
    left: 22px;
    z-index: 1;
}
.for__list-item-2 {
    top: 50px;
    z-index: 2;
}
.for__list-item-3 {
    right: 45px;
    z-index: 3;
}
.for__title {
    position: relative;
}
.for__title::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -240px;
    background: url(../img/for_blur.png) no-repeat center top / cover;
    width: 1419px;
    height: 700px;
    z-index: 0;
}
.benefits__title {
    margin-bottom: 103px;
}
.benefits__inner {
    display: flex;
    justify-content: space-between;
}
.benefits__offer-title {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 140%;
    max-width: 620px;
    margin-bottom: 30px;
}
.benefits .container {
    max-width: 1670px;
    padding: 0 15px;
}
.benefits__offer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}
.benefits__offer-list-item {
    font-size: 20px;
    line-height: 140%;
    max-width: 341px;
    position: relative;
    list-style-type: disc;
    margin-left: 10px;
}
.benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 906px;
}
.benefits__list-item {
    width: 443px;
    height: 112px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 16px 35px;
    background: rgb(255 255 255 / 0.07);
    border-radius: 16px;
    position: relative;
    align-items: center;
}
.benefits__list-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
}
.benefits__list-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
            90deg,
            rgb(255 255 255) 0%,
            rgb(113 226 175 / 0.7) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}
.benefits__bottom-title {
    padding-top: 137px;
    padding-bottom: 128px;
    max-width: 1099px;
    line-height: 120%;
    margin: 0 auto;
    text-align: center;
    font-size: 70px;
}
.whom {
    padding-top: 70px;
}
.whom__title {
    font-size: 48px;
    margin-bottom: 40px;
}
.whom__subtitle {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 140%;
}
.whom__list {
    margin-top: 142px;
    margin-bottom: 140px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.whom__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px 34px 38px 34px;
    width: 299px;
    height: 370px;
    background: rgb(255 255 255 / 0.07);
    border-radius: 20px;
}
.whom__list-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}
.whom__list-text {
    font-size: 16px;
    line-height: 140%;
}
.whom__list-icon {
    width: 56px;
    height: 80px;
}
.plans {
    padding-top: 80px;
}
.plans__title {
    margin-bottom: 50px;
    font-size: 48px;
}
.switcher {
    background: #1d1d1d;
    display: flex;
    justify-content: center;
    max-width: 375px;
    height: 90px;
    border-radius: 100px;
    margin: 0 auto;
    padding: 10px 0;
}
.toggle-btn {
    background: #fff0;
    font-size: 24px;
    font-weight: 700;
    line-height: 99.5%;
    letter-spacing: 1%;
    color: #fff;
    border-radius: 40px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toggle-btn.active {
    background: #fff;
    color: #1d1d1d;
}
.discount {
    color: #1d1d1d;
    background: #71e2af;
    margin-left: 16px;
    padding: 13px 16px;
    border-radius: 30px;
}
.plans__list {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 80px;
}
.plans {
    padding-bottom: 113px;
}
.plan {
    border-radius: 30px;
    background: rgb(255 255 255 / 0.07);
    padding: 40px 25px 30px 25px;
    width: 445px;
}
.plan__top {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    justify-content: center;
}
.plan__top h3 {
    font-weight: 800;
    font-size: 28px;
}
.price-monthly,
.price-yearly {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #e3e3e3;
}
.price-monthly span,
.price-yearly span {
    font-size: 36px;
    font-weight: 700;
    color: #71e2af;
    display: block;
    padding-bottom: 1px;
}
.plan ul {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.plan ul li {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-left: 65px;
}
.plan .btn {
    margin: 0 auto;
}
.plan ul li::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    background: url(../img/icon_true.png) no-repeat center top / cover;
    width: 28px;
    height: 28px;
}
.plans {
    position: relative;
    overflow: hidden;
}
.plans::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/plans_blur.png) no-repeat center top / cover;
    width: 2000px;
    height: 800px;
    z-index: -1;
}
.faq {
    padding-top: 80px;
}
.faq__title {
    margin-bottom: 35px;
}
.faq__subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
}
.faq-container {
    max-width: 840px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    margin-top: 50px;
    padding-bottom: 116px;
}
.faq-item {
    background-color: rgb(255 255 255 / 0.05);
    border-radius: 10px;
    padding: 30px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-item:hover {
    background-color: #222;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
}
.faq-answer {
    margin-top: 10px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 500;
    max-width: 701px;
    display: none;
    font-size: 15px;
}
.faq-answer b {
    color: #71e2af;
    font-size: 20px;
    font-weight: 700;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.partners {
    padding: 94px 0;
}
.partners__list {
    display: flex;
    gap: 20px;
    margin-top: 80px;
    justify-content: center;
}
.partners__item {
    max-width: 338px;
    height: 199px;
    background: #292929;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 37px;
}
.partners__item-img {
    width: 273px;
}
.footer {
    border-top: 1px solid #f0f2f5;
    padding: 80px 0;
}
.footer__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer__copyright {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
}
.footer__inner {
    display: flex;
}
.footer__right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer__contacts {
    margin-left: auto;
}
.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 108px;
}
.footer__phones a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 86%;
}
.footer__social {
    display: flex;
    gap: 30px;
}
.footer__payments {
    display: flex;
    gap: 16px;
}
.footer__menu-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 86%;
}
.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__contacts,
.footer__right {
    padding-top: 10px;
}
.faq {
    position: relative;
}
.faq::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    background: url(../img/faq_left_blur.png) no-repeat center top / cover;
    width: 370px;
    height: 980px;
    z-index: -1;
}
.faq::after {
    content: "";
    position: absolute;
    top: 100px;
    right: 0;
    background: url(../img/faq_right_blur.png) no-repeat center top / cover;
    width: 370px;
    height: 980px;
    z-index: -1;
}
.benefits {
    position: relative;
}
.benefits:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/benefits_blur.png) no-repeat center top / cover;
    width: 586px;
    height: 771px;
    z-index: -1;
}
.hero {
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/hero_left_blur.png) no-repeat center top / cover;
    width: 429px;
    height: 949px;
}
.hero::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -150px;
    background: url(../img/hero_right_blur.png) no-repeat center top / cover;
    width: 731px;
    height: 1032px;
    z-index: -1;
}
.hero {
    overflow: hidden;
}
.header {
    background: #fff0;
}
.selected-lang {
    background: #fff0;
}
html {
    scroll-behavior: smooth;
}
.why__list-item {
    transition: 1s all ease 0s;
}
.why__list-item:hover {
    transition: 1s all ease 0s;
    background: linear-gradient(
            0deg,
            rgb(255 255 255 / 0.07),
            rgb(255 255 255 / 0.07)
    ),
    radial-gradient(
            44.08% 64.25% at 50% 50%,
            rgb(113 226 175 / 0.51) -26%,
            #fff0 101%
    );
    border-image-source: linear-gradient(
            111.35deg,
            rgb(255 255 255 / 0.5) 28.45%,
            rgb(113 226 175 / 0.5) 96.35%
    );
}
.benefits__list-item,
.benefits-active {
    transition: 1s all ease 0s;
    border-image-source: linear-gradient(
            111.35deg,
            rgb(255 255 255 / 0.5) 28.45%,
            rgb(113 226 175 / 0.5) 96.35%
    );
}
.benefits__list-item:hover,
.benefits-active {
    transition: 0.2s all ease 0s;
    background: linear-gradient(
            0deg,
            rgb(255 255 255 / 0.07),
            rgb(255 255 255 / 0.07)
    ),
    radial-gradient(
            76.24% 83.25% at 50% 50%,
            rgb(113 226 175 / 0.51) 0%,
            #fff0 100%
    );
}
.whom__list-item {
    transition: 0.2s all ease 0s;
}
.whom__list-item:hover {
    transition: 1s all ease 0s;
    background: linear-gradient(
            0deg,
            rgb(255 255 255 / 0.07),
            rgb(255 255 255 / 0.07)
    ),
    radial-gradient(
            91.1% 59.09% at 52.68% 0%,
            rgb(113 226 175 / 0.51) 0.98%,
            #fff0 100%
    );
}
.plan ul li.extra {
    display: none;
    transition: all 0.4s ease;
}
.plan.show-extra ul li.extra {
    display: block;
}
.toggle-extra .arrow {
    transition: transform 0.3s ease;
}
.show-extra .toggle-extra {
    transform: rotate(180deg);
}
.toggle-extra {
    background: #fff0;
    color: #fff;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 100px;
}
.plan__actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.plan .btn {
    margin: 0;
}
.plan {
    height: 100%;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.popup__content {
    background: #fff;
    padding: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    color: #212121;
}
.popup__close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.popup h2 {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
}
.popup p {
    margin-top: 20px;
    line-height: 120%;
    font-size: 14px;
}
.header {
    padding: 12px 0;
    background: #fff0;
    border-bottom: 1px solid #f0f2f5;
    transition: all 0.3s ease;
    z-index: 100;
}
.header.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.2);
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}
.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: all 0.3s ease;
}
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}
@media (max-width: 1200px) {
    .burger {
        display: flex;
        margin-left: auto;
    }
    .header__menu,
    .language-switcher,
    .header__auth,
    .header__registration {
        display: none;
    }
    body.menu-open {
        overflow: hidden;
    }
}
.burger-menu {
    display: none;
}
.burger-menu {
    display: none;
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #1d1d1d;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.menu-open .burger-menu {
    display: block;
    transform: translateY(0);
}
.menu-open .burger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.menu-open .burger-menu li {
    margin: 25px 0;
}
.menu-open .burger-menu a {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
}
.menu-open .language-switcher {
    display: block;
    text-decoration: underline;
    margin-right: 80px;
}
.menu-open .burger-menu a {
    font-size: 19px;
}
.burger__top-inner {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}
.burger-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px;
}
.close-menu {
    position: absolute;
    bottom: 40px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px;
    font-size: 19px;
    width: 50px;
    height: 50px;
    border-radius: 56px;
    top: 20px;
    right: 30px;
    color: #fff;
}
.menu-open img {
    width: 200px;
}
.menu-open .language-switcher {
    margin-top: 10px;
}
.menu-open .burger-menu .btn1,
.menu-open .burger-menu .btn2 {
    font-size: 17px;
    width: 270px;
    background: #fff0;
    border: 1px solid #fff;
    color: #fff;
}
.burger_btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.for {
    overflow: hidden;
}
.partners__list {
    flex-wrap: wrap;
}
@media screen and (max-width: 1550px) {
    .benefits__inner {
        flex-wrap: wrap;
        gap: 80px;
        justify-content: center;
    }
    .plans__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .hero__title {
        font-size: 29px;
        max-width: 700px;
    }
    .hero__subtitle {
        font-size: 18px;
    }
    .hero__btn {
        font-size: 16px;
    }
    .video-preview {
        max-width: 600px;
    }
    .hero::before {
        top: -134px;
    }
    .hero::after {
        top: -134px;
    }
    .hero {
        padding-bottom: 50px;
    }
    .section-title {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        font-size: 30px;
    }
    .why__title {
        margin-bottom: 40px;
    }
    .why__list-title {
        font-size: 24px;
    }
    .why__list-subtitle {
        font-size: 14px;
    }
    .for__list-item {
        position: static;
    }
    .for__list {
        flex-direction: column;
        gap: 40px;
    }
    .for__list-text {
        position: static;
        margin: 30px;
    }
    .for__list-item img {
        width: 250px;
    }
    .for__title::after {
        display: none;
    }
    .for {
        padding-bottom: 40px;
    }
    .benefits__title {
        margin-bottom: 60px;
    }
    .benefits__bottom-title {
        padding: 50px;
        padding-top: 70px;
        font-size: 45px;
    }
    .faq::before,
    .faq::after {
        display: none;
    }
    .plans {
        padding-top: 70px;
    }
    .for__list {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    .benefits__list {
        justify-content: center;
    }
    .footer__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer__left {
        justify-content: center;
        align-items: center;
    }
    .footer__contacts {
        margin-left: 0;
        margin-top: 40px;
    }
    .footer__phones {
        margin-bottom: 50px;
    }
    .footer__right {
        margin-left: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 30px;
        margin-top: 40px;
    }
    .hero::before {
        left: -130px;
    }
    .hero::after {
        right: -350px;
    }
}
@media screen and (max-width: 768px) {
    .benefits__offer-title {
        font-size: 19px;
    }
    .benefits__offer-list-item {
        font-size: 14px;
    }
    .benefits__list-title {
        font-size: 15px;
    }
    .benefits__list-item {
        max-width: 443px;
    }
    .section-title {
        font-size: 24px;
    }
    .for__list-text {
        font-size: 14px;
    }
    .benefits__bottom-title {
        font-size: 30px;
    }
    .benefits__list-item {
        width: 334px;
        height: 112px;
        display: flex;
        flex-direction: row;
        gap: 30px;
        padding: 3px 14px;
    }
    .whom__subtitle {
        font-size: 16px;
    }
    .whom__list-title {
        font-size: 20px;
    }
    .whom__list-text {
        font-size: 14px;
    }
    .whom__list-item {
        padding: 12px 20px 21px 20px;
        height: 340px;
    }
    .toggle-btn {
        font-size: 20px;
    }
    .switcher {
        max-width: 315px;
    }
    .toggle-btn {
        padding: 20px;
    }
    .faq-question {
        font-size: 16px;
    }
    .faq-answer b {
        font-size: 14px;
    }
    .faq-answer {
        font-size: 14px;
    }
    .faq-container {
        padding-bottom: 50px;
    }
    .partners {
        padding-top: 50px;
    }
    .partners__item-img {
        width: 160px;
    }
    .partners__item {
        max-width: 240px;
        height: 145px;
    }
    .footer__logo img {
        width: 200px;
        margin-bottom: 20px;
    }
    .footer__copyright {
        font-size: 16px;
        text-align: center;
    }
    .plans {
        padding-bottom: 50px;
    }
    .faq {
        padding-top: 40px;
    }
    .faq__subtitle {
        font-size: 20px;
    }
    .partners__list {
        margin-top: 40px;
    }
    .price-monthly,
    .price-yearly {
        font-size: 20px;
    }
    .price-monthly span,
    .price-yearly span {
        font-size: 26px;
    }
    .menu-open img {
        width: 100px;
        margin-top: 5px;
    }
    .menu-open .burger-menu {
        overflow-y: auto;
    }
}
.benefits {
    overflow: hidden;
}
.hero::after,
.hero::before {
    z-index: -1;
}
.terms .main .container {
    padding: 30px;
    line-height: 150%;
}
.terms h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
.terms .header__inner {
    justify-content: space-between;
}
.terms .language-switcher {
    margin-left: auto;
}
.en-index .toggle-btn {
    font-size: 22px;
}
.en-index .header__auth,
.terms .header__auth {
    width: 118px;
}
.ru-index .hero__btn {
    width: 235px;
}
.whom__list-item {
    height: 405px;
}
.ru-index .header__registration,
.ru-terms .header__registration {
    width: 220px;
}
.auth-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.registration-section {
    padding: 57px 0 100px;
}
.registration__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 450px;
}
.registration__title {
    margin-bottom: 30px;
    font-size: 32px;
    color: #fff;
}
.registration__right {
    margin: 0 auto;
    gap: 20px;
}
.registration__right input {
    border: 1px solid #f3f7ff;
}
.registration input {
    background: #f3f7ff;
    width: 100%;
    height: 60px;
    border-radius: 60px;
    margin-bottom: 10px;
    padding: 23px 23px 23px 27px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 120%;
}
.registration button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #212121;
    color: #fff;
    width: 211px;
    height: 67px;
    border-radius: 80px;
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}
.registration__login {
    font-size: 16px;
    color: #212121;
}
.registration .container {
    padding: 0 20px;
}
@media screen and (max-width: 544px) {
    .registration__right {
        max-width: 300px;
    }
}
.registration button {
    border: 1px solid #fff;
}
.registration__login {
    color: #fff;
}
.plan {
    margin: 0px 20px;
}
.slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
}
.slick-dots {
    bottom: -54px;
}
.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}
.slick-next {
    right: -7px;
}
.slick-prev:before {
    margin-left: 18px;
}
.whom__list-item {
    display: flex !important;
    margin: 0 20px;
    min-height: 400px;
}
.slick-arrow {
    z-index: 100;
}

.partners__item-img {
    width: 185px;
}
.partners__item {
    display: flex !important;
    margin: 0 20px;
}

@media screen and (max-width: 800px) {
    .partners__item-img {
        width: 158px;
    }
}
@media screen and (max-width: 768px) {
    .partners__item {
        max-width: 100%;
        height: 145px;
    }
}

.why__list-item {
    display: flex !important;
    margin: 0 20px;
}

.why__list-item {
    font-size: 26px;
}

@media screen and (max-width: 960px) {
    .benefits__list-item {
        display: flex !important;
        max-width: 100%;
    }
    .benefits__inner {
        display: block;
    }
    .benefits__offer {
        padding-left: 40px;
        padding-bottom: 30px;
    }
}
