body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#banner{
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

#bannerContent{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    h1{
        font-weight: 600;
        margin-top: 0;
        width: 90%;
        text-wrap: balance;
    }
}

#socials{
    position: absolute;
    right: 10px;
    bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

#videoBanner{
    position: absolute;
    width: 100%;
    bottom: 0;
}

.gendersBox{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 300px;
    width: 97%;
    color: #fff;
    background-color: black;
    margin-bottom: 32px;
    .basicColumn{
        gap: 32px;
        width: 30%;
        h3{ 
            margin: 0;
            font-weight: 600;
        }
        a{
            font-size: 1.1rem;
            width: 50%;
            text-align: center;
        }
    }
}

.gendersBanner{
    display: flex;
    color: #fff;
    height: 100%;
    width: 70%;
    background-image: url(../Images/gendersBoxBanner.webp);
    background-size: cover;
    background-position: center;
    h2{
        font-size: 1.9rem;
        text-wrap: balance;
        margin: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        text-align: center;
        padding-inline: 30%;
        background-color: rgba(0, 0, 0, 0.3);
    }
}

.contBigPromo{
    display: flex;
    flex-direction: row;
    height: 700px;
    width: 100%;
}

.lilPromo{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 40%;
    background-color: var(--veige);
    h3{
        width: 80%;
        font-weight: 600;
        font-size: 2.2rem;
        letter-spacing: 1px;
        color: var(--veige_oscuro);
    }
}

.contImages{
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 600px;
    width: 100%;
}

.imgF{
    flex-grow: 1;
    width: 0;
    height: 100%;
    background-image: url(../Images/botascafemujer.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    transition: all 0.3s ease-in;
    p{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        height: 100%;
        width: 100%;
        color: #fff;
        text-decoration: none;
        opacity: 0;
        transition: all 0.2s ease-in;
        letter-spacing: 0.5px;
    }
}

.imgF:hover{
    flex-grow: 0;
    width: 50%;
    p{  
        font-size: 1.5rem;
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.imgF:nth-child(1){
    background-image: url(../Images/botasplateadas.jpg);
}

.imgF:nth-child(3){
    background-image: url(../Images/botas_negras_mujer.jpg);
}

.bigPromo{
    height: 100%;
    width: 60%;
    background-image: url(../Images/bootsanddogs.jpg);
    background-position: right;
    background-size: cover;
    overflow: hidden;
}

#promoList{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-evenly;
    width: 90%;
    overflow: hidden;
}

.spikeColumn{
    display: flex;
    flex-direction: column;
    margin-left: -5px;
    height: 100%;
    width: 20px;
}

.spike{
    flex: 1;
    transform: scaleY(105%);
    width: 20px;
    background-color: var(--veige);
    clip-path: polygon(0% 0%, 45% 0, 100% 50%, 45% 100%, 0 100%);
}

#contArtesanal{
    margin-top: 32px;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: -18px;
    video{
        width: 100%;
    }
}

#artesanalText{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 180px;
    color: #fff;
    font-weight: 650;
    text-align: center;
    letter-spacing: 16px;
}

@media(max-width:1180px){
    .lilPromo{
        width: 70%;
    }
}

@media(max-width:1080px){
    #contArtesanal{
        video{
            width: auto;
            height: 100%;
        }
    }

    #artesanalText{
        font-size: 120px;
    }
}

@media(max-width:908px){

    #artesanalText{
        font-size: 90px;
    }

    #videoBanner{
        height: 100%;
        width: auto;
        bottom: unset;
    }

    .contBigPromo{
        width: 100%;
    }

    .bigPromo{
        width: 50%;
    }

    .lilPromo{
        width: 80%;
    }
}

@media(max-width:800px){
    .lilPromo{
        color: #fff;
        width: 100%;
        background-color: var(--veige);
    }

    .gendersBox{
        width: 100%;
        margin-bottom: 0;
    }

    .bigPromo{
        display: none;
    }

    .hotItem{
        background-color: var(--veige_semi);
        color: #fff;
        border-color: var(--veige_semi);
    }
}

@media(max-width:620px){

    .contImages{
        height: 630px;
        flex-direction: column;
        .imgF{
            background-position: bottom;
        }
        a{
            p{
                opacity: 0.9;
                background-color: rgba(0, 0, 0, 0.3);
            }
            flex-grow: 0;
            width: 100%;
        }
    }

    .contImages:hover{
        a{
            width: 100%;
        }
    }

    #artesanalText{
        font-size: 40px;
    }

    .hotImg{
        width: 150px;
    }

    #promoList{
        width: 100%;
    }
        
    #videoBanner{
        left: -200px;
    }

    .gendersBox{
        height: auto;
        flex-direction: column;
        .basicColumn{
            gap: 16px;
            padding: 7rem 0;
            width: 100%;
        }
    }
    .gendersBanner{
        height: 500px;
        width: 100%;
        h2{
            padding-inline: 16px;
        }
    }
}