#banner{
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    video{
        width: 100%;
    }
    .bannerContent{
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        width: 100%;
        z-index: 22;
        box-shadow: inset 4px -84px 81px rgba(0,0,0,1);
        .bannerBottom{
            position: absolute;
            bottom: 0;
            width: 90%;
            color: #fff;
            h1{
                font-weight: 400;
                font-size: 3rem;
            }
            h2{
                font-weight: 400;
                font-size: 1.2rem;
            }
        }
    }
}

#navLogo{
    transform: translateY(30px);
    margin-left: 16px;
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 150px;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,1) 35%, rgba(0,0,0,0.0));
}

.navDetails{
    margin-left: 48px;
    flex: 1;
    display: flex;
    flex-direction: column;
    .navLinks{
        margin-top: 28px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        .navLink{
            display: flex;
            flex-direction: row;
            gap: 8px;
            align-items: center;
            font-size: 0.9rem;
            text-decoration: none;
            color: #fff;
            font-weight: 300;
            background: none;
            border: unset;
            cursor: pointer;
            i{
                transition: all 0.2s;
            }
        }
    }
}

#mainSearch{
    height: 25px;
    text-indent: 8px;
    border-radius: 5px;
    border: 1px solid gray;
}

.navContacts{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: auto;
    padding-inline: 46px;
}

#navWats{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background-color: limegreen;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

#navWats:hover{
    transform: translateY(-2px);
    color: green;
    background-color: lime;
}

#burgerBtn{
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 7.5px;
    background: none;
    border: unset;
    width: 40px;
    height: 45px;
    cursor: pointer;
}

.burgerLine{
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    margin-right: 16px;
}

#contBurger{
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 92;
}

#burgerMenu{
    position: relative;
    padding: 1rem 0;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    height: auto;
    width: 100%;
    background-color: #fff;
    animation-duration: 0.5s;
    .basicBtn{
        padding: 8px 0;
        width: 90%;
        background-color: #fff;
        color: var(--azul);
        border: 1px solid var(--azul);
        border-radius: 3px;
    }
    .basicBtn:hover{
        background: var(--azul);
        color: #fff;
    }
    img{
        margin-bottom: 16px;
    }
    .tacha{
        position: absolute;
        right: 16px;
        top: 16px;
        cursor: pointer;
        border: unset;
        background: none;
        font-size: 1.1rem;
        width: fit-content;
        color: var(--azul);
    }
    .navLink{
        margin: 0;
        font-size: 0.8rem;
        text-decoration: none;
        width: 90%;
        color: var(--gris_oscuro);
    }
    .navLink:hover{
        color: var(--azul);
    }
}

.burgerBtn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    text-align: start;
    background: unset;
    border: unset;
    padding: 16px 0;
    border-bottom: 1px solid var(--gris);
    i{
        transition: all 0.2s;
    }
}

.burgerSlide{
    margin-top: -8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 90%;
}

#fillBurger{
    flex: 1;
}

.contLangs{
    position: absolute;
    bottom: -40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.langLink{
    height: 20px;
    width: 40px;
    background-size: cover;
    background-position: center;
}

.langLink:nth-child(1){
    background-image: url(../Images/mexico.png);
}

.langLink:nth-child(2){
    background-image: url(../Images/usa.png);
}

.contLinksNav{
    position: relative;
}

.slideLinksNav{
    position: absolute;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 12px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    a{
        font-size: 0.85rem;
        color: black;
        text-decoration: none;
    }
    a:hover{
        color: var(--amarillo);
    }
}

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

@media(max-width:920px){
    .navDetails{
        display: none;
    }
    .navContacts{
        display: none;
    }
    #burgerBtn{
        display: flex;
    }
    nav{
        justify-content: space-between;
    }

    #banner{
        .bannerContent{
            .bannerBottom{
                h1{
                    font-size: 1.9rem;
                }
                h2{
                    font-size:1.0rem;
                }
            }
        }
    }

}

@media(max-width:505px){

    #navLogo{
        height: 50%;
        width: 200px;
        transform: unset;
    }

    #banner{
        .bannerContent{
            .bannerBottom{
                h1{
                    font-size: 1.5rem;
                }
                h2{
                    font-size:0.8rem;
                }
            }
        }
    }
}