/* HEADER VID + LOGO */

header {
    background-color: black;
    width: 100%;
    max-height: calc(100dvh - 60px);
    overflow: hidden; 
    border-bottom: 2px solid var(--main-details-dark-color);
    position: relative;
}

.hero-cnt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#header-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none;
    opacity: 0.5;
}

#header-shadow {
    background-color: rgba(0, 0, 0, 0.2);
}

#header-logo > img {
    width: 25%;
    -webkit-filter: drop-shadow(5px 5px 5px #000000);
    filter: drop-shadow(5px 5px 2px #000000);
}

/* SLIDESHOW LATAS */

#slideshow-title {
    margin: auto;
    margin-top: 50px;
}

.slideshow-container {
    width: 98%;
    overflow: hidden;
    position: relative;
    padding: 1%;
}

.mySlides {
    display: none;
    width: 90%;
    height: 100%
}

.mySlides > a {     height: 100%;
    width: 30%;
    margin: auto;}

.slide-btn {
    height: 44px;
    width: 44px;
    background-color: var(--main-details-dark-color);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    vertical-align: middle;
}

.slide-btn > span {
    color: var(--main-bg-color);
    font-size: 30px;
}

#prev-btn {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.birrasDotCont { gap: 8px; }

.birrasDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}

.active {
    background-color: white;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.lata-cont {
    height: 100%;
    width: 100%;
    margin: auto;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(66, 49, 28, 0.7);
    border-radius: 10px;
    border: 1px groove var(--main-details-color);
}

.lata {
width: 90%;
vertical-align: middle;
margin-top: auto;
}

.lata-cont:hover {
    background-color: var(--main-details-dark-color);
    animation: grow 0.5s ease-in-out infinite alternate;
}

.lata-cont > button {
    width: 95%;
    height: 10%;
    background-color: var(--main-details-darker-color);
    border-radius: 15px;
    color: white;
    text-transform: uppercase;
}

/* FRANQUICIAS INICIO */

/*#ixBtn {
    width: 100px;
    height: 30px;
    border-radius: 10px;
    background-color: var(--main-details-darker-color);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    align-content: center;
}*/

#franq-btn {
    margin-top: 0;
}

#franq-cont {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 50% 50%;
}

.franq-text {
    color: white;
    margin: auto;
}

.randomimg, .obtfranq{
    width: 98%;
    margin: 1%;

    border: 1px solid var(--main-details-dark-color);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}



@keyframes fade {
    from {opacity: 0.6} 
    to {opacity: 1}
}

@keyframes grow {
    from {transform: scale(1, 1);} 
    to {transform: scale(1.05, 1.05);}
}

@media (max-width: 768px) {

    .slideshow-container {
        width: 100%;
        margin: 5px 5px;
        padding: 0;
    }
    
    .mySlides {
        display: none;
        width: 80%;
        height: 100%;
    }
    
    .slide-btn {
        height: 29px;
        width: 29px;
        padding: 5px;
    }

    .lata-cont > button {
        font-size: 10px;
    }

    #franq-cont {
        width: 100%;
        grid-template-rows: 33% 33% 33%;
        grid-template-columns: 50% 50%;
    }

    #franq-title > span {
        width: 70%;
    }

    .obtTF {
        grid-column: 1 / 3;
    }

    .mh {
        display: none;
    }

    .md {
        display: block;
    }

    .title {
        padding: 15px;
        font-size: 25px;
        text-align: center;
        width: 100%;
        margin: auto;
    }
}