.footer {
    background-color: #eee;
    padding: 20px 40px;
    display: flex;
    gap: 80px;
}
@media only screen and (max-width: 450px) {
    .footer {
        /*gap: 40px;*/
        flex-direction: column;
        
    }
}

.footer > .list .footer_logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    flex: 0;
    margin-bottom: 10px
}
.footer > .list .footer_logo > p {
    font-weight: bold;
    transition: color 0.2s ease;
}
.footer > .list .footer_logo:hover p:nth-of-type(1) {
    color: aqua;
    transition-delay: 0s;
}
.footer > .list .footer_logo:hover p:nth-of-type(2) {
    color: lightgreen;
    transition-delay: 0.3s;
}
@media only screen and (min-width: 1000px) {
    .header > .list .footer_logo {
        font-size: 4rem;
    }
}
@media only screen and (max-width: 450px) {
    .footer > .list .footer_logo {
        margin: 0 auto 10px;
    }
}

.footer > .list {
    display: flex;
    flex-direction: column;
    text-align-last: left; 
}
@media only screen and (max-width: 450px) {
    .footer > .list {
        /*text-align-last: center;*/
        margin: auto;
    }
}
.footer > .list h3 {
    margin-bottom: 10px;
    font-size: 1.25rem
}
.footer > .list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.footer > .company_details > .list_items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
