:root {
    font-size: 16px;
}

.img-carusel {
    background-position: top center;
    background-size: cover;
}

.flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.noticias {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
}

.noticias div {
    width: 100%;
    text-align: justify;
}

.noticias article {
    text-align: justify;
    width: 100%;
}

.flex-container div {
    width: 100%;
    text-align: justify;
}

.flex-container article {
    width: 50%;
    text-align: justify;
}

.cardNoticias h1 {
    font-size: 1.3rem;
}

.cardNoticias h2 {
    font-size: 1rem;
}

.cardNoticias h3 {
    font-size: 1rem;
}

.servicios-carousel {
    width: 100%;
    padding: 2rem 10rem;
}

.servicios-carousel-div {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.textoCarousel {
    width: 50%;
}

.clientes-carousel {
    width: 100%;
    padding: 2rem 10rem;
}

@media (max-width:800px) {
     :root {
        font-size: 13px;
    }
    .flex-container {
        flex-direction: column;
    }
    .flex-container div {
        width: 100%;
    }
    .flex-container article {
        width: 100%;
    }
    .noticias {
        flex-direction: column;
        width: 100%;
    }
    .noticias div {
        width: 100%;
    }
    .servicios-carousel {
        width: 100%;
        padding: 0rem 0rem;
    }
    .servicios-carousel-div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .textoCarousel {
        width: 80%;
    }
    .clientes-carousel {
        width: 100%;
        padding: 0rem 0rem;
    }
}

.planes {
    width: 100%;
    margin: 0px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    transition: all 400ms ease-out;
    cursor: default;
}

.planes:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3%);
}


/*CSS Especial*/

body::-webkit-scrollbar {
    width: 0.5rem;
    background: white;
}

body::-webkit-scrollbar-thumb {
    width: 0.4rem;
    background: #163366;
}


/*Servicios*/