footer {
    position: relative;
    width: 100%;
    padding: 20px 10px;
    font-size: 14px;
    background-color: var(--default_dark_blue);
}

.flex_holder_footer {
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.flex_holder_footer ul li {
    list-style: none;
    font-weight: 300;
    color:white
}

.flex_holder_footer ul li:not(:last-child) {
    padding-bottom: 5px;
}

.flex_holder_footer ul li a{
    color: white;
    text-decoration: none;
}
.flex_holder_footer ul li a:hover {
    text-decoration: underline;
}

.footer_item {
    margin-bottom: 20px;
}

.logo_holder_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo_holder_footer a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_holder_footer img {
    width: 70%;
    max-width: 300px;
}

.location_holder {
    position: relative;
    width: 100%;
    text-align: center;
}

.location_holder ul li:first-child{
    margin-bottom: 10px;
}
.location_holder ul li:last-child{
    margin-top: 20px;
}

.contact_holder {
    width: 100%;
    text-align: center;
}

@media only screen and (min-width: 750px) {
    .flex_holder_footer {
        flex-direction: row;
    }

    .footer_item {
        margin-bottom: 0px;
    }
    
}