*
{
	margin:0px;
	padding:0px;
	transition:all 0.3s ease-in-out;
	box-sizing:border-box;
}
body
{
	font-family:'Poppins',sans-serif !important;
}

/* HEADER */

.main_header_container
{
     background: #fff;
    padding: 25px 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* LOGO */

.logo{
font-size:26px;
font-weight:700;
color:#ff7a00;
}

.logo span{
color:#333;
}

/* LOCATION */

.location_container{
cursor:pointer;
margin-left:35px;
font-size: 16px;
}

/* POST BUTTON */

.listing_btn_header_section{

background:#3f4b59;
color:#fff;
border-radius:30px;
padding:8px 18px;
border:none;

}

.listing_btn_header_section span{

background:#ffc107;
color:#000;
font-size:10px;
padding:3px 6px;
border-radius:10px;
margin-left:5px;

}

/* login_btn_header */

.login_btn_header{
color:#ff6b6b;
margin-right:10px;
text-decoration:none;
}

.signup_btn_header{

border:1px solid #ddd;
padding:6px 15px;
border-radius:20px;
text-decoration:none;
color:#333;

}

/* CITY DROPDOWN */
.city_dropdown_container
{
position:absolute;
top:100px;
left:150px;
width:750px;
background:#fff;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border-radius:10px;
padding:20px;
display:none;
animation:drop .3s;
z-index: 999;
}
.city_dropdown_container h6
{
   font-weight: 600;
   font-size: 18px;
   margin-bottom: 10px;
}

@keyframes drop{

from{
opacity:0;
transform:translateY(-10px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* CITY LINKS */

.city_list_items a{

display:block;
text-decoration:none;
color:#444;
margin-bottom:6px;

}

.city_list_items a:hover{

color:#ff7a00;

}

/* SLIDE MENU */

.side_menu_conatiner
{
position:fixed;
top:0;
right:-300px;
width:300px;
height:100%;
background:#fff;
box-shadow:-5px 0 20px rgba(0,0,0,0.2);
padding:25px;
transition:.4s;
z-index:2000;
}

.side_menu_conatiner.open{

right:0;

}

.menu_close_btn
{
font-size:22px;
cursor:pointer;
margin-bottom:20px;
width: 35px;
height: 36px;
border-radius: 8px;
border: 1px solid;
display: flex;
justify-content: center;
align-items: center;
}

.side_menu_conatiner a
{
display:block;
text-decoration:none;
color:#333;
margin-bottom:15px;
font-weight:500;
}

/* overlay_container */

.overlay_container
{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.4);
display:none;
z-index:1500;

}

.overlay_container.show{
display:block;
}
.home_loan_section
{
/*	font-weight:600;*/
	color:#000;
	padding:5px 0px;
	border-bottom:2px solid #FF7A00;
}
.menu-container
{
	box-shadow:0px 0px 5px rgba(0, 0, 0,0.5);
	width:50px;
	height:40px;
	font-size:25px; 
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:10px;
}

/* MOBILE */

@media(max-width:768px){

.city_dropdown_container{

width:95%;
left:2%;

}

}




.header-right{
    position:relative;
}

/* ICON */
.profile-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #fff;
    transition:0.3s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.9);
}

.profile-icon:hover{
    transform:scale(1.1);
}

/* DROPDOWN */
.profile-dropdown{
    position:absolute;
    right:0;
    top:55px;
    width:300px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    padding:15px;
    display:none;
    animation:fadeIn 0.3s ease;
}

/* HEADER */
.profile-header{
    display:flex;
    gap:12px;
    align-items:center;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
    margin-bottom:10px;
}

.profile-header img
{
width: 50px;
box-shadow:0px 0px 5px rgba(0, 0, 0, 0.7);
border-radius: 50%;
height: 50px;
}

.profile-header h4{
    margin:0;
    font-size:16px;
}

.profile-header p{
    margin:0;
    font-size:13px;
    color:#777;
    margin-top: 5px;
}

/* MENU */
.profile-menu a{
    display:block;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:0.3s;
}

.profile-menu a:hover{
    background:#f5f5f5;
    padding-left:15px;
}

/* LOGOUT COLOR */
.logout{
    color:#e74c3c;
}

/* ANIMATION */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


.profile-box:hover + .profile-dropdown{
    display:block;
}


/*------------------footer---------------*/
.footer_main{
    position:relative;
    background:url('https://images.unsplash.com/photo-1560185127-6ed189bf02f4') center/cover no-repeat;
    color:#fff;
}

/* OVERLAY */
.footer_overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.85);
}

/* CONTAINER */
.footer_container{
    position:relative;
    display:flex;
    gap:50px;
    padding:60px 80px;
}

/* COLUMN */
.footer_col{
    flex:1;
}

/* LOGO */
.footer_logo{
    font-size:26px;
    font-weight:bold;
}

.footer_logo span{
    color:#ff7a00;
}


/* TEXT */
.footer_about p{
    font-size:14px;
    color:#ccc;
    margin:15px 0;
    line-height:1.6;
}

/* CONTACT */
.footer_contact
{
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    gap:1px;
}

.footer_contact li{
    margin:8px 0;
    font-size:14px;
    display: flex;
    align-items:center;
}

.footer_contact li i
{
    width: 25px;
    height: 25px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff7a00;
    border-radius: 9px;
    font-size: 13px;
}

/* LINKS */
.footer_links h3{
    margin-bottom:15px;
    font-size: 18px;
    color:#ff7a02;
}

.footer_links_grid{
    display:flex;
    flex-direction:column;
}

.footer_links_grid ul{
    list-style:none;
    padding:0;
}

.footer_links_grid ul a
{
    text-decoration:none;
}

.footer_links_grid li{
    font-size:14px;
    color:#ccc;
    margin:6px 0;
    cursor:pointer;
    display:flex;
    align-items:center;
    transition:all 0.3s ease;
}

/* BEFORE ARROW */
.footer_links_grid li::before{
    content:"→";
    font-size:15px;
    font-weight:600;
    color:#ff7a00;
    margin-right:8px;

    opacity:0;
    transform:translateX(-10px);
    transition:all 0.3s ease;
}

/* HOVER EFFECT */
.footer_links_grid li:hover::before{
    opacity:1;
    transform:translateX(0);
}

/* OPTIONAL: TEXT MOVE EFFECT */
.footer_links_grid li:hover{
    padding-left:5px;
    color:#ff7a00;
}

/* SOCIAL */
.footer_social{
    display:flex;
    gap:10px;
    margin:20px 0 20px;
}

.footer_social a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    border-radius:3px;
    font-size: 18px;
}

/* COLORS */
.fb{background:#3b5998;}
.wa{background:#25d366;}
.in{background:#0077b5;}
.ig{background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);}
.yt{background:#ff0000;}

/* NEWSLETTER */
.footer_newsletter{
    margin-top:10px;
}

.footer_newsletter input
{
    width: 100%;
    padding: 8px 15px;
    border: none;
    margin-bottom: 10px;
    font-size: 13px;
    border-radius: 5px;
}

.footer_newsletter button
{
    width: 100%;
    padding: 7px 0px;
    background: #ff7a00;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    border-radius: 5px;
}

.footer_col .news_title
{
    font-size: 20px;
    color: #ff7a00;
}
.footer_col .socal_descrepastion
{
    font-size:13px;
}

.quicks_link
{
    display:flex;
    gap:45px;
}
/* RESPONSIVE */
@media(max-width:768px){

    .footer_container{
        flex-direction:column;
        padding:40px 20px;
    }

    .footer_links_grid{
        flex-direction:column;
    }
}


/*----------boottom_footer---------*/
.bottom_footer
{
    display:flex;
    justify-content:space-around;
    padding:15px;
    background:#ff7a00;
    font-size:15px;
}


.bottom_footer .right_items
{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    text-decoration:none;
}

.bottom_footer .right_items a,.bottom_footer .left_items a
{
    text-decoration: none;
    color:#fff;
    font-weight:600;

}
/*----------boottom_footer---------*/

/*------------------footer---------------*/




/*------------header_foooter_media_screen-----------*/

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

.main_header_container
{
  padding: 25px 20px;
}

.location_container
{
    display:none;
}

.listing_btn_header_section
{
    display:none;
}

.home_loan_section
{
    display:none;
}

.login_btn_header
{
    display:none;
}

.signup_btn_header
{
    display:none;
}

}



/*------------header_foooter_media_screen-----------*/


