html,body{
    margin:0;
    padding:0;
    height:100%;
    width:100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.cover{
    background-color: #F6E6FF;
}
.landing-section{
    background: linear-gradient(to bottom , #421074 , #4E1993);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
    column-gap:1rem;
    height:100vh;
    width:100% ;
    padding:1rem;
    border-radius: 0  0 100px 100px;
}
.landing-wrapper{
    position:relative;
    /*top:-50px;*/
}

.left > h2 {
    color:#fff;
    font-size:44px;
}
.left > p{
    color:#fff; 
    font-size: 24px;
    font-weight: 500;
}
.buttons{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
.buttons > a{
    text-decoration:none;
    display: flex;
    column-gap: 4px;
    align-items: center;
    justify-content: flex-start;
    color:#fff;
    padding:0.75rem;
    font-size: 18px;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor:pointer;
}
.buttons > a > i{
    font-size: 22px;
}
.linkedin{
    background:#0a66c2;
}
.whatsapp{
    background:#25d366;
}
.right{
    display: flex;
    flex-direction: column;
    align-items: center;
    background:#f7f7f75e;
    border-radius:12px;
}
.certificate{
    z-index: 1;
}
.high{
    position:relative;
    top:-40px;
    display:flex;
    align-items:center;
    column-gap:1rem;
}
.download{
    text-decoration: none;
    color:#fff;
    background:#FF701F;
    padding:0.85rem;
    font-family: 'Sora' , sans-serif;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor:pointer;
    z-index:1;
}
.top-circle{
    position: absolute;
    top:0;
    left:82%;
    width:200px;
    height:200px;
    border-radius: 50%;
    background-color: #ffffff1f;
    z-index:0;
}
.down-circle{
    position: absolute;
    bottom:-50px;
    right:80%;
    width:400px;
    height: 400px;
    border-radius: 50% 50% 50% 50%;
    background-color: #ffffff1f;
    z-index:0;
}
.topics{
    background: #F6E6FF;
    padding:4rem;
}
.topic-list{
    margin:1rem;
    padding:2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    column-gap:1rem;
}
.topic-element{
    padding:1rem;
    background:#fff;
    border-radius:10px;
    color:#421074;
    font-weight: 600;
    font-family: 'Inter',sans-serif;
    display: flex;
    align-items: center;
    gap:4px;
    width:280px;
    height:fit-content;
}
.topic-element > p{
    font-size: 18px;
    margin:0;
}
.topic-element > i{
    font-size: 26px;
}
.tick{
    position:relative;
    top:20px;
    left:264px;
    font-size:24px;
    color:#38911D;
}
.roadmap{
    margin:1rem;
    padding:1rem;
}
.roadmap_img{
    display: flex;
    align-items: center;
    justify-content : center;
    width:100% ;
    height:1200px;
    object-fit: contain;
}
.roadmap_img > img{
    width:100%;
    height:99%;
    object-fit: contain;
}

@media screen and (max-width:768px){

    .roadmap-svg{
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        /* display: none; */
    }
    .landing-section{
        height: 100%;
        width: 100%;
        border-radius:0 0 50px 50px;
    }
    .top-circle , .down-circle{
        display: none;
    }
    .left{
        text-align:center;
        margin-top: 1rem;
    }
    .left > h2{
        font-size: 24px;
    }
    .left > p{
        font-size: 18px;
    }
    .topics{
    padding:2rem 3rem;
    }
    .topic-list{
     margin:0;
     padding:0;
    }
    .topic{
        width:100%;
    }
}
