@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Dancing+Script:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

footer{
    background-color: #0050B5;
    font-family: 'Roboto', sans-serif;
    color: #f4f4f4;
    padding: 10px 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    height: auto;
}


.container-footer-row .col-md-3{
    background-color: #0050B5;
    padding: 15px;
    margin: 0;
}

.col-img{
    display: flex;   /* Enables flexbox on the parent */    
    align-items: center;  /* Vertically centers the image */
}

.col-img img{
    width: 288px;
    height: 109px;
}

.footer-row-col h4{
    color: #f4f4f4;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

/*Create a line under the title*/
.footer-row-col h4:before{
    content: '';
    width: 160px;
    height: 3px;
    position: absolute;
    background-color: #DA291C;
    bottom: -11px; /*Position the line under the text*/
    margin-bottom: 15px 0;
}

.footer-row-col ul{
    list-style: none;
    padding-left: 0; /* Aligns items with the header */
    margin: 0; /* Removes default margin */
}

.footer-row-col ul li{
    padding-bottom: 5px;    
}

.footer-row-col ul li a{
    color: #f4f4f4;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.5s;    
}

.all-rights-row{
    padding: 0 15px;
}

.all-rights-row p{
    color: #f4f4f4;
}

.socialIcons{
    /*display: inline-block;
    text-align: right;*/
    display: flex;
    justify-content: flex-end; /* Align icons to the right */
    padding: 0; /* Remove extra padding */
    margin: 0; /* Remove extra margins */
}

.socialIcons a {
    color: #f4f4f4;
    font-size: 20px;
    margin-left: 15px; /* Adds spacing between icons */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

/*****************ADD RESPONSIVE ADJUSTMENTS FOR 320********************************/
@media (max-width:320px){

    body{
        padding: 0;
    }

    .container-footer-row{
        padding: 0;
        margin: 0;
    }

    .col-img{
        padding: 0;
        margin: 0;
    }

    .col-img img{
        width: 192px;
        height: 73px;
    }

    .footer-row-col{
        margin: 0;
        padding: 0;
    }

    .footer-row-col h4{
        font-size: 1.25rem;
    }

    .footer-row-col ul li{
        padding-bottom: 0;
        font-size: 0.75rem;
    }

    .all-rights-row p{
        font-size: 0.65rem;
    }

    .socialIcons a{
        font-size: 0.75rem;
        margin-left: 5px; /* Adds spacing between icons */
    }

}

/*****************ADD RESPONSIVE ADJUSTMENTS FOR 620********************************/
@media (max-width:620px){
    body{
        padding: 0;
    }

    .container-footer-row{
        padding: 0 15px;
        margin: 0;
    }

    .all-rights-row p{
        font-size: 1rem;
    }

    .socialIcons a{
        font-size: 1rem;
        margin-left: 5px; /* Adds spacing between icons */
    }
}

@media (min-width:768px){
    .col-img{
        padding: 0;
        margin: 0;
    }

    .col-img img{
        width: 192px;
        height: 73px;
    }
}

@media (min-width:992px){
    .col-img img{
        width: 244px;
        height: auto;
    }
}

/*****************ADD RESPONSIVE ADJUSTMENTS FOR 1600********************************/
@media (min-width:1200px){
    .col-img img{
        width: 288px;
        height: 109px;
    }
}