.btn {
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    font-family: poppins,sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 16px 0;
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

.btn:hover {
    scale: 1.06
}

.btn__border {
    padding: 12px 0!important;
    border: 2px solid var(--accent);
    color: var(--textMain)!important
}

.btn::after {
    content: none
}

.btn__fill_dark {
    background-color: var(--accent);
    color: var(--textMain)!important;
    font-size: 16px!important
}

.btn__fill {
    padding: 16px 0!important;
    background-color: var(--accent);
    color: var(--textBtn)!important
}

.btn__white {
    background-color: var(--m7C);
    color: var(--m2C)
}

.btn__light {
    background-color: var(--orangeLight);
    color: var(--orange)!important
}

.btn_text {
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    color: var(--purple)!important;
    width: max-content!important
}

.btn_text>span {
    display: inline-block;
    vertical-align: middle;
    transform: translateY(1px);
    margin-left: 8px
}

.btn__gray {
    background-color: #f3f4f5
}

@media (max-width: 768px) {
    .btn__light {
        color:var(--textBtn)!important
    }

}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0
}

header>nav>a {
    display: none!important
}

header>nav>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 39px
}

header>nav>ul a {
    width: max-content;
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

header>a {
    max-width: 186px;
    z-index: 80
}

@media (max-width: 1024px) {
    header {
        padding:16px 0
    }

    header>a:last-child {
        display: none
    }

    header>nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(21,21,22,.9);
        backdrop-filter: blur(8px);
        z-index: 50;
        transform: translateX(-120%) translateY(0);
        transition: all .4s cubic-bezier(.075, .82, .165, 1);
        display: flex;
        flex-direction: column
    }

    header>nav>ul {
        margin-top: 100px;
        margin-left: 40px;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        height: 80vh;
        overflow-y: auto;
        overflow-x: hidden
    }

    header>nav>ul a {
        color: var(--textMain)!important;
        font-size: 16px!important
    }

    header>nav>a {
        display: inline-block!important;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 52px;
        z-index: 90;
        max-width: 90%;
        color: var(--textBtn)!important
    }

    .navOpen {
        transform: translateX(-3.9%) translateY(0)
    }
}

.mobile__menu {
    display: none;
    z-index: 61
}

.burger {
    width: 60px;
    height: 60px;
    transition-duration: .5s;
    position: relative;
    scale: 0.4
}

.open>.icon-left {
    background: 0 0
}

.open>.icon-left::before {
    transform: rotateZ(45deg) scaleX(1.4) translate(4px,4px)
}

.open>.icon-left::after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px,-4px)
}

.open>.icon-right {
    background: 0 0
}

.open>.icon-right::before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px,4px)
}

.open>.icon-right::after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px,-4px)
}

.icon-left {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff
}

.icon-left::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-left::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

.icon-left:hover {
    cursor: pointer
}

.icon-right {
    transition-duration: .5s;
    position: absolute;
    height: 8px;
    width: 50%;
    top: 30px;
    background-color: #fff;
    left: 30px
}

.icon-right::before {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: -20px
}

.icon-right::after {
    transition-duration: .5s;
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: #fff;
    content: "";
    top: 20px
}

@media (max-width: 1024px) {
    .mobile__menu {
        display:block
    }
}

.fadeInDown,header {
    animation-delay: .5s!important
}

:root {
    --bg: #271e24;
    --innerBg: #3b1e27;
    --innerBlackBg: #352e31;
    --innerBlackLighterBg: #351921;
    --yellow: #ffc278;
    --purple: #8f60ff;
    --orange: #ff7d34;
    --green: #3cff73;
    --accent: rgb(255, 43, 106);
    --orangeLight: #fdf0ea;
    --lightOrange: #fdf0ea;
    --textMain: #ffffff;
    --textP: #aaaab4;
    --textPLighter: #a78998;
    --textBtn: #ffffff;
    --brad: 32px
}

*,::after,::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none
}

* {
    position: relative
}

html {
    position: relative;
    overflow-x: hidden!important;
    scroll-behavior: smooth
}

@media (max-width: 768px) {

    html{
        scroll-behavior: unset;
    }
}



@media (max-width: 968px) {
    body {
        overflow:hidden
    }
}

body,html {
    display: block;
    box-sizing: border-box;
    font-size: 18px;
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg);
    color: var(--textMain)
}

h2>* {
    display: inline-block;
    vertical-align: middle
}

h2{
        margin-bottom: 16px;
    }

body::-webkit-scrollbar {
    width: 12px
}

body::-webkit-scrollbar-track {
    background: 0 0
}

body::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: var(--brad)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--brad)
}

li,ul {
    padding: 0;
    list-style: none;
    marker: none
}

.liCircle li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center
}

.liCircle li:not(:last-child) {
    margin-bottom: 16px
}

.liCircle li>* {
    display: inline-block;
    vertical-align: middle
}

.liCircle li::before {
    display: inline-block;
    margin-right: 16px;
    font-size: 24px;
    content: "â€¢";
    color: var(--textP)
}

.liCircleColor li::before {
    color: var(--purple)
}

.bannerRad {
    border-radius: var(--brad);
    overflow: hidden;
    aspect-ratio: 2/1
}

a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: currentColor;
    bottom: -2px;
    left: 0;
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

a:hover::after {
    width: 100%
}

a:has(img,div)::after {
    content: none
}

h1,h2,h3,h4,h5 {
    font-weight: 400;
    font-family: Poppins,sans-serif;
    color: var(--m3C);
    line-height: 130%
}

h1 {
    font-size: 64px;
    margin-bottom: 40px
}

h2 {
    font-size: 40px;
    z-index: 20;
}

.subheader{
    line-height: 1.2;
    font-size: 36px;
}

.main h2{
    max-width: 450px;
}

h3 {
    font-size: 36px
}

a,p {
    font-family: poppins,sans-serif;
    font-weight: 500;
    color: var(--textP);
    font-size: 18px;
    position: relative
}

span{
    font-family: poppins,sans-serif;
}

p {
    font-size: 18px
}

a,p {
    line-height: 180%
}

p>* {
    display: inline-block
}

section {
    margin-bottom: 100px
}

@media (max-width: 768px){
    section{
        margin-bottom: 70px;
    }   
    .accord__container, .pricing__container{
        gap: 20px;
    }

    .main p.subheader{
        font-size: 22px;
    }
}

/* section h2,section h3 {
    margin-bottom: 32px
} */

section p {
    margin-bottom: 32px
}


.width60 {
    max-width: 60%
}

.width50 {
    max-width: 50%
}

.width40 {
    max-width: 40%
}

.wrapper,section:not(.noWrap) {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%
}

@media (max-width: 1340px) {
    .wrapper,section:not(.noWrap) {
        max-width:95%
    }
}

@media (max-width: 768px) {
    .wrapper,section:not(.noWrap) {
        max-width: 90%
    }

    .liCircle li:not(:last-child) {
        margin-bottom: 2.5vw
    }

    .liCircle li::before {
        margin-right: 2vw;
        font-size: 4vw
    }

    .stars {
        width: 4vw;
        height: 4vw
    }

    .width60 {
        max-width: 100%
    }

    .width40 {
        max-width: 100%
    }

    .width50 {
        max-width: 100%
    }

    .padding {
        padding: 0 14px
    }

    h2 {
        font-size: 28px
    }

    h1 {
        font-size: 40px;
        margin-bottom: 24px
    }

    h3{
        font-size: 24px;
    }

}



.swiper-wrapper {
    align-items: stretch!important;
    max-height: 640px
}

.swiper-slide {
    height: unset!important;
    border-radius: var(--brad);
    overflow: hidden
}

.pagination__container {
    z-index: 50;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px
}

.pagination__item {
    border-radius: 100px;
    flex: 1 1 35%;
    background-color: var(--innerBg);
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

.pagination_active {
    background-color: var(--accent)
}

.disabled img {
    opacity: .5
}

.controls {
    z-index: 50;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 110%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    pointer-events: none
}

.controls.second {
    top: 50%;
    left: 100%;
    transform: translateY(-50%)
}

.controls>div {
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    transition: all .4s cubic-bezier(.075, .82, .165, 1);
    user-select: none;
    pointer-events: all
}

.controls>div>* {
    height: 30%;
    transform: translateX(1px)
}

.controls>div img {
    object-fit: contain
}

.controls>div:first-child img {
    rotate: 180deg
}

@media (max-width: 1340px) {
    .main {
        align-items:start
    }

    .main>div:last-child {
        aspect-ratio: initial
    }
}

.main {
    background-color: var(--innerBg);
    border-radius: var(--brad)
}

main h1 {
    font-size: 32px;
    margin-bottom: 12px
}

.main>div {
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.main h1:first-child {
    font-size: 100px;
    font-weight: 700!important;
    color: var(--black);
    text-align: center;
    line-height: 120%!important;
    width: max-content;
    height: max-content;
    margin-top: 172px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0!important;
    display: inline-block
}

.main h1:first-child span:first-child {
    color: var(--textMain)!important
}

.main h1:first-child span {
    padding: 0 39px;
    color: var(--textMain)!important
}

.main h1:first-child::before {
    content: "";
    position: absolute;
    background-image: url(/assets/textBg.svg);
    background-repeat: no-repeat;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: 142% 111%;
    background-position: center
}

.main__bottom {
    margin-top: clamp(250px,calc(250px - (191 * ((1920px - 100vw)/ 620))),250px);
    padding-bottom: 68px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px
}

.main__title {
    max-width: 509px
}

.main__title h1 {
    color: var(--white);
    font-weight: 600!important
}

.main__title p {
    color: var(--gray)!important
}

.main__bottom>a {
    max-width: 376px
}

.main__bottom>a span {
    margin-left: 10px
}

.main__bottom>a>* {
    display: inline-block;
    vertical-align: middle
}

.main__girl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 46%;
    height: 100%;
    z-index: 50;
}

.main__girl>img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

.main__girl>img:last-child {
    opacity: 0;
    z-index: 2
}

.main__girl:hover>img:last-child {
    opacity: 1
}

@media (max-width: 1864px) {
    .main {
        margin-top:12px;
        border-radius: var(--bradHight);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        margin-left: -12px;
        width: 100vw;
        margin-top: 0
    }
}

@media (max-width: 1752px) {
    .main__bottom {
        padding-left:34px;
        padding-right: 34px
    }
}

@media (max-width: 1300px) {
    .main h1:first-child {
        font-size: 10vw;
        order: 1;
        margin-top: 41px;
        margin-bottom: 0
    }

    .main__title{
        order: 2;
    }

    .main h1:first-child span {
        padding: 0
    }

    .main h1:first-child::before {
        background-size: 102% 105%
    }

    .main h1:first-child{
        z-index: 5;
        max-width: 100%;
        line-height: 100% !important
    }

    .main__bottom {
        order: 3;
        margin-top: 100px;
        padding-bottom: 0
    }

    .main__girl {
        position: relative;
        order: 3;
        width: 80%;
        height: 60vw
    }

    .main__girl>img:first-child {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        transform: translateY(-14%)
    }

    .main__girl>img:last-child {
        width: 100%;
        height: auto;
        left: 0;
        bottom: 0;
        transform: translateY(2.95%)
    }
}

@media (max-width: 768px) {
    .main__girl {
        position:relative;
        order: 0;
        width: 130%;
        height: 100vw;
        margin-top: -8%;
        z-index: 2;
    }

    .main__bottom {
        flex-direction: column;
        align-items: start;
        gap: 32px;
        margin-top: 30px;
    }

    .main__girl>img:first-child {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        transform: translateY(0%);
        bottom: -10%;
    }

    .main h2, .main p{
        text-align: center;
    }

    .main h2{
        margin-bottom: 20px;
    }

    .subheader{
    font-size: 36px;
}

    .main__girl>img:last-child {
        width: 100%;
        height: auto;
        left: 0;
        bottom: 0;
        transform: translateY(calc(-5.1% + (-1 * ((100vw - 360px)/ (768 - 360)))));
        display: none;
    }

    h2{
        margin-bottom: 12px;
    }
}


.refferal {
    border-radius: var(--bradMed);
    background: url(../assets/img/reffProgramBG.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    flex-direction: row;
    padding: 70px 143px 70px 100px;
    gap: 122px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.readyToCreate {
    background: var(--innerBg);
    padding: 0px;
    border-radius: var(--brad);
}
.refferal > div {
    flex: 1 1 42.5%;
}

.refferal > div:first-child {
    /* width: 50%; */
    padding: 60px 0;
}
.readyToCreate > div:first-child {
    padding: 100px 0 100px 100px;
}
.refferal h2 {
    color: white !important;
}
.refferal p {
    color: #f8f8f8 !important;
}
.readyToCreate h2 {
    color: inherit !important;
}
.readyToCreate p {
    color: inherit !important;
}
.refferal > div > div {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
.refferal > div > div > a {
    flex: 1 1 47.5%;
}

.refferal_img {
    /* max-width: 489px; */
    /* aspect-ratio: 1.5/1; */
    border-radius: var(--bradMed);
    overflow: hidden;
}
.refferal_img img {
    /* object-fit: contain; */
}

@media (max-width: 1111px) {
    .refferal {
        gap: 34px;
        flex-direction: column;
        padding: 70px;
        background-size: unset;
    }
    .refferal_img {
        /* max-width: 489px; */
        aspect-ratio: 1.5/1;
    }
    .refferal_img img {
        /* object-fit: cover; */
    }

    .refferal > div:first-child {
        width: 100%;
        padding: 0;
    }
    .readyToCreate .refferal_img {
        display: none;
    }
}

@media (max-width: 768px) {
    .refferal {
        padding: 8vw;
    }
}

.about_card{
    background: var(--innerBg);
    padding: 16px;
    border-radius: var(--brad);
    text-align: left;
    margin-bottom: 1rem;
}

.additional-pages-content h2{
    text-align: left;
}

.about_card ul li{
    list-style: circle;
     margin-left: 1rem;
}

.about_card ul{
    margin-top: 10px;
    margin-bottom: 10px;
}




