:root{
    --azul1 : #0179BB;
    --azul2 : #0677B8;
    --azulOscuro : #1C1E53;
    --amarillo : #F5CF59;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: 'Poppins', sans-serif;
}

.inicio{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto{
    background-color: rgb(255, 255, 255, 0.7); 
    font-size: 35px;
    font-weight: bold;
    width: 50%;
    padding: 40px 30px;
    position: absolute;
    height: 310px;
    top: 145px;
    left: 25%;
    z-index: 1;
}

.inicioYears{
    background-color: var(--azulOscuro);
    color: var(--amarillo);
    font-weight: bolder;
    position: relative;
    z-index: 2;
    left: 90%;
    top: -320px;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 190px;
}

.numero{
    font-size: 50px;
}

.textoYear{
    font-size: 33px;
    margin-left: 10px;
}


.container-carousel {
    position: relative;
    height: 600px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.carruseles {
    width: 400%;
    height: 100%;
    display: flex;

}

.slider-section {
    width: calc(100% / 4);
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.btn-left,
.btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff81;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
    z-index: 15;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}


.marcas{
    display: flex;
    justify-content: center;
    background-color: #F6F6F6;
}

.contenedorMarcas{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 55%;
    padding: 20px 0px;
}

.contenedorMarcas img{
    width: 18%;
    object-fit: contain;
}

.servicios{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0px;
}

.tituloServicios{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 25px;
}


.contenedorLN{
    display: flex;
    flex-direction: row;
    width: 80%;
    gap: 10%;
    margin-top: 30px;
}


.contenedorComer{
    background-color: var(--azulOscuro);
    color: var(--blanco);
    padding: 30px;
    height: 500px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(28, 30, 83, 0.7);
}

.tituloLN{
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.descrpcionLN{
    font-size: 18px;
}

.diferenciales{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0px;
}

.contenedorTitulo{
    display: flex;
    flex-direction: row;
}

.tituloDifere{
    font-size: 35px;
    font-weight: bolder;
}

.tituloAzul{
    font-size: 35px;
    font-weight: bolder;
    color: var(--azul1);
}

.contenedorCara{
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 70%;
    margin: 30px 0px;
}

.caracteristica{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    align-items: center;
    flex: 1;
}

.circuloCar{
    shape-outside: circle();
    clip-path: circle();
    background-color: var(--amarillo);
    margin: 0px 0px 15px 0px;
}

.circuloCar i{
    color: var(--azul1);
    font-size: 110px;
    padding: 15px;
}

.circuloCar span{
    color: var(--azul1);
    font-size: 110px;
    padding: 15px;
}


.tituloCar{
    font-weight: bold;
    font-size: 23px;
    text-align: center;
    margin-bottom: 10px;
}

.descripcionCar{
    font-size: 13px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.clientes{
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.tituloClientes{
    font-weight: bold;
    font-size: 35px;
    margin: 40px 0px;
}

.contenedorClientes{
    width: 75%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 0px;
    justify-items: center;
}

.marca{
    background-color: var(--blanco);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 240px;
    box-shadow: 0px 0px 15px rgba(165, 164, 164, 0.7);
}

.marca img{
    width: 200px;
    object-fit: cover;
}

@media (max-width: 1420px ){
    .texto{ 
        font-size: 35px;
        width: 50%;
        padding: 40px 30px;
        height: 330px;
        top: 135px;
        left: 25%;
    }

    .inicioYears{
        left: 90%;
        top: -350px;
    }

}

@media (max-width: 1265px ){
    .texto{ 
        font-size: 33px;
        width: 50%;
        padding: 40px 30px;
        height: 330px;
        top: 135px;
        left: 25%;
    }

    .inicioYears{
        left: 90%;
        top: -330px;
    }

}

@media (max-width: 1200px ){
    .texto{ 
        font-size: 30px;
    }

    .inicioYears{
        left: 85%;
        top: -320px;
    }

}



@media (max-width: 1150px ){

    .container-carousel {
        height: 550px;
    }


}


@media (max-width: 1100px ){

    .texto{ 
        font-size: 29px;
        height: 310px;
        top: 120px;
        padding: 35px 25px;
    }

    .numero{
        font-size: 45px;
    }
    
    .textoYear{
        font-size: 30px;
        margin-left: 10px;
    }

    .inicioYears{
        left: 85%;
        top: -300px;
        width: 180px;
    }

    .contenedorLN{
        width: 85%;
    }

    .tituloLN{
        font-size: 26px;
    }
    
    .descrpcionLN{
        font-size: 16px;
    }

    .contenedorCara{
        width: 80%;
    }

    .contenedorClientes{
        width: 80%;
    }

    .marca{
        height: 120px;
        width: 220px;
    }

    .marca img{
        width: 180px;
    }
    
}

@media (max-width: 1150px ){

    .texto{ 
        font-size: 28px;
        padding: 30px 25px;
    }

}


@media (max-width: 1000px){

    .texto{
        font-size: 28px;
    }

    .numero{
        font-size: 45px;
    }

    .textoYear{
        font-size: 30px;
    }

    .inicioYears{
        width: 170px;
        top: -330px;
    }
}

@media (max-width: 950px){

    .container-carousel {
        height: 500px;
    }

    .texto{ 
        height: 310px;
        top: 95px;
    }

    .numero{
        font-size: 43px;
    }

    .textoYear{
        font-size: 28px;
    }

}



@media (max-width: 900px ){

    .texto{
        width: 55%;
        left: 22.5%;
    }

    .contenedorLN{
        width: 90%;
    }

    .tituloCar{
        font-size: 20px;
    }

    .circuloCar i{
        font-size: 100px;
    }
    
    .circuloCar span{
        font-size: 100px;
    }

    .marca{
        height: 130px;
        width: 210px;
    }

    .marca img{
        height: 120px;
    }
    
}

@media (max-width: 850px ){
    .contenedorClientes{
        width: 85%;
    }

}


@media (max-width: 800px ){

    .numero{
        font-size: 42px;
    }

    .textoYear{
        font-size: 28px;
        margin-left: 8px;
    }

    .inicioYears{
        width: 165px;
        top: -330px;
        left: 85%;
    }

    .texto{
        width: 60%;
        left: 20%;
    }

    .contenedorLN{
        display: flex;
        flex-direction: column;
        width: 80%;
        margin-top: 30px;
        align-items: center;
        gap: 50px;
    }

    .contenedorComer{
        padding: 30px;
        height: 400px;
        width: 80%;
    }

    .contenedorCara{
        width: 90%;
    }

    .tituloCar{
        font-size: 18px;
    }

    .circuloCar i{
        font-size: 90px;
    }
    
    .circuloCar span{
        font-size: 90px;
    }

    .marca{
        height: 120px;
        width: 180px;
    }

    .marca img{
        height: 110px;
    }

}


@media (max-width: 750px ){

    .inicioYears{
        width: 160px;
        top: -320px;
        left: 85%;
    }

    .numero{
        font-size: 40px;
    }

    .textoYear{
        font-size: 28px;
    }

    .texto{
        font-size: 27px;
    }

    .contenedorMarcas{
        width: 70%;
    }
}


@media (max-width: 700px ){

    .inicioYears{
        width: 150px;
        top: -320px;
        left: 83%;
        padding: 10px 15px;
    }

    .texto{
        width: 62%;
        left: 19%;
    }

    .caracteristica{
        padding: 15px;
    }

    .contenedorCara{
        gap: 30px;
    }

    .marca{
        height: 120px;
        width: 180px;
    }

    .marca img{
        height: 100px;
    }
}

@media (max-width: 650px ){
    .contenedorClientes{
        grid-template-columns: 1fr 1fr;
        width: 75%;
    }

    .contenedorComer{
        height: 450px;
    }

    .tituloLN{
        font-size: 23px;
    }

}

@media (max-width: 600px ){

    .numero{
        font-size: 38px;
    }

    .textoYear{
        font-size: 26px;
    }


    .texto{
        font-size: 26px;
    }

    .inicioYears{
        width: 150px;
        top: -310px;
        left: 83%;
    }


    .circuloCar i{
        font-size: 75px;
        padding: 10px;
    }
    
    .circuloCar span{
        font-size: 75px;
        padding: 10px;
    }

    .tituloCar{
        font-size: 18px;
    }

}



@media (max-width: 560px ){

    .inicioYears{
        width: 140px;
        top: -300px;
        left: 83%;
        padding: 8px 13px;
    }

    .numero{
        font-size: 36px;
    }

    .textoYear{
        font-size: 24px;
    }

    .texto{
        width: 65%;
        left: 17.5%;
        height: 320px;
        top: 90px;
        font-size: 25px;
        padding: 30px 20px;
    }

    .tituloServicios{
        font-size: 30px;
    }

    .tituloDifere{
        font-size: 30px;
    }

    .tituloAzul{
        font-size: 30px;
    }
    
    .circuloCar i{
        font-size: 70px;
        padding: 10px;
    }
    
    .circuloCar span{
        font-size: 70px;
        padding: 10px;
    }

    .tituloCar{
        font-size: 16px;
    }

    .tituloClientes{
        font-size: 30px;
    }

    .contenedorClientes{
        width: 80%;
    }

    .marca{
        height: 100px;
        width: 160px;
    }

    .marca img{
        height: 90px;
    }
}

@media (max-width: 500px ){

    .container-carousel {
        height: 400px;
    }

    .texto{
        font-size: 22px;
        height: 270px;
        top: 65px;
        padding: 25px 20px;
    }

    .numero{
        font-size: 32px;
    }

    .textoYear{
        font-size: 20px;
        margin-left: 5px;
    }

    .inicioYears{
        width: 115px;
        top: -275px;
        left: 85%;
        padding: 10px;
    }

    .contenedorMarcas{
        width: 75%;
    }

    .contenedorComer{
        width: 90%;
    }

    .caracteristica{
        padding: 10px;
    }

    .contenedorCara{
        gap: 20px;
    }

    .contenedorClientes{
        width: 85%;
    }
}

@media (max-width: 450px ){

    .texto{
        font-size: 21px;
        padding: 20px;
        width: 70%;
        left: 15%;
    }

    .inicioYears{
        width: 105px;
        top: -255px;
        left: 82%;
        padding: 7px;
    }


    .tituloLN{
        font-size: 20px;
    }

    .descrpcionLN{
        font-size: 15px;
    }

    .contenedorCara{
        flex-direction: column;
    }

    .circuloCar i{
        font-size: 80px;
        padding: 15px;
    }
    
    .circuloCar span{
        font-size: 80px;
        padding: 15px;
    }

    .tituloCar{
        font-size: 18px;
    }

    .contenedorClientes{
        width: 80%;
    }

    .marca{
        height: 80px;
        width: 120px;
        border-radius: 15px;
    }

    .marca img{
        height: 70px;
    }
}


@media (max-width: 400px ){

    .texto{
        padding: 15px;
        font-size: 20px;
        height: 260px;
        top: 70px;
    }

    .numero{
        font-size: 30px;
    }

    .textoYear{
        font-size: 18px;
        margin-left: 5px;
    }

    .inicioYears{
        width: 100px;
        top: -245px;
        left: 85%;
        padding: 7px;
    }

    .contenedorMarcas{
        width: 85%;
    }
    
    .contenedorComer{
        width: 100%;
        padding: 25px;
    }

    .tituloLN{
        font-size: 18px;
    }

    .descrpcionLN{
        font-size: 14px;
    }

    .contenedorClientes{
        width: 85%;
    }
}

@media (max-width: 360px ){

    .inicioYears{
        width: 100px;
        top: -225px;
        left: 80%;
        padding: 7px;
    }

    .texto{
        font-size: 19px;
        height: 220px;
        top: 90px;
    }
}

@media (max-width: 350px ){

    .numero{
        font-size: 27px;
    }

    .textoYear{
        font-size: 15px;
        margin-left: 3px;
    }

    .inicioYears{
        width: 85px;
        top: -215px;
        left: 85%;
        padding: 7px;
    }


    .texto{
        font-size: 18px;
        height: 220px;
        top: 90px;
    }
    
    .contenedorComer{
        height: 500px;
    }

    .contenedorClientes{
        width: 90%;
    }
}

@media (max-width: 340px ){

    .inicioYears{
        width: 85px;
        top: -205px;
        left: 82%;
        padding: 7px;
    }


    .texto{
        font-size: 17px;
        height: 220px;
        top: 90px;
        padding: 10px 15px;
    }
}

@media (max-width: 320px ){

    .inicioYears{
        width: 85px;
        top: -245px;
        left: 80%;
        padding: 7px;
    }

}