@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');
/* 
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Maven Pro', sans-serif;
*/
:root{
    --white: #ffffff;
    --black: #000000;
    --primary: #e6a33b;
    --dark: #1d1d1d;
    --dark-100: #393939;
    --gray-100: #6f6f6f;
    --gray-200: #7c7c7c;
    --gray-300: #8a8a8a;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
}
html{
    font-size: 16px;
}
body{
    font-size: 1rem;
    line-height: 1.4;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    background-color: var(--white);
    color: var(--gray-200);
}
a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: var(--primary);
}
.text-primary{
    color: var(--primary) !important;
}
h1, h2, h3, h4, h5{
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-100);
    margin-top: 0;
    margin-bottom: 0.5em;
    font-weight: 500;
}
h1{
    font-size: 3rem;
}
h2{
    font-size: 2.5rem;
}
h3{
    font-size: 2rem;
}
h4{
    font-size: 1.5rem;
}
h5{
    font-size: 1.25rem;
}
h6{
    font-size: 1rem;
}
.btn{
    border-radius: 0.35rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 2rem;
    transition: all ease 0.2s;
}
.btn.btn-lg{
    font-size: 1.5rem;
}
.btn-primary{
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover{
    background-color: var(--dark-100);
    border-color: var(--dark-100);
    color: var(--white);
}
.navbar{
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand{
    max-width: 13.75rem;
}
.navbar_main_wrp{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav .nav-item .nav-link{
    font-size: 15px;
    padding: 0.75rem 0.85rem;
    font-weight: 500;
    color: var(--gray-100);
    text-transform: uppercase;
    font-family: 'Maven Pro', sans-serif;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active{
    color: var(--primary);
}
section{
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.head_title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}
.head_title::before,
.head_title::after {
    content: "";
    display: flex;
    border-bottom: 1px solid transparent;
    flex-grow: 1;
    background-color: var(--gray-100);
}
.head_title::before{
    margin-right: 1rem;
}
.head_title::after{
    margin-left: 1rem;
}
.head_title h4{
    margin-bottom: 0;
}
.footer_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--dark);
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--white);
}
.footer_info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.social_wrp{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.social_wrp a{
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    margin: 0 1px;
    text-decoration: none;
    opacity: 0.75;
}
.social_wrp a:hover{
    opacity: 1;
}
.foot_info{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.footer_bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}
.copyrights{
    display: flex;
    align-items: center;
}
.copyrights .c_code{
    margin-right: 0.2rem;
    line-height: 1;
}
.section_tohelp{
    background-image: url('../images/help_bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.section_tohelp::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(5px);
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}
.tohelp_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 1.25rem;
    color: var(--white);
}
.tohelp_content h2{
    color: var(--white);
}
.service_card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.service_card .service_icon{
    color: var(--primary);
    font-size: 4rem;
    margin-bottom: 1rem;
}
.service_card h4{
    color: var(--dark-100);
    font-size: 1.25rem;
}
.service_card p{
    font-size: 0.875rem;
}
/* box card */
.box_card{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
}
.box_card .box_img{
    margin-bottom: 0.5rem;
    overflow: hidden;
}
.box_card .box_img img{
    transform: scale(1,1);
    transition: all ease 0.2s;
}
.box_card .box_img a:hover img{
    transform: scale(1.1,1.1);
}
.box_card h4{
    font-size: 1.875rem;
}
.box_card h4 a:hover{
    color: var(--primary);
}
.searchinfo_wrp{
    background-color: var(--dark-100);
    color: var(--white);
    padding: 3rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    height: 100%;
}
.searchinfo_wrp h2{
    color: var(--white);
    font-size: 2.125rem;
}
.searchinfo_wrp h5{
    color: var(--white);
    margin-bottom: 1rem;
}
.agent_wrp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 1rem;
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 10%;
    z-index: 5;
}
.agent_img {
    width: 9.375rem;
    height: 9.375rem;
    border-radius: 50%;
    box-shadow: 0 0 0 0.5rem #fff;
    overflow: hidden;
    margin-top: -5rem;
    margin-bottom: 1rem;
}
.agent_wrp h2{
    font-size: 1.875rem;
    color: var(--gray-300);
}
.agent_wrp h4{
    font-size: 1.25rem;
    color: var(--gray-300);
}
.section_hero_wrp{
    padding-top: 0;
}
.hero_wrp{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-height: 31.875rem;
    background-image: url('../images/hero_img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}
.hero_wrp::before{
    content: '';
    background: var(--dark);
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero_text{
    padding: 3rem;
    position: relative;
    z-index: 1;
}
.hero_text h2{
    color: var(--white);
}
.inner_banner{
    background-image: url('../images/innerbanner_img.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: var(--dark-100);
    min-height: 18.75rem;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.inner_banner::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);;
}
.inner_banner .inner_title {
    position: relative;
}
.inner_banner .inner_title h1{
    color: var(--white);
}
.form-group{
    margin-bottom: 1rem;
}
.project_item_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.project_item_img{
    width: 10rem;
    padding-right: 1rem;
}
.project_item_card .project_item_content{
    width: calc(100% - 11rem);
    display: flex;
    flex-direction: column;
}
.project_item_content_linkmore {
    display: flex;
    justify-content: flex-end;
}
.project_item_content_linkmore a{
    color: var(--primary);
}
.project_item_content_linkmore a:hover{
    color: var(--primary);
    text-decoration: underline;
}
.project_header_wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.project_header_item{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.project_header_img{
    width: 12.5rem;
    display: flex;
    flex-direction: column;
    margin-right: 1rem;
}
.project_header_sidecontent{
    display: flex;
    width: calc(100% - 13.5rem);
    flex-direction: column;
}
.row-mrl-2{
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}
.row-mrl-2 [class*="col-"]{
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}
.project_form {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 2px solid;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.form-control{
    border-radius: 0.35rem;
    min-height: 2.5rem;
}
.project_form .form-control,
.project_form .btn{
    font-size: 0.875rem;
    min-height: 2.5rem;
    border-radius: 0.35rem;
}
.side_agent_box {
    position: sticky;
    top: 50px;
}
.side_agent_box .agent_wrp{
    width: 100%;
}
.f_require{
    color: var(--danger);
}
.navbar-light .navbar-toggler{
    color: inherit;
    border: 0;
    padding: 0;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.navbar-toggler-icon{
    width: 2.5rem;
    height: 2.5rem;
}
.bcard{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
}
.bcard .bcard_img{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.5rem;
}
.bcard .bcard_content{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.bcard .bcard_content p{
    margin-bottom: 0.5rem;
}
.bcard .bcard_content p:last-child{
    margin-bottom: 0;
}
.nav-tabs{
    justify-content: center;
    border-bottom: 0px;
}
.nav-tabs .nav-link{
    color: var(--gray-200);
    border-radius: 0;
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-color: rgba(0,0,0,0.2);
    position: relative;
    padding: 1rem 1.5rem;
}
.nav-tabs .nav-link:hover{
    color: var(--primary);
    border-color: rgba(0,0,0,0.2);
    border-bottom-color: var(--primary);
}
.nav-tabs .nav-link:last-child{
    border-right-width: 1px;
}
.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active{
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.nav-tabs .nav-link.active::after{
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
}
.fiform_main_wrp{
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}
.search_fiform{
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.search_fiform .btn i{
    margin-right: 0.5rem;
}
.search_fiform .labeltext{
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 3.5rem;
}
.search_fiform .form-control{
    border-width: 0px 0px 0px 1px;
    box-shadow: none;
    outline: none;
    height: 3.5rem;
}
.search_fiform .btn{
    height: calc(3.5rem + 2px);
    margin-top: -1px;
    margin-bottom: -1px;
    margin-right: -1px;
}
.morefield_fiform {
    display: flex;
    align-items: center;
    padding: 1rem;
}
.morefield_field{
    margin-right: 1rem;
    width: calc(20% - 1rem);
}
.morefield_field_radio .form-check,
.morefield_field_checkbox .form-check{
    margin-right: 1rem;
}
.propertyowner_wrp{
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}