:root {
	--primary-color: #222629;
	--secondary-color: #F8F8F8;
	--text-color: #707070;
	/* --accent-color: #E01C08; */
	--accent-color: #C29842;
	--accent-secondary-color: #9C7720;
	/* --accent-secondary-color: #B11101; */
	--white-color: #FFFFFF;
	--divider-color: #EEEEEE;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Barlow", sans-serif;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.5em;
}

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;
}

::-webkit-scrollbar-track {
	background-color: var(--white-color);
	border-left: 1px solid var(--white-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
}

::selection {
	color: var(--primary-color);
	background-color: var(--dark-divider-color);
	filter: invert(1);
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.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;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	border: none;
	padding: 17px 54px 17px 25px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background-position: right center;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-25px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-22px, -50%);
}

.btn-default.btn-highlighted {
	background: var(--white-color);
	color: var(--primary-color);
	transition: all 0.5s ease-in-out;
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
}

.btn-default.btn-highlighted:hover:before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default.btn-highlighted:hover:after {
	width: 100%;
	left: 0;
	right: auto;
}

.readmore-btn {
	position: relative;
	color: var(--accent-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 40px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 30px;
	height: 30px;
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::before {
	background-color: var(--primary-color);
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--primary-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	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(--white-color) transparent var(--white-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-row .section-title.section-title-center {
	width: 100%;
	max-width: 640px;
	text-align: center;
	margin: 0 auto;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 34px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 18px;
}

.section-title h1 {
	font-size: 54px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.section-title h1:hover span,
.section-title h2:hover span {
	background-position: right center;
}

.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: 20px;
}

.dark-section {
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
}

.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1,
.dark-section .section-title p {
	color: var(--white-color);
}

.dark-section .section-title h2 span,
.dark-section .section-title h1 span {
	-webkit-text-fill-color: var(--white-color);
}

.dark-section .section-title h3::before {
	filter: brightness(0) invert(1);
}

.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;
}

/* header.main-header {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	background: var(--white-color);
	border-radius: 30px;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	width: 100%;
	max-width: 1270px;
	margin: 0 auto;
}

.navbar {
	padding: 20px 10px;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand .logo {
	height: auto;
	width: 210px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 14px 20px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 1px;
}

.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: max-content;
	min-width: 260px;
	border-radius: 16px;
	position: absolute;
	left: 0;
	top: 150%;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
} */

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	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);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 20px;
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
	background-color: #fafafa;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	/* padding: 8px 20px 8px 30px; */
	padding: 8px 20px;
	color: var(--primary-color);
}

.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);
}

.hero {
	position: relative;
	background: url('../images/hero-bg-2.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 250px 0 140px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 85%;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video::before {
	opacity: 60%;
}

.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-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 250px 0 140px;
}

.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: 85%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.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: 150px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--primary-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-content {
	position: relative;
	z-index: 2;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.hero-body .video-play-button {
	display: inline-flex;
	align-items: center;
}

.hero-body .video-play-button p {
	text-transform: capitalize;
	font-weight: 700;
	color: var(--white-color);
	margin: 0;
}

.hero-body .video-play-button a {
	height: 50px;
	width: 50px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.hero-body .video-play-button a i {
	font-size: 18px;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.hero-body .video-play-button:hover a i {
	background-position: right center;
}

.hero-image {
	position: relative;
	margin-bottom: -140px;
	z-index: 2;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
}

.best-services {
	padding: 50px 0;
}

.best-services-box {
	position: relative;
	margin-top: -150px;
	width: 100%;
	max-width: 745px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 5px 50px 2px #00000012;
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 40px;
	z-index: 2;
}

.best-service-item {
	position: relative;
	width: calc(33.33% - 20px);
}

.best-service-item::before {
	content: '';
	position: absolute;
	right: -15px;
	top: 0;
	bottom: 0;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.best-service-item:last-child:before,
.best-service-item:nth-child(3n + 3):before {
	display: none;
}

.best-service-item .icon-box {
	margin-bottom: 20px;
}

.best-service-item .icon-box img {
	max-width: 60px;
}

.best-service-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-us {
	padding: 50px 0 100px;
}

.about-us-images {
	display: flex;
	flex-wrap: wrap;
	margin-right: 20px;
}

.about-img-2,
.about-img-1 {
	width: 100%;
}

.about-img-1 {
	position: relative;
	padding-right: 130px;
}

.about-img-2 {
	max-width: 382px;
	margin: 0 auto;
	margin-right: 0;
	margin-top: -131px;
}

.about-img-2 figure,
.about-img-1 figure {
	display: block;
	border-radius: 30px;
}

.about-img-2 img,
.about-img-1 img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.about-img-1 figure img {
	aspect-ratio: 1 / 0.931;
}

.about-img-2 figure img {
	aspect-ratio: 1 / 1.032;
}

.company-experience-circle {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-100%, 50%);
	z-index: 2;
}

.company-experience-circle img {
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-experience-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 40px;
}

.about-experience-image {
	width: calc(40% - 20px);
}

.about-experience-image figure {
	display: block;
	border-radius: 30px;
}

.about-experience-image img {
	width: 100%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	border-radius: 30px;
}

.about-experience-item {
	width: calc(60% - 20px);
}

.about-experience-item .icon-box {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.about-experience-item:hover .icon-box {
	background-position: right center;
}

.about-experience-item .icon-box img {
	max-width: 34px;
}

.about-experience-content h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.about-us-body {
	background: var(--white-color);
	box-shadow: 0px 0px 50px 2px #00000008;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	margin-top: 40px;
}

.about-contact-box {
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-box:hover .icon-box {
	background-position: right center;
}

.about-contact-box .icon-box img {
	max-width: 34px;
}

.about-contact-box-content {
	width: calc(100% - 75px);
}

.about-contact-box-content p {
	margin-bottom: 5px;
}

.about-contact-box-content h3 {
	font-size: 20px;
}

.about-contact-box-content h3 a {
	color: inherit;
}

.our-services {
	background: url('../images/section-bg-shape.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-services .our-services-slider-wrap {
	position: relative;
}

.our-services .our_services_slider {
	overflow: hidden;
}

.our_services_prev,
.our_services_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: var(--white-color);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.our_services_prev i,
.our_services_next i {
	font-size: 20px;
	color: var(--primary-color);
}

.our_services_prev:hover,
.our_services_next:hover {
	background: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.our_services_prev:hover i,
.our_services_next:hover i {
	color: var(--white-color);
}

.our_services_prev {
	left: -60px;
}

.our_services_next {
	right: -60px;
}

@media only screen and (max-width: 768px) {

	.our-services .our_services_prev,
	.our-services .our_services_next {
		width: 40px;
		height: 40px;
	}

	.our-services .our_services_prev {
		left: 5px;
	}

	.our-services .our_services_next {
		right: 5px;
	}
}

.our_services_slider .swiper-slide {
	height: auto;
}

.our_services_slider .service-item {
	margin-bottom: 30px;
}

.our_services_pagination {
	position: relative;
	text-align: center;
	margin-top: 10px;
}

.our_services_pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--white-color);
	opacity: 1;
	margin: 0 5px !important;
}

.our_services_pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
}

.service-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-image a {
	display: block;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.05);
}

.service-body {
	text-align: center;
	padding: 30px;
}

.service-body .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	/* width: 100px;
	height: 100px; */
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: -80px;
	/* margin-bottom: 30px; */
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-item:hover .service-body .icon-box {
	background-position: right center;
}

.service-body .icon-box img {
	/* max-width: 50px; */
	max-width: 35px;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	/* margin-bottom: 30px; */
	margin-bottom: 20px;
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin: 0;
}

.section-footer-text p span {
	font-weight: 500;
	color: var(--white-color);
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 100px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p a {
	color: var(--accent-secondary-color);
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.why-choose-us {
	padding: 100px 0;
}

.why-choose-item {
	background: var(--white-color);
	box-shadow: 0px 0px 50px 2px #00000008;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-top: 50px;
	padding: 30px;
}

.why-choose-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: -80px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .icon-box {
	background-position: right center;
}

.why-choose-item .icon-box img {
	max-width: 50px;
}

.why-choose-item-content {
	text-align: center;
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p {
	margin: 0;
}

.why-choose-image img {
	width: 100%;
	/* aspect-ratio: 1 / 0.5823; */
	object-fit: cover;
}

.what-we-do {
	background: url('../images/section-bg-shape-2.png'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.what-we-do.dark-section .section-title h2 span {
	-webkit-text-fill-color: transparent;
}

.about-need-help {
	position: relative;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 30px;
	padding: 30px;
	margin-right: 50px;
	overflow: hidden;
}

.about-need-help:after {
	content: '';
	position: absolute;
	top: 0;
	right: calc(100% - 120px);
	bottom: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.about-need-help:hover:after {
	right: 0;
}

.about-need-help .icon-box {
	position: relative;
	margin-right: 60px;
	z-index: 1;
}

.about-need-help .icon-box img {
	width: 100%;
	max-width: 60px;
}

.about-need-help .need-help-content {
	position: relative;
	width: calc(100% - 120px);
	z-index: 1;
}

.need-help-content p {
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.need-help-content h3 {
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.about-need-help:hover .need-help-content p,
.about-need-help:hover .need-help-content h3 {
	color: var(--primary-color);
}

.need-help-content h3 a {
	color: inherit;
}

.what-we-counter-image {
	position: relative;
	margin-left: 20px;
	/* padding-left: 140px; */
	overflow: hidden;
}

.what-we-counter-box {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width: 200px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.what-we-counter-item {
	position: relative;
	width: 100%;
	background: var(--white-color);
	border-radius: 30px;
	padding: 25px;
	overflow: hidden;
}

.what-we-counter-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-counter-item:hover:before {
	top: auto;
	height: 105%;
}

.what-we-counter-item .icon-box {
	position: relative;
	margin-bottom: 10px;
	z-index: 1;
}

.what-we-counter-item .icon-box img {
	max-width: 34px;
	transition: all 0.4s ease-in-out;
}

.what-we-counter-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-counter-item-content {
	position: relative;
	z-index: 1;
}

.what-we-counter-item-content h3 {
	font-size: 36px;
	transition: all 0.3s ease-in-out;
}

.what-we-counter-item-content p {
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.what-we-counter-item:hover .what-we-counter-item-content p,
.what-we-counter-item:hover .what-we-counter-item-content h3 {
	color: var(--white-color);
}

.what-we-image figure {
	border-radius: 30px;
}

.what-we-image img {
	width: 100%;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	border-radius: 30px;
}

.our-projects {
	padding: 100px 0 60px;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
	overflow: hidden;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 40px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:hover,
.our-Project-nav ul li a.active-btn {
	color: var(--accent-color);
}

.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: -23px;
	transform: translateY(-50%);
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: var(--accent-color);
}

.our-Project-nav ul li:last-child a:before {
	display: none;
}

.project-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.project-image {
	position: relative;
	margin-bottom: 20px;
}

.project-image a {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-image img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
	transform: scale(1.1);
}

.project-tag {
	position: absolute;
	right: 30px;
	top: 30px;
	left: 30px;
	z-index: 2;
}

.project-tag a {
	display: inline-block;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 10px;
	text-transform: capitalize;
	color: var(--white-color);
	padding: 12px 20px;
	cursor: pointer;
}

.project-content {
	text-align: center;
}

.project-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.project-content h3 a {
	color: inherit;
}

.our-feature {
	background-image: url('../images/feature-bg-shape.png'), linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.contact-now-circle {
	text-align: end;
}

.contact-now-circle a {
	border-radius: 50%;
}

.contact-now-circle img {
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

.our-feature-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item {
	width: calc(25% - 22.5px);
}

.feature-item .icon-box {
	margin-bottom: 20px;
}

.feature-item .icon-box img {
	max-width: 60px;
}

.feature-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.feature-item-content p {
	margin: 0;
	color: var(--white-color);
	opacity: 80%;
}

.feature-counter-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
	/* border-top: 1px solid var(--dark-divider-color); */
	/* margin-top: 80px; */
	/* padding-top: 80px; */
}

.feature-counter-item {
	position: relative;
	width: calc(25% - 80px);
}

.feature-counter-item::before {
	content: '';
	position: absolute;
	right: -50px;
	top: 0;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.feature-counter-item:last-child:before,
.feature-counter-item:nth-child(5n + 5):before {
	display: none;
}

.feature-counter-item h2 {
	font-size: 46px;
	color: var(--white-color);
}

.feature-counter-item p {
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.our-support {
	padding: 100px 0;
}

.our-support-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: 20px;
}

.our-support-image {
	width: calc(50% - 15px);
}

.our-support-image.box-2 {
	margin-top: 78px;
}

.our-support-image figure {
	width: 100%;
	display: block;
	border-radius: 30px;
}

.our-support-image img {
	width: 100%;
	aspect-ratio: 1 / 1.65;
	object-fit: cover;
	border-radius: 30px;
}

.our-support-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.our-support-circle a {
	border-radius: 50%;
}

.our-support-circle img {
	max-width: 130px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

.our-support-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.support-item {
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 15px);
}

.support-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.support-item:hover .icon-box {
	background-position: right center;
}

.support-item .icon-box img {
	max-width: 34px;
}

.support-item-content {
	width: calc(100% - 80px);
}

.support-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.support-item-content p {
	margin: 0;
}

.our-support-btn {
	margin-top: 40px;
}

.cta-box {
	margin-top: 80px;
}

.cta-box-body {
	display: flex;
	flex-wrap: wrap;
}

.cta-box-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 30px;
	padding-right: 30px;
}

.cta-box-item:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.cta-box-item .icon-box {
	background: var(--dark-divider-color);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.cta-box-item .icon-box img {
	max-width: 30px;
}

.cta-box-item-content {
	width: calc(100% - 70px);
}

.cta-box-item-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.cta-box-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.cta-box-item-content h3 a {
	color: inherit;
}

.cta-box-image {
	margin-top: -80px;
}

.cta-box-image img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.our-testimonials {
	padding: 100px 0;
}

.testimonial-item {
	background: var(--white-color);
	box-shadow: 0px 0px 50px 2px #00000008;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.testimonial-slider .swiper-slide {
	height: auto;
	display: flex;
}

.testimonial-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.testimonial-content {
	flex-grow: 1;
}

.testimonial-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.testimonial-author-box {
	display: flex;
	align-items: center;
}

.author-image {
	margin-right: 20px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image img {
	width: 100%;
	max-width: 80px;
	border-radius: 50%;
}

/* .author-content {
	width: calc(100% - 100px);
} */

.author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-quote {
	text-align: end;
}

.testimonial-quote img {
	width: 100%;
	max-width: 50px;
}

.testimonial-rating {
	margin-bottom: 15px;
}

.testimonial-rating i {
	color: var(--accent-color);
}

.testimonial-content p {
	margin-bottom: 20px;
}

.testimonial-content p:last-child {
	margin-bottom: 0;
}

.testimonial-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
	z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--secondary-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-secondary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	font-size: 18px;
	color: var(--primary-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);
}

.our-faqs {
	background: url('../images/section-bg-shape.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 20px;
}

.our-faqs-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.our-faqs-list ul li {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.4em;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 20px;
}

.our-faqs-list ul li:last-child {
	margin-bottom: 0;
}

.our-faqs-list ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 20px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 1px;
	left: 0;
}

.faq-accordion.faq-accordion-box {
	background: var(--white-color);
	border-radius: 30px;
	padding: 40px;
}

.faq-accordion .accordion-item {
	background: transparent;
	margin-bottom: 30px;
	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: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: transparent;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding: 0 20px 20px 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	background: transparent;
	color: var(--primary-color);
	margin-bottom: 0;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f107';
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: 3px;
	bottom: auto;
	transform: rotate(-180deg);
	font-size: 18px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-secondary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: rotate(0deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin: 0;
}

.faq-accordion .accordion-item .accordion-body img {
	width: 100%;
	aspect-ratio: 1 / 0.22;
	object-fit: cover;
	border-radius: 20px;
}

.our-blog {
	/* padding: 100px 0 70px; */
	background: url('../images/section-bg-shape.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.post-item {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	position: relative;
	margin-bottom: 20px;
}

.post-featured-image a {
	display: block;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-meta {
	position: absolute;
	bottom: 0;
	right: 30px;
	transform: translateY(50%);
}

.post-item-meta a {
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	padding: 0 5px;
}

.post-item-body {
	padding: 10px 30px 30px;
}

.post-item-content {
	/* margin-bottom: 25px; */
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.3em;
}

.post-item-content h2 a {
	color: inherit;
}

.post-item-content .date {
	margin-top: 10px;
	margin-bottom: 0;
}

.main-footer {
	background: url(../images/footer-bg-shape.png), var(--primary-color);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100% auto;
	padding: 80px 0 0;
}

.main-footer-box {
	border-radius: 30px;
	display: flex;
	overflow: hidden;
	margin-bottom: 80px;
}

.footer-logo {
	/* background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%); */
	background: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 20px;
	/* padding: 40px 60px 40px 30px; */
}

.footer-logo img {
	width: 100%;
	max-width: 300px;
}

.footer-contact-details {
	/* width: calc(100% - 250px); */
	width: 100%;
	height: 100%;
	background: var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/* gap: 30px 30px; */
	gap:25px;
	padding: 40px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
}

.footer-contact-item .icon-box {
	position: relative;
	background: var(--dark-divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.footer-contact-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.footer-contact-item-content {
	width: calc(100% - 70px);
}

.footer-contact-item-content p {
	color: var(--white-color);
	line-height: normal;
	margin-bottom: 8px;
}

.footer-contact-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item-content h3 a {
	color: inherit;
}

.about-footer {
	margin-right: 90px;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-links p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 20px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
}

.footer-social-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 12px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--white-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a img {
	width: 28px;
	height: 28px;
	color: inherit;
}

.footer-links-box {
	width: calc(55% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.newsletter-form {
	margin-left: 40px;
}

.newsletter-form .form-group {
	display: flex;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 54px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 14px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 80%;
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--accent-color);
	width: 54px;
	height: 54px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i {
	font-size: 24px;
	transition: all 0.4s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover i {
	transform: rotate(25deg);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px 0;
	margin-top: 60px;
}

.footer-copyright-text p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 0;
}

.footer-privacy-policy {
	text-align: right;
}

.footer-privacy-policy ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li {
	position: relative;
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-right: 30px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
	color: var(--accent-color);
}

.footer-privacy-policy ul li:last-child {
	margin-right: 0;
}

.footer-privacy-policy ul li:before {
	content: '/';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -18px;
	color: var(--white-color);
}

.footer-privacy-policy ul li:last-child::before {
	display: none;
}

.footer-privacy-policy ul li a {
	color: inherit;
}

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 265px 0 125px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 85%;
	width: 100%;
	height: 100%;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	color: var(--white-color);
	display: inline-block;
	font-size: 54px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
	content: '/';
}

.about-us.page-about-us {
	padding: 100px 0;
}

.our-mission-vision .container-fluid {
	padding: 0;
}

.mission-vision-image {
	height: 100%;
}

.mission-vision-image figure {
	height: 100%;
}

.mission-vision-image img {
	height: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
}

.mission-vision-content {
	padding: 5.208vw;
	height: 100%;
	align-content: center;
}

.mission-vision-item {
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.mission-vision-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.mission-vision-item .icon-box {
	margin-right: 20px;
}

.mission-vision-item .icon-box img {
	max-width: 50px;
}

.mission-vision-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.mission-vision-item-content p {
	color: var(--white-color);
	margin: 0;
}

.our-commitment {
	background: url(../images/section-bg-shape.png), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-commitment-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: 20px;
}

.our-commitment-img-box {
	width: calc(50% - 15px);
}

.commitment-image-1 {
	margin-bottom: 30px;
}

.commitment-image-1 figure,
.commitment-image-2 figure {
	display: block;
	border-radius: 30px;
}

.commitment-image-1 img,
.commitment-image-2 img {
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

.commitment-image-1 img {
	aspect-ratio: 1 / 0.962;
}

.commitment-image-2 img {
	aspect-ratio: 1 / 2;
}

.satisfy-client-box {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-box:hover {
	background-position: right center;
}

.satisfy-client-content {
	margin-bottom: 30px;
}

.satisfy-client-content h2 {
	font-size: 46px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.satisfy-client-content p {
	color: var(--white-color);
	margin: 0;
}

.satisfy-client-images {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	margin-left: -16px;
	width: 48px;
	height: 48px;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
}

.satisfy-client-image img {
	max-width: 100%;
	border-radius: 50%;
}

.commitment-counter-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.commitment-counter-item {
	width: calc(33.33% - 20px);
}

.commitment-counter-item h2 {
	font-size: 46px;
	margin-bottom: 5px;
}

.commitment-counter-item p {
	text-transform: capitalize;
	margin: 0;
}

.commitment-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.commitment-list ul li {
	position: relative;
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 10px;
}

.commitment-list ul li:last-child {
	margin-bottom: 0;
}

.commitment-list ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.our-expertise {
	padding: 100px 0;
}

.our-expertise-content {
	margin-right: 20px;
}

.our-expertise-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.expertise-item-box {
	width: calc(50% - 15px);
}

.expertise-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.expertise-item:last-child {
	margin-bottom: 0;
}

.expertise-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.expertise-item:hover .icon-box {
	background-position: right center;
}

.expertise-item .icon-box img {
	max-width: 34px;
}

.expertise-item-content {
	width: calc(100% - 80px);
}

.expertise-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.expertise-item-content p {
	margin: 0;
}

.expertise-counter-box {
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px 25px;
}

.expertise-counter-content {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.expertise-counter-content h2 {
	width: 78px;
	font-size: 46px;
	margin-right: 5px;
}

.expertise-counter-content p {
	width: calc(100% - 78px);
	margin: 0;
}

.expertise-counter-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.expertise-counter-list ul li {
	position: relative;
	text-transform: capitalize;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.expertise-counter-list ul li:last-child {
	margin-bottom: 0;
}

.expertise-counter-list ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 0;
	left: 0;
}

.our-expertise-image {
	position: relative;
}

.our-expertise-image figure {
	display: block;
	border-radius: 30px;
}

.our-expertise-image img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	border-radius: 30px;
}

.expertise-contact-box {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	width: 100%;
	max-width: 330px;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	transition: all 0.3s ease-in-out;
}

.expertise-contact-box:hover {
	background-position: right center;
}

.expertise-contact-box .icon-box {
	background: var(--dark-divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.expertise-contact-box .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.expertise-contact-content {
	width: calc(100% - 70px);
}

.expertise-contact-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.expertise-contact-content p {
	margin: 0;
	color: var(--white-color);
}

.expertise-contact-content p a {
	color: inherit;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-image a {
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-social-icon ul li a:hover {
	background-position: right center;
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-support.about-support {
	background: url(../images/section-bg-shape.png), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.our-faqs.about-our-faqs {
	background: transparent;
}

.page-services {
	padding: 100px 0 70px;
}

.why-choose-us.service-why-choose-us {
	background-color: var(--secondary-color);
}

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 15px;
	padding: 12px 50px 12px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a {
	color: var(--white-color);
}

.page-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	transition: all 0.4s ease-in-out;
}

.page-catagery-list ul li:hover a::before {
	background-color: var(--primary-color);
}

.page-catagery-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-color) 68.68%, var(--accent-secondary-color) 100.18%);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 50%;
	width: 100%;
	height: 100%;
}

.sidebar-cta-content,
.sidebar-cta-contact {
	position: relative;
	z-index: 1;
}

.sidebar-cta-content {
	margin-bottom: 60px;
}

.sidebar-cta-content img {
	width: 100%;
	max-width: 159px;
	margin-bottom: 20px;
}

.sidebar-cta-content h3 {
	color: var(--white-color);
	font-size: 20px;
}

.sidebar-cta-item {
	position: relative;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 12px;
	display: flex;
	align-items: center;
	padding: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	opacity: 20%;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.sidebar-cta-item .icon-box {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-item:hover .icon-box {
	background-position: right center;
}

.sidebar-cta-item .icon-box img {
	max-width: 20px;
}

.sidebar-contact-content {
	width: calc(100% - 60px);
}

.sidebar-contact-content p {
	font-size: 18px;
	color: var(--white-color);
	margin: 0;
}

.sidebar-contact-content p a {
	color: inherit;
}

.service-featured-image {
	margin-bottom: 40px;
}

.service-featured-image figure {
	display: block;
	border-radius: 30px;
}

.service-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
	border-radius: 30px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry h2 span {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.service-entry h2:hover span {
	background-position: right center;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.service-entry ul li {
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 20px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 1px;
	left: 0;
}

.service-overview-box,
.service-protection-box,
.service-security-box {
	margin-top: 60px;
}

.service-facility-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-facility-item {
	width: calc(33.33% - 20px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #00000008;
	text-align: center;
	border-radius: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.service-facility-item:hover {
	transform: translateY(-4px);
}

.service-facility-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-facility-item:hover .icon-box {
	background-position: right center;
}

.service-facility-item .icon-box img {
	width: 100%;
	max-width: 32px;
}

.service-facility-item-content h3 {
	font-size: 20px;
}

.service-protection-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.service-protection-image,
.service-protection-content {
	width: calc(50% - 15px);
}

.service-protection-image figure {
	display: block;
	border-radius: 30px;
}

.service-protection-image img {
	width: 100%;
	aspect-ratio: 1 / 1.199;
	object-fit: cover;
	border-radius: 30px;
}

.service-protection-content ul {
	margin-top: 40px;
}

.service-facility-item.service-protection-item {
	width: 100%;
	display: flex;
	align-items: center;
	text-align: left;
	border-radius: 20px;
	margin-top: 40px;
}

.service-facility-item.service-protection-item:hover {
	transform: translateY(0px);
}

.service-facility-item.service-protection-item .icon-box {
	margin: 0 20px 0 0;
}

.service-facility-item.service-protection-item .service-facility-item-content {
	width: calc(100% - 80px);
}

.service-security-steps {
	margin-top: 40px;
}

.security-step-item {
	position: relative;
	display: flex;
	margin-bottom: 40px;
}

.security-step-item:last-child {
	margin-bottom: 0;
}

.security-step-item:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(20px, 40px);
	border-left: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
	z-index: -1;
}

.security-step-item:last-child:after {
	display: none;
}

.security-step-no {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
	transition: all 0.3s ease-in-out;
}

.security-step-item:hover .security-step-no {
	background-position: right center;
}

.security-step-no h3 {
	font-size: 20px;
	color: var(--white-color);
}

.security-step-item-content {
	width: calc(100% - 70px);
}

.security-step-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.security-step-item-content p {
	margin: 0;
}

.page-single-faqs .faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
}

.page-single-faqs .faq-accordion .accordion-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 15px;
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button.collapsed {
	padding-bottom: 0;
}

.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(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--white-color);
}

.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: 30px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.435em;
}

.post-entry h1 {
	font-size: 54px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.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: 18px;
	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-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 500;
	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: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background-position: right center;
}

.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: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background-position: right center;
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

.page-projects {
	padding: 100px 0 70px;
}

.page-project-single {
	padding: 100px 0;
}

.project-detail-list {
	background: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.project-detail-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box {
	background-position: right center;
}

.project-detail-content {
	width: calc(100% - 60px);
}

.project-detail-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

.project-detail-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-featured-image {
	margin-bottom: 40px;
}

.project-featured-image figure {
	display: block;
	border-radius: 30px;
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 30px;
}

.project-entry {
	margin-bottom: 60px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.project-entry h2 span {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.project-entry h2:hover span {
	background-position: right center;
}

.project-entry ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.project-entry ul li {
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 20px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 1px;
	left: 0;
}

.project-overview,
.project-solution-box,
.project-security-insights {
	margin-top: 60px;
}

.project-overview {
	background: var(--primary-color);
	border-radius: 30px;
	padding: 40px;
}

.project-overview h2,
.project-overview p,
.project-overview ul li {
	color: var(--white-color);
}

.project-overview ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	margin: 40px 0;
}

.project-overview ul li {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.project-overview-image figure {
	display: block;
	border-radius: 30px;
}

.project-overview-image img {
	width: 100%;
	aspect-ratio: 1 / 0.406;
	object-fit: cover;
	border-radius: 30px;
}

.project-solution-image-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.project-solution-image {
	width: calc(50% - 15px);
}

.project-solution-image figure {
	display: block;
	border-radius: 30px;
}

.project-solution-image img {
	width: 100%;
	aspect-ratio: 1 / 0.888;
	object-fit: cover;
	border-radius: 30px;
}

.project-security-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-security-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #00000008;
	border-radius: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.project-security-item:hover {
	transform: translateY(-4px);
}

.project-security-item .icon-box {
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-security-item:hover .icon-box {
	background-position: right center;
}

.project-security-item .icon-box img {
	max-width: 34px;
}

.project-security-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.project-security-item-content p {
	margin-bottom: 0;
}

.page-team {
	padding: 100px 0 70px;
}

.page-team-single {
	padding: 100px 0;
}

.team-member-info-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.team-member-image {
	width: calc(34% - 15px);
}

.team-member-content {
	width: calc(66% - 15px);
}

.team-member-image figure {
	display: block;
	border-radius: 30px;
}

.team-member-image img {
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 30px;
}

.team-contact-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.team-contact-box {
	width: calc(33.33% - 20px);
	display: flex;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0px 0px 50px 2px #00000008;
}

.team-contact-box .icon-box {
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.team-contact-box:hover .icon-box {
	background-position: right center;
}

.team-contact-box .icon-box img {
	width: 100%;
	max-width: 24px;
}

.team-contact-content {
	width: calc(100% - 55px);
}

.team-contact-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-contact-content p {
	margin: 0;
}

.member-social-list {
	display: flex;
	align-items: center;
	gap: 20px;
}

.member-social-list span {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.member-social-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.member-social-list ul li:last-child {
	margin-right: 0;
}

.member-social-list ul li a {
	background: linear-gradient(90.15deg, var(--accent-color) 0, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
	background-position: right center;
}

.member-social-list ul li a i {
	color: var(--white-color);
	font-size: 16px;
}

.team-education {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.team-education-content .section-title {
	margin-bottom: 0;
}

.team-certificates-slider .certificate-image {
	text-align: center;
}

.team-certificates-slider .certificate-image img {
	width: 100%;
	max-width: 222px;
	border-radius: 14px;
}

.team-education-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
	margin-top: 60px;
}

.team-education-item {
	position: relative;
	width: 25%;
	border-top: 1px solid var(--divider-color);
	padding: 40px 30px 0 0;
}

.team-education-item::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: -10px;
	left: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-color) 68.68%, var(--accent-secondary-color) 100.18%);
	border-radius: 50%;
}

.team-education-item h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-education-item p {
	margin: 0;
}

.team-personal-info {
	padding: 100px 0;
}

.team-about-info {
	margin-right: 20px;
}

.team-about-info-body {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.team-about-info-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-about-info-body ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.4em;
	padding-left: 30px;
}

.team-about-info-body ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 1px;
	left: 0;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 100px;
}

.team-contact-form {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 4px 50px 2px #00000008;
	border-radius: 30px;
	padding: 40px;
}

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

.certificate_card {
	border-radius: 20px;
	border: 1px solid var(--divider-color);
	box-shadow: 0px 5px 50px 2px #00000012;
}

.page-gallery-box .photo-gallery .certificate_name {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 20px;
}

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 20px;
}

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
	margin-bottom: 0;
}

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-social-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-social-list ul li {
	display: inline-block;
	margin-right: 10px;
}

.contact-social-list ul li:last-child {
	margin-right: 0;
}

.contact-social-list ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	color: var(--white-color);
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
	background-position: right center;
}

.contact-social-list ul li a i {
	font-size: 16px;
	color: inherit
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: 20px;
}

.contact-info-item {
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 4px 50px 0px #00000008;
	border-radius: 30px;
	padding: 30px;
	display: flex;
}

.contact-info-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.contact-info-item:hover .icon-box {
	background-position: right center;
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.contact-item-content {
	width: calc(100% - 70px);
}

.contact-item-content p {
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content h3 {
	font-size: 20px;
}

.contact-item-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover {
	color: var(--accent-secondary-color);
}

.contact-info-item.location-item {
	width: 100%;
}

.contact-form-section {
	padding: 50px 0 100px;
}

.contact-us-box {
	border: 1px solid var(--divider-color);
	box-shadow: 0px 4px 50px 2px #00000008;
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.google-map-iframe,
.contact-us-form {
	width: 50%;
}

.google-map-iframe iframe {
	height: 100%;
	width: 100%;
}

.contact-us-form {
	padding: 40px;
}

.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 50px 2px #00000008;
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 40%;
}

.error-page-content {
	text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title {
	margin-bottom: 20px;
}

@media only screen and (max-width: 1300px) {

	header.main-header .header-sticky.active,
	header.main-header {
		top: 15px;
		left: 15px;
		right: 15px;
		max-width: calc(100% - 30px);
		border-radius: 20px;
	}
}

@media only screen and (max-width: 1200px) {

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 50px 15px 20px;
	}

	.btn-default::before {
		width: 18px;
		height: 18px;
		transform: translate(-20px, -50%);
	}

	.btn-default:hover::before {
		transform: translate(-17px, -50%);
	}

	.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-content {
		margin-top: 15px;
	}

	.section-row .section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 5px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.hero {
		padding: 180px 0 70px;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 180px 0 70px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-image {
		max-width: 60%;
		margin: 0 auto;
		margin-bottom: -70px;
	}

	.best-services {
		padding: 25px 0;
	}

	.best-services-box {
		margin-top: -100px;
		max-width: 100%;
		border-radius: 20px;
		padding: 30px;
	}

	.best-service-item .icon-box {
		margin-bottom: 15px;
	}

	.best-service-item .icon-box img {
		max-width: 50px;
	}

	.about-us {
		padding: 25px 0 50px;
	}

	.about-us-images {
		width: 100%;
		max-width: 75%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-img-2 {
		max-width: 340px;
		margin: 0 auto;
		margin-right: 0;
		margin-top: -131px;
	}

	.about-img-2 figure,
	.about-img-1 figure,
	.about-img-2 img,
	.about-img-1 img {
		border-radius: 20px;
	}

	.company-experience-circle img {
		max-width: 140px;
	}

	.about-experience-image figure,
	.about-experience-image img {
		border-radius: 20px;
	}

	.about-us-body {
		border-radius: 20px;
		padding: 30px;
		margin-top: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		border-radius: 20px;
	}

	.service-body {
		padding: 20px;
	}

	.service-body .icon-box {
		width: 80px;
		height: 80px;
		margin-top: -60px;
		margin-bottom: 20px;
	}

	.service-body .icon-box img {
		max-width: 40px;
	}

	.service-content h3 {
		margin-bottom: 10px;
	}

	.service-content p {
		margin-bottom: 20px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-item {
		width: calc(50% - 15px);
		border-radius: 20px;
		margin-top: 40px;
		padding: 20px;
	}

	.why-choose-item .icon-box {
		width: 80px;
		height: 80px;
		margin-top: -60px;
		margin-bottom: 20px;
	}

	.why-choose-item .icon-box img {
		max-width: 40px;
	}

	.why-choose-item-content h3 {
		margin-bottom: 10px;
	}

	.why-choose-image {
		margin: 30px auto;
		max-width: 80%;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-content {
		margin-bottom: 30px;
	}

	.about-need-help {
		border-radius: 20px;
		padding: 20px 30px;
		margin-right: 0px;
	}

	/* .what-we-counter-image {
		margin-left: 0px;
	} */

	.what-we-image figure,
	.what-we-image img {
		border-radius: 20px;
	}

	.what-we-counter-item {
		border-radius: 20px;
		padding: 20px;
	}

	.what-we-counter-item:before {
		border-radius: 20px;
	}

	.what-we-counter-item-content h3 {
		font-size: 32px;
	}

	.our-projects {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 40px;
	}

	.project-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.project-image {
		margin-bottom: 15px;
	}

	.project-image a,
	.project-image img {
		border-radius: 20px;
	}

	.project-tag {
		right: 20px;
		top: 20px;
		left: 20px;
	}

	.project-tag a {
		border-radius: 10px;
		padding: 10px 15px;
	}

	.our-feature {
		padding: 50px 0;
	}

	.contact-now-circle img {
		max-width: 140px;
	}

	.feature-item {
		width: calc(50% - 15px);
	}

	.feature-item .icon-box {
		margin-bottom: 15px;
	}

	.feature-item .icon-box img {
		max-width: 50px;
	}

	.feature-item-content h3 {
		margin-bottom: 10px;
	}

	.feature-counter-box {
		gap: 20px;
		/* margin-top: 40px;
		padding-top: 40px; */
	}

	.feature-counter-item {
		width: calc(25% - 16px);
	}

	.feature-counter-item::before {
		right: -10px;
	}

	.feature-counter-item h2 {
		font-size: 36px;
	}

	.our-support {
		padding: 50px 0;
	}

	.our-support-images {
		margin: 0 0 30px 0;
	}

	.our-support-image figure,
	.our-support-image img {
		border-radius: 20px;
	}

	.our-support-circle img {
		max-width: 110px;
	}

	.our-support-btn {
		margin-top: 30px;
	}

	.cta-box {
		margin-top: 0px;
		padding: 50px 0 0;
	}

	.cta-box-content {
		margin-bottom: 30px;
	}

	.cta-box-image {
		width: 100%;
		max-width: 70%;
		margin: 0 auto;
		margin-top: 0px;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonial-item {
		border-radius: 20px;
		padding: 20px;
	}

	.testimonial-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.author-image {
		margin-right: 10px;
	}

	.author-image img {
		max-width: 60px;
	}

	.author-content {
		width: calc(100% - 70px);
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-quote img {
		max-width: 40px;
	}

	.testimonial-btn {
		margin-top: 40px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin: 0 0 30px 0;
	}

	.our-faqs-list ul li {
		font-size: 18px;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.our-faqs-list ul li::before {
		font-size: 18px;
	}

	.faq-accordion.faq-accordion-box {
		border-radius: 20px;
		padding: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item {
		border-radius: 20px;
	}

	.post-item-meta a {
		width: 50px;
		height: 50px;
		font-size: 16px;
	}

	.post-item-body {
		padding: 5px 20px 20px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer-box {
		border-radius: 20px;
		margin-bottom: 40px;
	}

	.footer-logo {
		padding: 20px 15px;
	}

	.footer-logo img {
		max-width: 139px;
	}

	.footer-contact-details {
		width: calc(100% - 170px);
		justify-content: left;
		gap: 20px 10px;
		padding: 20px 15px;
	}

	.footer-contact-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.footer-contact-item .icon-box img {
		max-width: 26px;
	}

	.footer-contact-item-content {
		width: calc(100% - 55px);
	}

	.footer-contact-item-content h3 {
		font-size: 16px;
	}

	.about-footer {
		margin-right: 40px;
		margin-bottom: 30px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.about-footer .footer-links {
		margin-bottom: 0;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.newsletter-form {
		margin-left: 0px;
	}

	.footer-copyright {
		padding: 30px 0;
		margin-top: 0px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 44px;
	}

	.about-us.page-about-us {
		padding: 50px 0;
	}

	.mission-vision-image figure {
		height: auto;
	}

	.mission-vision-image img {
		height: auto;
		aspect-ratio: 1 / 0.5;
	}

	.mission-vision-content {
		padding: 30px 15px 50px;
		height: auto;
		align-content: start;
	}

	.mission-vision-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.our-commitment {
		padding: 50px 0;
	}

	.our-commitment-images {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.commitment-image-2 img {
		aspect-ratio: 1 / 1.666;
	}

	.satisfy-client-content {
		margin-bottom: 20px;
	}

	.satisfy-client-content h2 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.commitment-counter-box {
		margin-bottom: 30px;
	}

	.commitment-counter-item h2 {
		font-size: 36px;
	}

	.commitment-list ul li {
		margin-bottom: 15px;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.our-expertise-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.public-trainings {
		padding: 50px 0;
	}

	.public-trainings-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.expertise-item {
		margin-bottom: 20px;
	}

	.expertise-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.expertise-item .icon-box img {
		max-width: 28px;
	}

	.expertise-item-content {
		width: calc(100% - 65px);
	}

	.expertise-counter-box {
		border-radius: 20px;
		padding: 20px;
	}

	.expertise-counter-content h2 {
		width: 58px;
		font-size: 36px;
	}

	.expertise-counter-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.expertise-counter-list ul li::before {
		font-size: 16px;
	}

	.our-expertise-image figure {
		border-radius: 20px;
	}

	.our-expertise-image img {
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image {
		margin-bottom: 15px;
	}

	.team-image a {
		border-radius: 20px;
	}

	.team-image img {
		aspect-ratio: 1 / 1.1;
		border-radius: 20px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: static;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-catagery-list {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-catagery-list h3 {
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a {
		padding: 12px 50px 12px 15px;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
	}

	.sidebar-cta-box {
		padding: 20px;
		border-radius: 20px;
	}

	.sidebar-cta-content {
		margin-bottom: 30px;
	}

	.sidebar-cta-item .icon-box {
		margin-right: 10px;
	}

	.sidebar-contact-content {
		width: calc(100% - 50px);
	}

	.service-featured-image {
		margin-bottom: 30px;
	}

	.service-featured-image img,
	.service-featured-image figure {
		border-radius: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.service-overview-box,
	.service-protection-box,
	.service-security-box {
		margin-top: 40px;
	}

	.service-facility-list {
		margin-top: 30px;
	}

	.service-facility-item {
		border-radius: 20px;
		padding: 20px;
	}

	.service-protection-image figure {
		border-radius: 20px;
	}

	.service-protection-image img {
		aspect-ratio: 1 / 1.08;
		border-radius: 20px;
	}

	.service-protection-content ul {
		margin-top: 30px;
	}

	.service-facility-item.service-protection-item {
		padding: 15px;
		margin-top: 30px;
	}

	.service-facility-item.service-protection-item .icon-box {
		margin: 0 10px 0 0;
	}

	.service-facility-item.service-protection-item .service-facility-item-content {
		width: calc(100% - 70px);
	}

	.service-security-steps {
		margin-top: 30px;
	}

	.security-step-item {
		margin-bottom: 30px;
	}

	.security-step-no {
		margin-right: 15px;
	}

	.security-step-item-content {
		width: calc(100% - 55px);
	}

	.security-step-item-content h3 {
		margin-bottom: 5px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-image figure,
	.post-image img {
		border-radius: 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 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 10px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-detail-list {
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.project-detail-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.project-featured-image figure,
	.project-featured-image img {
		border-radius: 20px;
	}

	.project-featured-image {
		margin-bottom: 30px;
	}

	.project-entry {
		margin-bottom: 40px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul li {
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.project-entry ul li::before {
		font-size: 18px;
	}

	.project-overview,
	.project-solution-box,
	.project-security-insights {
		margin-top: 40px;
	}

	.project-overview {
		border-radius: 20px;
		padding: 30px;
	}

	.project-overview ul {
		margin: 30px 0;
	}

	.project-overview ul li {
		margin-bottom: 0;
	}

	.project-overview-image figure,
	.project-overview-image img {
		border-radius: 20px;
	}

	.project-solution-image figure,
	.project-solution-image img {
		border-radius: 20px;
	}

	.project-security-boxes {
		margin: 30px 0;
	}

	.project-security-item {
		border-radius: 20px;
		padding: 20px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-member-image,
	.team-member-content {
		width: 100%;
	}

	.team-member-image figure {
		border-radius: 20px;
	}

	.team-member-image img {
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.team-contact-list {
		margin-bottom: 30px;
	}

	.team-contact-box {
		border-radius: 12px;
		padding: 15px;
	}

	.team-education {
		padding: 50px 0;
	}

	.team-education-content {
		margin-bottom: 30px;
	}

	.team-education-list {
		margin-top: 40px;
	}

	.team-education-item {
		padding: 30px 20px 0 0;
	}

	.team-education-item:before {
		height: 14px;
		width: 14px;
		top: -7px;
	}

	.team-personal-info {
		padding: 50px 0;
	}

	.team-about-info {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-about-info-body {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.team-about-info-body ul li {
		padding-left: 25px;
	}

	.team-about-info-body ul li::before {
		font-size: 16px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.team-contact-form {
		padding: 20px;
		border-radius: 20px;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-content {
		margin-bottom: 30px;
	}

	.contact-info-list {
		margin-left: 0;
	}

	.contact-info-item {
		padding: 20px;
		border-radius: 20px;
	}

	.contact-item-content h3 {
		font-size: 18px;
	}

	.contact-form-section {
		padding: 25px 0 50px;
	}

	.contact-us-box {
		border-radius: 20px;
	}

	.google-map-iframe,
	.contact-us-form {
		width: 100%;
	}

	.google-map-iframe iframe {
		height: 450px;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 60%;
	}

	.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 {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-body {
		gap: 15px;
		justify-content: space-between;
	}

	.hero-body .video-play-button a {
		height: 45px;
		width: 45px;
		margin-right: 5px;
	}

	.hero-image {
		max-width: 100%;
		margin-bottom: -90px;
	}

	.best-services-box {
		margin-top: -70px;
		padding: 20px;
		gap: 20px;
	}

	.best-service-item {
		width: calc(33.33% - 13.33px);
	}

	.best-service-item::before {
		right: -10px;
	}

	.best-service-item .icon-box {
		margin-bottom: 10px;
	}

	.best-service-item .icon-box img {
		max-width: 40px;
	}

	.best-service-item-content h3 {
		font-size: 16px;
	}

	.about-us-images {
		max-width: 100%;
	}

	.about-img-1 {
		padding-right: 50px;
	}

	.about-img-2 {
		max-width: 210px;
		margin: 0 auto;
		margin-right: 0;
		margin-top: -70px;
	}

	.company-experience-circle img {
		max-width: 100px;
	}

	.about-experience-item,
	.about-experience-image {
		width: 100%;
	}

	.about-experience-image img {
		aspect-ratio: 1 / 0.5;
	}

	.about-experience-item .icon-box {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}

	.about-experience-item .icon-box img {
		max-width: 28px;
	}

	.about-experience-content h3 {
		font-size: 18px;
	}

	.about-us-body {
		padding: 20px;
		gap: 20px;
	}

	.about-contact-box .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.about-contact-box .icon-box img {
		max-width: 28px;
	}

	.about-contact-box-content {
		width: calc(100% - 60px);
	}

	.about-contact-box-content h3 {
		font-size: 18px;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.section-footer-text p span {
		font-size: 14px;
		padding: 2px 8px;
		margin-right: 5px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-image {
		margin: 30px 0;
		max-width: 100%;
	}

	.about-need-help {
		padding: 20px;
	}

	.about-need-help:after {
		right: calc(100% - 90px);
	}

	.about-need-help .icon-box {
		margin-right: 40px;
	}

	.about-need-help .icon-box img {
		max-width: 50px;
	}

	.about-need-help .need-help-content {
		width: calc(100% - 90px);
	}

	.need-help-content p {
		font-size: 16px;
	}

	.need-help-content h3 {
		font-size: 18px;
	}

	/* .what-we-counter-image {
		padding-left: 100px;
	} */

	.what-we-image img {
		aspect-ratio: 1 / 0.9;
	}

	.what-we-counter-box {
		max-width: 175px;
		gap: 20px;
	}

	.what-we-counter-item {
		padding: 15px;
	}

	.what-we-counter-item .icon-box {
		margin-bottom: 5px;
	}

	.what-we-counter-item .icon-box img {
		max-width: 25px;
	}

	.what-we-counter-item-content h3 {
		font-size: 28px;
	}

	.project-image img {
		aspect-ratio: 1 / 0.9;
	}

	.project-content h3 {
		font-size: 18px;
	}

	.contact-now-circle {
		text-align: left;
		margin-top: 15px;
		display: none;
	}

	.contact-now-circle img {
		max-width: 100px;
	}

	.feature-item {
		width: 100%;
	}

	.feature-item .icon-box {
		margin-bottom: 10px;
	}

	.feature-item .icon-box img {
		max-width: 45px;
	}

	.feature-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px
	}

	.feature-counter-item {
		width: calc(50% - 10px);
	}

	.feature-counter-item:nth-child(2n + 2):before {
		display: none;
	}

	.feature-counter-item h2 {
		font-size: 26px;
	}

	.our-support-images {
		gap: 20px;
	}

	.our-support-image {
		width: calc(50% - 10px);
	}

	.our-support-image.box-2 {
		margin-top: 55px;
	}

	.our-support-circle img {
		max-width: 90px;
	}

	.support-item {
		width: 100%;
	}

	.support-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.support-item .icon-box img {
		max-width: 28px;
	}

	.support-item-content {
		width: calc(100% - 65px);
	}

	.support-item-content h3 {
		font-size: 18px;
	}

	.cta-box-body {
		display: block;
	}

	.cta-box-item {
		border-right: none;
		border-bottom: 1px solid var(--dark-divider-color);
		margin: 0 0 20px 0;
		padding: 0 0 20px 0;
	}

	.cta-box-item:last-child {
		border-bottom: none;
		margin: 0;
		padding: 0;
	}

	.cta-box-image {
		max-width: 100%;
	}

	.testimonial-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.author-image img {
		max-width: 50px;
	}

	.author-content {
		width: calc(100% - 60px);
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-btn {
		margin-top: 30px;
	}

	.our-faqs-list ul li {
		font-size: 16px;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.our-faqs-list ul li::before {
		font-size: 16px;
	}

	.faq-accordion.faq-accordion-box {
		padding: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-bottom: 15px;
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-body p {
		margin-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-body img {
		border-radius: 12px;
	}

	.post-item-meta a {
		width: 45px;
		height: 45px;
		font-size: 14px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.main-footer-box {
		display: block;
		margin-bottom: 30px;
	}

	.footer-contact-details {
		width: 100%;
	}

	.about-footer {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.footer-links h3 {
		font-size: 18px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-privacy-policy,
	.footer-copyright-text {
		text-align: center;
	}

	.footer-privacy-policy {
		margin-top: 10px;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.mission-vision-image img {
		aspect-ratio: 1 / 0.7;
	}

	.mission-vision-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.mission-vision-item .icon-box {
		margin-right: 10px;
	}

	.mission-vision-item .icon-box img {
		max-width: 40px;
	}

	.mission-vision-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-commitment-img-box {
		width: 100%;
	}

	.commitment-image-1 figure,
	.commitment-image-2 figure,
	.commitment-image-1 img,
	.commitment-image-2 img {
		border-radius: 20px;
	}

	.satisfy-client-box {
		border-radius: 20px;
		padding: 20px;
	}

	.satisfy-client-content h2 {
		font-size: 26px;
	}

	.commitment-image-2 img {
		aspect-ratio: 1 / 1.1;
	}

	.commitment-counter-item h2 {
		font-size: 26px;
	}

	.commitment-list ul li {
		padding-left: 25px;
	}

	.commitment-list ul li::before {
		font-size: 16px;
		top: 2px;
	}

	.expertise-counter-box,
	.expertise-item-box {
		width: 100%;
	}

	.expertise-item-content h3 {
		font-size: 18px;
	}

	.expertise-counter-content h2 {
		width: 44px;
		font-size: 26px;
	}

	.expertise-counter-content p {
		width: calc(100% - 44px);
	}

	.our-expertise-image img {
		aspect-ratio: 1 / 0.99;
	}

	.expertise-contact-box {
		bottom: 15px;
		left: 15px;
		right: 15px;
		max-width: calc(100% - 30px);
		border-radius: 12px;
		padding: 10px;
	}

	.expertise-contact-box .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.expertise-contact-content {
		width: calc(100% - 60px);
	}

	.expertise-contact-content h3 {
		font-size: 18px;
	}

	.page-catagery-list h3,
	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.sidebar-cta-item {
		margin-bottom: 15px;
	}

	.sidebar-contact-content p {
		font-size: 16px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul li {
		font-size: 16px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-overview-box,
	.service-protection-box,
	.service-security-box {
		margin-top: 30px;
	}

	.service-facility-list {
		gap: 20px;
	}

	.service-facility-item {
		width: 100%;
	}

	.service-facility-item .icon-box {
		width: 50px;
		height: 50px;
		margin: 0 auto 15px;
	}

	.service-facility-item .icon-box img {
		max-width: 28px;
	}

	.service-facility-item-content h3 {
		font-size: 18px;
	}

	.service-protection-image,
	.service-protection-content {
		width: 100%;
	}

	.service-protection-image img {
		aspect-ratio: 1 / 0.89;
	}

	.service-protection-content ul,
	.service-facility-item.service-protection-item {
		margin-top: 20px;
	}

	.service-facility-item.service-protection-item .service-facility-item-content {
		width: calc(100% - 60px);
	}

	.security-step-item {
		margin-bottom: 20px;
	}

	.security-step-item-content h3 {
		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;
	}

	.project-detail-item .icon-box {
		margin-right: 10px;
	}

	.project-detail-content {
		width: calc(100% - 50px);
	}

	.project-detail-content h3 {
		font-size: 18px;
	}

	.project-featured-image {
		margin-bottom: 20px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry ul li {
		font-size: 16px;
		width: 100%;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.project-overview,
	.project-solution-box,
	.project-security-insights {
		margin-top: 30px;
	}

	.project-overview {
		padding: 20px;
	}

	.project-overview ul {
		gap: 10px;
	}

	.project-overview-image img {
		aspect-ratio: 1 / 0.6;
	}

	.project-solution-image {
		width: 100%;
	}

	.project-security-boxes {
		gap: 20px;
	}

	.project-security-item {
		width: 100%;
	}

	.project-security-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 15px;
	}

	.project-security-item .icon-box img {
		max-width: 28px;
	}

	.project-security-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-member-image img {
		aspect-ratio: 1 / 1.05;
	}

	.team-contact-box {
		width: 100%;
		padding: 10px;
	}

	.team-contact-list {
		gap: 20px;
	}

	.member-social-list span,
	.team-contact-content h3 {
		font-size: 18px;
	}

	.team-certificates-slider .certificate-image img {
		max-width: 150px;
	}

	.team-education-item {
		width: 50%;
		padding: 20px 20px 0 0;
	}

	.team-education-item h3 {
		font-size: 18px;
	}

	.team-about-info-body ul {
		gap: 15px;
	}

	.team-about-info-body ul li {
		width: 100%;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.skills-progress-bar .skillbar .skill-progress {
		height: 10px;
	}

	.contact-info-list {
		gap: 20px;
	}

	.contact-info-item {
		width: 100%;
		padding: 15px;
	}

	.contact-info-item .icon-box {
		margin-right: 10px;
	}

	.contact-item-content {
		width: calc(100% - 60px);
	}

	.google-map-iframe iframe {
		height: 350px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

.footer-copyright .company_name {
	color: var(--accent-color);
	font-weight: 600;
	text-decoration: none;
}

.search-offcanvas {
	height: 120px !important;
	background-color: var(--secondary-color);
	border-bottom: 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.search-offcanvas .offcanvas-body {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.search-offcanvas .search-offcanvas-wrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.search-offcanvas .search-offcanvas-form {
	flex: 1;
	position: relative;
}

.search-offcanvas .search-offcanvas-form .form-control {
	height: 45px;
	border: none;
	border-radius: 0;
	background-color: var(--white-color);
	padding: 0 60px 0 22px;
	font-size: 18px;
	color: var(--primary-color);
	box-shadow: none;
}

.search-offcanvas .search-offcanvas-form .form-control:focus {
	box-shadow: none;
	border: none;
}

.search-offcanvas .search-offcanvas-form .form-control::placeholder {
	color: var(--primary-color);
}

.search-offcanvas .search-btn {
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 20px;
	color: var(--primary-color);
}

.search-offcanvas .search-close {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: var(--white-color);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
	overflow: hidden;
}

.search-offcanvas .search-close:hover {
	transform: rotate(90deg);
}

.social-share {
	background-color: #e5e5e5;
	display: inline-block;
	padding: 14px 12px;
	-webkit-border-top-left-radius: 16px;
	-moz-border-radius-topleft: 16px;
	border-top-left-radius: 16px;
	-webkit-border-bottom-left-radius: 16px;
	-moz-border-radius-bottomleft: 16px;
	border-bottom-left-radius: 16px;
	position: fixed;
	top: 30%;
	right: 0px;
	z-index: 11;
}

.social-share .social-links {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	flex-direction: column;
	margin-bottom: 0;
}

.social-share .social-links li {
	margin-bottom: 12px;
}

.social-share .social-links li:nth-last-of-type(1) {
	margin-bottom: 0;
}

.social-share .social-links li a {
	border-color: rgba(255, 225, 225, 0.15);
}

.social-share .social-links li img {
	width: 32px;
	height: 32px;
}

.public-trainings {
	padding: 100px 0;
}

.public-trainings-content {
	margin-right: 20px;
}

.public-trainings .public-trainings-content .content_part {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.public-trainings .public-trainings-content .content_part:nth-last-of-type(1) {
	border-bottom: none;
}

.public-trainings .public-trainings-content .content_part .lefttext {
	display: flex;
}

.public-trainings .public-trainings-content .content_part .lefttext .question {
	margin-left: 10px;
}

#publictrainingmodal .modal-body {
	padding: 25px;
}

#publictrainingmodal .btn-close-part {
	display: flex;
	justify-content: end;
	width: 100%;
}

#publictrainingmodal .btn-close-part .btn-close {
	display: flex;
	justify-content: end;
}

#publictrainingmodal .btn-close-part .btn-close:focus {
	box-shadow: none;
}

#publictrainingmodal .publictrainingmodal-title {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1.5 dashed var(--divider-color);
}

#publictrainingmodal .publictrainingmodal-content {
	font-size: 18px;
	line-height: 1.2;
}











.our-clients {
	padding: 100px 0;
	background: var(--secondary-color);
	font-family: var(--default-font);
	overflow: hidden;
}

.our-clients .section-title h3 {
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.our-clients .section-title h2 {
	color: var(--primary-color);
}

.our-clients .client-logo-slider {
	margin-top: 40px;
	overflow: hidden;
}

.our-clients .clientSwiper {
	width: 100%;
	margin-bottom: 28px;
	overflow: hidden;
}

.our-clients .clientSwiper:last-child {
	margin-bottom: 0;
}

.our-clients .clientSwiper .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear !important;
}

.our-clients .clientSwiper .swiper-slide {
	width: 280px;
	height: auto;
	flex-shrink: 0;
}

.our-clients .client-logo-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 25px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.our-clients .client-logo-item:hover {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(194, 152, 66, 0.15);
}

.our-clients .client-logo-item img {
	max-width: 100%;
	max-height: 90px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: all 0.3s ease;
}

.our-clients .client-logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* Responsive */
@media only screen and (max-width: 1200px) {
	.our-clients {
		padding: 80px 0;
	}

	.our-clients .clientSwiper .swiper-slide {
		width: 240px;
	}

	.our-clients .client-logo-item {
		height: 105px;
	}

	.our-clients .client-logo-item img {
		max-height: 75px;
	}
}

@media only screen and (max-width: 992px) {
	.our-clients {
		padding: 60px 0;
	}

	.our-clients .client-logo-slider {
		margin-top: 30px;
	}

	.our-clients .clientSwiper {
		margin-bottom: 20px;
	}

	.our-clients .clientSwiper .swiper-slide {
		width: 210px;
	}

	.our-clients .client-logo-item {
		height: 95px;
		padding: 12px 18px;
	}
}

@media only screen and (max-width: 768px) {
	.our-clients {
		padding: 50px 0;
	}

	.our-clients .clientSwiper .swiper-slide {
		width: 180px;
	}

	.our-clients .client-logo-item {
		height: 85px;
		padding: 10px 15px;
	}

	.our-clients .client-logo-item img {
		max-height: 58px;
	}
}

@media only screen and (max-width: 576px) {
	.our-clients {
		padding: 40px 0;
	}

	.our-clients .clientSwiper .swiper-slide {
		width: 150px;
	}

	.our-clients .client-logo-item {
		height: 75px;
		padding: 8px 12px;
	}

	.our-clients .client-logo-item img {
		max-height: 48px;
	}
}


/* .our-clients {
	padding: 100px 0;
	background: var(--secondary-color);
	font-family: var(--default-font);
}

.our-clients .section-title h3 {
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.our-clients .section-title h2 {
	color: var(--primary-color);
}

.our-clients .client-logo-slider {
	margin-top: 20px;
	overflow: hidden;
}

.our-clients .client-logo-item {
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	overflow: hidden;
}

.our-clients .client-logo-item:hover {
	border-color: var(--accent-color);
	box-shadow: 0 10px 30px rgba(194, 152, 66, 0.15);
}

.our-clients .client-logo-item img {
	max-width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.our-clients .client-logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

.our-clients .clientSwiper .swiper-slide {
	height: auto;
}

.our-clients .clientSwiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

@media only screen and (max-width: 992px) {
	.our-clients {
		padding: 50px 0;
	}

	.our-clients .client-logo-item {
		height: 100px;
		padding: 15px;
	}
} */

header.main-header {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	background: var(--white-color);
	border-radius: 30px;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	width: 100%;
	max-width: 1270px;
	margin: 0 auto;
}

.navbar {
	padding: 20px 10px;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand .logo {
	height: auto;
	width: 210px;
}

.cart_icon svg {
	height: 20px;
	width: auto;
}

@media only screen and (max-width: 1200px) {
	.cart_icon svg path {
		fill: white;
	}
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	padding: 14px 20px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	text-align: start;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 1px;
}

.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: translateY(10px);
	transform-origin: top;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	width: 280px;
	min-width: 280px;
	max-height: 320px;
	overflow-y: auto;
	border-radius: 18px;
	position: absolute;
	left: 0;
	top: calc(100% + 36px);
	/* top: 120%; */
	background: #fafafa;
	border: 1px solid var(--divider-color);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
	transition: all 0.3s ease-in-out;
	text-align: left;
	z-index: 999;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
	min-width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0 8px;
}

.main-menu ul ul li a {
	display: block;
	color: var(--primary-color);
	padding: 12px 16px !important;
	font-size: 15px;
	font-weight: 500;
	border-radius: 12px;
	background: transparent;
	transition: all 0.25s ease;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-color);
	background: rgba(194, 152, 66, 0.08);
	padding: 12px 16px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

header.main-header,
header.main-header .header-sticky,
.navbar,
.main-menu,
.nav-menu-wrapper,
.main-menu ul,
.main-menu ul li {
	overflow: visible !important;
}

.main-menu ul ul::-webkit-scrollbar {
	width: 6px;
}

.main-menu ul ul::-webkit-scrollbar-thumb {
	background: rgba(194, 152, 66, 0.45);
	border-radius: 10px;
}

.main-menu ul ul::-webkit-scrollbar-track {
	background: transparent;
}

/* .mega-product-menu {
	position: static !important;
} */

.mega-product-menu>.nav-link:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 13px;
	margin-left: 8px;
}

.mega-product-menu .mega-dropdown {
	display: block !important;
	position: absolute;
	/* top: 100%; */
	top: calc(100% + 14px);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1100px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
	opacity: 0;
	visibility: hidden;
	/* opacity: 1;
	visibility: visible; */
	pointer-events: none;
	transition: all 0.25s ease;
	z-index: 9999;
	overflow: hidden !important;
	padding: 0 !important;
}

.mega-product-menu.open .mega-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	/* top: 100%; */
	top: calc(100% + 14px);
}

.mega-dropdown-inner {
	display: flex;
	width: 100%;
	height: 460px;
	min-height: 460px;
	max-height: 460px;
	align-items: stretch;
	overflow: hidden;
}

.mega-category-list {
	width: 320px;
	min-width: 320px;
	max-width: 320px;
	background: #fafafa;
	border-right: 1px solid var(--accent-color);
	padding: 16px 0;
	height: 100%;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mega-category-link {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 14px 22px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--primary-color) !important;
	border-left: 3px solid transparent;
	background: transparent;
	transition: all 0.25s ease;
	text-decoration: none;
}

.mega-category-link:hover,
.mega-category-link.active {
	background: rgba(194, 152, 66, 0.08);
	color: var(--accent-color) !important;
	border-left-color: var(--accent-color);
}

.mega-product-content {
	flex: 1;
	padding: 28px 30px;
	background: var(--white-color);
	display: block;
	height: 100%;
	overflow-y: auto;
}

/* .mega-product-panel {
	display: none;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
}

.mega-product-panel.active {
	display: flex;
} */

.mega-product-column {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mega-product-column a {
	display: block;
	padding: 12px 14px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	color: var(--primary-color) !important;
	text-decoration: none;
	border-radius: 12px;
	border-bottom: 1px solid #e6e6e6;
	transition: all 0.25s ease;
}

.mega-product-column a:hover {
	color: var(--accent-color) !important;
	background: rgba(194, 152, 66, 0.08);
	padding-left: 14px !important;
}

.mobile-product-accordion {
	display: none;
}

.mega-product-menu .mega-dropdown ul,
.mega-product-menu .mega-dropdown li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mega-category-list::-webkit-scrollbar,
.mega-product-content::-webkit-scrollbar {
	width: 6px;
}

.mega-category-list::-webkit-scrollbar-thumb,
.mega-product-content::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 10px;
}

.mega-category-list::-webkit-scrollbar-track,
.mega-product-content::-webkit-scrollbar-track {
	background: transparent;
}


@media only screen and (max-width: 1200px) {

	.desktop-category-list,
	.desktop-product-content {
		display: none !important;
	}

	.mega-product-menu {
		position: relative !important;
		width: 100%;
	}

	.mega-product-menu>.nav-link {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 8px 15px 8px 20px !important;
	}

	.mega-product-menu>.nav-link:after {
		margin-left: 10px;
		transition: transform 0.25s ease;
	}

	.mega-product-menu.open>.nav-link:after {
		transform: rotate(180deg);
	}

	.mega-product-menu .mega-dropdown {
		position: static;
		left: auto;
		top: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		display: none !important;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		margin-top: 0;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background: #fff;
		padding: 0 !important;
		overflow: hidden !important;
	}

	.mega-product-menu.open .mega-dropdown {
		display: block !important;
		height: auto;
		max-height: 420px;
		overflow-y: auto;
	}

	.mega-dropdown-inner {
		display: block;
		min-height: auto;
		height: auto;
		max-height: none;
		width: 100%;
		border-top: 1px solid var(--divider-color);
	}

	.mobile-product-accordion {
		display: block !important;
		width: 100%;
		max-height: 420px;
		overflow-y: auto;
		background: #fafafa;
	}

	.mobile-acc-item {
		width: 100%;
		border-bottom: 1px solid #ececec;
	}

	.mobile-acc-title {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		color: var(--primary-color) !important;
		text-decoration: none;
		position: relative;
		cursor: pointer;
		background: #fafafa;
	}

	.mobile-acc-title:after {
		content: '\f107';
		font-family: 'FontAwesome';
		font-weight: 900;
		font-size: 13px;
		transition: transform 0.25s ease;
	}

	.mobile-acc-item.open .mobile-acc-title:after {
		transform: rotate(180deg);
	}

	.mobile-acc-content {
		display: none;
		width: 100%;
		padding: 0 12px 10px;
		background: #fff;
	}

	.mobile-acc-item.open .mobile-acc-content {
		display: block !important;
	}

	.mobile-acc-content a {
		display: block;
		padding: 11px 12px !important;
		font-size: 16px !important;
		font-weight: 500 !important;
		color: var(--primary-color) !important;
		text-decoration: none;
		border-radius: 10px;
		border-bottom: 1px solid #e8e8e8;
	}

	.mobile-acc-content a:last-child {
		border-bottom: none;
	}

	.mobile-acc-content a:hover {
		background: rgba(194, 152, 66, 0.08);
		color: var(--accent-color) !important;
	}

	.main-menu ul ul {
		width: 100%;
		min-width: 100%;
		max-height: 250px;
		overflow-y: auto;
		border: none;
		border-radius: 0;
		box-shadow: none;
		background: #fafafa;
		padding: 6px 0;
		position: static;
		transform: none;
	}

	.main-menu ul ul li {
		padding: 0 10px;
	}

	.main-menu ul ul li a {
		padding: 12px 14px !important;
		font-size: 14px;
		border-radius: 10px;
		color: var(--primary-color) !important;
	}

	.main-menu ul ul li a:hover {
		background: rgba(194, 152, 66, 0.08);
		color: var(--accent-color) !important;
	}
}

.product_page {
	padding: 100px 0 70px;
}

.product_page .breadcrumb_part {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.product_page .breadcrumb_part a {
	position: relative;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.5;
}

.product_page .breadcrumb_part a:hover {
	color: var(--accent-color);
}

.product_page .breadcrumb_part a:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--primary-color);
}

.product_page .filter_button_part {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 40px;
}

.product_page .filter_button_part button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	border: none;
	padding: 17px 25px 17px 25px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.product_page .filter_button_part button:hover {
	background-position: right center;
}

.product_page .filter_button_part button svg {
	height: 20px;
	margin-right: 12px;
}

.product_page .product_page_box .product_gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px 20px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product_page .product_page_box .product_gallery figure {
	display: block;
	max-height: 400px;
	border-radius: 20px;
	background-color: #f0f0f0;
}

.product_page .product_page_box .product_gallery img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 20px;
}

.product_page .product_page_box .product_gallery .product_name {
	font-size: 20px;
	color: var(--primary-color);
	font-weight: 600;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 0px;
}

.product_page .product_page_box .product_gallery .product_brand {
	font-size: 20px;
	color: var(--accent-color);
	font-weight: 600;
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

/* .product_detail_page {
	padding: 100px 0 70px;
}

.product_detail_page .breadcrumb_part {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.product_detail_page .breadcrumb_part a {
	position: relative;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.5;
}

.product_detail_page .breadcrumb_part a:hover {
	color: var(--accent-color);
}

.product_detail_page .breadcrumb_part a:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: var(--primary-color);
}

.product_detail_page .product_detail_box .product_gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px 20px;
}

.product_detail_page .product_detail_box .product_gallery figure {
	display: block;
	max-height: 400px;
	border-radius: 20px;
	background-color: #f0f0f0;
}

.product_detail_page .product_detail_box .product_gallery img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 20px;
}

.product_detail_page .product_detail_box .product_details .product_name {
	font-size: 36px;
	color: var(--primary-color);
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 0px;
} */


.product_detail_page {
	padding: 100px 0 70px 0;
	font-family: var(--default-font);
	background-color: #FFFFFF;
}

.product_detail_page .breadcrumb_part {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--primary-color);
	margin-bottom: 40px;
}

.product_detail_page .breadcrumb_part a {
	position: relative;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.5;
	transition: 0.3s ease;
}

.product_detail_page .breadcrumb_part a:hover {
	color: var(--accent-color);
}

.product_detail_page .breadcrumb_part a:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: #9aa1aa;
}

.product_detail_page .product_detail_box .product_gallery {
	margin-bottom: 30px;
}

.product_detail_page .productMainSlider {
	position: relative;
	background: #f7f7f7;
	border: 1px solid #ececec;
	border-radius: 24px;
	padding: 24px;
	margin-bottom: 16px;
	overflow: hidden;
}

.product_detail_page .productMainSlider figure {
	margin: 0;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #fff;
}

.product_detail_page .productMainSlider img {
	width: 100%;
	height: 100%;
	max-height: 360px;
	object-fit: contain;
	border-radius: 18px;
}

.product_detail_page .productMainSlider .swiper-button-next,
.product_detail_page .productMainSlider .swiper-button-prev {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid #e5e5e5;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.product_detail_page .productMainSlider .swiper-button-next:hover,
.product_detail_page .productMainSlider .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
	border-color: var(--accent-color);
	transform: translateY(-2px);
}

.product_detail_page .productMainSlider .swiper-button-next::after,
.product_detail_page .productMainSlider .swiper-button-prev::after {
	font-size: 16px;
	font-weight: 700;
}

.product_detail_page .productThumbSlider {
	padding: 4px 2px;
}

.product_detail_page .productThumbSlider .swiper-slide {
	height: 95px;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	background: #fafafa;
	transition: all 0.3s ease;
	opacity: 0.75;
}

.product_detail_page .productThumbSlider .swiper-slide:hover {
	border-color: var(--accent-color);
	background: #fff;
	opacity: 1;
	transform: translateY(-2px);
}

.product_detail_page .productThumbSlider .swiper-slide-thumb-active {
	border-color: var(--accent-color);
	background: #fff;
	opacity: 1;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.product_detail_page .productThumbSlider img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.product_detail_page .product_details .product_name {
	font-size: 40px;
	color: var(--primary-color);
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 6px;
	line-height: 1.25;
}

.product_detail_page .product_details .product_brand {
	font-size: 18px;
	color: var(--accent-color);
	font-weight: 600;
	margin-bottom: 18px;
}

.product_detail_page .product_short_desc p {
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
	max-width: 90%;
}

.product_detail_page .add_to_cart_btn_part {
	margin-top: 20px;
}

.product_detail_page .product_tabs_section {
	margin-top: 45px;
}

.product_detail_page .product_tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
	padding: 10px;
	background: #fafafa;
	border: 1px solid #ededed;
	border-radius: 16px;
	width: fit-content;
}

.product_detail_page .product_tabs .tab_btn {
	min-width: 170px;
	padding: 14px 20px;
	border: 1px solid transparent;
	background: transparent;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.product_detail_page .product_tabs .tab_btn:hover {
	background: #fff;
	border-color: #ececec;
	color: var(--accent-color);
}

.product_detail_page .product_tabs .tab_btn.active {
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-position: right center;
}

.product_detail_page .tab_content {
	display: none;
	padding: 24px;
	border: 1px solid #ededed;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.product_detail_page .tab_content.active {
	display: block;
}

.product_detail_page .tab_content p,
.product_detail_page .tab_content ul li {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	margin-bottom: 0;
}

.product_detail_page .tab_content ul {
	margin: 0;
	padding-left: 20px;
}

.product_detail_page .tab_content ul li {
	margin-bottom: 10px;
}

.product_detail_page .related_products_section {
	margin-top: 65px;
}

.product_detail_page .related_title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 24px;
}

.product_detail_page .related_product_card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 20px;
	padding: 15px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease;
}

.product_detail_page .related_product_card img {
	width: 100%;
	max-height: 250px;
	object-fit: contain;
	margin-bottom: 15px;
	background: #f8f8f8;
	border-radius: 16px;
	padding: 15px;
}

.product_detail_page .related_product_card h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.product_detail_page .related_product_card p {
	font-size: 15px;
	color: var(--text-color);
	margin: 0;
}

.product_detail_page .relatedProductSlider {
	padding-bottom: 42px;
}

.product_detail_page .relatedProductSlider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #d6d6d6;
	opacity: 1;
}

.product_detail_page .relatedProductSlider .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 24px;
	border-radius: 30px;
}

.product_detail_page .resource_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #ededed;
	border-radius: 12px;
	overflow: hidden;
}

.product_detail_page .resource_table th,
.product_detail_page .resource_table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}

.product_detail_page .resource_table th:last-child {
	text-align: right;
	padding-right: 45px;
}

.product_detail_page .resource_table td:last-child {
	text-align: right;
}

.product_detail_page .resource_table th {
	background: #fafafa;
	font-weight: 600;
	color: var(--primary-color);
}

.product_detail_page .resource_table tr:last-child td {
	border-bottom: none;
}

.product_detail_page .download_btn {
	display: flex;
	justify-self: end;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	border: none;
	padding: 17px 25px 17px 25px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 0;
	width: fit-content;
}

.product_detail_page .download_btn:hover {
	background-position: right center;
}

@media only screen and (max-width: 992px) {
	.product_detail_page .product_details .product_name {
		font-size: 32px;
	}

	.product_detail_page .product_short_desc p {
		max-width: 100%;
	}

	.product_detail_page .productMainSlider figure {
		height: 340px;
	}
}

@media only screen and (max-width: 768px) {
	.product_detail_page {
		padding: 70px 0 50px;
	}

	.product_detail_page .product_details .product_name {
		font-size: 26px;
	}

	.product_detail_page .product_details .product_brand {
		font-size: 16px;
	}

	.product_detail_page .product_tabs {
		width: 100%;
		gap: 10px;
		padding: 8px;
	}

	.product_detail_page .product_tabs .tab_btn {
		min-width: calc(50% - 5px);
		font-size: 15px;
		padding: 12px 14px;
	}

	.product_detail_page .productMainSlider {
		padding: 16px;
	}

	.product_detail_page .productMainSlider figure {
		height: 280px;
	}

	.product_detail_page .productMainSlider .swiper-button-next,
	.product_detail_page .productMainSlider .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.product_detail_page .productThumbSlider .swiper-slide {
		height: 78px;
	}

	.product_detail_page .tab_content {
		padding: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.product_detail_page .product_tabs .tab_btn {
		min-width: 100%;
	}
}

.product_page .filter_button_part {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

.product_page .filter_toggle_btn {
	background: var(--accent-color);
	color: #fff;
	border-radius: 30px;
	padding: 12px 24px;
	border: none;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
}

.product_page .filter_toggle_btn:hover,
.product_page .filter_toggle_btn:focus {
	background: var(--accent-secondary-color);
	color: #fff;
}

.product_page .filter_dropdown_custom {
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	display: none;
	min-width: 280px;
	margin-top: 12px;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	z-index: 999;
}

.product_page .filter_dropdown_custom.show {
	display: block;
}

.product_page .filter_dropdown_custom .form-check {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.product_page .filter_dropdown_custom .form-check-input {
	border: 1px solid var(--accent-color);
	box-shadow: none;
	cursor: pointer;
	margin-right: 10px;
	height: 16px;
	width: 16px;
}

.product_page .filter_dropdown_custom .form-check-input:checked {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.product_page .filter_dropdown_custom .form-check-input:focus {
	box-shadow: 0 0 0 0.15rem rgba(194, 152, 66, 0.25);
	border-color: var(--accent-color);
}

.product_page .filter_dropdown_custom .form-check-label {
	cursor: pointer;
	color: var(--primary-color);
}





















.cart_page {
	padding: 100px 0 70px;
	font-family: var(--default-font);
	background-color: #fff;
}

.cart_page .breadcrumb_part {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--primary-color);
	margin-bottom: 35px;
}

.cart_page .breadcrumb_part a {
	position: relative;
	color: var(--primary-color);
	text-decoration: none;
	line-height: 1.5;
	transition: 0.3s ease;
}

.cart_page .breadcrumb_part a:hover {
	color: var(--accent-color);
}

.cart_page .breadcrumb_part a:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	color: #9aa1aa;
}

.cart_page .cart_items_box {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cart_page .cart_table_head {
	align-items: center;
	padding: 0 24px 6px;
	font-size: 13px;
	font-weight: 700;
	color: #8a8f98;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cart_page .cart_head_product {
	flex: 0 0 70%;
}

.cart_page .cart_head_qty {
	flex: 0 0 20%;
	text-align: center;
}

/* .cart_page .cart_head_price {
	flex: 0 0 15%;
	text-align: center;
} */

.cart_page .cart_head_action {
	flex: 0 0 10%;
}

.cart_page .cart_item {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.045);
	transition: all 0.3s ease;
}

.cart_page .cart_item:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
}

.cart_page .cart_item_inner {
	display: flex;
	align-items: center;
	width: 100%;
}

.cart_page .cart_product_col {
	flex: 0 0 70%;
}

.cart_page .cart_qty_col {
	flex: 0 0 20%;
	display: flex;
	justify-content: center;
}

/* .cart_page .cart_price_col {
	flex: 0 0 15%;
	display: flex;
	justify-content: center;
} */

.cart_page .cart_action_col {
	flex: 0 0 10%;
	display: flex;
	justify-content: flex-end;
}

.cart_page .cart_product_wrap {
	display: flex;
	align-items: center;
	gap: 18px;
}

.cart_page .cart_product_img {
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	background: #f8f8f8;
	border: 1px solid #ececec;
	border-radius: 18px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart_page .cart_product_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.cart_page .cart_product_info h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 7px;
	line-height: 1.25;
	text-transform: uppercase;
}

.cart_page .cart_product_info p {
	font-size: 15px;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 12px;
}

.cart_page .cart_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cart_page .cart_meta span {
	font-size: 13px;
	color: var(--text-color);
	background: #fafafa;
	border: 1px solid #ededed;
	border-radius: 100px;
	padding: 6px 13px;
	line-height: 1.2;
}

.cart_page .cart_qty_box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	border: 1px solid #e5e5e5;
	border-radius: 100px;
	overflow: hidden;
	background: #fff;
}

.cart_page .cart_qty_box input {
	width: 46px;
	height: 42px;
	border: none;
	text-align: center;
	background: #fafafa;
	font-size: 16px;
	font-weight: 800;
	color: var(--primary-color);
	outline: none;
}

.cart_page .qty_btn {
	width: 42px;
	height: 42px;
	border: none;
	background: #fff;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart_page .qty_btn:hover {
	background: var(--accent-color);
	color: #fff;
}

.cart_page .qty_btn svg {
	height: 20px;
	width: 20px;
}

.cart_page .cart_price {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	white-space: nowrap;
}

.cart_page .remove_cart_btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #ffc9c9;
	background: #fff6f6;
	color: #e3342f;
	line-height: 36px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart_page .remove_cart_btn:hover {
	background: #e3342f;
	color: #fff;
	border-color: #e3342f;
}

.cart_page .remove_cart_btn svg {
	height: 20px;
	width: 20px;
}

.cart_page .cart_summary_box {
	position: sticky;
	top: 110px;
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.045);
}

.cart_page .cart_summary_box h3 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 22px;
}

.cart_page .summary_row,
.cart_page .summary_total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid #ededed;
	font-size: 16px;
	color: var(--text-color);
}

.cart_page .summary_row strong,
.cart_page .summary_total strong {
	color: var(--primary-color);
	font-weight: 700;
}

.cart_page .summary_total {
	border-bottom: none;
	margin-top: 8px;
	font-size: 20px;
}

.cart_page .summary_total span {
	font-weight: 700;
	color: var(--primary-color);
}

.cart_page .coupon_box {
	display: flex;
	gap: 10px;
	margin: 22px 0;
}

.cart_page .coupon_box input {
	width: 100%;
	height: 50px;
	border: 1px solid #ededed;
	border-radius: 100px;
	padding: 0 18px;
	font-size: 15px;
	color: var(--primary-color);
	outline: none;
}

.cart_page .coupon_box input:focus {
	border-color: var(--accent-color);
}

.cart_page .coupon_box button {
	border: none;
	border-radius: 100px;
	padding: 0 22px;
	color: var(--white-color);
	font-weight: 700;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.cart_page .coupon_box button:hover {
	background-position: right center;
}

.cart_page .checkout_btn,
.cart_page .continue_btn {
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	border-radius: 100px;
	padding: 17px 25px;
	font-size: 16px;
	font-weight: 700;
	transition: all 0.4s ease-in-out;
}

.cart_page .checkout_btn {
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	margin-bottom: 12px;
	margin-top: 15px;
}

.cart_page .checkout_btn:hover {
	color: var(--white-color);
	background-position: right center;
}

.cart_page .continue_btn {
	color: var(--primary-color);
	background: #fafafa;
	border: 1px solid #ededed;
}

.cart_page .continue_btn:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

@media only screen and (max-width: 992px) {
	.cart_page .cart_summary_box {
		position: static;
		margin-top: 30px;
	}
}

@media only screen and (max-width: 768px) {
	.cart_page {
		padding: 70px 0 50px;
	}

	.cart_page .cart_table_head {
		display: none !important;
	}

	.cart_page .cart_item {
		padding: 16px;
		border-radius: 20px;
	}

	.cart_page .cart_item_inner {
		flex-wrap: wrap;
		gap: 16px;
	}

	.cart_page .cart_product_col {
		flex: 0 0 100%;
	}

	.cart_page .cart_qty_col {
		flex: 0 0 auto;
		justify-content: flex-start;
	}

	.cart_page .cart_price_col {
		flex: 1;
		justify-content: flex-start;
	}

	.cart_page .cart_action_col {
		flex: 0 0 auto;
		margin-left: auto;
	}

	.cart_page .cart_product_wrap {
		align-items: flex-start;
		gap: 14px;
	}

	.cart_page .cart_product_img {
		flex: 0 0 95px;
		width: 95px;
		height: 95px;
		border-radius: 16px;
	}

	.cart_page .cart_product_info h3 {
		font-size: 17px;
	}

	.cart_page .cart_product_info p {
		font-size: 14px;
	}

	.cart_page .cart_qty_box {
		width: 126px;
	}

	.cart_page .cart_price {
		font-size: 18px;
		padding-top: 10px;
	}

	.cart_page .coupon_box {
		flex-direction: column;
	}

	.cart_page .coupon_box button {
		height: 48px;
	}
}

@media only screen and (max-width: 480px) {
	.cart_page .cart_product_wrap {
		flex-direction: column;
	}

	.cart_page .cart_product_img {
		width: 100%;
		height: 170px;
		flex-basis: auto;
	}

	.cart_page .cart_product_col,
	.cart_page .cart_qty_col,
	.cart_page .cart_price_col,
	.cart_page .cart_action_col {
		flex: 0 0 100%;
	}

	.cart_page .cart_action_col {
		margin-left: 0;
		justify-content: flex-start;
	}

	.cart_page .cart_price {
		padding-top: 0;
	}
}

.mega-product-menu {
	position: static !important;
}

.mega-product-menu>.nav-link:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 13px;
	margin-left: 8px;
}

.mega-product-menu .mega-dropdown {
	display: block !important;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1100px;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.25s ease;
	z-index: 9999;
	overflow: hidden !important;
	padding: 0 !important;
}

.mega-product-menu.open .mega-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: calc(100% + 8px);
}

.mega-product-menu .mega-dropdown::before {
	content: "";
	position: absolute;
	top: -16px;
	left: 0;
	width: 100%;
	height: 16px;
	background: transparent;
}

.mega-dropdown-inner {
	display: flex;
	width: 100%;
	height: 460px;
	min-height: 460px;
	max-height: 460px;
	align-items: stretch;
	overflow: hidden;
}

.mega-category-list {
	width: 300px;
	min-width: 300px;
	max-width: 300px;
	height: 100%;
	background: #fafafa;
	border-right: 1px solid var(--divider-color);
	padding: 16px 0;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.mega-product-content {
	flex: 1;
	height: 100%;
	padding: 0 !important;
	background: var(--white-color);
	display: block;
	overflow: hidden;
}

.mega-product-panel {
	display: none;
	width: 100%;
	height: 100%;
	align-items: stretch;
	gap: 0;
}

.mega-product-panel.active {
	display: flex;
}

.mega-subcategory-list {
	width: 300px;
	min-width: 300px;
	max-width: 300px;
	height: 100%;
	background: #fafafa;
	border-right: 1px solid var(--divider-color);
	padding: 16px 0;
	overflow-y: auto;
}

.mega-category-link,
.mega-subcategory-link {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 22px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	color: var(--primary-color) !important;
	border-left: 3px solid transparent;
	background: transparent;
	transition: all 0.25s ease;
	text-decoration: none;
	text-align: left;
}

.mega-category-link::after,
.mega-subcategory-link::after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 13px;
	opacity: 0.7;
	margin-left: 10px;
}

.mega-category-link:hover,
.mega-category-link.active,
.mega-subcategory-link:hover,
.mega-subcategory-link.active {
	background: rgba(194, 152, 66, 0.08);
	color: var(--accent-color) !important;
	border-left-color: var(--accent-color);
}

.mega-third-level-content {
	flex: 1;
	height: 100%;
	padding: 16px 22px;
	background: var(--white-color);
	overflow-y: auto;
}

.mega-third-panel {
	display: none;
	width: 100%;
}

.mega-third-panel.active {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.mega-product-column {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.mega-product-column a,
.mega-third-panel .mega-product-column a {
	display: block;
	padding: 12px 14px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
	color: var(--primary-color) !important;
	text-decoration: none;
	border-radius: 12px;
	border-bottom: 1px solid #e6e6e6;
	transition: all 0.25s ease;
}

.mega-product-column a:hover,
.mega-third-panel .mega-product-column a:hover {
	color: var(--accent-color) !important;
	background: rgba(194, 152, 66, 0.08);
}

.mega-category-list::-webkit-scrollbar,
.mega-subcategory-list::-webkit-scrollbar,
.mega-third-level-content::-webkit-scrollbar {
	width: 6px;
}

.mega-category-list::-webkit-scrollbar-thumb,
.mega-subcategory-list::-webkit-scrollbar-thumb,
.mega-third-level-content::-webkit-scrollbar-thumb {
	background: var(--accent-color);
	border-radius: 10px;
}

.mega-category-list::-webkit-scrollbar-track,
.mega-subcategory-list::-webkit-scrollbar-track,
.mega-third-level-content::-webkit-scrollbar-track {
	background: transparent;
}

.mobile-product-accordion {
	display: none;
}

@media only screen and (max-width: 1200px) {

	.slicknav_nav .desktop-category-list,
	.slicknav_nav .desktop-product-content,
	.slicknav_nav .mega-category-list,
	.slicknav_nav .mega-product-content,
	.slicknav_nav .mega-product-panel,
	.slicknav_nav .mega-subcategory-list,
	.slicknav_nav .mega-third-level-content,
	.slicknav_nav .mega-third-panel {
		display: none !important;
	}

	.slicknav_nav .mega-dropdown {
		display: block !important;
		position: static !important;
		left: auto !important;
		top: auto !important;
		transform: none !important;
		width: 100% !important;
		max-width: 100% !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		border: none !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		background: transparent !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: visible !important;
	}

	.slicknav_nav .mega-dropdown-inner {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: auto !important;
		max-height: none !important;
		overflow: visible !important;
		background: transparent !important;
	}

	.slicknav_nav .mobile-product-accordion {
		display: block !important;
		width: 100% !important;
		background: #fafafa !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.slicknav_nav .mobile-acc-item {
		display: block !important;
		width: 100% !important;
		background: #fafafa !important;
		border-bottom: 1px solid #e8e8e8 !important;
	}

	.slicknav_nav .mobile-acc-title {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		padding: 12px 20px !important;
		font-size: 15px !important;
		font-weight: 600 !important;
		line-height: 1.4 !important;
		color: var(--primary-color) !important;
		background: #fafafa !important;
		text-decoration: none !important;
		border-radius: 0 !important;
		position: relative !important;
	}

	.slicknav_nav .mobile-acc-title:after {
		content: '\f107' !important;
		font-family: 'FontAwesome' !important;
		font-weight: 900 !important;
		font-size: 12px !important;
		color: var(--primary-color) !important;
		margin-left: auto !important;
		transition: transform 0.25s ease !important;
	}

	.slicknav_nav .mobile-acc-item.open>.mobile-acc-title:after {
		transform: rotate(180deg) !important;
	}

	.slicknav_nav .mobile-acc-content {
		display: none !important;
		width: 100% !important;
		background: #fff !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.slicknav_nav .mobile-acc-item.open>.mobile-acc-content {
		display: block !important;
	}

	.slicknav_nav .mobile-sub-item {
		display: block !important;
		width: 100% !important;
		background: #fff !important;
		border-bottom: 1px solid #eeeeee !important;
	}

	.slicknav_nav .mobile-sub-title {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		padding: 11px 24px 11px 32px !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		line-height: 1.4 !important;
		color: var(--primary-color) !important;
		background: #fff !important;
		text-decoration: none !important;
		border-radius: 0 !important;
		position: relative !important;
	}

	.slicknav_nav .mobile-sub-title:after {
		content: '\f107' !important;
		font-family: 'FontAwesome' !important;
		font-weight: 900 !important;
		font-size: 11px !important;
		color: var(--primary-color) !important;
		margin-left: auto !important;
		transition: transform 0.25s ease !important;
	}

	.slicknav_nav .mobile-sub-item.open>.mobile-sub-title:after {
		transform: rotate(180deg) !important;
	}

	.slicknav_nav .mobile-sub-content {
		display: none !important;
		width: 100% !important;
		background: #fbfbfb !important;
		padding: 6px 12px 10px 42px !important;
		margin: 0 !important;
	}

	.slicknav_nav .mobile-sub-item.open>.mobile-sub-content {
		display: block !important;
	}

	.slicknav_nav .mobile-sub-content a {
		display: block !important;
		width: 100% !important;
		padding: 9px 12px !important;
		margin: 0 !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		line-height: 1.4 !important;
		color: var(--primary-color) !important;
		background: #fbfbfb !important;
		text-decoration: none !important;
		border-radius: 8px !important;
		border-bottom: 1px solid #eeeeee !important;
	}

	.slicknav_nav .mobile-sub-content a:last-child {
		border-bottom: none !important;
	}

	.slicknav_nav .mobile-sub-content a:hover {
		color: var(--accent-color) !important;
		background: rgba(194, 152, 66, 0.08) !important;
	}
}





.pdf-flipbook-section {
	padding: 100px 0;
	background: var(--secondary-color);
	overflow: hidden;
}

.pdf-flipbook-section .section-title {
	text-align: center;
	margin-bottom: 35px;
}

.pdf-flipbook-section .section-title h3 {
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.pdf-flipbook-section .section-title h2 {
	color: #222222;
}

.pdf-flipbook-section .section-title h2 span {
	color: var(--accent-color);
}

.pdf-flipbook-section .brochure-flipbook-main {
	width: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdf-flipbook-section .brochure-flipbook-wrap {
	width: 100%;
	max-width: 1100px;
	height: 720px;
	background: var(--white-color);
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.05);
}

.pdf-flipbook-section .brochure-flipbook {
	width: 100% !important;
	height: 720px !important;
	min-height: 720px !important;
}

.pdf-flipbook-section .brochure-flipbook-wrap .df-container,
.pdf-flipbook-section .brochure-flipbook-wrap .df-ui-wrapper,
.pdf-flipbook-section .brochure-flipbook-wrap .df-book-wrapper,
.pdf-flipbook-section .brochure-flipbook-wrap .df-book-stage {
	width: 100% !important;
	height: 100% !important;
}

.pdf-flipbook-section .brochure-flipbook-wrap .df-ui-prev,
.pdf-flipbook-section .brochure-flipbook-wrap .df-ui-next,
.pdf-flipbook-section .brochure-flipbook-wrap .df-ui-controls {
	display: none !important;
}

.pdf-flipbook-section .brochure-nav {
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	background: var(--accent-color);
	color: #ffffff;
	font-size: 26px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
	transition: all 0.3s ease;
}

.pdf-flipbook-section .brochure-nav svg {
	height: 35px;
}

.pdf-flipbook-section .brochure-nav:hover {
	background: #222222;
	transform: translateY(-50%) scale(1.08);
}

.pdf-flipbook-section .brochure-prev {
	left: 0;
}

.pdf-flipbook-section .brochure-next {
	right: 0;
}

.pdf-flipbook-section .brochure-open-btn-wrap {
	text-align: center;
	margin-top: 28px;
}

@media only screen and (max-width: 1400px) {
	.pdf-flipbook-section .brochure-flipbook-main {
		max-width: 1120px;
		padding: 0 70px;
	}

	.pdf-flipbook-section .brochure-prev {
		left: 0;
	}

	.pdf-flipbook-section .brochure-next {
		right: 0;
	}
}

@media only screen and (max-width: 1200px) {
	.pdf-flipbook-section .brochure-flipbook-wrap {
		max-width: 920px;
		height: 650px;
	}

	.pdf-flipbook-section .brochure-flipbook {
		height: 650px !important;
		min-height: 650px !important;
	}
}

@media only screen and (max-width: 992px) {
	.pdf-flipbook-section {
		padding: 70px 0;
	}

	.pdf-flipbook-section .brochure-flipbook-main {
		padding: 0 55px;
	}

	.pdf-flipbook-section .brochure-flipbook-wrap {
		height: 600px;
	}

	.pdf-flipbook-section .brochure-flipbook {
		height: 600px !important;
		min-height: 600px !important;
	}

	.pdf-flipbook-section .brochure-nav {
		width: 48px;
		height: 48px;
		font-size: 22px;
	}
}

@media only screen and (max-width: 768px) {
	.pdf-flipbook-section {
		padding: 55px 0;
	}

	.pdf-flipbook-section .brochure-flipbook-main {
		padding: 0 44px;
	}

	.pdf-flipbook-section .brochure-flipbook-wrap {
		height: 520px;
		border-radius: 14px;
	}

	.pdf-flipbook-section .brochure-flipbook {
		height: 520px !important;
		min-height: 520px !important;
	}

	.pdf-flipbook-section .brochure-nav {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

@media only screen and (max-width: 576px) {
	.pdf-flipbook-section .brochure-flipbook-main {
		padding: 0 38px;
	}

	.pdf-flipbook-section .brochure-flipbook-wrap {
		height: 460px;
	}

	.pdf-flipbook-section .brochure-flipbook {
		height: 460px !important;
		min-height: 460px !important;
	}

	.pdf-flipbook-section .brochure-nav {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.pdf-flipbook-section .brochure-open-btn {
		padding: 10px 22px;
		font-size: 14px;
	}
}

.product_detail_page .product_feature_item {
	height: 100%;
	padding: 20px;
	border: 1px solid #ededed;
	border-radius: 16px;
	background: #fafafa;
	transition: all 0.3s ease;
}

.product_detail_page .product_feature_item:hover {
	background: var(--white-color);
	border-color: var(--accent-color);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.product_detail_page .product_feature_item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.product_detail_page .product_feature_item p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0;
}

.product_detail_page .resource_card {
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 22px;
	border: 1px solid #ededed;
	border-radius: 18px;
	background: var(--white-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}

.product_detail_page .resource_card:hover {
	border-color: var(--accent-color);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

.product_detail_page .resource_icon {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: all 0.3s ease;
}

.product_detail_page .resource_icon.pdf {
	background: rgba(194, 152, 66, 0.12);
	color: var(--accent-color);
}

.product_detail_page .resource_icon.video {
	background: rgba(194, 152, 66, 0.12);
	color: var(--accent-color);
}

.product_detail_page .resource_card:hover .resource_icon.pdf {
	background: var(--accent-color);
	color: #ffffff;
}

.product_detail_page .resource_card:hover .resource_icon.video {
	background: var(--accent-color);
	color: #ffffff;
}

.product_detail_page .resource_info {
	width: 100%;
}

.product_detail_page .resource_info h4 {
	font-size: 19px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.product_detail_page .resource_info p {
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.6;
	margin-bottom: 16px;
}

.product_detail_page .resource_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.product_detail_page .resource_btn {
	border: none;
	outline: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	padding: 13px 22px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.product_detail_page .resource_btn:hover {
	background-position: right center;
	color: var(--white-color);
}

.product_detail_page ._df_button.resource_btn {
	margin: 0;
	box-shadow: none;
}

.productVideoModal .modal-content {
	background: #000000;
	border: none;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
}

.productVideoModal .modal-body {
	padding: 0;
}

.site_promo_close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: var(--white-color);
	color: var(--primary-color);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
	padding: 0;
	line-height: 0;
	font-size: 0;
}

.site_promo_close svg {
	width: 25px;
	height: 25px;
	font-weight: 700;
	display: block;
	stroke: currentColor;
	flex-shrink: 0;
}

.df-lightbox-wrapper {
	z-index: 99 !important;
}

.df-lightbox-wrapper .df-lightbox-controls {
	z-index: 100 !important;
}

@media only screen and (max-width: 992px) {
	.product_detail_page .resource_card {
		padding: 20px;
	}
}

@media only screen and (max-width: 576px) {
	.product_detail_page .resource_card {
		flex-direction: column;
		gap: 14px;
	}

	.product_detail_page .resource_icon {
		width: 52px;
		height: 52px;
		min-width: 52px;
		border-radius: 14px;
		font-size: 22px;
	}

	.product_detail_page .resource_actions {
		width: 100%;
	}

	.product_detail_page .resource_btn {
		width: 100%;
		padding: 13px 18px;
	}

	.site_promo_close {
		width: 38px;
		height: 38px;
		top: 10px;
		right: 10px;
	}

	.site_promo_close svg {
		width: 20px;
		height: 20px;
	}
}

.sitePromoModal,
.promoDetailModal {
	z-index: 99999;
}

.sitePromoModal .modal-content,
.promoDetailModal .modal-content {
	border: none;
	border-radius: 24px;
	overflow: hidden;
	background: var(--white-color);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
	position: relative;
}

.sitePromoModal .modal-body,
.promoDetailModal .modal-body {
	padding: 0;
}

.site_promo_close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 45px;
	height: 45px;
	border: none;
	border-radius: 50%;
	background: var(--white-color);
	color: var(--primary-color);
	font-size: 40px;
	line-height: 1;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
}

.site_promo_close svg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.site_promo_content {
	background: var(--white-color);
}

.site_promo_media {
	width: 100%;
	background: #f7f7f7;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.site_promo_media img {
	width: 100%;
	height: 100%;
	max-height: 460px;
	object-fit: cover;
	display: block;
}

.site_promo_media video,
.site_promo_media iframe {
	width: 100%;
	height: 460px;
	border: none;
	display: block;
	background: #000000;
}

.site_promo_pdf {
	width: 100%;
	height: 460px;
	border: none;
	background: #ffffff;
}

.site_promo_actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 24px 32px 32px;
}

.site_promo_btn {
	border: none;
	outline: none;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	border-radius: 100px;
	padding: 14px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.site_promo_btn.skip_btn {
	background: #f7f7f7;
	color: var(--primary-color);
	border: 1px solid #e5e5e5;
}

.site_promo_btn.skip_btn:hover {
	background: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
}

.site_promo_btn.detail_btn {
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
}

.site_promo_btn.detail_btn:hover {
	background-position: right center;
	color: var(--white-color);
	transform: translateY(-2px);
}

.promoDetailModal .modal-body {
	padding: 34px;
}

.promo_detail_header {
	text-align: center;
	margin-bottom: 26px;
	padding-right: 35px;
	padding-left: 35px;
}

.promo_detail_header h3 {
	font-size: 30px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.promo_detail_header p {
	font-size: 16px;
	color: var(--text-color);
	margin: 0;
}

.promo_detail_form .form-group {
	margin-bottom: 18px;
}

.promo_detail_form label {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.promo_detail_form .form-control {
	width: 100%;
	border: 1px solid #ededed;
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 15px;
	color: var(--primary-color);
	background: var(--white-color);
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease;
}

.promo_detail_form .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.16rem rgba(194, 152, 66, 0.16);
}

.promo_detail_form textarea.form-control {
	resize: none;
	line-height: 1.6;
}

.promo_form_actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 8px;
}

@media only screen and (max-width: 768px) {

	.sitePromoModal .modal-dialog,
	.promoDetailModal .modal-dialog {
		margin: 15px;
	}

	.site_promo_media {
		min-height: 260px;
	}

	.site_promo_media img,
	.site_promo_media video,
	.site_promo_media iframe,
	.site_promo_pdf {
		height: 320px;
	}

	.site_promo_text {
		padding: 24px 20px 8px;
	}

	.site_promo_text h3 {
		font-size: 24px;
	}

	.site_promo_actions,
	.promo_form_actions {
		flex-direction: column;
		gap: 10px;
	}

	.site_promo_btn {
		width: 100%;
	}

	.promoDetailModal .modal-body {
		padding: 28px 20px;
	}

	.promo_detail_header h3 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 480px) {

	.site_promo_media img,
	.site_promo_media video,
	.site_promo_media iframe,
	.site_promo_pdf {
		height: 260px;
	}

	.site_promo_close {
		width: 38px;
		height: 38px;
	}

	.site_promo_text h3 {
		font-size: 22px;
	}
}




.auth_page {
	padding: 200px 0 100px 0;
	background: url('../images/section-bg-shape.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.auth_page .auth_box {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.08);
	padding: 45px;
}

.auth_page .auth_register_box {
	max-width: 945px;
}

.auth_page .auth_logo {
	text-align: center;
	margin-bottom: 28px;
}

.auth_page .auth_logo img {
	width: 100%;
	max-width: 190px;
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	padding: 12px 18px;
	background: var(--white-color);
}

.auth_page .auth_form_header {
	text-align: center;
	margin-bottom: 28px;
}

.auth_page .auth_form_header h3 {
	font-size: 34px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.auth_page .auth_form_header p {
	font-size: 16px;
	color: var(--text-color);
	margin: 0;
}

.auth_page .auth_form .form-group {
	margin-bottom: 18px;
}

.auth_page .auth_form label {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.auth_page .auth_form .form-control {
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	background: var(--white-color);
	color: var(--primary-color);
	font-size: 15px;
	line-height: 1.5;
	padding: 14px 16px;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease;
}

.auth_page .auth_form select.form-control {
	cursor: pointer;
	appearance: auto;
}

.auth_page .auth_form .form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.16rem rgba(194, 152, 66, 0.16);
}

.auth_page .auth_form textarea.form-control {
	resize: none;
}

.auth_page .auth_form_extra {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 22px;
}

.auth_page .remember_check {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	font-size: 15px;
	color: var(--text-color);
	cursor: pointer;
}

.auth_page .remember_check input {
	width: 16px;
	height: 16px;
	accent-color: var(--accent-color);
}

.auth_page .auth_form_extra a {
	font-size: 15px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.auth_page .auth_form_extra a:hover {
	color: var(--primary-color);
}

.auth_page .auth_submit_btn {
	width: 100%;
	border: none;
	outline: none;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 26px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.auth_page .auth_submit_btn:hover {
	background-position: right center;
	transform: translateY(-2px);
}

.auth_page .auth_divider {
	position: relative;
	text-align: center;
	margin: 24px 0;
}

.auth_page .auth_divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--divider-color);
}

.auth_page .auth_divider span {
	position: relative;
	background: var(--white-color);
	padding: 0 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
}

.auth_page .google_auth_btn {
	width: 100%;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 14px 22px;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.auth_page .google_auth_btn:hover {
	border-color: var(--accent-color);
	color: var(--accent-color);
	transform: translateY(-2px);
}

.auth_page .google_auth_btn i {
	font-size: 18px;
}

.auth_page .auth_bottom_text {
	text-align: center;
	margin-top: 22px;
}

.auth_page .auth_bottom_text p {
	margin: 0;
	font-size: 15px;
	color: var(--text-color);
}

.auth_page .auth_bottom_text a {
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.auth_page .auth_bottom_text a:hover {
	color: var(--primary-color);
}

.auth_page .dealer_field {
	display: none;
}

.auth_page .dealer_field.show {
	display: block;
}

@media only screen and (max-width: 992px) {

	.auth_page .auth_box {
		border-radius: 24px;
		padding: 35px;
	}
}

@media only screen and (max-width: 768px) {

	.auth_page .auth_box {
		padding: 28px 20px;
	}

	.auth_page .auth_form_header h3 {
		font-size: 28px;
	}

	.auth_page .auth_form_extra {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}

@media only screen and (max-width: 576px) {
	.auth_page .auth_logo img {
		max-width: 160px;
	}

	.auth_page .auth_form_header h3 {
		font-size: 26px;
	}

	.auth_page .google_auth_btn,
	.auth_page .auth_submit_btn {
		font-size: 15px;
	}
}







.public_training_box {
	width: 100%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.08);
	padding: 45px;
}

.public_training_logo {
	text-align: center;
	margin-bottom: 28px;
}

.public_training_logo img {
	width: 100%;
	max-width: 190px;
	border: 1px solid var(--divider-color);
	border-radius: 18px;
	padding: 12px 18px;
	background: var(--white-color);
}

.public_training_header {
	text-align: center;
	margin-bottom: 28px;
}

.public_training_header h3 {
	font-size: 34px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.public_training_header p {
	font-size: 16px;
	color: var(--text-color);
	margin: 0;
}

.public_training_group {
	margin-bottom: 18px;
}

.public_training_group label {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

.public_training_control {
	width: 100%;
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	background: var(--white-color);
	color: var(--primary-color);
	font-size: 15px;
	line-height: 1.5;
	padding: 14px 16px;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease;
}

.public_training_control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.16rem rgba(194, 152, 66, 0.16);
}

select.public_training_control {
	cursor: pointer;
	appearance: auto;
}

textarea.public_training_control {
	resize: none;
}

.public_training_submit_btn {
	width: 100%;
	border: none;
	outline: none;
	color: var(--white-color);
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
	font-size: 16px;
	font-weight: 600;
	padding: 16px 26px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
	margin-top: 6px;
}

.public_training_submit_btn:hover {
	background-position: right center;
}

@media only screen and (max-width: 768px) {
	.public_training_box {
		padding: 28px 20px;
		border-radius: 24px;
	}

	.public_training_header h3 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 576px) {
	.public_training_logo img {
		max-width: 160px;
	}

	.public_training_header h3 {
		font-size: 26px;
	}

	.public_training_submit_btn {
		font-size: 15px;
	}
}