.footer{
    background-color: var(--light-gray);
    padding-top: 50px;
}

.footer-menu{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.footer-menu .menu-section:first-child{
    padding-right: 24px;
}
.footer-menu .menu-section .description{
    font-weight: medium;
    color: var(--gray);
}
.footer-menu .menu-section .description b{
    color: var(--dark-blue);
}

.footer-menu .menu-section .phone{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-menu .menu-section .phone a{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
}
.footer-menu .menu-section .phone img{
    height: 20px;
}
.footer-menu .menu-section .phone p{
    font-size: 22px;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0;
    margin-left: 6px;
}

.footer-menu .menu-flex{
    display: flex;
    flex-direction: column;
}

.footer-menu .menu-flex a.primary{
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: var(--dark-blue);
}
.footer-menu .menu-flex p.primary{
    font-weight: bold;
    font-size: 14px;
    color: var(--dark-blue);
}
.footer-menu .menu-flex a.primary:not(:first-child){
    margin-top: 18px;
}
.footer-menu .menu-flex a.secondary{
    text-decoration: none;
    font-weight: medium;
    margin-top: 6px;
    font-size: 14px;
    color: var(--gray);
}
.footer-menu .menu-flex a:hover{
    text-decoration: underline;
    text-decoration-color: var(--dark-blue);
}


.menu-section .payment-icons{
    display: flex;
    flex-direction: row;
    margin-bottom: 18px;
    align-items: flex-start;
}
.menu-section .payment-icons img{
    object-fit: contain;
}
.menu-section .payment-icons img:first-child{
    margin-right: 21px;
}


.footer-address{
    font-weight: normal;
    color: var(--dark-blue);
    margin-top: 40px;
    padding-bottom: 14px;
}
.footer-address p{
    font-size: 14px;
    margin-bottom: 0;
}

.footer-links{
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: var(--light-blue);
}

.footer-links p{
    font-size: 14px;
    font-weight: normal;
}
.footer-links p a{
    text-decoration: none;
    color: var(--dark-blue);
    margin-right: 28px;
}
.footer-links p a:hover{
    text-decoration: underline;
}