@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color: #26A9E1;
    --main-color2: #2b314e;
    --main-color3: #6c7bb5;

    --secondary-color: #F6F8FC; 
    --body-bg: #fff;

    --h-font: "Plus Jakarta Sans", sans-serif;
    --p-font: "Plus Jakarta Sans", sans-serif;

    --h-color: #191A1F;
    --p-color: #565656;
    --dark: #171C31;
    
    
    --primary-color: #191A1F;
	--text-color: #808080;
	/* --accent-color			: #ED6325; */
	--accent-color: #26A9E1;
	--white-color: #FFFFFF;
	--divider-color: #80808024;
	--dark-divider-color: #FFFFFF1F;
	--error-color: rgb(230, 87, 87);
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
    }
}

/* @font-face {
    font-family: 'FinancierDisplay';
    src: url('../fonts/FinancierDisplay-Semibold.otf');
} */

body {
    color: var(--p-color);
    font-size: 16px;
    background-color: var(--body-bg);
    font-family: var(--p-font);
    line-height: 1.7;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

a,
span {
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

label {
    text-transform: capitalize !important;
    margin-bottom: 6px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--h-font);
    line-height: 1.3;
    font-weight: 700;
    color: var(--h-color);
}

.dark-overlay {
    position: relative;
    z-index: 1;
}

.dark-overlay::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.65;
    z-index: -1;
}

.dark-overlay2 {
    position: relative;
    z-index: 1;
}

.dark-overlay2::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.85;
    z-index: -1;
}

.cmn-btn {
    border: 1px solid var(--main-color);
    padding: 14px 42px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.cmn-btn:hover {
    color: #fff;
}

.cmn-btn2 {
    padding: 14px 42px;
    border: 1px solid var(--main-color3);
    background-color: var(--main-color3);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.cmn-btn2:hover {
    color: #fff;
}

.cmn-btn-outline-white {
    padding: 14px 42px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.cmn-btn-outline-white:hover {
    background-color: #fff;
    color: #000 !important;
}

.cmn-btn-outline-white:hover i,
.cmn-btn-outline-white:hover span {
    color: #000;
}


.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 20px 36px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
	border-radius: 8px;
}

.btn-default:hover {
	color: #fff;
}

.btn-default::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	border-radius: 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::before {
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-18px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover:after {
	transform: translate(-18px, -50%) rotate(45deg);
}

.btn-default.btn-highlighted::before {
	background: var(--white-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--accent-color);
}

.btn-default.btn-white-default {
	background-color: #fff;
	color: var(--accent-color);
}

.btn-md {
	padding: 14px 24px;
}

.btn-main {
    background-color: var(--main-color);
    color: #fff;
}

.btn-main:hover {
    color: #fff;
}

.border-btn {
    padding: 12px 30px;
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 4px 4px #0059ff5e;
}

.border-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.border-btn2 {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--p-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.border-btn2:hover {
    background-color: var(--main-color);
    color: #fff;
}

.read-btn {
    color: var(--main-color);
    font-weight: 500;
}

.banner-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -10px;
}

.banner-btn-group [class*="-btn"] {
    margin: 10px;
}

@media (max-width: 575px) {
    .banner-btn-group [class*="-btn"] {
        width: 100%;
    }
}

.form-control,
.form-select {
    height: 50px;
    background-color: var(--body-bg);
    padding: 10px 15px;
    color: var(--h-color) !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-control.style-white {
    background-color: #fff;
}

.form-control.copy-text {
    background-color: #fff !important;
}

.form-control.style-white:focus {
    background-color: #fff;
}

textarea.form-control {
    min-height: 170px;
}

.form-control::-webkit-input-placeholder {
    color: #8f8f8f;
}

.form-control::-moz-placeholder {
    color: #8f8f8f;
}

.form-control:-ms-input-placeholder {
    color: #8f8f8f;
}

.form-control:-moz-placeholder {
    color: #8f8f8f;
}

.form-control {
    padding: 10px 15px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #efefef;
}

.form-select option {
    background-color: var(--secondary-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: 0 3px 5px #e1b82340;
    background-color: var(--body-bg);
}

.has-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-bg {
    background-color: var(--secondary-color);
}

.section-bg+.section-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-bg2 {
    background-color: var(--main-color2);
}

.site-bg {
    background-color: var(--main-color);
}

img {
    max-width: 100%;
}


.input-icon-field {
    position: relative;
}

.input-icon-field .form-control {
    padding-left: 40px;
}

.input-icon-field i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
}

.form-label {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


/* joba's top */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 8px;
    display: none;
    z-index: 999;
}

/* end */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #ffc451;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: #ffc451;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.pointer {
    cursor: context-menu !important;
}

.login {
    margin-top: 14% !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--main-color2);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid var(--main-color);
    border-top-color: var(--main-color2);
    border-bottom-color: var(--main-color2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    z-index: 997;
    background-color: transparent;
}

.header-menu-area {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .header-menu-area {
        padding: 12px 0;
    }
}

#header.header-scrolled,
#header.header-inner-pages {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}

#header.header-inner-pages {
    padding: 10px 0;
    background: #fff !important;
    box-shadow: none;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: #ffc451;
}

#header .logo img {
    max-height: 55px;
}

.header-scrolled .header-top-area {
    display: none;
}

.header-top-area {
    padding: 16px 0;
    background-color: #2B3146;
}

@media (max-width: 1199px) {
    .header-top-area {
        display: none;
    }
}

.header-top-info-list {
    display: flex;
    align-items: center;
    gap: 4px 32px;
    margin-bottom: 0;
}

.header-top-info-list li {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-info-list li span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 375px;
}

@media (max-width: 1399px) {
    .header-top-info-list li span {
        width: 280px;
    }
}

.header-menu-area .dropdown-menu {
    min-width: 7rem !important;
    padding: 0;
    overflow: hidden;
    border: none;
}

.header-menu-area .dropdown-menu li + li {
    margin-top: 4px;
}

.header-menu-area .dropdown-item {
    padding-block: 8px;
}

.header-top-info-list li::before {
    position: absolute;
    content: '';
    top: 30%;
    right: -16px;
    width: 1px;
    height: 60%;
    background-color: #fff;
}

.header-top-info-list li:last-child::before {
    display: none;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-top-right ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
}

.header-top-right ul li a {
    color: #fff;
}

.header-top-right ul li a:hover {
    color: var(--main-color);
}

@media screen and (max-width:330px) {
    #header .logo {
        font-size: 18px;
    }
}

.header-scrolled .header-menu-area {
    background-color: rgba(10,13,26, 1);
}

.header-menu-area {
    background-color: rgba(10,13,26,.7);
}

@media (min-width: 1200px) {
    .d-lg-block {
        display: block !important;
        display: flex !important;
    }
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/

.btn-padding {
    padding: 3px 20px;
}

.get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

@media screen and (max-width:575px) {}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

@media (max-width: 1199px) {
    .navbar li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar a {
        color: #fff !important;
    }

    .navbar li.active a {
        color: var(--main-color) !important;
    }

    .navbar li:last-child {
        margin-top: 15px;
        border-bottom: none;
    }
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 18px;
}

@media (max-width: 1550px) {
    .navbar a,
    .navbar a:focus {
        padding: 10px 12px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {

    .navbar a,
    .navbar a:focus {
        padding: 10px !important;
    }
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar li.active a,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--main-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    background-color: #ffc451;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

select:focus {
    outline: none;
}

.changeLang {
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--p-color);
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.changeLang option {
    background-color: var(--secondary-color);
    color: var(--p-color);
}

.header-inner-pages .changeLang {
    color: var(--p-color);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

@media (max-width: 575px) {
    .header-inner-pages .changeLang {
        display: none;
    }
}

.btn-border {
    padding: 12px 30px;
    border: 1px solid var(--main-color);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn-border:hover {
    background-color: var(--main-color);
    color: #fff;
}

.btn-md {
    padding: 10px 28px;
}

.btn-sm {
    padding: 7px 20px;
    font-size: 14px;
}

@media (max-width: 1399px) {
    .header-menu-area .header-right .btn-md {
        font-size: 14px;
        padding: 10px 16px;
    }

    .navbar a, .navbar a:focus {
        font-size: 16px;
        padding-left: 16px !important;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

@media screen and (min-width: 1024px) {


    .support-link {
        margin-right: 10px !important;
    }

    .nav-link {
        padding-left: 25px !important;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--main-color2);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    background-color: #ffc451;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--main-color);
}

.custom-select-form {
    margin-left: 18px !important;
}

.descripton-root span {
    display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section {
    position: relative;
    padding-top: 325px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: hidden;
    background-color: #131313;
    z-index: 1;
}

.banner-section::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#101424",endColorstr="#000000",GradientType=1);
    z-index: -1;
}

.banner-title {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1540px) {
    .banner-title {
        font-size: 64px;
    }
}

.banner-description {
    font-size: 20px;
    color: #fff;
}

.banner-bottom-part {
    padding: 30px 0;
    background-color: var(--main-color2);
}

.banner-bottom-title {
    color: #fff;
    font-size: 32px;
}


.bookmark-btn {
    padding: 6px 15px;
    border: 1px solid #0059ff3b;
    color: var(--main-color);
    background-color: #0059ff18;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

.bookmark-btn .bookmark-icons {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 17px;
    background-color: transparent;
    border: none;
    margin-right: 6px;
}

.bookmark-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.bookmark-btn i.second-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .first-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .second-bookmark {
    opacity: 1;
    color: var(--main-color);
}

.property-share {
    padding: 6px 15px;
    border: 1px solid rgba(0,0,0, 0.2);
    color: var(--h-color);
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

.property-share:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.property-share i {
    margin-right: 10px;
}

.social-share-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social-share-list li {
    padding: 5px 7px;
}

.social-share-list li a {
    width: 40px;
    height: 40px;
    background-color: #0059ff18;
    border: 1px solid #0059ff3b;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 17px;
}

.social-share-list li a:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}


.property-details-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
}

.property-details-thumb .gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s;
    z-index: 2;
}

.property-details-thumb:hover .gallery {
    background-color: rgba(0, 0, 0, 0.55);
}

.property-details-thumb.choto-img {
    height: 271px;
}

.property-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transition: all 0.3s;
}

.property-details-thumb:hover img {
    transform: scale(1.1, 1.1);
}

.property-details-banner {
    padding-top: 190px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--secondary-color);
}

.property-details-top {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.property-details-top .content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding: 15px;
}

.property-details-top-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -7px 0;
}

.property-details-top-info li {
    padding: 7px 0;
    font-size: 15px;
}

.property-details-top-info li::after {
    content: '/';
    padding: 0 10px;
}

.property-details-top-info li:last-child::after {
    display: none;
}

.property-details-top .content .title {
    font-size: 32px;
}

.property-details-top .action {
    padding: 15px;
    text-align: right;
}

.property-details-top .p-amount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.property-details-top .p-amount span {
    font-weight: 400;
    font-size: 60%;
    margin-left: 8px;
}

.invest-cal-wrapper {
    background-color: #fff;
    position: sticky;
    top: 100px;
}

.invest-cal-wrapper .title {
    padding: 20px 20px;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.calculate-form {
    padding: 30px;
}

.cal-details-list {
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.cal-details-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 0;
}

.cal-details-list li:first-child {
    padding-top: 0;
}

.cal-details-list li:last-child {
    padding-bottom: 0;
}

.cal-details-list li+li {
    border-top: 1px dashed #bbb;
}

.cal-details-list li .caption {
    font-weight: 500;
}


.icon-field {
    position: relative;
}

.profit-table {}

#profit-table td {
    border-bottom: 1px dashed #bbb !important;
    padding: 10px 0;
    font-size: 14px;
}

#profit-table td:last-child {
    text-align: right;
}

.icon-field i {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    border-right: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s;
}

.icon-field input {
    padding-left: 50px;
}

.icon-field input:focus~i {
    border-color: var(--main-color);
}

.property-details-wrapper {
    padding: 30px;
    background-color: #fff;
}

.property-details-wrapper .content-box .title {
    margin-bottom: 15px;
}

.property-details-wrapper .content-box+.content-box {
    margin-top: 45px;
}

.single-feature {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.single-feature p {
    margin-bottom: 0;
    font-size: 15px;
}

.single-feature .p-amount {
    font-size: 18px;
    font-weight: 600;
}

.gallery-item {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.gallery-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover a {
    opacity: 0.4;
}

.property-map {
    width: 100%;
    height: 450px;
    border: none;
}

.single-amenities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-amenities i {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.single-amenities:hover i {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.single-amenities h6 {
    font-size: 14px;
}

.single-amenities .caption {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 8px;
}

.single-amenities .content {
    width: calc(100% - 55px);
    padding-left: 15px;
}

@media (max-width: 1199px) {
    .invest-cal-wrapper .title {
        font-size: 20px;
    }

    .property-details-banner {
        padding-top: 215px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .property-details-top .action {
        text-align: left;
    }

    .property-map {
        height: 350px;
    }

    .property-details-top .content .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .property-details-top .content .title {
        font-size: 28px;
    }

    .calculate-form {
        padding: 20px;
    }

    .property-details-wrapper {
        padding: 20px;
    }
}

.single-review {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.single-review .thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.single-review .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.single-review .content {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.single-review .content h6 {
    margin-bottom: 0;
}

.ratings i {
    font-size: 14px;
    color: #ffb307;
}

.star-cb-group {
    /* remove inline-block whitespace */
    font-size: 0;
    /* flip the order so we can use the + and ~ combinators */
    unicode-bidi: bidi-override;
    direction: rtl;
    /* the hidden clearer */
}

.star-cb-group * {
    font-size: 1rem;
}

.star-cb-group>input {
    display: none;
}

.star-cb-group>input+label {
    /* only enough room for the star */
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 30px;
    white-space: nowrap;
    cursor: pointer;
}

.star-cb-group>input+label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "☆";
    color: #888;
    font-size: 28px;
}

.star-cb-group>input:checked~label:before,
.star-cb-group>input+label:hover~label:before,
.star-cb-group>input+label:hover:before {
    content: "★";
    color: #ffb307;
    text-shadow: 0 0 1px #333;
}

.star-cb-group>.star-cb-clear+label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
}

.star-cb-group>.star-cb-clear+label:before {
    width: .5em;
}

.star-cb-group:hover>input+label:before {
    content: "☆";
    color: #888;
    text-shadow: none;
}

.star-cb-group:hover>input+label:hover~label:before,
.star-cb-group:hover>input+label:hover:before {
    content: "★";
    color: #ffb307;
    text-shadow: 0 0 1px #333;
}

.related-slider .slick-list {
    margin: -20px -15px;
}

.related-slider .single-slide {
    padding: 20px 15px;
}

.related-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.related-slider .slick-dots li {
    padding: 0 3px;
}

.related-slider .slick-dots li button {
    padding: 0;
    font-size: 0;
    border: none;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    transition: all 0.3s;
}

.related-slider .slick-dots li.slick-active button {
    background-color: var(--main-color);
}

/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating>input:checked~label,
/* show gold star when clicked */
.rating:not(:checked)>label:hover,
/* hover current star */
.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}

/* hover previous stars in list */

.rating>input:checked+label:hover,
/* hover current star when changing rating */
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
/* lighten current selection */
.rating>input:checked~label:hover~label {
    color: #FFED85;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-top {
    margin-bottom: 60px;
}

.section-top-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
    padding-left: 20px;
}

.section-top-title::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    width: 5px;
    height: 20px;
    background-color: var(--main-color);
    transform: skew(-25deg);
    opacity: 0.25;
}

.section-top-title::after {
    position: absolute;
    content: '';
    top: 4px;
    left: 8px;
    width: 5px;
    height: 20px;
    background-color: var(--main-color);
    transform: skew(-25deg);
    opacity: 0.25;
}

.section-top .section-title {
    margin-top: -10px;
}

/*.section-title {*/
/*    font-size: 56px;*/
/*}*/

/*@media (max-width: 1399px) {*/
/*    .section-title {*/
/*        font-size: 42px;*/
/*    }*/
/*}*/

/*@media (max-width: 1199px) {*/
/*    .section-title {*/
/*        font-size: 36px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .section-title {*/
/*        font-size: 32px;*/
/*    }*/
/*}*/

/*@media (max-width: 575px) {*/
/*    .section-title {*/
/*        font-size: 28px;*/
/*    }*/
/*}*/

.s-pt-100,
.s-pt-120 {
    padding-top: 120px;
}

.s-pb-100,
.s-pb-120 {
    padding-bottom: 120px;
}

.s-pt-80 {
    padding-top: 80px;
}

.s-pb-80 {
    padding-bottom: 80px;
}

@media (max-width: 1399px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 100px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 80px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 80px;
    }

    .s-pt-80 {
        padding-top: 60px;
    }

    .s-pb-80 {
        padding-bottom: 60px;
    }
}


@media (max-width: 575px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 60px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 60px;
    }

    .s-pt-80 {
        padding-top: 40px;
    }

    .s-pb-80 {
        padding-bottom: 40px;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-thumb {
        height: 675px !important;
    }
}

@media (max-width: 575px) {
    .about-thumb {
        height: 375px !important;
    }
}

.about-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.descripton-root span {
    background-color: transparent !important;
    color: var(--p-color) !important;
}

.about-overview-item .number {
    font-size: 72px;
}

.about-overview-item .caption {
    font-size: 18px;
}

.about-content-wrapper {
    position: relative;
    padding: 60px;
    z-index: 1;
}

.about-content-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.05;
    z-index: -1;
}

@media (min-width: 1400px) {
    .about-content {
        padding-block: 100px;
    }
}

.about-content .about-item:last-child {
    padding-bottom: 0;
}

.about-item {
    padding-bottom: 24px;
}

.about-item .title {
    margin-bottom: 16px;
}

.about-btn {
    font-weight: 600;
    color: var(--main-color);
}


/* overview-section css start */

.overview-item {
    border-right: 1px solid #ffffff1c;
}

.overview-wrapper div[class*="col-"]:last-child .overview-item {
    border-right: none;
}

.overview-amount {
    font-size: 36px;
    margin-bottom: 5px;
    color: #fff;
}

.overview-title {
    color: #f1f1f1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .banner-bottom-title,
    .overview-amount {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .banner-bottom-title,
    .overview-amount {
        font-size: 24px;
    }
}

/* overview-section css end */

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding-top: 20px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
}


/* choose section css start */
.choose-section {
    position: relative;
    z-index: 1;
    background-color: #1c2035;
}

.choose-section .choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    -o-object-fit: cover;
}

@media (max-width: 991px) {
    .choose-section .choose-bg {
        width: 100%;
    }
}

.choose-section .line-obj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.choose-item .choose-item-title {
    margin-bottom: 12px;
}

.choose-item .choose-item-title  h5 {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-bottom: 12px;
}

.choose-item .choose-item-title h5::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.25;
}

.choose-item .choose-item-title span {
    color: var(--main-color);
}

.choose-item .choose-item-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.choose-item .choose-item-content .icon {
    width: 65px;
    height: 65px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.choose-item .choose-item-content .choose-item-details {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.choose-item .choose-item-content .choose-item-details p {
    color: #c2c2c2;
}


/* choose section css end */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .banner-calc {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .banner-calc .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #ffc451;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .banner-calc .icon i {
    color: #151515;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .banner-calc h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 a:hover {
    color: #ffc451;
}

.services .banner-calc p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .banner-calc:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.subscribe-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.subscribe-el {
    position: absolute;
    left: 80px;
    bottom: 0;
    z-index: -1;
}

.subscribe-el img {
    max-height: 330px;
}

.subscribe-form .form-control {
    height: 55px;
    border-radius: 6px;
}

.subscribe-field {
    position: relative;
}

.subscribe-field .form-control {
    padding-right: 40px;
}

.subscribe-field i {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #777 !important;
    font-size: 20px;
}

.subscribe-form button {
    width: 100%;
    border: none;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 6px;
    margin-top: 12px;
}

.property-search-form {
    display: none;
}

.property-search-form input::-webkit-outer-spin-button,
.property-search-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.property-search-form input[type="number"] {
    -moz-appearance: textfield;
}

.property-search-wrapper {
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.property-search-wrapper h2 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.property-search-filter-btn {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 4px 12px;
}

.min-max-field {
    display: flex;
}

.min-max-field .form-select {
    width: 120px;
    border-radius: 5px 0 0 5px;
}

.min-max-field .form-control {
    width: calc(50% - 60px);
}

.min-max-field .form-control.fixed {
    width: calc(100% - 120px);
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.min-max-field .min-amount-input {
    border-radius: 0;
    border-left: none;
}

.min-max-field .max-amount-input {
    border-radius: 0 5px 5px 0;
    transform: translateX(-1px);
}

/*--------------------------------------------------------------
# Investment Plans
--------------------------------------------------------------*/
.invest-plan {
    position: relative;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    z-index: 1;
    background: linear-gradient(to top, #2f5b88, #153352);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.invest-plan .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 120px;
    opacity: 0.05;
    z-index: -1;
}

.invest-plan-two .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-color);
    font-size: 120px;
    opacity: 0.15;
    z-index: -1;
}


.invest-plan::before {
    position: absolute;
    /* content: ''; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffb7b7, #727272), radial-gradient(60.91% 100% at 50% 0, #ffd1d1 0, #260000 100%), linear-gradient(247.95deg, #fdd, #720066), linear-gradient(117.03deg, #0ff, #f44), radial-gradient(100.22% 100% at 70.57% 0, red 0, #00ffe0 100%), linear-gradient(117.03deg, #b7d500, #30f);
    border-radius: 8px;
    z-index: -1;
}

.invest-plan-middle {
    padding: 20px 0;
}

.invest-plan .invest-plan-name {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--main-color);
}

.invest-plan .invest-plan-amount {
    font-size: 28px;
    color: #fff;
}

.invest-plan .invest-plan-amount sub {
    font-size: 60%;
    font-weight: 400;
}

.invest-plan .invest-plan-min-max {
    font-size: 16px;
}

.invest-plan .invest-plan-min-max p {
    margin-bottom: 0;
}

.invest-plan-min-max li+li {
    margin-top: 10px;
}

.invest-plan-min-max li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #e9e9e9;
}



.featured-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #F6F6F6;
}

.featured-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
}

.featured-section .line-obj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.featured-slider .slick-list {
    margin: -20px;
}

.featured-slider .single-slide {
    padding: 20px;
}

.featured-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0;
    gap: 6px;
}

.featured-slider .slick-dots li.slick-active button {
    border-color: var(--main-color);
}

.featured-slider .slick-dots button {
    position: relative;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    border: 1px solid transparent;
    font-size: 0;
}

.featured-slider .slick-dots button::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #464646;
    border-radius: 50%;
}


.featured-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featured-item .thumb {
    position: relative;
    width: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

.featured-item .thumb .featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 15px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 14px;
    border-radius: 99px;
}


.featured-badge,
.license-badge,
.ownership-badge {
    padding: 4px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 99px;
}

.featured-badge {
    background-color: var(--accent-color);
}

.license-badge {
    background-color: #22c55e;
}

.ownership-badge {
    background-color: #fff;
    color: #000;
}


.plan-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.featured-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.featured-item .content {
    width: calc(40% - 20px);
    padding: 45px 40px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.05);
}

.featured-item .content .top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

.featured-item .content .top .top-content {
    width: calc(100% - 50px);
}

.featured-item .content .top .featured-bookmark-btn {
    position: relative;
    width: 50px;
    height: 30px;
    text-align: right;
    font-size: 24px;
    border: none;
    background-color: transparent;
    color: #777;
}

.featured-item .content .top .featured-bookmark-btn i {
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s;
}

.featured-item .content .top .featured-bookmark-btn i.second-bookmark {
    opacity: 0;
}

.featured-item .content .top .featured-bookmark-btn.bookmarked i.first-bookmark {
    opacity: 0;
}

.featured-item .content .top .featured-bookmark-btn.bookmarked i.second-bookmark {
    opacity: 1;
    color: var(--main-color);
}

.featured-property-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-property-btn span {
    font-weight: 600;
    color: var(--h-color);
}

.featured-property-btn i {
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.featured-property-btn:hover i {
    background-color: var(--main-color);
    color: #fff;
}

.feature-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
}

.featured-item .utilities {
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.featured-item .utilities li {
    padding: 5px 15px;
}


.featured-item .utilities li:first-child {
    padding-left: 0;
}

.featured-item .utilities li i {
    color: var(--p-color);
    margin-right: 6px;
}

.featured-item .property-ratings i,
.featured-item .property-ratings {
    font-size: 16px;
}

.featured-section ~ .property-section {
    padding-top: 0 !important;
}




.invest-card {
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 100%;
	background-color: #fff;
	transition: all 0.3s;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	padding: 12px;
	border-radius: 16px;
}

.invest-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.invest-card-thumb {
	height: 300px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border-radius: 12px;
}

.invest-card-thumb-return {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 12px 20px;
	z-index: 1;
}

.invest-card-thumb-return p {
	color: #fff;
	font-size: 14px;
}

.invest-card-thumb-return .return-amount {
	color: var(--accent-color);
}

.invest-card-thumb .invest-bottom-ov {
    position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 20px;
}

.monthly-badge {
    padding: 5px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 99px;
    background-color: var(--accent-color);
}

.invest-card-thumb .invest-bookmark-btn {
	width: 35px;
	height: 35px;
	padding: 0;
	border: none;
	line-height: 1;
	font-size: 18px;
	background-color: #fff;
	color: #000;
	border-radius: 50%;
	position: relative;
}

.invest-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 1;
}

.invest-bookmark-btn i {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
}

.invest-bookmark-btn i.second-bookmark {
	opacity: 0;
}

.invest-bookmark-btn.bookmarked .first-bookmark {
	opacity: 0;
}

.invest-bookmark-btn.bookmarked .second-bookmark {
	opacity: 1;
}

.invest-card-thumb::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
	z-index: 1;
}

.invest-card-thumb .thumb-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
}

.invest-card-thumb .location,
.invest-card-thumb .title {
	color: #fff;
}

.invest-card-thumb .title {
	font-size: 24px;
}

.invest-card-thumb .title a:hover {
	color: #fff;
}

.invest-card-thumb .location {
	font-size: 14px;
	margin-bottom: 0;
}

.invest-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
	transition: all 0.5s;
}

.invest-card:hover .invest-card-thumb img {
	transform: scale(1.25, 1.25) rotate(5deg);
}

.invest-card-content {
	padding-top: 20px;
	padding-bottom: 16px;
	padding-inline: 8px;
	font-size: 14px;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
}

.invest-card-content .title {
	font-size: 22px;
}

.invest-card-content .title a {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--primary-color);
}

.invest-card-agent {
	display: flex;
	align-items: center;
	gap: 12px;
}

.invest-card-agent img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	-o-object-fit: cover;
	border: 2px solid var(--accent-color);
}

.invest-card-agent h6 a {
	color: var(--primary-color);
}

.invest-card-agent p {
	font-size: 14px;
}

.invest-card-content .return-rate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.invest-card-content .return-rate .return-amount {
	font-size: 24px;
	margin-bottom: 0;
}

.invest-card-content .return-rate p {
	margin-bottom: 0;
}

.invest-card-content .other-options {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}

.invest-card-content .single-option {
	width: 50%;
	padding: 10px;
}

.invest-card-content .single-option p {
	margin-bottom: 0;
}

.invest-card-content .single-option h6 {
	margin-bottom: 0;
	font-size: 16px;
}

.invest-card-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: -3px -10px;
}

.invest-card-list li {
	color: #777;
	padding: 3px 10px;
	font-size: 15px;
}

.invest-card-list li i {
	color: var(--p-color);
}

.invest-card-content .location {
	font-size: 15px;
	color: #777;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.invest-card-btn {
	width: 44px;
	height: 44px;
	background-color: var(--primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	transition: all 0.3s;
}

.invest-card-btn:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.invest-card:hover .invest-card-btn {
	background-color: var(--accent-color);
	color: #fff;
}

.invest-card-footer {
	padding-inline: 8px;
	position: relative;
	z-index: 4;
}

.invest-card-footer-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	padding-bottom: 0;
	border-top: 1px solid #e5e5e5;
}

.invest-card-footer .cmn-btn.btn-sm,
.invest-card-footer .cmn-btn2.btn-sm {
	padding: 10px 25px;
}

.invest-cat {
	font-weight: 500;
	margin-bottom: 0;
	font-size: 14px;
}

.invest-btn {
	color: var(--accent-color);
	font-weight: 500;
}

.calculate-btn {
	color: var(--accent-color);
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.calculate-btn i {
	margin-right: 5px;
	animation: ring 2s infinite linear;
}



.bookmark-btn {
    border: none;
    background: transparent;
    color: var(--accent-color);
}

.bookmark-btn .bookmark-icons {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 22px;
    background-color: transparent;
    border: none;
    margin-right: 6px;
}

.bookmark-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.bookmark-btn i.second-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .first-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .second-bookmark {
    opacity: 1;
    color: var(--main-color);
}

.property-share {
    color: var(--accent-color);
    border: none;
    background: transparent;
    font-size: 20px;
}

.social-share-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social-share-list li {
    padding: 5px 7px;
}

.social-share-list li a {
    width: 40px;
    height: 40px;
    background-color: #0059ff18;
    border: 1px solid #0059ff3b;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 17px;
}

.social-share-list li a:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}


/*.invest-card {*/
/*    position: relative;*/
/*    padding: 12px;*/
/*    display: flex;*/
/*    flex-flow: column;*/
/*    justify-content: space-between;*/
/*    height: 100%;*/
/*    background-color: #fff;*/
/*    transition: all 0.3s;*/
/*    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);*/
/*    border-radius: 20px;*/
/*}*/

/*.invest-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.invest-card-thumb {*/
/*    height: 300px;*/
/*    position: relative;*/
/*    border-radius: 16px;*/
/*    overflow: hidden;*/
/*}*/

/*.invest-card-thumb .invest-bookmark-btn {*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: 20px;*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    padding: 0;*/
/*    border: none;*/
/*    line-height: 1;*/
/*    font-size: 18px;*/
/*    background-color: #fff;*/
/*    color: #000;*/
/*    border-radius: 50%;*/
/*    z-index: 3;*/
/*}*/

/*.invest-bookmark-btn i {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    transition: all 0.3s;*/
/*}*/

/*.invest-bookmark-btn i.second-bookmark {*/
/*    opacity: 0;*/
/*}*/

/*.invest-bookmark-btn.bookmarked .first-bookmark {*/
/*    opacity: 0;*/
/*}*/

/*.invest-bookmark-btn.bookmarked .second-bookmark {*/
/*    opacity: 1;*/
/*}*/

/*.invest-card-thumb::before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));*/
/*    z-index: 1;*/
/*}*/

/*.invest-card-thumb .thumb-bottom {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    padding: 20px;*/
/*}*/

/*.invest-card-thumb .location,*/
/*.invest-card-thumb .title {*/
/*    color: #fff;*/
/*}*/

/*.invest-card-thumb .title {*/
/*    font-size: 24px;*/
/*}*/

/*.invest-card-thumb .title a:hover {*/
/*    color: #fff;*/
/*}*/

/*.invest-card-thumb .location {*/
/*    font-size: 14px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.invest-card-thumb img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    -o-object-fit: cover;*/
/*    transition: all 0.5s;*/
/*}*/

/*.invest-card:hover .invest-card-thumb img {*/
/*    transform: scale(1.25, 1.25) rotate(5deg);*/
/*}*/

/*.invest-card-content {*/
/*    padding-top: 20px;*/
/*    padding-bottom: 16px;*/
/*    padding-inline: 8px;*/
/*    font-size: 14px;*/
/*    flex-grow: 1;*/
/*    flex-shrink: 1;*/
/*    flex-basis: auto;*/
/*}*/

/*.invest-card-content .title {*/
/*    font-size: 22px;*/
/*}*/

/*.invest-card-content .title a {*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 1;*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/

/*.invest-card-content .return-rate {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*    padding-bottom: 15px;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.invest-card-content .return-rate .return-amount {*/
/*    font-size: 24px;*/
/*    margin-bottom: 0;*/
/*}*/

/*.invest-card-content .return-rate p {*/
/*    margin-bottom: 0;*/
/*}*/

/*.invest-card-content .other-options {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    margin: -10px;*/
/*}*/

/*.invest-card-content .single-option {*/
/*    width: 50%;*/
/*    padding: 10px;*/
/*}*/

/*.invest-card-content .single-option p {*/
/*    margin-bottom: 0;*/
/*}*/

/*.invest-card-content .single-option h6 {*/
/*    margin-bottom: 0;*/
/*    font-size: 16px;*/
/*}*/

/*.invest-card-list {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*    margin: -3px -10px;*/
/*}*/

/*.invest-card-list li {*/
/*    color: #777;*/
/*    padding: 3px 10px;*/
/*    font-size: 15px;*/
/*}*/

/*.invest-card-list li i {*/
/*    color: var(--p-color);*/
/*}*/

/*.invest-card-content .location {*/
/*    font-size: 15px;*/
/*    color: #777;*/
/*}*/


/*.invest-card-btn {*/
/*    width: 44px;*/
/*    height: 44px;*/
/*    background-color: #000;*/
/*    color: #fff;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    border-radius: 50%;*/
/*    font-size: 18px;*/
/*    transition: all 0.3s;*/
/*}*/


/*.invest-card:hover .invest-card-btn {*/
/*    background-color: var(--main-color);*/
/*    color: #fff;*/
/*}*/

/*.invest-card-footer {*/
/*    padding-inline: 8px;*/
/*}*/

/*.invest-card-footer-inner {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 8px;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding-top: 12px;*/
/*    padding-bottom: 8px;*/
/*    border-top: 1px solid #e5e5e5;*/
/*}*/

/*.invest-card-footer .cmn-btn.btn-sm,*/
/*.invest-card-footer .cmn-btn2.btn-sm {*/
/*    padding: 10px 25px;*/
/*}*/

/*.invest-cat {*/
/*    font-weight: 500;*/
/*    margin-bottom: 0;*/
/*    font-size: 14px;*/
/*}*/

/*.invest-btn {*/
/*    color: var(--main-color);*/
/*    font-weight: 500;*/
/*}*/

/*.calculate-btn {*/
/*    color: var(--main-color);*/
/*    font-weight: 500;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/*.calculate-btn i {*/
/*    margin-right: 5px;*/
/*    animation: ring 2s infinite linear;*/
/*}*/

/* 
.calculate-btn i::before {
} */


@keyframes ring {
    0% {
        transform: rotate(35deg);
    }

    12.5% {
        transform: rotate(-30deg);
    }

    25% {
        transform: rotate(25deg);
    }

    37.5% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(15deg);
    }

    62.5% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* work section css start */
.work-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F6F8FC;
    z-index: -1;
    opacity: 0.96;
}

.work-section .work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    opacity: 0.05;
    z-index: -1;
}

.how-thumb {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.how-thumb img {
    max-width: 450px;
    max-height: 450px;
}

@media (max-width: 1199px) {
    .how-thumb {
        width: 450px;
        height: 450px;
    }

    .how-thumb img {
        max-width: 450px;
        max-height: 450px;
    }
}

.work-wrapper {
    position: relative;
    z-index: 1;
}

.work-wrapper::before {
    position: absolute;
    content: '';
    top: 50px;
    left: 43px;
    width: 2px;
    height: calc(100% - 110px);
    background-color: #fff;
    opacity: 0.2;
    z-index: -1;
}

.work-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-box-wrapper div[class*="col"] .work-box {
    position: relative;
}

.work-box-wrapper div[class*="col"] .work-box::before {
    position: absolute;
    content: '';
    top: 25%;
    right: -50px;
    width: 100px;
    height: 2px;
    border-top: 1px dashed #757575;
}

.work-box-wrapper div[class*="col"] .work-box::after {
    position: absolute;
    content: "\f285";
    top: 19%;
    right: -57px;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    color: #6c6c6c;
    font-size: 18px;
}

.work-box-wrapper div[class*="col"]:last-child .work-box::after,
.work-box-wrapper div[class*="col"]:last-child .work-box::before {
    display: none;
}

.work-box {
    text-align: center;
}

.work-box .icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0,0,0, 0.05);
    transition: all 0.3s;
}

.work-box:hover .icon  {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0, 0.1);
}

.work-box .icon img {
    max-height: 55px;
}

/* work section css end */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ffc451;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ffc451;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/* Timeline */

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testi-slider-buttons {
    display: flex;
    align-items: center;
}

.testi-slider-buttons button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--p-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s;
}

.testi-slider-buttons button:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.testi-slider-buttons .testi-next {
    margin-left: 20px;
}

.testimonial-slider .slick-list {
    margin: -15px;
}

.testimonial-slider .single-slide {
    padding: 15px;
}

.testimonial-box {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.085);
    border-radius: 16px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-rating i {
    color: #ffbd17;
}

.testimonial-box .content p {
    margin-bottom: 0;
    font-size: 18px;
}

.testimonial-quote {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    position: relative;
}

.testimonial-quote::before {
    position: absolute;
    content: '';
    top: 30px;
    left: -30px;
    width: calc(100% - 10px);
    height: 1px;
    background-color: #e5e5e5;
}

.testimonial-quote i {
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 22px;
    width: 40px;
    background-color: #fff;
    text-align: right;
}

.testimonial-box .client {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testimonial-box .thumb {
    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-box .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.testimonial-box .client-content {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.testimonial-box .title {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.testimonial-slider .slick-dots li {
    margin: 3px;
}

.testimonial-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.testimonial-slider .slick-dots li.slick-active button {
    width: 35px;
    background-color: var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

/* table css start */
.cmn-table {
    border: none;
}

.cmn-table thead th {
    font-size: 14px;
    color: #fff;
    background-color: var(--h-color);
    border: none;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
}

.cmn-table thead th:first-child {
    border-radius: 8px 0 0 0;
    text-align: left;
}

.cmn-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
}

.cmn-table tbody tr {
    background-color: #1c3e610d;
}

.cmn-table tbody td {
    border-top: none;
    border-bottom: 1px solid #d5d5d5;
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
    background-color: #fff;
    font-size: 15px;
}

.cmn-table tbody td:first-child {
    text-align: left;
}

.cmn-table tbody td:last-child {
    text-align: right;
}

.cmn-table tbody tr:last-child td {
    border-bottom: none;
}

.cmn-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
}

.cmn-table tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    -ms-border-radius: 0 0 5px 0;
    -o-border-radius: 0 0 5px 0;
}

.table>:not(:first-child) {
    border-top: none;
}

.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.cmn-table.style-separate {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.cmn-table.style-separate tbody tr {
    box-shadow: inset 0 0px 8px #d776004d;

}

.cmn-table.style-separate thead tr th:first-child {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.cmn-table.style-separate thead tr th:last-child {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}

.cmn-table.style-separate tbody tr {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

td[data-caption] {
    position: relative;
}

td[data-caption]::before {
    position: absolute;
    content: attr(data-caption);
    font-size: 14px;
    color: #849bab;
    font-weight: 600;
    top: 11px;
    left: 15px;
    display: none;
}

@media (max-width: 1199px) {
    .cmn-table thead {
        display: none;
    }

    .cmn-table tbody tr {
        display: block;
    }

    .cmn-table tbody tr:nth-child(odd) {
        background-color: #f7f7f70d;
    }

    .cmn-table tbody tr:nth-child(even) td {
        background-color: #f7f7f7;
    }

    .cmn-table tr td {
        display: block;
        text-align: right !important;
        padding: 10px 15px 10px 40%;
    }

    .cmn-table tr td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .cmn-table tr td:last-child {
        border-bottom: none !important;
    }

    td[data-caption]::before {
        display: block;
        width: 40%;
        text-align: left;
    }

    .cmn-table.style-separate tbody tr+tr {
        margin-top: 15px;
    }
}

.nav-pills.has-two {
    display: inline-flex;
    border: 1px solid var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    overflow: hidden;
}

.nav-pills.has-two .nav-item .nav-link {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 12px 20px;
}

.nav-pills.has-two .nav-item .nav-link.active {
    background-color: var(--main-color);
    color: #000;
}

/* table css end */


/* button css start */
.btn-group {
    margin: -3px;
}

.btn-group [class*="btn"] {
    margin: 3px;
}

.btn {
    padding: 10px 30px;
}

.btn-primary {
    background-color: #6777ef;
    border-color: #6777ef;
}

.btn-primary:hover {
    background-color: #4759df;
    border-color: #4759df;
}

.btn-info {
    background-color: #0bb2d4;
    border-color: #0bb2d4;
}

.btn-info:hover {
    background-color: #0a9ebc;
    border-color: #0a9ebc;
}

.btn-warning {
    background-color: #eb6709;
    border-color: #eb6709;
}

.btn-warning:hover {
    background-color: #dd6008;
    border-color: #dd6008;
}

.btn-danger {
    background-color: #ff4c52;
    border-color: #ff4c52;
}

.btn-danger:hover {
    background-color: #f63d43;
    border-color: #f63d43;
}

.btn-success {
    background-color: #11c26d;
    border-color: #11c26d;
}

.btn-success:hover {
    background-color: #0da65c;
    border-color: #0da65c;
}

.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.view-btn-primary {
    color: #6777ef !important;
    border: 1px solid #6777ef;
    background-color: #6777ef47;
}

.view-btn-primary:hover {
    background-color: #6777ef;
}

.view-btn-info {
    color: #0bb2d4 !important;
    border: 1px solid #0bb2d4;
    background-color: #0bb2d447;
}

.view-btn-info:hover {
    background-color: #0bb2d4;
}

.view-btn-warning {
    color: #eb6709 !important;
    border: 1px solid #eb6709;
    background-color: #eb670947;
}

.view-btn-warning:hover {
    background-color: #eb6709;
}

.view-btn-danger {
    color: #ff4c52 !important;
    border: 1px solid #ff4c52;
    background-color: #ff4c5247;
}

.view-btn-danger:hover {
    background-color: #ff4c52;
}

.view-btn-success {
    color: #11c26d !important;
    border: 1px solid #11c26d;
    background-color: #11c26d47;
}

.view-btn-success:hover {
    background-color: #11c26d;
}

.tab-btn-group {
    display: inline-flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active {
    border-color: var(--main-color);
    color: var(--main-color);
}

.tab-btn .num {
    padding: 3px 5px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 14px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    line-height: 1;
}

.cookie-modal {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal button,
.cookies-card__icon {
    background-color: var(--main-color) !important;
}

input[type="file"].form-control {
    line-height: 37px;
    padding: 6px 12px;
}

/* button css end */

/* modal css start */
.modal-title.text-white {
    color: var(--h-color) !important;
}

.modal-content {
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content .close {
    width: 30px;
    font-size: 20px;
    background-color: #ff4c52;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: none;
}

.modal-content .cmn-btn {
    padding: 8.5px 30px;
    font-size: 16px;
}

.modal-header,
.modal-footer {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.modal-open,
.modal-open #header {
    padding-right: 0px !important;
}

.modal-open {
    overflow: auto !important;
}

.card {
    border: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.card-header,
.card-footer {
    padding: 15px 20px;
    border-color: rgb(0 0 0 / 10%);
    background-color: #ffffff14;
}

.card-header {
    border-radius: 8px 8px 0 0;
}

.card-footer {
    border-radius: 0 0 8px 8px;
}

.card-body {
    padding: 15px 20px;
}

.bg-body {
    background-color: var(--body-bg) !important;
}

.bg-main {
    background-color: var(--main-color);
}

.payment-box {
    padding: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.payment-box-content {
    padding: 20px 10px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
}

/* modal css end */


/* badge css start */
.badge {
    padding: 0 0 0 15px;
    position: relative;
    color: #052554;
    background-color: transparent;
    font-size: 14px;
}

.badge::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #052554;
    border-radius: 50%;
    margin-top: -5px;
}

.badge-primary {
    color: #6777EF;
}

.badge-primary::before {
    background-color: #6777EF;
}

.badge-info {
    color: #0bb2d4;
}

.badge-info::before {
    background-color: #0bb2d4;
}

.badge-warning {
    color: #eb6709;
}

.badge-warning::before {
    background-color: #eb6709;
}

.badge-danger {
    color: #ff4c52;
}

.badge-danger::before {
    background-color: #ff4c52;
}

.badge-success {
    color: #11c26d;
}

.badge-success::before {
    background-color: #11c26d;
}

.single-reply {
    padding: 25px;
    background-color: var(--body-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-reply+.single-reply {
    margin-top: 20px;
}

.single-reply.admin-reply {
    position: relative;
}

.single-reply.admin-reply::before {
    position: absolute;
    content: 'Admin Reply';
    top: 0;
    right: 0;
    padding: 0px 7px 0 18px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 12px;
    -webkit-clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
    clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
}

/* badge css end */


/* affiliate css start */

.affiliate-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.affiliate-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F6F8FC;
    z-index: -1;
    opacity: 0.96;
}

.affiliate-section .affiliate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -1;
    opacity: 0.05;
}

.referral-wrapper {
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
}

.referral-box {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #e5e5e5;
}

.referral-box + .referral-box {
    margin-top: 24px;
}

.referral-box-icon {
    position: relative;
    width: 65px;
    height: 65px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 28px;
}

.referral-box-icon::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.referral-box-content {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.referral-box-title {
    font-size: 20px;
}
/* affiliate css end */

/* bonus section css start */
.bonus-box {
    position: relative;
    padding: 24px;
    background-color: var(--main-color2);
    border-radius: 20px;
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 5px 1px rgba(0,0,0,0.15);
    z-index: 1;
}

.bonus-box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 20px;
    z-index: -1;
}

.bonus-box-name {
    display: inline-block;
    color: #fff;
    margin-inline: auto;
    font-size: 20px;
    margin-bottom: 20px;
}

.bonus-box-title {
    padding: 8px 20px;
    background-color: var(--main-color);
    font-size: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    color: #fff;
}

.bonus-box p {
    color: #fff;
}

.bonus-box-price p {
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
}

.bonus-box-price span {
    line-height: 1;
    color: #fff;
}

/* bonus section css end */

/* blog section css start */
.blog-box {
    background-color: #fff;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.085);
    padding: 12px;
    transition: all 0.3s;
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.085);
}

.section-bg .blog-box {
    background-color: var(--body-bg);
}

.blog-box-thumb {
    overflow: hidden;
    height: 280px;
    border-radius: 12px;
}

.blog-box-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transition: all 0.5s;
}

.blog-box:hover .blog-box-thumb img {
    transform: scale(1.1, 1.1);
}

.blog-box-content {
    padding: 20px 12px 16px 12px;
}

.blog-box-content .title {
    font-size: 22px;
}

.blog-box-content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -15px;
}

.blog-meta li {
    padding: 3px 15px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.blog-meta li i {
    margin-right: 5px;
}

.blog-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--para-color);
    margin-top: 16px;
    padding-top: 16px;
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.blog-btn span {
    font-weight: 600;
}

.blog-btn i {
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.blog-btn:hover i {
    background-color: var(--main-color);
}

.side-blog {
    display: flex;
    flex-wrap: wrap;
}

.side-blog+.side-blog {
    margin-top: 20px;
}

.side-blog-thumb {
    width: 70px;
    height: 60px;
    overflow: hidden;
}

.side-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.side-blog-content {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.blog-share-part {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px 20px 20px;
}

.blog-share-part .caption {
    margin: 0 15px 0 0;
}

.blog-share-list {
    margin-bottom: 0;
}

.blog-share-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

.blog-share-list li {
    padding: 5px 10px;
}

.blog-share-list li a {
    color: var(--p-color);
}

.blog-share-list li a:hover {
    color: var(--main-color);
}

.blog-details-thumb {
    height: 450px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* blog section css end */


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.map-area {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    margin-top: 50px;
}

.map-area iframe {
    height: 550px;
    width: 100%;
}

@media (max-width: 991px) {

    .map-area,
    .contact-area {
        width: 100%;
        padding: 0;
    }

    .map-area iframe {
        height: 450px;
    }

    .contact-area {
        margin-top: 40px;
    }
}


@media (max-width: 575px) {
    .map-area iframe {
        height: 300px;
    }
}

.conact-section ~ .s-pt-120 {
    padding-top: 0 !important;
}

.contact-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.contact-item .title i {
    color: var(--main-color);
}


/* NewsLetter */

#sub {
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #3d3d3d !important;
    border-radius: 8px;
    color: #fff;
    width: 240px;
}

.btn-sub {
    width: 110px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    outline: none;
    background: #FF8E06 !important;
    color: #fff !important;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    border-radius: 10px;
    margin-left: 10px;
}


/* .btn-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #f5a508;
    z-index: -1;
    transition: all 0.5s;
} */


/* .btn-sub:hover::before {
    width: 100%;
} */

.btn-sub:hover {
    color: black;
    background: #FF8E06 !important;
}


/* .btn-sub:active:before {
    background: #b9b9b9;
} */

@media screen and (max-width:576px) {
    .button-form {
        display: flex;
    }

    .email-newsletter {
        margin-top: 0px !important;
    }

    .button-form #sub {
        min-width: 179px !important;
    }
}

@media screen and (min-width:768px) {
    .button-form #sub {
        min-width: 299px !important;
    }
}


/* faq */
.faq-thumb img {
    max-height: 450px;
}

.accordion-item {
    background-color: var(--body-bg);
    border: none;
    border-bottom: 1px solid #e5e5e5 !important;
    border-radius: 0 !important;
    padding-block: 8px;
}

.accordion-item+.accordion-item {
    margin-top: 15px;
}

.accordion-button {
    background-color: var(--body-bg);
    font-size: 20px;
    position: relative;
    padding-right: 30px;
    padding-left: 0;
    padding-top: 0;
    color: var(--h-color);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button:not(.collapsed)::after {
    color: var(--h-color);
}

.accordion-button:not(.collapsed) {
    color: var(--h-color);
}

.accordion-button::after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 5px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--h-color);
}

.accordion-body {
    padding-inline: 0;
}

/*------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    background-size: cover;
    background-position: center;
    padding-top: 190px;
    padding-bottom: 45px;
    position: relative;
    z-index: 1;
}

.breadcrumbs::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.65;
    z-index: -1;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--main-color);
    content: "/";
}

@media (max-width: 991px) {
    .breadcrumbs {
        padding-top: 100px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
        text-align: center;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}


/* auth section css start */
.auth-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.auth-wrapper {
    min-height: 100vh;
    width: 650px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 30px 70px;
    position: relative;
    z-index: 1;
}

.auth-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    z-index: -1;
}

.auth-wrapper span,
.auth-wrapper li,
.auth-wrapper p,
.auth-wrapper label,
.auth-wrapper i {
    color: #fff;
}

.auth-top-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.auth-logo img {
    max-width: 175px;
    max-height: 65px;
}

.auth-body-part {
    padding: 50px 0;
}

.auth-thumb-area {
    min-height: 100vh;
    padding: 50px;
    width: calc(100% - 650px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    position: relative;
    background-size: cover;
}

.auth-thumb-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.25;

}

.auth-section-two .auth-wrapper {
    width: 750px;
    padding: 30px 50px;
}

.auth-section-two .auth-thumb-area {
    width: calc(100% - 750px);
}

.divider-or {
    position: relative;
    z-index: 1;
    text-align: center;
}

.divider-or::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.1;
    z-index: -1;
}

.divider-or span {
    padding: 2px 10px;
    background-color: var(--main-color2);
}

/* auth section css end */


/* user dashboard */
ul {
    list-style: none;
    padding: 0;
}

.user-account-number {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(to top, #2f5b88, #153352);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.card-dot [class*="dot-"] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.card-dot .dot-2 {
    background-color: #fff;
    opacity: 0.1;
    transform: translateX(-15px);

}

.user-account-number i {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    color: #fff;
    opacity: 0.1;
    font-size: 150px;
    line-height: 1;
}

.user-account-number .caption {
    color: #fff;
}

.user-account-number .acc-number {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

.d-box-one {
    background-color: var(--body-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.d-box-one i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: -1;
    font-size: 56px;
    opacity: 0.05;
}

.d-box-one .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.d-box-one .top span {
    font-weight: 500;
}

.d-box-one-amount {
    margin-top: 30px;
    margin-bottom: 0;
}

.d-box-two {
    padding: 25px;
    background-color: #fff;
    border-radius: 24px;
    position: relative;
}

.d-box-two-icon {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    z-index: 1;
}

.d-box-two-icon::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 10px;
    z-index: -1;
}

.d-box-two-amount {
    margin-bottom: 6px;
    font-size: 24px;
}

.d-box-two .link-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--h-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--h-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.d-box-two .link-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.d-box-three {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .d-box-three {
        padding: 15px;
    }
}

.d-box-three .icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 24px;
    position: relative;
    color: var(--h-color);
    background-color: #f1f5f9;
}

.d-box-three .content {
    width: calc(100% - 55px);
    padding-left: 20px;
}

.d-box-three .content .title {
    font-size: 22px;
}

.text-small {
    font-size: 14px;
}

.no-data-icon {
    font-size: 46px;
}

.d-plan-notice {
    padding: 15px;
    background-color: #E5EAF0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.d-plan-notice p,
.d-plan-notice a {
    font-size: 14px;
}

.d-plan-notice a {
    color: var(--main-color);
}

/* investor section css start */
.investor-item {
    padding: 2.1875rem 1.5625rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.investor-item:hover {
    border-color: var(--main-color);
}

.investor-item .thumb {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-size: 200px auto;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .investor-item .thumb {
        width: 180px;
        height: 180px;
    }
}

.investor-item .thumb img {
    filter: grayscale(1);
}

.investor-item .content {
    margin-top: 1.5625rem;
}

.investor-item .content p {
    margin-bottom: 0;
}

.investor-item .content .title {
    font-size: 22px;
}

.investor-slider .slick-list {
    margin: -24px -16px;
}

.investor-slider .single-slide {
    padding: 24px 16px;
}

.investor-slider .slick-arrow {
    position: absolute;
    top: 45%;
    width: 40px;
    height: 35px;
    background-color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: centere;
}

.investor-slider .slick-arrow:hover {
    background-color: var(--main-color);
    color: #fff;
}

.investor-slider .slick-arrow.prev {
    left: 10px;
}

.investor-slider .slick-arrow.next {
    right: 10px;
}

.site-color {
    color: var(--main-color) !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.text-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* investor section css end */


/* cta-section css start */
.cta-section {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    padding: 40px 40px;
    background-color: #f1f5f9;
    border-radius: 16px;
    position: relative;
}

.cta-img {
    position: absolute;
    bottom: 0;
    right: 60px;
    max-width: 380px;
    max-height: 400px;
}

@media (max-width: 991px) {
    .cta-img {
        display: none;
    }
}

/* cta-section css end */

/* brand-section css start */
.brand-section {
    padding: 60px 0;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    display: inline-block;
    max-height: 145px;
}

/* brand-section css end */

/* footer css start */
.footer-section {
    position: relative;
    background-color: var(--main-color2);
    margin-top: auto;
    z-index: 1;
}

.footer-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--main-color2) 50%, transparent 160%);
    z-index: -1;
}

.footer-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -2;
}

.footer-obj2 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.25;
    z-index: -1;
}

.footer-obj2 img {
    max-height: 300px;
}

.footer-top .container {
    padding: 80px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle .container {
    padding: 60px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-height: 65px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.footer-social-links li a {
    color: #fff;
}


.footer-bottom {
    padding: 25px 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    margin: -3px -5px;
}

.social-links li {
    padding: 3px 5px;
}

.social-links li a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.social-links li a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.footer-info-list li {
    display: flex;
    flex-wrap: wrap;
}

.footer-text-muted {
    color: #c7c7c7 !important;
}

.footer-info-list .caption {
    font-weight: 500;
    width: 30px;
    position: relative;
}

.footer-info-list .description {
    width: calc(100% - 30px);
    padding-left: 4px;
}

.footer-section p,
.footer-section li,
.footer-section a,
.footer-section i,
.footer-section span {
    color: #fff;
}

.footer-box .logo img {
    max-width: 215px;
    max-height: 55px;
}

.footer-box .title {
    margin-bottom: 24px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.footer-link-list li:not(:first-child)::before {
    top: 5px;
}

.footer-link-list li a {
    padding: 5px 0;
    color: #c7c7c7;
}

.footer-link-list li:first-child a {
    padding-top: 0;
}

.footer-link-list li:last-child a {
    padding-bottom: 0;
}

/* footer css end */


.popup-search {
    width: 94%;
}

.popup-search-btn {
    height: 44px;
    margin-left: -38%;
    margin-top: -2px;
    background-color: #44c073;
    border: none;
    width: 36%;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 1px;
}

.form-wrapper {
    border-radius: 16px;
    background-color: #fff;
    z-index: 99;
}

.form-wrapper input {
    height: 48px;
}

.form-wrapper select {
    height: 48px;
}

.form-wrapper label {
    margin-bottom: 8px;
    color: #131533;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.f-btn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border: 2px solid #fff !important;
    border-radius: 40px !important;
    background-color: #2c71f0 !important;
    width: 100%;
    padding: 18px 40px;
    margin-top: 7px !important;
    color: #fff !important;
    transition: all 300ms ease;
}

.form-bg {
    position: absolute;
    left: 85%;
    top: 18%;
    transform: translateY(-50%);
    background-color: #0337cc;
    z-index: -4;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg2 {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translateY(-50%);
    background-color: #03cca7;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg3 {
    position: absolute;
    left: 82%;
    top: 86%;
    transform: translateY(-50%);
    background-color: #f9a6f6;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .our-services {
        margin-top: 20px;
    }

    .location {
        margin-top: 23px !important;
    }

    .location-title {
        padding-bottom: 6px !important;
    }

    .useful-link {
        padding-bottom: 26px !important;
    }
}

@media (max-width: 767.98px) {
    .form-bg {
        display: none;
    }

    .form-bg2 {
        display: none;
    }

    .form-bg3 {
        display: none;
    }

    .footer-links {
        margin-top: 30px !important;
    }

    .our-services {
        margin-top: 0px !important;
    }
}

.text-justifys {
    text-align: justify;
    text-justify: inter-word;
}

.text-justifys span {
    color: #fff !important;
}

.card {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.card-hight {
    height: 500px;
}

.top {
    width: 100%;
    background-size: cover;
}

.category {
    background-color: #ffbb38;
    width: 50%;
    padding: 8px 0;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    opacity: 0.6;
}

.intro {
    text-align: justify;
    text-justify: inter-word;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.author {
    display: flex;
    align-items: center;
}

.profile {
    background-size: cover;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    margin: 10px 0 10px 22px;
}

.name {
    padding-left: 10px;
    cursor: pointer;
    font-weight: 300;
}

.name a {
    font-weight: 400;
    color: orange;
}

.info {
    display: flex;
    color: #999;
    font-size: 14px;
    margin-top: 8px;
    padding-left: 0;
}

.info a {
    cursor: pointer;
}

ion-icon {
    height: 20px;
    width: 20px;
    display: flex;
    padding: 10px 8px 0 22px;
}

.user-icon img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.user-icon {
    display: flex;
    align-items: center;
    vertical-align: bottom;
}

.user-icon h6 {
    margin-left: 10px;
    margin-bottom: 0;
}

.comment {
    margin-left: 38px;
    margin-top: 5px;
}

.header-dashboard {
    margin-right: 20px;
}

.card-body .instruction * {
    white-space: break-spaces;
}

@media screen and (max-width: 1003px) {
    #hero .banner-calc-btn {
        /* padding: 55px 20px; */
        transition: ease-in-out 0.3s;
        height: 100%;
        text-align: left;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-top: 0px;
    }

    .banner-calc-box {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .triangle {
        display: none;
    }

    #hero h1 {
        font-size: 44px;
        line-height: 51px;
        padding: 24px 0;
    }
}

@media screen and (max-width:575px) {
    .faq-media {
        display: none;
    }

    .withdraw-ins {
        margin-top: 20px !important;
    }
}

.modal-footer {
    border-top: 0px !important;
}



/* dashboard-section css start */

.dashboard-main {
    min-height: 100vh;
    background-color: #E5EAF0;
}

.user-toggle-menu {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.header-inner-pages .user-toggle-menu {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-toggle::after {
    border-top-color: var(--p-color);
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a:focus,
.dropdown-menu li a:hover,
.dropdown-menu li a:active {
    background: var(--main-color);
    color: #fff;
}

.header-inner-pages .user-menu li a {
    color: var(--p-color);
}

.header-inner-pages .dropdown-menu {
    background-color: #fff;
}

.header-inner-pages .dropdown-menu li a {
    color: var(--p-color);
}

.user-toggle-menu img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}

@media (max-width: 575px) {
    .user-toggle-menu img {
        display: none;
    }

    .user-toggle-menu span {
        margin: 0 !important;
    }
}

.dashboard-body-part {
    padding: 110px 15px 50px 345px;
}

.d-sidebar {
    position: fixed;
    min-height: calc(100vh - 75px);
    max-height: calc(100vh - 75px);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    top: 75px;
    left: 0;
    width: 310px;
    padding: 20px 16px;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    overflow: auto;
    border-top: 1px solid #e5e5e5;
}

.sidebar-open-btn {
    border: none;
    background-color: var(--secondary-color);
    font-size: 22px;
    padding: 0;
    width: 35px;
    height: 35px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.sidebar-open-btn i.bi-arrow-bar-left {
    display: none;
}

.sidebar-open-btn.active i.bi-arrow-bar-left {
    display: inline-block;
}

.sidebar-open-btn.active i.bi-arrow-bar-right {
    display: none;
}

@media (max-width: 991px) {
    .sidebar-open-btn {
        display: flex;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--secondary-color);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
}


.d-sidebar-menu li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.d-sidebar-menu li.active>a {
    background-color: var(--main-color);
    color: #fff;
    border-bottom: none;
}

.d-sidebar-menu li a i {
    margin-right: 5px;
}

.submenu {
    display: none;
    background-color: var(--secondary-color);
    padding-block: 4px;
}

.d-sidebar-menu li + li {
    margin-top: 4px;
}

.d-sidebar-menu li a {
    display: block;
    padding: 10px 16px !important;
    border-radius: 8px;
    font-size: 18px;
    color: #4b4b4b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.d-sidebar-menu li a span {
    font-size: 26px;
    line-height: 1;
}

.d-sidebar-menu .submenu li a {
    padding-left: 49px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 16px;
}

.d-plan-notice {
    padding: 15px;
    background-color: #E5EAF0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.d-plan-notice p,
.d-plan-notice a {
    font-size: 14px;
}

.d-plan-notice a {
    color: var(--main-color);
}

.has_submenu {
    position: relative;
}

.has_submenu::after {
    position: absolute;
    content: "\f078";
    top: 16px;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
}

.has_submenu.active .submenu {
    display: block;
}
/* dashboard-section css end */

/* new css start */
.pagebuilder-content .pbcontainer {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .pagebuilder-content .pbcontainer {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .pagebuilder-content .pbcontainer {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .pagebuilder-content .pbcontainer {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1320px;
    }
}


@media (min-width: 1536px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1440px;
    }
}
/* new css end */

/* responsive css start */
@media (max-width: 1800px) {
    .calculate-area .container {
        padding-left: 150px;
    }
}

@media (max-width: 1560px) {
    .about-overview-item .number {
        font-size: 60px;
    }
}

@media (max-width: 1500px) {
    .calculate-area .container {
        padding-left: 280px;
    }
}

@media (max-width: 1399px) {
    .banner-title {
        font-size: 48px;
    }
    
    .about-overview-item .number {
        font-size: 48px;
    }

    .overview-box-amount {
        font-size: 32px;
    }

    .banner-section {
        padding-top: 230px;
        padding-bottom: 120px;
    }

    .referral-box-percentage {
        font-size: 42px;
    }

    .d-sidebar {
        width: 265px;
    }

    .dashboard-body-part {
        padding-left: 300px;
    }

    .featured-item .utilities {
        width: calc(100% - 200px);
    }

    .featured-item .content {
        padding: 35px 30px;
    }

    .featured-item .thumb {
        width: 40%;
    }

    .featured-item .content {
        width: 60%;
    }

    .featured-item .other-options {
        padding: 10px 0;
    }

    .invest-card-list {
        margin: -3px -8px;
    }

    .invest-card-list li {
        padding: 3px 8px;
    }
}

@media (max-width: 1199px) {
    .banner-section {
        position: relative;
        z-index: 1;
        padding-top: 150px;
        padding-bottom: 90px;
    }

    .banner-title {
        font-size: 42px;
    }

    .about-overview-item .number {
        font-size: 42px;
    }

    .calculate-area .container {
        padding-left: 150px;
    }

    .calculate-area .cmn-btn {
        padding: 12px 20px;
    }

    .subscribe-el {
        left: 0;
    }

    .auth-wrapper {
        width: 600px;
    }

    .auth-thumb-area {
        width: calc(100% - 600px);
    }

    .auth-thumb img {
        max-height: 550px;
    }

    .auth-section-two .auth-wrapper {
        width: 565px;
        padding: 30px;
    }

    .auth-section-two .auth-thumb-area {
        width: calc(100% - 565px);
    }

    .work-box-wrapper div[class*="col"]:nth-child(2) .work-box::before,
    .work-box-wrapper div[class*="col"]:nth-child(2) .work-box::after {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .featured-item .other-options .single-option {
        padding: 10px 10px;
    }

    .featured-item .other-options p {
        font-size: 13px;
    }

    .featured-item .other-options .option-title {
        font-size: 16px;
    }
}


@media (max-width: 991px) {
    .banner-section .banner-obj {
        width: 55%;
    }

    .banner-title {
        font-size: 48px;
    }

    .banner-section {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .about-overview-item .number {
        font-size: 36px;
    }

    .choose-box {
        padding: 25px;
    }

    .subscribe-el img {
        max-height: 265px;
    }

    .auth-wrapper {
        width: 400px;
        padding: 30px;
    }

    .auth-thumb-area {
        width: calc(100% - 400px);
    }

    .auth-thumb img {
        max-height: 400px;
    }

    .auth-section-two .auth-wrapper {
        width: 100%;
    }

    .auth-section-two .auth-thumb-area {
        display: none;
    }

    .d-sidebar {
        left: -105%;
        transition: all 0.3s;
    }

    .d-sidebar.active {
        left: 0;
        z-index: 9999;
    }

    .dashboard-body-part {
        padding-left: 15px;
    }

    .featured-item .thumb {
        width: 100%;
        height: 400px;
    }

    .featured-item .content {
        width: 100%;
        margin-top: 16px;
    }

    .choose-section .choose-section-bg-img {
        width: 100%;
    }

    .choose-section::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--main-color2);
        opacity: 0.95;
        z-index: -1;
    }

    .section-top {
        margin-bottom: 45px;
    }

    .testi-slider-buttons {
        display: none;
    }

    .property-details-banner {
        padding-top: 175px;
    }

    .property-details-thumb {
        height: 430px;
    }
}

@media (max-width: 767px) {


    .banner-title {
        font-size: 36px;
    }

    .work-box-wrapper div[class*="col"] .work-box::before,
    .work-box-wrapper div[class*="col"] .work-box::after {
        display: none;
    }

    .about-content-wrapper {
        padding: 30px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .overview-item p {
        font-size: 14px;
    }

    .subscribe-el img {
        max-height: 120px;
    }

    .auth-wrapper {
        width: 100%;
        padding: 30px;
    }

    .auth-thumb-area {
        display: none;
    }

    .featured-item .other-options .single-option {
        width: 50%;
    }

    .featured-item .other-options .single-option:nth-child(2)::after {
        display: none;
    }

    .featured-item .content .return .return-amount {
        font-size: 24px;
    }

    .section-top {
        margin-bottom: 35px;
    }

    .property-details-thumb {
        height: 335px;
    }
}

@media (max-width: 575px) {
    #header .logo img {
        max-height: 45px;
    }

    .referral-box-percentage {
        font-size: 32px;
    }

    .banner-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .about-overview-item .caption {
        font-size: 14px;
    }

    .about-overview-item .number {
        margin-bottom: 0;
    }

    .about-overview-item .number {
        font-size: 26px;
    }

    .overview-box-amount {
        font-size: 24px;
    }

    .overview-item {
        border-right: none;
    }

    .d-box-one {
        padding: 20px 50px 20px 20px;
    }

    .d-box-one .d-box-one-icon {
        width: 65px;
    }

    .d-box-one .d-box-one-icon i {
        font-size: 36px;
    }

    .tab-btn {
        padding: 10px;
    }

    .featured-item .thumb {
        height: 260px;
    }

    .featured-item .utilities {
        width: 100%;
    }

    .featured-item .utilities~.cmn-btn {
        width: 100%;
        margin-top: 15px;
    }

    .featured-item .content {
        padding: 25px 20px;
    }

    .featured-item .content .return p {
        font-size: 13px;
    }

    .featured-item .content .return .return-amount {
        font-size: 18px;
    }

    .feature-footer [class*="cmn-"] {
        padding: 10px 15px;
        font-size: 14px;
    }

    .property-details-banner {
        padding-top: 120px;
    }

    .property-details-thumb {
        height: 265px;
    }

    .single-review .content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 390px) {
    .invest-card-footer {
        padding: 10px 10px;
    }
    .invest-card-footer .btn-sm {
        padding: 10px !important;
    }
    .feature-footer [class*="cmn-"] {
        padding: 8px 9px;
        font-size: 13px;
    }
}

.social-links-btn {
    margin-right: 15px;
}

.property-ratings {
    font-size: 14px;
}

.property-ratings i {
    font-size: 13px;
}

.property-ratings i.fas {
    color: #f9bd15;
}

.property-ratings i.far {
    color: #fff;
}

.property-details-top .property-ratings i.far,
.featured-item .property-ratings i.far {
    color: #525456;
}

/* responsive css end */

/* new css start */

.offer-token-item {
    padding: 12px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.offer-token-item:hover {
    transform: translateY(-5px);
}

.offer-token-item .thumb {
    width: 20%;
    background-size: cover;
    border-radius: 12px;
    position: relative;
}

.offer-token-item .content {
    width: 80%;
    padding-left: 24px;
    padding-block: 8px;
    padding-right: 8px;
}

.offer-token-item .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.offer-token-item .top-part .title {
    font-size: 22px;
}

.offer-token-item .top-part .title a {
    color: var(--primary-color);
}

.offer-token-item .top-part .left p {
    font-size: 16px;
}

.offer-token-item .top-part .left p a {
    color: var(--text-color);
}

.offer-token-item .top-part .right {
    text-align: right;
}

.offer-token-item .info-part {
    display: flex;
    flex-wrap: wrap;
    padding-block: 16px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-block: 16px;
    justify-content: space-between;
}

.offer-token-item .info-part .single {
    width: calc(25% - 16px);
    border-right: 1px solid #dddddd;
}

.offer-token-item .info-part .single:last-child {
    border-right: none;
}

.offer-token-item .info-part .single p {
    font-size: 16px;
}

.offer-token-item .info-part .single h6 {
    font-size: 18px;
}

.offer-token-item .bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-token-item .seller {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-token-item .seller img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 50%;
}

.offer-token-item .seller .seller-content span {
    font-size: 16px;
    margin-top: 4px;
}

.offer-token-item .btn-default {
    font-size: 14px;
    padding: 15px 22px;
}



.offer-token-section {
    padding: 100px 0;
    background-color: #F6F6F6;
}

.agent-section {
    padding: 100px 0;
    background-color: #fff;
}

.offer-token-item {
    padding: 12px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.offer-token-item:hover {
    transform: translateY(-5px);
}

.offer-token-item .thumb {
    width: 20%;
    background-size: cover;
    border-radius: 12px;
    position: relative;
}

.offer-token-item .content {
    width: 80%;
    padding-left: 24px;
    padding-block: 8px;
    padding-right: 8px;
}

.offer-token-item .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.offer-token-item .top-part .title {
    font-size: 22px;
}

.offer-token-item .top-part .title a {
    color: var(--primary-color);
}

.offer-token-item .top-part .left p {
    font-size: 16px;
}

.offer-token-item .top-part .left p a {
    color: var(--text-color);
}

.offer-token-item .top-part .right {
    text-align: right;
}

.offer-token-item .info-part {
    display: flex;
    flex-wrap: wrap;
    padding-block: 16px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-block: 16px;
    justify-content: space-between;
}

.offer-token-item .info-part .single {
    width: calc(25% - 16px);
    border-right: 1px solid #dddddd;
}

.offer-token-item .info-part .single:last-child {
    border-right: none;
}

.offer-token-item .info-part .single p {
    font-size: 16px;
}

.offer-token-item .info-part .single h6 {
    font-size: 18px;
}

.offer-token-item .bottom-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offer-token-item .seller {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-token-item .seller img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 50%;
}

.offer-token-item .seller .seller-content span {
    font-size: 16px;
    margin-top: 4px;
}

.offer-token-item .btn-default {
    font-size: 14px;
    padding: 15px 22px;
}

.table-radius-0 tr th {
    border-radius: 0 !important;
}

label {
    font-weight: 600;
}
/* nex css end */

/* css for cms start */

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to right, #000, transparent);
	opacity: 0.8;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 350px 0 280px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 30%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .section-title h1 {
	font-size: 86px;
}

.hero-details {
	font-size: 18px;
	color: #fff;
}

.hero-social-media {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-36%);
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	z-index: 2;
}

.hero-social-media h3 {
	position: relative;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white-color);
	transform: rotate(180deg);
	cursor: none;
	writing-mode: vertical-rl;
	padding-bottom: 85px;
	transition: all 0.3s ease-in-out;
}

.hero-social-media h3:after {
	position: absolute;
	content: '';
	height: 76px;
	width: 1px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	background: var(--text-color);
}

.hero-social-media ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.hero-social-media ul li {
	line-height: normal;
	margin-bottom: 10px;
}

.hero-social-media ul li:last-child {
	margin-bottom: 0;
}

.hero-social-media ul li a {
	color: var(--white-color);
}

.hero-social-media ul li i {
	font-size: 16px;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.hero-social-media ul li i:hover {
	color: var(--accent-color);
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 30px;
}

/************************************/
/***       05. About Us Css       ***/
/************************************/

.about-us {
	background-position: right center;
	background-size: auto;
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-right: 30px;
}

.about-us-image-box-1,
.about-us-image-box-2 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-image-box-1 {
	width: calc(60% - 15px);
}

.about-us-image-box-2 {
	width: calc(40% - 15px);
}

.about-img-1,
.about-img-2,
.about-img-3 {
	width: 100%;
}

.about-img-1 figure,
.about-img-2 figure,
.about-img-3 figure {
	width: 100%;
	display: block;
}

.about-img-1 img,
.about-img-2 img,
.about-img-3 img {
	width: 100%;
	object-fit: cover;
}

.about-img-1 img {
	aspect-ratio: 1 / 1.97;
}

.about-img-2 img {
	aspect-ratio: 1 / 1.28;
}

.about-img-3 {
	margin-right: 40px;
}

.about-img-3 img {
	aspect-ratio: 1 / 1.22;
}

.intro-video-box {
	position: absolute;
	top: calc(50% + 30px);
	left: 60%;
	transform: translate(-50%, -50%);
}

.intro-video-box .video-play-button a {
	width: 120px;
	height: 120px;
	background: var(--primary-color);
	border: 10px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.intro-video-box .video-play-button:hover a {
	background: var(--accent-color);
}

.intro-video-box .video-play-button a i {
	font-size: 34px;
	color: var(--white-color);
}

.about-content-body {
	margin-bottom: 40px;
}

.about-detail-item {
	display: flex;
	margin-bottom: 30px;
}

.about-detail-item:last-child {
	margin-bottom: 0;
}

.about-detail-item .icon-box {
	position: relative;
	margin-right: 20px;
}

.about-detail-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.about-detail-item .icon-box img {
	max-width: 60px;
}

.about-detail-item .about-detail-content {
	width: calc(100% - 80px);
}

.about-detail-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-detail-content p {
	margin: 0;
}

.about-content-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
}

.about-contact-box {
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box {
	width: 50px;
	height: 50px;
	background: var(--white-color);
	box-shadow: 0px 0px 10px 0px #14183E1A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-box:hover .icon-box {
	background: var(--accent-color);
}

.about-contact-box .icon-box img {
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.about-contact-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-contact-content {
	width: calc(100% - 65px);
}

.about-contact-content p {
	font-size: 14px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.about-contact-content h3 {
	font-size: 16px;
}

.about-contact-content h3 a {
	color: inherit;
}


.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 24px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../img/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 16px;
	height: 14px;
}

.section-title h1 {
	font-size: 60px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 44px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section p,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.section-title.dark-section h3::before {
	background: url('../img/icon-sub-heading-dark.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}


.location-item {
	position: relative;
	height: calc(100% - 30px);
}

.location-image a {
	cursor: none;
}

.location-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.92%, rgba(25, 26, 31, 0.8) 72.43%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.location-image img {
	width: 100%;
	aspect-ratio: 1 / 1.254;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.location-item:hover .location-image img {
	transform: scale(1.1);
}

.location-item.style-two .location-image img {
	width: 100%;
	height: 320px;
}

.location-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.location-item:hover .location-btn {
	opacity: 1;
	visibility: visible;
	top: 30px;
}

.location-btn a {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.location-btn a:hover {
	background: var(--accent-color);
}

.location-btn img {
	width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.location-btn a:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(1);
}

.location-content {
	position: absolute;
	right: 65px;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

.location-content h3 {
	color: var(--white-color);
	font-size: 22px;
	text-transform: uppercase;
}

.location-content h3 a {
	color: inherit;
}

.our-location-footer {
	text-align: center;
	margin-top: 20px;
}

.our-location {
	padding: 100px 0;
}


.our-amenities {
	padding: 100px 0;
	background: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.our-amenities-list {
	display: flex;
	flex-wrap: wrap;
}

.amenities-item {
	width: 33.33%;
	border: 1px solid var(--divider-color);
	padding: 30px 45px;
	text-align: center;
}

.amenities-item:nth-child(3n + 1) {
	padding-left: 0;
	border-top: none;
	border-left: none;
}

.amenities-item:nth-child(3n + 2) {
	border-top: none;
	border-left: none;
}

.amenities-item:nth-child(3n + 3) {
	padding-right: 0;
	border-top: none;
	border-right: none;
	border-left: none;
}

.amenities-item:nth-last-child(-n + 3) {
	border-bottom: none;
}

.amenities-item .icon-box {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.amenities-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.amenities-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 60px;
	z-index: 1;
}

.amenities-item-content {
	margin-bottom: 30px;
}

.amenities-item-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.amenities-item-content p {
	margin: 0;
}

.features-btn a {
	position: relative;
	display: inline-block;
	color: var(--accent-color);
	font-size: 18px;
	text-transform: capitalize;
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
	/* visibility: hidden; */
	/* transform: translateX(-50%); */
}

/* .amenities-item:hover .features-btn a{
	visibility: visible;
	transform: translateX(0%);
} */

.features-btn a:after {
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
	background-position: right center;
	background-size: cover;
	width: 13px;
	height: 13px;
	visibility: visible;
	transition: all 0.4s ease-in-out;
}

.features-btn a:hover {
	color: var(--primary-color);
}

.features-btn a:hover:after {
	filter: brightness(0);
}


.our-experience {
	padding: 100px 0;
}

.our-experience-img {
	background: url('../img/experience-img-bg.png') no-repeat;
	background-position: bottom left;
	background-size: auto;
	padding-left: 150px;
}

.our-experience-img img {
	width: 100%;
	aspect-ratio: 1 / 1.392;
	object-fit: contain;
}

.experience-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.experience-counter-item {
	position: relative;
	width: calc(50% - 10px);
	text-align: center;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.experience-counter-item:before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -10px;
	bottom: 0;
	left: auto;
	background: var(--divider-color);
}

.experience-counter-item:after {
	content: '';
	position: absolute;
	height: 1px;
	width: 100%;
	top: auto;
	right: 0;
	bottom: -10px;
	left: 0;
	background: var(--divider-color);
}

.experience-counter-item:nth-last-child(-n + 2):after,
.experience-counter-item:nth-child(2n + 2):before {
	display: none;
}

.experience-counter-item .icon-box {
	position: relative;
	display: inline-block;
	margin-right: 20px;
}

.experience-counter-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.experience-counter-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 60px;
	z-index: 1;
}

.experience-counter-content {
	width: calc(100% - 80px);
	text-align: left;
}

.experience-counter-content h2 {
	font-size: 20px;
}

.experience-counter-content p {
	font-size: 14px;
	margin: 0;
}


.our-features {
	background: url('../img/our-features-bg.png'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto;
	padding: 100px 0;
}

.our-features-content {
	position: sticky;
	top: 20px;
}

.our-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 30px;
}

.features-item {
	position: relative;
	width: calc(50% - 15px);
}

.features-item::before {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	background-color: var(--divider-color);
	width: 100%;
	height: 1px;
}

.features-item:nth-last-child(-n + 2):before {
	display: none;
}

.features-item .icon-box {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.features-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.features-item .icon-box img {
	position: relative;
	max-width: 60px;
	z-index: 1;
}

.features-item-content h3 {
	color: var(--white-color);
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.features-item-content p {
	color: var(--white-color);
	margin: 0;
}


.agent-item {
    background: #fff;
    border-radius: 12px;
    position: relative;
    z-index: 0;
    padding-top: 75px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    transition: all 0.3s;
}

.agent-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.agent-item .agent-cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    z-index: -1;
}

.agent-item .agent-thumb {
    width: 90px;
    height: 90px;
    border: 3px solid #fff;
    margin-inline: auto;
    border-radius: 50%;
    overflow: hidden;
}

.agent-item .agent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.agent-item .agent-content {
    margin-top: 24px;
}

.agent-item .agent-content .agent-name a {
    color: var(--primary-color);
}

.agent-item .agent-content .agent-name:hover a {
    color: var(--accent-color);
}


.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.356;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 50px;
	right: 30px;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-readmore-btn {
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 14px;
	transform: rotate(0);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(45deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-block;
	margin-right: 15px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--accent-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

/************************************/
/***   13. Our Testimonial Css    ***/
/************************************/

.our-testimonial {
	background: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.testimonial-slider {
	position: relative;
}

.testimonial-slider .swiper {
	position: static;
	margin: 0 120px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	text-align: center;
}

.testimonial-content {
	margin-bottom: 60px;
}

.testimonial-content p {
	color: var(--primary-color);
	font-size: 36px;
	line-height: 1.2em;
	margin: 0;
}

.author-image {
	margin-bottom: 20px;
}

.author-image figure,
.author-image img {
	border-radius: 50%;
	width: 100px;
	height: 100px;
	object-fit: cover;
	-o-object-fit: cover;
	margin: 0 auto;
}

.author-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn-prev,
.testimonial-btn-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.testimonial-btn-prev {
	left: 0;
}

.testimonial-btn-next {
	right: 0;
}

.testimonial-btn-prev:hover,
.testimonial-btn-next:hover {
	background-color: var(--primary-color);
}

.testimonial-btn-prev::before,
.testimonial-btn-next::before {
	font-family: 'FontAwesome';
	content: '\f053';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 16px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-btn .testimonial-btn-next::before {
	transform: rotate(180deg);
}

/************************************/
/***   		14. Our FAQs Css 	  ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-image {
	position: relative;
	margin-right: 30px;
}

.our-faqs-img figure {
	display: block;
}

.our-faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 1.21;
	object-fit: cover;
}

.query-box {
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	background: var(--primary-color);
	padding: 30px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	z-index: 1;
}

.query-box-content h3 {
	color: var(--white-color);
	font-size: 22px;
	margin-bottom: 5px;
}

.query-box-content p {
	color: var(--white-color);
	margin: 0;
}

.faq-accordion .accordion-item {
	border: none;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	padding: 0;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button:focus {
	outline: none;
	box-shadow: none;
	background-color: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
	margin-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f4fe';
	font-family: bootstrap-icons !important;
	font-weight: 400;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 24px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\F2EA';
	background-image: none;
}

.accordion-button::after {
	background-image: none;
}

.accordion-item .accordion-body {
	padding: 0 30px 20px 0;
}

.accordion-item .accordion-body p {
	margin-bottom: 15px;
}

.accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***   		15. Our Blog Css 	  ***/
/************************************/

.our-blog {
	background: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	padding: 100px 0 70px;
	background-size: cover;
}

.post-item {
	border: 1px solid var(--divider-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image a {
	display: block;
	overflow: hidden;
	cursor: none;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	padding: 30px 25px;
}

.post-item-content h2 {
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 15px;
}

.post-item-content h2 a {
	color: inherit;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.post-item-content p {
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 30px;
	border-top: 1px solid var(--divider-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.post-item-btn a:hover {
	color: var(--white-color);
}

.post-item-btn a:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::before {
	right: auto;
	left: 0;
	width: 100%;
}

.post-item-btn a img {
	position: relative;
	max-width: 18px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.post-item-btn a:hover img {
	filter: brightness(1) invert(1);
}

/* css for cms end */






















