h1 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    color: #8D8C89;
    text-align: center;
    line-height: 8.1rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.contact h2 {
    font-weight: 600;
    font-size: 2.1rem;
    color: #8D8C89;
    letter-spacing: 0.08px;
    padding-bottom: 1rem;
    text-align: center;
}

span {
    font-weight: 300;
}


/* ENVELOPPE-------------------------------------- */

#enveloppe {
    width: 10rem;
    padding: 2rem 0;
}

.st00 {
    fill: #EE8E7F;
    stroke: #EE8E7F;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;

    -webkit-animation-name: fond;

    animation-name: fond;
    fill-opacity: 0;
    stroke-opacity: 0;

    -webkit-animation-delay: 2s;

    animation-delay: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

@-webkit-keyframes fond {
    from {
        fill-opacity: 0;
        stroke-opacity: 0;
    }

    to {
        fill-opacity: 1;
        stroke-opacity: 1;
    }
}

@keyframes fond {
    from {
        fill-opacity: 0;
        stroke-opacity: 0;
    }

    to {
        fill-opacity: 1;
        stroke-opacity: 1;
    }
}

.st11 {
    fill: none;
    stroke: #838584;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-miterlimit: 10;
    stroke-dasharray: 413;
    -webkit-animation:
        envel 2s linear 0s normal both;
    animation:
        envel 2s linear 0s normal both;
}

@-webkit-keyframes envel {
    from {
        stroke-dashoffset: -413;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes envel {
    from {
        stroke-dashoffset: -413;
    }

    to {
        stroke-dashoffset: 0;
    }
}




/* RESPONSIVE-------------------------------------- */

@media only screen and (max-width: 1080px) {

    .contact {
        top: 460px;

    }
    h1 {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@media only screen and (max-width: 780px) {

    .contact {
        top: 340px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 580px) {

    .contact h2 {
        text-align: center;
    }
}