.footer {
    width: 100%;
    height: auto;
    background-color: #1a1b1e;
    color: #B8C0C2;
    padding: 2rem;
    padding-left: 8rem;
    padding-right: 8rem;
}

.footer-container--fit {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    row-gap: 25px;
    column-gap: 25px;
    align-content: center;
    align-self: center;
    align-items: center;
}

.footer-box {
    width: auto;
    height: auto;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 25px;
} 

.div1 {
    grid-area: 1 / 1 / 2 / 2; 
}

.div2 {
    grid-area: 1 / 2 / 2 / 3; 
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
} 


.footer-title {
    color: #B8C0C2;
    font-size: 2vh;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-description {
    color: #B8C0C2;
    font-size: 1.4vh;
    font-weight: 400;
}







@media only screen and (max-width: 1080px) {
    .footer-grid {
        display: flex;
        flex-flow: column;
    }
}