.restaurant_intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 150px;
}

.restaurant_intro .rest_col {
    width: calc((100% - 150px) / 2);
}

.restaurant_intro .rest_col h2 {
	margin: 0;
	font-size: 100px;
}

.restaurant_intro .rest_col p {
    margin: 0;
}

.restaurant_intro .rest_col .buttons_container {
    display: flex;
    align-items: stretch;
    margin-top: 30px;
}

@media (max-width: 1150px) {
    .restaurant_intro .rest_col {
        width: calc((100% - 60px) / 2);
    }
}

@media (max-width: 990px) {
    .restaurant_intro {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .restaurant_intro .rest_col {
        width: 80%;
    }

    .restaurant_intro .rest_col p {
        margin-top: 30px;
    }
}

@media (max-width: 660px) {
    .restaurant_intro .rest_col {
        width: 100%;
    }

    .restaurant_intro .rest_col .buttons_container {
        flex-direction: column;
    }

    .restaurant_intro .rest_col .buttons_container .button {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        margin-top: 20px;
    }

    .restaurant_intro .rest_col h2 {
        font-size: 80px;
    }
}

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

    .opening {
        padding: 90px 0 60px !important;
    }
}