/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Sellsmart - Single Product Landing page HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Products css
08. Why Choose Us css
09. Best Sellers css
10. Our Benefits css
11. Our Facts css 
12. Our Testimonials css
13. Intro Video css
14. Our Partners css
15. Our FAQs css
16. Our Blog css
17. Footer css
18. About Us Page css 
19. Blog Archive css 
20. Blog Single css 
21. Features Page css
22. Testimonials Page css 
23. FAQs Page css 
24. Contact Us Page css 
25. 404 Error Page css 
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #000000;
	--secondary-color			: #D6E3E1;
	--text-color				: #2C2C2C;
	--accent-color				: #4d7449;
	--bg-color					: #F7F7F7;
	--white-color				: #FFFFFF;
	--divider-color				: #2C2C2C1A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Mona Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track{
	background-color: var(--white-color);
	border-left: 1px solid var(--divider-color);
}

::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb{
	background: var(--primary-color);
}

::selection{
	color: var(--white-color);
	background-color: var(--divider-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.57em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 250%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	color: var(--primary-color);
	background: transparent;
}

.btn-default::before, 
.btn-default::after{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 20%;
	opacity: 0;
	background: var(--secondary-color);
	transition: all 0.5s ease-in-out;
	z-index: -1;
}

.btn-default:before{
	left: 0;
}

.btn-default:after{
	right: 0;
}

.btn-default:hover::before,
.btn-default:focus::before,
.btn-default:hover::after,
.btn-default:focus::after{
	opacity: 1;
	width: 100%;
}

.btn-default.btn-highlighted::before, 
.btn-default.btn-highlighted::after{
	background: var(--white-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	color: var(--text-color);
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 18%;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
	text-decoration: underline;
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title.section-title-center{
	width: 100%;
	max-width: 635px;
	text-align: center;
	margin: 0 auto;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	font-size: 14px;
    font-weight: 700;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-title h1{
	font-size: 90px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
	color: #4d7449;
}


.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
    z-index: 100;
}

header.main-header.dark-header-bg{
	border-color: var(--dark-divider-color);
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	align-items: center;
	padding: 30px 0;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 15px 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-header.dark-header-bg .main-menu ul li a{
	color: var(--white-color);
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--primary-color);
}

.main-menu ul li a:focus-visible{
	box-shadow: none;
}

.main-header.dark-header-bg .header-contact-btn .btn-default{
	background: var(--white-color);
	color: var(--primary-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--secondary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.main-header.dark-header-bg .slicknav_btn{
	background: var(--white-color);
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.main-header.dark-header-bg .slicknav_btn .slicknav_icon-bar{
	background-color: var(--primary-color);
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: #356339;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--secondary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--secondary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: var(--secondary-color) url('../images/hero-bg.png') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 230px 0 0;
}

.hero.hero-video{
	padding: 260px 0 145px;
}

.hero.hero-video .hero-bg-video::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
	opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-video.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 260px 0 145px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
	opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    .hero .section-row .section-title.section-title-center,
    .hero-content {
        padding: 235px 0 20px 0;
    }
}
.slider-p{
	font-size: 16px;
	color: #ffffff;
}
.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--white-color);
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero.hero-video .hero-body-item::before{
	background: var(--dark-divider-color);
}

.hero.hero-video .section-title h2,
.hero.hero-video .section-title h1{
	color: var(--white-color);
}

.hero.hero-video .hero-content .hero-body-item .icon-box{
	background: var(--white-color);
}

.hero.hero-video .hero-content .hero-body-item-content h3,
.hero.hero-video .hero-content .hero-body-item-content p{
	color: var(--white-color);
}

.hero.hero-video .hero-content .hero-btn .btn-default{
	 background: var(--white-color);
	 color: var(--primary-color);
}

.hero .section-row .section-title.section-title-center{
	max-width: 1200px;
}

.hero .section-row .section-title.section-title-center h2{
	margin-top: 20px;
}

.hero-content{
	width: 100%;
	max-width: 915px;
	margin: 0 auto;
	text-align: center;
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
}

.hero-body-item{
	position: relative;
	width: calc(50% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-body-item:nth-child(odd){
	text-align: right;
	flex-direction: row-reverse;
}

.hero-body-item:nth-child(even){
	text-align: left;
}

.hero-body-item::before{
	content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.hero-body-item:nth-child(2n + 2):before,
.hero-body-item:last-child:before{
	display: none;
}

.hero-body-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
}

.hero-body-item:hover .icon-box{
	background: transparent;
}

.hero-body-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
	left: 0;
    background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
    width: 100%;
    height: 100%;
	transition: all 0.3s ease-in-out;
}

.hero-body-item:hover .icon-box::before{
	transform: scale(1);
}

.hero-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.hero-body-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.hero-body-item-content{
	width: calc(100% - 70px);
}

.hero-body-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.hero-body-item-content p{
	margin-bottom: 0;
}

.hero-btn{
	margin-top: 40px;
}

.hero-image{
	margin-top: 50px;
}

.hero-image figure{
	display: block;
}

.hero-image img{
	width: 100%;
	max-width: 825px;
	object-fit: cover;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	background-color: var(--primary-color);
	padding: 25px 0;
}

.scrolling-ticker-box{
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 40s linear infinite;
}

.scrolling-content span{
	display: inline-flex;
	align-items: center;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--white-color);
}

.scrolling-content span img{
	width: 100%;
	max-width: 30px;
	margin-right: 30px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us .section-row .section-title.section-title-center{
	max-width: 850px;
}

.about-us-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.about-item-image figure{
	display: block;
}

.about-item-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.about-item-image img{
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	transition: all 0.3s ease-in-out;
}

.about-us-item:hover .about-item-image img{
	transform: scale(1.1);
}

.about-item-content{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	text-align: center;
	z-index: 1;
}

.about-item-content h3{
	font-size: 18px;
	color: var(--white-color);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
}

.section-footer-text span{
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 3px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 600;
	text-decoration: underline;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	 07. Our Products css 	  ***/
/************************************/

.our-products{
	background: var(--secondary-color);
	padding: 100px 0;
}

.product-item{
	text-align: center;
}

.product-image{
	background: var(--bg-color);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}
.footer-logo img{
	max-width: 140px;
	height: auto;
}
.product-image a{
	display: block;
}

.product-image figure{
	display: block;
}

.product-image img{
	width: 100%;
	aspect-ratio: 1 / 1.02;
	object-fit: cover;
}

.product-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.product-content h3 a{
	color: inherit;
}

.product-content p{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0;
}

.product-content p span{
	font-size: 14px;
	text-decoration: line-through;
	font-weight: 400;
	color: var(--text-color);
}

.product-item-slider .product-pagination{
    text-align: center;
	margin-top: 60px;
	padding-bottom: 4px;
}

.product-item-slider .product-pagination .swiper-pagination-bullet{
	position: relative;
    height: 8px;
    width: 8px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 5px;
	transition: all 0.4s ease-in-out;
}

.product-item-slider .product-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.product-item-slider .product-pagination .swiper-pagination-bullet-active:before{
	border-color: var(--accent-color);
	height: 16px;
	width: 16px;
}

.product-item-slider .product-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/************************************/
/*** 	 08. Why Choose Us css 	  ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-item-box-1{
	text-align: right;
}

.why-choose-item{
	margin-bottom: 60px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
}

.why-choose-item .icon-box{
	margin-bottom: 20px;
}

.why-choose-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.why-choose-item-content h3{
	max-width: 240px;
	font-size: 20px;
	margin-bottom: 10px;
}

.why-choose-item-box-1 .why-choose-item-content h3{
	margin-left: auto;
}

.why-choose-item-content p{
	margin-bottom: 0;
}

.why-choose-image figure{
	display: block;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
}

.why-choose-us .section-footer-text{
	margin-top: 60px;
}

/************************************/
/*** 	 09. Best Sellers css 	  ***/
/************************************/

.best-sellers{
	background: var(--secondary-color);
	padding: 100px 0;
}

.best-sellers-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.best-selling-product-slider{
	width: calc(45% - 30px);
}

.best-selling-product-slider-box .swiper-wrapper,
.best-selling-product-slider-item .swiper-wrapper{
	cursor: none;
}

.best-product-image{
	background: var(--bg-color);
	border-radius: 20px;
}

.best-product-image.featured-product{
	padding: 60px;
}

.best-product-image figure{
	display: block;
}

.best-product-image img{
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
}

.best-selling-product-slider-item{
	margin-top: 30px;
}

.best-selling-product-slider-item .best-product-image{
	text-align: center;
	padding: 20px;
}

.best-selling-product-slider-item .best-product-image img{
    max-width: 110px;
	aspect-ratio: unset;
}

.best-selling-product-content{
	width: calc(55% - 30px);
}

.best-product-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.best-product-list ul li{
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.best-product-list ul li::before{
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.best-product-options{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.best-product-options h3{
	font-size: 16px;
	width: 100%;
}

.best-product-options .best-product-image{
	width: auto;
	border-radius: 10px;
	padding: 10px;
}

.best-product-options .best-product-image img{
    max-width: 80px;
}

.product-model-list{
	margin-top: 30px;
}

.product-model-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-model-list ul li{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	border: 1px dashed var(--divider-color);
	border-radius: 10px;
	padding: 12px 15px;
}

.best-product-btn{
	    margin-top: 24px;

}

/************************************/
/*** 	 10. Our Benefits css 	  ***/
/************************************/

.our-benefits{
	padding: 100px 0;
}

.product-review-box,
.product-collection-box,
.product-benefit-box{
	background: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.product-review-box{
	padding: 40px;
}

.review-images{
	display: inline-flex;
	align-items: center;
}

.review-image{
	position: relative;
    display: inline-block;
    margin-left: -10px;
	z-index: 1;
}

.review-image:first-child{
	margin: 0;
}

.review-image figure{
	display: block;
	border-radius: 50%;
}

.review-image img{
	width: 100%;
	max-width: 60px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.review-image.add-more{
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.review-image.add-more i{
	font-size: 24px;
	color: var(--white-color);
}

.review-body{
	margin-top: 20px;
}

.review-rating-content p{
	margin-bottom: 0;
}

.review-rating-content p span{
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-right: 10px;
}

.review-rating-star{
	margin-top: 10px;
}	

.review-rating-star i{
	color: var(--accent-color);
	margin-right: 2px;
}	

.review-rating-star span{
	font-size: 14px;
	color: var(--white-color);
	display: inline-block;
	font-weight: 600;
	background-color: var(--accent-color);
	border-radius: 100px;
	padding: 3px 10px;
}

.review-content{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.review-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.review-content p{
	margin-bottom: 0;
}

.product-collection-box{
	position: relative;
	background: transparent;
	align-content: end;
	padding: 30px;
}

.product-collection-image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.product-collection-image figure,
.product-collection-image img{
	display: block;
	width: 100%;
	height: 100%;
}

.product-collection-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 58.94%, rgba(0, 0, 0, 0.40) 70.53%, rgba(0, 0, 0, 0.80) 99.91%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.product-collection-content{
	position: relative;
	z-index: 1;
}

.product-collection-content p{
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
}

.product-collection-content h3{
	font-size: 24px;
	font-weight: 700;
	color: var(--white-color);
}

.product-benefit-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-benefit-content{
	padding: 30px;
}

.product-benefit-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.product-benefit-content p{
	margin-bottom: 0;
}

.product-benefit-image figure{
	display: block;
}

.product-benefit-image img{
	width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}

.our-benefits .section-footer-text p{
	color: var(--primary-color);
}

/************************************/
/*** 	   11. Our Facts css 	  ***/
/************************************/

.our-fact{
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-fact-image{
	text-align: center;
	padding: 0 5.208vw;
}

.our-fact-image img{
	width: 100%;
	aspect-ratio: 1 / 1.413;
	object-fit: cover;
}

.fact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.fact-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.fact-item .icon-box{
	margin-right: 20px;
}

.fact-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.fact-item-content{
	width: calc(100% - 60px);
}

.fact-item-content p{
	color: var(--primary-color);
	margin: 0;
}

/************************************/
/***   12. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	padding: 100px 0;
}

.review-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
	margin-bottom: 40px;
}

.review-box .review-image img{
	max-width: 45px;
}

.review-box .review-image.add-more{
	width: 45px;
	height: 45px;
}

.review-box .review-image.add-more i{
	font-size: 24px;
}

.review-box-content .review-rating-star{
	margin: 0 0 5px;
}

.review-box-content .review-rating-content p{
	color: var(--primary-color);
	font-weight: 600;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
}

.testimonial-quote{
	margin-bottom: 20px;
}

.testimonial-quote img{
	width: 100%;
	max-width: 40px;
}

.testimonial-content{
	margin-bottom: 120px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
}

.author-image img{
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.author-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.testimonial-pagination{
	position: relative;
	text-align: center;
	margin-top: 40px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 8px;
    width: 8px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 5px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--primary-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--primary-color);
	height: 16px;
	width: 16px;
}

/************************************/
/*** 	 13. Intro Video css 	  ***/
/************************************/

.intro-video .container-fluid{
	padding: 0;
}

.intro-video-box video{
	width: 100%;
	height: 750px;
	object-fit: cover;
}

/************************************/
/*** 	 14. Our Partners css 	  ***/
/************************************/

.our-partners{
	padding: 100px 0 0 0px;
}

.partners-review-content{
	margin-top: 30px;
}

.partners-review-content ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
}

.partners-review-content ul li span{
	font-size: 20px;
	font-weight: 600;
}

.our-partners-content{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 60px;
	margin-top: 30px;
}

.partners-contact-box{
	display: flex;
	align-items: center;
}

.partners-contact-box .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.partners-contact-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	z-index: 1;
}

.partners-contact-box-content{
	width: calc(100% - 65px);
}

.partners-contact-box-content p{
	text-transform: capitalize;
	margin-bottom: 5px;
}

.partners-contact-box-content h3{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 700;
}

.partners-contact-box-content h3 a{
	color: inherit;
}

.our-partners-slider{
	border-top: 1px solid var(--divider-color);
	padding-top: 80px;
}

.our-partners-logo{
    text-align: center;
}

.our-partners-logo img{
	width: 100%;
    height: 40px;
}

/************************************/
/*** 	   15. Our FAQs css 	  ***/
/************************************/

.our-faqs{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.faqs-content{
	margin-bottom: 30px;
}

.faq-accordion .accordion-item{
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
    color: var(--primary-color);
    background: transparent;
    padding: 16px 50px 16px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f13a';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
	padding: 20px 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
	margin: 0;
}

.our-faqs .section-footer-text p{
	font-weight: 500;
}

/************************************/
/*** 	   16. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	background-color: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a{
    cursor: none;	
    display: block;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.695;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	padding: 30px;
}

.post-meta{
    margin-bottom: 15px;
}

.post-meta ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 10px;
}

.post-meta ul li{
    line-height: normal;
    text-transform: capitalize;
}

.post-meta ul li a{
    color: inherit;
}

.post-meta ul li i{
    color: var(--text-color);
    font-size: 18px;
    margin-right: 5px;
}

.post-item-content{
	margin-bottom: 15px;
}

.post-item-content h2{
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
	color: inherit;
}

/************************************/
/*** 	 	17. Footer css  	  ***/
/************************************/

.main-footer{
	background-color: #4d7449;
	padding: 100px 0 0;
}

.about-footer{
	padding-right: 4.167vw;
}

.footer-logo{
	margin-bottom: 20px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 45px;
	justify-content: space-between;
}

.footer-links h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	text-transform: capitalize;
	color: var(--white-color);
	line-height: normal;
	margin-bottom: 20px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--secondary-color);
}

.footer-links.footer-contact-info{
	width: 62%;
}

.footer-contact-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	padding: 8px 20px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover{
	border-color: var(--white-color);
}

.footer-contact-item .icon-box{
	margin-right: 10px;
}

.footer-contact-item .icon-box img{
	width: 100%;
	max-width: 20px;
}

.footer-contact-content{
	width: calc(100% - 30px);
}

.footer-contact-content p{
	color: var(--white-color);
	font-weight: 700;
	line-height: normal;
	margin: 0;
}

.footer-contact-content p a{
	color: inherit;
}

.footer-copyright{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
}

.footer-copyright-text,
.footer-social-links{
	width: calc(50% - 15px);
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
	text-align: right;
}

.footer-social-links ul li{
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child{
    margin: 0;
}

.footer-social-links ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--white-color);
}

.footer-social-links ul li i{
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

/************************************/
/*** 	 18. About Us Page css 	  ***/
/************************************/

.page-header{
	background: #4d7449 ;
	background-position: center center;
	background-size: 100% auto;
	padding: 240px 0 125px;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
	font-size: 90px;
    font-weight: 700;
    line-height: 1.1em;
	color: #ffffff;
	margin-bottom: 15px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
}
.page-header-box ol li.breadcrumb-item span{
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--primary-color);
	display: none;
}

.our-approach{
	background: var(--secondary-color);
	padding: 100px 0;
}

.approach-item{
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 30px;
}

.approach-item:last-child{
	margin-bottom: 0;
}

.approach-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	margin-bottom: 20px;
}

.approach-item-header .icon-box img{
	max-width: 40px;
}

.approach-item-title{
	width: calc(100% - 60px);
}

.approach-item-title h3{
	font-size: 20px;
}

.approach-item-content p{
	margin: 0;
}

.our-approach-images{
	position: relative;
}

.approach-image figure{
	display: block;
	border-radius: 20px;
}

.approach-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 20px;
}

.product-review-box.approach-review-box{
	position: absolute;
	bottom: 30px;
	left: 30px;
	height: auto;
	margin: 0;
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: saturate(180%) blur(40px);
	padding: 20px 50px 20px 20px;
	z-index: 1;
}

.product-review-box.approach-review-box .review-rating-content p span,
.product-review-box.approach-review-box .review-rating-content p,
.product-review-box.approach-review-box .review-rating-star i{
	color: var(--white-color);
}

.our-experience{
	padding: 100px 0;
}

.experience-images-box{
	display: flex;
	flex-wrap: wrap;
	background: url('../images/experience-dot-image-bg.png') no-repeat;
	background-position: bottom 130px right 85px;
	background-size: 80px auto;
	margin-right: 15px;
}

.experience-images-1{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.experience-team{
	background: var(--secondary-color);
	border-radius: 20px;
	width: 100%;
	max-width: 190px;
	text-align: center;
	padding: 40px 20px;
}

.experience-team img{
	max-width: 45px;
	margin-bottom: 10px;
}

.experience-team h2{
	font-size: 46px;
	margin-bottom: 10px;
}

.experience-team p{
	margin: 0;
}

.experience-images-1 .experience-image{
	width: calc(100% - 220px);
}

.experience-image figure{
	width: 100%;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.experience-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.157;
	object-fit: cover;
}

.experience-images-2{
	position: relative;
	width: 100%;
	max-width: 433px;
	margin-top: -192px;
	z-index: 1;
}

.experience-images-2 .experience-image figure{
	border: 10px solid var(--bg-color);
}

.experience-images-2 .experience-image figure img{
	aspect-ratio: 1 / 0.882;
}

.experience-items-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;	
}

.experience-item{
	width: calc(50% - 15px);
}

.experience-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.experience-item-header .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
}

.experience-item-header:hover .icon-box{
	background: transparent;
}

.experience-item-header .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
	left: 0;
    background: var(--secondary-color);
	border-radius: 50%;
	transform: scale(0);
    width: 100%;
    height: 100%;
	transition: all 0.3s ease-in-out;
}

.experience-item-header:hover .icon-box::before{
	transform: scale(1);
}

.experience-item-header .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.experience-item-header:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.experience-item-title{
	width: calc(100% - 70px);
}

.experience-item-title h3{
	font-size: 20px;
}

.experience-item-content p{
	margin: 0;
}

.experience-item-content ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.experience-item-content ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.experience-item-content ul li:last-child{
	margin-bottom: 0;
}

.experience-item-content ul li::before{
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.product-offer-box{
	position: relative;
	border-radius: 20px;
	padding: 50px 40px;
	margin-top: 40px;
	overflow: hidden;
}

.product-offer-image{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.product-offer-image::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.54) 49.92%);
	z-index: 1;
}

.product-offer-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-offer-content{
	position: relative;
	z-index: 1;
}

.product-offer-content h3{
	font-size: 20px;
	line-height: 1.3em;
	color: var(--white-color);
	max-width: 350px;
	margin-bottom: 10px;
}

.product-offer-content p{
	color: var(--white-color);
	margin: 0;
}

.our-choice{
	padding: 100px 0;
}

.choice-image-box{
	position: relative;
	margin-right: 15px;
}

.choice-image figure{
	display: block;
	border-radius: 20px;
}

.choice-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.101;
	object-fit: cover;
	border-radius: 20px;
}

.choice-image-box .product-review-box.approach-review-box{
	left: auto;
	right: 30px;
	padding: 20px;
	max-width: 255px;
}

.our-choice-content{
	background: var(--secondary-color);
	border-radius: 20px;
	text-align: center;
	padding: 40px;
}

.choice-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.choice-item{
	width: calc(50% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	text-align: left;
	padding: 30px 20px;
}

.choice-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.choice-item-header .icon-box img{
	max-width: 30px;
}

.choice-item-title{
	width: calc(100% - 50px);
}

.choice-item-title h3{
	font-size: 20px;
}

.choice-item-content p{
	margin: 0;
}

.choice-item-content ul{
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.choice-item-content ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
	margin-bottom: 10px;
}

.choice-item-content ul li:last-child{
	margin-bottom: 0;
}

.choice-item-content ul li::before{
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

/************************************/
/*** 	 19. Blog Archive css 	  ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 20. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta{
	margin-top: 10px;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.435em;
}

.post-entry h1{
	font-size: 90px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-style: normal;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--secondary-color);
	color: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	border: 1px solid var(--divider-color);
    color: var(--primary-color);
	border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	border-color: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 21. Features Page css 	  ***/
/************************************/

.page-features{
    padding: 100px 0 70px;
}

.features-item{
    position: relative;
    background-color: var(--white-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.features-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.features-item.active::before,
.features-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.features-item .icon-box,
.features-item-content{
    position: relative;
    z-index: 1;
}

.features-item .icon-box{
    margin-bottom: 50px;
}

.features-item .icon-box img{
    width: 100%;
    max-width: 40px;
}

.features-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.features-item-content p{
    margin-bottom: 0;
}

/************************************/
/***   22. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	position: relative;
	background: var(--white-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.page-testimonials .testimonial-item::before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	background: var(--secondary-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item.active::before,
.page-testimonials .testimonial-item:hover::before{
	top: 0;
	border-radius: 0;
}

.page-testimonials .testimonial-item .testimonial-quote,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-author{
	position: relative;
	z-index: 1;
}

/************************************/
/*** 	   23. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-single-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 15px;
}

.page-category-list{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
    margin-bottom: 60px;
	padding: 40px;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-category-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-category-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover{
	color: var(--primary-color);
}

.page-category-list ul li a::before{
	content: '\f138';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-box{
	position: relative;
}

.sidebar-cta-image{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.sidebar-cta-image:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 62.74%, rgba(0, 0, 0, 0.80) 99.52%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sidebar-cta-image figure{
	display: block;
}

.sidebar-cta-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.999;
	object-fit: cover;
}

.sidebar-cta-item{
	position: absolute;
	bottom: 30px;
	left: 30px;
	max-width: 280px;
	backdrop-filter: saturate(180%) blur(40px);
	-webkit-backdrop-filter: saturate(180%) blur(40px);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
	z-index: 2;
}

.sidebar-cta-item .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.sidebar-cta-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 28px;
	z-index: 1;
}

.sidebar-cta-content{
	width: calc(100% - 65px);
}

.sidebar-cta-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.sidebar-cta-content h3{
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
}

.sidebar-cta-content h3 a{
	color: inherit;
}

.page-faqs-catagery .page-single-faqs{
	margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child{
	margin-bottom: 0;
}

/************************************/
/*** 	 24. Contact Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-info-list{
    display: flex;
    flex-wrap: wrap;
	gap: 30px;
}	

.contact-info-item{
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.contact-info-item.location-box{
	width: 100%;
}

.contact-info-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}

.contact-info-item-header .icon-box{
	margin-right: 10px;
}	

.contact-info-item-header .icon-box img{
	max-width: 20px;
}	

.contact-info-item-title h3{
	font-size: 20px;
}	

.contact-info-item-content p{
	margin-bottom: 0;
}	

.contact-info-item-content p a{
	color: var(--text-color);
	transition: all 0.3s ease-in-out;
}	

.contact-info-item-content p a:hover{
	color: var(--primary-color);
}

.contact-us-image{
	margin-left: 15px;
}

.contact-us-image figure{
	display: block;
	border-radius: 20px;
}

.contact-us-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 20px;
}

.contact-form-box{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
	margin-top: 100px;
}

.contact-us-form,
.google-map-iframe{
	width: 50%;
}

.contact-us-form{
	padding: 40px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
}

/************************************/
/*** 	25. 404 Error Page css 	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title{
	margin-bottom: 20px;
}

/************************************/
/*** 	 26. Responsive css 	  ***/
/************************************/

@media only screen and (max-width: 1024px){

	.main-menu ul li{
		margin: 0;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 14px 20px;
	}

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title.section-title-center{
		max-width: 100%;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 58px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 160px 0 0;
	}

	.hero.hero-video{
		padding: 170px 0 80px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 170px 0 80px;
	}

	.hero .section-row .section-title.section-title-center,
	.hero-content{
		max-width: 100%;
	}

	.hero .section-row .section-title.section-title-center h2{
		margin-top: 10px;
	}

	.hero-body{
		gap: 30px 40px;
	}
	
	.hero-body-item{
		width: calc(50% - 20px);
	}
	
	.hero-body-item::before{
		right: -20px;
	}

	.hero-btn,
	.hero-image{
		margin-top: 30px;
	}
	
	.our-scrolling-ticker{
		padding: 15px 0;
	}
	
	.scrolling-ticker-box{
		--gap: 20px;
	}
	
	.scrolling-content span{
		font-size: 28px;
	}
	
	.scrolling-content span img{
		max-width: 26px;
		margin-right: 20px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-item-image img{
		aspect-ratio: 1 / 0.9;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p{
		font-size: 16px;
	}

	.our-products{
		padding: 50px 0;
	}

	.product-image{
		padding: 15px 0;
		margin-bottom: 20px;
	}

	.product-content p{
		font-size: 16px;
	}

	.product-item-slider .product-pagination{
		margin-top: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-item{
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box{
		margin-bottom: 15px;
	}

	.why-choose-item-box-1{
		text-align: left;
	}

	.why-choose-item-content h3{
		max-width: 100%;
		margin-left: 0;
	}

	.why-choose-image{
		width: 100%;
		max-width: 70%;
		margin: 30px auto 0;
	}

	.why-choose-us .section-footer-text{
		margin-top: 30px;
	}

	.best-sellers{
		padding: 50px 0;
	}

	.best-selling-product-slider,
	.best-selling-product-content{
		width: 100%;
	}

	.best-product-image{
		text-align: center;
	}

	.best-product-image.featured-product{
		padding: 30px;
	}

	.best-product-image.featured-product img{
		max-width: 400px;
		aspect-ratio: 1 / 0.95;
	}

	.best-selling-product-slider-item{
		margin-top: 20px;
	}

	.best-selling-product-slider-item .best-product-image{
		padding: 15px;
	}

	.best-product-list ul li{
		padding-left: 25px;
	}

	.best-product-options{
		margin-top: 20px;
		padding-top: 20px;
	}

	.product-model-list ul{
		gap: 15px 20px;
	}

	.product-model-list ul li{
		padding: 10px;
	}

	.best-product-btn{
		margin-top: 30px;
	}

	.our-benefits{
		padding: 50px 0;
	}

	.product-review-box{
		padding: 30px;
	}

	.review-content{
		margin-top: 20px;
		padding-top: 20px;
	}

	.product-collection-content h3{
		font-size: 22px;
	}

	.product-benefit-image{
		text-align: center;
	}

	.product-benefit-image img{
		max-width: 85%;
	}
	
	.our-fact{
		padding: 50px 0;
	}

	.our-fact-image{
		max-width: 70%;
    	padding: 0;
    	margin: 0 auto 30px;
	}

	.fact-list{
		gap: 30px;
	}
	
	.fact-item .icon-box{
		margin-right: 10px;
	}

	.fact-item-content{
		width: calc(100% - 50px);
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.testimonials-content{
		margin-bottom: 30px;
	}

	.review-box{
		margin-bottom: 30px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-content{
		margin-bottom: 60px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-pagination{
		margin-top: 30px;
	}

	.intro-video-box video{
		height: 500px;
	}

	.our-partners{
		padding: 50px 0;
	}

	.partners-review-content{
		margin-top: 20px;
	}

	.our-partners-content{
		gap: 20px 30px;
	}

	.our-partners-slider{
		padding-top: 40px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-content,
	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 45px 14px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px 45px 15px 15px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body{
    	padding: 20px;
	}

	.post-meta{
		margin-bottom: 10px;
	}

	.post-meta ul li i{
		font-size: 18px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.about-footer{
		padding-right: 0;
		margin-bottom: 30px;
	}

	.footer-links-box{
		gap: 30px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 15px;
	}

	.footer-links.footer-contact-info{
    	width: 55%;
	}

	.footer-contact-list{
		gap: 20px;
	}

	.footer-copyright{
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header{
		padding: 160px 0 70px;
	}

	.page-header-box h1{
		font-size: 58px;
		margin-bottom: 10px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.our-approach-content{
		margin-bottom: 30px;
	}

	.approach-item{
		padding: 30px;
	}

	.approach-image figure img{
		aspect-ratio: 1 / 0.9;
	}

	.our-experience{
		padding: 50px 0;
	}

	.experience-images-box{
		max-width: 80%;
		margin: 0 auto 30px;
	}

	.experience-team h2{
		font-size: 36px;
	}

	.experience-item-header{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.product-offer-box{
		margin-top: 30px;
	}

	.our-choice{
		padding: 50px 0;
	}

	.choice-image-box{
		margin: 0 0 30px;
	}

	.choice-image figure img{
		aspect-ratio: 1 / 0.7;
	}

	.our-choice-content{
		padding: 30px;
	}

	.choice-item-box{
		margin-top: 30px;
	}

	.choice-item{
		padding: 20px;
	}

	.page-blog{
        padding: 50px 0;
    }

    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 50px 0;
    }

	.post-single-meta{
		margin-top: 5px;
	}

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.58em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-features{
		padding: 50px 0 20px;
	}

	.features-item{
		padding: 30px 25px;
	}

	.features-item .icon-box{
		margin-bottom: 30px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list{
		padding: 30px;
		margin-bottom: 30px;
	}

	.sidebar-cta-image figure img{
		aspect-ratio: 1 / 0.7;
	}

	.page-faqs-catagery .page-single-faqs{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-content{
		margin-bottom: 30px;
	}

	.contact-info-item{
		padding: 20px;
	}

	.contact-us-image{
		margin-left: 0;
	}

	.contact-form-box{
		flex-direction: column-reverse;
		margin-top: 50px;
	}

	.contact-us-form,
	.google-map-iframe{
		width: 100%;
	}

	.contact-us-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

    .error-page-content-body p,
    .error-page-content .section-title{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 26px;
	}

	.section-title h2{
		font-size: 24px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
	}

	.hero-body-item{
		width: 100%;
	}

	.hero-body-item:nth-child(odd){
		text-align: left;
		flex-direction: initial;
	}

	.hero-body-item::before{
		left: 0;
		right: auto;
		bottom: -15px;
		top: auto;
		width: 100%;
		height: 1px;
	}

	.hero-body-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.hero-image img{
        max-width: 100%;
    }

	.scrolling-ticker-box{
        --gap: 15px;
    }

	.scrolling-content span{
        font-size: 22px;
    }

	.scrolling-content span img{
        max-width: 20px;
		margin-right: 15px;
    }

	.about-item-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.section-footer-text span{
		padding: 1px 8px;
		margin-right: 5px;
	}

	.product-image img{
		aspect-ratio: 1 / 0.92;
	}

	.product-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.why-choose-image{
        max-width: 100%;
        margin: 30px 0;
    }

	.best-product-image.featured-product{
        padding: 20px;
    }

	.best-product-image.featured-product img{
        max-width: 280px;
    }

	.best-selling-product-slider-item .best-product-image{
		border-radius: 14px;
        padding: 10px;
    }

	.best-selling-product-slider-item .best-product-image img{
		max-width: 80px;
	}

	.best-product-list ul{
		gap: 10px;
	}

	.best-product-list ul li{
		width: 100%;
	}

	.product-model-list ul{
        gap: 10px;
    }

	.product-model-list ul li{
        padding: 8px;
    }

	.product-review-box,
	.product-collection-box,
	.product-benefit-content{
		padding: 20px;
	}

	.review-image img{
		width: 50px;
		height: 50px;
	}

	.review-body{
		margin-top: 15px;
	}

	.review-content h3{
		font-size: 18px;
	}

	.review-rating-content p span{
		font-size: 18px;
		margin-right: 5px;
	}

	.product-collection-box{
		height: 300px;
	}

	.product-collection-content h3{
        font-size: 20px;
    }

	.product-benefit-content h3{
		font-size: 18px;
	}

	.our-fact-image{
		max-width: 100%;
	}

	.fact-list{
        gap: 20px;
    }

	.fact-item{
		width: 100%;
	}

	.testimonial-quote{
		margin-bottom: 10px;
	}

	.testimonial-content{
        margin-bottom: 30px;
    }

	.testimonial-content p{
		font-size: 16px;
	}

	.intro-video-box video{
		height: 350px;
	}

	.partners-review-content ul li span{
		font-size: 18px;
	}

	.our-partners-content{
        gap: 15px;
    }

	.our-partners-slider{
        padding-top: 30px;
    }

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
        padding: 12px 40px 12px 12px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
        right: 12px;
        font-size: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px;
    }
	
	.post-item-content h2{
		font-size: 18px;
	}

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links.footer-contact-info{
		width: 100%;
	}

	.footer-contact-item{
		padding: 8px 15px;
	}

	.footer-contact-content p{
		font-size: 14px;
	}

	.footer-copyright{
		padding: 15px 0;
	}

	.footer-copyright-text,
	.footer-social-links{
		width: 100%;
	}

	.footer-copyright-text{
		text-align: center;
	}

	.footer-social-links ul{
		text-align: center;
	}
	
	.page-header-box h1{
		font-size: 26px;
	}

	.approach-item{
		padding: 20px;
	}

	.approach-item-header{
		margin-bottom: 15px;
	}

	.approach-item-title h3{
		font-size: 18px;
	}

	.product-review-box.approach-review-box{
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.approach-image figure img{
        aspect-ratio: 1 / 1.1;
    }

	.experience-images-box{
		max-width: 100%;
	}

	.experience-images-1{
		gap: 20px;
	}

	.experience-team{
		max-width: 160px;
	}

	.experience-team h2{
		font-size: 26px;
		margin-bottom: 5px;
	}

	.experience-team p{
		font-size: 14px;
	}

	.experience-images-1 .experience-image{
		width: calc(100% - 180px);
	}

	.experience-images-2{
		max-width: 100%;
		margin: 15px 0 0 0;
	}

	.experience-image figure{
		border-width: 5px;
	}

	.experience-item{
		width: 100%;
	}

	.experience-item-title h3{
		font-size: 18px;
	}

	.experience-item-content ul li{
		margin-bottom: 10px;
	}

	.product-offer-box{
		padding: 30px 20px;
	}

	.product-offer-content h3{
		font-size: 18px;
	}

	.choice-image figure img{
		aspect-ratio: 1 / 1.101;
	}

	.choice-image-box .product-review-box.approach-review-box{
		right: 20px;
		max-width: 220px;
	}

	.our-choice-content{
		padding: 20px;
	}

	.choice-item-box{
        gap: 20px;
    }

	.choice-item{
		width: 100%;
	}

	.choice-item-header{
		margin-bottom: 15px;
	}

	.choice-item-title h3{
		font-size: 18px;
	}

	.choice-item-content ul{
		margin-top: 15px;
	}

	.post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 24px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.features-item{
		padding: 20px;
	}

	.features-item-content h3{
		font-size: 18px;
	}

	.page-category-list{
		padding: 20px;
	}

	.sidebar-cta-image figure img{
        aspect-ratio: 1 / 0.999;
    }

	.sidebar-cta-item{
		left: 20px;
		bottom: 20px;
	}

	.contact-info-list{
		gap: 20px;
	}

	.contact-info-item-title h3{
		font-size: 18px;
	}

	.contact-info-item{
		width: 100%;
	}

	.contact-us-form{
		padding: 30px 20px;
	}
}



.cart {
  width: 90%;
  max-width: 1000px;
  margin: 90px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.title {
  text-align: center;
  margin-bottom: 30px;
  color: #4d7449;
}

.cart-table {
  width: 100%;
}

.cart-header,
.cart-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 15px 0;
}

.cart-header {
  font-weight: 600;
  color: #4d7449;
  border-bottom: 2px solid #f7f7f7
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-right: 10px;
  object-fit: cover;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 5px;
  border: 1px solid #f7f7f7;
  border-radius: 6px;
  text-align: center;
}

.cart-summary {
  text-align: right;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
}

.cart-summary h3 {
  margin-bottom: 15px;
  color: #4d7449;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-row.total {
  font-weight: 700;
  color: #4d7449;
  border-top: 1px solid #f7f7f7;
  padding-top: 10px;
}


.checkout-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.pb{
	padding: 80px 0;
}

.checkout-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 950px;
  margin: auto;
  flex-wrap: wrap;
}

.checkout-form,
.cart-summary {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 300px;
  height: fit-content;
}

.checkout-form h3,
.cart-summary h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
      margin-top: 15px;
}

.checkout-form label {
  display: block;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
  min-width: -webkit-fill-available;
}
.checkout-form  label .lo.lo{
	margin: 0px !important;
}
.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.same-address {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

.address-group {
  display: flex;
  gap: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-top: 10px;
}

.checkout-btn {
  width: 100%;
  background-color: #4d7449;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
input[type="checkbox"] {
    accent-color: #4d7449;
  }
.checkout-btn:hover {
  background-color: #155d24;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}




/* account */
.account-page {
	display: flex;
    margin-top: 80px;
    gap: 20px;
	margin-bottom: 80px;
}

.account-sidebar {
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.account-sidebar ul {
    list-style: none;
    padding: 0;
}

.account-sidebar li {
    margin-bottom: 15px;
}

.account-sidebar a {
    text-decoration: none;
    color: #4d7449;
    font-weight: 500;
}

.account-sidebar a.active {
    font-weight: 700;
}

.account-sidebar a.logout {
    color: #4d7449;
}

.account-content {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.account-section h2 {
    color: #4d7449;
}

form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

form input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #4d7449;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
	margin-bottom: 15px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.address-card {
    background: #fff0f0;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}


/* login */

.login-container {
    width: 100%;
    max-width: 400px;
}
.log{
	display:flex ;
	justify-content: center;
	margin: 80px 0px;
}
.login-box {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.login-box h1 {
    color: #4d7449;
    margin-bottom: 10px;
}

.login-box p {
    color: #333;
    margin-bottom: 20px;
}

.login-box form {
    display: flex;
    flex-direction: column;
}

.login-box label {
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
}

.login-box input {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn {
    padding: 12px;
    background: #4d7449;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #4d7449;
}

.signup-text, .forgot-text {
    margin-top: 10px;
}

.signup-text a, .forgot-text a {
    color: #4d7449;
    text-decoration: none;
    font-weight: 500;
}

.signup-text a:hover, .forgot-text a:hover {
    text-decoration: underline;
}

/* product-details */

.product-container {
    display: flex;
    gap: 50px;
    width: 90%;
    margin: 80px auto;
    background: #fff;
    padding: 44px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image img {
    width: 400px;
    border-radius: 10px;
}

.product-details {
    flex: 1;
}

.product-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    color: #4d7449;
    margin-bottom: 15px;
}

.description {
    margin-bottom: 20px;
}


select, input[type="number"] {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.add-to-cart {
    padding: 12px 20px;
    background: #4d7449;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.add-to-cart:hover {
    background: #4d7449;
}

.p1{
	    padding-top: 6px;
	margin-bottom: 0px;
}
.product-price{
	color: #4d7449;
	font-size: 26px;
	font-weight: 700;
	padding-left: 10px;
	font-family: var(--default-font);
}

/* Price Section */
.best-product-price {
    font-size: 20px;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.best-product-price .p1 {
    font-size: 22px;
    color: #4d7449;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Product Options */
.product-options,
.product-quantity {
    margin: 10px 0;
}

.product-options label,
.product-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-options select,
.product-quantity input[type="number"] {
    width: 150px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
	color: #496f46;
}

/* Add to Cart Button */
.best-product-btn .btn-default {
    display: inline-block;
    padding: 12px 25px;
    background: #4d7449;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}
.head{
	padding: 210px 0 70px;
}
.sub{
	color: #fff;
}


.best-product-btn .btn-default:hover {
    background: #4d7449;
	color: #496f46;
}

@media ( max-width:900px){
	.cart-header, .cart-item {
    display: flex;
    
}
.account-page{
	display: flex;
	flex-direction: column;
}
}
.thankyou-container {
      max-width: 600px;
      margin: 100px auto;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
      padding: 40px 30px;
	  text-align: center;
    }
    .thankyou-container img {
      width: 120px;
      margin-bottom: 20px;
	  background-color: #4d7449;
    }
    h1 {
      font-size: 2rem;
      color: #4d7449;
      margin-bottom: 10px;
    }
    p {
      font-size: 1rem;
      color: #4d7449;
      margin-bottom: 4px !important;
    }
    .order-info {
         background-color: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #4d7449;
    }
    .btn {
      display: inline-block;
      background-color: #4d7449;
      color: #fff;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 30px;
      transition: 0.3s;
      font-weight: 600;
    }
    .btn:hover {
      background-color: #4d7449;
    }
    .footer-text {
      margin-top: 25px;
      font-size: 0.9rem;
      color: #4d7449;
	  
    }
     .footer-text a{
		text-decoration: underline;
	 }
	.order-details-container {
      max-width: 600px;
      margin: 100px auto;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
      padding: 40px 40px;
	  
    }
	.order-summary {
		text-align:right;
	}
	/* Floating Icon Buttons Group */
.floating-icons{
	display: none;
}

@media (max-width: 768px) {
  .icon-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
      .floating-icons {
        position: fixed;
        display: flex;
        flex-direction: row;
        z-index: 99999 !important;
        bottom: 0px;
        justify-content: space-evenly;
        background-color: #4c7348a6;
        width: 100%;
        padding: 16px 0px;
		
}

/* Each Icon Button */
.icon-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.icon-btn-2{
	width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  background-color: #4d7449;
  border: 1px solid #fff;
}

/* Login */
.icon-btn.login {
  background-color: #4d7449; 
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
}

/* Cart */



.icon-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
}

	