body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    
}

/* Début index */
.suggestion_site_container {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid black;
    padding: 4% 0%;
    margin-bottom:2%;
    text-decoration: none;
    color: black;
}

.suggestion_site_info_container div {
    display: flex;
    align-items: center;
}
.suggestion_site_info_container div img{
    margin-right: 5px;
}
.suggestion_site_image {
    width: 25%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: #f1f1f1;*/
}
.suggestion_site_price{
    font-size: 1.2em;
    font-weight: bold;
    color: #E91E63;
}
.suggestion_site_content {
    width: 70%;
    margin: auto;
}

.suggestion_site_content h3 {
    font-weight: bold;
}

.suggestion_site_info_container {
    display: flex;
    flex-flow: wrap;
    margin-top: 5%;
    width: 100%;
    justify-content: space-between;
    column-gap: 10%;
    
}
.suggestion_site_container:hover {
    background-color: #f7f7f7; /* Ajout d'une couleur de fond au survol */
    border-radius: 10px 10px 0px 0px;
    text-decoration: none;
    color:#030228;
}

.home_top{
    display: flex;
    justify-content: space-between;
    margin: 10% auto;
    width: 70%;
}
.home_container_logo{
    width: 40%;
}
.home_container_logo img{
    width: 100%;
}
.home_container_text{
    width: 50%;
    margin-top: 50px;
}
.home_container_text h1{
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #E91E63;
}
.home_container_text p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin: 5% auto;
}
.home_container_button{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.home_container_button a{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}
.home_container_button a:hover{
    color: #E91E63;
    text-decoration: none;;
}
#home_btn_acheter{
    background-color: #E91E63;
    border : 2px solid #E91E63;
}
#home_btn_acheter:hover{
    background-color: white    
}
#home_btn_vendre{
    background-color: #00BDC9;
    border: 2px solid #00BDC9;
}
#home_btn_vendre:hover{
    background-color: white;
    color: #00BDC9;
    border: 2px solid #00BDC9;
}
.home_container_button a:last-child{
    margin-right: 0;
}
.home_container{
    width: 70%;
    margin: 10% auto;
}
.home_container h1, .estimation h1{
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #E91E63;
}
.home_container h2 , .estimation h2{
    font-size: 1.5rem;
   
}
.home_container p{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin: 2% auto;
}
.container_estimer{
    background-color: #E91E63;
    color: white;
    padding: 5%;
    margin: 5% auto;
    text-align: center;   
    border-radius: 5px;
}
.container_estimer h1{
    color: white;
}
.redir_estimer_site {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    background-color: #E91E63;
    border : 2px solid white;
}
.redir_estimer_site:hover{
    background-color: #E91E63;
    border : 2px solid #00BDC9;
}
/* Fin index */



/* Début navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 5%;*/
    background-color: white;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    position: fixed!important;
    width: 100%;
    z-index: 100;
    top: 0;
}
.navbar-light .navbar-nav .nav-link{
    text-decoration: none;
    color: black !important;
}
.navbar-nav li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}
.navbar-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}
.navbar-nav li a:hover::after {
    width: 100%;
    transition: width .3s;
}
.navbar-nav a:hover::after {
    width: 100%;
    transition: width .3s;
}
#responsive_navbar_member{
    display: none;
}

/* Fin navbar */



/* Début Footer */
footer{
    width: 100%; 
    box-shadow: 0 0 36px -23px rgba(0, 0, 0, 0.75);
    padding: 2% 0%;
}
footer a{
    text-decoration: none;
    color: black;
}
footer ul{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer ul li{
    margin: 0 2%;
}
footer ul li a{
    color: #9d9d9d;
}
footer ul li a:hover{
    color: black;
}
/* Fin Footer */

