

body{
    font-family: 'Poppins', sans-serif;
    background: #222222;
}

.Mision-Vision{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    background: #1e1e1e;
    padding: 10px;
}

.Mision-Vision h2{
    font-size: 2.5rem;
    font-weight: 700;
    color: #80c4ce;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.Mision-Vision p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: ghostwhite;
}



.Vision{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.Vision svg{
    height: 100px;
    width: 100px;
    fill: white;
}


.Mision{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}
.Mision svg{
    height: 100px;
    width: 100px;
}

.capa h3{
    text-align: center;
}

.grid-item {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #03afff;
    border-radius: 4px;
    transition: transform 0.3s ease-in-out;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grid-item:hover {
    filter: opacity(0.9);
    transform: scale(1.04);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    padding: 20px;
    grid-auto-flow: dense;
}
.grid-item .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    transition: all 400ms ease-out;
    opacity: 0;
    text-align: center;
    visibility: hidden;
}
.grid-item:hover > .capa {
    opacity: 1;
    visibility: visible;
}
.grid-item:hover > .capa h3{
    margin-top: 70px;
    margin-bottom: 15px;
}

.grid-item:hover > img{
    transform: scale(1.3);
}

.grid-item .capa h3{
    color: #fff;
    font-weight: 400;
    margin-bottom: 120px;
    transition: all 400ms ease-out;
    margin-top: 30px;
}

@media (min-width: 600px) {
    .wide {
        grid-column: span 2;
    }

    .tall {
        grid-row: span 2;
    }
}

.Titulo-Historia{
    height: 150px;
    color: silver;
}
.Titulo-Historia h2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 2.5rem;
    color: white;
}

.contenedor2{
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.tarjeta{
    height: 75px;
    width: 200px;
    background-color: #101010;
    border-radius: 10%;
    box-shadow: 16px 14px 20px #0000008c;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta::before{
    content: "";
    position: absolute;
    height: 300px;
    width: 300px;
    background-image: conic-gradient(#178A8C 20deg, transparent 120deg);
    animation: rotar 2s linear infinite;
}

@keyframes rotar{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}

.tarjeta::after{
    content: "";
    position: absolute;
    height: 65px;
    width: 190px;
    background-color: #101010;
    border-radius: 10%;
    box-shadow: inset 16px 14px 20px #0000008c;;
}


.contenedor2 h2{
    color: #4EB4B7;
    z-index: 2;
    background-color: transparent;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    text-shadow: 5px 5px 5px black;
}
.contenedor2 a{
    text-decoration: none;
    color: #4EB4B7;
    font-size: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    text-shadow: 5px 5px 5px black;
}
.Lideres-en-transporte-de-calidad{
    display: flex;
    background: #4444;
}
.img_lideres{
    width: 50%;
    height: 100%;
}
#imagen{
    width: 100%;
    height: 120%;
}
.Texto_lideres{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.Texto_lideres h2{
    color: #4EB4B7;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.Texto_lideres h3{
    color: #4EB4B7;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.Texto_lideres p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: ghostwhite;
}
