/* ----------------------------------------------------------------------------------------
* 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. Why Choose us css
08. Our Products css
09. Our Key Points css
10. What We Do css
11. Intro Video css
12. Our Best Seller css
13. CTA Box css
14. Our FAQs css
15. Premium Products css
16. Our Testimonials css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Blog Archive css
21. Blog Single css
22. Features Page css
23. Testimonials Page css
24. FAQs Page css
25. Contact Us Page css
26. 404 Error Page css
27. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #11341C;
	--secondary-color			: #EDF5EA;
	--text-color				: #747975;
	--accent-color				: #5DB93D;
	--white-color				: #FFFFFF;
	--divider-color				: #11341C0D;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Poppins", 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(--white-color);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p{
	line-height: 1.7em;
	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: 35px;
    padding-left: 35px;
	z-index: 1;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    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;
    background: var(--accent-color);
	border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 52px 17px 25px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default::before{
	content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 24px;
	line-height: normal;
    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover,
.btn-default.btn-highlighted:hover::before{
	color: var(--primary-color);
}

.btn-default.btn-highlighted::after{
	background: var(--white-color);
}

.btn-default.border-btn{
	background: transparent;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	padding: 16px 51px 16px 24px;
}

.btn-default.border-btn::before{
	color: var(--accent-color);
}

.btn-default.border-btn:hover,
.btn-default.border-btn:hover::before{
	color: var(--white-color);
}

.btn-default.border-btn::after{
	background: var(--accent-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 38px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-3px, -50%);
    font-size: 24px;
	line-height: normal;
    color: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-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{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	font-size: 16px;
    font-weight: 700;
	line-height: 1em;
	letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
	border-left: 4px solid var(--accent-color);
	padding-left: 14px;
    margin-bottom: 15px;
}

.section-title h1{
	font-size: 80px;
	font-weight: 700;
	line-height: 1.1em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.dark-section{
	position: relative;
	background-image: url('../images/dark-section-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title-content p,
.dark-section .section-title p{
	color: var(--white-color);
}

.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(--dark-divider-color);
    z-index: 100;
}

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(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.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;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	padding: 15px 20px !important;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.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(--accent-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(--primary-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: 8px;
}

.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;
}

.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);
	background-color: var(--white-color);
}

.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);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.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: 6px 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(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 6px 20px 6px 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(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	padding: 220px 0 105px;
}

.hero::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 2;
}

.hero::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 20%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 1;
}

.hero .container{
	position: relative;
	z-index: 3;
}

.hero.hero-video{
	padding: 290px 0 175px;
}

.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: 90%;
    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: 290px 0 175px;
}

.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: 90%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.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(--accent-color);
}

.hero.hero-video .hero-content{
	text-align: center;
}

.hero.hero-video .hero-content .section-title p{
	width: 100%;
	max-width: 800px;
	margin: 20px auto 0;
}

.hero.hero-video .hero-content .hero-list ul,
.hero.hero-video .hero-content .hero-btn{
	justify-content: center;
}

.hero-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.hero-list ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--white-color);
	text-align: left;
	padding-left: 30px;
}

.hero-list ul li:last-child{
	margin-bottom: 0;
}

.hero-list ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.hero-btn{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.hero-image figure{
	display: block;
}

.hero-image img{
	width: 100%;
	aspect-ratio: 1 / 0.825;
	object-fit: cover;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	background-color: var(--accent-color);
	padding: 25px 0;
}

.scrolling-ticker-box{
	--gap: 15px;
	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-block;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	color: var(--white-color);
}

.scrolling-content span img{
	width: 26px;
	margin-right: 15px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-images{
	margin-right: 25px;
}

.about-images figure{
	display: block;
}

.about-images img{
	width: 100%;
	aspect-ratio: 1 / 0.914;
	object-fit: cover;
}

.about-us-body{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-us-list{
    width: calc(50% - 15px);
}

.about-us-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.about-us-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-list ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}



.about-body-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	padding: 20px;
}



.about-body-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.about-body-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-body-item:hover .icon-box::before{
	transform: scale(1);
}

.about-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 35px;
	z-index: 1;
}

.about-body-item-title{
	position: relative;
	width: calc(100% - 75px);
	z-index: 1;
}

.about-body-item-title h3{
	font-size: 20px;
	line-height: 1.3em;
}

/* START About Box with border */

.about-body-item-border{
	/* width: calc(50% - 15px); */
	display: flex;
	align-items: center;
	border: 5px solid #FF9800;
    box-shadow: 0px 0px 30px 0px #00000040;
	border-radius: 20px;
	padding: 20px;
}



.about-body-item-border .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.about-body-item-border .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-body-item-border:hover .icon-box::before{
	transform: scale(1);
}

.about-body-item-border .icon-box img{
	position: relative;
	width: 100%;
	max-width: 35px;
	z-index: 1;
}

.about-body-item-border-title{
	position: relative;
	width: calc(100% - 75px);
	z-index: 1;
}

.about-body-item-border-title h3{
	font-size: 20px;
	line-height: 1.3em;
}

/* END About Box with border */

/* START About Box Full width */

.about2-body-item{
	width: calc(100% - 15px);
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	padding: 20px;
}

.about2-body-item .icon-box{
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.about2-body-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about2-body-item:hover .icon-box::before{
	transform: scale(1);
}

.about2-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 35px;
	z-index: 1;
}

.about2-body-item-title{
	position: relative;
	width: calc(100% - 75px);
	z-index: 1;
}

.about2-body-item-title h3{
	font-size: 20px;
	line-height: 1.3em;
}
/* END About Box Full width */

.about-us-footer{
    display: flex;
	align-items: center;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.about-contact-box{
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.about-contact-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-contact-box:hover .icon-box::before{
	transform: scale(1);
}

.about-contact-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 26px;
	z-index: 1;
}

.about-contact-box-content p{
    margin-bottom: 3px;
}

.about-contact-box-content h3{
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	 07. Why Choose us css 	  ***/
/************************************/

.why-choose-us{
	position: relative;
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.why-choose-us::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.why-choose-us::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 5%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.why-choose-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.why-choose-item-box-1,
.why-choose-item-box-2{
	width: calc(31% - 20px);
}

.why-choose-item{
	position: relative;
	text-align: center;
	padding-right: 80px;
	margin-bottom: 120px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
}

.why-choose-item-box-2 .why-choose-item{
	padding: 0 0 0 80px;
}

.why-choose-item::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url('../images/why-choose-arrow.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 76px;
	height: 50px;
	transform: translateY(-50%);
}

.why-choose-item-box-1 .why-choose-item:nth-child(even)::before{
	transform: rotateX(180deg) translateY(50%);
}

.why-choose-item-box-2 .why-choose-item::before{
	right: auto;
	left: 0;
	transform: rotateY(180deg) translateY(-50%);
}

.why-choose-item-box-2 .why-choose-item:nth-child(even)::before{
	transform: rotateX(180deg) rotateY(180deg) translateY(50%);
}

.why-choose-item .icon-box{
	width: 150px;
	height: 150px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
}

.why-choose-item .icon-box img{
	width: 100%;
	max-width: 100px;
}

.why-choose-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--accent-color);
}

.why-choose-item-content p{
	margin-bottom: 0;
}

.why-choose-image{
	width: calc(38% - 20px);
}

.why-choose-image figure{
	display: block;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
}

/************************************/
/*** 	 08. Our Products css 	  ***/
/************************************/

.our-products{
	padding: 100px 0;
}

.product-item{
	text-align: center;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
}

.product-image{
	margin-bottom: 20px;
}

.product-image figure{
	display: block;
	border-radius: 20px;
}

.product-image img{
	width: 100%;
	aspect-ratio: 1 / 1.186;
	object-fit: cover;
	border-radius: 20px;
}

.product-title{
	margin-bottom: 10px;
}

.product-title h3{
	font-size: 20px;
}

.product-item-body{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.product-rating{
	display: flex;
	gap: 1px;
}

.product-rating i{
	font-size: 14px;
	color: var(--accent-color);
}

.product-price p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.product-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.product-slider .product-button-next,
.product-slider .product-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.product-slider .product-button-next{
	margin-left: 20px;
}

.product-slider .product-button-next:hover,
.product-slider .product-button-prev:hover{
	background: var(--accent-color);
}

.product-slider .product-button-next::before,
.product-slider .product-button-prev::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.product-slider .product-button-prev::before{
	transform: rotate(180deg);
}

.product-slider .product-button-next:hover:before,
.product-slider .product-button-prev:hover:before{
	color: var(--white-color);
}

.our-product-benefits{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 100px;
}

.product-benefit-item{
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.product-benefit-item .icon-box{
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    box-shadow: 0px 0px 60px 0px #00000012;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.product-benefit-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.product-benefit-item:hover .icon-box::before{
    transform: scale(1);
}

.product-benefit-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 45px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.product-benefit-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.product-benefit-content{
    width: calc(100% - 100px);
}

.product-benefit-content h3{
    font-size: 20px;
    line-height: 1.4em;
}

/************************************/
/*** 	09. Our Key Points css	  ***/
/************************************/

.our-key-points{
	position: relative;
	padding: 100px 0;
}

.our-key-points::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.our-key-points::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 5%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.key-points-step-item{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.key-points-step-item:last-child{
	margin-bottom: 0;
}

.key-points-steo-no{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 30px;
}

.key-points-steo-no::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
	left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.key-points-step-item:hover .key-points-steo-no::before{
	transform: scale(1);
}

.key-points-steo-no::after{
	content: "";
	display: block;
	position: absolute;
	left: 30px;
	bottom: -20px;
	transform: translateY(100%);
	border-left: 1px solid var(--dark-divider-color);
	width: 1px;
	height: 90%;
	z-index: -1;
}

.key-points-step-item:last-child .key-points-steo-no::after{
	display: none;
}

.key-points-steo-no h3{
	position: relative;
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.key-points-step-item:hover .key-points-steo-no h3{
	color: var(--primary-color);
}

.key-points-step-content{
	width: calc(100% - 90px);
}

.key-points-step-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.key-points-step-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.key-points-image{
    margin: 0 40px;
}

.key-points-image figure{
	display: block;
}

.key-points-image img{
	width: 100%;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
}

/************************************/
/*** 	  10. What We Do css 	  ***/
/************************************/

.what-we-do{
	padding: 100px 0;
}

.what-we-do .section-title{
	margin-bottom: 0;
}

.what-we-do-image figure{
	display: block;
}

.what-we-do-image img{
	width: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
}

.what-we-do-header{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-do-header p{
	margin-bottom: 0;
}

.what-do-counter-item{
	margin-bottom: 40px;
}

.what-do-counter-item:last-child{
	margin-bottom: 0;
}

.what-do-counter-item h2{
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}

.what-do-counter-item p{
	margin-bottom: 0;
}

.section-footer-text{
	margin-top: 60px;
	text-align: center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.section-footer-text span{
	font-weight: 500;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 2px 10px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

/************************************/
/*** 	  11. Intro Video css 	  ***/
/************************************/

.intro-video{
    position: relative;
    background: url('../images/intro-video-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 220px 0 60px;
}

.intro-video::before{
    content: '';
    position: absolute;
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.intro-video-box{
    position: relative;
    z-index: 1;
}

.intro-video-box .video-play-button{
    margin-bottom: 220px;
}

.video-play-button a{
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background: var(--white-color);
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
    font-size: 30px;
	color: var(--white-color);
    margin-left: 4px;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i{
    color: var(--primary-color);
}

.intro-video-item-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 60px;
}

.intro-video-item{
    width: calc(25% - 22.5px);
    display: flex;
    align-items: center;
}

.intro-video-item img{
    max-width: 30px;
    margin-right: 10px;
}

.intro-video-item h3{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-color);
}

/************************************/
/*** 	12. Our Best Seller css	  ***/
/************************************/

.our-best-seller{
	padding: 100px 0;
}

.best-seller-image{
	position: relative;
	margin-right: 20px;
}

.best-seller-image figure{
	display: block;
}

.best-seller-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
}

.seller-counter-box{
	position: absolute;
	top: 110px;
	right: 45px;
	width: 100%;
	max-width: 200px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.seller-counter-box::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.seller-counter-box:hover::before{
	height: 100%;
	border-radius: 0;
}

.seller-counter-box h2,
.seller-counter-box ul,
.seller-counter-box p{
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.seller-counter-box h2{
	font-size: 48px;
	margin-bottom: 20px;
}

.seller-counter-box ul{
	display: flex;
	gap: 2px;
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.seller-counter-box ul li i{
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.seller-counter-box p{
	margin-bottom: 0;
}

.seller-counter-box:hover h2,
.seller-counter-box:hover ul li i,
.seller-counter-box:hover p{
	color: var(--white-color);
}

.best-seller-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.best-seller-body ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.best-seller-body ul li:last-child{
	margin-bottom: 0;
}

.best-seller-body ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
}

.best-seller-footer{
	display: flex;
	gap: 30px 40px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.best-seller-price{
	display: flex;
	align-items: center;
	gap: 20px;
}

.best-seller-price h2{
	font-size: 30px;
}

.best-seller-price h3{
	font-size: 18px;
	color: var(--accent-color);
	text-decoration: line-through;
}

/************************************/
/*** 	    13. CTA Box css		  ***/
/************************************/

.cta-box{
    position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.cta-box::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 90%;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.cta-btn{
	position: relative;
    display: inline-block;
}

.cta-btn::before{
	content: '';
    position: absolute;
    bottom: 5px;
    right: -30px;
    transform: translateX(100%);
    background: url('../images/cta-box-arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	width: 100px;
    height: 55px;
    animation: ctaarrowmove 2s infinite linear alternate;
}

@keyframes ctaarrowmove{
	50%{
		right: -55px;
	}
}

.cta-image{
    margin: 0 125px;
}

.cta-image figure{
    display: block;
}

.cta-image img{
    width: 100%;
    aspect-ratio: 1 / 0.924;
    object-fit: cover;
}

/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/

.our-faqs{
	padding: 100px 0;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid var(--divider-color);
    background: var(--white-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 16px;
	margin-bottom: 25px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 18px 55px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0ab';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 18px;
	font-size: 24px;
	color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4S ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
	padding: 20px 55px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
	margin: 0;
}

.faq-image{
	margin-left: 55px;
}

.faq-image figure{
	display: block;
}

.faq-image img{
	width: 100%;
	aspect-ratio: 1 / 0.797;
	object-fit: cover;
}

/************************************/
/***   15. Premium Products css	  ***/
/************************************/

.premium-products{
	position: relative;
	background: var(--secondary-color);
	padding: 100px 0 0;
}

.premium-products::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.premium-products::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 5%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.premium-product-content{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.premium-benefits{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 60px;
	margin: 0 80px;
}

.premium-benefit-item{
	width: calc(50% - 30px);
	display: flex;
	align-items: center;
}

.premium-benefit-item .icon-box{
	position: relative;
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.premium-benefit-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
	bottom: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.premium-benefit-item:hover .icon-box::before{
	transform: scale(1);
}

.premium-benefit-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 45px;
	z-index: 1;
}

.premium-benefit-item-content{
	width: calc(100% - 100px);
	text-align: left;
}

.premium-benefit-item-content h3{
	font-size: 20px;
	line-height: 1.3em;
}

.premium-product-image{
	background: url('../images/premium-product-arrow.svg') no-repeat;
	background-position: top  center;
	background-size: 100% auto;
	overflow: hidden;
	padding-top: 100px;
}

.premium-product-image figure{
	display: block;
}

.premium-product-image img{
	width: 100%;
	max-width: 645px;
	aspect-ratio: 1 / 0.824;
	object-fit: cover;
	margin-bottom: -190px;
}

.premium-product-image2 img{
	width: 100%;
	max-width: 850px;
	object-fit: cover;
}

/************************************/
/***   16. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	background: var(--primary-color) url('../images/testimonial-bg.png') no-repeat;
	background-size: cover;
	padding: 100px 0;
}

.review-image-box{
	display: inline-flex;
	align-items: center;
	gap: 30px;
}

.customer-img{
	position: relative;
	display: inline-block;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    margin-left: -20px;
	width: 62px;
	height: 62px;
	z-index: 1;
}

.customer-img:first-child{
    margin: 0;
}

.customer-img figure{
    display: block;
	border-radius: 50%;
}

.customer-img img{
    max-width: 100%;
    border-radius: 50%;
}

.review-content ul{
	display: flex;
	gap: 2px;
	margin-bottom: 5px;
	padding: 0;
	list-style: none;
}

.review-content ul li{
	color: var(--accent-color);
}

.review-content ul li span{
	margin-right: 10px;
}

.review-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-slider .swiper-wrapper{
    cursor: none;
}

.testimonial-item{
	position: relative;
    background: var(--dark-divider-color);
    border-radius: 20px;
    padding: 30px;
	overflow: hidden;
}

.testimonial-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 0px;
    background: var(--accent-color);
	border-radius: 999px 999px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    z-index: 0;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-item::before{
    top: 0;
	border-radius: 0;
}

.testimonial-author,
.testimonial-content{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.author-image{
    display: inline-block;
    margin-right: 15px;
}

.author-image figure{
    border-radius: 50%;
    display: block;
}

.author-image img{
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.author-content{
	width: calc(100% - 65px);
}

.author-content h3{
    font-size: 20px;
    text-transform: capitalize;
	color: var(--white-color);
    margin-bottom: 5px;
}

.author-content p,
.testimonial-content p{
	color: var(--white-color);
    margin-bottom: 0;
}

.testimonial-body{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

.testimonial-rating i{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-rating i{
	color: var(--white-color);
}

.testimonial-quote img{
	width: 100%;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-active .testimonial-quote img{
	filter: brightness(0) invert(1);
}

.testimonial-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	font-size: 20px;
	color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	color: var(--white-color);
}

/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border-radius: 20px;
	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{
    aspect-ratio: 1 / 0.75;
    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-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

/************************************/
/*** 	   18. Footer css	 	  ***/
/************************************/

.main-footer{
	position: relative;
	padding: 100px 0 0;
}

.main-footer::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.main-footer::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 10%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.about-footer{
    margin-right: 200px;
}

.footer-logo{
	margin-bottom: 30px;
}

.footer-logo img{
	width: 100%;
	max-width: 231px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-links h3{
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.footer-contact-item:last-child{
	margin: 0;	
}

.footer-contact-item .icon-box{
	position: relative;
	height: 50px;
    width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}

.footer-contact-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box::before{
	transform: scale(1);
}

.footer-contact-item .icon-box img{
	position: relative;
	max-width: 25px;
	z-index: 1;
}

.footer-contact-item-content{
	width: calc(100% - 65px);
}

.footer-contact-item-content p{
	color: var(--white-color);
	margin-bottom: 2px;
}

.footer-contact-item-content h3{
	font-size: 20px;
	text-transform: none;
	color: var(--accent-color);
	margin: 0;
}

.footer-contact-item-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content h3 a:hover{
	color: var(--white-color);
}

.footer-cta-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 60px;
}

.footer-newsletter-form{
    display: flex;
	flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    width: calc(62% - 10px);
}

.footer-newsletter-form h3{
	margin-bottom: 0;
}

.footer-newsletter-form form{
	width: 64%;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 16px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control{
	width: 72%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted{
	width: 28%;
	border-radius: 14px;
	padding: 17px;
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted::before{
	display: none;
}

.footer-social-links{
	width: calc(38% - 10px);
	text-align: right;
}

.footer-social-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.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: 36px;
    height: 36px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--accent-color);
}

.footer-social-links ul li i{
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
    color: var(--accent-color);
}

.footer-copyright-text{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding: 40px 0;
}

.footer-copyright-text p{
	color: var(--white-color);
	text-align: center;
	margin: 0;
}

/************************************/
/*** 	 19. ABout Us Page css 	  ***/
/************************************/

.page-header{
    position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 130px 0 115px;
}

.page-header::before{
	content: '';
	display: block;
	position: absolute;
	left: -85px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
    height: 180px;
	z-index: 0;
}

.page-header::after{
	content: '';
	display: block;
	position: absolute;
	right: -10px;
	top: 28%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 110px;
	height: 110px;
	z-index: 0;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 80px;
    font-weight: 700;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span{
    color: var(--accent-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-approach{
	position: relative;
    background-color: var(--secondary-color);
    padding: 100px 0 70px;
}

.our-approach::before{
	content: '';
	display: block;
	position: absolute;
	left: -120px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 250px;
    height: 300px;
	z-index: 0;
}

.our-approach::after{
	content: '';
	display: block;
	position: absolute;
	right: -30px;
	top: 5%;
	background: url('../images/section-bg-2.png') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 180px;
	height: 180px;
	z-index: 0;
}

.approach-item{
    position: relative;
    background-color: var(--white-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.approach-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.approach-item.active::before,
.approach-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.approach-item .icon-box,
.approach-item-content{
    position: relative;
    z-index: 1;
}

.approach-item .icon-box{
    margin-bottom: 40px;
}

.approach-item .icon-box img{
    width: 100%;
    max-width: 80px;
    transition: all 0.4s ease-in-out;
}

.approach-item.active .icon-box img,
.approach-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.approach-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.approach-item-content p{
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.approach-item.active .approach-item-content h3,
.approach-item:hover .approach-item-content h3,
.approach-item.active .approach-item-content p,
.approach-item:hover .approach-item-content p{
    color: var(--white-color);
}

.our-philosophy{
    padding: 100px 0;
}

.philosophy-body h3{
    font-size: 20px;
    line-height: 1.4em;
    color: var(--accent-color);
}

.philosophy-btn{
    margin-top: 40px;
}

.philosophy-image{
    margin-left: 20px;
}

.philosophy-image figure{
    display: block;
}

.philosophy-image img{
    width: 100%;
    aspect-ratio: 1 / 0.96;
    object-fit: cover;
}

.our-product-benefits.philosophy-item-list{
    border-top: 1px solid var(--divider-color);
    margin-top: 80px;
    padding-top: 80px;
}

.our-excellence{
    padding: 100px 0;
}

.excellence-image{
    margin-right: 15px;
}

.excellence-image figure{
    display: block;
    border-radius: 20px;
}

.excellence-image img{
    width: 100%;
    aspect-ratio: 1 / 0.913;
    object-fit: cover;
    border-radius: 20px;
}

.excellence-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.excellence-image_auto img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.excellence-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.excellence-item h3{
    position: relative;
    font-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
}

.excellence-item h3::before{
    content: '\f058';
    font-family: 'FontAwesome';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.excellence-item p{
    margin: 0;
}

/************************************/
/*** 	 20. 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(--secondary-color);
    color: var(--accent-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);
}

/************************************/
/*** 	  21. Blog Single css 	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-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(--white-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;
    text-transform: uppercase;
	line-height: 1.1em;
	margin: 0 0 0.42em;
}

.post-entry h1{
	font-size: 80px;
}

.post-entry h2{
	font-size: 48px;
}

.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.5em;
	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-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(--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;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 22. Features Page css 	  ***/
/************************************/

.page-features{
    padding: 100px 0 70px;
}

.features-item{
    position: relative;
    background-color: var(--secondary-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(--accent-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{
    background-color: var(--white-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.features-item .icon-box img{
    width: 100%;
    max-width: 45px;
}

.features-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.features-item-content p{
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.features-item.active .features-item-content h3,
.features-item:hover .features-item-content h3,
.features-item.active .features-item-content p,
.features-item:hover .features-item-content p{
    color: var(--white-color);
}

/************************************/
/***   23. Testimonials Page css  ***/
/************************************/

.page-testimonials{
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
    height: calc(100% - 30px);
    background: var(--secondary-color);
    margin-bottom: 30px;
}

.page-testimonials .testimonial-item:hover::before{
    top: 0;
    border-radius: 0;
}

.page-testimonials .testimonial-item .author-content h3{
    color: var(--primary-color);
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p{
    color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3,
.page-testimonials .testimonial-item .author-content p{
    transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .testimonial-rating i{
    transition: all 0.3s ease-in-out;
}

.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .author-content p,
.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item:hover .testimonial-rating i{
    color: var(--white-color);
}

.page-testimonials .testimonial-item:hover .testimonial-quote img{
    filter: brightness(0) invert(1);
}

/************************************/
/*** 	   24. FAQs Page css 	  ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-catagery-list{
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    box-shadow: 0px 0px 60px 0px #0000000D;
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 30px;
	overflow: hidden;
}

.page-catagery-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--primary-color);
}

.page-catagery-list ul li a::before{
    content: '\f061';
	font-family: 'FontAwesome';
	font-size: 12px;
    position: absolute;
    top: 50%;
    right: 0;
	width: 24px;
	height: 24px;
	background-color: var(--text-color);
    color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    transform: translate(0px, -50%);
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
	background-color: var(--primary-color);
}

.sidebar-cta-box{
    position: relative;
    background: url('../images/sidebar-cta-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
}

.sidebar-cta-box:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;    
    background: var(--primary-color);
    opacity: 90%;
}

.sidebar-cta-content,
.sidebar-cta-contact{
    position: relative;
    z-index: 1;
}

.sidebar-cta-content{
    margin-bottom: 40px;
}

.sidebar-cta-content img{
    width: 100%;
    max-width: 230px;
    margin-bottom: 40px;
}

.sidebar-cta-content h3{
    color: var(--white-color);
    font-size: 20px;
	line-height: 1.3em;
}

.sidebar-cta-contact-item{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.sidebar-cta-contact-item:last-child{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.sidebar-cta-contact-item p{
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.sidebar-cta-contact-item h3{
    color: var(--accent-color);
    font-size: 20px;
}

.sidebar-cta-contact-item h3 a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item h3 a:hover{
    color: var(--white-color);
}

.page-faqs-catagery .page-faq-accordion{
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/***   25. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
    padding: 50px 0;
}

.contact-info-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
	/* margin-bottom: 100px; */
	margin-bottom: 50px;
    padding: 50px;
	border: 5px solid #8BC34A
}


/* START contact info */

.contact-info-item-full{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
	padding-bottom: 30px;
}



.contact-info-item-full:nth-child(3n + 3):after{
    display: none;
}

.contact-info-item-full .icon-box{
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item-full .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item-full:hover .icon-box::before{
    transform: scale(1);
}

.contact-info-item-full .icon-box img{
    position: relative;
    width: 100%;
    max-width: 36px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item-full:hover .icon-box img{
    filter: brightness(0) invert(1);
}

/* END contact info */

.contact-info-item{
    position: relative;
    width: calc(33.33% - 33.33px);
    display: flex;
    align-items: center;
}

.contact-info-item:after{
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 80%;
}

.contact-info-item:nth-child(3n + 3):after{
    display: none;
}

.contact-info-item .icon-box{
    position: relative;
    height: 80px;
    width: 80px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before{
    transform: scale(1);
}

.contact-info-item .icon-box img{
    position: relative;
    width: 100%;
    max-width: 36px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img{
    filter: brightness(0) invert(1);
}

.contact-info-content{
    width: calc(100% - 100px);
}

.contact-info-content p{
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-content h3{
    color: var(--accent-color);
    font-size: 20px;
}

.contact-info-content h3 a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-content h3 a:hover{
    color: var(--primary-color);
}

.contact-us-image{
    text-align: center;
    padding-right: 30px;
}

.contact-us-image img{
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: contain;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	box-shadow: 0px 0px 60px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 17px 20px;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map .container-fluid{
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    width: 100%;
    height: 600px;
}

/************************************/
/*** 	26. 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;
}

/************************************/
/*** 	 27. Responsive css 	  ***/
/************************************/

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 14px 42px 14px 20px;
	}
	
	.btn-default.border-btn{
		padding: 13px 41px 13px 19px;
	}

	.btn-default::before{
		font-size: 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{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 14px;
		padding-left: 10px;
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.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: 130px 0 40px;
	}

	.hero.hero-video{
		padding: 190px 0 100px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 190px 0 100px;
	}

	.hero.hero-video .hero-content{
		margin: 0;
	}
	
	.hero::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.hero::after{
		top: 15%;
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.hero-content{
		margin-bottom: 30px;
	}

	.hero.hero-video .hero-content .section-title p{
		max-width: 100%;
		margin-top: 15px;
	}

	.hero-list ul{
		gap: 15px;
	}

	.hero-list ul li{
		padding-left: 25px;
	}
	
	.hero-btn{
		margin-top: 40px;
	}

	.hero-image{
		width: 100%;
		max-width: 70%;
		margin: 0 auto;
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}

	.scrolling-ticker-box{
		--gap: 10px;
	}

	.scrolling-content span{
		font-size: 28px;
	}

	.scrolling-content span img{
		width: 22px;
		margin-right: 10px;
	}

	.about-us{
        padding: 50px 0;
    }

    .about-images{
		max-width: 80%;
        margin: 0 auto 30px;
    }

    .about-us-list ul li{
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .about-body-item{
        padding: 15px;
    }
	

    .about-us-footer{
        gap: 30px 40px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-contact-box .icon-box{
        margin-right: 10px;
    }

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-us::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.why-choose-us::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.why-choose-item-box-1,
	.why-choose-item-box-2{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;	
	}

	.why-choose-item-box-2 .why-choose-item{
		padding: 0;
	}

	.why-choose-item{
		width: calc(50% - 15px);
		padding-right: 0;
		margin-bottom: 0;
	}

	.why-choose-item::before{
		display: none;
	}

	.why-choose-item .icon-box{
		width: 100px;
		height: 100px;
		margin: 0 auto 20px;
	}

	.why-choose-item .icon-box img{
		max-width: 70px;
	}

	.why-choose-item-content h3{
		margin-bottom: 10px;
	}

	.why-choose-image{
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
		text-align: center;
	}

	.our-products{
		padding: 50px 0;
	}

	.product-image{
		margin-bottom: 15px;
	}

	.product-image img{
		aspect-ratio: 1 / 1.05;
	}

	.product-btn{
		margin-top: 30px;
	}

	.our-product-benefits{
        gap: 20px;
		margin-top: 50px;
    }
    
    .product-benefit-item{
        width: calc(25% - 15px);
        flex-direction: column;
        text-align: center;
    }

    .product-benefit-item .icon-box{
        width: 60px;
        height: 60px;
        margin: 0 0 15px;
    }

    .product-benefit-item .icon-box img{
        max-width: 36px;
    }

    .product-benefit-content{
        width: 100%;
    }

    .product-benefit-content h3{
        font-size: 18px;
    }

	.our-key-points{
		padding: 50px 0;
	}

	.our-key-points::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.our-key-points::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.key-points-content{
		margin-bottom: 30px;
	}

	.key-points-step-item{
		margin-bottom: 40px;
	}

	.key-points-steo-no{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.key-points-steo-no::after{
		left: 25px;
		bottom: -15px;
	}

	.key-points-step-content{
		width: calc(100% - 65px);
	}

	.key-points-step-content h3{
		margin-bottom: 10px;
	}

	.key-points-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do .section-title{
		margin-bottom: 30px;
	}

	.what-we-do-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.what-do-counter-item{
		margin-bottom: 30px;
	}

	.what-do-counter-item h2{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.section-footer-text{
		margin-top: 40px;
	}

	.intro-video{
        padding: 110px 0 40px;
    }

    .intro-video-box .video-play-button{
        margin-bottom: 110px;
    }

    .intro-video-item-box{
        padding-top: 40px;
        gap: 20px;
    }

    .intro-video-item{
        width: calc(25% - 15px);
    }

	.our-best-seller{
		padding: 50px 0;
	}

	.best-seller-image{
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}
	
	.seller-counter-box{
		max-width: 180px;
		padding: 15px;
	}

	.seller-counter-box h2{
		font-size: 36px;
		margin-bottom: 15px;
	}
	
	.seller-counter-box ul{
		margin-bottom: 10px;
	}

	.best-seller-body ul li{
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.best-seller-footer{
		gap: 20px 30px;
		margin-top: 30px;
	}

	.best-seller-price h2{
		font-size: 26px;
	}

	.cta-box{
        padding: 50px 0;
    }

    .cta-content{
        margin-bottom: 30px;
    }

    .cta-image{
        max-width: 55%;
        margin: 0 auto;
    }

	.our-faqs{
		padding: 50px 0;
	}

	.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;
		top: 14px;
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 45px 14px 14px;
	}

	.faq-image{
		margin: 30px auto 0;
		width: 100%;
		max-width: 70%;
	}

	.premium-products{
		padding: 50px 0 0;
	}

	.premium-products::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.premium-products::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.premium-product-content{
		max-width: 100%;
	}

	.premium-benefits{
		gap: 30px 40px;
		margin: 0;
	}

	.premium-benefit-item{
		width: calc(50% - 20px);
	}

	.premium-benefit-item .icon-box{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}

	.premium-benefit-item .icon-box img{
		max-width: 35px;
	}

	.premium-benefit-item-content{
		width: calc(100% - 75px);
	}

	.premium-product-image{
		padding-top: 80px;
	}

	.premium-product-image img{
		max-width: 580px;
		margin-bottom: -170px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.customer-img{
		width: 52px;
		height: 52px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonial-author,
	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-btn{
		margin-top: 40px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body{
		padding: 20px;
	}

	.main-footer{
		padding: 50px 0 0;
	}

	.main-footer::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.main-footer::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

	.footer-logo{
		margin-bottom: 20px;
	}

	.footer-logo img{
		max-width: 191px;
	}

	.about-footer{
		margin: 0 0 30px 0;
	}

	.footer-links h3,
	.footer-contact-item{
		margin-bottom: 20px;
	}

	.footer-contact-item-content h3{
		margin-bottom: 0;
	}

	.footer-cta-box{
		justify-content: center;
		padding-top: 30px;
		margin-top: 40px;
	}

	.footer-newsletter-form{
		display: block;
	}
	
	.footer-newsletter-form form{
		width: 100%;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted{
		padding: 14px;
	}

	.footer-social-links ul li{
		margin-right: 10px;
	}

	.footer-copyright-text{
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header{
        padding: 160px 0 70px;
    }

	.page-header::before{
		left: -55px;
		width: 120px;
		height: 120px;
		opacity: 20%;
	}
	
	.page-header::after{
		top: 33%;
		width: 80px;
		height: 80px;
		opacity: 20%;
	}

    .page-header-box h1{
        font-size: 50px;
    }

    .our-approach{
        padding: 50px 0 20px;
    }

	.our-approach::before{
		left: -90px;
		width: 200px;
		height: 230px;
		opacity: 20%;
	}

	.our-approach::after{
		width: 130px;
		height: 130px;
		opacity: 20%;
	}

    .approach-item{
        padding: 30px;
    }

    .approach-item .icon-box{
        margin-bottom: 30px;
    }

    .approach-item .icon-box img{
        max-width: 70px;
    }

    .our-philosophy{
        padding: 50px 0;
    }

    .philosophy-content{
        margin-bottom: 30px;
    }

    .philosophy-btn{
        margin-top: 30px;
    }

    .philosophy-image{
        width: 100%;
        max-width: 75%;
        margin: 0 auto;
    }

    .our-product-benefits.philosophy-item-list{
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .our-excellence{
        padding: 50px 0;
    }
    
    .excellence-image{
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .excellence-item{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .excellence-image img{
        aspect-ratio: 1 / 0.8;
    }

	.page-blog{
        padding: 50px 0;
    }

    .page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 50px 0;
    }
    
    .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.417em;
    }
    
    .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: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-features{
        padding: 50px 0 20px;
    }

    .features-item{
        padding: 30px;
    }
    
    .features-item .icon-box{
        height: 60px;
        width: 60px;
        margin-bottom: 30px;
    }

    .features-item .icon-box img{
        max-width: 36px;
    }

	.page-testimonials{
        padding: 50px 0 20px;
    }

	.page-faqs{
        padding: 50px 0;
    }

    .page-single-sidebar{
        position: initial;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .page-catagery-list{
        margin-bottom: 30px;
    }

    .page-catagery-list ul li a::before{
        width: 20px;
        height: 20px;
    }

    .sidebar-cta-box{
        padding: 30px;
    }

    .sidebar-cta-content{
        margin-bottom: 30px;
    }

    .sidebar-cta-content img{
        margin-bottom: 30px;
    }

    .page-faqs-catagery .page-faq-accordion{
        margin-bottom: 40px;
    }

	.page-contact-us{
        padding: 50px 0;
    }

    .contact-info-box{
        padding: 30px;
		margin-bottom: 50px;
    }

    .contact-info-item{
        width: calc(50% - 25px);
    }

    .contact-info-item:nth-child(3n + 3):after{
        display: block;
    }

    .contact-info-item:nth-child(2n + 2):after,
    .contact-info-item:last-child:after{
        display: none;
    }

    .contact-info-item .icon-box{
        height: 60px;
        width: 60px;
        margin-right: 10px;
    }

    .contact-info-item .icon-box img{
        max-width: 30px;
    }

    .contact-info-content{
        width: calc(100% - 70px);
    }

    .contact-info-content h3{
        font-size: 18px;
    }

    .contact-us-image{
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-us-image img{
        max-width: 75%;
    }

    .contact-form .form-control{
        padding: 12px 15px;
    }

    .google-map-iframe,
    .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: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-title-content{
        margin-top: 10px;
	}

	.hero.hero-video .hero-content{
		text-align: left;
	}

	.hero.hero-video .hero-content .section-title p{
		font-size: 14px;
	}

	.hero.hero-video .hero-content .hero-list ul,
	.hero.hero-video .hero-content .hero-btn{
		justify-content: left;
	}

	.hero-btn{
		margin-top: 30px;
		gap: 20px;
	}

	.hero-image{
        max-width: 80%;
    }

	.scrolling-content span{
        font-size: 22px;
    }

	.about-us-body{
		gap: 20px;
	}

    .about-us-list,
    .about-body-item{
        width: 100%;
    }

    .about-body-item .icon-box{
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img{
        max-width: 32px;
    }

    .about-body-item-title{
        width: calc(100% - 65px);
    }

    .about-body-item-title h3,
    .about-contact-box-content h3{
        font-size: 18px;
    }

    .about-us-footer{
        gap: 20px;
    }

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item .icon-box{
        width: 90px;
        height: 90px;
    }

	.why-choose-item .icon-box img{
        max-width: 60px;
    }

	.why-choose-item-content h3{
		font-size: 18px;
	}

	.product-title h3{
		font-size: 18px;
	}

	.our-product-benefits{
        margin-top: 30px;
    }

	.product-benefit-item{
        width: calc(50% - 10px);
    }

    .product-benefit-content h3{
        font-size: 16px;
    }

	.key-points-step-item{
        margin-bottom: 30px;
    }

	.key-points-steo-no::after{
		height: 110%;
	}

	.key-points-steo-no h3,
	.key-points-step-content h3{
		font-size: 18px;
	}

	.what-we-do-image{
        margin: 0 0 30px;
    }

	.what-we-do-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.what-do-counter-item{
        margin-bottom: 20px;
    }

	.what-do-counter-item h2{
        font-size: 26px;
        margin-bottom: 5px;
    }

	.intro-video-item{
        width: calc(50% - 10px);
    }

    .intro-video-item img{
        max-width: 26px;
        margin-right: 5px;
    }

	.best-seller-image{
        max-width: 100%;
    }

	.seller-counter-box{
		top: 70px;
		right: 0px;
        max-width: 160px;
        padding: 10px;
		border-radius: 14px;
    }

	.seller-counter-box h2{
        font-size: 26px;
    }

	.seller-counter-box p{
		font-size: 14px;
	}

	.best-seller-price{
		gap: 10px;
	}

	.best-seller-price h2{
		font-size: 22px;
	}

	.best-seller-price h3{
		font-size: 16px;
	}

	.cta-image{
        max-width: 80%;
    }

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body{
        padding: 14px;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faq-image{
        max-width: 100%;
    }

	.premium-benefits{
        gap: 20px;
    }

	.premium-benefit-item{
        width: 100%;
    }

	.premium-benefit-item-content h3{
		font-size: 18px;
	}

	.premium-product-image{
        padding-top: 50px;
    }

	.premium-product-image img{
        max-width: 100%;
        margin-bottom: -100px;
    }

	.review-image-box{
		gap: 15px;
	}

	.customer-img{
		width: 42px;
		height: 42px;
	}

	.review-content p{
		font-size: 14px;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
        margin-top: 20px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3,
	.footer-contact-item-content h3,
	.footer-newsletter-form h3{
		font-size: 18px;
	}

	.footer-cta-box{
        /* padding: 20px 0; */
        margin-top: 0;
    }

	.footer-newsletter-form{
		width: 100%;
		margin-bottom: 0;
    }

	.footer-newsletter-form form{
		width: 100%;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 10px 15px;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted{
        padding: 10px;
        font-size: 14px;
    }

	.footer-social-links{
		width: 100%;
		text-align: left;
	}

	.footer-copyright-text{
        padding: 15px 0;
    }

	.page-header-box h1{
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item{
        font-size: 14px;
    }

    .approach-item{
        padding: 20px;
    }

    .approach-item .icon-box{
        margin-bottom: 20px;
    }

    .approach-item .icon-box img{
        max-width: 60px;
    }

    .approach-item-content h3{
        font-size: 18px;
    }

    .philosophy-body h3{
        font-size: 18px;
    }

    .philosophy-image{
        max-width: 100%;
    }

    .our-product-benefits.philosophy-item-list{
        margin-top: 30px;
        padding-top: 30px;
    }

    .excellence-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .excellence-item h3{
        font-size: 18px;
		padding-left: 25px;
        margin-bottom: 10px;
    }

    .excellence-item h3::before{
        font-size: 18px;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .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: 26px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.features-item{
        padding: 20px;
    }

	.features-item .icon-box{
        margin-bottom: 20px;
    }

    .features-item-content h3{
        font-size: 18px;
		margin-bottom: 10px;
    }

	.page-catagery-list{
        padding: 20px;
    }

    .page-catagery-list ul li{
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .sidebar-cta-box{
        padding: 20px;
    }

	.sidebar-cta-content img{
		max-width: 190px;
        margin-bottom: 20px;
    }

    .sidebar-cta-content h3{
        font-size: 18px;
    }

    .sidebar-cta-contact-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-contact-item h3{
        font-size: 18px;
    }

	.contact-info-box{
        padding: 20px;
    }

    .contact-info-item{
        width: 100%;
    }

    .contact-info-item:after{
        height: 1px;
        width: 100%;
        top: auto;
        bottom: -15px;
        left: 0;
        right: 0;
    }

    .contact-info-item:nth-child(2n + 2):after{
        display: block;
    }

    .contact-us-image img{
        max-width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe{
        height: 350px;
    }
}