.contact-header {
    height: 90vh;
    display: flex;
    min-height: 500px;
    padding:6vw 7.5vw 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #F3EDDF;
    background-image: url('../img/mr-icon.webp');
    background-size: 50% auto;
    background-position: 95% 170% ;
    background-repeat: no-repeat; 
    transition: margin ease-in .8s;
}
/* .contact-header.unloaded {
    margin-top: 100vh;
} */
.title {
    font-size: 3.3vw;
    font-family: 'PoppinsBold';
    max-width: 50vw;
    margin-bottom: 1.5vw;
}
.texte {
    font-size: 1.3vw;
}
.email-container {
    padding: 8vw 7.5vw 7vw;
}
.email-label {
    margin-bottom: 1.5vw;
}
.btn.email {
    font-size: 1.2vw;
    font-family: 'PoppinsBold';
    color: #212023;
    width: fit-content;
}
.btn.email .btn__circle-bg {
    width: 2.3vw;
    height: 2.3vw;
    padding: 0.4vw;
    background-color: #212023;
}
.btn.email .btn__arrow svg {
    width: 1.3vw;
}
.btn.email .btn__circle-container{
    height: 2.3vw;
}
.btn.email:hover .btn__circle-container {
    width: 2.3vw;
    margin-right: 1vw;
}
.btn.email::after {
    background-color: #212023;
}
@media only screen and (min-width: 1448px) {
    .contact-header {
        padding: 6vw 12.5vw 0;
    }
    .email-container {
        padding: 6vw 12.5vw 5vw;
    }
} 
@media only screen and (max-width: 767px) {
    .contact-header {
        height: 100vw;
        min-height: 400px;
        padding: 15vw 0;
        align-items: center;
        justify-content: center;
        background-color: #F3EDDF;
        background-size: 60% auto;
        background-position: 100% 100%;
        background-repeat: no-repeat;
    }
    .title {
        font-size: 6.5vw;
        max-width: 90vw;
        text-align: center;
        margin-bottom: 5vw;
    }
    .texte {
        font-size: 4vw;
        text-align: center;
    }
    .btn.email {
        font-size: 3.8vw;
    }
    .btn.email .btn__circle-bg {
        width: 5vw;
        height: 5vw;
        padding: 1.6vw;
    }
    .btn.email .btn__arrow svg {
        width: 2.6vw;
    }
    .btn.email .btn__circle-container{
        height: 5vw;
    }
    .btn.email:hover .btn__circle-container {
        width: 5vw;
        margin-right: 2vw;
    }
    .email-label {
        margin-bottom: 2.5vw;
    }
    .email-container {
        padding: 18vw 7.5vw 18vw;
    }
}