@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,700&family=Changa+One:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tilt+Warp&display=swap');



/* header and body */
    html{
        scroll-behavior: smooth;
    }
*{
    font-family: "Montserrat";
    text-transform: capitalize;
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background:  linear-gradient(rgb(197, 194, 194), rgb(0, 0, 255));
    height: 100%;
    
}

header{
    background:  linear-gradient(5deg, #0a33f9, #03b3ff);
    width: 100%;
    position: fixed;
    top: .1rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: .4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 1rem 2rem;
    z-index: 1000;

    
}

.logo-img{
    width: 200px;
    height: 60px;

    
}



header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    
    

}

header .navbar ul li{
    margin: 1rem 2rem;
    
}

header .navbar ul li a{
    font-size: 1.4rem;
    color: white;
    transition: .2s ease-in-out;

}


header .navbar ul li a:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(6, 65, 117);
    border: 2px solid black;
    border-radius: 20px;
    padding: 10px;
    
}

header .navbar ul button{
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    transition: .2s ease-in-out;
    background-color: #4665ff;
    padding: 8px;
    border-radius: 8px;
    border-style: inset;
    text-decoration: none;

}

header .navbar ul li button:hover{
    background-color: #000000;
    
}

 .ri-menu-line{
    font-size: 2.5rem;
    color: rgb(0, 0, 0);
    cursor: pointer;
    display: none;
    
}






/* HOME SECTION */

.home{
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgb(0, 0, 255)), url(images/HERO.jpgd.jpg) no-repeat;
    background-size: cover;
    background-position: center -20%;
    background-attachment: fixed;
    padding-top: 7rem;
    z-index: 0;
    overflow: hidden;
    position: relative;
    
    

}

.home .content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding-top: 24rem;
    padding-bottom: 8rem;
    text-align: center;
}

.home .content h1{
    font-size: 4.5rem;
    color: rgb(255, 255, 118);
    padding: 0 1rem;
    text-shadow: 0 .1rem .5rem black;
    text-transform: uppercase;
}

.home .content p{
    font-size: 1.5rem;
    color: white;
}

.home .content button{
    height: 4rem;
    width: 20rem;
    border-radius: 5rem;
    background: rgb(208, 208, 47);
    margin-top: 1.5rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: .2s;
    border: none;
    box-shadow: 0 .3rem 1rem black;
}

.home .content button:hover{
    letter-spacing: 5px;
    background: blue;
}


.home .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home .box-container .box{
    height: 20rem;
    width: 25rem;
    background: white;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 .3rem .5rem black;
    margin: 2rem;
    cursor: pointer;
}

.home .box-container .box i{
    height: 6rem;
    width: 6rem;
    line-height: 8rem;
    border-radius: 50%;
    color: white;
    background: black;
    font-size: 4rem;
    margin: 2rem 0;
    transition: .2s;
}
.home .box-container .box h3{
    font-size: 2.5rem;
    color: blue;
    transition: .2s;
    margin-bottom: -20px;
}


.home .box-container .box p{
    font-size: 1.1rem;
    padding: 2rem 2rem;
    color: rgb(72, 72, 0);
}

.home .box-container .box:hover i{
    background: rgb(35, 105, 216);
    color: white;
}

.home .box-container .box:hover h3{
    color: rgb(208, 208, 47);
    font-size: 3rem;
}

.home::before{
    content: "";
    position: absolute;
    bottom: -25%; left: 50%;
    transform: translateX(-50%);
    border-top: 70vh solid white;
    width: 120%;
    border-radius: 50%;
    z-index: -1;
}

.heading{
        font-size: 4rem;
        color: rgb(35, 105, 216);
        text-align: center;
        padding: 0 1rem;
        padding-top: 6rem;
        letter-spacing: .1rem;
        font-weight: 30rem;
}

.about{
     background: linear-gradient(rgb(255, 255, 255), rgb(197, 194, 194), rgb(0, 0, 255));

}

.about .row{
    display: flex;
    justify-content: center;
    align-items: center;

}

.about .row .image img{
    height: 70vh;
    width: 50vw;
    border:3px solid rgb(98, 109, 0);
    border-radius: 10px 6px;
    margin: 50px 20px;
    
}

.about .row .content{
    padding-left: 5rem;
    text-overflow: 20px;

}

.about .row .content h3{
    font-size: 3rem;
    color: white;
}

.about .row .content p{
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    padding: 1rem 0;

}

.about .row .content button{
    height: 3.5rem;
    width: 17rem;
    background: rgb(208, 208, 47);
    color: white;
    font-size: 1.5rem;
    border: 5px;
    border-radius: 5rem 6px ;
    box-shadow: 5px 0px 8px rgb(67, 63, 8);
    cursor: pointer;
    transition: .5s;

}

.about .row .content button:hover{
    letter-spacing: .4rem;
    opacity: .8;
}



.title{
    padding: 0 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 15rem;
    color:  rgb(255, 255, 32);
    text-shadow: 1px 2px 2.5px rgb(24, 0, 0);
}



/* HOME SECTION */
.teacher{
     background: white;

}

.teacher .card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-bottom: 2px solid blue;
    
}

.teacher .card-container .card{
    padding: 2rem;
    margin: 2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    background: white;
    text-align: center;
    width: 20rem;
    box-shadow: 0 .3rem .5rem;
}

.teacher .card-container .card img{
    height: 10.8rem;
    width: 100%;
    object-fit:cover;
    filter: grayscale();
    transition: .2s;
}

.teacher .card-container .card img:hover{
    filter: grayscale(0);
    width: 15rem;
    border-radius: 1rem;

}

.teacher .card-container .card h3{
    color: blue;  
    font-size: 2rem;
    padding: .2rem 0;
}

.teacher .card-container .card p{
    font-size: 1.1rem;
    color: rgb(0, 0, 0);
}

.teacher .card-container .card .card-features li{
    font-size: 1rem;
    padding: .4rem .5rem;
    list-style: none;
    color: blue;
    border: 1px solid black;
    border-radius: 400px 10px;
    margin-top: 5px;
   
}

.teacher .card-container .card .card-features li:hover{
color: yellow;

}

.teacher .card-container .card .btn-course{
    font-size: 1.4rem;
    margin-top: 1rem;
    background: yellow;
    padding: .9rem;
    border: none;
    border-radius: .9rem;
    box-shadow: 2px 3px 5px;
    transition: .3s;
}

.teacher .card-container .card .btn-course:hover{
    letter-spacing: .2rem;
}



.card-footer {
     display: block;
    width: 100%; 
    text-align: center; 
    margin-top: 1rem; 
}

.card-footer .carouselbtn{ 
    margin: 0.5rem auto; 
    font-size: 2rem;
    background: yellow;
    border: 2px solid yellow;
    border-radius: 40px 9px;
    border-width: 10px;
    padding: 10px;
    transition: .2s;
}

.card-footer .carouselbtn:hover{
    letter-spacing: .4rem;
} 








.workspace{
    background: white;

}

.workspace .box-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(255, 255, 255), rgb(0, 0, 255));
    margin-bottom: 20px;
}

.workspace .box-container .workpic img{
    width: 50rem;
    height: 70vh;
    border:3px solid rgb(98, 109, 0);
    border-radius: 10px 6px;
    margin: 50px 20px;

}

.workspace .box-container .box{
    padding-left: 5rem;
    text-overflow: 20px;

}

.workspace .box-container .box h3{
    font-size: 3rem;
    color: white;
}

.workspace .box-container .box p{
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    padding: 0rem 1rem;
}

.workspace .box-container .box .btn-work{
    height: 3.5rem;
    width: 13rem;
    background: rgb(216, 216, 59);
    color: white;
    font-size: 1.5rem;
    border: 5px;
    border-radius: 5rem;
    box-shadow: 5px 0px 8px rgb(102, 96, 9);
    cursor: pointer;
    transition: .3s;

}

.workspace .box-container .box .btn-work:HOVER{
    letter-spacing: .4rem;
    opacity: .8;
}



 .contact{
     background: linear-gradient(rgb(255, 255, 255), rgb(62, 62, 252), rgb(208, 208, 208))
}

.contact .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.contact .row .image img{
    width: 50vw;
    height: 70vh;
    margin: 20px;
    border: 2px solid white;
    border-radius: 30rem 200px 300px;
}

.contact .row .form-container{
    width: 50%;
    padding-right: 6rem;
}


.contact .row .form-container input,textarea{
    height: 4rem;
    width: 100%;
    background: white;
    border: none;
    border-radius: 5rem;
    padding: 0 1rem;
    margin: 1rem 0;
    color: rgb(130, 135, 25);
    font-size: 1.7rem;
    transition: .2s;
}

.contact .row .form-container textarea{
    height: 10rem;
    border-radius: 1rem;
    padding: 1rem;
    resize: none;

}

.contact .row .form-container input:focus,textarea:focus{
    border: .2rem solid yellow;
}

.contact .row .form-container input[type="submit"]{
    width: 17rem;
    background: rgb(0, 0, 0);
    color: white;
    cursor: pointer;
    font-size: 2rem;
    transition: .2s;
}

.contact .row .form-container input[type="submit"]:hover{
    background: none;
    color: rgb(0, 0, 0);
    border: .2rem solid white;
}




.dark{
    background: black;
    color: white;
}
.light{
    background: white;
    color: black;
}

.dark header {
    background: black;
}

.dark .box,
.dark .card,
.dark .about,
.dark .workspace,
.dark .contact, 
.dark .faqsec,
.dark .teacher,
.dark .workspace .box-container,
.dark .home .box-container .box
.dark .faqsec
{
    background: black;
    color: white;
}

.dark .box p,
.dark .card p,
.dark .about p,
.dark .contact,
.dark .workspace p,
.dark .teacher,
.dark .workspace .box-container,
.dark .home .box-container .box,
.dark .home .box-container .box p,
.dark .navbar .menu-line{
    color: white;
}


.faq-container{

    display: grid;
    grid-template-columns: 2fr;
    justify-content: center;
    align-items: center;
    padding:10px;
    background: blue;
}

.faqsec{

background: white;
}


.faq .question{
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: .1rem solid rgb(255, 255, 255);
    padding: 2rem;
    font-size: 2rem;
    width: 100%;
    cursor: pointer;
    
}

.faq .answer{
    display: none;
    color: white;
    text-align: center;
    align-items: center;
    border: .1rem solid rgb(255, 255, 255);
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 3rem;

}

.show{

    margin-left: 480px;
    
    
    
}
.showw{
    margin-left: 490px;
}

.showe{
    margin-left: 410px;
}

.showes{
    margin-left: 460px;
}
.showess{
    margin-left: 390px;
}


.show-answer{
    display: block !important;
}




/*form for registration*/

#page1{
   min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgb(0, 0, 255)), url(images/logo.png) no-repeat;
    background-size: cover;
    background-position: center -20%;
    background-attachment: fixed;
    padding-top: 7rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;

}

.form{
    /* background: rgb(255, 255, 0), rgb(0, 0, 255); */
    justify-content: center;
    align-items: center;
    align-content: center;
    display: grid;
    border: 3px solid white;
    border-radius: 2.5rem;
    height: 70vh;
    max-width: 30vw;
    margin: auto;
}


.form h2{
    font-size: 2rem;
    padding: 10px;
    padding-bottom: 40px;
    text-align: center;
    border-radius: 0rem;
    border-width: .06vw;
    padding: 10px;
    background: rgb(0, 0, 0);
    color: yellow;
    margin-bottom: 10px;
    
    
}

.form label{
    font-size: 1.7rem;
    font-weight: 500;
    display: flex;
    padding: 10px 0;

}

.form input, select{
    height: 3rem;
    width: 26rem;
    overflow: hidden;
    border: none;
    border-radius: 20px 19px 3px;
    box-shadow: 3px 3px 5px;
    padding: 10px;
    transition: .4s;
    
}

.form input:hover, select:hover{
border: 3px solid yellow;
}


.form select{
    margin-bottom: 20px;
}

.form .content .formbtn{
    font-size: 1.4rem;
    padding: 10px;
    width: 13rem;
    border: 2px solid black;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgb(0, 0, 0);
    color: white;
    cursor: pointer;
    transition: .3s;

}

.form .content .formbtn:hover{
    background: yellow;
    border: 2px solid black;
    border-radius: 40px;
    color: black;

}


.form .content .con{
    justify-content: center;
    align-items: center;
    text-align: center;
     margin: 10px;
    margin-bottom: 10px;
}




/*Testimonials*/


.page2{
    background: linear-gradient(rgb(255, 255, 255), rgb(0, 0, 255));
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.carousel{
    margin-top: 200px;
    overflow-x: auto;

}

.carousel::-webkit-scrollbar{
    display: none;

}

.group{
display: flex;
animation: scroll 15s infinite linear;

}


.test img{
    height: 50vh;
    align-items: center;
    padding: 1rem;
    border: 2px solid white;
     border-radius: 1rem;
    justify-content: center;
    align-items: center;
   

}
.page2 header{
    background: white;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.testbtnd{
    justify-content: center;
    align-items: center;
   

}

 .testimonialbtn{
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.4rem;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    display: block;
     background-color: yellow;
     border: 2px solid yellow;
     border-radius: 20px;
     padding: 10px;
     cursor: pointer;
     transition: .2s;

}

 .testimonialbtn:hover{
    background: blue;
    border: 2px solid yellow;
    border-radius: 50px;
 }

@keyframes scroll{
from {translate: 0;}
to {translate: -70%;}
}













@media (max-width: 768px){

    body{
        width: 100vw;
    }
    html{
        font-size: 60%;
        width: 100vw;
        

    }
   
   .ri-menu-line{
        display: block;
       
    }
    header .navbar{
        position: fixed;
        top: 5.7rem;
        left: 0;
        width: 100%;
        background: #0064ce;
        border-radius: 1rem;
        opacity: 0;
    }
    .header .navbar i{
        height: 80px;
        font-size: 2rem;
    }

    .dark .navbar,
    .dark .faq-container,
    .dark .home,
    .dark .ri-menu-line{
        background: black;
        color: white;
    }
   
    header .navbar ul{
        flex-flow: column;
        padding: 2rem 0;
    }

     header .navbar ul li{
        margin: 1rem 0;
        width: 100%;
        text-align: center;

     }

     header .navbar ul li a{
        font-size: 3rem;
        display: block;
     }
     header .active{
        top: 5.7rem;
        opacity: 1;
    }

    .home{
        width: 100vw;
        background: linear-gradient(140deg, rgb(255, 255, 255), rgb(0, 0, 255), rgb(52, 92, 239), rgb(255, 250, 250));
    }
    .home .content button{
       height: 60px;
       font-size: 2.1rem;
    }
     .home .content button:hover{
        letter-spacing: .1rem;
     }

    .home .box-container .box{
        width: 65vw;
    }

    .home{
        width: 100%;

    }

    .about{
        width: 100vw;
    }

    .home .content p{
        padding: 1.5rem 2rem;
    }
    .home .content h1{
        color: yellow;
    }

    .home::before{
        display: none;
        
    }
    .about .row{
        flex-direction: column-reverse;

    }

    .about .row .image img{
        height: 40vh;
        width: 90vw;
    }

    .about .row .content{
        padding: 0 2.5rem;

        
    }
    .about .content button{
        margin-bottom: 20px;
    }



    .twacher{
        width: 100vw;
    }

    .teacher .card-container .card {
        width: 70vw;
        height: 400px;
       
    }

    .teacher .card-container .card img{
    height: 18.2rem;
    width: 100%;
    object-fit:cover;
    filter: grayscale();
    transition: .2s;
}

.teacher .card-container .card img:hover{
    filter: grayscale(0);
    width: 23rem;
    border-radius: 1rem;

}

.teacher .card-container .card h3{
    color: blue;  
    font-size: 2rem;
    padding: .2rem 0;
}

.teacher .card-container .card p{
    font-size: 1.1rem;
    color: rgb(0, 0, 0);
}

.teacher .card-container .card .card-features li{
    font-size: 1rem;
    padding: .4rem .5rem;
    list-style: none;
    color: blue;
    border: 1px solid black;
    border-radius: 400px 10px;
    margin-top: 5px;
   
}

.teacher .card-container .card .card-features li:hover{
color: yellow;

}

.teacher .card-container .card .btn-course{
    font-size: 1.4rem;
    margin-top: 1rem;
    background: yellow;
    padding: .9rem;
    border: none;
    border-radius: .9rem;
    box-shadow: 2px 3px 5px;
    transition: .3s;
}

.teacher .card-container .card .btn-course:hover{
    letter-spacing: .2rem;
}











    .workspace{
        width: 100vw;
    }
   
    .workspace .box-container{
    
        flex-flow: column;
    }

    .workspace .box-container .workpic img{
    width: 90vw;
    height: 40vh;
    border:3px solid rgb(98, 109, 0);
    border-radius: 10px 6px;
    


}

.workspace .box-container .box{
    padding-left: 5rem;
    text-overflow: 20px;
   

}

.workspace .box-container .box h3{
    font-size: 3rem;
    color: white;
    bottom: 300px;
    margin-top: -35px;
    
   
    
   
    
}

.workspace .box-container .box p{
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    margin: 10px;
    
    
}

.workspace .box-container .box .btn-work{
    height: 3.5rem;
    width: 13rem;
    background: rgb(216, 216, 59);
    color: white;
    font-size: 1.5rem;
    border: 5px;
    border-radius: 5rem;
    box-shadow: 5px 0px 8px rgb(102, 96, 9);
    cursor: pointer;
    transition: .3s;
    margin-bottom: 10px;

}

.workspace .box-container .box .btn-work:HOVER{
    letter-spacing: .2rem;
    opacity: .8;
}













    .contact{
        width: 100vw;
    }

    .contact .row{
        flex-direction: column;
        height: 50vh;
        width: 90vw;
    }

    .contact .row .image img{
        height: 30vh;
        width: 90vw;
        border-radius: 2rem;
        margin-top: 150px;
        margin-left: 40px;
        top: 20px;
        

    }

    .contact {
       height: 80vh;
    }
  

.contact .row .form-container{
    width: 90vw;
    padding-right: 6rem;
   
    
   
    
}


.contact .row .form-container input,textarea{
    height: 2.4rem;
    width: 90%;
    background: white;
    border: none;
    border-radius: 3rem;
    padding: 0 1rem;
    margin: .3rem 55px;
    
    color: rgb(130, 135, 25);
    font-size: 1.6rem;
    transition: .2s;
}

.contact .row .form-container textarea{
    height: 5rem;
    border-radius: 1rem;
    padding: 1rem;
    resize: none;

}

.contact .row .form-container input:focus,textarea:focus{
    border: .2rem solid yellow;
}

.contact .row .form-container input[type="submit"]{
    width: 12rem;
    height: 40px;
    margin-left: 130px;
    background: rgb(0, 0, 0);
    color: white;
    cursor: pointer;
    font-size: 2rem;
    transition: .2s;
}

.contact .row .form-container input[type="submit"]:hover{
    background: none;
    color: rgb(0, 0, 0);
    border: .2rem solid white;
}






    .faqsec{
        width: 100vw;
    }

.faq-container{

    display: grid;
    grid-template-columns: 2fr;
    justify-content: center;
    align-items: center;
    padding:10px;
    background:linear-gradient(rgb(200, 200, 200),  rgb(0, 0, 255));
    width: 100vw;
    margin-top: 20px;
}

.faq{
width: 70vw;
margin-left: 43px;
}


.faq .question{
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: .1rem solid rgb(255, 255, 255);
    padding: .4rem;
    font-size: rem;
    width: 100%;
    cursor: pointer;
    
}

.faq .answer{
    display: none;
    color: white;
    text-align: center;
    align-items: center;
    border: .1rem solid rgb(255, 255, 255);
    border-radius: 1rem;
    font-size: 2rem;
    margin-bottom: 3rem;

}

.show{

    margin-left: 260px;
    
    
    
}
.showw{
    margin-left: 200px;
}

.showe{
    margin-left: 200px;
}

.showes{
    margin-left: 200px;
}
.showess{
    margin-left: 200px;
}


.show-answer{
    display: block !important;
}








#page1{
   min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgb(0, 0, 255)), no-repeat;
    background-size: cover;

    padding-top: 7rem;
    overflow: hidden;
    position: relative;
    min-height: 100vh;

}

.form{
    justify-content: center;
    align-items: center;
    align-content: center;
    display: grid;
    border: 3px solid white;
    border-radius: 2.5rem;
    height: 70vh;
    max-width: 90vw;
    margin: 20px;
}


.form h2{
    font-size: 2.5rem;
    padding: 20px;
    padding-bottom: 90px;
    text-align: center;
    border-radius: 0rem;
    border-width: .06vw;
    background: rgb(0, 0, 0);
    padding: 10px;
    color: yellow;
    margin-bottom: 90px;
    
    
}

.form label{
    font-size: 2.3rem;
    font-weight: 600;
    display: flex;
    padding: 10px 0;

}

.form input, select{
    height: 4rem;
    width: 28rem;
    overflow: hidden;
    border: none;
    border-radius: 20px 19px 3px;
    box-shadow: 3px 3px 5px;
    padding: 10px;
    transition: .4s;
    
}

.form input:hover, select:hover{
border: 3px solid yellow;
}

.form .content{

margin-top: -60px;
}

.form select{
    margin-bottom: 10px;
}

.form .content .course option{
    position: relative;

    
}

.form .content .formbtn{
    font-size: 1.4rem;
    padding: 10px;
    width: 13rem;
    border: 2px solid black;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgb(0, 0, 0);
    color: white;
    cursor: pointer;
    transition: .3s;

}

.form .content .formbtn:hover{
    background: yellow;
    border: 2px solid black;
    border-radius: 40px;
    color: black;

}


.form .content .con{
    justify-content: center;
    align-items: center;
    text-align: center;
     margin: 10px;
    margin-bottom: 10px;
}






.page2{
    background: linear-gradient(rgb(255, 255, 255), rgb(0, 0, 255));
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.carousel{
    margin-top: 200px;
    overflow-x: auto;

}

.carousel::-webkit-scrollbar{
    display: none;

}

.group{
display: flex;
animation: scroll 5s infinite linear;

}


.test img{
    height: 50vh;
    width: 100vw;
    align-items: center;
    padding: 1rem;
    border: 2px solid white;
     border-radius: 1rem;
    justify-content: center;
    align-items: center;
   

}
.page2 header{
    background: white;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.testbtnd{
    justify-content: center;
    align-items: center;
   

}

 .testimonialbtn{
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.4rem;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    display: block;
     background-color: yellow;
     border: 2px solid yellow;
     border-radius: 20px;
     padding: 10px;
     cursor: pointer;
     transition: .2s;

}

 .testimonialbtn:hover{
    background: blue;
    border: 2px solid yellow;
    border-radius: 50px;
 }





    
}


