/* Root start */

:root {
    --MR: 'MR';
    --MSB: 'MSB';
    --MBI: 'MBI';
    --MB: 'MB';
    --TBI: 'TBI';
    --TB: 'TB';
    --background: white;
    --purple: #7177F1;
    --text: #323232;
    --dots: #828282;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--MR);
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}

h1,h2,p,ul {
    margin: 0;
}

html,body {
    scroll-behavior: smooth;
}

.logo::before {
    content: url(../images/svg/logo-light.svg);
}
.special-btn {
    background: var(--purple);
    color: white !important;
    padding: 10px 43px;
    box-shadow: 0px 0px 5px 1px rgba(113, 119, 241, 0.5);
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 10;
}
.title {
    font-size: 40px;
    line-height: 49px;
    color: var(--purple);
    font-family: var(--MSB);
    text-transform: capitalize;
    margin-top: 75px;
    margin-bottom: 30px;
    text-align: center;
}

/* Root end */

/* Header start */

.header__nav-list {
    gap: 30px;
}

.header__nav-link {
    font-size: 24px;
    line-height: 16px;
    text-transform: capitalize;
    color: var(--purple);
    display: inline-block;
}
.header__nav-link:hover {
    color: var(--purple);
}

.header__nav-btn {
    color: var(--text);
    font-size: 40px;
}

.header__nav{
    position: relative;
    padding: 15px 0;
}

.header__nav::before,
.main__interest::before{
    content: '';
    display: block;
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    border: 0.3px solid #790FF1;
    position: absolute;
    top: 40px;
    left: 10%;
    z-index: -5;
    animation: animate 2.5s alternate infinite;
}

.header__nav::after, 
.header__slider::before,
.header__slider::after,
.main__interest::after{
    content: '';
    display: block;
    width: 5vw;
    height: 5vw;
    border: 0.3vw solid #9297EF;
    position: absolute;
    top: 100px;
    right: 9%;
    z-index: -5;
    animation: animate 2.5s ease infinite;
}

.header__slider-text{
    font-size: 24px;
    line-height: 22px;
    text-transform: capitalize;
    color: var(--text);
    font-family: var(--MSB);
}

.header__slider-title{
    font-size: 40px;
    line-height: 50px;
    text-transform: capitalize;
    color: #7177F1;
    margin-top: 10px;
    font-family: var(--MB);
}

.header__span{
    font-size: 40px;
    line-height: 50px;
    text-transform: capitalize;
    color: #790FF1;
    margin: 10px 0 25px 0;
    font-family: var(--MB);
    margin-bottom: 25px;
    margin-top: 0;
    padding-top: 0;
    display: block;
}

.header__slider-btn{
    max-width: 300px;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    margin: 0 auto;
}

.header__slider{
    margin-top: 30px;
    position: relative;
}

.header__slider::before{
    top: 7%;
    left: 3%;
}
.header__slider::after{
    top: 70%;
    right: 15%;
}

.header__wrapper{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__button{
    font-family: var(--MR);
    position: relative;
    display: block;
}

.header__button::before,
.header__button::after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #790FF1;
    top: -10px;
    left: 50%;
    z-index: 1;
    margin: 0 0 0 -40px;
    transition: all 0.8s ease 0s;
}

.header__button::before{
    animation: rotate 20s infinite linear;
}
.header__button::after{
    animation: rotate 15s infinite linear;
}

.header__button-text{
    position: relative;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    border-radius: 50px;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 5px;
    transition: all 1s ease 0s;
    top: 0;
    overflow: hidden;
}

.header__button-text::before,
.header__button-text::after{
    content: '';
    display: block;
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #9297EF;
    transition: all 0.8s ease 0s;
}

.header__button-text::before{
    left: 0;
    z-index: 2;
}

.header__button-text::after{
    right: 0;
}

.header__button-text span{
    position: relative;
    z-index: 2;
}

.header__button:hover::before,
.header__button:hover::after{
    left: 100%;
    opacity: 0;
}

.header__button:hover .header__button-text::before{
    width: 100%;
}

.header__button:hover .header__button-text::before,
.header__button:hover .header__button-text::after{
    background: #4a50c5;
}

.header__button:hover .header__button-text{
    top: -10px;
    color: white;
    transition: all 0.5s ease 0.2s;
    box-shadow: 0 5px 0px 0 #151437;
}

.header__button:active .header__button-text{
    top: -7px;
    box-shadow: 0 2px 0px 0 #151437;
    transition: all 0.1s ease 0s;
}

@keyframes rotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/* Header end */
/* main start */

.main__slider-text{
    font-size: 18px;
    line-height: 150%;
    color: var(--text);
    margin: 30px 0;
    text-align: center;
}

.main__slider-list{
    gap: 50px;

}

.main__slider-title{
    margin: 0;
}

.main__slider-link{
    font-size: 24px;
    line-height: 16px;
    color: var(--purple);
    margin-bottom: 10px;
}

.main__slider-span{
    color: var(--text);
    font-family: var(--MSB);
}

.main{
    margin-top: 70px;
}

.main__interest{
    margin-top: 55px;
    position: relative;
    margin-bottom: 55px;
}

.main__interest-icon{
    font-size: 70px;
    padding: 15px;
    position: relative;
    z-index: 10;
}

.main__interest-item:nth-of-type(1) .main__interest-icon{
    color: #E11D2E;
    background: #f16874a6;
    border-radius: 20px;
}

.main__interest-item:nth-of-type(2) .main__interest-icon{
    color:#FF9429;
    background: #ffa1448f;
    border-radius: 20px;
}

.main__interest-item:nth-of-type(3) .main__interest-icon{
    color: #036bac;
    background: #20a3f57c;
    border-radius: 20px;
}

.main__interest-title{
    font-size: 30px;
    line-height: 36px;
    color: #FFFFFF;
    margin: 15px 0;
    font-family: var(--MB);
    position: relative;
    z-index: 10;
}

.main__interest-btn{
    font-family: var(--MR);
    text-transform: uppercase;
}

.main__interest-span{
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    opacity: 0.3;
    font-family: var(--MSB);
    position: relative;
    z-index: 10;
}

.main__interest-text{
    font-size: 20px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0;
    position: relative;
    z-index: 10;
}

.main__interest-items{
    column-gap: 15px;
    justify-content: center;
}

.main__interest-item{
    position: relative;
    max-width: 400px;
    width: 100%;
    background: #2f79b6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    transition: all 500ms;
}

.main__interest-item:hover{
    background: rgba(15, 194, 218, 0.5);
    transform: scale(1.1);
    margin: 10px 20px 0 20px;
}

.main__interest-item:hover::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(#7177F1, #4a50c5, #790FF1);
    animation: animatee 5s ease-in-out infinite;
}

.main__interest-item:hover::after{
    content: '';
    display: block;
    position: absolute;
    background: #2f79b6;
    border-radius: 16px;
    inset: 7px;
}

.main__interest::after{
    top: 0;
    right: 2%;
}

.main__interest::before{
    top: 5%;
    left: 2%;
}



/* .box h2{
    color: #FFFFFF;
    font-size: 35px;
    position: relative;
    z-index: 10;
}

.box{
    position: relative;
    width: 100px;
    height: 120px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.box::after{
    content: '';
    display: block;
    position: absolute;
    background: #151437;
    border-radius: 16px;
    inset: 4px;
}

.box::before{
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 140px;
    background: linear-gradient(#0096F2, #E11D2E, #790FF1);
    animation: animatee 3s linear infinite;
} */










/* media start */

@keyframes animate{

    0%{
        transform: rotate(0deg) scale(1);
    }
    50%{
        transform: rotate(180deg) scale(1.5);
    }
    100%{
        transform: rotate(360deg) scale(1);
    }
}

@keyframes animatee {
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(360deg);
    }
}










@media(prefers-color-scheme: dark) {
    :root {
        --background: #151437;
        --text: white;
        --dots: #EBEBEB;
    }
    .logo::before {
        content: url(../images/svg/logo-dark.svg);
    }
}

@media(max-width:576px){
    .main__interest-item:hover{
        transform: none;
        margin: 0;
        row-gap: 15px;
    }
}