<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Design &amp; Development by Niluminda Dissanayake
Email: nilumindadissanayake@gmail.com
Phone: +94 711 422 119  */

footer.container-fluid {
    padding: 0;
    padding-top: 40px;
    padding-bottom: 0px;
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    flex-direction: column;
    
}
footer .social-icons{
    gap: 20px;
    margin-top: 30px;

}
footer .social-icons a {
    text-decoration: none;
    color: black;
    font-size: 25px;
}
footer .links {
    display: flex;
    align-items: center;
    justify-content:  center;
    list-style-type: none;
    gap: 10px;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    flex-wrap: wrap;
}
footer .link {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding-top: 5px;
    border-bottom: 3px solid transparent;
    transition: ease-in-out 0.3s;
    text-decoration: none;
    color: black;
}

footer .link:hover{
    border-bottom: 3px solid black;

}


footer .footer-rights {
    background-color: #D3F2FF;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
footer .footer-rights p {
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    color: #007D99;
    font-size: 14px;
    text-align: center;
}


@media(max-width:992px){
    footer .link{
        font-size: 10px;
    }
    footer .footer-rights p {
        font-size: 10px;
    }
}</pre></body></html>