/* Footer */
footer{
    padding: 50px 100px;
    background-color: #f0f4ff;

    padding-bottom: 10px;
}

#footer-top{
    display: flex;
    justify-content: space-between;
}

#footer-left{

    width: 170px;
}

#footer-left h2{
    color: #3454d2;
    font-size: 30px;
    margin-bottom: 20px;
}

#footer-left p{
    line-height: 1.8;
    color: #6d7b93;
}

#footer-right{
    width: 50%;

    display: flex;
    justify-content: space-between;
}

#footer-right h2{
    color: #1f3e72;
    margin-bottom: 20px;
    
}

#footer-right p{
    color: #1f3e72;
    margin-bottom: 30px;

    cursor:pointer;
}

#footer-bottom{
    display: flex;
    justify-content: space-between;

    color: #1f3e72;

    margin-top: 50px;
    margin-bottom: 20px;
}

#footer-bottom-right span{
    margin-left: 30px;
}

/* Effects */
#footer-right section p:hover{
    text-decoration: underline;
}

#footer-bottom-right span:hover{
    cursor:pointer;
    text-decoration: underline;
}

/* Responsive */
@media (max-width:800px){
    footer{
        padding: 50px 20px;
    }

    #footer-right h2{
        font-size: 18px;
    }
}

@media (max-width: 500px){
    
    #footer-right h2{
        font-size: 15px;
    }

    #footer-top section p{
        font-size: 11px;
    }
}


