/* ----------------------------------------------------------------------------------------
* 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: #cc7821;
	--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: 15px;
	padding-left: 15px;
	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: #cc7821;
	border-radius: 100px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	border: none;
	padding: 17px 65px 17px 27px;
	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: 800;
	line-height: 1.1em;
	text-transform: uppercase;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 48px;
	font-weight: 800;
	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/inner-banner.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: #1c4e1e;
}

.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-width {
	width: 100%;
}

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;
	padding: 0px 110px;
	background: #2c6c18;
}

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: 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand {
	width: 211px;
	position: absolute;
	top: 0;
	padding: 9px 11px;
	background: #fff;
	/* transform: translateY(-50%); */
	border-radius: 0px 0px 20px 20px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
	justify-content: center;
	display: flex;
	padding-left: 148px;
}

.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: 18px;
	font-weight: 500;
	/* line-height: 43px; */
	padding: 33px 12px;
	color: #ffffff;
	/* text-transform: capitalize; */
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
}

.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: 251px;
	border-radius: 0px 0px 10px 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #ffffff;
	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: 0px 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: #303030;
	padding: 7px 20px !important;
	transition: all 0.3s ease-in-out;
	font-size: 16px;
	text-transform: inherit;
	line-height: 25px;
	/* border-bottom: 1px solid #ebebeb; */
	border: 1px solid #f0f0f0ba;
}

.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: 288px 0 105px;
    background: url(../images/new-img.png);
    background-position: center 40px;
    background-size: contain;
}

/* .hero::before {
	content: '';
	display: block;
	position: absolute;
	left: -70px;
	bottom: 0;
	background: url('../images/section-bg-1.png') no-repeat;
	background-position: center center;
	background-size: contain;
	width: 250px;
	height: 300px;
	z-index: 2;
	animation: leafBobbing 5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes leafBobbing {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-30px);
	}

	100% {
		transform: translateY(0px);
	}
}

.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: contain;
	width: 180px;
	height: 180px;
	z-index: 1;
	animation: leafFloat 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes leafFloat {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(5deg);
	}

	100% {
		transform: translateY(0px) rotate(0deg);
	}
}

@keyframes leafSwing {
	0% {
		transform: rotate(0deg) translateY(0);
	}

	25% {
		transform: rotate(3deg) translateY(-5px);
	}

	50% {
		transform: rotate(-3deg) translateY(-10px);
	}

	75% {
		transform: rotate(2deg) translateY(-5px);
	}

	100% {
		transform: rotate(0deg) translateY(0);
	}
} */


.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: #000000;
	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: #ffffff;
	padding: 16px 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: 26px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	color: #407c2f;
}

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

.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;
	z-index: 10;
}

.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;
	z-index: -1;
}

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

/************************************/
/***   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;
	padding: 20px;
}

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


/************************************/
/*** 	 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: 230px 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);
	content: var(--bs-breadcrumb-divider,"/");
}

.our-approach {
	position: relative;
	background-color: #EDF5EA;
	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: 25px;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2e6115;
	border-radius: 50%;
}

.approach-item .icon-box i {
	font-size: 25px;
	color: #fff;
}

.approach-item.active .icon-box i,
.approach-item:hover .icon-box i {
	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: 40px;
	padding-bottom: 40px;
}

.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: 35px;
}

.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: 35px;
	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: 100px 0;
}

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

.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: 10%;
}

.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-group {
	margin-bottom: 15px;
}

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

.contact-form textarea {
	height: 100px !important;
}

.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;
		background: none;
	}

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


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



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

.myHeroSwiper {
	width: 100%;
	height: auto;
	padding-top: 80px;
	padding-bottom: 80px;
}

.swiper-slide-active .hero-content h1 {
	animation: fadeInUp 0.8s both 0.3s;
}

.swiper-slide-active .hero-list {
	animation: fadeInUp 0.8s both 0.5s;
}

.swiper-slide-active .hero-btn {
	animation: fadeInUp 0.8s both 0.7s;
}

.swiper-slide-active .hero-image img {
	animation: zoomIn 1s both 0.4s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Swiper Pagination Main Container */
.myHeroSwiper .swiper-pagination {
	bottom: 0 !important;
	text-align: left;
	padding-left: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
}

/* Base Style for Dots */
.myHeroSwiper .swiper-pagination-bullet {
	width: 17px;
	height: 17px;
	background: #6b9644;
	border: 2px solid #ffffff;
	/* Shada border */
	opacity: 1;
	transition: all 0.3s ease;
}

.myHeroSwiper .swiper-pagination-bullet-active {
	width: 35px;
	border-radius: 20px;
	background: #ff8c00 !important;
	border-color: #ff8c00 !important;
}

/* Hover Effect */
.myHeroSwiper .swiper-pagination-bullet:hover {
	background: rgba(255, 255, 255, 0.5);
}


/* slick slider css start here */
.intro {
	height: 100vh;
	width: 100%;
	background: #999
}

.container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: 100%;
	color: #333;
	max-width: 1440px;
	overflow: hidden;
	padding: 0 40px;
}

.slick-list,
.slick-track {
	height: 100vh
}

.hero .slick-dotted.slick-slider {
	margin: 0
}

.hero .slides {
	width: 100%;
	height: 100vh
}

.home .slides .slide {
	background: #fff;
}

.slides .slide {
	color: #419be0;
	width: 100%;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	border: 0;
	-ms-flex-align: center;
	align-items: center;
	font-size: 40px
}

.slick-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left
}

.slick-dots li {
	display: block
}

.slick-next {
	right: unset
}

/*--------------------------------------------------------------
  ##  Why use
  --------------------------------------------------------------*/
.layer_two {
	right: 0;
	position: absolute;
}

.layer_one {
	position: absolute;
	left: 0;
}

.why_use_area {
	position: relative;
	background: #fff;
	padding: 120px 0 120px;
	text-align: center;
	font-family: "Roboto", sans-serif;
}

.why_use_area p,
.why_use_area h1,
.why_use_area h2,
.why_use_area h3,
.why_use_area h4,
.why_use_area h5,
.why_use_area h6,
.why_use_area a {
	font-family: "Roboto", sans-serif;
}

.section_title_two {
	margin-bottom: 115px;
	text-align: center;
}

.section_title_two h2 {
	font-size: 36px;
	color: #3734f0;
	font-weight: 700;
	line-height: 28px;
	padding-bottom: 20px;
	margin-bottom: 0;
}

.section_title_two p {
	font-size: 20px;
	color: #4f4f4f;
	line-height: 30px;
	margin-bottom: 0;
	letter-spacing: 0.25px;
}

.section_title_two img {
	margin-bottom: 45px;
}

.why_use_slider .owl-stage-outer {
	padding: 100px 0;
}

.why_use_slider .owl-item.active.center {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	z-index: 9;
}

.why_use_slider .owl-item.active.medium {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	z-index: 7;
}

.why_use_slider .owl-item.active.small {
	-webkit-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	z-index: 5;
}

.carousel {
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: auto;
	border: none;
	overflow: visible;
}

.carousel .slides {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
	position: relative;
	overflow: visible;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.carousel .slides .slideItem {
	position: absolute;
	cursor: pointer;
	overflow: visible;
	padding: 0;
	margin: 0;
	border: none;
}

.carousel .slides .slideItem a {
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	position: relative;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.carousel .slides .slideItem img {
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	height: 100%;
}

.carousel_screenshot {
	display: none;
}

.modern-minimal-section {
	padding: 20px 0;
	/* padding-bottom: 0px; */
}

.minimal-wrapper {
	display: flex;
	align-items: center;
	gap: 1px;
	flex-wrap: wrap;
	background: #0000000f;
	border-radius: 10px;
}

.minimal-item {
	display: flex;
	align-items: center;
	gap: 15px;
	/* padding: 10px; */
	transition: 0.3s;
	flex-direction: column;
	justify-content: center;
	width: 32.33%;
}

/* Icon style */
.icon-wrap {
	width: 70px;
	height: 70px;
	background: #fff;
	border-radius: 50%;
	/* Rounded corner, not circle */
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.icon-wrap i {
	color: #c86f1c;
	font-size: 36px;
}


.icon-wrap.green-variant i {
	color: #c86f1c;
}

/* Text style */
.minimal-info span {
	display: block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2px;
	display: none;
}

.minimal-info h5 {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}

/* Vertical Divider (Optional) */
.divider {
	width: 1px;
	height: 163px;
	background: rgba(255, 255, 255, 0.2);
}






.product_slider_sec{
	position: relative;
    padding: 250px 0 200px;
    background: url(../images/common-bg.png);
    background-position: center ;
    background-size: 100% 100%;
	background-repeat: no-repeat;
}
.product_slider_sec .swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.product_slider_sec .poster {
    width: 100%;
    max-width: 408px;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-cream);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    margin: 0 auto;
}

.product_slider_sec .logo-area {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 80px;
    z-index: 10;
}

.product_slider_sec .logo-area img {
    width: 100%;
    height: auto;
}

.product_slider_sec .color-box {
    width: 70%;
    padding: 30px 25px;
    color: white;
    border-bottom-right-radius: 80px;
    position: relative;
    z-index: 2;
}

.product_slider_sec .bg-green {
    background-color: var(--dark-green);
}

.product_slider_sec .bg-blue {
    background-color: var(--dark-blue);
}

.product_slider_sec .bg-orange {
    background-color: #F3A41E;
}
.product_slider_sec .bg-red {
    background-color: #b32625;
}


.product_slider_sec .color-box h1 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFF;
}

.product_slider_sec .list-items {
    list-style: none;
    padding: 0;
}

.product_slider_sec .list-items li {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product_slider_sec .list-items li::before {
    content: '>';
    margin-right: 8px;
    font-weight: bold;
}

.product_slider_sec .product-bottle {
    position: absolute;
    right: -18px;
    bottom: 20px;
    width: 310px;
    z-index: 5;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.2));
}

.product_slider_sec .how-to-use {
    position: absolute;
    bottom: 30px;
    left: 25px;
    width: 150px;
}

.product_slider_sec .how-to-use h2 {
    font-size: 18px;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
}

.product_slider_sec .how-to-use h2 span {
    font-size: 30px;
}

.product_slider_sec .usage-list {
    list-style: none;
    padding: 0;
}

.product_slider_sec .usage-list li {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product_slider_sec .usage-list li::before {
    content: '>';
    margin-right: 8px;
    font-weight: bold;
}

.product_slider_sec .swiper-button-next,
.product_slider_sec .swiper-button-prev {
    color: var(--dark-green);
	display: none;
}

.product_slider_sec .swiper-pagination-bullet-active {
    background: var(--dark-green);
	width: 20px;
	border-radius: 5px;
}

@media (max-width: 991px) {
	.product_slider_sec {
		position: relative;
		padding: 150px 0 150px;
		background: url(../images/common-bg.png);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	
}



/* Mobile responsive */
@media (max-width: 768px) {
	.divider {
		display: none;
	}

	.minimal-wrapper {
		justify-content: center;
	}
}

.key-points-item-box-1 .icon-box i {
	color: #fff;
	font-size: 31px;
}

.key-points-item-box-2 .icon-box i {
	color: #fff;
	font-size: 31px;
}

.premium-benefit-item .icon-box i {
	color: #fff;
	font-size: 31px;
}

.premium-benefit-item-content p {
	margin-bottom: 0px;
}

/* Footer Main */
.main-footer {
	background-image: url(../images/footer-bg.png);
	color: #fff;
	padding: 70px 0 0;
	font-size: 15px;
	background-position: center;
	background-size: cover;
}

/* Logo */
.footer-logo {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	width: 56%;
	padding: 10px;
	background: #fff;
	border-radius: 16px;
}

/* Titles */
.footer-links h3,
.footer-contact h3 {
	font-size: 19px;
	margin-bottom: 24px;
	position: relative;
	color: #fff;
	text-transform: uppercase;
}

.footer-links h3::after,
.footer-contact h3::after {
	content: "";
	width: 35px;
	height: 2px;
	background: #ffffff;
	position: absolute;
	left: 0;
	bottom: -8px;
}

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

.footer-links ul li {
	margin-bottom: 13px;
}

/* Links */
.footer-links ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 16px;
}

/* Icon */
.footer-links ul li a i {
	margin-right: 8px;
	color: #ffffff;
	transition: transform 0.3s ease;
}

/* Hover Effect */
.footer-links ul li a:hover {
	color: #ffffff;
	transform: translateX(6px);
}

.footer-links ul li a:hover i {
	transform: rotate(90deg);
}

/* Contact */
.footer-contact p {
	margin-bottom: 12px;
	color: #ffffff;
}
.footer-contact a{
	color: #ffffff;
}

.footer-contact i {
	margin-right: 8px;
	color: #ffffff;
}

/* Bottom */
.footer-bottom {
	text-align: center;
	padding: 12px 0;
	margin-top: 27px;
	background: rgb(20 88 23);
	font-size: 14px;
}

.footer-bottom p {
	margin-bottom: 0px;
	font-size: 16px;
}

.floating-contact {
	position: fixed;
	right: 20px;
	bottom: 263px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.floating-contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	animation: pulse 2s infinite;
	transition: transform 0.3s ease;
}

.floating-contact a:hover {
	transform: scale(1.1);
}

.call-button {
	background-color: #0578af;
}

.whatsapp-button {
	background-color: #25d366;
}

.download-brochure {
	background-color: #ff9800;
}

/* New orange color for brochure */

.floating-contact i {
	font-size: 22px;
	line-height: 0;
}

/* Pulse animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.footer-about p {
	color: #fff;
}

.floating-contact {
	position: fixed;
	right: 20px;
	bottom: 100px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.floating-contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	animation: pulse 2s infinite;
	transition: transform 0.3s ease;
}

.floating-contact a:hover {
	transform: scale(1.1);
}

.call-button {
	background-color: #006beb;
}

.whatsapp-button {
	background-color: #25d366;
}

/* Pulse animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/* Responsive fix */
@media (max-width: 480px) {
	.floating-contact {
		right: 15px;
		bottom: 105px;
	}

	.floating-contact a {
		width: 48px;
		height: 48px;
	}

	.floating-contact i {
		font-size: 20px;
	}
}

.floating-contact i {
	font-size: 20px;
}
.our-commitment{
	background: var(--white-color) url(../images/section-bg-shape-1.png) no-repeat;
    background-position: left -40px bottom;
    background-size: auto;
	padding: 100px 0;
}

.our-commitment-list{
	margin-bottom: 40px;
}

.our-commitment-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.our-commitment-list ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

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

.our-commitment-list ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.our-commitment-body{
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
}

.commitment-body-item{
	width: 50%;
	background-color: var(--accent-color);
	padding: 30px;
}

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

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

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

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

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

.commitment-body-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
}

.commitment-body-item:nth-child(even){
	background-color: var(--primary-color);
}

.commitment-body-item:nth-child(even) .icon-box{
	background-color: var(--accent-color);
}

.commitment-image{
	position: relative;
	padding: 50px 40px 30px 100px;
	margin-left: 30px;
}

.commitment-img-1 figure,
.commitment-img-2 figure{
	display: block;
}

.commitment-img-1 img,
.commitment-img-2 img{
	width: 100%;
	object-fit: cover;
}

.commitment-img-1 img{
	aspect-ratio: 1 / 1.445;
	border-radius: 20px;
}

.commitment-img-2{
	max-width: 260px;
	position: absolute;
	bottom: 0;
	left: 0;
	/* border: 10px solid var(--white-color); */
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
}

.commitment-img-2 img{
	aspect-ratio: 1 / 1.563;
}
	
.commitment-quality-circle{
	position: absolute;
	top: 0;
	right: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	z-index: 1;
}

.commitment-quality-circle img{
	width: 100%;
	max-width: 180px;
	animation: infiniterotate 20s infinite linear;
}
.our-core-value{
	position: relative;
	background-image: url(../images/section-bg-shape-2.png);
    background-repeat: no-repeat;
    background-position: right -40px bottom;
    background-size: auto;
	padding: 100px 0;
	background-color: #11341C;
}

.our-core-value::before{
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 235px;
    height: 200px;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
}

.our-core-value .container{
	position: relative;
	z-index: 1;
}

.core-value-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.core-value-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;	
	overflow: hidden;
}

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

.core-value-item:hover:before{
	border-radius: 0;
	height: 100%;
}

.core-value-item .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	z-index: 1;
}

.core-value-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
}

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

.core-value-item .icon-box img{
	position: relative;
	max-width: 35px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.core-value-item .icon-box img{
	filter: brightness(1) invert(1);
}

.core-value-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.core-value-item-content{
	position: relative;
	z-index: 1;
}

.core-value-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

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

.core-value-item-content ul{
	margin: 25px 0 0 0;
	padding: 0;
	list-style: none;
}

.core-value-item-content ul li{
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.core-value-item-content ul li:last-child{
	margin-bottom: 0;
}

.core-value-item-content ul li::before{
	content: '\f058';
    font-family: 'FontAwesome';
	position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.core-value-item:hover .core-value-item-content h3,
.core-value-item:hover .core-value-item-content p,
.core-value-item:hover .core-value-item-content ul li,
.core-value-item:hover .core-value-item-content ul li:before{
	color: var(--white-color);
}

.core-value-image{
	height: 100%;
}

.core-value-image figure{
	display: block;
	border-radius: 20px;
	height: 100%;
}

.core-value-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.526;
	object-fit: cover;
	border-radius: 20px;
}

/* ==========================
   Sticky Sidebar
========================== */

.slide-bar{
    position: sticky;
    position: -webkit-sticky;
    top: 120px;
}
/* Parent containers me overflow remove */
.page-single-post,
.page-single-post .container,
.page-single-post .row,
.col-md-4{
    overflow: visible !important;
}
/* Sidebar Cards */
.more-product,
.info-box,
.inqury-info{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* More Products */
.more-product h3,
.inqury-info h3{
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.more-product h3::after,
.inqury-info h3::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #4caf50;
    border-radius: 30px;
}

.more-product ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.more-product ul li{
    margin-bottom: 12px;
}

.more-product ul li a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f7fbf7;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    transition: all .3s ease;
    border-left: 4px solid transparent;
}

.more-product ul li a:hover{
    background: #4caf50;
    color: #fff;
    transform: translateX(5px);
    border-left-color: #2e7d32;
}

.more-product ul li a i{
    color: #4caf50;
}

.more-product ul li a:hover i{
    color: #fff;
}

/* Image Box */
.info-box{
    padding: 15px;
}

.info-box img{
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Contact Box */
.inqury-info{
    text-align: center;
    background: #2c6c18;
    color: #fff;
}

.inqury-info img{
    width: 50%;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.inqury-info h3{
    color: #fff;
}

.inqury-info h3::after{
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
}

.inqury-info a{
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 12px;
    transition: all .3s ease;
}

.inqury-info a:hover{
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.inqury-info a:first-of-type{
    font-weight: 700;
    font-size: 22px;
}

/* Mobile */
@media (max-width: 991px){
    .slide-bar{
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}
/************************************/
/***  	23. Contact Us Page css   ***/
/************************************/

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

.contact-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 100px;
}

.contact-info-item{
	position: relative;
	width: calc(33.33% - 20px);
	border-radius: 20px;
	overflow: hidden;
}

.contact-info-image figure{
	display: block;
}

.contact-info-image figure:before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 42px;
    background: linear-gradient(180deg, rgba(10, 44, 15, 0) 48.11%, rgba(10, 44, 15, 0.9) 92.34%);
    z-index: 1;
	/* background-image: url(../images/context-img.png);
	filter: brightness(0) invert(1); */
}

.contact-info-image img{
	width: 100%;
    aspect-ratio: 1 / 0.546;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-image img{
	transform: scale(1.1);
}

.contact-info-content{
	position: absolute;
	right: 30px;
	/* bottom: 30px; */
	left: 30px;
	display: flex;
	/* align-items: center; */
	z-index: 1;
}

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

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

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

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

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

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

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

.contact-info-body p{
	color: var(--white-color);
	margin: 0;
}

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

.contact-info-body p a:hover{
	color: var(--accent-color);
}

.contact-form-box{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--white-color);
	border: 5px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.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 #11341c1c;
	border-radius: 10px;
	padding: 15px 20px;
	box-shadow: none;
	outline: none;
}

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

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.page-contact-us{
		padding: 50px 0;
	}

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

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

	.contact-info-content{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

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

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

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

}
@media (max-width: 767px){
	.contact-now-box-content p{
		font-size: 14px;
	}

	.contact-now-box .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.contact-now-box .icon-box i{
		font-size: 20px;
	}

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


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

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

	.contact-us-form{
        padding: 20px;
    }

	.google-map-iframe iframe{
		height: 350px;
	}
}
.modal-content{
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.modal-header{
    background: linear-gradient(135deg, #16360c, #2d6a1f);
    padding: 25px 30px;
    border: none;
    position: relative;
}

.modal-header-logo{
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-header-logo img{
    width: 150px;
    height: 100px;
    object-fit: contain;
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.modal-heading h3{
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-heading p{
    margin: 5px 0 0;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.modal-header .btn-close{
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
}

.modal-body{
    padding: 35px;
}

.form-control{
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 18px;
}


#contactModal .form-group {
	margin-bottom: 20px;
}