.banner-section:first-of-type {
    position: relative;
    z-index: 1;
}

.banner-section {
    padding: 0;
    background-color: white;
    background-size: contain;
}

.banner-section .banner-ctn {
    height: 100vh;
    display: grid;
    justify-items: center;
    padding: 10%;
    background-image: url("../img/jpg/fondo_slide_home1.jpg");
    background-position: center;
    background-size: cover;
    grid-template-columns: repeat(2, 1fr);
}

.banner-section .banner-ctn .text-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.banner-ctn .title-ctn {
    display: flex;
    justify-content: start;
}

.banner-ctn .title-ctn h1 {
    font-family: AmsiPro;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.banner-ctn .title-ctn span:nth-child(1) {
    color: #ffcf39;
    font-size: 30px;
    letter-spacing: 10px;
    font-family: AmsiProCond-Light;
}

.banner-ctn .title-ctn .second-span {
    color: white;
    font-family: AmsiProNarw-Ultra;
    font-size: 60px;
    font-weight: bolder;
}

.banner-ctn .title-ctn .third-span {
    color: #ffcf39;
    font-family: AmsiProNarw-Ultra;
    font-size: 50px;
}

.banner-section .banner-ctn .text-ctn .details-ctn {
}

.banner-section .banner-ctn .btn-ctn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-section .banner-ctn .text-ctn .details-ctn p {
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}

.banner-section .banner-ctn .btn-ctn .btn-order-now {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.banner-section .banner-ctn .btn-ctn .btn-order-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.banner-section .banner-ctn .btn-ctn .btn-order-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.banner-section .banner-ctn .btn-ctn .btn-order-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.banner-section .banner-ctn .btn-ctn .btn-order-now:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.banner-section .banner-ctn .btn-ctn .free-delivery {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.banner-section .banner-ctn .btn-ctn .free-delivery:hover {
    color: var(--red);
    transform: scale(1.05);
}

.banner-section .banner-ctn .btn-ctn .free-delivery:hover i {
    color: var(--brown);
}

.banner-section .banner-ctn .btn-ctn .free-delivery i {
    color: var(--orange);
}

.banner-section .banner-ctn .img-ctn {
    display: flex;
    position: relative;
    width: 400px;
    height: 400px;
    background-image: url("../img/png/fondo.png");
    align-items: center;
    background-size: contain;
    background-position: center;
    background-color: var(--red);
    border-radius: 100%;
}

.banner-section .banner-ctn .img-ctn img {
    transform: scale(1.4) translateX(-10%);
}

.banner-section .banner-ctn2 {
    display: grid;
    background-image: url("../img/jpg/fondo_slide_home2.jpg");
    justify-items: center;
    align-items: center;
    position: relative;
    
    height: 100vh;
    padding: 10%;
    background-position: center;
    background-size: cover;
    grid-template-columns: repeat(2, 1fr);
}

.banner-section .banner-ctn2 .text-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.banner-section .banner-ctn2 .title-ctn h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-section .banner-ctn2 .title-ctn .first-span {
    color: white;
    text-transform: uppercase;
    font-family: AmsiProNarw-Ultra;
    font-size: 70px;
}

.banner-section .banner-ctn2 .title-ctn .second-span {
    color: #ffcf39;
    text-transform: uppercase;
    font-family: AmsiProNarw-Ultra;
    font-size: 60px;
}

.banner-section .banner-ctn2 .text-ctn .details-ctn p {
    color: white;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.banner-section .banner-ctn2 .btn-ctn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-section .banner-ctn2 .btn-ctn .btn-order-now {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.banner-section .banner-ctn2 .btn-ctn .btn-order-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.banner-section .banner-ctn2 .btn-ctn .btn-order-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.banner-section .banner-ctn2 .btn-ctn .btn-order-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.banner-section .banner-ctn2 .btn-ctn .btn-order-now:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.banner-section .banner-ctn2 .btn-ctn .free-delivery {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.banner-section .banner-ctn2 .btn-ctn .free-delivery:hover {
    transform: scale(1.05);
}

.banner-section .banner-ctn2 .btn-ctn .free-delivery i {
    color: var(--orange);
}

.banner-section .banner-ctn3 {
    background-image: url("../img/jpg/fondo_slide_home3.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    padding: 10%;
}

.banner-ctn3 .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.banner-section .banner-ctn3 .title-ctn h2 {
    display: flex;
    line-height: 0.9;
    align-items: center;
    flex-direction: column;
}

.banner-ctn3 .banner-content .title-ctn .first-span {
    font-size: 25px;
    text-transform: uppercase;
    font-family: AmsiProCond-Light;
    font-weight: bolder;
    color: #ffcf39;
}

.banner-ctn3 .banner-content .title-ctn .second-span {
    font-size: 70px;
    font-family: AmsiProNarw-Ultra;
    text-transform: uppercase;
    font-weight: bolder;
    color: white;
}

.banner-ctn3 .banner-content .title-ctn .third-span {
    font-size: 90px;
    font-family: AmsiProNarw-Ultra;
    text-transform: uppercase;
    font-weight: bolder;
    color: #ffcf39;
}

.banner-ctn3 .banner-content .details-ctn p {
    font-size: 14px;
    text-align: center;
}

.banner-ctn3 .btn-ctn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.banner-section .banner-ctn3 .btn-ctn .btn-order-now {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.banner-section .banner-ctn3 .btn-ctn .btn-order-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.banner-section .banner-ctn3 .btn-ctn .btn-order-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.banner-section .banner-ctn3 .btn-ctn .btn-order-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.banner-section .banner-ctn3 .btn-ctn .btn-order-now:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.banner-section .banner-ctn3 .btn-ctn .free-delivery {
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.banner-section .banner-ctn3 .btn-ctn .free-delivery:hover {
    color: var(--red);
    font-weight: 600;
    transform: scale(1.05);
}

.banner-section .banner-ctn3 .btn-ctn .free-delivery:hover i {
    color: var(--brown);
}

.banner-section .banner-ctn3 .btn-ctn .free-delivery i {
    color: var(--orange);
}

.banner-section .banner-ctn4 {
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    justify-items: center;
    padding: 10%;
    background-size: cover;
    background-image: url("../img/jpg/fondo_slide_home4.jpg");
}

.banner-section .banner-ctn4 .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.banner-section .banner-ctn4 .banner-text {
    position: relative;
    z-index: 0;
}

.banner-section .banner-ctn4 .banner-text h2 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 0.7;
}

.banner-section .banner-ctn4 .text-ctn .first-span {
    color: white;
    font-family: AmsiProNarw-Ultra;
    font-size: 45px;
}

.banner-section .banner-ctn4 .text-ctn .second-span {
    color: #ffcf39;
    font-family: AmsiProNarw-Ultra;
    font-size: 60px;
}

.banner-section .banner-ctn4 .text-ctn .title-ctn h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-section .banner-ctn4 .banner-content .details-ctn p {
    color: white;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.banner-section .banner-ctn4 .btn-ctn {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.banner-section .banner-ctn4 .btn-ctn .btn-order-now {
    position: relative;
    display: flex;

    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.banner-section .banner-ctn4 .btn-ctn .btn-order-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.banner-section .banner-ctn4 .btn-ctn .btn-order-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.banner-section .banner-ctn4 .btn-ctn .btn-order-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.banner-section .banner-ctn4 .btn-ctn .btn-order-now:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.banner-section .banner-ctn4 .btn-ctn .free-delivery {
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.banner-section .banner-ctn4 .btn-ctn .free-delivery:hover {
    color: var(--red);
    font-weight: 600;
    transform: scale(1.05);
}

.banner-section .banner-ctn4 .btn-ctn .free-delivery:hover i {
    color: var(--brown);
}

.banner-section .banner-ctn4 .btn-ctn .free-delivery i {
    color: var(--orange);
}


.banner-section .banner-ctn5 {
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    justify-items: center;
    padding: 10%;
    background-size: cover;
    background-image: url("../img/jpg/fondo_slide_home5.jpg");
}

.banner-section .banner-ctn5 .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.banner-section .banner-ctn5 .banner-text {
    position: relative;
    z-index: 0;
}

.banner-section .banner-ctn5 .banner-text h2 {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 0.7;
}

.banner-section .banner-ctn5 .text-ctn .first-span {
    color: white;
    font-family: AmsiProNarw-Ultra;
    font-size: 45px;
}

.banner-section .banner-ctn5 .text-ctn .second-span {
    color: #ffcf39;
    font-family: AmsiProNarw-Ultra;
    font-size: 60px;
}
.banner-section .banner-ctn5 .text-ctn .third-span {
    color: #ffcf39;
    font-family: AmsiProNarw-Ultra;
    font-size: 60px;
}


.banner-section .banner-ctn5 .text-ctn .title-ctn h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-section .banner-ctn5 .banner-content .details-ctn p {
    color: white;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.banner-section .banner-ctn5 .btn-ctn {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.banner-section .banner-ctn5 .btn-ctn .btn-order-now {
    position: relative;
    display: flex;

    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.banner-section .banner-ctn5 .btn-ctn .btn-order-now:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.banner-section .banner-ctn5 .btn-ctn .btn-order-now:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.banner-section .banner-ctn5 .btn-ctn .btn-order-now span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.banner-section .banner-ctn5 .btn-ctn .btn-order-now:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}


.banner-section .banner-ctn5 .btn-ctn .free-delivery {
    color: white;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.banner-section .banner-ctn5 .btn-ctn .free-delivery:hover {
    color: var(--red);
    font-weight: 600;
    transform: scale(1.05);
}

.banner-section .banner-ctn5 .btn-ctn .free-delivery:hover i {
    color: var(--brown);
}

.banner-section .banner-ctn5 .btn-ctn .free-delivery i {
    color: var(--orange);
}

@media (max-width: 996px) {
    header {
        position: relative;
    }

    .header-mobile .header-second-line {
        background-color: black;
    }

    .banner-section  {
       overflow-x: hidden;
    }

    .banner-section .banner-ctn {
        transform: translateY(-1%);
        justify-items: center;
        height: 160vw;
        grid-template-rows: repeat(2, 1fr);
        background-image: url("../img/jpg/fondo_slide_home1_mobile.jpg");
        grid-template-columns: 100%;
    }

    .banner-section .banner-ctn .text-ctn {
        justify-content: flex-start;
        gap: 10px;
    }

    .banner-ctn .title-ctn span:nth-child(1){
        font-size: 15px;
    }

    .banner-ctn .title-ctn .second-span{
        font-size: 50px;
    }

    .banner-ctn .title-ctn .third-span{
        font-size: 40px;
    }

    .banner-section .banner-ctn2 {
        padding: 10%;
        height: 160vw;
        justify-items: center;
        transform: translateY(-1%);
        grid-template-rows: repeat(2, 1fr);
        background-image: url("../img/jpg/fondo_slide_home2_mobile.jpg");
        grid-template-columns: 100%;
    }

    .banner-ctn3 .banner-content .title-ctn .second-span{
        font-size: 50px;
    }

    .banner-ctn3 .banner-content .title-ctn .third-span{
        font-size: 70px;
    }

    .banner-section .banner-ctn3 {
        padding: 10%;
        height: 160vw;
        justify-items: center;
        transform: translateY(-1%);
        grid-template-rows: repeat(2, 1fr);
        background-image: url("../img/jpg/fondo_slide_home3_mobile.jpg");
        grid-template-columns: 100%;
    }

    .banner-section .banner-ctn4 {
        padding: 10%;
        height: 160vw;
        justify-items: center;
        transform: translateY(-1%);
        grid-template-rows: repeat(2, 1fr);
        background-image: url("../img/jpg/fondo_slide_home4_mobile.jpg");
        grid-template-columns: 100%;
    }

    .banner-section .banner-ctn4 .banner-content{
        justify-content: center;
        gap: 10px;
    }

    .banner-section .banner-ctn2 .title-ctn .first-span{
        font-size: 80px;
    }

    .banner-section .banner-ctn2 .title-ctn .second-span{
        font-size: 50px;
    }

    .banner-section .banner-ctn4 .text-ctn .second-span{
        font-size: 45px;
        text-align: center;
    }

    .banner-section .banner-ctn4 .text-ctn .first-span{
        font-size: 30px;
    }
    
    
    .banner-section .banner-ctn5 {
        padding: 10%;
        height: 160vw;
        justify-items: center;
        transform: translateY(-1%);
        grid-template-rows: repeat(2, 1fr);
        background-image: url("../img/jpg/fondo_slide_home5_mobile.jpg");
        grid-template-columns: 100%;
    }
    
    .banner-section .banner-ctn5 .banner-content{
        justify-content: center;
        gap: 10px;
    }
    .banner-section .banner-ctn5 .text-ctn .third-span{
        font-size: 45px;
        text-align: center;
    }
    .banner-section .banner-ctn5 .text-ctn .second-span{
        font-size: 45px;
        text-align: center;
    }
    
    .banner-section .banner-ctn5 .text-ctn .first-span{
        font-size: 30px;
    }
}

@media (min-width: 1700px) {
    .banner-ctn .title-ctn span:nth-child(1) {
        font-size: 60px;
    }

    .banner-ctn .title-ctn .second-span {
        font-size: 120px;
    }

    .banner-ctn .title-ctn .third-span {
        font-size: 100px;
    }

    .banner-section .banner-ctn .text-ctn .details-ctn p {
        font-size: 20px;
    }

    .banner-section .banner-ctn .btn-ctn .btn-order-now span {
        font-size: 20px;
    }

    .banner-section .banner-ctn .btn-ctn .free-delivery {
        font-size: 20px;
    }

    /**/

    .banner-section .banner-ctn2 .title-ctn .first-span {
        font-size: 120px;
    }

    .banner-section .banner-ctn2 .title-ctn .second-span {
        font-size: 90px;
    }

    .banner-section .banner-ctn2 .text-ctn .details-ctn p {
        font-size: 20px;
    }

    .banner-section .banner-ctn2 .btn-ctn .btn-order-now span {
        font-size: 20px;
    }

    .banner-section .banner-ctn2 .btn-ctn .free-delivery {
        font-size: 20px;
    }

    /**/

    .banner-section .banner-ctn3 .title-ctn .first-span {
        font-size: 50px;
    }

    .banner-section .banner-ctn3 .title-ctn .second-span {
        font-size: 120px;
    }

    .banner-section .banner-ctn3 .title-ctn .third-span {
        font-size: 140px;
    }

    .banner-ctn3 .banner-content .details-ctn p {
        font-size: 20px;
    }

    .banner-section .banner-ctn3 .btn-ctn .btn-order-now span {
        font-size: 20px;
    }

    .banner-section .banner-ctn3 .btn-ctn .free-delivery {
        font-size: 20px;
    }

    /**/

    .banner-section .banner-ctn4 .title-ctn .first-span {
        font-size: 75px;
    }

    .banner-section .banner-ctn4 .title-ctn .second-span {
        font-size: 110px;
    }

    .banner-section .banner-ctn4 .banner-content .details-ctn p {
        font-size: 20px;
    }

    .banner-section .banner-ctn4 .btn-ctn .btn-order-now span {
        font-size: 20px;
    }

    .banner-section .banner-ctn4 .btn-ctn .free-delivery {
        font-size: 20px;
    }
    
    /**/
    
    .banner-section .banner-ctn5 .title-ctn .first-span {
        font-size: 75px;
    }
    
    .banner-section .banner-ctn5 .title-ctn .second-span {
        font-size: 110px;
    }
    .banner-section .banner-ctn5 .text-ctn .third-span{
        font-size: 75px;
    }
    .banner-section .banner-ctn5 .banner-content .details-ctn p {
        font-size: 20px;
    }
}

/** flavors-section **/
.flavors-section {
    position: relative;
}

.flavors-section::before {
    top: 20%;
    border-radius: 50%;
    z-index: -1;
    left: -50%;
    width: 90vw;
    height: 90vw;
    content: "";
    background-color: #ffcd00;
    position: absolute;
}

.flavors-section .flavors-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
}

.flavors-section .flavors-ctn .text-ctn h2 {
    text-align: center;
    font-family: AmsiProNarw-Ultra;
    font-weight: bolder;
    color: var(--brown);
}

.flavors-section .flavors-ctn .text-ctn p {
    color: var(--brown);
    text-align: center;
    font-weight: 600;
}

.flavors-section .flavors-ctn .cards-ctn {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.flavors-section .flavors-ctn .cards-ctn .first-column {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon {
    background-color: #007f00;
    background-size: contain;
    justify-items: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background-blend-mode: multiply;
    background-image: url("../img/png/fondo.png");
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon .text {
    color: white;
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon .text h3 {
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon .text p {
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon a {
    position: relative;
    opacity: 0;
    width: fit-content;
    display: flex;
    margin-top: 10px;
    color: white;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: underline;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon a:hover {
    color: var(--brown);
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon .img img {
    transform: scale(1.5) translateX(-10%);
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .img img {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .text h3 {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .text p {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .text a {
    opacity: 1;
}

.flavors-section .flavors-ctn .cards-ctn .showy {
    background-color: #ff6700;
    cursor: pointer;
    background-size: contain;
    display: grid;
    border-radius: 10px;
    gap: 30px;
    justify-items: center;
    background-blend-mode: multiply;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    background-image: url("../img/png/fondo.png");
}

.flavors-section .flavors-ctn .cards-ctn .showy .text h3 {
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .showy .text p {
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .showy a {
    position: relative;
    opacity: 0;
    width: fit-content;
    display: flex;
    margin-top: 10px;
    color: white;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: underline;
    z-index: 1;
}

.flavors-section .flavors-ctn .cards-ctn .showy .img img {
    transform: scale(1.4) translateX(-10%);
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .showy a:hover {
    color: var(--brown);
}

.flavors-section .flavors-ctn .cards-ctn .showy:hover > .text a {
    opacity: 1;
}

.flavors-section .flavors-ctn .cards-ctn .showy:hover > .img img {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .showy:hover > .text h3 {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .showy:hover > .text p {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .showy:hover > .img img {
    transform: scale(1);
}

.flavors-section .flavors-ctn .cards-ctn .showy .text {
    color: white;
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer {
    background-color: #ffcd00;
    cursor: pointer;
    background-size: contain;
    border-radius: 10px;
    padding: 5%;
    background-blend-mode: multiply;
    background-image: url("../img/png/fondo.png");
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer .text h3 {
    transition: 0.4s all ease;
    color: var(--brown);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer .text p {
    transition: 0.4s all ease;
    color: var(--brown);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer a {
    position: relative;
    opacity: 0;
    width: fit-content;
    display: flex;
    margin-top: 10px;
    color: white;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: underline;
    z-index: 1;
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer a:hover {
    color: var(--brown);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .text a {
    opacity: 1;
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer .img img {
    transform: scale(1.3);
    transition: 0.4s all ease;
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .img img {
    transform: scale(1.1);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .text h3 {
    transform: scale(1.05) translateX(5px);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .text p {
    transform: scale(1.05) translateX(5px);
}

.flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .img img {
    transform: scale(1);
}

@media (max-width: 996px) {
    .flavors-section::before {
        width: 110vw;
        height: 140vw;
    }

    .flavors-section .flavors-ctn .text-ctn h2 {
        font-size: 30px;
        font-weight: bolder;
        text-align: center;
    }

    .flavors-section .flavors-ctn .text-ctn p {
    }

    .flavors-section .flavors-ctn .cards-ctn {
        grid-template-columns: 100%;
    }

    .flavors-section .flavors-ctn .cards-ctn .salchibombon {
        justify-items: flex-start;
        padding: 5%;
        gap: 10px;
        grid-template-columns: 100%;
    }

    .flavors-section .flavors-ctn .cards-ctn .salchibombon .text p {
        font-size: 14px;
    }

    .flavors-section .flavors-ctn .cards-ctn .salchibombon .img img {
        transform: scale(1.3);
    }

    .flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .img img {
        transform: none;
    }

    .flavors-section .flavors-ctn .cards-ctn .salchibombon:hover > .text {
        transform: none;
    }

    .flavors-section .flavors-ctn .cards-ctn .showy {
        justify-items: flex-start;
        padding: 5%;
        gap: 10px;
        grid-template-columns: 100%;
    }

    .flavors-section .flavors-ctn .cards-ctn .showy:hover > .img img {
        transform: none;
    }

    .flavors-section .flavors-ctn .cards-ctn .showy:hover > .text {
        transform: none;
    }

    .flavors-section .flavors-ctn .cards-ctn .showy .img img {
        transform: scale(1.2);
    }

    .flavors-section .flavors-ctn .cards-ctn .showy .img {
        order: 2;
    }

    .flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .img img {
        transform: none;
    }

    .flavors-section .flavors-ctn .cards-ctn .monster-burguer:hover > .text {
        transform: none;
    }
}

/** about section **/

.about-section {
    padding: 0% 2% 7% 2%;
}

.about-section .about-ctn {
    border-radius: 20px;
    background-color: var(--red);
    position: relative;
    background-position: center;
    background-size: contain;
    background-image: url(../img/png/fondo.png);
}

.about-section .about-ctn .about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-section .about-ctn .about-content .about-text {
    padding: 0% 10% 10% 10%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
}

.about-section .about-ctn .about-content .about-text h2 {
    font-family: AmsiPro-Ultra;
    color: white;
}

.about-section .about-ctn .about-content .about-text p {
    font-size: 16px;
}

.about-section .about-ctn .about-content .about-img img {
    display: flex;
    transform: scale(1.05);
    transform-origin: bottom;
    width: 90%;
}

.about-section .about-ctn .wave {
    position: absolute;
    transform: scale(1.01);
    bottom: -1px;
    left: 0;
    display: flex;
    width: 100vw;
}

.about-section .about-ctn .about-content .about-text a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: white;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.about-section .about-ctn .about-content .about-text a:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.about-section .about-ctn .about-content .about-text a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.about-section .about-ctn .about-content .about-text a span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 15px;
    color: var(--brown);
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.about-section .about-ctn .about-content .about-text a:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

.about-section .categories-ctn {
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-section .categories-ctn .img-box {
    display: flex;

    justify-content: center;
    align-items: center;
}

.about-section .categories-ctn .img-box img {
    width: 13%;
    transform: scale(3);
    transition: 0.4s all ease;
    transform-origin: bottom center;
    cursor: pointer;
}

.about-section .categories-ctn .img-box img:hover {
    transform: translateY(-10px) scale(3);
}

.about-section .categories-ctn .text-box .circleText {
    font-family: AmsiPro-Ultra;
    color: var(--red);
    text-align: center;
}

.about-section .categories-ctn .text-box h2 span {
    position: absolute;
}

.about-section .categories-ctn .text-box p {
    color: var(--brown);
    text-align: center;
}

@media (max-width: 996px) {
    .about-section{
        overflow-x: hidden;
    }

    .about-section .about-ctn .about-content .about-text h2 {
        text-align: center;
        font-size: 30px;
    }

    .about-section .about-ctn .about-content .about-img img {
        width: 100%;
    }

    .about-section .about-ctn .about-content .about-text {
        align-items: center;
        padding: 10%;
    }

    .about-section .about-ctn .about-content .about-text p {
        text-align: center;
    }

    .about-section .about-ctn .about-content .about-text a span {
        font-size: 14px;
    }

    .about-section .about-ctn .about-content {
        grid-template-columns: 100%;
        gap: 30px;
    }

    .about-section .categories-ctn {
        gap: 100px;
    }

    .about-section .categories-ctn .img-box img {
        transform-origin: center;
        transform: scale(5);
    }

    .about-section .categories-ctn .img-box img:hover {
        transform: translateY(-10px) scale(5);
    }

    .about-section .categories-ctn .text-box h2 {
    }
}

@media (min-width: 1500px) {
    .about-section .categories-ctn .img-box img {
        transform: scale(3.3);
    }

    .about-section .about-ctn .about-content .about-text p {
        font-size: clamp(0.875rem, 0.7824rem + 0.4938vw, 1.375rem);
    }

    .about-section .categories-ctn .img-box img:hover {
        transform: translateY(-10px) scale(3.3);
    }

    .about-section .about-ctn .about-content .about-text a span {
        font-size: 20px;
    }
}

/** last section **/

.last-section {
    padding: 0% 10%;
}
.last-section .last-ctn {
    display: flex;
    flex-direction: column;
    gap: 120px;
    justify-content: center;
    align-items: center;
}

.last-section .last-ctn .dishes-ctn {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.last-section .last-ctn .dishes-ctn .dish {
    display: flex;
    background-color: #ffcd00;
    border-radius: 50%;
    cursor: pointer;
    width: 15vw;
    height: 15vw;
    padding: 20px;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    justify-content: flex-end;
}

.last-section .last-ctn .dishes-ctn .dish .img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.last-section .last-ctn .dishes-ctn .dish .img .hot_dog {
    transform: translateY(10%) scale(1.5);
}

.last-section .last-ctn .dishes-ctn .dish .img img {
    width: 90%;
    transform-origin: bottom;
    transform: scale(1.5);
    transition: 0.4s all ease;
}

.last-section .last-ctn .dishes-ctn .dish .img img:hover {
    transform: translateY(-10px) scale(1.5);
}

.last-section .last-ctn .dishes-ctn .dish .detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.last-section .last-ctn .dishes-ctn .dish .detail h3 {
    color: var(--red);
    font-size: 20px;
    font-weight: bold;
}

.last-section .last-ctn .dishes-ctn .dish .detail a {
    color: var(--brown);
    font-size: 15px;
}

.last-section .last-ctn .dishes-ctn .dish .detail a:hover {
    color: var(--red);
    text-decoration: underline;
}

.last-section .last-ctn .text-ctn {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.last-section .last-ctn .text-ctn h2 {
    font-family: AmsiPro-Ultra;
    text-align: center;
    line-height: 1.2;
    color: var(--red);
}

.last-section .last-ctn .text-ctn p {
    color: var(--brown);
    font-weight: bold;
}

.last-section .last-ctn .text-ctn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--red);
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.last-section .last-ctn .text-ctn a:after {
    content: " ";
    width: 0%;
    height: 100%;
    background: var(--brown);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
}

.last-section .last-ctn .text-ctn a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.last-section .last-ctn .text-ctn a span {
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-weight: 700;
    z-index: 20;
    transition: all 0.3s ease-in-out;
}

.last-section .last-ctn .text-ctn a:hover span {
    color: white;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 996px) {
    .last-section {
        padding: 10%;
    }

    .last-section .last-ctn .dishes-ctn .dish{
        width: 60vw;
        height: 60vw;
    }

    .last-section .last-ctn .dishes-ctn {
        grid-template-columns: 100%;
        gap: 70px;
    }

    .last-section .last-ctn {
        gap: 70px;
    }

    .last-section .last-ctn .text-ctn h2 {
        font-size: 35px;
    }

    .last-section .last-ctn .text-ctn p {
        text-align: center;
    }
}
