@charset "utf-8";
/* CSS Document */ 
:root {
  --p-color: #0c426e;
  --main-font-family:"Zen Kaku Gothic New", sans-serif;
  --main-font-size: 1rem;
  --main-text-color:#252525;
  --title-font-family: "Zen Antique", serif;	
  --english-font-family: "Outfit", sans-serif;	
}



body {
  margin: 0;
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: var(--main-font-weight);
  color: var(--main-text-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}


*{
    margin: 0;
    padding: 0;
    font-weight: 400;
}

*, *::before, *::after {
  box-sizing: border-box;
	
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    font-size: 24px; /* Adjust size as needed */
    color: #000; /* Adjust color as needed */
}



ul, ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  transition: all .4s;
}



img{
	max-width:100%;
}



nav{
	width: 100vw;
    background-color: #fff;
    display: flex;
    position: fixed;
    z-index: 10;
/*    padding: 15px 38px;*/
	justify-content: space-between;
}




nav .nav-left{
    display: flex;
	justify-content: flex-start;
	padding: 15px 0;
}


nav .nav-right{
    display: flex;
	padding: 15px 38px;
}

nav .logo{
	    width: 180px;
	margin-left: 38px;
}


/*Styling Links*/
.nav-links{
	display: flex;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
	padding-left: 2.8rem;
	padding-bottom: .5rem;
}


.nav-links li:first-child a{
	margin-left: 0;
}

.nav-links li:last-child a{
	margin-right: 0;
}



.nav-links li a{
    margin:0px 1rem;
	 color: var(--main-text-color);
  	font-weight: 500;
  	font-style: normal;
	font-size:18px;
	position: relative;
	padding-bottom: 5px;
}
.nav-links li a:hover, .nav-links li a.active {
     color: var(--p-color);
}
.nav-links li {
    position: relative;
}
.nav-links li a::before {
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color:var(--p-color);
    position: absolute;
    transition: all ease-in-out 250ms;
	left: 0;
	bottom: 0;
}
.nav-links li a:hover::before, .nav-links li a.active::before{
    width: 100%;
}


/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #073a75;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}


nav .nav-right ul{
	display: flex;
	column-gap: 1rem;
}

.btn_a{
border-radius: 9999px;
    min-width: 13rem;
    background-color: var(--p-color);
    font-size: 18px;
    color: #fff;
    padding:12px 60px 12px 40px;
    position: relative;
    text-align: center;
    display: inline-block;
	pointer-events: auto;
	cursor: pointer;	
	  transition: all 0.3s;
  overflow: hidden;
  z-index: 1;
  background: #0E3458;
background: linear-gradient(90deg,rgba(14, 52, 88, 1) 0%, rgba(16, 70, 115, 1) 36%, rgba(16, 77, 125, 1) 61%, rgba(14, 50, 85, 1) 100%);
	border:solid 1px var(--p-color);
	
}


.btn_a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #002146;
  transition: all 0.3s;
  border-radius: 9999px;
  z-index: -1;
}



.btn_a::after{
    content: "";
    border-radius: 50%;
    width: 41px;
    height: 41px;
    border: solid 1px #fff;
    position: absolute;
    right: 5px;
    top: 4px;
	transition: all 0.3s;
	background-size: 45%;
    background-repeat: no-repeat;
    background-position: center;
}


.btn_a:hover {
  color: #fff;
  border: solid 1px #073a75;
}
.btn_a:hover:before {
  width: 100%;
}

.btn_a.download{
	background: #fff;
	border-color: var(--main-text-color);
	color: var(--main-text-color);
}


.btn_a.contact::after{
    background-image: url(../assets/images/icon_contact.png);
    filter: invert(100);
    background-size: 21px;
	border: solid 1px #000;
}


.btn_a.download:hover:after {
	filter: invert(100%);
}

.master_kv{
	width: 100%;
	align-items: center;
	justify-content:space-around;
	display: flex;
	height: 100vh;
	background: #F1F5F9;
    background: linear-gradient(25deg, rgb(255 255 255) 0%, rgba(221, 236, 255, 1) 100%);
	overflow: hidden;
	background-color: rgb(34, 39, 50);
    background-image: url(../assets/images/bg-kv.jpg);
    background-size: cover;
    background-position: center center;
    margin-bottom:50px;
}






.checkbox-select {
    position: relative;
}


.select-display, .top_search_bar input[type=text]{
    border: 1px solid #729dc4;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    border-radius: 4px;
}



.top_search_bar button[type=submit] {
    padding: 10px;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
    background-image: -webkit-gradient(linear, left bottom, right top, from(#2b41e8), to(#0e3255));
    background-image: linear-gradient(to right top, #2b41e8, #0e3255);
    border: none;
}


.select-display:focus-visible, .top_search_bar input[type=text]:focus-visible{
    border: 1px solid #003566;
    outline: none;
}

.year-selects {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}



.year-selects select, .filter-group.engine select{
    width: 47%;
    border: 1px solid #729dc4;
    padding: 10px 4px;
    border-radius: 4px;
}

 .filter-group.engine select{
     width:100%;
     margin-top: 10px;
 }

.select-options {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

.select-options label {
    display: block;
    padding: 6px 10px;
    cursor: pointer;
}

.select-options label:hover {
    background: #f5f5f5;
}


.select-display::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-display.open::after {
    transform: translateY(-50%) rotate(225deg);
}













.top_search{
    max-width: 1320px;
    width:100%;
    margin:0 auto ;
    padding: 40px;
}

.container {
    max-width: 1320px;
    width:100%;
    margin:0 auto ;
}	

.top_search_bar {
    display: grid;
    flex-wrap: wrap;
    gap: 15px;
    padding: 22px;
    background: #fff;
    grid-template-columns: 3fr;
    grid-template-columns: 1fr 1fr 1fr;
    border-radius: 4px;
    filter: drop-shadow(5px 0 10px rgba(0, 0, 0, .5));
}



.top_search_bar .wrapper {
    flex: 1 1 200px;
    position: relative;
}
.form-control.toggle-next {
    display: block;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: left;
}
.checkboxes {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
	position:absolute;
	width:100%;
	z-index: 1;
}
.checkboxes.show {
    display: block;
}
.slider-container {
    position: relative;
    margin: 20px 0;
}
.price-slider-wrapper {
    margin: 20px 0;
    font-family: inherit;
}
.price-label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}
#price-slider, #mileage-slider {
    margin: 20px 10px;
    height: 8px;
}
.noUi-connect {
    background: #0073aa;
}
.noUi-handle {
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}


.years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px 12px;
    padding: 10px 0;
}

.years-grid label {
    white-space: nowrap;
    font-size: 0.95em;
}

.checkboxes .group {
    margin-bottom: 18px;
}

.checkboxes .group > strong {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-size: 1.05em;
}


.checkboxes.show { display: block; }


/* Force visibility for debugging */
.checkboxes {
    display: none !important;              /* hidden by default */
}

.checkboxes.show {
    display: block !important;             /* strongest priority */
    visibility: visible !important;
    opacity: 1 !important;
    background: rgba(0, 255, 0, 0.2) !important; /* light green background to see it */
    border: 4px solid lime !important;     /* bright border to spot it instantly */
    padding: 20px !important;
    margin-top: 10px !important;
    min-height: 100px !important;          /* make sure it's tall enough to notice */
}

/* Ensure no parent is hiding it */
.top_search_bar,
.wrapper.pc_only,
.top_search_bar > div,
.form-control.toggle-next {
    overflow: visible !important;
    position: relative !important;

}



.ellipsis {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
}
button.ellipsis {
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}
button.ellipsis:hover {
    background: #005a87;
}


.main_cat_wrap{
    grid-template-columns:1fr 1fr;
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}


.title_top{
    text-align: left;
    border-bottom: 2px #e5e5e5 solid;
    margin-bottom: 50px;

}

.title_top h2 a{
    color: #0c426e;
    font-size: 28px;
    font-weight: 500;

    padding: 18px 25px 18px 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px #0c426e solid;
    margin-top: 0px;
    min-width: 250px;
    font-weight: 600;
    font-family: 'Outfit';
    margin-bottom: -1px;
}

.top_maincat_list{
    grid-row-gap: 5vw;
    grid-column-gap: 2.1875vw;
    -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    justify-items: center;
    padding-left: 0;
}


.top_loop_inner{
    color:#000;
}

.listing-title {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: var(--p-color);
    font-family: 'Outfit';
}

.listing-item .tagline {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
}

.listing-meta .value-suffix {
    display: block;
    line-height: 1;
    margin-top: 2px;
}


.listing-metas {
    text-align: left;
    column-gap: 0px;
    row-gap: 15px;
    margin-top: 5px;
    border-top: 0;
    padding-top: 15px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}


.listing-metas .listing-meta {
    width: 50%;
    padding-right: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.listing-meta .value-suffix {
    margin: 0 0 0 5px;
    display: block;
    line-height: 1;
}

.listing-grid .listing-metas {
    border-top: 1px solid #E9E9E9;
    padding-top: 15px;
    margin-top: 15px;
    align-items: flex-end !important;
    display: flex !important;
}

.top_list_thumbnail{
    border-radius: 1rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3.8;
    margin-bottom: 18px;
}

.top_list_thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-info{
    border-top: 1px solid #E9E9E9;
    padding-top: 15px;
    margin-top: 15px;
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
}


.listing-price {
    display: block !important;
    font-size: 1rem;
        font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    align-items: baseline !important;
    color: var(--p-color);
}

.listing-price .price-text{
    font-size: 20px;
    font-weight: 600;
}

.listing-price .main-price .suffix{
    font-size: 18px;
}

.moredetails{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    color: #2b41e8;
}

.inner-content{
    position: relative;
}

.inner-content:after{
    content: "";
    display: block;
    height: 2px;
    width: 0%;
    background-color: var(--p-color);
    position: absolute;
    transition: all ease-in-out 250ms;
    left: 0;
    bottom: 0;
}

.top_loop_inner:hover .inner-content::after {
    width: 100%;
}

.moredetails .material-symbols-outlined{
 color: #2b41e8;   
}


.moredetails {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    color: #2b41e8;
    justify-content: space-around;
    padding-bottom: 3px;
}


.top_maincat_features{
    padding-bottom: 100px;
}

.top_maincat_features.machine{
        padding-top: 70px;
        background: #f5f5f5;
}

footer{
        background-color: rgb(34, 39, 50);
        padding: 60px 0 60px;
    
}

footer .container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

footer .foot-logo{
    width: 180px;
    margin-left: 38px;
}

footer .foot-nav{
    display: flex;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 0;
}


footer .nav-links{
    gap: 25px;
    padding:0;
}

footer .nav-links li a{
    color:#fff;
    margin: 0;
    font-size: 15px;
    padding: 0;
}

footer .nav-links li a:hover{
    color:#bdbdbd;
}

footer .nav-links li a::before{
    background-color:#bdbdbd;
}

footer .foot-about {
    width: 30%;
    color: #fff;
}

footer .foot-conatct {
    width: 15%;
}

footer .foot-conatct .phoneno span{
    color:#fff;
    padding-right: 10px;
}

footer .foot-conatct .phoneno{
    font-size: 30px;
    line-height: 36px;
    font-weight: 900;

}

footer .foot-conatct .phoneno a{
    color:#ff4605;
}
footer .foot-conatct .contact-address{
    color: #fff;    
}

.copyright {
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding: 10px;
    background: #000;
}

.page-heading {
    padding: 180px 0 70px 0;
    background-size: cover;
    border-bottom: none;
    text-align: center;
    background-repeat: no-repeat;
    background-image: url(../assets/images/cat-bg.jpg);
    background-position: bottom;
}



.page-heading.machine-bg{
    background-image: url(../assets/images/machine-bg.jpg);
}

.page-heading.truck-bg{
    background-image: url(../assets/images/truck-bg.jpg);
}

.page-heading.contact-bg{
    background-image: url(../assets/images/contact-bg.jpg);
}

.page-heading.about-bg{
    background-image: url(../assets/images/about-bg.jpg);
}


.breadcrumbs {
    padding: 3px 0px 10px 0px;
    margin: auto;
    font-size: 14px;
    color: #fff;
}

.breadcrumbs ul {
    margin: 0px;
    padding: 0px;
}

.breadcrumbs ul li {
    list-style-type: none;
    display: inline;
}


.breadcrumbs a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumbs span {
    display: inline-block;
    margin: 0 5px 0 5px;
    color: #aaa;
    font-size: 16px;
}


.page-heading .page-title h2 {
    color: #fff;
    font-family: outfit;
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0px;
    padding: 0px 25px;
    margin: 0px;
    display: inline-block;
    margin-top: 0;
}

.main-container{
    min-height: 400px;
    padding: 0px;
    background: #f5f5f5;
}

.grid_row{
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding-top: 80px;
}




.product-grid{
        margin-top: 30px;
        width: 75%;
}

.sidebar {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin-top: 30px;
    max-width: 25%;
}

.sidebar .top_search_bar{
    display: flex;
    flex-direction: column;
}

.sidebar .section-filter {
    position: relative;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 30px;
}


.sidebar .range-values{
    display: flex;
    justify-content: space-between;
}

.sidebar .section-filter .b-filter__inner {
    padding: 25px;
    background: #0c426e;
    box-shadow: 0 3px 5px 0 rgba(36, 39, 44, .1);
    position: relative;
    border-radius: 4px;
    margin-bottom: 50px;
}


.side-nav-categories, .side-nav-categories .block {
    padding: 0px;
    position: relative;
    margin-top: 0px;
    padding-bottom: 0px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 30px;
}

.side-nav-categories{
    border-radius: 4px;
    margin-bottom: 50px;
    
}

.side-nav-categories .box-category{
    padding: 15px 25px 25px;
}


.side-nav-categories .block-title{
    background: #0c426e;
    padding: 14px 25px 12px;
    color: #fff;
    font-size: 18px;
    border-radius: 4px 4px 0 0;
}


.pro-coloumn {
    /*padding: 25px;*/
    position: relative;
    margin-top: 0px;
    /*background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 40px;*/
    
}

.category-products {
    overflow: hidden;
}

ul.products-grid {
    padding: 0;
    grid-row-gap:24px;
    grid-column-gap: 24px;
    -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    justify-items: center;
    padding-left: 0;
}

ul.products-grid .product-item{
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    border-radius: 4px;
     border-width: 1px;
    border-style: solid;
}

.searchresult_cnt{
    font-size: 20px;
    margin-bottom: 23px;
    padding: 12px;
    background-color: var(--p-color);
    border-radius: 3px;
    color: #fff;
}


.pagination-wrapper{
    border: none;
    border-top: 1px #eaeaea solid;
    padding-bottom: 0px;
    padding-top: 35px;
    margin-top: 50px;
    padding-bottom: 10px;
}

.pagination{
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers{
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pagination .page-numbers li a {
    box-shadow: none;
    border: 1px solid #ddd;
    padding: 7px 12px;
    border-radius: 0px;
    color: #333;
    background: #fff;
    line-height: normal;
}

.pagination .page-numbers li {
    display: inline-flex;
}

.pagination .page-numbers.current{
    padding: 7px 12px;
    background-color: var(--p-color);
    color:#fff;
}

.top_search_bar .noUi-horizontal .noUi-handle{
    top: -10px;
}

.b-filter .filter-group label{
    color: var(--p-color);
    font-size: 14px;
    font-weight: 500;
}


.b-filter .filter-group{
    border-bottom: 1px #ebebeb solid;
    padding-bottom: 10px;
    padding-top: 10px;
}

.b-filter .filter-group.engine{
    display: flex;
    flex-direction: column;
}

.checkbox-list{
    display: flex;
    gap: 14px;
    margin-top: 10px;
}


  .tnsmt_chkbox input[type="checkbox"] {
    display: none;
    visibility: hidden;
  }

  .tnsmt_chkbox .cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  .tnsmt_chkbox .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .tnsmt_chkbox .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    transition: all 0.2s ease;
  }
  .tnsmt_chkbox .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .tnsmt_chkbox .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506EEC;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
  }
  .tnsmt_chkbox .cbx span:last-child {
    padding-left: 8px;
  }
  .tnsmt_chkbox .cbx:hover span:first-child {
    border-color: #506EEC;
  }

  .tnsmt_chkbox .inp-cbx:checked + .cbx span:first-child {
    background: #506EEC;
    border-color: #506EEC;
    animation: wave-46 0.4s ease;
  }
  .tnsmt_chkbox .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .tnsmt_chkbox .inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  
  .noborder_bottom{
      border-bottom:none!important;
  }
  
  .sidebar h2{
     color: var(--p-color);
     font-size:22px;
  }
  
  
  .side-nav-categories .box-category li{
      display: block;
    position: relative;
    margin: 0;
    border-bottom: 1px #f2f2f2 solid;
    padding:12px 0;
  }
  
  .side-nav-categories .box-category li a{
     color: #333;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
        display: flex;
    justify-content: space-between;
        align-items: center;
      
  }
  
    .side-nav-categories .box-category li a .count{
    background-color: var(--p-color);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    }    
  
    .side-nav-categories .box-category li a:hover{
         color: var(--p-color);
    }
  
  
  .property_head{
	display:flex;
	justify-content: space-between;
	    align-items: center;
		
}


.post .property_body{
	width:60%;
	
}


.post .property_body .list_title {
    font-size: 26px;

}

.property_main{
    display: flex;
    justify-content: space-between;
}

.property_slider{
    max-width: 660px;
    width: 100%;
}

.js .slider-single > div:nth-child(1n+2) { display: none }

.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }

.slider-single h3 {
	line-height: 10rem;
}

.slider-nav h3::before {
	content: "";
	display: block;
	padding-top: 75%;
}


.slider-nav .slick-slide { cursor: pointer; }

.slick-slide.is-active h3 {
	color: #c00;
	background-color: #fff
}


.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 36px;
    height: 66px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
	background-color:#de3f7d;
	z-index: 999;
	
}

.slick-prev {
    left: 0;
	border-radius: 0 100% 100% 0 / 0 50% 50% 0;
}

.slick-prev::after, .slick-next::after {
		background:url(../images/slider_nav.png);
    background-repeat: no-repeat;
    content: "";
    width: 12px;
    height: 22px;
    display: block;
    background-size: 100%;
    margin: 7px;
}
.slick-next::after{
	transform: rotate(180deg);
	margin-left:17px;
}


.slick-next {
    right: 0;
  border-radius: 100% 0 0 100%/50% 0 0 50%;
}

.slider-single{
	margin-bottom:30px;
}

.slider-nav {
    display: grid;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    gap: 16.5px;
    grid-template-columns: 1fr 1fr 1fr 1fr;

}

.slider-nav .thumb{
	cursor:pointer;
}


.slider-nav .thumb img{
	object-fit: contain;
    display: block;
    height: 100%;	
}

.price_label{
    padding: 5px 0 5px 48px;
    background-image: url(../images/iconprice.png);
    background-repeat: no-repeat;
    background-size: 30px;
    font-size: 20px;
    font-weight: 500;
}

.property_main_details{
	width: 100%;
    padding-left: 30px;	
}

.property_main_details .list_title{
        color: var(--p-color);
    font-size: 22px;
}

.property_main_details .price_tag{
    font-size: 26px;
    font-weight: 600;
	color: #ff4605;
	margin-bottom: 12px;
}

.property_main_details .price_tag span{
	font-size:22px;	
}

.property_main_details ul, .property_main_details .property_info{
    display: grid;
    justify-content: space-between;
    gap: 5px 20px;
    grid-template-columns: 1fr 1fr;
}


.property_main_details .sub_details{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
    
}


.property_main_details .sub_details .serial_number{
    padding: 4px 8px;
    border-radius: 5px;
    background: #fff;
    border:var(--p-color) 1px solid;
     color: #000;
     font-size: 15px;
         width: fit-content;
    margin-top: 10px;
}
}

.property_main_details .property_info ul{
	flex-direction: column;
}


.property_main_details .price_cntn ul li:nth-child{
	width: 100%;
        display:flex;
}






.property_main_details ul li label{
	padding: 5px 10px;
	background: #fff7fc;
	min-width: 120px;
	text-align: center;
height:fit-content;
    display: inline-flex;
}
.property_main_details ul li span{
	padding: 5px 10px;
          display: inline-block;
}




.property_main_details .property_info ul .room_details_sub{
	width: 100%;
}


.price_cntn{
	margin-bottom: 50px;
}




.property_contact_details .contact_box{
	background: #f4f4fc;
	padding: 20px 30px;
	border-radius: 7px;
}
.property_contact_details h4{
    font-size: 18px;
    padding: 18px;
	padding: 30px 18px 18px 0;
}


.property_contact_details .add_line{
	border-radius: 7px;
    border: solid 3px #54ca30;
	-webkit-box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	-moz-box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	margin-bottom: 14px;
	margin-top: 0;
	display: flex;
	background-image: url("../assets/images/line-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.property_contact_details .line_logo {
    width: 100px;
    padding: 15px;
    display: flex;
    align-items: center;
    background: #54ca30;

}


.property_contact_details .line_logo img{
	height: auto;
}

.property_contact_details .line_cntn {
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
}


.property_contact_details .qr_title {
    font-size: 12px;
    text-align: center;
}
	
	
.property_contact_details .qrcocde{
    padding:4px;
    border-radius: 5px;
    background: #fff;
}


.property_contact_details .id_code{
        padding:4px 8px;
    border-radius: 5px;
    background: #fff;
}

.property_contact_details .qrcocde .qr_title{
     color: #54ca30;
}
 
.property_contact_details .qrcocde img {
    width: 90px;
}


.property_contact_details .qr_title {
    font-size: 12px;
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
}

.property_contact_details .contact{
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
	gap: 10px;
}

.property_contact_details .contact li{
    width: 48%;
}


.property_contact_details .contact a, .property_contact_details .contact button{
	-webkit-box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	-moz-box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	box-shadow: 4px 4px 0px 0px rgba(170,154,127,0.35);
	border-radius: 7px;
	padding: 26px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	border: none;
	 transition: all .3s ease-in-out;
	width: 100%;
	font-weight: 400;
	cursor: pointer;
	    background: linear-gradient(90deg, rgba(14, 52, 88, 1) 0%, rgba(16, 70, 115, 1) 36%, rgba(16, 77, 125, 1) 61%, rgba(14, 50, 85, 1) 100%);
}


.property_contact_details .contact a:hover, .property_contact_details .contact button:hover{
	background: #000;
	color: #fff;
}

.property_contact_details .contact a:hover .link:before,  .property_contact_details .contact button:hover .link:before{
	filter: brightness(100);
}

.property_contact_details .contact a .link,  .property_contact_details .contact button .link{
	display: flex;
	justify-content: center;
	align-items: center;
	
}


.property_contact_details .contact a span,  .property_contact_details .contact button span{
    font-size:16px;
}

.property_contact_details .contact a span:first-child, .property_contact_details .contact button span:first-child{
    font-size: 32px;
    color:#fff;
}


.property_contact_details .contact .txt_cntn{
    display: flex;
    align-items: center;
}


.property_contact_details .caption{
	text-align: center;
	color: #d53d08;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.property_contact_details .caption span{
	padding-right: 20px;
	font-size: 24px;
}

.property_contact_details .caption span.last{
	padding-left: 20px;
	padding-right: 0;
}


.property_other_details{
	margin: 70px auto;
	max-width: 1220px;
	width: 100%;
}


.property_other_details .detail_table table td, .property_other_details .detail_table table th{
 border: 1px solid #818181;	
padding: 6px 14px;	
} 

.property_other_details .detail_table table{
 border: 1px solid #818181;
	width: 100%;
}

.property_other_details .detail_table table th{
	background: #e9e9e9;
	font-weight: 400;
}


.detail_table{
	margin-bottom: 70px
}

 
.property_list{
    padding-top: 100px;
    background: #f5f5f5;
}
  
.product-single {
    padding: 24px;
    position: relative;
    margin-top: 0px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 30px;
    border-radius: 8px;
}


#container_3 .bx-wrapper {
    margin-bottom:12px;
}
#container_3 .bx-viewport {
    box-shadow:none;
}
#bx-pager {
    text-align:center;
}

.product-single .bx-wrapper .bx-next{
    background-image: url("../assets/images/slider-con-right.png");
        background-size: 32px;
    background-position: bottom;
}

.product-single .bx-wrapper .bx-prev {
    background-image: url("../assets/images/slider-con-left.png");
        background-size: 32px;
    background-position: bottom;
}  

.product-single .bx-wrapper .bx-next:hover, .product-single .bx-wrapper .bx-next:focus, .product-single .bx-wrapper .bx-prev:hover, .product-single .bx-wrapper .bx-prev:focus{
    background-position: 0;
    opacity: 1;
}

.bx-wrapper .bx-controls-direction a{
        opacity: 0.6;
}

.bx-wrapper{
    padding:5px;
}
.bx-wrapper li{
    border-radius: 15px;
}
.bx-wrapper img{
    min-width: 100%;
}

.contact-contain{
    padding-top:110px;
    padding-bottom: 80px;
}



.contact-contain .container{
        padding: 25px;
    position: relative;
    margin-top: 0px;
    /* padding-bottom: 25px; */
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin: 0 auto 60px;
    border-radius: 8px;
    max-width: 760px;
    width: 100%;
}

dl.form-dl {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

dt.form-dt {
    width: 20%;
    text-align: left;
}

dd.form-dd {
    width: 70%;
    margin: 0;
    text-align: center;
}


.form_req{
    color:#ff0000;
}



.wpcf7-form-control.wpcf7-text, .wpcf7-form-control.wpcf7-textarea, .confirm_page .form-dd{
        display: block;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    color: rgb(73, 80, 87);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    padding: 0.375rem 0.75rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(206, 212, 218);
    border-image: initial;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.confirm_page .form-dd{
    width: 70%;
}

.vehicle_details{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
}

.vehicle_details .wpcf7-form-control.wpcf7-text, .vehicle_details{
    border: none;
    pointer-events: none;
    padding: 5px 0;
}

.vehicle_details .vehicle-title .wpcf7-form-control.wpcf7-text, .vehicle_details .vehicle-title{
    color: var(--p-color);
    font-size: 22px;
}

.vehicle_details .serial{
    padding: 4px 8px;
    border-radius: 5px;
    background: #fff;
    border: var(--p-color) 1px solid;
    color: #000;
    font-size: 15px;
        width: 80px;
    margin-top: 10px;
    height: 40px;
}

.vehicle_details .serial  .wpcf7-form-control.wpcf7-text, .vehicle_details .serial{
    text-align: center;
}

.vehicle_details .serial p{
    padding: 2px 0;
    margin: 0;
}

.wpcf7-form-control.wpcf7-submit{
    border-radius:4px;
    min-width: 13rem;
    background-color: var(--p-color);
    font-size: 18px;
    color: #fff;
    padding: 12px 30px;
    position: relative;
    text-align: center;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
    background: #0E3458;
    background: linear-gradient(90deg, rgba(14, 52, 88, 1) 0%, rgba(16, 70, 115, 1) 36%, rgba(16, 77, 125, 1) 61%, rgba(14, 50, 85, 1) 100%);
    border: solid 1px var(--p-color);
}

.confirm_page h4{
color: #0c426e;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0px;
    font-family: 'Outfit';
    margin-bottom: -1px;
}

.confirm_page h5{
    font-size: 18px;
    margin-bottom: 20px;
}



.complete_page h2{
color: #0c426e;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0px;
    font-family: 'Outfit';
    margin-bottom: -1px;
}

.complete_page p{
    font-size: 18px;
    margin-bottom: 20px;
}

.complete_page .contact-details{
    margin-top:30px;
}

.complete_page .contact-details .complete-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contactus-page .contact-details p{
    font-size: 18px;
    margin-bottom: 20px;
}


.complete_page .contact-details a{
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
    color: #2b41e8;
    padding-bottom: 2px;
    border-bottom:#0c426e solid 1px;
}

 .contactus-page .contact_details a{
    margin-bottom: 5px;
    color: #0c426e;
    padding-bottom: 2px;
    display: inline-block;
    font-size: 18px;
}


.address p{
     font-size: 18px;
    line-height: 24px;
    color: #0c426e;
    border-bottom: none;
}


.wpcf7-form-control.wpcf7-previous{
    border-radius:4px;
    min-width: 13rem;
    font-size: 18px;
    color: #fff;
    padding: 12px 30px;
    position: relative;
    text-align: center;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 1;
    background: #5c5c5c;
    border: solid 1px #5c5c5c;
}

dd.form-dd.submit, dd.form-dd.submit p{
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.confirm_page .form-dd{
    text-align: left!important;
}

dd.form-dd.submit .wpcf7-spinner{
    display:none!important;
}


.confirm_page .form-dd.submit{
    border:none!important;
}

.contactus-page h3, .aboutus-page h3{
    color: #0c426e;
    font-size: 28px;
    font-weight: 500;
    padding-bottom:10px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px #0c426e solid;
    margin-top: 0px;
    font-weight: 600;
    font-family: 'Outfit';
    margin-bottom: 30px;
}

.aboutus-content p{
    margin-bottom: 10px;
}

.contactus-page .contact_details{
padding: 24px;
    position: relative;
    margin-top: 0px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 30px;
    border-radius: 8px;
}


.aboutus-content{
padding:50px 30px;
    position: relative;
    margin-top: 0px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 30px;
    border-radius: 8px;
}

.contactus-page, .aboutus-page{
    padding-top: 100px;
    background: #f5f5f5;
    padding-bottom:80px ;
}




.contactus-page .container{
    max-width: 800px;
}

.contact_form{
    padding: 24px;
    position: relative;
    margin-top: 0px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #eee #d5d5d5 #eee;
    box-shadow: 0 5px 0 rgba(200, 200, 200, .2);
    margin-bottom: 30px;
    border-radius: 8px;
        margin-top: 2rem;
}

.contact_grid {
    grid-column-gap: 0rem;
    margin-top: 2rem;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    padding-bottom: 2rem;
}

.contact_grid.message-grid{
    border-bottom:none;
}

.contact_grid label {
    width: 12rem;
    text-transform: uppercase;
    cursor: text;
    flex: none;
    margin-top: 0.24rem;
    margin-bottom: 0;
    line-height: 1.19rem;
    display: flex;
    align-items: center;
}

.contact_grid label.message{
    align-items: flex-start;
}

.contact_grid .input_wrapper {
    width: 100%;
    position: relative;
}

.contact_grid .wpcf7-form-control-wrap .wpcf7-text, .contact_grid .input, .contact_grid .wpcf7-form-control-wrap .wpcf7-textarea {
    height: auto;
    border: 1px #ccc solid;
    margin-bottom: 0;
    padding: 0.5rem;
    width: 100%;
}

.contact_grid .hover_line {
    content: " ";
    width: 0px;
    height: 2px;
    position: absolute;
    transition: all 1s;
    left: -1px;
    bottom: 1px;
    background-color: #222222;
}


.contact_grid:hover .hover_line {
    width: 100% !important;
    height: 2px;
}


.contact_details .contact_dtl_grid{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}



.contact_dtl_box{
    padding: 10px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}



	.sp_only{
		display: none!important;
	}
	
	
  @keyframes wave-46 {
    50% {
      transform: scale(0.9);
    }
}



    
    
    
@media screen and (max-width: 768px){
	.pc_only{
		display: none!important;
	}
	
	.sp_only{
		display: block!important;
	}
	
	
	
    nav{
        position: fixed;
        z-index: 3;
		min-width: 100%;
    }
	
	section {
    padding: 3rem 0;
	}
	
	
	nav .logo {
    width: auto;
    padding-right: 65px;
max-width:280px;
}
	
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #073a75;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
		padding-left: 0;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
	
	
	/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
	        background: #fff;
}
.toggle .line2{
    transition: all 0.7s ease;
	        background: #fff;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
	        background: #fff;
}

	
	
	.nav-links li a{
		color:#fff;
		font-size: 20px;
		margin: 0!important;
	}
	
	
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
    
    .nav-links li a::before{
            background-color:#fff;
    }
    
    .nav-links li a:hover, .nav-links li a.active {
    color: #fff;
}
	
	
	.top_search_bar{
	        grid-template-columns: 1fr;
	}
	
	 .top_maincat_list{
	        grid-template-columns: 1fr;
	        grid-row-gap: 60px;
}
.main_cat_wrap {
    grid-template-columns: 1fr;
}

footer .container{
    flex-direction:column;
}

footer .foot-logo {
            margin: 0 auto;
}

.foot-nav{
    display: none;
}

footer .foot-about, footer .foot-conatct{
    width:100%;
}    

	.container{
	    padding: 0 15px;
	}
	
	.grid_row{
	        flex-direction: column;
    padding-top: 40px;
	}
	
	.product-grid, .sidebar{
    width:100%;
    max-width: 100%;
}

ul.products-grid{
        grid-template-columns: 1fr;
}

.property_main{
    flex-direction:column;
}

.property_slider {

    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
}    

.property_main_details {
    padding-left:0;
}

.property_main_details ul li{
    display: flex;
    flex-direction: column;
}

.property_main_details .price_tag{
    margin-bottom: 20px;
}

.property_contact_details .contact{
    flex-direction: column;
    
}

.property_contact_details .contact li {
    width: 100%;
}

dl.form-dl{
    flex-direction: column;
        gap: 8px;
}

dd.form-dd {
    width: 100%;
    margin-bottom: 20px;
}    

dt.form-dt {
    width:100%;
}

}
dd.form-dd.submit, dd.form-dd.submit p {
    justify-content: center;
    flex-direction: column;
}	
.confirm_page .form-dd{
    width: 100%;
}

.contact-contain{
    padding-left:15px;
    padding-right:15px;    
}

.contactus-page, .aboutus-page{
    padding-top: 60px;
}

.contact_details .contact_dtl_grid {
    gap: 0px;
    flex-direction: column;
}

.contact_grid {
    margin-top: 1rem;
    border-bottom: 1px solid #d9d9d9;
    display: flex;
    padding-bottom: 1rem;
    flex-direction: column;
}

.contact_grid label{
    margin-bottom: 10px;
}


}