
.contact_div{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact_infos{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.direct_contact {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.card_cont{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px
}

.card_cont div{
    display: flex;
    flex-direction: column;
    padding: 0px;
    border: none;
    border-color: var(--text-color)79;
    border-radius: 8px;
    gap: 8px;
}

.wrap_cont {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}


.wrap_cont:hover * {
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.wrap_cont:hover i {
    color: var(--hover-color);
}

.midias {
    display: flex;
    width: auto;
    background-color: var(--menu-bg);
    gap: 7px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.wrapper_icon {
    display: flex;
    width: 25px;
    height: 25px;
    padding: 8px;
    border-radius: 100px;
    background-color: #1C1C21;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.wrapper_icon a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper_icon a img{
    width: 20px;
}

.wrapper_icon a i{
    font-size: 20px;
    color: #f8f8f2;
}

.wrapper_icon a:hover{
    transform: scale(1.1);
}

@media (max-width: 1050px) {
    .wrapper_icon {
        width: 15px;
        height: 15px;
    }
    .midias {
        gap: 4px;
    }
    .wrapper_icon a img{
        width: 15px;
    }
    .wrapper_icon a i{
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .contact_infos {
        margin-top: 15px;
    }
}

@media (max-width: 700px) {
    .contact_infos {
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .contact_infos {
        margin-top: 8px;
        display: flex;
        width: 100%;
        gap: 130px;
    }
    .wrap_cont .text_body{
        font-size: 12px;
    }

}

@media (max-width: 400px) {
    .wrap_cont .text_body{
        font-size: 11px;
    }
    .contact_infos {
        gap: 115px;
    }

}
