:root {
    --height-div: 0px;
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Montserrat';
    font-optical-sizing: auto;
    font-style: normal;
    color: white;
}


/* SECTION: HEADER */
#capa {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23%, rgba(0, 0, 0, 0.61) 100%),
        linear-gradient(360deg, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0.36) 100%);

}

.sw0 {
    background: url('../img/header-0.webp') no-repeat;
    background-size: cover;
    background-position: 5%;
}

.sw1 {
    background: url('../img/header-1.webp') no-repeat;
    background-size: cover;
    background-position: 5%;
}

.sw2 {
    background: url('../img/header-2.webp') no-repeat;
    background-size: cover;
}

.sw3 {
    background: url('../img/header-3.webp') no-repeat;
    background-size: cover;
    background-position: 10%;
}

.sw4 {
    background: url('../img/header-4.webp') no-repeat;
    background-size: cover;
}

.vjs-big-play-button {
    display: none !important;
}


/* SECTION INFORMACION 2 */

#informacion-2 {
    background: url('../img/fondo-info.webp') no-repeat;
    background-position: 15%;
    background-size: 160%;
}

@media screen and (max-width: 1440px) {
    #informacion-2 {
        background-position: 19%;
        background-size: 160%;
        background-position-y: 5%
    }
}

#info2-img {
    background: url('../img/info2.webp') no-repeat;
    background-size: cover;
}

@media screen and (max-width:1186px) {
    .menu-hidden {
        visibility: hidden;
    }

    #informacion-2 {
        background: none;
    }
}

/* SECTION PRODUCTOS */

.disabled {
    cursor: auto;
    opacity: 0.5;
    pointer-events: none;
}

.swp0 {
    background: url('../img/product-0.webp') no-repeat;
    background-size: cover;
}

.swp1 {
    background: url('../img/product-1.webp') no-repeat;
    background-size: cover;
}

.swp2 {
    background: url('../img/product-2.webp') no-repeat;
    background-size: cover;
    background-position-y: 80%;
    background-position-x: 100%;
}

.elipse {
    width: 11px;
    height: 11px;
    background: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    border-radius: 45%;
}

.m-fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 300ms, opacity 500ms;
}

.m-fadeIn {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 700ms;
}

.transicion {
    transition: transform 0.6s ease;
}

.anima {
    animation: show 1.5s forwards, showOpacity 1.5s forwards;
}

@keyframes showOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes show {
    0% {
        height: 0;
    }

    100% {
        height: var(--height-div);
    }
}

/*SECTION - CONTACTO */
.img-contact {
    background: url('../img/contacto.webp') no-repeat;
    background-size: cover;
}

.img-contact2 {
    background: url('../img/contacto2.webp') no-repeat;
    background-size: cover;
}

.text-lg {
    font-size: 1rem !important;
}

/* collapse */

.collapsible {
    background-color: #F2F2F2;
    color: #111111;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.collapsible.active {
    background-color: #00B7C8;
    transition: 0.4s ease-out;
    color: white;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #00B7C8;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.2s ease-out;
    stroke: white;
    fill: white;
}