footer {
    background-color: var(--darkMaroon);
    /*margin-top: 100px;*/
}
footer .container {
    padding: 90px 36px;
}
.footer-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.f_left-col {
    width: calc(50% - 20px);
}
.f_right-col {
    width: calc(18% - 20px);
}
.f_copyright-col {
    color: var(--white);
    font-family: var(--font-AvantGardeDemi);
    font-size: var(--bodyFont);
    font-style: normal;
    font-weight: normal;
    line-height: var(--bodyLh);
}
.f_left-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.footer-contacts {
    grid-column: span 2;
}
.quick-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.quick-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    font-family: var(--font-AvantGardeDemi);
    font-size: var(--menuFont);
    font-style: normal;
    font-weight: normal;
    line-height: 42px;
}
.quick-links ul .dropdown-menu li a {
    font-family: var(--font-AvantGardeBook);
}
.footer-contacts ul li a:hover,
.quick-links ul li a:hover {
    color: var(--hoverGray);
}
.quick-links .dropdown-menu {
    position: relative;
    visibility: visible;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    background: transparent;
    box-shadow: none;
}
.quick-links .dropdown-menu a {
    padding: 0 !important;
    padding-left: 20px !important;
    font-weight: 400;
}
.quick-links .dropdown-menu li a:hover,
.quick-links .dropdown-menu li a:focus,
.quick-links .dropdown-item.active, 
.quick-links .dropdown-item:active {
    background-color: transparent !important;
}

.footer-logo a {
    width: 231px;
    height: 129px;
    display: block;
}
.footer-contacts ul {
    padding: 0 0 0 20px;
    margin-bottom: 0;
    list-style: none;
    border-left: 1px solid var(--white);
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.footer-contacts ul li ,
.footer-contacts ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    font-family: var(--font-AvantGardeDemi);
    font-size: var(--menuFont);
    font-style: normal;
    font-weight: normal;
    line-height: var(--bodyLh);
}

@media(max-width:1605px) { 
    .f_right-col {
        width: calc(25% - 20px);
    }    
}
@media(max-width:1200px) { 
    .f_right-col {
        width: calc(30% - 20px);
    }    
}
@media(max-width:992px) { 
    .f_right-col {
        width: calc(40% - 20px);
    }
    .f_left-col {
        grid-template-columns: 1fr;
        gap: 90px;
    }    
    .footer-contacts {
        grid-column: span 1;
    }
    .social-icons ul {
        justify-content: flex-start;
    }
    .quick-links .dropdown-menu {
        display: block;
        border: 0;
    }
}
@media(max-width:767px) {
    /*footer {
        margin-top: 70px;
    }*/
    .footer-contents{
        flex-direction: column;
        gap: 80px;      
    }
    .footer-contents > * {
        width: 100% !important;
    }
    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }
    .social-icons ul {
        justify-content: center;
    }
    .footer-contacts ul {
        padding: 0 0 0 25px;
        gap: 15px;
        max-width: 430px;
        margin: 0 auto;
    }    
    .footer-contacts ul li, .footer-contacts ul li a {
        font-size: 18px;
        text-wrap: balance;
    }
    .quick-links,.f_copyright-col {
        text-align: center;
    }
    .quick-links .dropdown-menu {
        text-align: center;
        margin-bottom: 10px;
    }
    .quick-links .dropdown-menu a {
        padding-left: 0px !important;
    }
}
@media(max-width:450px) {
    /*.footer-logo a {
        display: initial;
    }*/
    .footer-contacts ul {
        max-width: 250px;
    }
}
@media(max-width:360px) {
    .social-icons ul {
        gap: 15px;
    }
}