
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
*{
    font-family: 'sparten',sans-serif;
}

body{
    width: 100%;
}

html{
    scroll-behavior: smooth;
}

.section-p1{
    padding: 40px 80px;
}

.section-p2{
    margin: 40px 0;
}
/****************** Footer   **********************/

footer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 50px;
}

footer .logo{
    margin-bottom: 20px;
    width: 150px;
}

footer h4{
    font-size: 20px;
    padding-bottom: 20px;
}

footer p{
    font-size: 16px;
    margin: 0 0 10px 0;
}

footer p span{
    margin-left: 43px;
}
footer p i{
    margin-right: 20px;
}

footer a{
    font-size: 16px;
    color: #222;
    text-decoration: none;
    padding-bottom: 10px;
    transition: 0.02s;
}

footer a:hover{
    color: #088178;
}

footer .follow{
    margin-top: 20px;
}

footer .follow i{
    color: #465b52;
    font-size: 25px;
    text-align: center;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
}

footer .follow i:hover{
    color: #fff;
    background-color: #088178;
    border: 1px solid #088178;
}

footer .copyright{
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

footer .copyright a{
    color: red;
}


/****************** Start Media Query ******************/
/****************** Start Media Query ******************/

@media (max-width:820px){

    .section-p1 {
        padding: 40px;
    }

    footer .col{
        flex: none;
    }
}

@media (max-width:450px){

    .section-p1 {
        padding: 20px;
    }

    footer .copyright p{
        font-size: 12px;
    }
    footer p{
        font-size: 14px;
    } 
}
