@import 'common.css';

.MainHeader {
	position: absolute;
	background: rgba(var(--white-color), 0);
	top: 0;
	z-index: 999;
	width: 100%;
}
.navbar {
	top: 0;
	z-index: 999;
	width: 100%;
	padding: 8px 0px;
}
.navbar.header-fixed {
	position: fixed;
	background: rgba(var(--black-color), 1);
	border: none;
	animation: slideDown 0.35s ease-out;
	backdrop-filter: blur(5px);
	box-shadow: 0px 5px 20px -8px rgba(14, 13, 14, 0.08);
}
@keyframes slideDown {
	from {
	  transform: translateY(-100%);
	}
	to {
	  transform: translateY(0);
	}
}
.MobileNav {
	display: none;
}
.navbar.DesktopNav .head-top {
    padding: 0px 0px 10px;
}
.navbar.DesktopNav .HeadContainer {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
    padding: 10px 0px 0px;
	border-top: 1px solid rgba(var(--white-color), 0.4);
}
.NBM-box {
	display: flex;
	gap: 50px;
}
.DesktopNav .navbar-brand, .MobileNav .navbar-brand {
    height: 130px;
	/* width: 200px; */
    margin-right: 15px;
}
.navbar-brand img {
	object-fit: contain;
}
.head-BrandMenu {
    display: flex;
    gap: 16px;
}
.navbar-toggler {
    padding: 6px;
    border: none;
	background: rgba(var(--main-color), 1);
    border-radius: 0px;
}
.navbar-toggler .navbar-toggler-icon {
    background: rgba(var(--white-color), 1);
    width: 1.1em;
    height: 2px;
    position: relative;
    display: block;
}
.navbar-toggler-icon.bar-1 {
	width: 0.6em;
}
.navbar-toggler-icon.bar-2 {
	width: 0.9em;
}
.navbar-toggler-icon.bar-2 {
    margin: 4px 0px;
}
.navbar.DesktopNav .head-top .HeadTopSocial {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.navbar.DesktopNav .head-top .HeadTxTSocial {
	font-size: 11px;
	font-weight: 500;
}
.navbar.DesktopNav .head-top .head-social, .MobileNav .navbar .head-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: center;
    gap: 16px;
}
.MobileNav .navbar .head-social li:first-child {
	margin-right: 12px;
}
.navbar.DesktopNav .head-top .head-social a, .MobileNav .navbar .head-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--second-color), 0);
    color: rgba(var(--white-color), 1);
    transition: var(--transition-05s);
    font-size: 14px;
}
.navbar.DesktopNav .head-top .head-social a:hover, .navbar.DesktopNav .head-top .head-social a:focus, .navbar.DesktopNav .head-top .head-social a:visited, .MobileNav .navbar .head-social a:hover, .MobileNav .navbar .head-social a:focus, .MobileNav .navbar .head-social a:visited {
	color: rgba(var(--main-color), 1);
}
.HeadTopSocial .select-box {
	background: rgba(var(--white-color), 0);
	color: rgba(var(--white-color), 1);
	border: none;
}
.HeadTopSocial .select-box select, .HeadTopSocial .select-box select:hover, .HeadTopSocial .select-box select:focus {
	color: rgba(var(--white-color), 1);
}
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link {
    color: rgba(var(--white-color), 1);
	transition: var(--transition-05s);
    position: relative;
    text-transform: capitalize;
    white-space: nowrap;
    font-weight: 300;
    padding: 4px 6px;
    margin-right: 12px;
    font-size: 15px;
}
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item:last-child .nav-link {
	margin-right: 0px;
}
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link.active, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:hover, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:focus, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link[aria-current="page"] {
	color: rgba(var(--main-color), 1);
}
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link::before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 0%;
	height: 2px;
	border-radius: 5px;
    background: rgba(var(--main-color), 1);
	transition: var(--transition-05s);
	right: 0px;
	bottom: 0px;
	opacity: 0;
	visibility: hidden;
}
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link.active::before, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:hover::before, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:focus::before, .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link[aria-current="page"]::before  {
	opacity: 1px;
	visibility: visible;
	width: 100%;
	left: 0px;
	right: auto;
}
.HeadCForm {
	width: 40%;
}
.HeadCForm .form-control, .HeadCForm .common-btn {
    padding: 6px 14px;
	min-height: 38px;
}
.HeadCForm .common-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.HeadCForm .form-control, .HeadCForm .form-control:hover, .HeadCForm .form-control:focus {
	border-color: rgba(var(--main-color), 0);
	background: rgba(var(--main-color), 0.2);
	color: rgba(var(--black-color), 1);
	color: rgba(var(--main-color), 0.8);
}
.HeadCForm .form-control::placeholder {
	color: rgba(var(--main-color), 0.8);
}
.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
	content: '\f107';
    font-family: var(--font-awesome);
    font-weight: 600;
    border: none;
    vertical-align: middle;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
	padding: 0px;
	border: 0;
	border-radius: 0px;
	margin: 0 !important;
	transition: var(--transition-05s);
	/* overflow: hidden; */
	box-shadow: -12px 8px 20px -8px rgba(14, 13, 14, 0.08), 12px 8px 20px -8px rgba(14, 13, 14, 0.08);
}
.navbar .navbar-nav .nav-item .dropdown-menu li a, .dropdown-menu .dropdown-submenu a {
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px dashed rgba(var(--black-color), 0.175);
	padding: 8px 10px;
    color: rgba(var(--black-color), 0.8);
	transition: var(--transition-05s);
	background: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .navbar .navbar-nav .nav-item .dropdown-menu li a:active, .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .navbar .navbar-nav .nav-item .dropdown-menu li a.active,
.dropdown-menu li .dropdown-submenu a:hover, .dropdown-menu li .dropdown-submenu a:active, .dropdown-menu li .dropdown-submenu a:focus, .dropdown-menu li .dropdown-submenu a.active {
	color: rgba(var(--white-color), 1);
	background-color: rgba(var(--main-color), 1);
	border-color: rgba(var(--main-color), 1);
}
.navbar .navbar-nav .nav-item .dropdown-menu ul > li:last-child a {
	border-bottom: none;
}
.Head-CaLog {
	display: flex;
	color: rgba(var(--white-color), 1);
	gap: 30px;
	justify-content: flex-end;
    align-items: center;
}
.Head-CaLog a, .Head-CaLog > * > * > *, .Head-CaLog a:visited, .Head-CaLog > * > * > *:visited {
    display: flex;
    color: rgba(var(--white-color), 1);
    gap: 10px;
    justify-content: flex-end;
	transition: var(--transition-05s);
    font-size: 14px;
    border: none;
    padding: 0;
}
.Head-CaLog a:hover, .Head-CaLog a:focus, .Head-CaLog > * > * > *:hover, .Head-CaLog > * > * > *:focus {
    color: rgba(var(--main-color), 1);
}
.Head-CaLog a i, .Head-CaLog > * > * > * i {
	font-size: 18px;
}

.NBM-box .navbar-nav.ms-auto.navbar-nav-scroll {
    position: relative;
}
.NBM-box li.nav-item.dropdown {
    position: static;
}
.DDrow {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 0px 0px 30px -6px rgba(var(--black-color), 0.2);
    border-top: 3px solid rgb(var(--main-color), 1);
    position: relative;
}
.DDrow::before {
    content: '';
    position: absolute;
    inset: -8px 0px 0px;
    margin: 0px auto;
    border-bottom: 6px solid rgb(var(--main-color), 1);
    border-left: 6px solid rgb(var(--main-color), 0);
    border-right: 6px solid rgb(var(--main-color), 0);
    width: 10px;
    height: max-content;
}
.DDMenu + .nav-link.dropdown-toggle::before {
    display: none;
}
.navbar .navbar-nav .nav-item .dropdown-menu .DDrow ul {
    padding: 10px;
    padding-right: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.DDNav-img {
    width: 100%;
    height: 240px;
}

 /**===== 3.1. Language & Currency =====**/

 /* #language, #currency {
	float: right;
	margin: 16px 20px 0 0;
} */
#language span, #currency span {
	color:#4b4b4b;
	font-size:13px;
	text-transform:uppercase;
	font-weight:300;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
}
#language .btn-link, #currency .btn-link {
	padding: 6px 12px;
	border: none;
    background: rgba(var(--white-color), 0);
    border-radius: 0px;
    color: rgba(var(--white-color), 1);
    text-decoration: none;
}
#language .btn-link span, #currency .btn-link span {
	line-height: 20px;
    color: rgba(var(--white-color), 1);
    font-size: 17px;
    text-transform: capitalize;
}
#language .btn-link span img, #currency .btn-link span img {
    margin-right: 8px;
}
#language .btn-link span i, #currency .btn-link span i {
    margin-left: 8px;
}
#language img, #currency img {
	cursor: pointer;
	margin-right: 5px;
}
.btn-group .dropdown-menu {
	margin: 0;
	border-radius: 0px;
	padding: 0;
	border: none;
	z-index: 1013;
	font-size: 12px;
    top: 36px;
	width: 108px;
}
.btn-group .dropdown-toggle::after {
	display: none;
}
.btn-group .dropdown-menu {
	min-width: 6rem;
}
#language ul li .language-select, #currency ul li .language-select {
    width: 100%;
	color: #333;
	padding: 7px 10px;
	text-align: left;
	font-size: 12px;
}
#language ul li + li .language-select, #currency ul li + li .language-select { border-top:1px solid #eee; }
#language:hover span:after, #currency:hover span:after {
	clear:both;
	content:' ';
	display:block;
	width:0;
	height:0;
	border-style:solid;
	border-color:transparent transparent #fff transparent;
	position:absolute;
	z-index:1014;
	border-width:0px 7px 6px 7px;
	bottom:0px;
	left:50%;
	margin:0 0 0 -5px;
}
#language button .btn-link, #currency button .btn-link { border:none 0px; }
#language img, #currency img {
	cursor: pointer;
	margin-right:5px;
    width: auto;
    height: auto;
}
#language ul li .language-select:hover, #currency ul li .language-select:hover {
	color:#3e7cb4;
	background:none;
	text-decoration:none;
}

/**===== end Language & Currency =====**/

/*************** Map Page *********************/
.map-img {
    width: 100%;
    height: 400px;
}
.map-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pfr-video {
    width: 100%;
    height: 500px;
}
.pfr-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-para p > strong{
    font-size: 15px;
    /* font-style: italic; */
    /* color: rgba(var(--main-color), 1); */
}
/* banner start */

.banner-section {
	--banner-hvh: 85vh;
	--banner-hhp: 100%;
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
    position: relative;
    z-index: 9;
	margin-bottom: 90px;
}
.banner-section.banner-inner-page {
    --banner-hvh: 60vh;
    margin-bottom: 0px;
}
.banner-section > *:first-child, .banner-slider > *:first-child > *, .banner-slider > *:first-child > * > *, .banner-slider > *:first-child > * > * > *, .banner-slider > *:first-child > * > * > * > *  {
	min-height: var(--banner-hvh);
	height: var(--banner-hhp);
}
.banner-inner-section {
	background: rgba(var(--second-color), 0.5) no-repeat center center / cover;
	display: flex;
	align-items: center;
	justify-content: center;
	/* overflow: hidden; */
    position: relative;
	padding-bottom: 80px;
}
.banner-section.banner-inner-page .banner-inner-section {
	background-position: center top;
}
.banner-inner-section .row {
	justify-content: center;
	text-align: center;
}
.bannerBG-sliderMain {
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    display: block;
}
.bannerBG-sliderMain * {
    width: 100%;
    height: 100%;
}
.bannerBG {
    position: relative;
}
.bannerBG::after, .banner-section.banner-inner-page .banner-inner-section::after {
    content: '';
    display: block;
    position: absolute;
    inset: 0px;
    height: 100%;
    background: linear-gradient(rgba(var(--black-color), 0.7) 50%, rgba(var(--black-color), 0.3));
    width: 100%;
}
/* .bannerBG > * {
    position: relative;
    z-index: 1;
} */
.banner-title, .banner-box h1 {
	font-family: var(--Fjalla-One-font);
	color: rgba(var(--white-color), 1);
	color: #fff;
	position: relative;
	/* text-transform: capitalize; */
	margin-bottom: 15px;
	/* font-weight: 700; */
	font-size: 60px;
}
/* .banner-title span, .banner-box h1 span {
	display: block;
} */
.banner-title > span > *, .banner-box h1 > span > * {
	color: #b88600;
}
.banner-box .common-para {
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
    font-size: 15.5px;
    line-height: 1.6;
    font-weight: 300;
}
.common-section.bsra-section {
    padding-top: 0px;
    padding-bottom: 30px;
    margin-top: -200px;
    z-index: 9;
}
.bsra-MainTabs {
    /* margin-bottom: -340px; */
    /* margin-top: 100px; */
    position: relative;
    z-index: 2;
}
.bsra-MainTabs .row {
    text-align: inherit;
    justify-content: center;
}
.bsra-tabs .nav-pills {
	justify-content: center;
    gap: 8px;
}
.bsra-tabs .nav-pills .nav-link {
	font-family: var(--Fjalla-One-font);
	color: rgba(var(--white-color), 1);
    font-size: 19px;
    background: rgb(var(--main-color), 1);
    border-radius: 0px;
	transition: var(--transition-05s);
	font-weight: 500;
	border-radius: 10px 10px 0px 0px;
    padding: 15px 18px 13px;
    min-width: 120px;
    line-height: 1;
}
.bsra-tabs .nav-pills .nav-link:hover, .bsra-tabs .nav-pills .nav-link.active, .bsra-tabs .nav-pills .nav-link:focus {
	background: rgb(237, 244, 253, 1);
	color: rgba(30, 30, 30, 1);
}
.bsra-content {
    position: relative;
    z-index: 11111;
    background: rgba(var(--white-color), 1);
    border-radius: 10px;
}
.bsra-form {
    background: rgba(var(--white-color), 1);
    padding: 40px 30px;
    border-radius: 10px;
	box-shadow: 0px 0px 20px -3px rgba(var(--black-color), 0.2);
}
.bsra-form > .row {
	align-items: flex-end;
	--bs-gutter-x: 0.5rem;
    gap: 0.5rem 0px;
}
.bsra-form .form-control, .bsra-form .form-select {
	font-size: 14px;
	min-height: 40px;
}
.bsra-form .form-box label {
    display: block;
}
.bsra-form .form-box label.bsrafTag {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    background: rgba(var(--main-color), 1);
    color: rgb(var(--white-color), 1);
    padding: 10px;
    max-width: max-content;
}
.bsra-btn {
    display: flex;
    gap: 10px;
}
.bsra-btn .common-btn {
    width: 100%;
	font-size: 16px;
	min-height: 43px;
}
.form-innerBox {
	display: flex;
	gap: 8px;
}
.form-innerBox > * {
	width: 100%;
}
#bsraShow {
    margin-top: 20px;
    /* position: absolute; */
    width: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
}
#bsraShow.active {
    opacity: 1;
    visibility: visible;
    display: block;
}
.FormCheckBox-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* banner end */

/* featured start */

.featured-img {
	width: 100%;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.featured-img img {
	object-fit: contain;
}
.modalFeat .featured-img {
    margin: auto;
    margin-bottom: 20px;
    width: 280px;
    height: 180px;
    width: 250px;
    height: 130px;
}
.modalFeat .common-para {
    font-weight: 400;
    font-size: 14px;
}

/* featured end */

/* properties start */

.proTab-box > * > ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    gap: 12px;
}
.proTab-box > * > ul > * {
	color: rgba(30, 30, 30, 1);
    font-size: 14px;
    background: rgb(237, 244, 253, 1);
    border-radius: 0px;
	transition: var(--transition-05s);
	font-weight: 400;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 0px !important;
    padding: 12px 14px !important;
}
.proTab-box > * > ul > *:hover, .proTab-box > * > ul > *.active, .proTab-box > * > ul > *:focus, .proTab-box > * > ul > *.resp-tab-active {
	background: rgba(var(--second-color), 1);
	color: rgba(var(--white-color), 1);
}
.proTab-box > * > ul > * .proBtn-icon, .proBtn-icon {
	display: inline-block;
	--ehw-pbti: 34px;
	width: var(--ehw-pbti);
	height: var(--ehw-pbti);
	transition: var(--transition-05s);
    margin-right: 4px;
}
.proTab-box > * > ul > * .proBtn-icon img, .proBtn-icon img {
	object-fit: contain;
}
.proTab-box > * > ul > *:hover .proBtn-icon, .proTab-box > * > ul > *.active .proBtn-icon, .proTab-box > * > ul > *.resp-tab-active .proBtn-icon, .resp-tab-active .proBtn-icon {
	filter: contrast(0) brightness(4);
}
.proTab-box h2.resp-accordion, .proTab-box h2.resp-accordion:first-child {
    border: 1px solid rgba(var(--main-color), 1) !important;
    margin-top: 10px !important;
    position: relative;
    text-align: left;
}
.proTab-box h2.resp-accordion:first-child {
    margin-top: 0px !important;
}
.proTab-box h2.resp-tab-active, .proTab-box h2.resp-accordion.resp-tab-active:first-child {
    background: rgba(var(--second-color), 1) !important;
    color: rgb(var(--white-color), 1);
    border-color: rgba(var(--second-color), 1) !important;
}
.proTab-box h2.resp-tab-active .resp-arrow {
    border-bottom-color: rgb(var(--white-color), 1);
}
.proTab-box .resp-arrow {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    float: none;
    border-top-color: rgb(var(--main-color), 1);
}
.proTab-coninner {
	margin-top: 20px;
    border: none;
    padding: 0;
}
.pro-MainBox {
    position: relative;
    text-align: left;
	background: rgba(var(--white-color), 1);
}
.pro-img {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
	background: rgba(var(--second-color), 0.3);
}
.pro-txtBox {
    padding: 14px 2px;
}
.pro-location {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(var(--black-color), 1);
    font-weight: 500;
}
.pro-location i {
	color: rgba(var(--main-color), 1);
    margin-right: 8px;
	font-size: 15px;
}
.pro-boxTitle, .pro-txt h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
}
.pro-txt .common-para {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 8px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}
.pro-PriceFeat {
    display: flex;
    justify-content: space-between;
    align-items: center;
	border-top: 1px solid rgba(var(--black-color), 0.6);
    padding-top: 14px;
    margin-top: 14px;
}
.pro-Price {
    color: rgba(var(--second-color), 1);
    font-weight: 700;
    font-size: 12px;
}
.pro-FeatList {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.pro-FeatList li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.pro-FLImg {
    --ehw-pfli: 26px;
    width: var(--ehw-pfli);
    height: VAR(--ehw-pfli);
}
.pro-FLImg img {
	object-fit: contain;
}
.sale-txt {
    position: absolute;
    inset: 20px 0px 0px;
    z-index: 1;
    width: max-content;
    height: max-content;
    background: rgba(var(--main-color), 1);
    padding: 6px 20px;
    font-size: 14px;
    color: rgba(var(--white-color), 1);
    text-transform: capitalize;
}
.fra-list {
    position: absolute;
    inset: 8px 0px 0px;
    z-index: 1;
    width: 100%;
    height: max-content;
    display: flex;
	gap: 12px;
    justify-content: space-between;
    padding: 8px 16px;
	text-transform: capitalize;
}
.raList-box {
    display: flex;
    gap: 12px;
}
.fra-list .common-btn {
    font-size: 12px;
    padding: 8px 10px;
}
.raList-box .common-btn:first-child {
    --boco-btn: rgba(var(--second-color), 1);
    --bg-btn: rgba(var(--second-color), 1);
}
.raList-box .common-btn:first-child::after {
	background: rgba(var(--main-color), 1);
}
.raList-box .common-btn:first-child:hover {
	--boco-btn: rgba(var(--main-color), 1);
}

/* properties end */

/* fpts start */

.fpts-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.fpts-list li:nth-child(6n + 1) {
    grid-column-start: 1;
    grid-column-end: 3;
}
.fpts-list li:nth-child(6n) {
    grid-column-start: 3;
    grid-column-end: 5;
}
.fpts-list li a {
	position: relative;
	display: block;
    overflow: hidden;
	border-radius: 16px;
}
.fpts-list li a:hover .fpts-img {
	transform: scale(1.05);
}
.fpts-img {
    width: 100%;
    height: 350px;
    height: 330px;
	overflow: hidden;
	transition: var(--transition-05s);
}
.fpts-txtBox {
	text-align: left;
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(var(--black-color), 0.5), rgba(var(--black-color), 0.1));
    color: rgba(var(--white-color), 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fpts-tag {
    font-size: 15px;
    color: rgba(var(--white-color), 1);
    font-weight: 500;
}
.fpts-titleBox h4, .fpts-title {
	font-family: var(--Fjalla-One-font);
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 8px;
}

/* fpts end */

/* cta start */

.common-section.cta-section {
	background: rgba(var(--second-color), 0.8) no-repeat center center / cover;
	padding: 20px 0px;
}
.common-section.cta-section::before {
    content: '';
    position: absolute;
    inset: 0px;
    background: rgba(var(--black-color), 0.2);
    width: 100%;
    height: 100%;
}
.cta-TitleBox .common-title, .common-box.cta-TitleBox > h2, .common-section .common-box.cta-TitleBox > h2, .cta-TitleBox .common-para, .common-box.cta-TitleBox > div.common-para {
	color: rgba(var(--white-color), 1);
}
.cta-TitleBox .common-title, .common-box.cta-TitleBox > h2, .common-section .common-box.cta-TitleBox > h2, .contactP-TitleBox .common-title, .common-box.contactP-TitleBox > h2, .common-section .common-box.contactP-TitleBox > h2 {
	font-family: var(--Poppins-font);
	font-size: 60px;
	font-weight: 600;
}
.cta-TitleBox .common-title span, .common-box.cta-TitleBox > h2 span, .common-section .common-box.cta-TitleBox > h2 span, .contactP-TitleBox .common-title span, .common-box.contactP-TitleBox > h2 span, .common-section .common-box.contactP-TitleBox > h2 span {
	font-weight: 300;
}
.contactP-TitleBox .common-para, .common-box.contactP-TitleBox > div.common-para {
    font-weight: 400;
    font-size: 15px;
    margin-top: 20px;
}
.cta-FormBox {
	background: rgba(var(--white-color), 0.9);
	padding: 20px;
}
.common-section.contactP-section .cta-FormBox {
    box-shadow: 0px 0px 20px -5px rgba(var(--black-color), 0.3);
}
.cta-FormBox .common-box {
	margin-bottom: 10px;
}
.cta-FormBox .common-para, .cta-FormBox .common-box > div.common-para {
	margin-top: 10px;
	font-size: 13px;
	margin-bottom: 14px;
}

/* cta end */

/* blog start */

.blog-box {
    height: 100%;
	text-align: left;
    display: block;
    background: rgba(var(--white-color), 0);
    overflow: hidden;
	position: relative;
}
.blog-date {
	position: absolute;
    inset: 20px 0px 0px;
    z-index: 1;
    width: max-content;
    height: max-content;
    background: rgba(var(--main-color), 0.7);
    padding: 6px 20px;
    font-size: 14px;
    color: rgba(var(--white-color), 1);
    text-transform: capitalize;
}
.blog-img {
	width: 100%;
    height: 220px;
    margin-bottom: 15px;
	border-radius: 16px;
	overflow: hidden;
}
.blog-text {
    padding: 12px;
    padding-top: 0px;
}
.blog-user, .blog-text > span {
    display: inline-block;
    color: rgba(var(--black-color), 0.5);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 6px;
}
.blog-title, .blog-text h3 {
    font-weight: 600;
    font-size: 21px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    line-height: 1.4;
    margin-bottom: 12px;
    color: rgba(var(--black-color), 1);
}
.blog-text .common-para {
	font-size: 13px;
	color: rgba(var(--black-color), 0.6);
	line-height: 1.4;
    line-clamp: 3;
    -webkit-line-clamp: 3;
	margin-bottom: 10px;
}
.blog-pagination > * > * {
    justify-content: center;
}
.blog-pagination .page-link {
    color: rgb(var(--main-color), 1);
    font-size: 15px;
}
.blog-pagination .active>.page-link, .blog-pagination .page-link.active,  .blog-pagination .page-item[aria-current="page"] .page-link {
    color: rgba(var(--white-color), 1);
    background-color: rgb(var(--main-color), 1);
    border-color: rgb(var(--main-color), 1);
}
.blog-pagination  .disabled>.page-link, .blog-pagination  .page-link.disabled {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}

/* blog end */

/* newsletter end */

.common-section.NewsLetter-section {
	background: rgba(42, 206, 65, 1);
}
.nelter-TitleBox .common-title, .common-box.nelter-TitleBox > h2, .common-section .common-box.nelter-TitleBox > h2, .nelter-TitleBox .common-para, .common-box.nelter-TitleBox > div.common-para {
	color: rgba(var(--white-color), 1);
}
.nelter-TitleBox .common-title, .common-box.nelter-TitleBox > h2, .common-section .common-box.nelter-TitleBox > h2 {
	font-size: 40px;
}
.nelter-TitleBox .common-para, .common-box.nelter-TitleBox > div.common-para {
	font-weight: 400;
	line-height: 1.3;
	font-size: 14px;
	margin-top: 6px;
}
.nelter-form .common-btn {
    --boco-btn: rgba(var(--second-color), 1);
    --bg-btn: rgba(var(--second-color), 1);
    font-size: 17px;
    font-weight: 300;
}
.nelter-form .common-btn:hover {
    --boco-btn: #0177FE;
	--common-btn-color: rgba(var(--white-color), 1);
}
.nelter-form .common-btn::after {
    background: #0177FE;
}

/* newsletter end */

/* footer start */

.footer-section {
	background: rgba(var(--fourth-color), 1);
}
.inner-footer {
    padding: 50px 0px;
}
.inner-footer .row {
    justify-content: center;
}
.foot-title, .footer-box h5 {
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.foot-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.foot-list.contact-list {
	grid-template-columns: repeat(1, 1fr);
}
.foot-list li, .contact-list li {
    font-family: var(--inter-font);
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    gap: 8px;
}
.foot-list li a, .contact-list li a {
    font-weight: 500;
    color: #A8A8A8;
    transition: var(--transition-05s);
    font-size: 12px;
    text-transform: capitalize;
}
.contact-list li:first-child a {
    color: rgba(var(--white-color), 1);
	font-weight: 600;
	font-size: 15px;
}
.contact-list li:nth-child(2) a {
    color: #0177FE;
	font-weight: 600;
	font-size: 14px;
	text-decoration: underline;
}
.foot-list li a:hover, .contact-list li a:hover, .foot-list li a:focus, .contact-list li a:focus {
    color: rgba(var(--white-color), 1);
}
.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}
.social-list li a {
    --ehw-sla: 20px;
    width: var(--ehw-sla);
    height: var(--ehw-sla);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--white-color), 0);
    color: rgba(var(--white-color), 0.95);
    font-size: 14px;
    border-radius: 50%;
    transition: var(--transition-05s);
}
.social-list li a:hover, .social-list li a:focus {
    background: rgba(var(--main-color), 0);
    color: rgba(var(--main-color), 1);
}
.copy-box {
    padding: 20px 0;
    border-top: 1px solid #152F4E;
}
.copy-text {
	color: rgba(var(--white-color), 0.3);
    color: #AAAAAA;
    font-weight: 400;
    font-size: 12px;
}

/* footer end */

/* about start */

.common-section.about-section .common-box:not(:last-child) {
    margin-bottom: 20px;
}
.common-section.about-section .common-box:not(:first-child) .common-title, .common-section.about-section .common-box:not(:first-child) > h2, .common-section.about-section .common-box:not(:first-child) > h2 {
    font-size: 24px;
}
.common-section.about-section .common-box .common-title, .common-section.about-section .common-box > h2, .common-section.about-section .common-box > h2 {
    margin-bottom: 14px;
}
.common-section.about-section .common-para, .common-section.about-section .common-box > div.common-para {
    font-size: 14px;
    font-weight: 400;
}
.common-section.about-section .common-para ul li, .common-section.about-section .common-box > div.common-para ul li {
    font-size: 14px;
    padding-left: 14px;
}
.common-section.about-section .common-para ul li::before, .common-section.about-section .common-box > div.common-para ul li::before {
    margin-top: 6px;
    --ehw-cul: 5px;
}

/* about end */

/* blog start */

.blog-dtl-img {
    width: 100%;
    height: 500px;
    margin-bottom: 25px;
}
.date-post {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #061320;
    font-size: 13px;
    margin-bottom: 16px;
}
.date-post li:not(:last-child) {
	border-right: 1px solid #adadad;
    padding-right: 10px;
}
.date-post li i {
    color: rgba(var(--main-color), 1);
    margin-right: 5px;
}
.blog-dtl-box .common-box :where(h1, h2, h3, h4, h5, h6), .blog-dtl-box .common-box > :where(h1, h2, h3, h4, h5, h6), .common-section .blog-dtl-box .common-box > :where(h1, h2, h3, h4, h5, h6) {
    font-weight: 400;
    color: rgba(var(--black-color), 1);
    margin-bottom: 12px;
    --ehw-fs: 20px;
}
.blog-dtl-box .common-box :where(h1), .blog-dtl-box .common-box > :where(h1), .common-section .blog-dtl-box .common-box > :where(h1) {
	font-size: calc(var(--ehw-fs) * 1.75);
}
.blog-dtl-box .common-box :where(h2), .blog-dtl-box .common-box > :where(h2), .common-section .blog-dtl-box .common-box > :where(h2) {
	font-size: calc(var(--ehw-fs) * 1.6);
}
.blog-dtl-box .common-box :where(h3), .blog-dtl-box .common-box > :where(h3), .common-section .blog-dtl-box .common-box > :where(h3) {
	font-size: calc(var(--ehw-fs) * 1.45);
}
.blog-dtl-box .common-box :where(h4), .blog-dtl-box .common-box > :where(h4), .common-section .blog-dtl-box .common-box > :where(h4) {
	font-size: calc(var(--ehw-fs) * 1.3);
}
.blog-dtl-box .common-box :where(h5), .blog-dtl-box .common-box > :where(h5), .common-section .blog-dtl-box .common-box > :where(h5) {
	font-size: calc(var(--ehw-fs) * 1.15);
}
.blog-dtl-box .common-box :where(h6), .blog-dtl-box .common-box > :where(h6), .common-section .blog-dtl-box .common-box > :where(h6) {
	font-size: calc(var(--ehw-fs));
}
.blog-dtl-box .common-para, .blog-dtl-box .common-box > div.common-para {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
}

/* blog end */

/* contact start */

.iframe-box {
    width: 100%;
    height: 460px;
    overflow: hidden;
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* contact end */

/* product start */

.filter-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
	text-transform: uppercase;
	color: rgba(var(--black-color), 1);
}
.filterList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.filterList label, .filterList > * > a {
    display: flex;
    gap: 10px;
    font-size: 15px;
    text-transform: capitalize;
    color: rgba(var(--black-color), 1);
	line-height: 1;
	cursor: pointer;
	transition: var(--transition-05s);
}
.filterList > * > a:hover {
    color: rgba(var(--main-color), 1);
}
.filterList label input {
	margin-right: 0px;
	accent-color: rgba(var(--main-color), 1);
}
.filterList label input:hover {
	accent-color: rgba(var(--main-color), 1);
}
.filterCate .accordion-header button {
    font-size: 15px;
    font-weight: 600;
}
.filterCate .accordion-item {
	border-radius: 0px !important;
	border: none;
	overflow: hidden;
}
.filterCate .accordion-item {
    margin-bottom: 15px;
}
.filterCate .accordion-item .accordion-button {
	box-shadow: none !important;
    background: rgba(var(--main-color), 0.4);
    border-radius: 0px !important;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1;
}
.filterCate .accordion-button:not(.collapsed) {
    color: rgba(var(--white-color), 1);
    background: rgba(var(--second-color), 1);
	box-shadow: none !important;
}
.filterCate .accordion-button::after {
	transform: rotate(-90deg);
	margin-top: -4px;
}
.filterCate .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
	filter: contrast(0) brightness(2);
	transform: rotate(0deg);
}
.filterCate .accordion-body {
	font-size: 14px;
    color: #5B5B5B;
}
.Sort-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 14px;
}
.SearchBox input.form-control {
    min-height: 40px;
    font-size: 14px;
}
.Sort-MainInnbox {
    width: 100%;
}
.Sort-Innbox {
	font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
}
.Sort-Innbox span {
    width: 65px;
	color: rgba(var(--black-color), 1);
}
.Sort-Innbox select {
    width: 75%;
    font-size: 14px;
    padding-right: 27px;
    border: 1px solid #ced4da;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    min-height: 40px;
}
.Sort-Innbox .form-select:hover, .Sort-Innbox .form-select:focus {
    border-color: #ced4da;
}
.pro-box {
    display: block;
}

/* product end */

/* float Form start */

.FloatForm-box {
    position: fixed;
    z-index: 99;
    top: 35%;
    right: -330px;
    right: -150px;
    display: flex;
    align-items: flex-start;
    gap: 0px;
    transition: var(--transition-05s);
}
.FloatForm-box.FullShow {
	right: 0px;
}
/* .FloatForm-btn {
    display: block;
    position: absolute;
    right: 116px;
    top: 0px;
    transform: rotate(0deg) translate(80px, -34px);
} */
.FloatForm-btn {
    display: block;
    position: absolute;
    right: 227px;
    top: 34px;
    transform: rotate(0deg) translate(80px, -34px);

}
.FloatForm-btn a {
    height: max-content;
    width: max-content;
    line-height: 1;
    font-size: 24px;
    background: rgba(var(--main-color), 1);
    padding: 10px;
    color: rgba(var(--white-color), 1);
    font-weight: 600;
    box-shadow: -10px -10px 20px -5px rgba(var(--white-color), 0.3), 10px -10px 20px -5px rgba(var(--white-color), 0.3);
    border-radius: 6px 0px 0px 6px;
}
.FloatForm-form {
	padding: 20px;
    padding-right: 10px;
	background: rgba(var(--white-color), 1);
	box-shadow: 0px 0px 20px 0px rgba(var(--black-color), 0.3);
}
.FloatForm-imgList {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: scroll;
}
.FloatForm-img {
    --ehw-ffli: 100px;
    width: var(--ehw-ffli);
    height: var(--ehw-ffli);
}
.FloatForm-img img {
    object-fit: contain;
}
.fa-angle-right {
    display: none;
}
.FloatForm-box.FullShow .fa-angle-right {
    display: block;
}
.FloatForm-box.FullShow .fa-angle-left {
    display: none;
}

/* float Form end */

/* profile start */

/* profile left start */

.order-left-sidebar {
    position: relative;
    width: 100%;
    padding-right: 30px;
    border-right: 1px solid #ececec;
}
.order-left-sidebar h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}
.order-left-sidebar .cat-list {
    position: relative;
    width: 100%;
    padding: 15px 0px;
    border-bottom: 1px solid #ececec;
}
.order-left-sidebar .cat-list h4 {
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #686868;
    margin-bottom: 15px;
}
.order-left-sidebar .cat-list ul {
    position: relative;
    width: 100%;
    padding-left: 0px;
    margin-bottom: 0px;
}
.order-left-sidebar .cat-list ul li {
    position: relative;
    width: 100%;
    padding: 5px 0px;
}
.order-left-sidebar .cat-list ul li a {
    position: relative;
    color: #686868;
    font-size: 14px;
	transition: var(--transition-05s);
}
.order-left-sidebar .cat-list ul li a:hover, .order-left-sidebar .cat-list ul li a:focus, .order-left-sidebar .cat-list ul li.active a {
    color: #C6102E;
    color: rgb(var(--main-color), 1);
}

/* profile left end */

/* profile form start */

.updatePrflSec {
    position: relative;
    margin-top: 20px;
}
.updateWrap {
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    padding-right: 20px;
}
.updatePrflSec .profileImg {
    position: relative;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 573px;
    border-radius: 20px;
}
.updateWrap h2 {
    position: absolute;
    top: -22px;
    background: #fff;
    padding: 0 15px;
}
.updatePrflSec .profileImg i {
    position: absolute;
    top: 50%;
    right: 0;
    width: 62px;
    height: 62px;
    background: #1fb381;
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    line-height: 62px;
    text-align: center;
}
.updatePrflSec .profileImg span {
    position: relative;
}
.updatePrflSec .profileImg img {
    width: 244px;
    height: 244px;
    border-radius: 50%;
    border: 10px solid #fff;
    object-fit: cover;
	position: relative;
}

/* profile form end */

/* profile end */

/* 404 start */

.banner-section.banner-inner-page.section-404 {
    --banner-hvh: 64.5vh;
}
.section-404 {
	text-align: center;
}
.section-404 .page {
	margin: 2rem 0;
	font-size: 20px;
	font-weight: 600;
	color: #444;
    color: rgb(var(--white-color), 1);
}
.section-404 .error {
	font-size: 150px;
	color: rgba(var(--main-color), 1);
	text-shadow: 1px 1px 1px #2e9601, 2px 2px 1px #2e9601, 3px 3px 1px #2e9601, 4px 4px 1px #2e9601, 5px 5px 1px #2e9601, 6px 6px 1px #2e9601, 7px 7px 1px #2e9601, 8px 8px 1px #2e9601, 25px 25px 8px rgba(var(--black-color), 0.1);
}

/* 404 end */

/* successful start */

.payment-successful-panel {
    padding: 80px 0;
    text-align: center;
}
.success-icon {
    width: 150px;
    height: 150px;
    border-width: 2px;
    display: block;
    margin: 0 auto;
    border-radius: 100%;
    text-align: center;
    border-color: #10c633;
    border-style: dotted;
    padding: 10px;
}
.success-icon i {
    width: 100%;
    height: 100%;
    background: #fff;
    font-size: 40px;
    line-height: 121px;
    color: #4c89ff;
    border-radius: 100%;
    text-align: center;
    border-width: 2px;
    border-style: dotted;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: #10c633;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.payment-successful-panel h3 {
    font-size: 60px;
    padding: 15px 0;
    color: green;
    font-weight: 200;
}
.payment-successful-panel p {
    font-size: 14px;
    color: #333;
}
.payment-successful-panel p strong {
    font-size: 22px;
    color: #333;
}

/* successful end */

/* wish list start */

.cart-dtl-bx {
    border: 1px solid #023625;
    padding: 15px;
    border-radius: 8px;
}
.cart-dtl-bx table td, .cart-dtl-bx table th {
    padding: 1rem;
}
.wishlist-table table tbody tr {
    vertical-align: middle;
}
.cart-pro-dtl {
    display: flex;
    align-items: center;
    position: relative;
}
.cart-dtl-bx table td, .cart-dtl-bx table th {
    padding: 1rem;
}
.cart-pro-dtl > .cart-pro-img {
    height: 65px;
    width: 50px;
    width: 100px;
    margin-right: 12px;
}
.cart-pro-img img {
	object-fit: contain;
}
.cart-pro-dtl h4 {
    color: #222222;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
.wishlist-table .wishlist-stock {
    position: relative;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: capitalize;
}
.wishlist-table .wishlist-instock {
    color: #009900;
}
.wishlist-table .wishlist-outstock {
    color: #f50000;
}
.wishlist-table .wishlist-stock:before {
    font-family: 'FontAwesome';
    letter-spacing: 0;
    display: inline-block;
    margin-right: 5px;
    font-weight: 900;
}
.wishlist-table .wishlist-instock:before {
    content: "\f00c";
}
.wishlist-table .wishlist-outstock:before {
    content: "\f00d";
}

/* wish list end */

/* properties details start */

.ProDtl-img {
    margin-bottom: 30px;
}
.ProDtl-img .gc-thumbs-area-prev, .ProDtl-img .gc-thumbs-area-next {
    display: none;
}
.ProDtl-img .gc-display-area {
    border: none !important;
    padding: 0px !important;
}
.ProDtl-img .gc-display-container {
    width: 100% !important;
    height: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: static;
}
.ProDtl-img .gc-display-container .gc-display-display, .ProDtl-img .gc-display-container > img {
    width: 100% !important;
    height: 100% !important;
}
.ProDtl-img .glasscase-slider li {
    padding: 0px !important;
}
.ProDtl-img .glass-case ul li .gc-li-display-container img {
    margin-top: 0% !important;
    margin-left: 0% !important;
    position: static !important;
}
.RelPro-box {
    background: #fbfbfb;
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}
.RelPro-box h4 {
    font-weight: 500;
    color: #000;
    font-size: 26px;
    margin-bottom: 30px;
}
.RelPro-box .pro-MainBox {
    background: #fbfbfb;
}
.RelPro-box .owl-carousel .owl-dots {
    gap: 8px;
}
.RelPro-box .owl-carousel button.owl-dot {
    --ehw-ocbd: 10px;
}
.proDtl-boxTitle, .proDtl-txt h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.proDtl-txt .common-para {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0px;
}
.proDtl-PriceFeat {
    position: relative;
    padding-right: 50px;
}
.proDtlMain-WhisList {
    position: absolute;
    right: 10px;
    top: 10px;
}
.proDtlMain-WhisList ul li form a {
    font-size: 30px;
    color: rgba(var(--main-color), 1);
    line-height: 1;
}
.proDtl-PriceFeat .pro-location {
    font-size: 15px;
    margin-bottom: 14px;
}
.proDtl-PriceFeat .pro-Price {
    font-size: 20px;
    margin-bottom: 8px;
}
.proDtl-PriceFeat .pro-FeatMain {
    margin-bottom: 20px;
}
.SellerDtl-box {
    background: #fbfbfb;
    padding: 30px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    margin-bottom: 24px;
}
.SellerDtl-box h4 {
    font-weight: 500;
    color: #000;
    font-size: 26px;
    margin-bottom: 20px;
}
.SDB-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.SDB-list li {
    display: flex;
    gap: 8px;
}
.SDB-list li p {
    margin-bottom: 0px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 15px;
}
.SDB-list li > *:last-child {
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition-05s);
}
.SDB-list li > a:hover {
    color: rgb(var(--main-color), 1);
}

/* properties details end */

@media( min-width: 320px) {
	.navbar.DesktopNav > * {
		display: block;
	}
}

@media (min-width: 992px) {
	.nav-item.dropdown .dropdown-menu {
		opacity: 0;
		visibility: hidden;
	}
	.nav-item.dropdown:hover > .dropdown-menu, .nav-item.dropdown .dropdown-menu.show, .dropdown-menu ul li:hover > .dropdown-menu.dropdown-submenu {
		opacity: 1;
		display: block;
		visibility: visible;
	}
	.navbar-expand-lg .navbar-collapse {
		width: max-content;
		max-width: max-content;
	}
    .nav-item.dropdown .DDMenu.dropdown-menu {
        left: 100px;
    }
}

@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
}

@media (max-width: 1900px) {
    .bsra-btn .common-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .pro-FeatList {
        gap: 10px;
    }
    .pro-FLImg {
        --ehw-pfli: 24px;
    }
}

@media (max-width: 1199px) {
    .bsra-btn .common-btn span {
        display: flex;
    }
    .fpts-titleBox h4, .fpts-title {
        font-size: 18px;
    }
    .common-box.Bestsellers-title-box .common-title, .common-box.Bestsellers-title-box > h2, .common-section .common-box.Bestsellers-title-box > h2 {
        font-size: 26px;
    }
    .MainHeader .container > * {
        align-items: center;
    }
    .cta-TitleBox .common-title, .common-box.cta-TitleBox > h2, .common-section .common-box.cta-TitleBox > h2, .contactP-TitleBox .common-title, .common-box.contactP-TitleBox > h2, .common-section .common-box.contactP-TitleBox > h2 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
	.banner-section {
        --banner-hvh: 65vh;
        margin-bottom: 80px;
    }
    .common-section.bsra-section {
        margin-top: -150px;
    }
    #bsraShow .bsra-btn {
        text-align: center;
    }
    .fpts-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .fpts-list li:nth-child(6n) {
        grid-column-start: auto;
        grid-column-end: auto;
    }
    .fpts-list li:nth-child(6n - 2) {
        grid-column-start: 3;
        grid-column-end: 1;
    }
    .navbar.DesktopNav .HeadContainer {
        justify-content: flex-end;
    }
    .NBM-box .navbar-nav.ms-auto.navbar-nav-scroll {
        gap: 10px;
    }
    .NBM-box {
        display: flex;
        gap: 50px;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0px;
        /* padding: 20px 30px; */
    }
    .NBM-box > * {
        background: rgba(var(--black-color), 0.4);
        padding: 20px 30px;
    }
    .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link {
        margin: 0;
        width: max-content;
    }
    .NBM-box li.nav-item.dropdown {
        position: static;
        width: max-content;
    }
    .DDrow::before {
        inset: -8px auto 0px 40px;
    }
    .cta-TitleBox .common-title, .common-box.cta-TitleBox > h2, .common-section .common-box.cta-TitleBox > h2, .contactP-TitleBox .common-title, .common-box.contactP-TitleBox > h2, .common-section .common-box.contactP-TitleBox > h2 {
        font-size: 40px;
    }
    .featured-img {
        height: 120px;
    }
    .banner-title, .banner-box h1 {
        font-size: 40px;
    }
    .banner-title > span, .banner-box h1 > span {
        display: block;
    }
    .common-box.Bestsellers-title-box .common-title, .common-box.Bestsellers-title-box > h2, .common-section .common-box.Bestsellers-title-box > h2 {
        font-size: 24px;
    }
    /* .Sort-Innbox select {
        width: 62%;
    } */
}

@media (max-width: 767px) {
	.DesktopNav .navbar-brand, .MobileNav .navbar-brand {
        height: 100px;
        margin-right: 0px;
    }
    .Sort-Innbox select {
        width: 72%;
    }
    .Sort-Innbox {
        justify-content: center;
    }
    .common-box.Bestsellers-title-box {
        text-align: center;
    }
    .common-box.Bestsellers-title-box .common-title, .common-box.Bestsellers-title-box > h2, .common-section .common-box.Bestsellers-title-box > h2 {
        font-size: 20px;
    }
    .banner-section.banner-inner-page {
        --banner-hvh: 50vh;
    }
    .FormCheckBox-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
	.DesktopNav .navbar-brand, .MobileNav .navbar-brand {
        height: auto;
        margin: auto;
        width: 90px;
        display: block;
    }
    .banner-title, .banner-box h1 {
        font-size: 28px;
    }
    .banner-title > span, .banner-box h1 > span {
        display: inline-block;
    }
    .banner-box .common-para {
        font-size: 13px;
        line-height: 1.4;
    }
    .bsra-form .form-control, .bsra-form .form-select {
        font-size: 12px;
    }
    .bsra-form {
        padding: 30px 20px;
    }
    .bsra-tabs .nav-pills {
        gap: 5px;
    }
    .bsra-tabs .nav-pills .nav-link {
        font-size: 15px;
        padding: 12px 12px 10px;
        min-width: 62px;
    }
    .bsra-btn {
        text-align: center;
    }
    .NBM-box > * {
        padding: 20px 20px;
    }
    .pro-img {
        height: 200px;
    }
    .fpts-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .fpts-list li:nth-child(6n + 1), .fpts-list li:nth-child(6n - 2) {
        grid-column-start: auto;
        grid-column-end: auto;
    }
    .fpts-img {
        height: 300px;
    }
    .cta-TitleBox .common-title, .common-box.cta-TitleBox > h2, .common-section .common-box.cta-TitleBox > h2, .contactP-TitleBox .common-title, .common-box.contactP-TitleBox > h2, .common-section .common-box.contactP-TitleBox > h2 {
        font-size: 26px;
    }
    .form-control, .form-select {
        font-size: 15px;
        min-height: 50px;
    }
    .form-box .common-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
    .blog-title, .blog-text h3 {
        font-size: 18px;
    }
    .nelter-TitleBox .common-title, .common-box.nelter-TitleBox > h2, .common-section .common-box.nelter-TitleBox > h2 {
        font-size: 26px;
    }
    .nelter-TitleBox .common-para, .common-box.nelter-TitleBox > div.common-para {
        font-size: 13px;
    }
    .navbar.DesktopNav .head-top .HeadTopSocial, .navbar.DesktopNav .HeadContainer {
        justify-content: center;
    }
    .foot-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .FormCheckBox-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .Sort-box {
        grid-template-columns: repeat(1, 1fr);
    }
    .common-para p:last-child, .common-box > div p:last-child {
        margin-bottom: 0px;
        padding: 0px 40px;
    }
    .proDtl-PriceFeat {
        padding-right: 40px;
    }
    .proDtlMain-WhisList {
        top: 0px;
    }
    .proDtlMain-WhisList ul li form a {
        font-size: 20px;
    }
}

/* social media share modal css  */

.socialMediaShare.modal{
    top: 20%;
}

.socialMediaShare .btn-close{
    box-shadow: none;
    border: none;
    outline: none;
}

.socialMediaShare .modal-body .icons{
    margin: 15px 0px 20px 0px;
}

.socialMediaShare .modal-body .icons a{
    text-decoration: none;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.socialMediaShare .modal-body .icons a:nth-child(1){
    color: #1877F2;
    border-color: #B7D4FB;
}

.socialMediaShare .modal-body .icons a:nth-child(1):hover{
    background-color: #1877F2;
    color: #fff;
}

.socialMediaShare .modal-body .icons a:nth-child(2){
    color: #46C1F6;
    border-color: #b6e7fc;
}

.socialMediaShare .modal-body .icons a:nth-child(2):hover{
    background-color: #46C1F6;
    color: #fff;
}

.socialMediaShare .modal-body .icons a:nth-child(3){
    color: #25d366;
    border-color: #bef4d2;
}

.socialMediaShare .modal-body .icons a:nth-child(3):hover{
    background-color: #25d366;
    color: #fff;
}
.socialMediaShare .modal-body .icons a:nth-child(4){
    color: #D44638;
    border-color: #b6e7fc;
}

.socialMediaShare .modal-body .icons a:nth-child(4):hover{
    background-color: #D44638;
    color: #fff;
}

.socialMediaShare .modal-body .icons a:hover{
    border-color: transparent;
}

.socialMediaShare .modal-body .icons a span{
    transition: all 0.09s ease-in-out;
}

.socialMediaShare .modal-body .icons a:hover span{
    transform: scaleX(1.1);
}

.socialMediaShare .modal-body .field{
    margin: 15px 0px -5px 0px;
    height: 45px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 0 5px;
}

.socialMediaShare .modal-body .field.active{
    border-color: rgb(var(--main-color), 1);
}

.socialMediaShare .field span{
    width: 50px;
    font-size: 1.1rem;
}

.socialMediaShare .field.active span{
    color: rgb(var(--main-color), 1);
}

.socialMediaShare .field input{
    border: none;
    outline: none;
    font-size: 0.89rem;
    width: 100%;
    height: 100%;
}

.socialMediaShare .field button{
    padding: 5px 16px;
    color: #fff;
    background: rgb(var(--main-color), 1);
    border: 2px solid transparent;
    border-radius: 5px;
    font-weight: 500;
}

@media (max-width: 330px) {
    .socialMediaShare .modal-body .icons a{
        margin-right: 15px;
        width: 35px;
        height: 35px;
    }
}
/* social media share modal css  */

