
body{
    margin: 0;
}

a{
    text-decoration: none;
}

.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.308);
}


.asi{
    height: 25px;
}


.banner-text{
    font-size: 14px;
    font-weight: 600;
}

.logo{
    height: 30px;
}

.navbar{

    display: flex;
    justify-content: space-between;
    margin: 20px 30px;


}

.c{
    background-color: #52A6F8;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 18px;
}

.hero{
    display: grid;
    place-items: center;
    margin: 120px 30px;
}

.hero h1{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.hero p{
    color: #7D87AA;
    text-align: center;
    margin: 20px 50px;

}

.m{
    display: none;
}



video{
    border-radius: 10px;
}


@media(max-width:600px){

   

    .hero p{
        text-align:start;
    }

    .d{
        display: none;
    }

    .m{
        display: block;
    }

 
    .hero h1{
        font-size: 34px;
    }
}