.FirstText{
    width: 60%;
}

body{
    overflow-x: hidden !important;
}


.nav-link{
    color:#106598 !important;
    font-size: 17px;
}

p{
    font-size: 18px;
}
h3{
    color: #106598 !important;
}

.Content{
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.CardsContainer{
    display: flex;
    justify-content: center;
    gap: 3%;

}

.cards{
    height: 300px;
    width: 300px;
    border-radius: 27px;
    transition: all 0.3s;
    -webkit-transition: width 1s;
    transition: width 1s;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
              0 2px 2px rgba(0,0,0,0.12), 
              0 4px 4px rgba(0,0,0,0.12), 
              0 8px 8px rgba(0,0,0,0.12),
              0 16px 16px rgba(0,0,0,0.12);

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;

}
.cards:hover{
    transform: scale(1.1);
}

.Parceiros{
    margin-top: 6%;
    margin-bottom: 6%;
    height: auto;
}

footer{
    background-image: url('/images/footer.png') !important;
    background-repeat: no-repeat;
    padding: 3%;
    background-size: cover;
    background-color: transparent !important;
    color: #fff !important;
}

.tittle_footer{
    color: #fff !important;
}


footer h3{
    color: #fff !important;
}


@media only screen and (max-width: 869px)  {
    .Content{
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .FirstText{
        width: 100%;
    }
    .CardsContainer{
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        justify-items: center;
        align-items: center;
    }
    
    .cards{
        height: 300px;
        width: 300px;
        margin-top: 5%;
        border-radius: 22px;
        background-color: transparent;
    }
}
