@font-face {
    font-family: "Monserrat";
    src: url("../font/Montserrat.ttf");
}
@font-face {
    font-family: "Mistress";
    src: url("../font/MistressBenedictBrush-Regular.ttf");
}
@keyframes loader {
    0% {
        opacity: 1;
    }
    100% {
        top:-120%;
        display: none;
    }
}
@keyframes maskBoby {
    0% {
        visibility: hidden;
        transform: translateY(100%);
        opacity: 0;
    }
    50% {
        visibility: visible;
        transform: translateY(70%);
        opacity: 0;
    }
    100% {
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}
body {
    width: 100%;
    max-width: 1440px;
    box-sizing: border-box;
    margin: auto;
}
.anim {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    animation: loader 6s cubic-bezier(0,.61,.99,.36) forwards; 
}
.present {
    font-family: "Mistress";
    font-size: 40px;
}
.bienvenue {
    font-size: 60px;
}
.logo {
    width: 350px;
}
.postLoader {
    width: 100%;
    height: 100%;
    background-color: #EAC7FD;
    position: relative;
    top: 0;
    z-index: 100;
    visibility: hidden;
    animation: maskBoby 3s linear 3.3s forwards;
}

#heading {
    width: 100%;
    background-color: #EAC7FD;  
    text-align: center;
    padding: 50px 0 50px 0;
}
.profilPic {
    width: 100px;
    border-radius: 50%;
    border: 10px solid white;
    object-fit: cover;
}
.addContact {
    position: absolute;  
    top: 80px;
    right: 40%;
    border: 10px solid #D357F5;
    background-color: #D357F5;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    z-index: 1;
}
.addContact:hover {
    border: 10px solid white;
    background-color: white;
    color: #D357F5;
}
.title1 {
    font-family: "Monserrat";
    font-weight: 500;
    margin-bottom: 0;
}
.jobDescribe {
    font-family: "Monserrat";
    font-weight: 300;
    margin-top: 10px;
    font-size: 14px;
}
.blocIcon {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.item {
    margin-top: 20px;
    color: white;
    font-size: 30px;
    border: 25px solid #D357F5;
    background-color: #D357F5;
    border-radius: 5px;
}
.fa-location-dot {
    border-left: 30px solid #D357F5;
    border-right: 30px solid #D357F5;
}
#speech {
    background-color: white;
    padding-top: 10px;
}
.text1, .text2 {
    width: 80%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    font-family: "Montserrat";
    font-size: 14px;
}
.text2 {
    margin-top: 10px;
    border-bottom: 2px solid #EAC7FD;
    padding-bottom: 30px;
}
.resaBtn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.fa-mobile-screen-button {
    font-size: 30px;
}
.infoContact {
    display: flex; 
    margin-top: 20px;  
    width: 100%;
}
.infoContact div {
    width: 100%;
}
.infoContact:hover {
    width: 100%;
    background-color: #EAC7FD;
}
.linkSocial {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    margin-left: 20px;
}
.logoSocial {
    font-size: 30px;
    margin-left: 10px;
    color: white;
    border: 10px solid #D357F5;
    background-color: #D357F5;
    border-radius: 50%;
}
.logoSocial:hover {
    color: #D357F5;
    border: 10px solid white;
    background-color: white;
}
.info {
    display: block;
    margin: 20px 0 20px 20px;
    font-family: "Monserrat";
    font-weight: 300;
    font-size: 14px;
}
.info > h3 {
    margin-bottom: 0;
}
.info > p {
    margin-top: 5px;
}
.footer {
    display: flex;
    border-top: 2px solid #D357F5;
    background-color: #EAC7FD;
    padding: 30px 0 30px 0;
    align-items: center;
    justify-content: center;
}
.footer > a {
    text-decoration: none;
    color: black;
    margin: 0 10px 0 5px;
    font-size: 10px;
}
.footer > a:hover {
    color: #D357F5;
}
.footer > p {
    font-size: 10px;
}

@media screen and (max-width: 1024px) {
    .addContact {
        right: 36%;
    }
}
@media screen and (max-width: 768px) {
    .addContact {
        right: 30%;
    }
}
@media screen and (max-width: 425px) {
    .addContact {
        right: 19%;
    }
}
@media screen and (max-width: 320px) {
    .logo {
        width: 300px;
    }
    .addContact {
        right: 10%;
    }
}
@media screen and (max-width: 280px) {
    .logo {
        width: 250px;
    }
    .addContact {
        right: 10%;
    }
}