@import url("../css2");

@keyframes stripe {
    0% {
        transform: translateX(0);
    }
}

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

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

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

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

body {
    font-weight: 400;
}

.cursor{
    cursor: pointer;
}

.d-flex {
    display: flex;
}
.align-items-center{
    align-items: center;
}

.lock body {
    overflow: hidden;
    touch-action: none;
}

.menu-open body {
    overflow: hidden;
}

body.mfp-zoom-out-cur {
    overflow: hidden;
}

[class*=__container] {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    [class*=__container] {
        padding: 0 16px;
    }
}

.wrapper {
    min-height: 100%;
    overflow: hidden;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;
}

@media (max-width: 767.98px) {
    .wrapper {
        padding: 0;
    }
}

.wrapper > * {
    min-width: 0;
}

.page {
    flex: 1 1 auto;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: #000000;
    line-height: 1;
    font-family: "TTNorms", sans-serif;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "TTNorms", sans-serif;
    font-size: inherit;
    outline: none;
    resize: none;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    color: inherit;
}

a:link,
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-weight: inherit;
    font-size: inherit;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 34px;
    max-width: unset;
    background-color: #52CA01;
    border-radius: 20px;
    transition: all 0.3s ease 0s;
    font-weight: 500;
    font-size: 18px;
    leading-trim: both;
    text-edge: cap;
    color: #ffffff;
    cursor: pointer;
}

.button-tg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 34px;
    max-width: unset;
    border: 1px solid #FFF;
    border-radius: 20px;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    /*transition: box-shadow .3s;*/
    margin-left: 25px;
}

/*.button-tg:hover {*/
/*    box-shadow: 0 0 11px rgb(155, 155, 155);*/
/*}*/
.main__button_content{
    display: flex;
}

.main__button{
    margin-top:20px;
}
.fa-whatsapp{
    font-size: 25px;
    margin-right:10px;
}
.fa-telegram{
    
    margin-left:20px;
}

@media (max-width: 1068px) {
    .button-tg {
        margin-left: 0px;
        margin-top: 20px;
    }

    .main__button_content {
        flex-direction: column;
    }

    .main__button {
        max-width: 300px;
    }
}

.ic_baseline_main {
    padding-right: 10px;
}

@-webkit-keyframes bg-move {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bg-move {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.consultation__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background: #52CA01;
    max-width: unset;
    height: 62px;
    padding: 20px 34px;
    color: #FFFFFF;

    flex-shrink: 0;
}

.consultation__button:hover, .consultation__button:active {
    background-color: rgba(82, 202, 1, 0.8);
}

@media (max-width: 991.98px) {
    .button {
        padding: 21px 40px;
        font-size: 16px;
    }
}

.button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 32px;
    background: linear-gradient(90deg, rgba(212, 252, 121, 0.4) 0%, rgba(150, 230, 161, 0.4) 100%);
    filter: blur(40px);
    transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
    .button:hover {
        background-color: rgba(82, 202, 1, 0.8);
    }
}

@media (min-width: 767.98px) {
    .d-mobile {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .d-pc {
        display: none !important;
    }
}

.ibg {
    position: relative;
}

.ibg img, .ibg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ibg_analytics {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.background img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.popup-info {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

.popup-info._active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 100;
}

.popup-info__wrapper {
    position: relative;
    padding: 40px 30px;
    width: 100%;
    max-width: 560px;
    background: #171715;
    border-radius: 30px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .popup-info__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        max-width: unset;
    }
}

.popup-info__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-info__top:not(:last-child) {
    margin-bottom: 40px;
}

.popup-info__close {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

@media (any-hover: hover) {
    .popup-info__close:hover {
        box-shadow: rgba(160, 227, 16, 0.1) -2px 0px 11px 5px;
    }
}

.popup-info__content {
    position: relative;
}

.popup-info__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 122%;
    text-align: center;
    letter-spacing: -0.005em;
    color: #FDFCFC;
}

.popup-info__title .title-small {
    font-size: 20px;
}

.popup-info__policy {
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    text-align: center;
    letter-spacing: -0.005em;
    color: #FDFCFC;
    opacity: 0.4;
}

.popup-info__policy a {
    color: #A0E310;
}

.popup-info__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 64%;
    padding-bottom: 64%;
    z-index: 1;
    filter: blur(150px);
}

.form-modal {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.form-modal:not(:last-child) {
    margin-bottom: 16px;
}

.form-modal__input {
    padding: 18px 28px;
    width: 100%;
    background: linear-gradient(125.04deg, rgba(240, 255, 228, 0.12) 3.84%, rgba(255, 255, 255, 0.03) 96.3%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px;
    line-height: 125%;
    letter-spacing: -0.005em;
    color: #FDFCFC;
    margin-bottom: 16px;
}
#formModal2 .form-modal__input{
    padding: 10px 28px;
}
#formModal2 label{
color:#fff;
margin-bottom:20px;
}



.form-modal__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-modal__column {
    width: calc(50% - 10px); /* Две колонки */
    display: flex;
    flex-direction: column;
}

.form-modal__input {
    width: 100%;
    margin-bottom: 15px;
}

.form-modal__submit {
    width: 100%;
    margin-top: 20px;
}
.popup-info__wrapper2{
        max-width: 860px;
}



.form-modal__file {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-top:20px;
}

.form-modal__file-label {
    color:#fff;
}

.form-modal__file-label:hover {
    border-color: #52CA01;
}

.form-modal__file-input {
    }



.form-modal__file-button:hover {
    background: #0056b3;
}

#file-label-text {
    font-size: 14px;
    color: #fff;
}







@media(max-width:767px ){
    #formModal2 .form-modal__input{
    padding: 6px 20px;
}
}
.form-modal__submit {
    margin-top: 14px;
    background-color: #52CA01;
    max-width: 250px;
    margin: 0 auto;
}

.title {
    font-weight: 500;
    font-size: 36px;
    line-height: 111.111%;
    letter-spacing: -1.08px;
    color: #1B1F18;
}

.title i {
    color: #52CA01;
    font-style: normal;
    white-space: nowrap;
}

.title i span {
    position: relative;
    display: inline-block;
}

.title i span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: fit-content;
    width: 121px;
    height: 27px;
    background-image: url("../img/line.svg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .title i span::before {
        width: 75px;
        height: 16px;
    }
}

@media (max-width: 1230px) {
    .title {
        font-size: 55px;
    }
}

@media (max-width: 991.98px) {
    .title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .title {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .title {
        font-size: 32px;
    }
    br{
        display: none;
    }
}

.description {
    font-size: 20px;
    line-height: 122%;
    letter-spacing: -0.005em;
    color: #FDFCFC;
}

@media (max-width: 991.98px) {
    .description {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .description {
        font-size: 16px;
    }
}

.circle-shine {
    position: absolute;
    background: linear-gradient(90deg, rgba(15, 216, 80, 0.4) 0%, rgba(249, 240, 71, 0.4) 100%);
    transform: rotate(-90deg);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.social-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
}

@media (max-width: 767.98px) {
    .social-item {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
}

.social-item img {
    max-width: 100%;
}

.label-card {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    background-color: #F3F3F3;
    box-shadow: 6px 6px 20px rgba(147, 207, 20, 0.1);
    border-radius: 16px 2px 16px 16px;
}

@media (max-width: 575px) {
    .label-card {
        gap: 5px;
    }
}

.label-card__icon {
    flex: 0 0 21px;
}

.label-card__icon img {
    max-width: 100%;
}

@media (max-width: 575px) {
    .label-card__icon {
        flex: 0 0 17px;
    }
}

.label-card__text {
    font-size: 16px;
    line-height: 114%;
    color: #171715;
}

@media (max-width: 575px) {
    .label-card__text {
        font-size: 14px;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 40px;
    z-index: 20;
}

.header__line {
    text-align: center;
}

.header._scroll .header__wrapper {
    position: fixed;
    top: 23px;
}

@media (max-width: 767.98px) {
    .header._scroll .header__wrapper {
        top: 0;
    }
}

.header._scroll .header__container {
    margin-top: 10px;
    padding: 17px 20px;
    background: #FFFFFF;
}

.header._scroll .header__logo svg path {
    fill: #171715;
}

.header._scroll .header__logo span {
    color: #171715;
    opacity: 0.4;
}

.header._scroll .icon-menu {
    background-clip: #ffffff;
}

.header._scroll .icon-menu span, .header._scroll .icon-menu::before, .header._scroll .icon-menu::after {
    background-color: #A0E310;
}

.header._scroll .menu__item a {
    color: #171715;
    opacity: 0.7;
    position: relative;
}

.header._scroll .menu__item a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
    .header._scroll .menu__item a:hover::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        bottom: -5.5px;
    }
}

.header._scroll .menu__item a._active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    bottom: 0;
}

@media (any-hover: hover) {
    .header._scroll .menu__item a:hover {
        opacity: 1;
    }
}

.header._scroll .header__button_sign-in {
    background-clip: rgba(160, 227, 16, 0.1);
    color: #171715;
}

@media (any-hover: hover) {
    .header._scroll .header__button_sign-in:hover {
        background-color: rgba(160, 227, 16, 0.2);
    }
}

.menu-open .header .header__container {
    background-color: transparent;
}

.menu-open .header .header__logo svg path {
    fill: #A0E310;
}

.menu-open .header .header__logo span {
    opacity: 0;
}

.menu-open .header .icon-menu {
    background: rgba(160, 227, 16, 0.1);
}

.menu-open .header .icon-menu span, .menu-open .header .icon-menu::before, .menu-open .header .icon-menu::after {
    background-color: #ffffff !important;
}

.menu-open .header .menu__item a {
    color: #ffffff;
    opacity: 1;
}

.menu-open .header .menu__button {
    max-width: 230px !important;
    width: 100%;
}

.header__wrapper {
    z-index: 2;
    width: 100%;
    left: 0;
    top: 0;
    transition: all 0.3s ease 0s;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 36px 20px;
    transition: all 0.3s ease 0s;

    border-bottom: 1px solid #FFFFFF33;
}

@media (max-width: 767.98px) {
    .header__container {
        gap: 12px;
        padding: 20px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

@media (max-width: 575px) {
    .header__container {
        padding: 19px 16px;
    }
}

.header__logo {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__logo svg path {
    fill: #A0E310;
}

.header__logo img {
    display: block;
}

.header__logo span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    color: #FDFCFC;
    opacity: 0.7;
    max-width: 60px;
}

@media (min-width: 767.98px) {
    .header__logo span {
        position: relative;
        top: 2.1px;
    }
}

@media (max-width: 991.98px) {
    .header__logo {
        font-size: 24px;
        gap: 10px;
    }
    

    
    .header__logo span {
        font-size: 11px;
        max-width: 55px;
    }
}

@media (max-width: 767.98px) {
    .header__logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }



    .header__logo span {
        max-width: unset;
        font-size: 10px;
    }
}

.header__buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 991.98px) {
    .header__buttons {
        gap: 12px;
    }
}

@media (max-width: 767.98px) {
    .menu-open .header__buttons {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.header__button {
    padding: 12px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease 0s;
}

@media (max-width: 991.98px) {
    .header__button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

.header__button_sign-in {
    background-color: rgba(160, 227, 16, 0.1);
    color: #FDFCFC;
}

@media (any-hover: hover) {
    .header__button_sign-in:hover {
        background-color: rgba(160, 227, 16, 0.2);
    }
}

@media (max-width: 767.98px) {
    .header__button_sign-in {
        display: none;
    }
}

.header__button_sign-up {
    background-color: #A0E310;
    color: #171715;
}

@media (any-hover: hover) {
    .header__button_sign-up:hover {
        background-color: #8AC40E;
    }
}

.header__background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #171715;
    transition: opacity 0.3s ease 0s;
    pointer-events: none;
}

@media (min-width: 767.98px) {
    .header__background {
        display: none;
    }
}

.header__background::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    /*background: url("../img/menubackground.png") repeat center/8% #171715;*/
}

.menu-open .header__background {
    opacity: 1;
}

.menu-open .header__background::before {
    opacity: 0.01;
}

@media (max-width: 767.98px) {
    .menu {
        margin-left: auto;
    }
}

.menu__icon {
    display: none;
}

@media (max-width: 767.98px) {
    .menu__body {
        position: fixed;
        top: 0%;
        left: 0%;
        z-index: 4;
        overflow: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding: 110px 16px 40px 16px;
        transition: all 0.3s ease 0s;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .menu-open .menu__body {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (min-width: 767.98px) {
    .menu__cirlce {
        display: none;
    }
}

.menu__cirlce_1 {
    z-index: 1;
    top: -7.8125%;
    left: -8.3333333333%;
    width: 46.3888888889%;
    padding-bottom: 46.39%;
    filter: blur(150px);
}

.menu__cirlce_2 {
    left: 50%;
    transform: translateX(-50%);
    bottom: 13.28125%;
    width: 84.7222222222%;
    padding-bottom: 84.723%;
    filter: blur(150px);
}

.menu__list {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 10px;
}

@media (max-width: 1230px) {
    .menu__list {
        column-gap: 30px;
    }
}

@media (max-width: 991.98px) {
    .menu__list {
        column-gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .menu__list {
        flex-direction: column;
        row-gap: 0px;
        align-items: flex-start;
    }

    .menu__list:not(:last-child) {
        margin-bottom: 50px;
    }
}

.menu__item a {
    opacity: 0.7;
    font-weight: 500;
    line-height: 125%;
    color: #FDFCFC;
    transition: all 0.3s ease 0s;
    position: relative;
}

.menu__item a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
    .menu__item a:hover::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        bottom: -5.5px;
    }
}

@media (any-hover: hover) {
    .menu__item a:hover {
        opacity: 1;
    }
}

@media (max-width: 1230px) {
    .menu__item a {
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .menu__item a {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .menu__item a {
        font-weight: 500;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: -0.03em;
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .menu__item:not(:last-child) {
        margin-bottom: 20px;
    }
}

.menu__buttons {
    position: relative;
    z-index: 3;
    padding-bottom: 40px;
}

@media (min-width: 767.98px) {
    .menu__buttons {
        display: none;
    }
}

.menu__button {
    max-width: 230px;
    overflow: hidden;
}

.menu__button_sign-up {
    background: rgba(160, 227, 16, 0.1);
    color: #FDFCFC;
}

.menu__button:not(:last-child) {
    margin-bottom: 18px;
}

.menu__socials {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-top: auto;
}

@media (min-width: 767.98px) {
    .menu__socials {
        display: none;
    }
}

.menu__social-item:not(:last-child) {
    margin-right: 12px;
}

.icon-menu {
    display: none;
}

@media (max-width: 767.98px) {
    .icon-menu {
        display: block;
        position: relative;
        flex: 0 0 30px;
        width: 34px;
        height: 34px;
        cursor: pointer;
        z-index: 5;
        border-radius: 50%;
        background: rgba(160, 227, 16, 0.1);
    }

    .icon-menu span, .icon-menu::before, .icon-menu::after {
        content: "";
        transition: all 0.3s ease 0s;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        width: 12px;
        height: 1.5px;
        background-color: #ffffff;
        border-radius: 2px;
    }

    .icon-menu::before {
        top: 37%;
    }

    .icon-menu::after {
        bottom: 38%;
    }

    .icon-menu span {
        top: calc(50% - 1px);
    }

    .menu-open .icon-menu span {
        width: 0;
    }

    .menu-open .icon-menu::before {
        top: calc(34% - 1px);
        transform: rotate(-45deg) translateX(-67%);
    }

    .menu-open .icon-menu::after {
        bottom: calc(34% - 1px);
        transform: rotate(45deg) translateX(-69%);
    }
}

.main {
    padding-top: 173px;
    border-radius: 0px 0px 60px 60px;
    overflow: hidden;
    position: relative;
    background-color: #171715;
}

.main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.01;
    /*background: url("../img/menubackground.png") repeat center/4% rgba(0, 0, 0, 0.1);*/
}

@media (max-width: 991.98px) {
    .main {
        padding-top: 150px;
    }
}

@media (max-width: 767.98px) {
    .main {
        border-radius: 0px 0px 40px 40px;
    }
}

@media (max-width: 575px) {
    .main {
        padding-top: 120px;
    }
}

.main__container {
    position: relative;
    z-index: 2;
}

.main__wrapper {
    display: flex;
    align-items: flex-end;
}

@media (max-width: 767.98px) {
    .main__wrapper {
        flex-direction: column;
    }
}

.main__content {
    padding-bottom: 70px;
}

@media (max-width: 767.98px) {
    .main__content {
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .main__content {
        padding-bottom: 50px;
    }
}

.main__title {
    color: #FDFCFC;
    font-size: 64px;
    font-weight: 500;
    line-height: 70px;
    letter-spacing: -0.03em;
    text-align: left;
}

@media (max-width: 1230px) {
    .main__title {
        font-size: 50px;
    }
}

@media (max-width: 991.98px) {
    .main__title {
        font-size: 38px;

        line-height: 110%; /* 35.2px */
        letter-spacing: -0.96px;
    }
}

@media (max-width: 575px) {
    .main__title {
        font-size: 32px;
    }
}

.main__title .social-icon {
    display: inline-flex;
    position: relative;
    top: 2px;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.main__title .social-icon img {
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .main__title .social-icon {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        top: 1px;
    }
}

.main__title i {
    color: #52CA01;
    font-style: normal;
    white-space: nowrap;
}

.main__title i span {
    position: relative;
    display: inline-block;
}

.main__title i span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: fit-content;
    width: 121px;
    height: 27px;
    background-image: url("../img/line.svg");
    background-repeat: no-repeat;
    background-position: 0% 0%;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .main__title i span::before {
        width: 75px;
        height: 16px;
    }
}

.main__title:not(:last-child) {
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .main__title:not(:last-child) {
        margin-bottom: 20px;
    }
}

.main__description {
    color: #b8b8b6;

    max-width: 457px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.03em;
    text-align: left;

}

.main__description:not(:last-child) {
    margin-bottom: 103px;
}

@media (max-width: 1230px) {
    .main__description {
        font-size: 18px;
    }

    .main__description:not(:last-child) {
        margin-bottom: 80px;
    }
}

@media (max-width: 991.98px) {
    .main__description {
        max-width: 370px;
    }
}

@media (max-width: 575px) {
    .main__description {
        font-size: 16px;
    }

    .main__description:not(:last-child) {
        margin-bottom: 36px;
    }
}

.main__picture {
    position: relative;
    flex: 0 0 390px;
    min-height: 463px;
}

@media (max-width: 1230px) {
    .main__picture {
        flex: 0 0 340px;
        min-height: 400px;
    }
}

@media (max-width: 991.98px) {
    .main__picture {
        display: flex;
        flex: 0 0 255px;
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .main__picture {
        margin-top: -50px;
        width: 50%;
        min-height: unset;
        flex: unset;
    }
}

@media (max-width: 575px) {
    .main__picture {
        margin-top: 0;
        width: 65.63%;
        min-height: unset;
        flex: unset;
    }
}

.main__image {
    z-index: 2;
    padding-bottom: 116.8%;
    width: 100%;
    overflow: hidden;
    border-bottom: none;
    border-radius: 44px 44px 0px 0px;
}

@media (max-width: 991.98px) {
    .main__image {
        padding-bottom: unset;
    }
}

@media (max-width: 767.98px) {
    .main__image {
        padding-bottom: 111%;
    }
}

@media (max-width: 575px) {
    .main__image {
        padding-bottom: 115%;
        border-bottom: none;
        border-radius: 32px 32px 0px 0px;
    }
}

.main__image img {
    height: calc(100% + 1px);
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}

.main__label-card {
    position: absolute;
    left: -30%;
    z-index: 2;
}

@media (max-width: 1230px) {
    .main__label-card {
        left: -15%;
    }
}

@media (max-width: 991.98px) {
    .main__label-card {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .main__label-card {
        padding: 8px 12px;
        left: -10%;
    }
}

.main__label-card_1 {
    top: 30.2375809935%;
    left: -24%;
    transform: translateX(-50%) rotate(6deg);
}

.main__label-card_2 {
    top: 52.9157667387%;
    transform: translateX(-50%);
}

@media (max-width: 575px) {
    .br-mobile{
        display: inline-flex;
    }
    .main__label-card_1 {
        top: 17.237581%;
        left: -1%;
        transform: translateX(-50%) rotate(6deg);
        padding: 12px 10px;
    }
    .main__label-card_2 {
        top: 45%;
        order: 1;
        transform: translateX(-50%) rotate(2deg);
        left: -5%;
        padding: 12px 10px;
    }
    .main__label-card_3 {
        left: 0%!important;
        padding: 12px 10px!important;
    }
}
@media (max-width: 535px) {
    .main__label-card_1 {
        left: -2%;
    }
    .main__label-card_2 {
        left: -7%;
    }
}

@media (max-width: 475px) {
    .main__label-card_1 {
        left: -5%;
    }
    .main__label-card_2 {
        left: -11%;
    }
}

@media (max-width: 430px) {
    .main__label-card_1 {
        left: -8%;
    }
    .main__label-card_2 {
        top: 44%;
        left: -14%;
    }
    .main__label-card_3 {
        left: -5%!important;
        padding: 12px 10px!important;
    }
}

.main__label-card_3 {
    top: 74.5140388769%;
    left: -24%;
    transform: translateX(-50%) rotate(-6deg);
}

.main__circle {
    top: -34.25%;
    left: 0.935%;
    width: 10.178%;
    padding-bottom: 37.178%;
    filter: blur(250px);
}

@media (max-width: 575px) {
    .main__circle {
        top: -7%;
        left: -7%;
        width: 10.178%;
        padding-bottom: 46.39%;
    }
}

.main__circle-picture {
    top: 8.75%;
    left: -8.064516129%;
    width: 106.155%;
    padding-bottom: 112.83%;
    filter: blur(174px);
}

.cooperation {
    padding-top: 140px;
}

.cooperation__content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.conditions__info{
    display: flex;
    gap: 130px;
}

.conditions_info-translator__mobile{
    display: none;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.36px;

    color: #9fa09e

}

.conditions_info-translator{
    max-width: 483px;

    color: #9fa09e;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    letter-spacing: -0.36px;

    display: flex;
    align-items: end;
}

.conditions_info-calculation{
    display: flex;
    flex-direction: column;
    width:100%;
}

.conditions_info-calculation--title{
    color: #52CA01;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    letter-spacing: 0.14px;
}

.conditions_info-calculation--text{
    color: #1B1F18;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 125% */
    letter-spacing: -0.96px;

    margin-top: 16px;
}
.conditions_info-calculation__prospects{
    display: flex;
    flex-direction: column;
}
.conditions_info-calculation__prospects-item{
    display: flex;
    justify-content: space-between;
    align-items: end;

    border-bottom: 1px solid #0000001F;
    padding-bottom: 10px;
}

.conditions_info-calculation__prospects-item{
    margin-top: 20px;
}

.conditions_info-calculation__prospects-item:first-child{
    margin-top: 24px;
}

.conditions_info-calculation__prospects-item-text{
    color: #1B1F18;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 116.667% */
    letter-spacing: -0.72px;
    opacity: 0.8;
}
.conditions_info-calculation__prospects-item-percent{
    color: #1B1F18;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -2.88px;
}

@media (max-width: 991.98px) {
    .cooperation {
        padding: 120px 0;
    }
}

@media (max-width: 650px) {
    .conditions__info {
        flex-direction: column;
    }
    .conditions_info-translator__mobile{
        display: flex;
    }
    .conditions_info-translator{
        display: none;
    }
    .conditions__info{
        gap: 54px;
    }
    .conditions__top{
        flex-direction: column;
    }
    .conditions_info-calculation--text{
        font-size: 25px;
        letter-spacing: 0.14px;
    }
    .conditions_info-calculation__prospects-item-percent{
        font-size: 22px;
        letter-spacing: -1.44px;
    }
}

@media (max-width: 575px) {
    .cooperation {
        padding: 80px 0;
    }
}

@media (max-width: 510px) {
    .conditions_info-calculation--text{
        font-size: 24px;
        line-height: 26px;
    }
}



@media (max-width: 475px){

    .conditions_info-calculation__prospects-item-percent{
         font-size: 16px;
    }
    .conditions_info-calculation__prospects-item-text{
        font-size: 16px;
    }

}


.cooperation__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 79px;
}

@media (max-width: 1230px) {
    .cooperation__wrapper {
        gap: 65px;
    }
}

@media (max-width: 991.98px) {
    .cooperation__wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

.cooperation__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

@media (max-width: 1230px) {
    .cooperation__body {
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .cooperation__body {
        grid-template-columns: 1fr;
    }
}

.advantages {
    padding: 140px 0;
}

@media (max-width: 991.98px) {
    .advantages {
        padding: 120px 0;
    }
}

@media (max-width: 575px) {
    .advantages {
        padding: 80px 0;
    }
}

.advantages__wrapper {
    display: flex;
    flex-direction: column;
    gap: 62px;
}

@media (max-width: 1230px) {
    .advantages__wrapper {
        gap: 65px;
    }
}

.advantages__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}
@media (max-width: 991.98px) {
    .advantages__wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .advantages__body{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1230px) {
    .advantages__body {
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .advantages__body {
        grid-template-columns: 1fr;
    }
}

.item-advantages {
    padding: 16px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: 20px;
}

.item-advantages__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.advantages__item-margin{
    margin-bottom: 32px;
}

@media (max-width: 767.98px) {
    .item-advantages__icon {
        width: 37px;
        height: 37px;
        flex: 0 0 37px;
    }

    .advantages__item-margin{
        margin-bottom: 28px;
    }
}

.item-advantages__icon img {
    max-width: 100%;
}

.item-advantages__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 114%;
    letter-spacing: 0.005em;
    color: #171715;
    max-width: 180px;
    padding-left: 20px;
}

.item-advantages__title:not(:last-child) {
    margin-bottom: 16px;
}

@media (max-width: 991.98px) {
    .item-advantages__title {
        font-size: 26px;
        max-width: unset;
    }
}

@media (max-width: 767.98px) {
    .item-advantages__title {
        font-size: 24px;
    }

    .item-advantages__title:not(:last-child) {
        margin-bottom: 12px;
    }
}

.item-advantages__text {
    font-size: 18px;
    line-height: 138%;
    letter-spacing: 0.005em;
    color: #353131;
}

.analytics {
    position: relative;
    padding: 110px 0 90px 0;
    background-color: #171715;
    border-radius: 60px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .analytics {
        padding: 90px 0 40px 0;
    }
}

@media (max-width: 575px) {
    .analytics {
        border-radius: 40px;
    }
}

.analytics__container {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.analytics__label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin: 0 auto;
    text-align: center;
    padding: 14px 20px;
    border-radius: 20px;
    background-color: #FDFCFC;
}

.analytics__label .label-card__text {
    font-size: 20px;
}

.analytics__label:not(:last-child) {
    margin-bottom: 50px;
}

@media (max-width: 991.98px) {
    .analytics__label .label-card__text {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .analytics__label .label-card__text {
        font-size: 14px;
    }
}

.analytics__title {
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 70.4px */
    letter-spacing: -1.92px;
    color: #FDFCFC;

}

@media (max-width: 575px) {
    .analytics__title {
        font-size: 28px;
    }
}

.analytics__title i span::before {
    bottom: -15px;
}

@media (max-width: 575px) {
    .analytics__title i span::before {
        width: 60px;
        bottom: -10px;
    }
}

.analytics__title:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .analytics__title:not(:last-child) {
        margin-bottom: 24px;
    }
}

.analytics__description {
    color: rgba(253, 252, 252, 0.80);

    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.54px;
    max-width: 550px;
    margin: 0 auto;
}

.analytics__description:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .analytics__description {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .analytics__description {
        font-size: 16px;
    }
}

.analytics__time {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analytics__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.analytics__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.analytics__feature:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.analytics__feature-icon {
    font-size: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.analytics__feature-text {
    color: #FDFCFC;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    opacity: 1;
}

/* Секция с формой обратной связи */
.feedback-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #171715 0%, #1a1a18 100%);
    position: relative;
    border-radius: 60px 60px 0 0;
    margin-top: 50px;
}

.feedback-section__container {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Форма обратной связи */
.feedback-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.feedback-form__title {
    font-size: 24px;
    font-weight: 600;
    color: #FDFCFC;
    text-align: center;
    margin-bottom: 10px;
}

.feedback-form__description {
    font-size: 16px;
    color: rgba(253, 252, 252, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.feedback-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-form__row {
    display: flex;
    gap: 20px;
}

.feedback-form__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feedback-form__field label {
    color: #FDFCFC;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feedback-form__field input,
.feedback-form__field textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #FDFCFC;
    font-size: 16px;
    transition: all 0.3s ease;
}

.feedback-form__field input:focus,
.feedback-form__field textarea:focus {
    outline: none;
    border-color: rgba(160, 227, 16, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.feedback-form__field input::placeholder,
.feedback-form__field textarea::placeholder {
    color: rgba(253, 252, 252, 0.5);
}

.feedback-form__submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #00a300 0%, #008000 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.feedback-form__submit:hover {
    background: linear-gradient(135deg, #008000 0%, #006000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 0, 0.3);
}

/* Стили для согласия */
.feedback-form__agreement {
    margin-top: 10px;
}

.feedback-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.feedback-form__checkbox-label input[type="checkbox"] {
    display: none;
}

.feedback-form__checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.feedback-form__checkbox-label input[type="checkbox"]:checked + .feedback-form__checkbox-custom {
    background: #00a300;
    border-color: #00a300;
}

.feedback-form__checkbox-label input[type="checkbox"]:checked + .feedback-form__checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.feedback-form__agreement-text {
    color: rgba(253, 252, 252, 0.8);
    flex: 1;
}

.feedback-form__link {
    color: #00a300;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.feedback-form__link:hover {
    border-bottom-color: #00a300;
}

.analytics__time:not(:last-child) {
    margin-bottom: 50px;
}

.analytics__time-label {
    position: relative;
}

.analytics__time-label:not(:last-child) {
    margin-right: 45px;
}

@media (max-width: 575px) {
    .analytics__time-label:not(:last-child) {
        margin-right: 28px;
    }
}

.analytics__time-label span {
    position: relative;
    z-index: 2;
    font-family: "Caveat Brush", cursive;
    font-size: 72px;
    line-height: 126.3888888889%;
    text-align: center;
    letter-spacing: -0.005em;
    color: #171715;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 575px) {
    .analytics__time-label span {
        font-size: 54px;
    }
    
    .analytics__features {
        max-width: 100%;
        gap: 10px;
    }
    
    .analytics__feature {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .analytics__feature-icon {
        font-size: 18px;
    }
    
    .analytics__feature-text {
        font-size: 13px;
        color: #FDFCFC;
        font-weight: 500;
        opacity: 1;
    }
    
    .feedback-section {
        padding: 50px 0;
    }
    
    .feedback-form {
        padding: 25px;
        max-width: 100%;
    }
    
    .feedback-form__title {
        font-size: 20px;
    }
    
    .feedback-form__description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .feedback-form__row {
        flex-direction: column;
        gap: 15px;
    }
    
    .feedback-form__field input,
    .feedback-form__field textarea {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .feedback-form__submit {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .feedback-form__checkbox-label {
        gap: 10px;
        font-size: 13px;
    }
    
    .feedback-form__checkbox-custom {
        width: 18px;
        height: 18px;
    }
    
    .feedback-form__checkbox-label input[type="checkbox"]:checked + .feedback-form__checkbox-custom::after {
        font-size: 12px;
    }
}

.analytics__time-label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 120px;
    height: 76px;
    transform: translate(-50%, -50%);
    background: url("../img/num-background.svg") no-repeat center/120px;
}

@media (max-width: 575px) {
    .analytics__time-label::before {
        width: 90px;
        height: 68px;
        background: url("../img/num-background.svg") no-repeat center/90px;
    }
}

.analytics__time-text {
    color: rgba(253, 252, 252, 0.70);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: -0.32px;
    max-width: 195px;
}

@media (max-width: 767.98px) {
    .analytics__time-text {
        font-size: 14px;
    }
}

.analytics__wrapper {
    position: relative;
}

.analytics__decor {
    position: absolute;
    right: 7%;
    top: -21.5%;
    width: 244px;
    height: 210px;
}

@media (max-width: 575px) {
    .analytics__decor {
        display: none;
    }
}

.analytics__decor img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.analytics__body {
    padding: 50px 54px;
    background: linear-gradient(125.04deg, rgba(240, 255, 228, 0.18) 3.84%, rgba(255, 255, 255, 0.045) 96.3%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 40px;
}

@media (max-width: 991.98px) {
    .analytics__body {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .analytics__body {
        padding: 35px 20px;
        margin: 0 -4px;
    }
}

@media (max-width: 575px) {
    .analytics__body {
        padding: 30px 16px;
    }
}

.analytics__tab {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #FDFCFC;
    padding-bottom: 12px;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .analytics__tab {
        font-size: 16px;
    }
}

.analytics__tab::before {
    content: "";
    position: absolute;
    bottom: 0px;
    transform: translateY(0px);
    left: 0;
    width: 0;
    height: 1px;
    background-color: #A0E310;
    animation: none;
    transition: all 0.3s ease-in-out 0s;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.analytics__tab._active {
    color: #A0E310;
}

.analytics__tab._active::before {
    width: 100%;
}

.analytics__circle {
    top: -21.25%;
    left: -8.064516129%;
    width: 33.31%;
    padding-bottom: 33.31%;
    filter: blur(75px);
}

@media (max-width: 575px) {
    .analytics__circle {
        top: -7%;
        left: -7%;
        width: 46.39%;
        padding-bottom: 46.39%;
    }
}

.analytics__content {
    margin-top: 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 767.98px) {
    .analytics__content {
        grid-template-columns: 1fr;
    }
}

.item-analytics__title {
    color: #52CA01;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 128.571%;
    letter-spacing: 0.14px;

    padding-top: 36px;
    padding-bottom: 16px;
}

.item-analytics {
    display: flex;
    flex-direction: column;
    gap: 53px;
}

@media (max-width: 991.98px) {
    .item-analytics {
        gap: 35px;
    }
}

@media (max-width: 767.98px) {
    .item-analytics {
        flex-direction: column;
        gap: 0;
    }
}

.item-analytics__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-analytics__text {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.64px;
}

.item-analytics__under_text {
    color: rgba(255, 255, 255, 0.80);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -0.32px;

    padding-top: 16px;
}

.ph_question{
    padding-top: 9px;
    padding-left: 5px;
}

.analytics_button-position{
    text-align: center;
    margin-top: 74px;
}
.analytics_button-position2{
text-align: center;
    margin-top: 24px;
}

.analytics__button{
    display: inline-flex;
    align-items: center;
    height: 62px;
    padding: 20px 34px;
    justify-content: center;
    gap: 8px;

    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .item-analytics__text {
        font-size: 24px;
    }
    .ph_question{
        padding-top: 0px;
    }
}

@media (max-width: 767.98px) {
    .item-analytics__text {
        font-size: 24px;
        padding-bottom: 20px;
    }
}

@media (max-width: 991.98px) {
    .item-analytics__button {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .item-analytics__title{
        font-size: 14px;
        line-height: 18px; /* 128.571% */
        letter-spacing: 0.14px;

        padding-top: 30px;
        padding-bottom: 12px;
    }
    .item-analytics__under_text{
        padding-top: 12px;

        font-size: 16px;
        line-height: 20px; /* 125% */
        letter-spacing: -0.32px;
    }
    .analytics__button{
        font-size: 18px;
        line-height: 22px; /* 122.222% */
        letter-spacing: -0.36px;
    }
}
@media (max-width: 417px) {
    .analytics__button{
        font-size: 16px;
    }
}

@media (max-width: 384px) {
    .analytics__button{
        font-size: 14px;
    }
}
@media (max-width: 353px) {
    .analytics__button{
        font-size: 13px;
    }
}

.item-analytics__image img {
    border-radius: 17px;
    z-index: 2;

    width: 100%;
}

.item-analytics__circle__1 {
    top: 50%;
    left: 48%;
    z-index: 1;
    width: 47.51%;
    height: 45.8%;
    filter: blur(110px);
    transform: rotate(0deg);
}
.item-analytics__circle__2 {
    top: 50%;
    left: 7%;
    z-index: 1;
    width: 47.51%;
    height: 45.8%;
    filter: blur(110px);
    transform: rotate(0deg);
}
.item-analytics__circle__3 {
    top: 5%;
    left: 47%;
    z-index: 1;
    width: 47.51%;
    height: 45.8%;
    filter: blur(100px);
    transform: rotate(0deg);
}
.item-analytics__circle__4 {
    top: 6%;
    left: 7%;
    z-index: 1;
    width: 47.51%;
    height: 45.8%;
    filter: blur(110px);
    transform: rotate(0deg);
}

@media (max-width: 767.98px) {
    .item-analytics__circle__1, .item-analytics__circle__2, .item-analytics__circle__3, .item-analytics__circle__4 {
        top: 40%;
        left: 33%;
        z-index: 1;
        width: 60.51%;
        height: 55.8%;
        filter: blur(87px);
        transform: rotate(0deg);
    }
}

.conditions {
    padding: 140px 0;
}

.conditions__labels {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .conditions {
        padding: 100px 0;
    }
}

@media (max-width: 575px) {
    .conditions {
        padding: 80px 0;
    }
}

.conditions__top {
    display: flex;
    gap: 130px;
}

.conditions__top:not(:last-child) {
    margin-bottom: 90px;
}

@media (max-width: 1230px) {
    .conditions__top {
        gap: 40px;
    }
}

@media (max-width: 991.98px) {
    .conditions__top {
        align-items: flex-start;
    }

    .conditions__top:not(:last-child) {
        margin-bottom: 60px;
    }
}

@media (max-width: 575px) {
    .conditions__top {
        gap: 0;
    }

    .conditions__top:not(:last-child) {
        margin-bottom: 92px;
    }
}

.conditions__title {
    max-width: 483px;
}

@media (max-width: 991.98px) {
    .conditions__title {
        max-width: unset;
    }
}

@media (max-width: 575px) {
    .conditions__title:not(:last-child) {
        margin-bottom: 30px;
    }
}

/*@media (max-width: 1230px) {*/
/*    .conditions__label:not(:last-child) {*/
/*        margin-bottom: 12px;*/
/*    }*/
/*}*/

/*@media (max-width: 575px) {*/
/*    .conditions__label:not(:last-child) {*/
/*        margin-bottom: 8px;*/
/*    }*/
/*}*/

.conditions__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991.98px) {
    .conditions__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .conditions__wrapper {
        margin: 0 -8px;
    }
}

.label-conditions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-top: 13.5px;
    border-radius: 60px;
}

.label-conditions:nth-child(1) {
    min-width: 440px;

    padding-top: 0px;
}

@media (max-width: 575px) {
    .label-conditions:nth-child(1) {
        min-width: unset;
    }
}

.label-conditions__icon img {
    max-width: 100%;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.label-conditions__text {
    color: #1B1F18;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
    letter-spacing: -0.54px;
}


.reasons {
    padding: 110px 0 100px 0;
    margin-bottom: 90px;
    overflow: hidden;
    border-radius: 60px;
    position: relative;
    background-color: #171715;
}

.reasons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.01;
    /*background: url("../img/menubackground.png") repeat center/4% rgba(0, 0, 0, 0.1);*/
}

.label-card__reasons-1{
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    background-color: #F3F3F3;
    box-shadow: 6px 6px 20px rgba(147, 207, 20, 0.1);
    border-radius: 59px
}
.label-card__reasons-2{
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 10px;
    background-color: #F3F3F3;
    box-shadow: 6px 6px 20px rgba(147, 207, 20, 0.1);
    border-radius: 59px
}

.reason__book{
    width: 107%!important;
    top: -63px!important;
    height: auto!important;
}

@media (max-width: 991.98px) {
    .reasons {
        padding: 80px 0 40px 0;
    }
}

@media (max-width: 767.98px) {
    .label-card__reasons-1{
        border-radius: 59px 2px 20px 59px;
    }
    .label-card__reasons-2{
        border-radius: 20px 59px 59px 2px;
    }
}

@media (max-width: 575px) {
    .reasons {
        padding-top: 50px;
        padding-bottom: 8px;
        border-radius: 40px;
    }
}

.reasons__container {
    position: relative;
    z-index: 2;
}

.reasons__title {
    color: #ffffff;
    text-align: center;

    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 70.4px;
    letter-spacing: -1.92px;
}

.reasons__title:not(:last-child) {
    margin-bottom: 90px;
}

@media (max-width: 991.98px) {
    .reasons__title{
        font-size: 54px;
    }
}

@media (max-width: 575px) {
    .reasons__title:not(:last-child) {
        margin-bottom: 40px;
    }
    .reasons__title{
        font-size: 43px;
        line-height: 56.4px;

    }
}

@media (max-width: 546px) {
    .reasons__title{
        font-size: 39px;
        line-height: 49.4px;
    }
}

@media (max-width: 459px) {
    .reasons__title{
        font-size: 32px;
        line-height: 110%; /* 35.2px */
    }
}

@media (max-width: 767.98px) {
    .reasons__wrapper {
        margin: 0 -4px;
    }
}

.reasons__item {
    padding: 50px 36px 36px 60px;

    margin-top: 36px;
}

.reasons__item:first-child{
    margin-top: 0px;
}

.reasons__item .item-reasons__content {
    padding-top: 15px;
    padding-bottom: 25px;

    flex: 1;
}

@media (max-width: 991.98px) {
    .reasons__item .item-reasons__content {
        padding-bottom: 5px;
    }
}

@media (max-width: 767.98px) {
    .reasons__item .item-reasons__content {
        padding: 0 !important;
    }
}

.reasons__item .item-reasons__image {
    align-self: center;
    flex: 1;
    padding-bottom: 32%;
}

@media (max-width: 767.98px) {
    .reasons__item .item-reasons__image {
        flex: unset;
        width: 105.41%;
        padding-bottom: 79.73%;
    }
}

/*.reasons__item:not(:last-child) {*/
/*    margin-bottom: 50px;*/
/*}*/

@media (max-width: 991.98px) {
    .reasons__item {
        padding-top: 25px;
        padding-left: 25px;
    }

    .reasons__item:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .reasons__item {
        padding: 30px 16px 16px 16px !important;
    }
}

@media (max-width: 575px) {
    /*.reasons__item:not(:last-child) {*/
    /*    margin-bottom: 16px;*/
    /*}*/
}

.reasons__item:first-child {
    padding-right: 120px;
}

.item-reasons-1 .item-reasons__image {
    flex: 0 0 34.6534653465%;
    /*padding-bottom: 34.71%;*/
}
.item-reasons-2 .item-reasons__image {
    flex: 0.8
    /*padding-bottom: 34.71%;*/
}
.item-reasons-2 .ibg img{
    height: 88%;
}
.item-reasons-3 .ibg img{
    height: 89%;
}
@media (max-width: 767.98px){
    /*.reasons__item:first-child .item-reasons__image, .reasons__item:last-child .item-reasons__image {*/
    /*    flex: unset;*/
    /*    width: 105.41%;*/
    /*    padding-bottom: 79.73%;*/
    /*}*/
    .item-reasons-2 .ibg img{
        height: 86%;
    }
    .item-reasons-3 .ibg img{
        width: 93%;
        height: 100%;
    }
}

@media (max-width: 991.98px) {
    /*.reasons__item:first-child {*/
    /*    padding-right: 65px;*/
    /*}*/
}

/*.reasons__item:first-child {*/
/*    padding-top: 45px;*/
/*    padding-bottom: 0;*/
/*}*/

/*.reasons__item:first-child .item-reasons__content {*/
/*    padding-top: 15px;*/
/*    padding-bottom: 60px;*/
/*}*/

/*.reasons__item:first-child .item-reasons__image {*/
/*    !*align-self: end;*!*/
/*}*/

@media (max-width: 767.98px) {
    /*.reasons__item:first-child .item-reasons__image {*/
    /*    width: 84.46%;*/
    /*    padding-bottom: 84.46%;*/
    /*    align-self: center;*/
    /*}*/
}

@media (max-width: 991.98px) {
    /*.reasons__item:first-child {*/
    /*    padding-top: 30px;*/
    /*}*/

    /*.reasons__item:first-child .item-reasons__content {*/
    /*    padding-bottom: 45px;*/
    /*}*/
}

/*.reasons__item:last-child {*/
/*    padding-top: 35px;*/
/*    padding-bottom: 45px;*/
/*}*/

/*.reasons__item:last-child .item-reasons__content {*/
/*    padding-top: 60px;*/
/*    padding-bottom: 15px;*/
/*}*/

/*.reasons__item:last-child .item-reasons__image {*/
/*    align-self: start;*/
/*}*/

@media (max-width: 767.98px) {
    /*.reasons__item:last-child .item-reasons__image {*/
    /*    width: 84.46%;*/
    /*    padding-bottom: 84.46%;*/
    /*    align-self: center;*/
    /*}*/
}

@media (max-width: 991.98px) {
    /*.reasons__item:last-child {*/
    /*    padding-bottom: 30px;*/
    /*}*/

    /*.reasons__item:last-child .item-reasons__content {*/
    /*    padding-top: 35px;*/
    /*}*/
}

.reasons__circle {
    top: -10%;
    left: -8.064516129%;
    width: 33.31%;
    padding-bottom: 33.31%;
    filter: blur(75px);
}

@media (max-width: 575px) {
    .reasons__circle {
        top: -50px;
        left: -50px;
        width: 46.39%;
        padding-bottom: 46.39%;
    }
}

.item-reasons {
    display: flex;
    gap: 40px;
    background: linear-gradient(125.04deg, rgba(240, 255, 228, 0.18) 3.84%, rgba(255, 255, 255, 0.045) 96.3%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 40px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .item-reasons {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .item-reasons {
        border-radius: 36px;
        gap: 0;
    }
}

.item-reasons__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .item-reasons__content .item-reasons__button {
        display: none;
    }

    .item-reasons__content:not(:last-child) {
        margin-bottom: 48px;
    }
}

.item-reasons__title {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.64px;
}

.item-reasons__title:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 991.98px) {
    .item-reasons__title {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .item-reasons__title {
        font-size: 24px;
    }
}

.item-reasons__description {
    flex: 1;
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.36px;
}

.item-reasons__description:not(:last-child) {
    margin-bottom: 50px;
}

@media (max-width: 991.98px) {
    .item-reasons__description {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .item-reasons__description {
        margin-bottom: 0 !important;
    }
}

.item-reasons__button {
    display: inline-flex;
    align-self: start;
}

@media (max-width: 767.98px) {
    .item-reasons__image__mobile-1{
        margin-bottom: 30px;
    }
}

@media (max-width: 535px) {
    .item-reasons__image__mobile-3_img{
        position: relative!important;
    }
    .item-reasons__image__mobile-3{
        padding-bottom: 15%!important;
    }
}

.item-reasons__image img {
    z-index: 2;
}

.item-reasons__label-card {
    position: absolute;
    z-index: 2;
    width: fit-content;
}

@media (max-width: 767.98px) {
    .item-reasons__label-card {
        padding: 8px 14px;
    }
}

.item-reasons__label-card span {
    font-weight: 500;
}

.item-reasons__label-card img {
    position: static;
}

.item-reasons__label-card_1 {
    left: -20%;
    bottom: 14.1242937853%;
    transform: translateX(-50%);
    max-width: 206px;
}
@media (max-width: 1040px) {
    .item-reasons__label-card_1{
        left: 0%;
    }
}
@media (max-width: 952px) {
    .item-reasons__label-card_1{
        left: 6%;
    }
    .item-reasons__description{
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .item-reasons__label-card_1 {
        bottom: 0;
        order: 2;
        transform: translateX(-50%);
        left: 27%;
    }
    .reason__book {
        width: 60%!important;
        top: -18px!important;
        height: auto!important;
        left: 20%!important;
    }
}

.item-reasons__label-card_2 {
    top: 33.073446%;
    right: -32%;
    max-width: 160px;
}

@media (max-width: 1054px) {
    .item-reasons__label-card_2 {
        top: -28.926554%;
    }
}

@media (max-width: 992px) {
    .item-reasons__label-card_2 {
        top: -18.926554%;
    }
}

@media (max-width: 910px) {
    .item-reasons__label-card_2 {
        top: -34.926554%;
    }
}

@media (max-width: 767.98px) {
    .item-reasons__label-card_2 {
        top: -12%;
        right: 17%;
    }
}

@media (max-width: 593px) {
    .item-reasons__label-card_2 {
        top: -16%;
    }
}

@media (max-width: 450px) {
    .item-reasons__label-card_2 {
        top: -15%;
        right: 8%;
    }
    .item-reasons__label-card_1{
        left: 34%;
    }
}

@media (min-width: 767.98px) {
    .item-reasons__button-outside {
        display: none;
    }
}

.item-reasons__circle-shine {
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 55.43%;
    padding-bottom: 143.2%;
    filter: blur(115px);
    z-index: 1;
}

.how {
    padding-bottom: 140px;
    padding-top:50px;
}

@media (max-width: 991.98px) {
    .how {
        padding: 100px 0;
    }
}

@media (max-width: 767.98px) {
    .how {
        padding: 80px 0;
    }
}

.how__wrapper {
    display: grid;
    grid-template-columns: 483px 1fr;
    gap: 132px;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .how__wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
    }
}

@media (max-width: 991.98px) {
    .how__wrapper {
        gap: 40px;
    }
}

@media (max-width: 767.98px) {
    .how__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.how__title {
    color: #171715;
}

.how__title:not(:last-child) {
    margin-bottom: 40px;
}

@media (max-width: 991.98px) {
    .how__title:not(:last-child) {
        margin-bottom: 30px;
    }
}

.how__description {
    color: #1B1F18;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 122.222%;
    letter-spacing: -0.54px;
}

@media (max-width: 991.98px) {
    .how__description {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .how__description {
        font-size: 16px;
    }
}

.how__list {
    counter-reset: section;
}

.how__list:not(:last-child) {
    margin-bottom: 60px;
}

.how__item {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.005em;
    color: #171715;
}

.how__item:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 991.98px) {
    .how__item {
        gap: 20px;
        font-size: 18px;
    }

    .how__item:not(:last-child) {
        margin-bottom: 22px;
    }
}

@media (max-width: 767.98px) {
    .how__item {
        font-size: 16px;
    }

    .how__item:not(:last-child) {
        margin-bottom: 18px;
    }
}

.how__item::before {
    counter-increment: section;
    content: counter(section);
    flex: 0 0 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4fc101;
    border-radius: 20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    leading-trim: both;
    text-edge: cap;
    letter-spacing: -0.005em;
    color: #FDFCFC;
}

.how__button {
    background-color: #171715;
    color: #FDFCFC;
}

@media (any-hover: hover) {
    .how__button:hover {
        background-color: #363635;
    }
}

.consultation {
    padding: 50px 0 45px 0;
    margin-bottom: 130px;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    background-color: #171715;
}

.consultation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.01;
    /*background: url("../img/menubackground.png") repeat center/4% rgba(0, 0, 0, 0.1);*/
}

@media (max-width: 991.98px) {
    .consultation {
        margin-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .consultation {
        margin-bottom: 80px;
        border-radius: 40px;
    }
}

.consultation__container {
    position: relative;
    z-index: 2;
}

.consultation__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 50px;
}

.consultation__title {
    max-width: 850px;
    color: #FDFCFC;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.92px;
}

.consultation__title:not(:last-child) {
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .consultation__title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .consultation__title {
        font-size: 28px;
    }
    .consultation__wrapper{
        padding: 0px;
    }
}

.consultation__description {
    text-align: center;

    color: rgba(253, 252, 252, 0.80);

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.54px;
}

.consultation__description:not(:last-child) {
    margin-bottom: 40px;
}

.consultation__circle-shine {
    top: 0%;
    left: 0;
    transform: translate(-40%, -40%);
    width: 33.31%;
    padding-bottom: 33.31%;
    filter: blur(75px);
}

@media (max-width: 575px) {
    .consultation__circle-shine {
        transform: translate(-20%, -20%);
        width: 46.39%;
        padding-bottom: 46.39%;
    }
}

.consultation__decor {
    position: absolute;
    bottom: 0px;
    right: 80px;
    z-index: 1;
    width: 23.588%;
}

.consultation__decor img {
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .consultation__decor {
        opacity: 0.6;
    }
}

@media (max-width: 575px) {
    .consultation__decor {
        display: none;
    }
}

.footer {
    padding: 50px 0;
    background: #EEE;
}

@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 40px 0;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 40px 0 25px 0;
        margin: 0 8px;
    }
}

@media (max-width: 575px) {
    .footer__container {
        padding: 0 8px;
    }
}

.footer__wrapper {
    display: grid;
    column-gap: 20px;
    row-gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991.98px) {
    .footer__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer__wrapper {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 0;
    }
}

@media (max-width: 575px) {
    .footer__main {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.footer__main:not(:last-child) {
    margin-bottom: 38px;
}

.footer__logo:not(:last-child) {
    margin-bottom: 11px;
}

@media (max-width: 575px) {
    .footer__logo {
        width: 135px;
        height: 23px;
    }

    .footer__logo:not(:last-child) {
        margin-bottom: 0;
    }

    .footer__logo img {
        max-width: 100%;
    }
}

.footer__text-logo{
    color: #1B1F18;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px; /* 114.286% */
    letter-spacing: -0.28px;

    padding-bottom: 22px;
}

.footer__text {
    color: #6f716d;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    letter-spacing: -0.32px;
}

.footer__text:not(:last-child) {
    margin-bottom: 35px;
}
.footer__mobile{
    display: none;
}

.footer__legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer__legal-link {
    color: #1B1F18;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
    font-weight: 500;
}

.footer__legal-link:hover {
    color: #00a300;
    text-decoration: underline;
}

.footer__disclaimer {
    margin-top: 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.footer__disclaimer p {
    color: #1B1F18;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.footer__disclaimer strong {
    color: #1B1F18;
    font-weight: 600;
}

@media (max-width: 575px) {
    .footer__text {
        display: none;
    }
    .footer__menu-text{
        display: none;
    }
    .footer__info-oferta{
        display: none;
    }
    
    .footer__legal-links {
        display: none;
    }
    .footer__logo-position{
        display: flex;
        flex-direction: column;
    }
    .footer__text-logo{
        margin-top: 7px;
    }
    .footer__text-logo{
        margin-bottom: 0px;
    }
    .footer__main:not(:last-child){
        margin-bottom: 30px;
    }
    .footer__mobile{
        display: flex;
        flex-direction: column;

        margin-top: 60px;
    }
    .footer__mobile_item{
        color: #6d6d6c;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 112.5% */
        letter-spacing: -0.32px;

        margin-top: 20px;
    }
    
    .footer__disclaimer {
        margin-top: 0;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.06);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .footer__disclaimer p {
        color: #1B1F18;
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        margin: 0;
        font-weight: 400;
    }

    .footer__disclaimer strong {
        color: #1B1F18;
        font-weight: 600;
    }
}

.footer__social {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.footer__social-item {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__social-item img {
    object-fit: contain;
    max-width: 100%;
}

.footer__menu {
    margin-bottom: 24px;
}

.footer__menu-text{
    margin-top: 30px;

    color: #6d6d6c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: -0.32px;
}

.footer__menu .footer__item:not(:last-child) {
    margin-bottom: 14px;
}

@media (max-width: 991.98px) {
    .footer__menu .footer__item:not(:last-child) {
        margin-bottom: 16px;
    }
}

.footer__info {
    max-width: 200px;
}

.footer__info .footer__item {
    color: #1B1F18;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 90% */
    letter-spacing: -0.4px;

    margin-top: 22px;
}

.footer__info .footer__item:not(:last-child) {
    margin-bottom: 21px;
}

.footer__contacts,
.footer__documents{
    color: #1B1F18;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.72px;
}

.footer__info.contacts {
    margin-top: 10px;
}

.footer__info.contacts .footer__item:not(:last-child) {
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .footer__info .footer__item:not(:last-child) {
        margin-bottom: 12px;
    }
}

.footer__consultation-title{
    color: #1B1F18;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 26.4px */
    letter-spacing: -0.72px;
}

.footer__consultation-title span{
    color: #52CA01;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.72px;
}

.footer__consultation-text{
    color: #1B1F18;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: -0.32px;

    margin-top: 16px;
}

.footer__consultation-button button{
    margin-top: 35px;

    width: 100%;
}

.footer__item {
    display: block;
    font-size: 20px;
    line-height: 100%;
    color: #171715;
}

@media (max-width: 575px) {
    .footer__item {
        font-size: 18px;
    }
}
.footer__info-oferta{
    color: #6d6d6c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    letter-spacing: -0.32px;

    margin-top: 10px;
}

.footer__item a {
    position: relative;

    color: #1B1F18;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 122.222% */
    letter-spacing: -0.36px;
}

.footer__item a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #171715;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
    .footer__item a:hover::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        bottom: -5.5px;
    }
}

.footer__buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-self: end;
}

@media (max-width: 991.98px) {
    .footer__buttons {
        justify-self: start;
    }
}

@media (max-width: 575px) {
    .footer__buttons {
        align-items: flex-start;
        width: 100%;
        margin-bottom: 28px;
    }
    .footer__consultation-title{
        margin-top: 40px;
    }
}

.footer__button {
    width: 100%;
    max-width: 205px;
    padding-right: 35px;
    padding-left: 35px;
}

.footer__button_sing-in {
    background-color: rgba(23, 23, 21, 0.05);
}

@media (any-hover: hover) {
    .footer__button_sing-in:hover {
        background-color: rgba(23, 23, 21, 0.1);
    }
}

.footer__button:not(:last-child) {
    margin-bottom: 9px;
}

@media (max-width: 575px) {
    .footer__button {
        width: 100%;
        max-width: 230px;
    }
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}