
    .gallery p {
        color: #edf3ffff;
    }
    .gallery h1 {
         color: #707070;
    }
    .gallery h2 {
        color: #707070;
    }
    .gallery h3 {
        color: #707070;
    }
    .gallery h4 {
        color: #707070;
    }
    .gallery h5 {
        color: #707070;
    }
    .gallery h6 {
        color: #707070;
    }

    .gallery {
        min-height: 100vh;
        background-image: url(../img/background/background1.jpg);
    }
    .gallery .body {
        background: rgba( 31, 31, 31, 0.55 );
        box-shadow: 5px 6px 6px rgba( 112, 112, 112, 0.37 );
        backdrop-filter: blur( 4.5px );
        -webkit-backdrop-filter: blur( 5.0px );
        border-radius: 15px;
        border: 1px solid rgba( 112, 112, 112, 0.18 );
        margin-top: 12rem;
        padding-bottom: 4rem;
        text-align: center;
        margin-bottom: 8rem;
    }
    .gallery .body .title {
        padding: 4rem 0;
    }
    .gallery .body .description {
        padding: 1rem 4rem;
        text-align: justify;
    }
    .gallery .body .rowContent {
        padding: 4rem;
        justify-content: center;
    }
    .gallery .body .rowContent .cardGallery {
        border: 2px solid #707070;
        border-radius: 5px;
        cursor:pointer;
        padding: 0;
        margin: 2rem 1rem;
        overflow: hidden;
        transition: 0.5s;

     }
     .gallery .body .rowContent .cardGallery a{
         cursor: pointer;
         text-decoration: none;
         color: inherit;
     }
    .gallery .body .rowContent .cardGallery .imgCard{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 12rem;
        transition: 0.5s;

    }
    .gallery .body .rowContent .cardGallery .titleCard{
        margin-top:1rem;
        margin-bottom: 1rem;
        backdrop-filter: blur( 10px );
        -webkit-backdrop-filter: blur( 10px );


    }
    .gallery .body .rowContent .cardGallery .titleCard h6{
        text-transform: uppercase;
        color: #edf3ffff;
    }
    .gallery .body .rowContent .cardGallery:hover .imgCard{
        transform: scale(1.1);
    }
