/* Footer */
.footer-widget {
    background-color: var(--e-global-color-text);
}
.footer-widget--container {
    padding-bottom: 45px;
}
.footer-widget--container #footer-logo {
    width: 100%;
    max-width: 195px;
}
.footer-widget--address {
    padding-top: 40px;
    font-family: var(--e-global-typography-text-font-family);
    color: var(--e-global-color-secondary);
    font-size: 14px;
}

.footer-widget--contacts a {
    font-family: var(--e-global-typography-text-font-family);
    font-size: 14px;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    display: block;
}

.footer-widget--heading {
    font-family: var(--e-global-typography-accent-font-family);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    font-size: 15px;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    padding: 0 !important;
    position: relative;
}

.footer-widget--links {
    list-style: none;
    padding: 0;
    margin:0;
}

.footer-widget--links a {
    font-family: var(--e-global-typography-text-font-family);
    font-size: 15px;
    color: var(--e-global-color-secondary);
    text-decoration: none;
}

.footer-widget--accreditations {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-widget--social-links {
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.footer-widget--social-link {
    display: flex;
    align-items: center;
    justify-content: center;   
    width: 45px;
    aspect-ratio: 1;
    border: 1px solid var(--e-global-color-secondary)
}
.footer-widget--social-link img{
    max-width: 100%;
}

.foot-gallery ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -5px;
    padding: 0;
    list-style-type: none;
}
.foot-gallery ul li{
    padding: 0 5px;
    margin-bottom: 10px;
}
.foot-gallery ul li img{
    height: 70px;
    width: 70px;
    object-fit: cover;
}

@media screen and (max-width: 1366px){
    .footer-widget--social-link{
        width: 35px;
    }
    .footer-widget--social-link img{
        height: 20px;
        object-fit: contain;
    }
}
@media (min-width:1300px) and (max-width:1399px){
    .foot-gallery ul li img{
        width: 50px;
        height: 50px;
    }   
}
@media (min-width:1200px) and (max-width:1299px){
    .foot-gallery ul li img{
        width: 50px;
        height: 50px;
    }   
}
@media screen and (max-width: 991.98px){
    .foot-gallery ul {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 767px){
    
}
@media screen and (max-width: 575px){
    .footer-widget--social-links {
        justify-content: flex-start;
    }
}