@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #FFF;
    color: #000;
    text-align: center;
    max-width: 1600px;
    margin: auto;
}
.sec1{
    color: #fff;
    background: url('/img/a.webp');
    height: 65vh;
    background-position: center;
    background-size: cover;
    max-height: 1024px;
}
.flexing-title
{
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tittle{
    margin-top: 8%;
}
.tittle h1{
    font-weight: 700;
}
.line{
    margin: auto;
    width: 120px;
    border-top: 10px solid;
    color: #08f700;
}
.sec2{
    margin: 0px;
    color: #000;
    background-color: #D9D9D9;
    padding: 50px 0;
}
.sec2 p{
    margin: 20px auto;
    max-width: 80%;
    font-size: 15px;
}
.nobg{
    background-color: #fff;
}
.font{
    text-decoration: none;
    list-style: none;
    font-size: 20px;
    transition: all .3s ease-in-out;
}
.font:hover{
    transform: scale(1.2);
}