@font-face {
    font-family: 'Rajdhani';
    src: url('../ressources/fonts/Rajdhani-Bold.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 400';
    src: url('../ressources/fonts/Poppins-Regular.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 500';
    src: url('../ressources/fonts/Poppins-Medium.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 600';
    src: url('../ressources/fonts/Poppins-SemiBold.ttf') format("truetype");
}
@font-face {
    font-family: 'Poppins 700';
    src: url('../ressources/fonts/Poppins-Bold.ttf') format("truetype");
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', serif;
    color: black;
}

/*---------------Container------------------*/
.container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}
/*---------------Path----------------*/
.path {
    margin: 5% 0 2% 10%;
}
.path, .path a {
    color: grey;
    font-family: 'Poppins 500', sans-serif;
    font-size: 14px;
    text-decoration: none;
}
.path a:hover {
    color: #fa4c03;
}
.content {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
}
h3 {
    font-weight: bold;
}
#first, #second, #third {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.content article {
    margin: 3% auto;
}
.title {
    font-family: Rajdhani, sans-serif;
    font-size: 35px;
    color: #303133;
}
.paragraph {
    font-family: "Poppins 400", sans-serif;
    font-size: 15px;
    color: #777777;
}
#imgConception, #imgDevelopment, #imgRealisation {
    width: 700px;
    height: 100%;
    margin: 0 1%;
}
.listeReal li {
    font-family: "Poppins 400", sans-serif;
    font-size: 15px;
    color: #777777;
}
#redirectToReal {
    text-decoration: none;
    color: #0a1d24;
}

@media only screen and (max-width: 1024px) {
    #first, #second, #third {
        flex-direction: column;
    }
    #first img, #second img, #third img {
        display: none;
    }
    #first div p, #second div p, #third div p {
        width: 90%;
    }
    .path {
        display: none;
    }
}

@media only screen and (max-width: 426px) {
  .container {
    margin-top: 25%;
  }
}