/* Footer Css */

footer {
    background-color: #0491c5;
    color: #ecf0f1;
    padding: 40px 20px 10px;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 3vw;
    max-width: 1250px;
    margin: auto;
    padding: 2vh 0 3vh 0;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
    font-family: 'Poppins paragraph';
}
.footer-middle{
    display: flex;
    justify-content: space-between;
}


.footer-column h3 {
    margin-bottom: 1.8rem;
    font-size: 22px;
    font-family: 'Roboto', "Poppins";
    color: #fff;
}

.footer-column p {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    justify-content: left;
    align-items: center;
    
}
.footer-column p i{
    font-size: 20px;
    color: #fff;
    
}
.footer-column h4{
    margin-bottom: 16px;
}
.footer-column i{
    font-size: 20px;
    padding-right: 13px;
}
.footer-column h4 span{
    font-size: 15px;
    font-weight: normal;
    
}
.footer-column .f-address{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a i{
    font-size: 22px;
    padding: 7px;
    color: #0491c5;
    border-radius: 20%;
    background: #fff;
    border: 1px solid #fff;
}
.social-icons a:nth-child(1) i{
    padding: 7px 11px;
}
.social-icons a:nth-child(3) i{
    padding: 7px 8px;
}
.social-icons i:hover {
    background-color: transparent;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

a {
    color: #ecf0f1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.footer-bottom{
    font-size: 15px;
    text-align: center;
    padding: 3vh 0;
}
@media screen and (max-width: 750px){
    footer {
        padding: 40px 10px 10px;
    }
    .footer-container{
        width: 100%;
        flex-direction: column;
        gap: 7vh;
    }
    .footer-bottom{
        font-size: 16px;
    }
    .footer-column:nth-child(2){
        text-align:start;
    }
}
@media screen and (max-width: 900px){
    footer {
        padding: 40px 10px 10px;
    }
    .footer-container{
        width: 100%;
        flex-wrap: wrap;
        gap: 7vh;
    }
    .footer-bottom{
        font-size: 16px;
    }
    .footer-column:nth-child(2){
        text-align:start;
    }
}

/* Footer Css end*/