.box_contact{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 150px;
}

.info_salon{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info_salon h1{
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info_salon p {
    width: 70%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--pcolor);
    padding: 10px;
    margin: 20px;
    transition: var(--transition);
    background-color: var(--pcolor);
    color: var(--bgb);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.info_salon p:hover{
    background-color: var(--bgb);
    color: var(--pcolor);
}

.info_salon img{
    width: 150px;
    height: 150px;
    transition: var(--transition);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}

.info_salon img:hover{
    filter: invert(100%) hue-rotate(180deg);
    transition: var(--transition);
}

.carte{
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carte iframe {
    width: 90%;
    border-radius: var(--border-radius);
    border: 1px solid var(--pcolor);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
    .box_contact{
        flex-direction: column;
        margin-top: 100px;
    }
    .info_salon{
        width: 100%;
    }
    .info_salon p{
        width: 50%;
    }
    .info_salon img:hover{
        filter: invert(0);
        transition: var(--transition);
    }
    .carte{
        width: 100%;
        margin: 20px 0 20px 0;
    }
}