#Footer-section {
    background: #062B55;
    padding-bottom: 1rem;
}

#Footer-section input.form-control {
    outline: none;
    border: none;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    padding-left: 0;
    font-size: 14px;
    gap: 1rem;
    margin-bottom: 0;
}

.footer-nav li, .footer-nav li a, .copyrights {
    color: #FFFFFF;
}

.footer-nav li a:hover {
    text-decoration: underline;
    text-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.footer-wrapper {
    justify-content: center;
}
.footer-links {
    align-items: center;
}
.footer-no-links-container .footer-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-right-side .footer-wrapper .vertical-logo {
    flex: 0 0 60%;
}

.footer-right-side {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 40%;
    gap: 1rem;
}

.footer-right-side .contact-us-email a {
    color: #FFFFFF;
    font-size: 14px;
}

.footer-right-side .contact-us-email a:hover {
    text-decoration: underline;
}

.footer-right-side .copyright-footer .copyrights {
    font-size: 12px;
    margin-bottom: 0 !important;
}
.copyright-footer {
    padding-top: .5rem;
}

/* For Devices Under 450 - To control Extra Samll behaviour - START*/
@media only screen and (max-width: 385px) {
    #Footer-section .col-12.col-md-8 {
        text-align: left !important;
    }
}

/* Mobile Version - For Samll Devices <=576 */
@media only screen and (max-width: 576px) {
    #Footer-section input.form-control {
        height: 27px;
    }

    .footer-nav li a {
        font-size: 11px;
    }

    .copyrights {
        font-size: 11px !important;
    }
}

@media only screen and (max-width: 767px) {
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    .footer-nav li {
        padding-left: 0;
    }
}

/* For Devices >=768 - Tablet */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .footer-nav li a {
        font-size: 11px;
    }
}

/* Tablet_1024 */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .footer-nav li a {
        font-size: 11px;
    }
}

@media screen and (max-width: 991px){
    .footer-no-links-container .footer-wrapper, .footer-right-side {
        flex-direction: column;
        justify-content: center;
    }
    .footer-right-side {
        margin-top: .5rem;
        gap: .25rem;
    }
    .footer-no-links-container .copyright-footer {
        padding-top: 0;
    }
    .copyright-footer {
        text-align: center;
    }
}