/* .container{
    position: relative;
    max-width: 2400px;
    overflow: hidden;
    margin: 0 auto;
    height: 100%;
    z-index: 10;
} */
#o-menu{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
}
.hamburguesa{
    display: none;
}
.hero__main{
    background-image: url("../img/portada1.webp");
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -.09vw;
}
.hero__container{
    justify-content: space-between;
    align-items: center;
    display: flex;
    margin: auto;
    height: 10vw;
    color: black;
    width: 90%;
}
.menu__logo img{
    object-fit: cover;
    width: 13vw;
    height: auto;
    margin-left: 8vw;
}
.menu__div{
    justify-content: space-between;
    /* padding: 0 4vw 0 22vw; */
    font-size: 1.5vw;
    display: flex;
    width: 70%;
}
.menu__div a{
    color: var(--color-bag);
    text-decoration: none;
}

h4{
    font-weight: normal;
    font-size: 1.2rem;
}
.menu__div1, .menu__div2, .menu__div3, .menu__div4{
    transition: all 0.4s;
    cursor: pointer;
}
.menu__div1:hover, .menu__div2:hover, .menu__div3:hover, .menu__div4:hover{
    transform: scale(1.2);
}
.introduce{
    color: var(--color-bag);
}

@media (min-device-width:600px) and (max-device-width:1050px){
    main h4{
        font-size: 2.5vw;
    }
}
@media (min-device-width:300px) and (max-device-width:599px){
    .menu__div, .img__form{
        display: none;
    }
    .container {
        position: inherit;
    }
    .hero__container {
        justify-content: center;
        width: 100vw;
        height: 25vw;
    }
    .menu__logo img {
        margin-left: -6.5vw;
        margin-top: 5vw;
        width: 50vw;
    }
    .hamburguesa{
        display: block;
    }
    /* Hamb */
    .activo{
        pointer-events: none;
        display: none;
        opacity: 0;
    }
    
    .contenido, .menu-hamburger, .cerrar {
        z-index: 10000000;
        position: fixed;
        display: block;
        margin: 5vw;
        right: 0;
        top: 0;
    }
    .open-menu{
        background-color: #67b431;
        border-radius: 50%;
    }
    .cerrar img{
        margin-top: 0vw;
        height: 10vw;
        width: 10vw;
    }
    .cerrar {
        border-radius: 6vw;
        margin-left: 2vw;
        height: 11vw;
    }
    .menu-hamburger.is-active {
        background-color: #292a2adb;
        z-index: 10000;
        left: -3vw;
    }
    
    .menu-hamburger-nav {
        background-color: #71aa48e0;
        position: absolute;
        transition: .6s;
        height: 100vh;
        right: -70vw;
        top: -3vw;
    }
        
    .menu-hamburger.is-active .menu-hamburger-nav {
        text-align: center;
        width: 100vw;
        left: -2vw;
        top: -5vw;
    }
    
    .menu-hamburger-list-items {
        list-style: none;
        margin-top: 10vw;
        padding: 0;
        margin: 0;
    }
    
    .menu-hamburger-list-items a {
        text-transform: uppercase;
        box-sizing: border-box;
        text-decoration: none;
        line-height: 32px;
        padding: 8px 12px;
        min-height: 32px;
        margin-top: 20vw;
        transition: .3s;
        font-size: 6vw;
        display: block;
        color: white;
        width: 100%;
    }
    .menu-hamburger-list-items i {
        margin-top: 16vw;
    }
    .menu-hamburger-list-items a:hover {
        background-color: #1c6171;
        color: #e8eaf6;
    }
    /* End Hamb */
}