 
.search_content{
    margin-top: 40px;
}

.back_link{
    margin-left: 60px;
    margin-top: 20px;
}

.back_link a{
    text-decoration: none;
    
}
.back_link a span{
    padding: 16px 20px;
    border-radius: 50%;
    border: 1px solid silver;
    font-family: helvetica,arial,sans-serif;
    font-weight: lighter;
}

.search_container_input{
    width: 60%;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search_container_input input{
    border: none;
    outline: none;
    border-bottom: 2px solid rgb(57, 86, 182);
    color: rgb(68, 68, 68);
    font-size: 18px;
    padding: 10px 15px;
    padding-bottom: 2px;
    width: 80%;
    text-align: center;
}

.results_title{
    margin: 40px 0;
    font-size: 20px;
    color: rgb(68, 68, 68);
    margin-left: 80px;
}

.banner_container{
    width: 100%;
    height: 550px;
    background-color: gray;
    position: relative;
}

.banner_slider_container{
    width: 100%;
    position: relative;
    
}

.banner_slider{
    width: 100%;
    height: 100%;
}

.banner_img{
    width: 100%;
    height: 100%;
}

.banner_img img{
    width: 100%;
    height: 550px;
    object-fit: cover;
    opacity: 0.4;
}

.banner_arrows{
    position: absolute;
    width: 80%;
    margin: auto;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.banner_arrows .slick-prev{
    outline: none;
    border: none;
    color: rgb(71, 71, 71);
    background-color: white;
    font-size: 13px;
    padding: 25px 27px;
    border-radius: 50%;
    margin: 5px 0;
}

.banner_arrows .slick-next{
    outline: none;
    border: none;
    color: rgb(71, 71, 71);
    background-color: white;
    font-size: 13px;
    padding: 25px 27px;
    border-radius: 50%;
}

.banner_text_container{
    position: absolute;
    top: 30%;
    left: 20%;
    width: 40%;
    margin: auto;
}

.banner_title{
    color: white;
    font-size: 40px;
    font-family: 'Open sans',helvetica,sans-serif;
    font-weight: bold;
}

.banner_desc{
    margin-top: 60px;
    font-size: 16px;
    color: white;
}

.banner_link{
    margin-top: 30px;
}

.banner_link a{
    padding: 10px 15px;
    font-size: 14px;
    color: white; 
    background-color: var(--secondary);
    border-radius: 5px;
}

.presentation_container{
    width: 75%;
    margin: auto;
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    place-items: center;
}

    .presentation_image_container{
        width: 100%;
        position: relative;
    }

    .presentation_image{
    width: 100%;
    border-radius: 10px;
    box-shadow: -10px 10px 10px rgb(87, 87, 87);
    }

    /* .present_background{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background-color: var(--secondary);
        margin-left: -20px;
        border-radius: 10px;
        margin-top: 30px;
        width: 100%;
        height: 100%;
    } */


.presentation_image img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(70%);
}

.presentation_content{
    padding: 20px;
    height: 90%;
    margin: auto;
}

.present_content_title{
    color: rgb(71, 71, 71);
    font-size: 30px;
    font-weight: bold;
    font-family: 'Open sans',helvetica,sans-serif;
}

.present_content_desc{
    margin-top: 40px;
    color: gray;
    font-size: 15px;
    padding: 5px;

}

.presentation_link{
    margin-top: 30px;
}

.presentation_link a{
    text-decoration: none;
    color: white;
    background-color: var(--primary);
    padding: 10px 15px;
    border-radius: 5px;
    transition: .2s ease-out;
}

.presentation_link a span{
    margin-left: 5px;
    font-size: 12px;
    transition: .2s ease-out;
}

.presentation_link a:hover {
    background-color: var(--secondary);
}

.presentation_link a:hover > span{
  margin-left: 15px;
}

.dernier_ajouts_container{
    margin-top: 100px;
    background-color: rgb(240, 240, 240);
    padding: 30px;
}

.last_add_title{
    text-align: center;
    color: rgb(22, 36, 80);
    font-size: 30px;
    font-weight: bold;
}

.ads_selection{
    z-index: 1000;
    position: sticky;
    top: 0;
    height: 70px;
    width: 50%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_selector{
    padding: 10px 20px;
    background-color: white;
    cursor: pointer;
    transition: .2s ease-out;
    border-right: 1px solid rgb(235, 235, 235);
    font-size: 14px;
}

.section_selector:hover{
    background-color: var(--secondary);
    color: white;
}

.section_selector.active{
    background-color: var(--secondary);
    color: white;
}

.sliders_container{
    position: relative;
}

.last_add{
    transition: .4s ease-out;
}

.add_type{
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(71, 71, 71);
}

.add_type div:first-of-type{
    color:rgb(71, 71, 71);
    font-size: 20px;
    font-family: 'Noto sans',helvetica, sans-serif;
}

.add_type div:last-of-type{
    color: gray;
    font-size: 14px;
}

.last_add_slider_container{
    margin: auto;
    margin-top: 60px;
    position: relative;
    
}

.last_add_slider{
    display: grid; 
    grid-template-columns: repeat(3,1fr);
    width: 80%;
    margin: auto;
}

.last_add_card{
    background-color: white;
    margin: 9px;
    border-radius: 5px;
    position: relative;
}

.last_img_container{
    width: 100%;
    height: 250px;
    position: relative;
    display: block;
    text-decoration: none;
}

.last_img_container:hover{
    filter: brightness(90%);
    text-decoration: none;
}

/* _____  researches cards*/

.last_add_slider.researches{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    width: 90%;
}

.researches .last_add_card{
    background-color: rgb(245, 245, 245);
}

.researches .last_img_container{
    height: 180px;
}

/* ______// researches cards: END*/

.last_add_img{
    width: 100%;
    height: 100%;

}

.last_add_img img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.images_hover0{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.soldout{
    margin-top: 10px;
    margin-right: 10px;
    
}

.soldout img{
    width: 150px;
    height: 100px;
}

.images_hover{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vues_content{
    margin-bottom: 10px ;
    margin-right: 10px;
    padding: 7px 15px;
    background-color: rgba(0, 0, 0, 0.26);
    border-radius: 10px;
}
.vues0{
    margin-right: 15px;
    color: white;
}

.vues{
    color: white;
}

.last_add_content{
    padding: 20px;
}

.add_title{
    font-size: 20px;
    color: rgb(71, 71, 71);
    
}

.add_desc{
    color: gray;
    font-size: 13px;
}

.add_price{
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
}

.add_link{
    margin-top: 20px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.add_link a{
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: var(--secondary);
    color: white;
    font-size: 12px;
    transition: .2s ease-out;
}

.add_link a span{
    margin-left: 7px;
    font-size: 11px;
    transition: .2s ease-out;
}

.add_link a:hover{
    text-decoration: none;
    background-color: rgb(65, 148, 225);
}

.add_link a:hover span{
    margin-left: 12px;
}

.see_more{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.see_more a{
    text-decoration:none;
    color: white;
    background-color:rgb(65, 148, 225);
    padding: 15px 30px;
    border-radius: 5px;
    transition: .2s ease-out;
}

.see_more a:hover{
    background-color: var(--secondary);
    text-decoration: none;
}

.see_more a span{
    font-size: 12px;
    margin-left: 20px;
}

.last_arrows1{
    position: absolute;
    top: 50%;
    width:100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last_arrows1 .slick-prev{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}

.last_arrows1 .slick-next{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}

.last_arrows2{
    position: absolute;
    top: 50%;
    width:100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last_arrows2 .slick-prev{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}

.last_arrows2 .slick-next{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}


.last_arrows3{
    position: absolute;
    top: 50%;
    width:100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last_arrows3 .slick-prev{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}

.last_arrows3 .slick-next{
    border: none;
    background-color: var(--primary);
    color: white;
    outline: none;
    padding: 15px 20px;
    font-size: 25px;
    border-radius: 50%;
}

#domaines{
    
    visibility: hidden;
    height: 0;
}

#villas{
    visibility: hidden;
    height: 0;
}

.servicebtp_container{
    margin-top: 100px;
    
}


.service_title{
    color: rgb(22, 36, 80);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.service_desc{
    width: 50%;
    text-align: center;
    color: gray;
    font-size: 15px;
    margin: 30px auto;
}

.servicesbtp{
    margin: auto;
    margin-top: 60px;
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.service{
    margin: 0 3px;
    position: relative;
}

.service_img{
    width: 100%;
    height: 300px;
}

.service_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_content{
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.973));
    padding: 10px 5px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .service_text{
        text-align: center;
    }
.service_text a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-align: center;
}

.service_text a:hover{
    color: var(--primary);
}

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

    .banner_container{
        height: 450px;
    }
    .banner_arrows{
        display: none;
    }

    .banner_img img{
        height: 450px;
    }

    .banner_text_container{
        top: 20%;
        left: 5%;
        width: 80%;
    }

    .banner_title{
        font-size: 30px;
    }

    .presentation_container{
        width: 90%;
        grid-template-columns: 1fr;

    }

    .presentation_image_container{
        display: none;
    }
    

    .derners_ajouts_container{
       padding: 30px 15px;
    }

    .ads_selection{
        width: 90%;
    }


    .add_type{
        width: 90%;
    }

    .last_add_slider{
        width: 100%;
        grid-template-columns: repeat(3,1fr);
    }

    .last_add_card{
        margin: 9px 3px;
    }

    .last_img_container{
        height: 180px;
    }

    .last_add_content{
        padding: 7px 10px;
    }

    .add_title{
        font-size: 15px;
    }

    .add_link a{
        padding: 7px 14px;
    }


    .see_more a{
        padding: 7px 15px;
    }

    .service_desc{
        width: 70%;
    }

    .servicesbtp{
        grid-template-columns: repeat(2,1fr);
        width: 90%;
        gap: 10px;
    }

}


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

    .last_add_slider.researches{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        width: 90%;
    }

    .banner_arrows{
        display: none;
    }

    .banner_text_container{
        top: 10%;
        left: 5%;
        width: 80%;
    }

    .banner_title{
        font-size: 25px;
    }

    .presentation_container{
        width: 90%;
        grid-template-columns: 1fr;

    }

    .presentation_image_container{
        display: none;
    }
    

    .derners_ajouts_container{
       padding: 30px 15px;
    }

    .ads_selection{
        width: 90%;
    }


    .add_type{
        width: 90%;
    }

    .last_add_slider{
        width: 100%;
        grid-template-columns: repeat(2,1fr);
    }

    .last_add_card{
        margin: 9px 3px;
    }

    .last_img_container{
        height: 180px;
    }

    .last_add_content{
        padding: 7px 10px;
    }

    .add_title{
        font-size: 15px;
    }

    .add_link a{
        padding: 7px 14px;
    }


    .see_more a{
        padding: 7px 15px;
    }

    .service_desc{
        width: 70%;
    }

    .servicesbtp{
        grid-template-columns: repeat(2,1fr);
        width: 90%;
        gap: 10px;
    }

}

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

    .banner_container{
        height: 400px;
    }

    .banner_arrows{
        display: none;
    }

    .banner_text_container{
        top: 20%;
        left: 10%;
     width: 90%;

    }

    .banner_img img{
        height: 400px;
    }


    .banner_title{
        font-size: 20px;
    }

    .presentation_container{
        width: 90%;
        grid-template-columns: 1fr;
        gap: 5px;
        margin-top: 100px;
    }

    /* .presentation_background{
        position: static;
    } */

    .presentation_image_container{
        display: none;
    }

    .presentation_image img{
        display:none;
    }
    
    .presentation_content{
        padding: 10px;
        height: 100%;
        margin: 20px auto;
    }

    .present_content_title{
        font-size: 20px;
        color: var(--primary);
        font-size: 25px;
        text-align: center;
    }

    .present_content_desc{
        margin-top: 15px;
    }

    .dernier_ajouts_container{
        padding: 30px 5px;
    }

    .ads_selection{
        width: 100%;
    }
    .section_selector{
        padding: 5px 10px;
        font-size: 13px;
    }

    .add_type{
        width: 100%;
    }


    .last_add_slider{
        width: 100%;
        grid-template-columns: 1fr;
    }

    .last_add_cart{
        margin: none;
    }

    .last_img_container{
        height: 200px;
    }


    .servie_title{
        font-size: 20px;
    }

    .service_desc{
        width: 90%;
    }

    .servicesbtp{
        width: 90%;
        grid-template-columns: 1fr;
    }


 }

