@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --Color_1: #000020;
    --Color_2: #ff5000;
    --Color_3: #4a6096;
    --Color_4: #8695b9;
    --Color_5: #c3cadc;
    --Color_6: #e1e5ee;
    --Color_7: #fff;
    --Color_8: #000;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    min-height: 100vh;
}

header{
    position: relative;
    width: 100%;
    min-height: 66px;
    background: var(--Color_1);
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo{
    color: var(--Color_7);
    width: 320px;
    height: 100px;
}

header ul{
    position: relative;
}

header ul li{
    position: relative;
    list-style: none;
    float: left;
}

header ul li a{
    color: var(--Color_7);
    font-size: 15px;
    padding: 20px 25px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

header ul li a:hover{
    background: var(--Color_2);
}

header ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: var(--Color_3);
    display: none;
}

header ul li:hover > ul{
    display: block;
    
}

header ul li ul li{
    position: relative;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.5);
}

header ul li ul li ul{
    top: 0;
    left: 200px;
}

/* RESPOSIVE */
@media (max-width: 900px){
    header{
        margin: auto;
    }

    header a{
        margin: auto;
    }

    header .logo{
        color: var(--Color_7);
        width: 100px;
        height: 50px;
    }

    header nav{
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background: var(--Color_3);
    }
    
    header nav ul li{
        width: 100%;
    }

    header nav ul li ul{
        position: relative;
        width: 100%;
        left: 0;
    }

    header nav ul li ul li ul{
        top: 0;
        left: 0;
    }
}


.carrousel{
    width: 100%;
}

.conteCarrousel{
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.itemCarrousel{
    position: relative;
    width: 100%;
    height: 100%;
}

.itemCarrouselTarjeta{
    width: 100%;
    height: 100%;
}

.itemCarrouselArrows{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; 
}

.itemCarrouselArrows > i:hover {
    cursor: pointer;
}

#itemCarrousel-1{
    background-color: rgba(0,0,0,0.8);
    filter:brightness(0.4);
    background-image:   url("../Img/Montacargas_Outkargo_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;   
}

#itemCarrousel-2{
    background-color: rgba(0,0,0,0.8);
    filter:brightness(0.4);
    background-image: url("../Img/Montacargas_Outkargo_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#itemCarrousel-3{
    background-color: rgba(0,0,0,0.8);
    filter:brightness(0.4);
    background-image: url("../Img/Montacargas_Outkargo_3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.conteCarrouselController{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.conteCarrouselController > a{
    text-decoration: none;
    font-size: 2em;
    color: var(--Color_7);
}

.itemCarrouselArrows > a > i{
    color: var(--Color_7);
}