.footer {
    padding: 50px 10px;
}
.base-menu {
    background-color: #1D1C1C;
    padding: 20px 10px;
    color: #fff;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.footer-grid > div:nth-child(1) {
    display: grid;
    justify-items: center;
    grid-gap: 20px;
}
.footer-grid > div:nth-child(2) {
    display: grid;
    grid-gap: 5px;
}
.footer-grid > div:nth-child(2) > a {
    max-width: fit-content;
    margin-left: 40px;
    font-size: .81rem; 
    font-weight: 700;
    transition: .1s;
}
.footer-grid > div:nth-child(2) > a:hover {
    color: #ED3232;
    text-shadow: 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000;
}
.footer-grid > div:nth-child(3) {
    display: grid;
    grid-gap: 15px;
}
.footer-grid > div:nth-child(3) > a {
    max-width: fit-content;
    transition: .1s;
}
.footer-grid > div:nth-child(3) > a:hover {
    color: #ED3232;
    text-shadow: 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000,
    0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000, 0px 0px .7px #000;
}
.footer-grid > div:nth-child(3) > a h5 {
    color: #000!important;
    text-shadow: 0px 0px 0px #000!important;
}

.social {
    display: flex;
    justify-content: center;
    grid-gap: 10px;
}
.social a:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 0px 20px #ED3232 inset;
    border-radius: 90px;
}
.social a {
    transition: .3s;
}

@media only screen and (min-width:361px) and (max-width:1100px) {

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
        justify-items: center;
        margin-bottom: 60px;
    }

    .footer-grid > div {
        justify-items: center;
        text-align: center;
    }
    .footer-grid > div:nth-child(2) > a {
        max-width: fit-content;
        margin-left: 0px;
        font-size: .81rem; 
        font-weight: 700;
        transition: .1s;
    }
    
}
@media only screen and (min-width:0px) and (max-width:360px) {

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
        justify-items: center;
        font-size: .8rem;
        margin-bottom: 60px;
    }

    .footer-grid > div {
        justify-items: center;
        text-align: center;
    }
    .footer-grid > div:nth-child(2) > a {
        max-width: fit-content;
        margin-left: 0px;
        font-size: .7rem; 
        font-weight: 700;
        transition: .1s;
    }

    .footer-grid .btn {
        font-size: .7rem;
    }
    
}

@media only screen and (max-width:535px) {
    .base-menu {
        font-size: .65rem;
    }
}