@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: Roboto-Black;
    src: url('../fonts/Roboto-Black.ttf');
}

:root{
    --theme-color-1: #29b96b;
    --theme-color-2: #21284f;
    --theme-color-3: #1578e7;

    --body-bg: #F0F4F7;
    --bg-color1: #fbf6ef;
    --bg-color2: #f5f5f5;
    --bg-color3: #f4f7ff;
    --font-color: #474a5a;
    --heading-color1: #0f1843;
    --font-white: #ffffff;
    --link-color: #1E7CF2;
    --border: 1px solid rgba(255, 255, 255, 0.2);
}

body{
    background-color: var(--font-white);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn{
    border-radius: 30px;
    height: 40px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: normal;
    min-width: 100px;
}

.btn-main{
    color: var(--font-white);
    background: var(--theme-color-1);
    transition: all .5s ease-out;
    white-space: nowrap;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #25c5a0;
    transition: all .5s ease-out;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 10%);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #0d50a3;
    box-shadow: 0px 0px 10px 5px rgb(0 0 0 / 10%);
}

.btn-white{
    border: 1px solid var(--font-white);
    background-color: var(--font-white);
    color: #333;
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-white:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.btn-border{
    border: 1px solid var(--font-white);
    background-color: transparent;
    color: var(--font-white);
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-border:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.btn-border-black{
    border: 1px solid #DDDDDD;
    background-color: transparent;
    color: var(--font-color);
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-border-black:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-1);
    border: 1px solid var(--theme-color-1);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--theme-color-2);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 16px;
    flex-wrap: nowrap;
    display: flex;
    white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: transparent;
    height: 80px;
}

.dropdown-menu{
    min-width: 12rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color1);
    font-size: 14px;
    font-family: 'Roboto-Medium', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
    background-color: var(--font-white);
}

.dropdown-menu li a:hover{
    color: var(--theme-color1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-1);
    font-family: 'Roboto-Bold', sans-serif;
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Roboto-Regular', sans-serif;
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Roboto-Bold', sans-serif;
  color: var(--theme-color-2);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 0px;
    border: transparent;
    background-color: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: transparent;
    font-size: 14px;
    padding: 1.5rem 0rem;
    border-bottom: 1px solid #ddd;
    font-family: 'Roboto-Medium', sans-serif;
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    color: var(--theme-color-2);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--theme-color-2);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq .accordion-body {
    padding: 0rem 0rem;
}

.faq .accordion-button:not(.collapsed){
    border-radius: 12px 12px 0px 0px !important;
    border: var(--border);
    border-bottom: transparent;
    background-color: #fff;
}

.faq .accordion-collapse.collapse.show .accordion-body{
    border-radius: 0px 0px 0px 0px !important;
    border: var(--border) !important;
    border-top: transparent !important;
    background-color: #FFF;
    padding-top: 0;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-3);
    color: white;
    cursor: poRoboto;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-2);
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-3);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

.header-btns{
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn{
    color: var(--font-white);
}

/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 820px;
    overflow: hidden;
    background-image: url('../images/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 10rem;
}

.banner-small-heading{
    font-size: 14px;
    text-transform: uppercase;
    color: var(--font-white);
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.banner-heading{
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--font-white);
    text-align: center;
}

.banner-description{
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--font-white);
    text-align: center;
}

.banner-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.main-banner-image{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading{
    color: var(--heading-color1);
    font-size: 32px;
    margin-bottom: 0px;
}

.section{
    padding: 60px 0px;
    position: relative;
}

.footer-layer-wrppaer{
    border-radius: 12px;
    background: linear-gradient(270deg, #081E59 37.93%, #00C5F8 100%);
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.footer-layer-left h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.footer-layer-right img{
    width: 265px;
    opacity: 0.2;
}

/* ------------- */

footer{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 4rem;
    background-color: var(--theme-color-2);
}

.footer-about a h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p{
    color: var(--font-white);
}

.footer-links{
    position: relative;
    display: inline-block;
    width: 100%;
}

.footer-heading{
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--font-white);
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-links ul li a{
    color: var(--font-white);
}

.footer-conatct ul li{
    margin-bottom: 10px;
}

.footer-conatct ul{
    margin-top: 20px;
}

.footer-conatct ul li a{
    color: var(--font-white);
}

.footer-conatct p{
    color: var(--font-white);
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
}

.footer-bottom p{
    color: var(--font-white);
    text-align: center;
}

.footer-layer{
    width: 100%;
    position: relative;
    margin-bottom: -8rem;
    z-index: 10;
    padding-top: 3rem;
}

.footer-social{
    display: flex;
    align-items: center;
}

.footer-social h3{
    font-size: 20px;
    color: var(--theme-color-3);
    margin-right: 30px;
}

.footer-social ul li{
    display: inline-block;
}

.footer-social ul li a{
    color: var(--font-white);
    margin: 0px 5px;
}

.footer-line{
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
    opacity: 0.3;
    display: inline-block;
}

.footer-btn{
    text-align: right;
    float: right;
}

.footer-about a img{
    width: 130px;
    margin-bottom: 1.5rem;
}

/* home */
.proerties-heading{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.property-arrows .arrow-btns{
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.property-top{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 220px;
}

.property-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.property-badge{
    color: #0C0C0D;
    padding: 5px 20px;
    background-color: var(--font-white);
    border-radius: 30px;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.property-middle{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px 0px 10px 0px;
}

.property-info-list{
    width: 100%;
    position: relative;
    display: inline-block;
}

.property-info-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.property-info-item:last-child{
    margin-bottom: 0px;
}

.property-info-item a{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.property-info-item a h3{
    font-size: 14px;
    line-height: 13px;
}

.property-info-item a i{
    margin-right: 15px;
    font-size: 16px;
}

.property-info-item a i.address{
    color: var(--theme-color-1);
}

.property-info-item a i.valuation{
    color: var(--theme-color-3);
}

.property-bottom .progress{
    height: 12px;
}

.property-bottom .progress-bar{
    background-color: var(--theme-color-3);
}

.progress-bar-info{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.property-rate-info{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.property-rate-box{
    flex: 50%;
    padding: 10px;
    position: relative;
    display: inline-block;
    border-radius: 8px;
    margin-top: 15px;
}

.property-rate-box.total{
    background-color: #ebf8f0;
    border: 1px solid var(--theme-color-1);
}

.property-rate-box.rent{
    background-color: #e6f2fc;
    border: 1px solid var(--theme-color-3);
}

.property-rate-box p{
    margin-bottom: 5px;
}

.property-rate-box h3{
    font-size: 16px;
}

.property-btns{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.whyfunding-info-list{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

.whyfunding-content-wrapper .section-main-heading{
    margin-bottom: 15px;
}

.whyfunding-info-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.whyfunding-info-item:last-child{
    margin-bottom: 0;
}

.whyfunding-info-item-inner{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.whyfunding-info-item-inner img{
    min-width: 35px;
    width: 35px;
    margin-right: 25px;
}

.whyfunding-info-item-inner div h3{
    font-size: 16px;
    margin-bottom: 10px;
}

.whyfunding-img-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.whyfunding-img-wrapper img{
    width: 75%;
}

.whyfunding-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}

.why-funding::after{
    position: absolute;
    content: '';
    background-color: var(--bg-color3);
    height: 100%;
    display: inline-block;
    width: 75%;
    right: 0;
    top: 0;
    z-index: 1;
}

.small-heading{
    text-align: center;
    font-size: 14px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.policy-card-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.policy-icon{
    width: 120px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: var(--theme-color-2);
}

.policy-icon img{
    width: 50px;
}

.policy-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 25px;
}

.policy-info h3{
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}

.policy-info p{
    text-align: center;
}

.allpolicy-btn{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-works::after{
    position: absolute;
    content: '';
    background-color: var(--bg-color2);
    height: 100%;
    display: inline-block;
    width: 75%;
    left: 0;
    top: 0;
    z-index: 1;
}

.funfactor-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 15px;
}

.funfactor-card-wrapper h2{
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.funfactor-card-wrapper p{
    text-align: center;
}

.reviews-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.reviews-top{
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.reviewer-img{
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 10px;
}

.reviewer-img img{
    border-radius: 50%;
}

.reviewer-info h3{
    font-size: 16px;
}

.reviews-content p{
    font-size: 13px;
    line-height: 24px;
}

.reviews-img{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 15px;
    height: 150px;
}

.reviews-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.signin-container{
    background-color: var(--bg-color1);
    padding-bottom: 0px !important;
}

.divider-property-image{
    width: 60%;
    text-align: center;
    margin: auto;
}

.whyfunding-points{
    width: 35px;
    min-width: 35px;
    height: 35px;
    background-color: var(--theme-color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    margin-right: 15px;
}

.page-banner-container{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    /* background-color: var(--theme-color-2); */
    background-image: url('../images/page-banner.png');
    background-position: center;
    background-size: cover;
}

.page-banner-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.page-banner-wrapper h1{
    font-size: 28px;
    color: var(--font-white);
}

.page-banner-wrapper ul{
    margin-top: 10px;
    color: var(--font-white);
}

.page-banner-wrapper ul li{
    display: inline-block;
    padding-right: 10px;
    color: var(--font-white);
}

.page-banner-layer{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -5rem;
}

.page-banner-layer-wrapper{
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
}

.page-banner-layer-wrapper img{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    object-fit: cover;
    border-radius: 12px;
}

.team-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
    background-color: var(--bg-color2);
}

.team-image{
    margin: auto;
    width: 150px;
    height: 150px;
}

.team-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-info{
    margin-top: 20px;
}

.team-info h3{
    text-align: center;
    font-size: 18px;
}

.team-info p{
    text-align: center;
}

.blog-card-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--font-white);
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 180px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.blog-content-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.blog-author{
    display: flex;
    align-items: center;
}

.blog-author img{
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--theme-color-2);
    margin-right: 10px;
}

.blog-author h4{
    font-size: 16px;
    color: var(--font-white);
}

.blog-content-top p{
    color: #9298AB;
}

.blog-badge{
    height: 35px;
    border-radius: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
    background-color: var(--theme-color-2);
}

.blog-content-bottom {
    margin-top: 15px;
}

.blog-content-bottom a h4{
    font-size: 16px;
   margin-bottom: 15px;
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-search-label{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.sidebar-search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 6px;
    background-color: transparent;
    color: var(--font-white);
    height: 40px;

}

.sidebar-search-btn{
    position: absolute;
    right: 0;
    top: 29px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.sidebar-recent-posts{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-heading{
    position: relative;
    color: var(--font-color);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
}

.sidebar-heading::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    background: var(--theme-color-2);
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sidebar-heading::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dce3ed;
    left: 0;
    bottom: 1px;
}

.sidebar-orderlist li a:before{
    position: relative;
    font-family: Fontawesome;
    content: "\f101";
    color: var(--theme-color-3);
    top: 0px;
    left: 0;
    transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    display: flex;
    margin-right: 10px;
}

.sidebar-orderlist{
    position: relative;
}

.sidebar-orderlist li a{
    position: relative;
    display: flex;
    align-items: baseline;
}

.sidebar-orderlist li{
    margin-bottom: 10px;
}

.sidebar-orderlist li:last-child{
    margin-bottom: 0px;
}

.sidebat-tagsorer-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebat-tagsorer-list li a{
    padding: 4px 8px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

.blogsingle-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 25px;
    background-color: #14202D;
    border: var(--border);
    border-radius: 15px;
}

.blogsingle-image{
    width: 220px;
    height: 220px;
    min-width: 220px;
    position: relative;
    display: inline-block;
    margin-right: 25px;
}

.blogsingle-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blogsingle-content{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blogsingle-badge{
    width: auto;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    padding: 6px 15px;
    border-radius: 30px;
}

.blogsingle-content a h3{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blogsingle-postinfo{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.blogsingle-postinfo-img{
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 15px;
}

.blogsingle-postinfo-img img{
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.blogsingle-postinfo-author h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.blogsingle-postinfo-author p span::after{
    content: '•';
    font-size: 10px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.blogsingle-postinfo-author p span:last-child:after{
    display: none;
}

.article-contents p{
    margin-bottom: 15px;
}

.article-second-heading{
    margin-bottom: 20px;
    font-size: 20px;
}

.article-tags{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 20px 0px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0px;
}

.article-tags p{
    color: var(--theme-color-3);
    margin-bottom: 10px;
}

.article-tags ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li a{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color-4);
    color: var(--font-color);
}

.article-reply{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.article-reply h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.article-reply-form{
    margin-top: 2rem;
}

.article-reply-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.article-reply-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--font-color);
    border-radius: 6px;
    border: 1px solid #ddd;
}

.article-main-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
}

.article-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contacts-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    background-color: var(--theme-color-2);
}

.contacts-card h3{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 15px;
    color: var(--font-white);
}

.contacts-card a{
    color: var(--font-white);
}

.contacts-card img{
    width: 50px;
}

.w-30{
    width: 30% !important;
}

.w-60{
    width: 60% !important;
}

.property-arrows{
    display: flex;
}

.property-arrows .arrow-btns{
    margin-left: 10px;
}

.signin-info-wrapper .section-main-heading{
    margin-bottom: 20px;
}

.authpage-container{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    min-height: 100vh;
    padding: 2rem 0;
}

.authpage-inner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.authpage-content-wrapper{
    width: 100%;
    position: relative;
    height: 100%;
    background: linear-gradient(to right, var(--theme-color-1), var(--theme-color-3));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 5rem 2rem 2rem;
}

.authpage-content-wrapper h2{
    color: var(--font-white);
    margin-bottom: 15px;
}

.authpage-content-wrapper p{
    color: var(--font-white);
    margin-bottom: 0px;
}

.authpage-form-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 1.5rem;
}

.authpage-form-top{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.authpage-form-top img{
    width: 200px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
}

.authpage-form-top h3{
    font-size: 18px;
    text-align: center;
}

.authpage-form-facebook{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-login{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1877F2;
    height: 44px;
    border: 2px solid #1877F2;
    color: var(--font-white);
}

.facebook-login:hover{
    color: #fff;
}

.facebook-login i{
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #1877F2;
}

.facebook-login span{
    padding: 10px 20px;
}

.authpage-form-login-wrapper{
    width: 75%;
    position: relative;
    margin: auto;
}

.or-divider{
    width: 100%;
    position: relative;
    margin: 1.3rem 0;
}

.or-divider span{
    display: flex;
    width: 100%;
    align-items: center;
}

.or-divider span::before{
    width: 48%;
    content: '';
    position: relative;
    display: inline-block;
    border-top: 1px solid #ddd;
    margin-right: 10px;
}

.or-divider span::after{
    width: 48%;
    content: '';
    position: relative;
    display: inline-block;
    border-top: 1px solid #ddd;
    margin-left: 10px;
}

.authpage-form-fields-list{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.authpage-form-label{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.authpage-form-button{
    width: 100%;
    position: relative;
    display: inline-block;
}

.authpage-form-button .btn-main{
    max-width: 100%;
    width: 100%;
}

.authpage-form-account{
    text-align: center;
    margin-top: 3rem;
}

.authpage-form-account a{
    color: var(--theme-color-3);
}