.bannerHome{
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        gap: 50px;
        justify-content: center;
        align-items: center;
        box-sizing: content-box;
        background-image: linear-gradient(to top, #000000a9, #000000a9), url(img/BannerHome.webp);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: cover;
    }

    .bannerHome p{
        color: white;
        font-size: 1.5rem;
        margin-left: 30px;
        margin-right: 30px;
    }

    
    .logoBanner{
        height: 100px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }



    .contenedorDuo{
        display: flex;
        width: 100%;
        height: 500px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .contDuo{
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .contDuo p{
        font-size: 25px;
        margin:15px
    }

    .contenedorGrid2x2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        align-items: center;
        justify-items: center;
        
    }
    .contGrid{
        display: flex;
        flex-direction: column;
    }

    .manuCard{
        border: 3px solid #002e52;
        border-radius: 20px;
        width: 300px;
        margin: 10px;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #002e52;
    }

    .contTitle{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .card2{
        border: 3px solid #002e52;
        margin: 10px;
        width: 100%;
        height: 400px;
        border-radius: 20px;
    }

    .card2 p{
        font-size: clamp(15px, 2.5vw, 20px);
        margin-left: 20px;
        margin-right: 20px;
        border-left: 3px solid #FF6B1A;
        padding: 10px;
    }

    .card2 h3{
        font-size: 1.3rem;
    }

    .card2 img{
        height: 80px;
        margin-bottom: 10px;
    }
    
  @media (min-width:767px) and (max-width:1023px) {
        .noDisplay{
            display: none;
        }

        .contTIAAW{
            background:linear-gradient(to top, #ffffffab, #ffffffab), url(img/Auto2.gif);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: 50% 50%;
        }

        .card2{
            height: 100%;
            
        }

       .card2 p{
    font-size: clamp(15px, 2vw, 18px);
}
    }