#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 0px -90px 76px 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;
            }
        }
    }
}

#navLogo{
    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) 5%, rgba(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: 1rem;
            text-decoration: none;
            color: #fff;
            font-weight: 300;
            background: none;
            border: unset;
            cursor: pointer;
        }
    }
}

#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;
    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;
    .basicBtn{
        width: 90%;
        background-color: #fff;
        color: var(--rojo);
        border: 1px solid var(--rojo);
    }
    .tacha{
        position: absolute;
        left: 16px;
        top: 16px;
        cursor: pointer;
        border: unset;
        background: none;
        font-size: 1.1rem;
        width: fit-content;
    }
    .navLink{
        margin: 0;
        font-size: 0.9rem;
        text-decoration: none;
        color: black;
        width: 90%;
    }
}

.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{
        color: black;
        text-decoration: none;
    }
    a:hover{
        color: var(--rojo);
    }
}

@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;
    }
}

@media(max-width:505px){
    #banner{
        .bannerContent{
            .bannerBottom{
                h1{
                    font-size: 2.5rem;
                }
                h2{
                    font-size:1.2rem;
                }
            }
        }
    }

    .whatsModal{
        height: 180px;
        width: 250px;
        font-size: 0.8rem;
        header{
            padding-top: 27px;
        }
        .inputsChat{
            input, button{
                font-size: 0.8rem;
            }
            button{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 25px;
                width: 25px;
                font-size: 0.7rem;
            }
        }
    }

    .whatsBody{
        height: 80px;
        .message{
            font-size: 0.8rem;
        }
    }
}