.custom_footer {
    background-color: #5F5F5F;
    color: white;
}
.custom_footer_flex_first {
    width: 70%;
    margin: 0 auto;
    display: flex;
    gap: 20%;
    padding: 50px 0;
}
.custom_footer_separator {
    height: 2px;
    border-bottom: 2px solid white;
}
.custom_footer_flex_second {
    width: 70%;
    padding: 10px 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.custom_footer_flex_second a {
    all: unset;
    text-decoration: underline;
    cursor: pointer;
}
.custom_footer_h5 {
    font-size: 18px;
    font-weight: 700;
}
.custom_footer_icon_mail {
    background-image: url("../img/icons/mail.svg");
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
}
.custom_footer_icon_tel {
    background-image: url("../img/icons/phone.svg");
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
}
.custom_footer_icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom_footer_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.custom_footer_links a {
    all: unset;
    cursor: pointer;
}
.custom_footer_links a:hover {
    color: #1BB76D;
    transition: ease-in-out 200ms;
}

@media (max-width: 500px) {
    .custom_footer_flex_first {
        flex-direction: column;
    }
}