/* ============================:: common styling start ::=========================*/
:root{
    --white: #ffffff;
    --black: #000000;
    --text: #D8D7D8;
    --pcolor: #777;
    --primary-color: #221c13;
    --primary-color: #ca0000;
    --secondary-color: #ceae92;
    --secondary-color: #b3b3b3;
    --title-color: #3e4494;
    --bg-color: #f9f9f9;
    --bg-black: #333332;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
    font-family: Lato-Regular;
}

body{
    font-size: 16px;
    font-family: Lato-Regular;
    scroll-behavior: smooth;
}

@font-face {
    font-family: Lato-Regular;
    src: url('../font/Lato-Regular.ttf');
}

@font-face {
    font-family: Lato-Light;
    src: url('../font/Lato-Light.ttf');
}

@font-face {
    font-family: Lato-Thin;
    src: url('../font/Lato-Thin.ttf');
}

@font-face {
    font-family: Lato-Bold;
    src: url('../font/Lato-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../font/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('../font/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../font/Montserrat-Bold.ttf');
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

a {
    text-decoration: none !important;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wrap_padding{
    padding: 80px 0;
}

.mt-10{
    margin-top: 10rem;
}

.mb-10{
    margin-bottom: 10rem;
}

.form-control:focus,
.btn-close:focus{
    border-color: var(--primary-color);
    outline: 0;
    /* box-shadow: 0 0 0 0.25rem rgb(190 143 45 / 25%); */
    box-shadow: none;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
  }
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
}

/* scroll to top styling */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 10px;
    display: none;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-color);
    z-index: 99;
}
.back-to-top:hover{
    color: var(--primary-color);
    background: transparent;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus,.form-select:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
    /* box-shadow: 0 0 0 0.25rem rgb(85 45 132 / 25%); */
}

.navbar-toggler:focus{
    box-shadow: none !important;
}

/* Text Selection Color */
::selection {
    color: #fff;
    background: var(--primary-color);
}

/* ============================:: common styling end ::=========================*/

/* ============================:: Header/Navbar styling start ::=========================*/
.lsheader{
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
}
.lsheader-top{
    padding: 8px 0;
    background-color: #ca00002b;
}
.lsheader-topineer{
    display: flex;
    gap: 12px;
    justify-content: space-around;
}
.lsheader-topineer .lsheader-top__link{
    display: flex;
    gap: 8px;
    color: var(--pcolor);
}
.lsheader-topineer .lsheader-top__link i{
    color: #ca0000;
}
.navbar-brand{
    width: 16%;
    color: var(--white);
}

.navScrolled{
    background: var(--white);
    -webkit-box-shadow: 0 10px 50px 0 rgba(4,16,38,.06);
    box-shadow: 0 10px 50px 0 rgba(4,16,38,.06);
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
}
@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lsheader2:after{
    background-color: var(--black) !important;
}

.navScrolled.lsheader .navbar .navbar-nav .nav-item .nav-link,
.lsheader2 .navbar .navbar-nav .nav-item .nav-link,
.navScrolled.lsheader .navbar-brand{
    color: var(--white);
    color: var(--pcolor);
}

.navbar .navbar-nav .nav-item {
    position: relative;
}

.navbar .navbar-nav .nav-item .nav-link{
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--white);
    color: var(--pcolor);
    /* min-height: 4rem; */
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 4px;
    gap: 5px;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navScrolled.lsheader .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active,
.navScrolled.lsheader .navbar .navbar-nav .nav-item .nav-link.active{
    color: var(--secondary-color);
    color: #ca0000;
}
.sidenavOffcanvas .offcanvas-head{
    width: 20%;
}

.sidenavOffcanvas .offcanvas-header{
    border-bottom: 1px solid #dee2e6;
}

.collapsible{
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
}

.collapsible-btn{
    display: block;
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--white);
}

.collapsible-btn:hover{
    color: var(--white);
}

.collapsible-icon{
    position: absolute;
    right: 0;
    top: calc(50% - 5.5px);
    width: 11px;
    height: 11px;
}

.collapsible-inr{
    display: block;
    padding: 13px 0;
    color: #ffffff80;
    margin-left: 16px;
}

.collapsible-inr:hover{
    color: #ffffff80;
}

.collapse{
    border-bottom: none;
} 

.collapse .collapsible{
    border-bottom: none;
}

.hireBtn{
    color: var(--white) !important;
    background-color: var(--primary-color);
}

/* == scroll to top Progress == */

.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'bootstrap-icons';
	content: '\F148';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	color: var(--primary-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: .6;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'bootstrap-icons';
	content: '\F148';
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	opacity: 0;
	background-image: linear-gradient(298deg, var(--primary-color), var(--primary-color));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--primary-color);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* == scroll to top Progress == */
/* ============================:: Header/Navbar styling end ::=========================*/


/* ============================:: home styling start ::=========================*/
.home-area{
    position: relative;
}

.homeVideo{
    width: 100%;
}

.homeCarousel{
    width: 100%;
    height: 20vw; /*43vh*/
    position: relative;
}

.home_area .owl-nav{
    position: absolute;
    bottom: 9%;
    right: 0;
    transform: translate(-50%,-50%);
    padding: 10px;
    margin-top: 0 !important;
    width: 9%;
} 

.home_area .owl-nav .owl-prev i,
.home_area .owl-nav .owl-next i{
    color: var(--darkGold);
    font-size: 20px;
}

.home_area .owl-theme .owl-nav [class*=owl-]:hover{
    background: none ;
}

.home_area .owl-prev, .home_area .owl-next {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: .6;
    transform: translateY(-50%);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    transition: all .3s;
    border-radius: 50% !important;
}
.home_area .owl-prev {
    left: 0px;
}
.home_area .owl-next {
    right: 0px;
}
.home_area .owl-prev:hover, .home_area .owl-next:hover {
    opacity: 1;
}
.about-one__left {
    position: relative;
    display: block;
    margin-right: 100px;
    margin-top: 60px;
}
.about-one__img{
    height: 25vw;
}
.about-one__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.about-one__img-box{
    position: relative;
    z-index: 1;
}
.about-one__img-box::before{
    position: absolute;
    content: "";
    top: -60px;
    left: 100px;
    right: -60px;
    bottom: 60px;
    border: 8px solid var(--secondary-color);
    z-index: 1;
}
.about-one__shape-1 {
    position: absolute;
    top: -96px;
    right: -92px;
    opacity: .20;
    z-index: -1;
}
.about-one__right {
    position: relative;
    display: block;
    margin-left: 40px;
}
.section-title{
    margin: 0;
    color: var(--black);
    font-size: 38px;
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
}
.section-text{
    margin: 30px 0;
    line-height: 28px;
    letter-spacing: 2px;
    color: var(--pcolor);
}
.section-title__tagline{
    position: relative;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    color: #ca0000;
    text-transform: uppercase;
}
.section-title__tagline::before{
    content: "";
    position: absolute;
    top: 9px;
    right: -30px;
    height: 1px;
    width: 21px;
    background-color: var(--secondary-color);
}
.project-area,.gallery-area {
    background-color: #f4f5f8;
}
.project-one__right{
    position: relative;
    display: block;
    border: 3px solid var(--secondary-color);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 35px 49px;
}
.project-img-wrap{
    height: 25vw;
}
.project-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.office-img{
    height: 22vw;
}
.office-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.office-detail{
    margin-top: 1rem;
}
.office-title{
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 700;
}
.office-add{
    margin: 0;
}
.banner-area{
    position: relative;
}
.banner-area::before{
    position: absolute;
    content: '';
    z-index: 0;
    top: 0;
    right: 0;
    background-color: #0000009c;
    width: 100%;
    height: 100%;
}
.banner-one{
    position: relative;
}
.banner-one .section-title{
    color: var(--white);
}
.banner-one .section-text{
    color: var(--white);
    opacity: .6;
}
.banner-link{
    display: flex;
    gap: 10px;
}
.gallery-img{
    height: 25vw;
}
.gallery-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-area .owl-prev, .gallery-area .owl-next {
    width: 45px;
    height: 45px;
    font-size: 18px !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    transition: all .3s;
    border-radius: 50% !important;
}
.gallery-area .owl-prev:hover, .gallery-area .owl-next:hover {
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
}
.gallery-card{
    position: relative;
    display: block;
    border: 3px solid var(--secondary-color);
    background-color: #f4f5f8;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 12px 25px;
}
.contact-one__list .contact-one__list-item{
    display: flex;
    position: relative;
}
.contact-one__list .contact-one__list-item:not(:last-child){
    margin-bottom: 1rem;
}
.contact-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    font-size: 16px;
    color: var(--primary-color);
    background-color: #f4f4f4;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-content{
    margin-left: 20px;
}
.contact-content p{
    margin-bottom: 2px;
    color: var(--pcolor);
}
.contact-content a{
    display: block;
    color: var(--black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-content a:hover{
    color: var(--primary-color);
}
.contact-one__right{
    position: relative;
    display: block;
    padding: 100px 100px 100px;
    background-color: #f4f4f4;
}
.contact-one__right .form-control{
    padding: 14px 20px;
    border: none;
    border-radius: 0;
}
.contact-btn{
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 14px 40px;
    transition: all 0.5s linear;
    z-index: 1;
    border: 0;
    border-radius: 40px;
}

.footer-area{
    background-color: var(--primary-color);
    background-color: #f4f5f8;
}

.footer-logo{
    width: 50%;
    display: inline-block;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo-desc{
    font-size: 14px;
    color: #646464;
    padding-right: 15%;
}

.footer-social{
    display: flex;
    gap: 18px;
}

.footer-social li{
    position: relative;
    z-index: 0;
}

.footer-social-link{
    color: var(--black);
    transition: all .2s;
}

.footer-social-link:hover{
    color: var(--primary-color);
}

.textwidget-title{
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    font-family: Lato-Bold;
}

.menu-item li:not(:last-child){
    margin-bottom: 12px;
}

.menu-links{
    display: inline-flex;
    color: #646464;
    text-transform: capitalize;
}

.menu-links::before{
    content: "\F151";
    font-family: bootstrap-icons;
    display: inline-block;
    width: 0px;
    color: transparent;
    transition: width 300ms, color 300ms;
    -webkit-transition: width 300ms, color 300ms;
    font-size: 12px;
}

.menu-links:hover{
    color: var(--primary-color);
}

.menu-links:hover::before{
    color: var(--primary-color);
    width: 26px;
}

.cont-links{
    display: flex;
    gap: 10px;
    color: #646464;
    transition: all .2s;
}

.cont-links:hover{
    color: var(--primary-color);
}

.contactus-area .cont-links:hover.cont-links i{
    color: #dbe6f7;
    background-color: var(--title-color);
}

.cont-item li:not(:last-child){
    margin-bottom: 12px;
}

.cont-links i{
    color: var(--primary-color);
}

.footer-bottom-area{
    padding: 12px 0;
    background-color: #eeeff1;
}
.footer-disclaimer{
    padding: 20px 0;
    background-color: #eeeff1;
}
.footer-disclaimer p{
    margin: 0;
    color: #646464;
    font-size: 14px;
}
.footer-bottom-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.developer_area a{
    color: var(--primary-color);
}
.footer-top-area{
    position: relative;
    z-index: 1;
}
.site-footer{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: .2;
    z-index: -1;
}
.site-footer img{
    width: 100%;
    height: 100%;
}
.project-box{
    position: relative;
}
.project-one__img{
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 30vw;
}
.project-one__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-one__img::before{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(50, 52, 59);
    background: linear-gradient(180deg, rgba(50, 52, 59, 0) 36%, rgba(50, 52, 59, 0.9192051820728291) 82%);
}
.project-one__title-box{
    position: absolute;
    bottom: 46px;
    left: 30px;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    transform: translateY(0%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
}
.project-one__title{
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.project-one__hover{
    position: absolute;
    bottom: 50px;
    left: 30px;
    opacity: 0;
    z-index: 2;
    visibility: hidden;
    transform: translateY(-66%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
}
.project-one__hover-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}
.project-one__hover-text{
    color: var(--white);
    opacity: .70;
    padding-top: 2px;
    padding-bottom: 20px;
}
.project-one__hover-arrow a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    font-size: 15px;
    color: var(--secondary-color);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.project-box:hover .project-one__title-box{
    visibility: visible;
    transform: translateY(150%);
    opacity: 0;
}
.project-box:hover .project-one__hover{
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.breadcrumb-area{
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
}
.breadcrumb-overlay{
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background-color: #000000;
    width: 100%;
    height: 100%;
    opacity: .60;
}
.breadcrumb-inner {
    position: relative;
    text-align: center;
}
.breadcrumb-title{
    font-size: 70px;
    color: var(--white);
    text-transform: capitalize;
}
.breadcrumb {
    display: flex;
    color: var(--white);
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.breadcrumb a, .breadcrumb-area .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary-color);
}
.ppt-detail-img{
    display: block;
    height: 38vw;
}
.ppt-detail-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ppt-detail-content{
    position: relative;
    margin-top: 50px;
}
.ppt-detail-content__title{
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 20px;
}
.ppt-detail-content__price{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.ppt-detail-content__text{
    letter-spacing: 2px;
    color: var(--pcolor);
}
.ppt-detail-content__list{
    margin-top: 62px;
}
.ppt-detail-content__list .ppt-detail-content__list-item{
    display: flex;
    gap: 12px;
    font-weight: 600;
}
.ppt-detail-content__list .ppt-detail-content__list-item:not(:last-child){
    margin-bottom: 14px;
}
.ppt-detail-content__list .ppt-detail-content__list-item i{
    color: var(--secondary-color);
}
.property-form__area{
    position: relative;
    z-index: 1;
}
.property-form__area::before{
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    right: 0;
    background-color: #0000009c;
    width: 100%;
    height: 100%;
}
.property-one .section-title{
    color: var(--white);
}
.property-one .section-text{
    color: var(--white);
    opacity: 0.6;
}
.ppt-detail__form{
    position: relative;
    z-index: 1;
    padding: 60px;
    background-color: var(--white);
    border-radius: 8px 8px 14px 14px;
}
.ppt-detail__form::before{
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 14px 14px 0px 0px;
    background-color: var(--primary-color);
}
.ppt-form__heading-tagline{
    display: inline-block;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.ppt-form__heading-title{
    font-size: 35px;
}
.ppt-detail__form-heading{
    margin-bottom: 2rem;
}
.ppt-detail__form .form-control{
    font-size: 14px;
    padding: 14px 30px;
}
.property-modal .modal-title{
    font-size: 22px;
    color: var(--primary-color);;
    text-transform: capitalize;
}
.property-form .form-control{
    padding: 14px;
}
.property-form{
    padding: 15px;
}
.property-form .property-form-title{
    font-size: 35px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: capitalize;
}
.property-form .contact-btn{
    font-size: 14px;
    letter-spacing: 1px;
}
.property-image{
    position: relative;
    height: 18vw;
}
.property-image::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    opacity: 0;
    z-index: 1;
    background-color: rgb(34, 28, 19, 0.4);
}
.property-box{
    min-height: 100%;
    overflow: auto;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0px 4px 28px 0 rgb(0 0 0 / 21%);
}
.property-image{
    overflow: hidden;
}
.property-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.property-box:hover .property-image img{
    transform: scale(1.1);
}
.property-cont{
    padding: 16px;
    background-color: var(--white);
}
.property-price{
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.property-image .hover-property-explore{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0.9);
    transition: .3s;
    opacity: 0;
    z-index: 5;
}
.property-image .hover-property-explore .property-explorelink{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--primary-color);
}
.property-box .property-title{
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
}
.property-box .property-sub{
    color: var(--black);
    text-transform: capitalize;
}
.property-box:hover .property-image .hover-property-explore{
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) scale(1);
}
.property-box:hover .property-image::before{
    opacity: 1;
}
.property-list-title{
    font-size: 72px;
    color: var(--black);
    margin-bottom: 20px;
}
.property-list-text{
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 2px;
    color: var(--pcolor);
}
.property-list-area .project-inner{
    margin-top: 4rem;
}
.property-btn{
    position: relative;
    font-size: 18px;
    padding-bottom: 4px;
    color: var(--primary-color);
    text-transform: capitalize;
}
.property-btn::before{
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    transition: all .3s;
    background-color: var(--primary-color);
}
.property-btn:hover::before{
    width: 100%;
}

.propertyList-carousel .owl-nav {
    margin-top: 0 !important;
}
.propertyList-carousel .owl-prev {
    left: 10px;
}
.propertyList-carousel .owl-next {
    right: 10px;
}
.propertyList-carousel .owl-prev, .propertyList-carousel .owl-next {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    border-radius: 50% !important;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    font-size: 20px !important;
}
.property-btn__box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ppt-btn{
    width: 49%;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    text-align: center;
    background-color: transparent;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all .3s;
    border: 1px solid var(--primary-color);
}
.ppt-btn:hover{
    color: var(--white);
    background-color: var(--primary-color);
}
.req-sch__modal .modal-title{
    font-size: 18px;
    text-transform: capitalize;
}
.req-sch__modal .modal-footer{
    border-top: 0;
}
.req-sch__form .form-control{
    padding: 14px;
}
.req-sch__btn{
    padding: 12px;
    border-radius: 6px;
    border: none;
    text-align: center;
    background-color: transparent;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all .3s;
    border: 1px solid var(--primary-color);
}
.req-sch__btn:hover{
    color: var(--white);
    background-color: var(--primary-color);
}

.work-accordian .accordion-button {
    padding: 1.5rem 2.25rem;
    border-radius: 10px !important;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
  
.work-accordian .accordion-flush .accordion-item {
    margin: 12px 0;
    border-radius: 30px;
    box-shadow: 0px 0px 50px 0 rgba(0, 0, 1, 0.09);
}
  
.work-accordian .accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}
  
.work-accordian .accordion-button:not(.collapsed) {
    box-shadow: unset;
    color: var(--white);
    background-color: var(--primary-color);
}
  
.work-accordian .accordion-item {
    border: unset;
}
  
.work-accordian .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.inquiry-modal{
    position: fixed;
    bottom: 170px;
    right: 0;
    transition: all.3s;
    z-index: 9;
    transform: rotate(-90deg);
}
.inquiry-modal a{
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    color: var(--white);
    text-transform: capitalize;
    border-radius: 30px;
    background-color: var(--primary-color);
}
.inquiry-modal a i{
    font-size: 22px;
}
.lfp-pop{
    position: fixed;
    top: 50%;
    right: 80px;
    z-index: 9;
    transform: translateY(-50%);
}
.lfp-pop__box{
    position: relative;
    width: 400px;
    padding: 40px 30px;
    border-radius: 14px;
    background-color: var(--white);
    box-shadow: 0px 4px 28px 0 rgb(0 0 0 / 21%);
}
.lfp-pop__title{
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
}
.lfp-pop__cls{
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
}
.lfp-pop__form .form-control{
    padding: 14px;
}
.ppt-call{
    display: flex;
    gap: 12px;
    text-transform: capitalize;
    height: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--white);
    background-color: #ca0000;
}











/* ============================:: responsive styling start ::=========================*/


@media only screen and  (min-width: 992px) {
    .container-fluid{
        --bs-gutter-x: 6rem;
    }
}

@media only screen and  (max-width: 991px) {
    .sidenavOffcanvas{
        width: 80% !important;
    }
}

@media only screen and (max-width: 820px){
    .homeTitle{
        font-size: 26px;
    }
    .homeDesc{
        font-size: 14px;
    }
    .home_area .owl-nav{
        width: 14%;
    }
    .about-one__left {
        margin-right: 50px;
        margin-top: 40px;
    }
    .about-one__img-box::before {
        top: -35px;
        left: 45px;
        right: -45px;
        bottom: 35px;
    }
    .about-one__shape-1{
        top: -60px;
        right: -70px;
    }
    .section-title__tagline{
        font-size: 13px;
    }
    .section-title{
        font-size: 18px;
    }
    .section-text{
        font-size: 12px;
        margin: 12px 0;
        line-height: 22px;
        letter-spacing: 1px;
    }
    .project-one__right{
        padding: 30px;
    }
    .gallery-card{
        padding: 14px;
    }
    .gallery-area .owl-prev, .gallery-area .owl-next{
        width: 35px;
        height: 35px;
        font-size: 14px !important;
    }
    .contact-one__right{
        padding: 70px 50px 70px;
    }
    .homeCarousel,.homeSlideritem_frame{
        height: 20vw; /*15vh*/
    }
    .wrap_padding {
        padding: 40px 0;
    }
    .project-inner{
        margin-top: 2rem;
    }
    .project-one__img{
        height: 50vh;
    }
    .project-one__title,.project-one__hover-title{
        font-size: 18px;
    }
    .project-one__hover-arrow a{
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .project-one__hover-text{
        padding-bottom: 10px;
    }
    .breadcrumb-area{
        height: 25vh;
    }
    .breadcrumb,.ppt-detail-content__text,.ppt-detail-content__list .ppt-detail-content__list-item,.project-one__hover-text,.property-box .property-sub,.property-list-text,.footer-disclaimer p,.footer-bottom-content,.ppt-form__heading-tagline{
        font-size: 14px;
    }
    .breadcrumb-title{
        font-size: 32px;
    }
    .ppt-detail-content__title{
        font-size: 24px;
    }
    .property-box .property-title{
        font-size: 16px;
    }
    .property-list-title{
        font-size: 30px;
    }
    .inquiry-modal a{
        font-size: 14px;
        padding: 8px 14px;
    }
    .inquiry-modal a i ,.property-price{
        font-size: 15px;
    }
    .lsheader-top{
        display: none;
    }
    .ppt-btn{
        padding: 10px;
    }
    .lfp-pop{
        right: 50%;
        transform: translate(50%,-50%);
    }
    .lfp-pop__title{
        font-size: 16px;
    }
    .contact-btn{
        padding: 10px 25px;
    }
    .property-image{
        height: 25vw;
    }
    .ppt-detail-content__price{
        font-size: 22px;
    }
    .ppt-form__heading-title{
        font-size: 24px;
    }
}

@media only screen and (max-width: 576px){
    .progress-wrap{
        display: none;
    }
    .navbar-brand{
        width: 40%;
    }
    .home_area .owl-nav {
        width: 20%;
    }
    .wrap_padding {
        padding: 50px 0;
    }
    .about-one__img,.project-img-wrap,.office-img,.gallery-img{
        height: 50vw;
    }
    .about-one__right{
        margin-left: 0;
    }
    .section-title__tagline {
        font-size: 10px;
    }
    .section-title {
        font-size: 15px;
    }
    .section-text{
        font-size: 10px;
        margin: 12px 0;
        line-height: 16px;
    }
    .project-one__right {
        padding: 14px;
    }
    .office-title,.menu-links,.cont-links,.footer-bottom-content{
        font-size: 12px;
    }
    .office-add{
        font-size: 10px;
    }
    .contact-one__right {
        padding: 50px 25px 50px;
    }
    .textwidget-title{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .menu-item li:not(:last-child) {
        margin-bottom: 6px;
    }
    .footer-bottom-content{
        text-align: center;
        flex-direction: column;
    }
    .homeCarousel, .homeSlideritem_frame {
        height: 20vw; /*10vh*/
    }
    .homeTitle {
        font-size: 16px;
    }
    .home_area .owl-prev, .home_area .owl-next{
        width: 30px;
        height: 30px;
    }
    .home_area .owl-nav .owl-prev i, .home_area .owl-nav .owl-next i {
        font-size: 12px;
    }
    .wrap_padding {
        padding: 30px 0;
    }
    .project-one__title, .project-one__hover-title {
        font-size: 14px;
    }
    .breadcrumb, .ppt-detail-content__text, .ppt-detail-content__list .ppt-detail-content__list-item, .project-one__hover-text,.ppt-form__heading-tagline,.property-list-text,.breadcrumb, .ppt-detail-content__text, .ppt-detail-content__list .ppt-detail-content__list-item, .project-one__hover-text, .property-box .property-sub, .property-list-text, .footer-disclaimer p, .footer-bottom-content, .ppt-form__heading-tagline,.workFlow_timeline-description{
        font-size: 12px;
    }
    .project-one__hover-arrow a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .breadcrumb{
        margin-bottom: 4px;
    }
    .breadcrumb-title ,.ppt-form__heading-title{
        font-size: 16px;
    }
    .ppt-detail-content{
        margin-top: 14px;
    }
    .ppt-detail-content__title {
        font-size: 16px;
        line-height: unset; 
    }
    .ppt-detail__form{
        padding: 20px;
    }
    .ppt-detail__form .form-control{
        padding: 14px;
    }
    .about-one__shape-1{
        right: -40px;
    }
    .property-list-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .property-image{
        height: 50vw;
    }
    .property-image .hover-property-explore .property-explorelink{
        width: 85px;
        height: 85px;
        font-size: 12px;
    }
    .lfp-pop__box{
        width: 340px;
        padding: 36px 18px;
    }
    .inquiry-modal{
        bottom: 65px;
        right: -20px;
    }
    .inquiry-modal a {
        font-size: 12px;
        gap: 6px;
        padding: 6px 12px;
    }
    .inquiry-modal a i, .property-price {
        font-size: 13px;
    }
    .propertyList-carousel .owl-prev, .propertyList-carousel .owl-next{
        width: 30px;
        height: 30px;
        font-size: 12px !important;
    }
    .work-accordian .accordion-button{
        font-size: 13px;
        padding: 14px 16px;
    }
}
