.restaurants_wrapper {
    margin-top: 180px;
}

.restaurants_wrapper .restaurant {
    height: max-content;
    cursor: auto;
}

.restaurants_wrapper .restaurant .restaurant_image {
    position: relative;
    height: 250px;
}

.restaurants_wrapper .restaurant .restaurant_image h2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    text-align: center;
    color: var(--white);
    margin: -10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.restaurants_wrapper .restaurant .restaurant_content {
    position: relative;
    padding: 40px 0 0;
}

.restaurants_wrapper .restaurant:hover .restaurant_image {
    background-color: var(--black);
    transition: none;
}

.restaurants_wrapper .restaurant .button_2 {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.restaurants_wrapper .restaurant:hover .button_2 {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.contact_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.contact_wrapper .contact_details,
.contact_wrapper .contact_opening_hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    width: calc((100% - 40px) / 2);
    margin-bottom: 40px;
}

.contact_wrapper .contact_details {
    margin-left: 20px;
}

.restaurants_wrapper .restaurant .restaurant_content h3 {
    margin-top: 0 !important;
    text-align: left;
    margin-left: 0 !important;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link,
.restaurants_wrapper .restaurant .restaurant_content .opening_hours {
    margin-left: 0;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link i {
    width: 25px;
    margin-top: 3px;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link {
    display: flex;
    align-items: flex-start;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link:hover {
    opacity: 0.7;
    transition: 0.2s all ease-in-out;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link span {
    width: calc(100% - 25px);
    margin-left: auto;
}

.restaurants_wrapper .restaurant .restaurant_content .details_link .fa-map-marker-alt {
    margin-left: 2px;
    margin-right: 8px;
}

.restaurants_wrapper .restaurant .buttons_container {
    width: 100%;
    margin-top: 20px;
}

.restaurants_wrapper .restaurant .buttons_container .button,
.restaurants_wrapper .restaurant .buttons_container .button_2 {
    width: calc((100% - 20px) / 2);
}

.restaurants_wrapper .restaurant .contact_social {
    background-color: var(--black);
    width: 100%;
    border-radius: 10px;
    color: var(--white);
    padding: 20px;
    box-sizing: border-box;
}

.contact_social_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.restaurants_wrapper .restaurant .contact_social h3 {
    color: var(--dark-orange);
    margin-top: -8px !important;
    margin-bottom: 5px !important;
}

.restaurants_wrapper .restaurant .contact_social .social_link {
    color: var(--white);
    margin-top: 15px;
    margin-right: 15px;
}

@media (max-width: 1300px) {
    .contact_wrapper .contact_details,
    .contact_wrapper .contact_opening_hours {
        width: calc((100% - 20px) / 2);
        margin-bottom: 40px;
    }

    .contact_wrapper .contact_details {
        margin-left: 0;
    }
}

@media (max-width: 1160px) and (min-width: 1050px) {
    .restaurants_wrapper .restaurant .buttons_container {
        flex-direction: column;
    }

    .restaurants_wrapper .restaurant .buttons_container .button,
    .restaurants_wrapper .restaurant .buttons_container .button_2 {
        width: 100%;
    }

    .restaurants_wrapper .restaurant .buttons_container .button_2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .restaurants_wrapper .restaurant .buttons_container {
        flex-direction: column;
    }

    .restaurants_wrapper .restaurant .buttons_container .button,
    .restaurants_wrapper .restaurant .buttons_container .button_2 {
        width: 100%;
    }

    .restaurants_wrapper .restaurant .buttons_container .button_2 {
        margin-bottom: 20px;
    }

    .contact_wrapper {
        flex-direction: column;
    }

    .contact_wrapper .contact_details,
    .contact_wrapper .contact_opening_hours {
        width: 100%;
    }

    .contact_wrapper .contact_details {
        margin-bottom: 20px;
    }
}

@media (max-width: 550px) {
    .restaurants_wrapper {
        margin-top: 100px;
    }
}