/* contact */
    .contact{
        width: 100%;
    }

    /* part contact */
        .containerContact{
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 64px;
            flex-wrap: wrap;
        }

        .contentContact{
            width: 400px;
        }
        
        .contentContact .titre{
            position: relative;
            left: 0;
            transform: translatex(0);
        }

        .textContact{
            margin-bottom: 48px;
            text-align: justify;
        }

        .infoContact{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .infoItem{
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .boxContactImg{
            width: 60px; height: auto;
            flex: 0 0 60px;
        }

        .boxContactImg img{
            object-fit: contain;
        }

        .boxInfoContact p:first-child{
            font-weight: 600;
            text-transform: capitalize;
        }

        .boxSocialContact{
            margin-top: 70px;
        }

        .followUs{
            margin-bottom: 5px;
            font-weight: 600;
        }

        .socialContact{
            display: flex;
            gap: 20px;
        }

        .socialContact a{
            width: 35px; height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--red);
            border-radius: 50%;
        }

        .socialContact a:hover{
            transform: translateY(-3px);
        }

        .socialContact a i{
            color: var(--white);
        }
    /* part contact */

    /* form contact */
        .contentContact:last-child{
            box-shadow: var(--box-shadow);
            border-radius: 32px;
            padding: 32px;
        }

        .titleForm{
            font-size: 22px;
            text-align: center;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .formContact input, .formContact textarea{
            width: 100%;
            padding: 5px 8px;
            border: none;
            border-bottom: 1px solid var(--light-black);
            margin-bottom: 16px;
        }

        .formContact input::placeholder, .formContact textarea::placeholder{
            color: var(--light-black);
        }

        .formContact textarea{
            height: 220px;
            resize: none;
            border: 1px solid var(--light-black);
            border-radius: 16px;
        }
    /* form contact */

    /* section map */
        .sectionMap{
            margin-top: 64px;
            width: 100%; height: 300px;
        }
    /* section map */
/* contact */