* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.content {
    width: 100%;
    height: 100vh;
    background: url(../img/background.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.content-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

/* Delimitadores */

.desktop {
    display: initial;
}
.mobile {
    display: none;
}

/* ///////////// */

.promo {
    display: flex;
    align-items: center;
    width: 50%;
    padding-top: 100px;
}

.promo__img {
    align-self: flex-end;
}

.promo__img img {
    width: 500px;
}

.additional {
    margin: 0 20px;
    text-align: center;
}

.additional__price {
    font-family: "Museo 900";
    font-size: 4.5em;
    color: #ed1c2c;
    display: flex;
    align-items: center;
}

.additional__price::before {
    content: "+";
    font-size: 0.7em;
}

.additional__text {
    font-family: "Museo 700";
    font-size: 1.1em;
}

/* Carrusel */

.swiper-container {
    width: 100%;
    height: 80vh;
}

.card-wrapper {
    width: 50%;
    display: flex;
    align-items: flex-end;
    padding-left: 25px;
}

.dish {
    width: auto;
    background: #fff;
    border-radius: 12px 12px 0 0;
    padding: 20px;
}

.dish__img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    text-align: center;
}

.dish__title {
    font-size: 1.5em;
    font-family: "Museo 500";
    padding-bottom: 15px;
}

.dish__cals {
    color: #707070;
    font-size: 0.9em;
    padding-bottom: 15px;
}

.dish__desc {
    color: #707070;
}

/* Swiper override */

.swiper-button-next,
.swiper-button-prev {
    width: 32px;
    height: 32px;
    color: #fff;
    background: rgba(100, 100, 100, 0.5);
    border-radius: 20px;
    /* top: 70%; */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px;
}

/*////////////// Media queries //////////////*/

@media screen and (max-width: 1024px) {
    .promo {
        flex-direction: column;
        padding: 0;
        justify-content: flex-end;
        align-items: center;
    }

    .promo__img {
        order: 2;
        align-self: flex-start;
    }

    .promo__img img {
        width: 400px;
    }

    /* Swiper override */

    .swiper-button-next,
    .swiper-button-prev {
        top: 70%;
    }
}

@media screen and (max-width: 768px) {
    /* Delimitadores */

    .desktop {
        display: none;
    }
    .mobile {
        display: initial;
    }

    /* ///////////// */

    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .promo {
        width: auto;
        height: 40%;
        justify-content: space-evenly;
        flex-flow: row wrap;
    }

    /* Promoción en móvil */
    .promo__title {
        width: 80%;
        font-size: 2em;
        padding-top: 10px;
        text-align: center;
    }

    .promo__price {
        width: 45%;
        justify-content: flex-end;
        font-family: "Museo 900";
        font-size: 8em;
        color: #ed1c2c;
        display: flex;
        align-items: center;
    }

    .promo__price::before {
        content: "$";
        font-size: 0.7em;
    }

    .additional {
        width: 45%;
        margin: 0;
        text-align: left;
    }

    .promo__phone {
        font-family: "Museo 700";
        font-size: 2.5em;
        color: #222;
        text-decoration: none;
        display: flex;
    }

    .promo__phone::before {
        content: url("../img/phone.png");
        display: inherit;
        align-items: center;
        padding-right: 5px;
    }

    .delivery {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 20px 0;
    }

    .card-wrapper {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .swiper-container {
        height: 100%;
    }

    /* Swiper override */

    .swiper-button-next,
    .swiper-button-prev {
        top: 50%;
    }
}

@media screen and (max-width: 479px) {
    .promo {
        font-size: 12px;
    }

    .dish {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .content {
        height: 100%;
    }
}

@media (max-width: 375px) and (min-height: 812px) {
    .content {
        height: 100vh;
    }
}

@media screen and (max-width: 320px) {
    .promo {
        font-size: 10px;
    }
}
