.contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.contact .text-header{
    color: var(--qmc);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
}
.contact .card {
    border-radius: 10px;
    min-height:50px;
    transform: perspective(1px) translate(0);
    transition: all 0.8s;
}
.contact .card:before{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background:var(--qmc);
    transform: rotateY(90deg);
    border-radius: 10px;
    transition: all 0.8s;
}
.contact .card:hover::before{
    transform: rotateY(0deg);
}
.contact .card:hover{
    color: var(--tc);
}
.contact .card:hover .icon{
    color: var(--qmc);
}
.contact .card:hover .badge span{
    background-color: white;
    color: var(--qmc);
}
.contact .card:hover .text{
    color: white;
}
.contact .icon {
    width: 50px;
    height: 50px;
    background-color: #eee;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 39px;
    transition: all 0.8s;
}
.contact .badge span {
    background-color: var(--qmc);
    width: 60px;
    height: 25px;
    padding-bottom: 3px;
    border-radius: 5px;
    display: flex;
    color: var(--tc);
    justify-content: center;
    align-items: center;
    transition: all 0.8s;
}
@media only screen and (max-width: 576px)  {
    .contact .container{
        margin-top: 90px;
    }
}