/********** Template CSS **********/

@font-face {
    font-family: 'Fredoka-Bold';
    src: url('../fonts/Fredoka-Bold.ttf');
}

@font-face {
    font-family: 'Fredoka-Regular';
    src: url('../fonts/Fredoka-Regular.ttf');
}

@font-face {
    font-family: 'Fredoka-Light';
    src: url('../fonts/Fredoka-Light.ttf');
}

:root {
    --primary: #ed3237;
    --secondary: #ffcc29;
    --tertiary: linear-gradient(to right, #DEB457, #D6AB47, #B38728, #CF9E25, #AA771C);
    --light: #F5F8F2;
    --dark: #373435;
}

#scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px !important;
    background-color: #F5F5F5 !important;
}

#scrollbar::-webkit-scrollbar {
    width: 12px !important;
    background-color: #F5F5F5 !important;
}

#scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3) !important;
    background-color: #555 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 15px;
    bottom: 15px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner img {
    width: 75px;
    height: 75px;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--dark);
    background-color: var(--secondary);
}

.btn-primary:hover,
.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--primary);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

.shop {
    margin-left: 1.5rem;
}

.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 75px;
    height: auto;
    top: 5px;
    left: 0;
}

.navbar .navbar-brand img {
    border-radius: 0rem !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 50px;
        height: 100px;
    }
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.header-carousel-1 .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel-1 .owl-nav .owl-prev,
.header-carousel-1 .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel-1 .owl-nav .owl-prev:hover,
.header-carousel-1 .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel-1 .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel-1 .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel-1 .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.effects {
    max-width: 100%;
    height: 86vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .effects {
        height: 40vh;
    }
}

.header-carousel-1 .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Header ***/

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#close-preview {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light);
}

.display-4,
.read {
    z-index: 8;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-caption h5 {
    font-family: 'Fredoka-Light';
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
    #header-carousel-1 .carousel-item {
        position: relative;
        min-height: 450px;
    }
    #header-carousel-1 .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-bg {
    position: relative;
    overflow: hidden;
}

.page-header {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(54, 54, 54, 0.479)), url(../img/backgrounds-products/background-title.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/* About */


/* .about-img {
    height: 100%;
    object-fit: cover;
} */

.about-center-img .section-title {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

.about-center-img {
    display: flex;
    justify-content: center;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-img {
    border-radius: 2rem;
}

.about-center-img h5 {
    font-size: 2rem;
}


/*** Products ***/

.product {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/pollos/pollo-asado.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.product .menu-scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 800px;
    box-shadow: 1px 8px 29px -10px rgb(24, 24, 24);
    background-color: #191717de;
}

.container-fluid.product-1 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/pollos/pollo-asado.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-2 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/supercombos/combo-5.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-3 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/carnes-parrilla/churrasco-grande.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-4 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url('../img/products/pescados-parrilla/salmon.jpg') center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-5 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/platos-ejecutivos/alitas.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-6 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/hamburguesas/combo-hamburguesa.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-7 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/hamburguesas-artesanales/hamburguesa-especial.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-8 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/pizzas/pizza-tradicional-carnes.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-9 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/pizzas/pizza-gourmet-campesina.jpeg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-10 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/pizzas/pizza-premium-peperoni.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-11 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/entradas/chorizo.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-12 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/lasanas/lasana-de-carne.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-13 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/salchipapa/salchipapa-trifasica.png") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-14 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/perro-caliente/perro-especial.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-15 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/arepa-rellena/arepa-pepiada.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-16 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/sopas/ajiaco-con-pierna-pernil.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-17 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/bebidas/bebidas.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.container-fluid.product-18 {
    background: linear-gradient(to bottom, rgba(39, 39, 39, 0.719), rgba(35, 35, 36, 0.781)), url("../img/products/adicionales/adicionales.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 55px 0;
    text-align: center;
    position: relative;
}

.product .container {
    position: relative;
    max-width: 900px;
    z-index: 9;
}

.product i {
    color: var(--primary);
    font-style: italic;
}

.product .tab-content .tab-pane .oval-text {
    background: var(--secondary);
    width: 500px;
    color: var(--dark);
    font-family: 'Fredoka-Bold';
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1rem;
    border-radius: 2rem;
}

.product .testimonial-item {
    padding: 0 0 15px 0;
    text-align: left;
}

@media (max-width: 575.98px) {
    .product .testimonial-item {
        text-align: center;
    }
    .product .tab-content .tab-pane .oval-text {
        width: auto;
    }
}

.product .img,
.product .content {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product .product-item .product-img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    height: 385px;
}

.product .product-item .no-cover {
    object-fit: contain !important;
    height: 385px !important;
}

@media (max-width: 575.98px) {
    .nav-link {
        list-style-type: none;
        white-space: nowrap;
        width: 250px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .card-link {
        list-style-type: none;
        white-space: nowrap;
        width: 250px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .product .menu-scroll {
        overflow-y: hidden;
        overflow-x: auto;
        max-height: 100px;
    }
    .nav-pills {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0.5rem;
    }
    .product .product-item .product-img {
        margin-bottom: 30px;
        height: 100%;
    }
    .product .product-item .no-cover {
        height: 100%;
    }
}

.product .product-item .product-content {
    height: 100%;
    width: 100%;
    padding: 15px;
    background: #f2f2f2;
    border-radius: 6px;
}

.product .product-item h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--primary);
}

.product .product-item h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product .product-item p {
    color: var(--dark);
    font-weight: 400;
    margin: 0;
    padding-right: 15px;
}

.product .owl-nav,
.product .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.product .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light);
}

.product .owl-dot.active {
    background: var(--secondary);
}

.tab-desc {
    display: flex;
    align-items: center;
}

.product .nav .card-link {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 60px !important;
    z-index: 300 !important;
    margin-bottom: 5rem;
}

.product .nav .card-link h3 {
    color: var(--light);
}

.product .nav .card-link.back-image-1.active {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pollos/pollo-asado.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-2.active {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/supercombos/combo-5.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-3.active {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/carnes-parrilla/churrasco-grande.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-4.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pescados-parrilla/salmon.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-5.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/platos-ejecutivos/alitas.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-6.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/hamburguesas/combo-hamburguesa.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-7.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/hamburguesas-artesanales/hamburguesa-especial.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-8.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-tradicional-carnes.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-9.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-gourmet-campesina.jpeg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-10.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-premium-peperoni.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-11.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/entradas/chorizo.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-12.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/lasanas/lasana-de-carne.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-13.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/salchipapa/salchipapa-trifasica.png') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-14.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/perro-caliente/perro-especial.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-15.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/arepa-rellena/arepa-pepiada.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-16.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/sopas/ajiaco-con-pierna-pernil.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-17.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/bebidas/bebidas.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-18.active {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/adicionales/adicionales.jpg') no-repeat;
    border: solid 4px var(--light);
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-1 {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pollos/pollo-asado.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-2 {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/supercombos/combo-5.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-3 {
    background: linear-gradient(to bottom, rgba(40, 34, 56, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/carnes-parrilla/churrasco-grande.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-4 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pescados-parrilla/salmon.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-5 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/platos-ejecutivos/alitas.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-6 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/hamburguesas/combo-hamburguesa.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-7 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/hamburguesas-artesanales/hamburguesa-especial.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-8 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-tradicional-carnes.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-9 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-gourmet-campesina.jpeg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-10 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/pizzas/pizza-premium-peperoni.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-11 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/entradas/chorizo.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-12 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/lasanas/lasana-de-carne.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-13 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/salchipapa/salchipapa-trifasica.png') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-14 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/perro-caliente/perro-especial.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-15 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/arepa-rellena/arepa-pepiada.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-16 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/sopas/ajiaco-con-pierna-pernil.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-17 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/bebidas/bebidas.jpg') no-repeat;
    background-size: cover;
    background-position: center
}

.product .nav .card-link.back-image-18 {
    background: linear-gradient(to bottom, rgba(16, 9, 36, 0.315), rgba(29, 24, 41, 0.658)), url('../img/products/adicionales/adicionales.jpg') no-repeat;
    background-size: cover;
    background-position: center
}


/*** About ***/

.video {
    background: linear-gradient(rgb(55 55 55 / 82%), rgb(0 0 0 / 94%)), url(../img/background-products.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.video {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/

.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/

.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}

.contact a {
    background-color: var(--secondary);
    color: var(--dark) !important;
}

.contact a:hover {
    background-color: var(--primary);
    color: var(--light) !important;
}

.align-content-center .text-center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}


/*** Testimonial ***/

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 15px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--secondary);
}


/*** Footer ***/

.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .text-primary {
    color: var(--primary) !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer a {
    cursor: pointer;
    font-size: 14px !important;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}


/* WHATSAPP BUTTON */

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.nav-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-end;
    width: auto;
    height: auto;
    position: fixed;
    z-index: 25;
    bottom: 0px;
    right: 0px;
    padding: 5px;
    margin: 0px;
}


/* WHATSAPP BUTTON */

.stl-btn {
    margin: 0.1em;
}

.btn-whatsapp a {
    margin-left: 5px;
    font-family: 'Fredoka-regular' !important;
}

.btn-whatsapp {
    display: flex;
    justify-content: center;
}

@media (max-width: 360px) {
    .nav-bottom {
        width: 320px;
    }
}

.m-cart {
    margin: 5px;
}

.send-order-sedes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fa-share {
    margin-right: 5px;
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    z-index: 8;
    transition: 0.3s;
    margin: 10px;
    padding: 7px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
    display: flex;
    position: absolute;
    justify-content: center;
    align-content: center;
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #77bb4a;
    animation: pulse 1.2s 4s ease 4;
}

.popup-whatsapp {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    height: auto;
    padding: 10px;
    bottom: 85px;
    right: 6px;
    transition: 0.5s;
    border-radius: 10px;
    background-color: #fff;
    /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
    -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
    animation: slideInRight 0.6s 0s both;
}

.popup-whatsapp>div {
    margin: 5px;
}

.about-us-cards {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: var(--tertiary);
    padding: 12px 32px;
    border-radius: 2rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}


/* MODAL */

.img-modal {
    height: 3rem;
}

.modal-footer {
    justify-content: space-around;
}

.modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-content {
    border-radius: 2rem !important;
}

.modal-body {
    height: auto;
    max-height: 50vh;
    overflow-y: auto;
}


/* FORM */

.modal input {
    position: relative;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
    padding: 1.125em 0 6px 6px;
    font-size: 1em;
    margin: 0px 0px 9px 0px;
    border: 1px solid #dddddd;
    color: #444;
}

.modal input {
    z-index: 99;
    width: 100%;
}

.modal textarea {
    width: 100%;
    height: 6em;
}

.modal label {
    font-size: 1rem;
    font-weight: bold;
    z-index: 100;
    top: 0.75em;
    left: 0.375em;
    height: 1.1111em;
    padding: 0 0.375em;
    transition: 0.3s all ease-in-out;
    color: var(--palet-1);
}

.modal input:focus~label {
    z-index: 9999;
}

.modal input:focus {
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    border: 1px solid rgba(81, 203, 238, 1);
}

@media (max-width: 680px) {
    .popup-whatsapp p {
        font-size: 0.9em;
    }
}

.popup-whatsapp>.content-whatsapp.-top {
    display: flex;
    flex-direction: column;
}

.popup-whatsapp>.content-whatsapp.-top p {
    color: #585858;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1em;
}

.popup-whatsapp>.content-whatsapp.-bottom {
    display: flex;
    flex-direction: row;
}

.closePopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    margin: 0px 0px 15px 0px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #f76060;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.closePopup:hover {
    background-color: #f71d1d;
    transition: 0.3s;
}

.send-msPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0px 0px 0px 5px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
    box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
}

.send-msPopup:hover {
    background-color: #f8f8f8;
    transition: 0.3s;
}

.is-active-whatsapp-popup {
    display: flex;
    animation: slideInRight 0.6s 0s both;
}

input.whats-input[type=text] {
    width: 250px;
    height: 40px;
    box-sizing: border-box;
    border: 0px solid #fff;
    border-radius: 20px;
    font-size: 1em;
    background-color: #fff;
    padding: 0px 0px 0px 10px;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    outline: none;
    transition: 0.3s;
}

@media (max-width: 420px) {
    input.whats-input[type=text] {
        width: 225px;
    }
    .membership-item {
        height: auto;
    }
}

input.whats-input::placeholder {
    color: rgba(68, 68, 68, 0.705);
    opacity: 1;
}

input.whats-input[type=text]:focus {
    background-color: #f8f8f8;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
    transition: 0.3s;
}

.icon-whatsapp-small {
    width: 24px;
    height: 24px;
}

.icon-whatsapp {
    width: 45px;
    height: 45px;
}

.icon-font-color {
    color: #fff;
}

.icon-font-color--black {
    color: #333;
}


/* END WHATSAPP */


/* MODAL PRODUCTS DETAIL  */

.modal-dialog {
    margin: 0 auto;
}

.modal-content {
    background-color: #fff;
    /* position: fixed; */
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 100%;
    height: auto; */
    /* max-height: 100%; */
    border: 1px solid #d8d8d8;
    border-radius: 2px;
}

.text-desc {
    font-size: 1rem;
    font-weight: normal;
}

.text-center {
    --bs-gutter-x: 0rem !important;
}

.modal-content-holder h3 {
    text-transform: uppercase;
}

.modal-content-holder .w-100 .text-info {
    text-align: left;
    font-size: 1rem;
    color: var(--black) !important;
    margin: 0 !important;
}

.product-cart {
    justify-content: center;
    align-items: center;
}

.info-card {
    margin-bottom: 1rem;
}

.close {
    color: var(--black);
    font-size: 28px;
    font-weight: normal;
}

.modal-img-grid {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 0%;
    overflow: hidden;
}

.modal-img-item {
    height: auto;
    min-height: 100%;
    margin: 0;
    background-position: 50% 50%;
    background-origin: border-box;
    background-size: cover;
    transition: all 1s ease;
}

.hr-line {
    border-top: 1px solid var(--black);
    width: 100%;
}


/* .modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  } */


/* .modal-content-holder {
    padding: 20px;
} */


/* NEW Layout */

.modal-info-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    display: flex;
    align-items: flex-start;
}

.modal-info-left {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.modal-info-right {
    display: -webkit-flex;
    -webkit-align-items: center;
    display: flex;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 2rem 0.5rem 0.5rem 1rem;
}

.modal-img-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media only screen and (max-width: 600px) {
    .modal-info-left {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .modal-info-right {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

#message-warning,
#message-success {
    display: none;
    padding: 3rem;
    margin-bottom: 3.6rem;
    width: 100%;
}

#message-warning {
    color: var(--dark);
}

#message-success {
    color: #f9a828;
}

#message-warning i,
#message-success i {
    margin-right: 10px;
}

.form-floating label {
    font-weight: bold;
}


/* form loader */

#submit-loader {
    display: none;
    position: relative;
    left: 0;
    top: 1.8rem;
    width: 100%;
    text-align: center;
    margin-bottom: 4.2rem;
}

#submit-loader .text-loader {
    display: none;
    font-family: "montserrat-bold", sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: .2rem;
    text-transform: uppercase;
}

.oldie #submit-loader .s-loader {
    display: none;
}

.oldie #submit-loader .text-loader {
    display: block;
}