

body {
    font-family: "Nunito", sans-serif;
	color: #fff;
	font-size: 14px;
	overflow-x: hidden;
}
:root{
    --white-clr: #fff;
    --purple-clr: #9958CC;
    --theme-gradient: linear-gradient(91deg, #8E2CDA 0%, #9958CC 100%);
    --theme-gradient1: linear-gradient(91deg, #9958CC 0%, #8E2CDA 100%);
}

html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-thumb {
    background: var(--purple-clr);
    border-radius: 25px;
}

.white-clr {
    color: #000000;
}

.purple-gradient {
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-clr2{
    color: #9958CC;
}
a:hover{
    color: #9958CC;
}
.black-clr {
    color: #ffffff;
}

.probtn1 {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: var(--theme-gradient);
    box-shadow: 0px 6px 14px -1px rgb(0 0 0 / 45%);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 12px;
    color: #ffffff;
    border: none;
    font-weight: 700;
    width: 100%;
    font-size: 22px;
    line-height: 140%;
    position: relative;
}

.probtn1:hover {
    background: var(--theme-gradient1);
    color: #ffffff;
    text-decoration: none;
}

/* img animation start */
img.vert-move {
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
/* img animation end */

/* .login-link:hover {
    color: #fff;
} */
.handsean {
    font-family: handsean;
}
/* Header Section CSS */

.header-section {
    background: linear-gradient(180deg, rgba(153, 88, 204, 0.00) 0%, rgba(153, 88, 204, 0.10) 100%);
    padding: 40px 0;
}

.orange-clr {
	color: #f6841f;
}

@media(min-width:768px) {
    .header-section {
       background: url(https://cdn.oppyotest.com/launches/aiinteractivebooks/thankyou/header-bg.webp) no-repeat top center;
       background-size: cover;
       padding: 40px 0px 100px;
    }

    .probtn1{
        font-size: 28px;
        padding: 28px 30px;
    }
}


/********features*********/

@font-face {
    font-family: 'handsean';
    src: url(../fonts/handsean.ttf);
}

.handsean {
    font-family: handsean;
}

.footer-section {
    background: #05071A;
    padding: 30px 0px;
}

.footer-ul {
    padding: 0px;
    margin: 0px;
}

.footer-ul li {
    display: inline;
}


@media(min-width:768px) {
    .footer-section {
        padding: 50px 0px;
    }
}

.lightred {
    color: #f6841f;
}


.footer-ul li a:hover {
    color: #fff;
}


/* ======== */
.container-box {
    padding: 20px;
    position: relative;
    background: #05061a;
    border-radius: 30px;
}

@media (min-width: 768px){
    .container-box {
        padding: 80px;
        background: url(https://cdn.oppyotest.com/launches/aiinteractivebooks/thankyou/contact-bg.webp) no-repeat center center;
        background-size: 100% 100%;
    }

}
.blue-sec {
    background: var(--theme-gradient);
    padding: 30px 0px;
}
.steps-section {
    background: linear-gradient(180deg, #FFF 0%, #F5EFFA 100%);
    padding: 30px 0px;
}
.steps-card {
    display: inline-block;
    border-radius: 20px;
    border: 5px solid var(--theme-gradient);
    background-color: #202020;
}
.steps-card-inner {
    padding: 20px 15px;
}
.btn6:hover {
    background: var(--theme-gradient1);
    color: #ffffff;
}

.btn6 {
    background: var(--theme-gradient);
    color: #fff;
    text-decoration: none;
    -webkit-box-shadow: 0px 0px 10px -1px rgb(0 0 0 / 45%);
    display: inline-block;
    border-radius: 10px;
    padding: 20px 10px;
    transition: all .5s ease;
}

.btn-border{
    border: 10px solid rgba(153, 88, 204, 0.3);
    display: inline-block;
    border-radius: 20px;
    transition: all .5s ease;
}
.btn-border:hover{
    transform: scale(1.1);
}

@media (min-width: 768px){
    .steps-section {
        padding: 100px 0px;
    }
    .steps-card-inner {
        padding: 30px 45px;
    }
    .btn6 {
        padding: 13px 57px 9px;
    }
}
.contact-section{
    background: #fff;
    padding: 30px 0;
}
@media (min-width: 768px){
    .contact-section{
        padding: 100px 0;
    }
}

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--theme-gradient);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background: var(--theme-gradient1);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}