*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --green-color: #D0FF71;
    --violet-color: #6F3DD0;
    --font-color: #212226;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    left: 0;
    list-style: none;
}
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    background-color: #202227;
    margin: 0;
    color:var(--font-color);
    letter-spacing: 0;
}
button, input, optgroup, select, textarea {
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background: 0 0;
}
img {
    max-width: 100%;
}
.text-white {
    color: #fff;
}
b, strong {
    font-weight: 600;
}
h2, .h2 {
    font-size: 40px;
    line-height: 120%;
    font-weight: 600;
    margin: 0 0 20px;
}
@media (max-width: 575px) {
    .h2 {
        font-size: 28px;
        margin: 0 0 15px;
    }
}
.txtSection {
    font-size: 26px;
}
@media (max-width: 769px) {
    .txtSection {
        font-size: 16px;
    }
    body {
        font-size: 16px;
    }
}
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding: 22px 26px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    border: 2px solid transparent;
    justify-content: center;
}
.-green {
    background-color: var(--green-color);
    color: var(--font-color);
}
.-violet {
    background-color: var(--violet-color);
    color: #fff;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1196px;
    }
}


.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.align-items-center {
    align-items: center;
}
.text-center {
    text-align: center;
}
@media(min-width: 992px) {
    .text-lg-left {
        text-align: left;
    }
}
/*HEADER*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900
}

.header-inner {
    padding: 32px 0;
    position: relative
}

.header-inner.-active:before {
    width: 100%
}

.header-inner:before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    background: #16181a
}

.header-inner>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative
}

.header-logo {
    position: relative;
    z-index: 950;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-logo img {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    filter: brightness(0) invert(1);
}

.header-nav {
    margin-left: 82px;
    width: 100%
}

.header-nav.-mob {
    -webkit-transition: visibility .4s,-webkit-transform .4s;
    transition: transform .4s,visibility .4s,-webkit-transform .4s;
    -o-transition: transform .4s,visibility .4s
}

.header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-nav-list>li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    color: #ececec;
    position: relative
}

.header-nav-list>li:hover:before {
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    width: 100%
}

.header-nav-list>li:not(:last-child) {
    margin-right: 32px
}

.header-nav-list>li:before {
    display: block;
    content: "";
    bottom: -4px;
    left: 0;
    position: absolute;
    width: 0;
    height: 2px;
    background: currentColor;
    -webkit-transition: width .2s ease-in-out;
    -o-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out
}

.header-nav-list>li.menu-item-has-children {
    cursor: pointer
}

.header-nav-list>li.menu-item-has-children ul {
    position: relative;
    min-width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.header-nav-list>li.menu-item-has-children ul li:first-child a {
    border-radius: 20px 20px 0 0
}

.header-nav-list>li.menu-item-has-children ul li:last-child a {
    border-radius: 0 0 20px 20px
}

.header-nav-list>li.menu-item-has-children ul li a {
    display: block;
    padding: 10px 20px;
    color: #ececec;
    font-size: 14px;
    line-height: 22px
}

.header-nav-list>li>a,.header-nav-list>li>span {
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    color: currentColor;
    font-size: 14px;
    line-height: 22px
}

.header-nav-list>li>span {
    pointer-events: none
}

.header-nav-list>li svg {
    --size: 8px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    fill: currentColor;
    margin-left: 4px;
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    pointer-events: none
}

.header-nav .socials-list li a {
    border-radius: 35px;
    background: #fff;
    color: #202227
}

.header-nav .socials-list li a:hover {
    background: #6e3ecb;
    color: #fff
}

.header .hamburger {
    position: relative;
    z-index: 950;
    margin-left: auto;
    overflow: hidden
}

.header-nav {
        padding-right: 0!important
}
.header.fixed {
    background-color: #202227;
    border-bottom: 1px solid #3b3b3b;
    box-shadow: 0 0 10px #202227;
    transition: all .3s;
}

@media (min-width: 1200px) {
    .header-nav>.container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
        width: 100%
    }
    .header-nav-list>li.menu-item-has-children ul {
        display: block!important;
        position: absolute;
        -webkit-transform: translate(0,105%);
        -ms-transform: translate(0,105%);
        transform: translate(0,105%);
        left: -20px;
        z-index: 100;
        bottom: -14px;
        background: #37383d;
        -webkit-transition: .2s cubic-bezier(.17,.67,.36,2);
        -o-transition: .2s cubic-bezier(.17,.67,.36,2);
        transition: .2s cubic-bezier(.17,.67,.36,2);
        border-radius: 20px;
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }
    .header-nav-list>li.menu-item-has-children:hover ul {
        pointer-events: inherit;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0, 100%);
        -ms-transform: translate(0,100%);
        transform: translate(0, 100%);
    }
}

.header-nav-list>li:hover {
    color: #9469f3
}

.header-nav-list>li:hover svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}


.header-nav-list>li.menu-item-has-children ul:before {
    display: block;
    content: "";
    width: 100%;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header-nav-list>li.menu-item-has-children ul li.-show-all {
    border-top: 1px solid #16181a
}

.header-nav-list>li.menu-item-has-children ul li a:hover {
    background: #9469f3
}

.hamburger {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity,filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger-box {
    width: 26px;
    height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    width: 24px;
    height: 3px;
    background-color: #9469f3;
    border-radius: 0;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
.hamburger--slider-r .hamburger-inner {
    top: 2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    width: 26px;
    height: 2px;
    background-color: #fff;
    border-radius: 0;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    -o-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
.hamburger-inner::after, .hamburger-inner::before {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -9px;
}
.hamburger--slider-r .hamburger-inner::before {
    top: 7px;
    -webkit-transition: opacity .15s .15s;
    -o-transition: transform .15s .15s;
    transition: transform .15s .15s;
}
.hamburger--slider-r .hamburger-inner::after {
    top: 14px;
}
.hamburger-inner::after {
    bottom: -9px;
}
.hamburger--slider-r.-active .hamburger-inner {
    -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
    transform: translate3d(0, 9px, 0) rotate(-45deg);
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
    top: 0;
}
.hamburger--slider-r.-active .hamburger-inner::before {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.hamburger--slider-r.-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(90deg);
    transform: translate3d(0, -18px, 0) rotate(90deg);
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
    top: 18px;
}

@media (min-width: 1200px) and (pointer:coarse) {
    .header-nav-list>li:hover svg {
        -webkit-transform:rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }

    .header-nav-list>li.menu-item-has-children:hover ul {
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate(0,105%);
        -ms-transform: translate(0,105%);
        transform: translate(0,105%)
    }
}

@media (min-width: 1200px) {
    .header .hamburger {
        display: none;
    }
}

.socials-list,.socials-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.socials-list li:not(:last-child) {
    margin-right: 6px
}

.socials-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px;
    background-color: #fff;
    border-radius: 50%;
}

.socials-list li a svg {
    fill: currentColor;
    --size: 18px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size)
}
.header__btn {
    width: 140px;
    height: 38px;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 90px 0 30px;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        overflow: auto;
        background: #16181a;
        visibility: hidden;
    }
    .header-nav>.container {
        min-height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
    .header-nav-list {
        display: block;
        margin: auto;
        width: 100%;
        padding-top: 10px;
    }
    .header-nav-list>li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header-nav-list>li>a, .header-nav-list>li>span {
        font-size: 18px;
        line-height: 26px;
        padding: 4px 0;
    }
    .header-nav-list>li.menu-item-has-children ul {
        display: none;
        margin-top: 14px;
    }
    .header-nav-list>li.menu-item-has-children ul li {
        padding-left: 10px;
    }
    .header-nav-list>li.menu-item-has-children ul li:not(:last-child) {
        margin-bottom: 20px;
    }
    .header-nav-list>li.menu-item-has-children ul li a {
        padding: 4px 0;
    }
    .header-nav-list>li.menu-item-has-children ul li:first-child a {
        border-radius: 20px 20px 0 0;
    }
    .header-nav-list>li.menu-item-has-children:after {
        z-index: -1;
        position: absolute;
        content: "";
        display: block;
        width: calc(100% + 40px);
        max-width: 100vw;
        height: calc(100% + 20px);
        -webkit-transition: height .2s, opacity .2s;
        -o-transition: height .2s,opacity .2s;
        transition: height .2s, opacity .2s;
        background: #37383d;
        border-radius: 20px;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        pointer-events: none;
    }
    .header-nav .socials-list {
        margin-top: 40px;
    }
    .header-nav .socials-list li, .header-nav .socials-list li a {
        width: 100%;
    }
    .header-nav.-active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
    }
    .header-nav-list>li {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .header-nav-list>li:before {
        display: none;
    }
    .header-nav-list>li.menu-item-has-children:after {
        z-index: -1;
        position: absolute;
        content: "";
        display: block;
        width: calc(100% + 40px);
        max-width: 100vw;
        height: calc(100% + 20px);
        -webkit-transition: height .2s, opacity .2s;
        -o-transition: height .2s,opacity .2s;
        transition: height .2s, opacity .2s;
        background: #37383d;
        border-radius: 20px;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        pointer-events: none;
    }
    .header-nav-list>li.-active:after {
        opacity: 1;
    }
}

.header__right .socials-list {
    display: none;
}
@media(max-width: 1200px) {
    .header_container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
    }
    .header_container .header-nav-list {
        margin: 0;
    }
    .header__right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .header__right .socials-list {
        display: flex;
        margin-top: 0;
    }
    
}

@media(max-width: 575px) {
    .header-inner {
        padding: 30px 0;
    }
    .header_container {
        overflow: hidden;
    }
    
}

/*HEADER END*/


/*FOOTER*/

.footer {
    padding: 40px 0;
    margin-top: auto
}

.footer .row {
    --bs-gutter-y: 40px
}

.footer hr {
    border: 0;
    height: 2px;
    background: #fff;
}
.footer__tophr {
    margin-bottom: 50px;
}

.footer .btn-scroll-to {
    margin-left: auto
}

.footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
        height: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}


.footer-nav li {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.footer-nav li:not(:last-child) {
    margin-bottom: 12px
}

.footer-nav li a {
    color: #ececec;
    position: relative;
    background-image: -webkit-gradient(linear,left top,left bottom,from(currentColor),to(currentColor));
    background-image: -o-linear-gradient(currentColor,currentColor);
    background-image: linear-gradient(currentColor,currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px
}

.footer-nav li a:hover {
    color: #9469f3;
    background-size: 100% 2px
}

.footer-bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start
}

.footer-bottom .socials-list {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
    -ms-grid-column-align: end;
    justify-self: end
}

.footer-bottom .socials-list li a {
    color: #202227;
}

.footer-bottom .socials-list li a:hover {
    color: #9469f3
}

.footer-info {
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #ffffff;
}
.arrow-btn {
    cursor: pointer;
    --size: 50px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    position: relative;
    z-index: 100;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    margin-bottom: 40px;
}
.arrow-btn svg {
    fill: #636366;
    --size: 23px;
    width: var(--size);
    height: var(--size);
    min-width: var(--size);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    margin-bottom: 3px;
}
.arrow-btn:hover svg {
    margin-bottom: 10px;
}
.footer__bottomhr {
    margin-top: 50px;
    margin-bottom: 45px;
}
@media(max-width: 991px) {
    .footer-inner .btn {
        margin-top: 30px;
        margin-bottom: 60px;
    }
}
@media(max-width: 575px) {
    .footer-bottom {
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }
    .footer-info {
        margin: 0;
    }
    .footer-inner .btn {
        width: 223px;
        height: 50px;
        font-size: 16px;
    }
    .footer-logo img {
        width: 185px;
    }
    .footer .btn-scroll-to {
        --size: 41px;
    }
}

/*FOOTER END*/

/*HOME*/

.heroHome {
    padding: 210px 0 60px;
}
.heroHome h1 {
    margin: 0 0 25px;
    font-size: 90px;
    font-weight: 600;
    line-height: 120%;
}
.heroHome__txt {
    font-size: 26px;
    margin-bottom: 40px;
}
.heroHome__switch {
    width: 466px;
    height: 71px;
    border: 2px solid var(--green-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
}
.heroHome__switch-btn {
    width: 50%;
    border:none;
    height: 100%;
    font-size: 18px;
}
.heroHome__switch-date {
    width: 50%;
    
}
.heroHome__block {
    height: 236px;
    background: linear-gradient(180deg, #CEBDEF 0%, #F3EFFB 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.heroHome__block-title {
    width: 150px;
    position: relative;
    z-index: 1;
}
.heroHome__block-img {
    position: absolute;
    right: -10px;
    bottom: -10px;
}
.heroHome__block-img img {
    width: 290px;
}
.heroHome__blocks .col-12:last-child .heroHome__block-img {
    right: -7px;
    bottom: -20px;
}
.heroHome__blocks .col-12:last-child .heroHome__block-img img {
    width: 230px;
}
.heroHome__blocks {
    margin-top: 60px;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}
@media(max-width: 769px) {
    .heroHome__block {
        height: 160px;
        margin-bottom: 10px;
    }
    .heroHome__block-img img {
        width: 218px;
    }
    .heroHome__blocks .col-12:last-child .heroHome__block-img img {
        width: 185px;
    }
    .heroHome__block-img {
        right: -2px;
    }
    .heroHome__block-title {
        width: 200px;
        font-size: 18px;
    }
    .heroHome__block-title br {
        display: none;
    }
    .heroHome h1 {
        margin: 0 0 15px;
        font-size: 65px;
    }
    .heroHome__txt {
        font-size: 20px;
        margin-bottom: 30px;
    }
}
@media(max-width: 575px) {
    .heroHome h1 {
        font-size: 50px;
    }
    .heroHome__switch {
        width: 100%;
        height: 60px;
        font-size: 16px;
    }
    .heroHome__switch-btn {
        font-size: 16px;
        padding: 10px;
    }
    .heroHome {
        padding: 100px 0;
    }
    .heroHome__blocks {
        margin-top: 120px;
    }
}
@media(max-width: 410px) {
    .heroHome h1 {
        font-size: 43px;
    }
    .heroHome__txt {
        font-size: 17px;
    }
    .heroHome__switch-btn, .heroHome__switch {
        font-size: 15px;
    }
}

.newSystemHome {
    padding: 60px 0;
    overflow: hidden;
}
.newSystemHome__txt {
    width: 382px;
    margin: 0 auto;
}
.newSystemHome__blocks {
    margin-top: 60px;
}
.helpMessWr {
    display: inline;
    position: relative;
    top: 2px;
    left: 4px;
}
.help-title {
    position: relative;
    z-index: 1;
}
.helpMess {
    font-size: 16px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    bottom: 40px;
    color: var(--font-color);
    width: 350px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 1;
    font-weight: 400;
    text-align: left;
    max-width: max-content;
}
.helpMessWr img {
    cursor: pointer;
}
.helpMessWr img:hover ~ .helpMess {
    display: block;
}
.newSystemHome__blocks {
    display: grid;
    grid-template-rows: 230px 190px;
    grid-template-columns: 1fr 446px 1fr;
    gap: 20px;
}
.newSystemHome__block:first-child {
    grid-column: 1 / 1;
    grid-row: 1 / 3;
}
.newSystemHome__block:last-child {
    grid-column: 3 / 3;
    grid-row: 1 / 3;
}
.newSystemHome__block {
    border-radius: 20px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.newSystemHome__block:first-child {
    justify-content: end;
}
.newSystemHome__block:first-child::before {
    content: '';
    width: 100%;
    height: 55%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(33, 34, 38, 0) 0%, #212226 100%);
}
.newSystemHome__block:nth-child(2) .newSystemHome__block-img img {
    max-width: 274px;
}
.newSystemHome__block-img {
    position: absolute;
    bottom: -5px;
    right: 0;
}
.newSystemHome__block-imgWr {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .newSystemHome__blocks {
        grid-template-columns: 1fr 366px 1fr;
    }
    .newSystemHome__block-title {
        font-size: 18px;
    }
}
@media (max-width: 991px) {
    .newSystemHome__block:first-child {
        grid-column: 1;
        grid-row: 1;
        height: 260px;
    }
    .newSystemHome__block:last-child {
        grid-column: 1;
        grid-row: 4;
        height: 260px;
    }
    .newSystemHome__blocks {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .newSystemHome__block {
        height: 230px;
    }
    .newSystemHome__block:nth-child(3) {
        height: 140px;
    }
    .newSystemHome__block:last-child .newSystemHome__block-img {
        bottom: -34px;
        right: -76px;
    }
    .newSystemHome__block:last-child .newSystemHome__block-img img {
        width: 260px;
    }
    
}

@media (max-width: 575px) {
    .newSystemHome__blocks {
        margin-top: 30px;
        gap: 10px;
    }
    .newSystemHome__block:nth-child(2) .newSystemHome__block-img img {
        width: 275px;
        max-width: 275px;
    }
    
    .newSystemHome__txt {
        width: 100%;
    }
    .h2 {
        font-size: 28px;
    }
    .helpMess {
        width: 300px;
        left: auto;
        transform: initial;
        bottom: 30px;
    }
    .helpMess br {
        display: none;
    }
    .newSystemHome__block:first-child::before {
        background: linear-gradient(180deg, rgba(33, 34, 38, 0) 0%, rgba(33, 34, 38, 0.5) 100%);
    }
    .newSystemHome .h2 {
        margin-bottom: 15px;
    }
}

.personHome {
    padding: 60px 0;
}
.personHome__block {
    background: linear-gradient(180deg, #311863 0%, #6F3DD0 100%);
    border-radius: 20px;
    padding: 60px 30px;
    margin-top: 60px;
    position: relative;
}
.personHome__block-cont {
    width: 65%;
    position: relative;
    z-index: 1;
}
.personHome__block-title {
    margin-bottom: 20px;
}
.personHome__block-txt ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.personHome__block-txt ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 10px;
    background-color: #fff;
}
.personHome__block-img {
    width: 41%;
    position: absolute;
    bottom: -5px;
    right: 3%;
}
.personHome__block-btns {
    margin-top: 60px;
    gap: 10px;
}
.personHome__block-btn {
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 18px;
}
.personHome__block-txt {
    padding-right: 130px;
}
@media(max-width: 1200px) {
    .personHome__block-txt {
        padding-right: 0px;
    }
}
@media(max-width: 991px) {
    .personHome__block-cont {
        width: 100%;
    }
    .personHome__block-cont {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .personHome__block-img {
        width: 63%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .personHome__block-btn {
        background-color: #fff;
        color: var(--font-color);
    }
    .personHome__block {
        height: 777px;
        padding: 30px;
    }
    .personHome__block::after {
        content: '';
        width: 100%;
        height: 40%;
        position: absolute;
        left: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(33, 34, 38, 0) 0%, rgba(33, 34, 38, 0.6) 100%);
    }
    
}
@media(max-width: 769px) {
    .personHome__block-img {
        width: 85%;
        min-width: 455px;
    }
    .personHome__block-btn {
        padding: 12px 14px;
        font-size: 16px;
    }
}
@media(max-width: 575px) {
    .personHome__block {
        height: 733px;
        padding: 30px 15px;
        overflow: hidden;
        margin-top: 40px;
    }
    .personHome__block-img {
        min-width: 400px;
    }
    .personHome__txt br {
        display: none;
    }
}

.resultHome {
    padding: 60px 0;
    overflow: hidden;
}
.resultHome__slider {
    margin-top: 60px;
}
.resultHome__slide {
    width: 367px;
    height: 367px;
}
.resultHome__slide img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width: 575px) {
    .resultHome__slider {
        margin-top: 35px;
    }
    .resultHome__slide {
        width: 300px;
        height: 300px;
    }
}

.withUsHome {
    padding: 60px 0;
}
.withUsHome .h2 {
    margin-bottom: 40px;
}
.withUsHome__ben-block {
    background-color: #F4F5F5;
    height: 140px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-align: center;
}
.withUsHome__ben {
    margin-bottom: 10px;
    margin-right: -10px;
    margin-left: -10px;
}
.withUsHome__btn a {
    height: 71px;
    width: 274px;
}
@media(max-width: 1200px) {
    .withUsHome__ben-block {
        padding: 10px 45px;
    }
}
@media(max-width: 991px) {
    .withUsHome__ben-block {
        height: 100px;
        margin-bottom: 10px;
    }
}
@media(max-width: 575px) {
    .withUsHome__btn a {
        height: 60px;
    }
}

.thisisHome {
    padding: 60px 0;
}
.thisisHome__block {
    background: #6F3DD0;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}
.thisisHomeWr {
    gap: 20px 0;
    margin-bottom: 30px;
}
.thisisHome__soc .socials-list a {
    color: var(--font-color);
}
.thisisHome__soc .socials-list li a:hover {
    background: #6e3ecb;
    color: #fff;
}
@media(max-width: 575px) {
    .thisisHomeWr {
        gap: 10px 0;
    }
    .thisisHome__block-title {
        margin-bottom: 15px;
    }
}
.bossHome {
    padding: 60px 0;
}
.bossHome__about-block-txt ul li {
    background-color: #F4F5F5;
    border-radius: 20px;
    padding: 30px 20px 30px 30px;
    display: block;
}
.bossHome__about-block-txt ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bossHome__img {
    background: linear-gradient(180deg, #CEBDEF 0%, #F3EFFB 100%);
    border-radius: 20px;
    position: relative;
    padding: 0 25px;
    width: 100%;
}
.bossHome__img img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 417px;
}
.bossHomeWr {
    margin-top: 40px;
}
.bossHome__about {
    gap: 20px;
}
.bossHome__about-block {
    width: 62%;
}
.bossHome__img {
    width: 38%;
}
@media(max-width: 991px) {
    .bossHome__about {
        flex-direction: column;
    }
    .bossHome__about-block, .bossHome__img {
        width: 100%;
    }
    .bossHome__img {
        height: 465px;
    }
    .bossHome__img img {
        width: 390px;
    }
    
}
@media(max-width: 575px) {
    .bossHome__about-block-txt ul, .bossHome__about {
        gap: 10px;
    }
    .bossHomeWr {
        margin-top: 20px;
    }
    .bossHome__img {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 40px 0;
    }
    .bossHome__img img {
        position: initial;
        transform: translateX(0);
    }
}

.formsHome {
    padding: 60px 0;
    overflow: hidden;
}
.formsHome__block {
    border-radius: 20px;
    /*padding: 30px;*/
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.formsHome__block-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.formsHome__block-tag {
    border-radius: 50px;
    padding: 10px 20px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    background-color: #fff;
    font-weight: 600;
    position: relative;
}
.formsHome__block-cont {
    width: 68%;
    padding: 30px;
}
.formsHome__block-img {
    width: 32%;
    position: relative;
}
.formsHome__block-img img {
    position: absolute;
    top: auto;
    bottom: 0;
    right: -40px;
    max-width: 400px;
}
.formsHome__block-tag.new {
    background-color: var(--green-color);
    padding: 10px 30px;
    width: 102px;
}
.formsHome__block-btn .btn {
    width: 250px;
    height: 55px;
}
.formsHome__block-tag .helpMessWr {
    position: absolute;
    top: -6px;
    left: auto;
    right: 0px;

}
.formsHome__block-tag .helpMess {
    top: 40px;
    bottom: auto;
    width: 380px;
}
.formsHome__block-txt {
    margin-bottom: 30px;
}
.formsHome__block-txt p:last-child {
    margin-bottom: 0;
}
.formsHome__block-txt .helpMessWr {
    left: 0;
}
.formsHomeBlocksWr {
    margin-top: 40px;
}
.formsHome__blockWr:nth-child(3) .formsHome__block-img img {
    max-width: 480px;
    right: -120px;
}
.formsHome__blockWr:nth-child(2) .formsHome__block-img img {
    right: -78px;
    max-width: 510px;
}

@media (max-width: 991px) {
    .formsHome__block-cont, .formsHome__block-img {
        width: 100%;
    }
    .formsHome__block-img img {
        position: initial;
    }
    .formsHome__block {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .formsHome__block-img {
        text-align: center;
        margin-bottom: -5px;
    }
    .formsHome__blockWr:last-child .formsHome__block-img img {
        max-width: 400px!important;
    }
    .formsHome__block-btn {
        text-align: center;
    }
}
@media (max-width: 575px) {
    .formsHome__block-img img {
        max-width: 300px;
    }
    .formsHome__block-tag {
        font-size: 16px;
    }
    .formsHome__block-tag .helpMess {
        width: 300px;
        left: initial;
        transform: initial;
        margin-left: -280px;
    }
    .formsHome__blockWr:nth-child(4) .formsHome__block-tag .helpMess {
        margin-left: -260px;
    }
    .formsHome__blockWr:nth-child(3) .formsHome__block-tag .helpMess {
        margin-left: -150px;
    }
    .formsHome__blockWr:nth-child(2) .formsHome__block-img img {
        max-width: 335px;
    }
    .formsHomeBlocksWr {
        margin-top: 20px;
    }
    .formsHome__blockWr:nth-child(3) .formsHome__block-img img {
        max-width: 400px;
    }
    .formsHome__block-cont {
        padding: 30px 30px 20px;
    }
}

.textHome {
    padding: 60px 0;
}
.textHome__txt {
    background: linear-gradient(180deg, #CEBDEF 0%, #F3EFFB 100%);
    border-radius: 20px;
    padding: 42px 200px;
}
@media (max-width: 1200px) {
    .textHome__txt {
        padding: 42px 30px;
    }
}

.pricesHome {
    padding: 60px 0;
}
.pricesHome__block {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricesHome__block-pricesWr {
    margin-top: 100px;
    margin-bottom: 30px;
}
.pricesHome__block-prices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pricesHome__block-prices del {
    color: #7D828C;
}
.pricesHome__block-prices ins {
    text-decoration: none;
    font-size: 40px;
    font-weight: 600;
}
.pricesHome__block-or {
    margin: 30px 0;
}
.pricesHome__block-btn {
    text-align: center;
}
.pricesHome__block-btn .btn {
    width: 250px;
    height: 55px;
}
.pricesHomeWr {
    margin-top: 60px;
    gap: 20px 0;
}
.pricesHome__start {
    width: 280px;
    height: 60px;
}

.modalPriceHome {
    border-radius: 20px;
    padding: 60px;
    background-color: #fff;
    width: 95%;
}
.modalPriceHome__top {
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}
.modalPriceHome__form {
    margin-bottom: 90px;
}
@media(max-width: 1200px) {
    .modalPriceHome__top {
        flex-direction: column;
        gap: 30px;
    }
    .modalPriceHome .formsHome__block-tag {
        display: inline-flex;
    }
    .modalPriceHome__top .h2 {
        font-size: 30px;
        margin-bottom: 0;
    }
}
@media(max-width: 575px) {
    .pricesHome__block-pricesWr {
        margin-top: 50px;
    }
    .pricesHome__block-or {
        margin: 20px 0;
    }
    .pricesHomeWr {
        margin-top: 40px;
        gap: 10px 0;
    }
    .pricesHome__start {
        font-size: 16px;
        width: 283px;
        height: 60px;
    }
}
.modalPriceHome__form input[type="text"] {
    background-color: #F4F5F5;
    border-radius: 100px;
    height: 90px;
    width: 100%;
    font-size: 20px;
    margin-bottom: 30px;
    border: none;
    padding: 30px 60px;
}
.modalPriceHome__form input[type="text"]::placeholder {
    color: #A9ACB2;
}

.modalPriceHome .h2 {
    font-size: 36px;
}
.labelInput span {
    color: #7D828C;
    margin-bottom: 10px;
    display: block;
}
.modalPriceHome__form button[type="submit"] {
    width: 274px;
    height: 71px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    display: block;
}
.labelRadio {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 100px;
    background-color: #F4F5F5;
    padding: 10px 60px;
    cursor: pointer;
}
.labelRadio.active {
    background-color: var(--violet-color);
    color: #fff;
}
.labelRadio input[type="radio"] {
  display: none;
}
.labelRadio__block {
    gap: 30px;
    align-items: center;
    width: 100%;
    text-align: center;
}
.labelRadio__block-price {
    display: flex;
    justify-content: end;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.labelRadio__block-price del {
    font-size: 16px;
}
.labelRadio__block-price ins {
    font-size: 24px;
    text-decoration: none;
}
.modalPriceHome__txt {
    margin: 30px 0 90px;
}
.modalPriceHome__txt a {
    color: var(--violet-color);
    text-decoration: underline;
}
.modal {
    display: none;
}
.modalPriceHome .carousel__button {
    color: #000;
    top: 5px;
    right: 5px;
}
@media(max-width: 991px) {
    .labelRadio__block {
        flex-direction: column-reverse;
        gap: 10px;

    }
}

@media(max-width: 769px) {
    .labelRadio__block-price ins {
        font-size: 22px;
    }
    .modalPriceHome__form input[type="text"] {
        height: 80px;
    }
    .modalPriceHome {
        padding: 40px;
    }
    .labelRadio__block {
        gap: 10px;
        justify-content: center !important;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
    }
    .modalPriceHome__txt {
        margin: 30px 0 40px;
    }
    .modalPriceHome__form {
        margin-bottom: 60px;
    }
    .modalPriceHome__not {
        font-size: 14px;
    }
    .modalPriceHome .h2 {
        font-size: 27px;
    }
    .modalPriceHome__form input[type="text"] {
        height: 70px;
        font-size: 18px;
        margin-bottom: 20px;
    }
}
@media(max-width: 575px) {
    .modalPriceHome {
        padding: 30px 20px;
        width: 100%;
    }
    .labelRadio {
        height: auto;
        padding: 20px 30px;
    }
    .modalPriceHome .h2 {
        font-size: 24px;
    }
    .modalPriceHome__form input[type="text"] {
        border-radius: 100px;
        font-size: 18px;
        padding: 15px 30px;
    }
    .modalPriceHome__top {
        margin-bottom: 40px;
    }
    .labelRadio__block-price {
        align-items: baseline;
    }
    .modalPriceHome__txt {
        margin: 20px 0 40px;
    }
}

.faqHome {
    padding: 60px 0;
}
.faqHome__block {
    background: #F4F5F5;
    border-radius: 20px;
    margin-bottom: 20px;
}
.faqHome__block-title {
    width: 90%;
}
.faqHome__block-plus {
    width: 30px;
    height: 30px;
    position: relative;
    transition: all .3s;
}
.faqHome__block-plus::before, .faqHome__block-plus::after {
    content: '';
    background-color: #7D828C;
    position: absolute;
}
.faqHome__block-plus::before {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 2px;
}
.faqHome__block-plus::after {
    top: 0;
    transform: translateX(-50%);
    left: 50%;
    height: 100%;
    width: 2px;
}
.faqHome__block-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 35px 30px;
}
.faqHome__block-answ {
    padding: 0px 100px 30px 30px;
    display: none;
}
.faqHome__block-answ p:first-child {
    margin-top: 0;
}
.faqHome__block-answ p:last-child {
    margin-bottom: 0;
}
.faqHome__block.active .faqHome__block-plus {
    transform: rotate(135deg);
}
.faqHomeWr {
    margin-top: 40px;
}
@media(max-width: 575px) {
    .faqHomeWr {
        margin-top: 20px;
    }
    .faqHome__block {
        margin-bottom: 10px;
    }
    .faqHome__block-top {
        padding: 25px 30px;
    }
    .faqHome__block-answ {
        padding: 0px 30px 30px 30px;
    }
}

.waitHome {
    padding: 60px 0;
}
.waitHome__blockWr {
    margin-top: 40px;
    gap: 20px 0;
}
.waitHome__block {
    display: flex;
    gap: 30px;
    border-radius: 20px;
    height: 100%;
    padding: 0 30px;
    justify-content: space-between;
}
.waitHome__block-img {
    width: 237px;
    position: relative;
    display: flex;
    align-items: end;
}
.waitHome__block-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}
.waitHome__block-txt p:first-child {
    margin-top: 0;
}
.waitHome__block-txt p:last-child {
    margin-bottom: 0;
}
.waitHome__block-img-m {
    display: none;
}
.waitHome__block-cont {
    width: 76%;
    padding: 25px 0 35px 0;
}
.waitHome__block-h .waitHome__block-cont {
    width: 100%;
    padding-bottom: 0;
}
.waitHome__blockWr .col-12:first-child .waitHome__block-img img {
    margin-top: -30px;
}
.waitHome__block-h .waitHome__block-img img {
    min-height: 336px;
    width: auto;
}
.waitHome__block-h .waitHome__block-img {
    width: 424px;
}

.waitHome__blockWr .col-12:nth-child(6) .waitHome__block {
    gap: 0;
}
.waitHome__photo {
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.waitHome__photo-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.waitHome__photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.waitHome__photo-m {
    display: none;
}
@media(max-width: 1200px) {
    .waitHome__block-title br {
        display: none;
    }
}
@media(max-width: 991px) {
    .waitHome__block-img-m {
        display: block;
    }
    .waitHome__block-img-d {
        display: none;
    }
    .waitHome__block {
        flex-direction: column-reverse;
        align-items: center;
    }
    .waitHome__block-cont {
        width: 100%;
        padding-bottom: 0;
    }
    .waitHome__blockWr .col-12:first-child .waitHome__block-img img {
        margin-top: 0;
    }
    .waitHome__block-h .waitHome__block-img {
        width: 237px;
    }
    .waitHome__block-h .waitHome__block-img img {
        min-height: initial;
        width: auto;
    }
    .waitHome__photo {
        height: 489px;
    }
    
}
@media(max-width: 769px) {
    .waitHome__block-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .waitHome__blockWr {
        margin-top: 20px;
        gap: 10px 0;
    }
    .waitHome__photo-m {
        display: block;
    }
    .waitHome__photo-d {
        display: none;
    }
    .waitHome__photo-img {
        object-position: right;
    }
}

.modalBg {
    position: fixed;
    background-color: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}
.modalM {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
        height: 100%;
    padding: 100px;
        overflow: auto;
        display: none;
}
.modalPriceHome {
    width: 100%;
}
.modal__close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
}
.modal__close::before, .modal__close::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 25%;
    transform: rotate(45deg);
}
.modal__close::after {
    transform: rotate(-45deg);
}
@media(max-width: 769px) {
    .modalM {
        padding: 10px;
    }
    .modal__close::before, .modal__close::after {
        background-color: #000;
    }
    .modal__close {
        top: 25px;
        right: 21px;
        width: 25px;
        height: 24px;
    }
}

/*HOME END*/






