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

:root {
	--primary-color: #202b64;
	--secondery-color: #f9a132;
	--text-color: #283132;
	--accent-color: #7C877F;
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: 'cera-pro-light';
	--font-medium: 'cera-pro-medium';
	--font-bold: 'cera-pro-bold';
	--color-f9: #f9f9f9;
	--color-f4: #f4f4f4;
	--color-fd: #fdfdfd;
	--light-gray: #f8f9fa;
	--border-color: #dee2e6;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

@font-face {
	font-family: 'cera-pro-bold';
	src: url(../webfonts/Cera-Pro-Bold.woff2) format('woff2'), url(../webfonts/Cera-Pro-Bold.woff) format('woff');
	font-display: swap;
}

@font-face {
	font-family: 'cera-pro-medium';
	src: url(../webfonts/Cera-pro-medium.woff2) format('woff2'), url(../webfonts/Cera-pro-medium.woff) format('woff');
	font-display: swap;
}

@font-face {
	font-family: 'cera-pro-light';
	src: url(../webfonts/cera-pro-light.woff2) format('woff2'), url(../webfonts/cera-pro-light.woff) format('woff');
	font-display: swap;
}


body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

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

}

#ourproducts .image-anime {
	border-radius: 15px;
}

.pdt_properties table tr th,
.pdt_properties table tr td {
	line-height: 1.3;
}

.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;
	/* Fallback solid color */
	background-color: #00658f !important;

	/* Legacy prefixes */
	background-image: -webkit-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Safari/Android */
	background-image: -moz-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Firefox */
	background-image: -o-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Opera */

	/* Modern browsers */
	background-image: linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;

	/* Optional extras */
	background-repeat: no-repeat !important;
	background-position: 0 0 !important;
	background-origin: padding-box !important;

	/* IE9 fallback (no angle support; vertical gradient) */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00658f', endColorstr='#202b64', GradientType=0)";
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00658f, endColorstr=#202b64, GradientType=0);

	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 17px 46px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

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

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

.btn-default.btn-highlighted {
	background: #d2d2d2 !important;
	color: #000 !important;
}

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

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

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

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

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	/* Fallback solid color */
	background-color: #00658f !important;

	/* Legacy prefixes */
	background-image: -webkit-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Safari/Android */
	background-image: -moz-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Firefox */
	background-image: -o-linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;
	/* old Opera */

	/* Modern browsers */
	background-image: linear-gradient(64deg, #00658f 0%, #202b64 100%) !important;

	/* Optional extras */
	background-repeat: no-repeat !important;
	background-position: 0 0 !important;
	background-origin: padding-box !important;

	/* IE9 fallback (no angle support; vertical gradient) */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#00658f', endColorstr='#202b64', GradientType=0)";
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00658f, endColorstr=#202b64, GradientType=0);

	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 225px;
	position: relative;
	width: 225px;
	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: 150px;
	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;
	margin-right: 30px;
}

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

.section-title-content {
	margin-left: 120px;
}

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

.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: capitalize;
	color: var(--accent-color);
	padding-left: 35px;
	margin-bottom: 20px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title h1 {
	font-size: 62px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

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

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


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

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	z-index: 100;
	/*-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);*/
	border-radius: inherit;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	background: rgba(3, 3, 3, 0.15);
	backdrop-filter: blur(5px);
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--primary-color);
}

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

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
}

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

.navbar-brand img {
	width: 100px;
	padding: 5px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

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

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 400;
	font-size: 14px;
	margin-left: 8px;
	position: relative;
	top: 2px;
}

.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: scaleY(0.8);
	transform-origin: top;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 8px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #FDFDFD;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 200px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 10px 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(--primary-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
	width: 100%;
	display: block;
}

.main-menu ul ul li a span {
	color: #000;
	padding-left: 3px;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 15px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: #000;
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul ul ul {
	left: 102%;
	top: 0;
	text-align: left;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	/* right arrow icon */
	float: right;
}


.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.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: var(--primary-color)
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 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: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

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

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	height: 100vh;
	/* height: calc(100vh - 118px);
	margin-top: -118px; */
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero .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;
	min-height: 100vh;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	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: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-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-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before {
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
	margin-left: 30px;
	background: #d2d2d2 !important;
	color: #232;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
	background-image: url('../images/section-bg-shape-1.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

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

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

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
}

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

.experience-counter {
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter img {
	width: 80px;
	height: auto;
	aspect-ratio: unset;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: 0;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.about-us-content-list {
	margin-bottom: 40px;
}

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

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

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

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

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

.about-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img {
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

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

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

.about-contact-content p {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/

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

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

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

.why-choose-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

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

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

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

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

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

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

.why-choose-img-2 {
	width: calc(43% - 10px);
}

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

.why-choose-img-3 {
	width: calc(67% - 10px);
}

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

.why-choose-img-4 {
	width: calc(33% - 10px);
}

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

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 60px 0;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
	cursor: none;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(125, 125, 125, 0.6) 0%, rgba(196, 196, 196, 0.2) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
	z-index: 9;
	position: relative;
	top: -33px;
}

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

.service-item:hover .service-image a figure::before {
	background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.9) 105%);
}

.service-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}


.service-btn a {
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-item:hover .service-btn {
	opacity: 1;
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 15px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 32px;
	color: var(--white-color);
	text-align: center;
}

.service-content h3 a {
	color: inherit;
}

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

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
	padding: 0;
}

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

.intro-video-image a {
	display: block;
	cursor: none;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.41;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

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

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project {
	padding: 60px 0;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	background: #ddd;
	padding: 5px 15px;
}

.our-Project-nav ul li a.active-btn {
	background: #16396b;
	color: #fff;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
	transform-origin: bottom right;
	transition: transform 0.4s ease-in-out;
	transform: scaleX(0);
}

.our-Project-nav ul li a:after {
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%);
	z-index: 0;
}

.project-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.project-btn a {
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img {
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
	background: var(--primary-color);
}

.project-btn a:hover img {
	transform: rotate(0deg);
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
}

.project-content {
	position: absolute;
	left: 40px;
	bottom: 40px;
	right: 40px;
}

.project-content h3,
.project-content h2 {
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

.project-content h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.project-content h2 {
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a {
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work {
	padding: 30px 0;
}

.how-we-work .container-fluid {
	background: var(--primary-color);
	padding: 50px;
}

.how-we-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-we-work-item {
	width: calc(33.33333% - 22.5px);
}

.how-we-work-item .icon-box {
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
	max-width: 60px;
}

.how-we-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p {
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
}

.how-work-company-slider .company-logo {
	text-align: center;
}

.how-work-company-slider .company-logo img {
	width: 100%;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress {
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image {
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1 {
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
	display: block;
}

.our-skill-img-1 img {
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2 {
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img {
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3 {
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img {
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: var(--secondery-color);
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	padding: 100px;
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 162px auto;
}

.testimonial-slider {
	width: 100%;
	max-width: 620px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--divider-color);
}

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

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 20px;
	color: var(--primary-color);
	margin: 0;
}

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

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--accent-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

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

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

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

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer {
	padding: 30px 0 0;
	background: var(--primary-color);
}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 30px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

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

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

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

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	height: 36px;
	width: 36px;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

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

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

.footer-links ul li a {
	display: block;
	color: inherit;
}

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

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

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

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

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

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px 13px 40px;
	box-shadow: none;
}

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

.footer-newsletter-form button {
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

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

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

/************************************/
/***     15. About Us Page css 	  ***/
/************************************/

.page-header {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 270px 0 180px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

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

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

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

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

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

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

.about-us.page-about-us {
	background: transparent;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

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

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

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

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

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

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
	display: none;
}

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

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

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

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

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

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

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

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image figure {
	display: block;
}

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

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

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

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

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

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

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

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

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

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

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

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

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

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

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

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

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

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

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

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

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

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

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

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

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

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

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

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

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

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

.page-pagination {
	margin-top: 20px;
	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(--accent-color);
	color: var(--white-color);
	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(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

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

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

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

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url(../images/icon-blockquote.svg), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

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

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

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

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

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

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

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

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

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

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

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

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

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. Image Gallery css 	  ***/
/************************************/

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

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

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

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

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

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

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

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

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

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}

.contact-us-form {
	margin-left: 30px;
}

.contact-form .form-control,
.contact-form select {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: var(--white-color);
	color: var(--text-color) !important;
	border: 1px solid #D5D5D5 !important;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 15px !important;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

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

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

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
}

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

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

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

.contact-info-item .icon-box i {
	position: relative;
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box i {
	color: var(--white-color);
}

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

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}






/************************/
/* CUSTOM CODES */

.hero-slider-layout .swiper-slide .container {
	height: 100vh;
}

.hero-slider-layout .swiper-slide .container .row {
	justify-content: center;
	height: 100%;
}

img.anim_media {
	position: absolute;
	bottom: 0;
	z-index: 1;
	width: 50%;
	margin: 0 auto;
	height: 100%;
	left: 25%;
	opacity: .6;
}

img.mix_blend_exc {
	mix-blend-mode: exclusion;
}

img.mix_blend_light {
	mix-blend-mode: lighten;
	display: none;
}

img.mix_blend_overlay {
	mix-blend-mode: overlay;
	opacity: .5;
}


.intro-video {
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
	z-index: 10;
	background: #f5f5f5;
	overflow: hidden;
	text-align: center;
	text-transform: capitalize;
}

.intro-video h4 {
	color: #fff;
	font-size: 32px;
	line-height: 1.5;
	font-weight: 400;

}

.intro-video h4 a {
	font-weight: 800;
	color: #fff;
	padding: 1px 10px 2px;
	background: var(--primary-color);
	line-height: 1.33;
	font-size: 30px;
	border-radius: 3px;
	border-bottom: 1px solid #eee;
}

.intro-video::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: -1;

}

.html5-video {
	background-color: #000;
	height: auto;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	width: auto;
	z-index: -3;
	background-size: cover;
	display: table-cell;
}

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

#ourproducts .section-title h2 {
	color: #f2f2f2;
}

#ourproducts .section-title h3 {
	color: #fff;
}

#ourproducts .section-title h3::before {
	background: url('../images/icon-sub-heading-w.svg');
}

/* Start custom code */


.wrapper {
	min-height: 100vh;
	display: grid;
	grid-template-rows: 0 1fr minmax(120px, auto);
	grid-template-columns: 100%;
	grid-template-areas:
		"header"
		"main  "
		"footer";
	grid-auto-flow: dense;
	transition: background-color 0.6s ease;
}

.main {
	grid-area: main;
	overflow: hidden;
}

.main-header {
	grid-area: header;

}

.main-footer {
	grid-area: footer;
}

.certifications_sec .col-md-6.offset-3 {
	margin-top: 35px;
}

.certifications_home {
	background: #F3F3F3;
	padding: 33px 0;
}

.certifications_home .section-title {
	margin: 0;
}

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


.certifications_home .swiper {
	width: 100%;
	padding: 20px 0;
}

.certifications_home .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.certifications_home .swiper-slide img {
	max-width: 225px;
	max-height: 135px;
	object-fit: contain;
}

.align-items-center {
	align-items: center;
}

.align-items-stretch {
	align-items: stretch;
}

.down-specs {
	background-image: linear-gradient(#fff 5%, #dee0e5);
	padding: 35px 0 60px;
}

.downloads {
	padding: 1.5rem 0;
}


.downloads .section-title {
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 25px;
}

.downloads .section-title h2 {
	font-size: 30px;
	padding-bottom: 10px;
}

.btn-download {
	background-color: #f36c20;
	border: none;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 4px;
	color: white;
	transition: background-color 0.3s ease;
}

.btn-download:hover,
.btn-download:focus {
	background-color: #d75b18;
	color: white;
	outline: none;
	box-shadow: 0 0 8px #d75b18cc;
}

.download-card .card-body a img {
	width: 30px;
	height: 30px;
	position: relative;
}

.filter-section .form-group input,
.filter-section .form-group textarea,
.filter-section .form-group select {
	margin: 0;
	width: 100%;
	height: 50px;
	font-weight: 400;
	font-size: 16px;
	border-radius: 8px;
	padding: 15px 24px 15px 25px;
	transition: all .4s;
	background: transparent;
	border: 1px solid #dbdbdb;
	color: #333;
}

.filter-section .form-group i {
	color: #6E6E6E;
}

.filter-section .form-select {
	height: 50px;
	font-weight: 700;
	border: 1px solid #dbdbdb;
	background-color: #f9f9f9;
	cursor: pointer;
}

.filter-section .form-select:focus {
	box-shadow: none;
	outline: none;
}




.list-icon {
	color: #f36c20;
	font-weight: 700;
	margin-right: 0.5rem;
	user-select: none;
}

.cert_img {
	text-align: center;
}

.certs_list .cert_img img,
.labs_list .cert_img img,
.stands_list .cert_img img {
	width: 150px
}

.certifications_sec {
	position: relative;
	background-image: -webkit-linear-gradient(#fff 5%, #eee);
	/* For Safari */
	background-image: -moz-linear-gradient(#fff 5%, #eee);
	/* For Firefox */
	background-image: -o-linear-gradient(#fff 5%, #eee);
	/* For Opera */
	background-image: -ms-linear-gradient(#fff 5%, #eee);
	/* For Internet Explorer */
	background-image: linear-gradient(#fff 5%, #eee);
	/* Standard syntax */
	padding: 30px 0;
}

.certifications_sec .section-title {
	margin-bottom: 10px;
}

.certifications_sec .section-title h2 {
	font-size: 32px;
	text-align: center;
}

.certifications_sec .section-title img {
	width: 40px;
	margin-right: 10px;
}

.certifications_sec div.col-md-6:first-child::after {
	position: absolute;
	content: "";
	left: 47.5%;
	background-image: url(../images/divider.png);
	height: 50%;
	width: 64px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 999;
	top: 150px;
	transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	-moz-transform: rotate(15deg);
}

.no_divider div.col-md-6:first-child::after {
	display: none !important;
}

.certifications_sec div.has_divider {
	padding-left: 30px;
	padding-right: 0;
}

.certifications_sec.no_divider {
	padding: 60px 0;
}

.certifications_sec div.has_divider:last-child .as_title {
	margin-top: 15px;
}

.as_title {
	text-align: center;
}

.stands_list .row {
	align-items: center;
	justify-content: center;
}


.page-header {
	position: relative;
	display: block;
	padding: 150px 0px 25px;
	z-index: 1;
	background: var(--primary-color);
}

.page-header__bg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-attachment: scroll;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: -1;
}

.page-header__bg::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000001;
	opacity: 0.7;
	content: "";
	z-index: -2;
}

.page-header__inner {
	position: relative;
	display: block;
	text-align: center;
}

.page-header__inner h2 {
	color: #ffffff;
	font-size: 52px;
	line-height: 1em;
	font-weight: 300;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.page-header__inner p {
	width: 60%;
	margin: 0 auto;
	color: #f6f6f6;
}

.page-header__inner .thm-breadcrumb {
	position: relative;
	display: block;
	margin: 1rem 0;
	padding: 0px
}

.page-header__inner .thm-breadcrumb li {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	line-height: 30px;
	font-weight: 100;
	text-transform: capitalize;
}

.page-header__inner .thm-breadcrumb li span {
	padding: 0 10px;
}

.page-header__inner .thm-breadcrumb li::before {
	display: none !important;
}

.page-header__inner .thm-breadcrumb li span::before {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-size: 10px;
	top: 0px;
}

.page-header__inner .thm-breadcrumb li a {
	color: #ffffff;
	font-size: 16px;
	line-height: 30px;
	font-weight: 100;
	text-transform: capitalize;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
	color: var(--thm-base);
}


.product_img {
	padding: 0 !important;
	position: relative;
	background-color: #fbfbfb;
	/* Fallback color */
	background-image: -webkit-linear-gradient(bottom, #fff 0%, #fff 1%, #fff 31%, #f7f6f5 75%, #fbfbfb 100%);
	background-image: linear-gradient(to top, #fff 0%, #fff 1%, #fff 31%, #f7f6f5 75%, #fbfbfb 100%);

}

.product_img .image_centered {
	text-align: center;
	position: relative;
	z-index: 99;
}

.product_img .image_centered img {
	width: 100%;
}

.product_info_intro {
	padding: 0px !important;
}

.product_info_intro .col-md-6 {
	padding: 75px 35px;

}

.product_info_intro .col-md-6 .col-md-6 {
	padding: 0;

}

.product_info_intro .row.align-items-center {
	background: var(--primary-color)
}

.product_info_intro .row.align-items-stretch {
	background: var(--primary-color)
}

.product_info_intro .col-md-6 .col-md-6:first-child {
	background: transparent
}

.product_info_intro .col-md-6:last-child {
	background: #244093;
}

.product_info_intro h4 {
	font-size: 32px;
	color: var(--color-f9);
	margin-bottom: 15px;
}

.product_info_intro h5 {
	color: var(--color-f4);
	margin-bottom: 12px;
	font-size: 18px;
	font-family: var(--font-bold);
}

.product_info_intro p {
	color: var(--color-fd);
	font-size: 18px;
}

.product_info_intro p.inline-imgs img:last-child {
	width: 125px;
}

.product_info_intro p.list_style {
	margin-bottom: 0.15rem;
	padding-left: 15px;
}

.product_info_intro p.list_style .list-icon {
	color: #fff;
	margin-right: 0.2rem;
}


.pdt_scroller_text {
	max-width: 100%;
	overflow: hidden;
	position: absolute;
	top: 45%;
	z-index: 0;
}

.items--gsap {
	color: #fff;
}

.items--gsap .items__container {
	translate: -moz-calc(-100% + 100vw) !important;
	translate: calc(-100% + 100vw) !important;
}

.items__caption {
	max-width: 50vw;
	padding: 0 1.5rem;
}

.items__container {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	will-change: transform;
}

.pdt_scroller_text .text_conent {
	margin-right: 0rem;
	font-size: 3.5em;
	text-align: center;
	color: #9d9c9c
}

.pdt_scroller_text .text_conent img {
	width: 75px;
	height: 75px;
	object-fit: contain;
	position: relative;
	top: -6px;
	opacity: .6;
}

.text_conent {
	position: relative;
	width: 45vw;
	height: auto;
	-moz-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	-webkit-animation: animateZ 5s infinite;
	-moz-animation: animateZ 5s infinite;
	animation: animateZ 5s infinite;
	justify-content: center;
}

.item.item-regular {
	width: auto;
	-moz-border-radius: 0;
	border-radius: 0;
	gap: 0;
	background-color: transparent;
	color: var(--t-bright);
	-webkit-animation: animateZ 5s infinite;
	-moz-animation: animateZ 5s infinite;
	animation: animateZ 5s infinite;
}

@media only screen and (min-width: 992px) {
	.text_conent {
		width: 30vw;
	}
}

@media only screen and (min-width: 1200px) {
	.text_conent {
		width: 65vw;
	}
}

@media only screen and (min-width: 1600px) {
	.text_conent {
		width: 65vw;
	}
}

@-webkit-keyframes toLeft {
	to {
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@-moz-keyframes toLeft {
	to {
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@keyframes toLeft {
	to {
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

@-webkit-keyframes toRight {
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-moz-keyframes toRight {
	to {
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes toRight {
	to {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes animateZ {
	to {
		-webkit-transform: translateZ(1px);
		transform: translateZ(1px);
	}
}

@-moz-keyframes animateZ {
	to {
		-moz-transform: translateZ(1px);
		transform: translateZ(1px);
	}
}

@keyframes animateZ {
	to {
		-webkit-transform: translateZ(1px);
		-moz-transform: translateZ(1px);
		transform: translateZ(1px);
	}
}

.p_box {
	text-align: center;
	margin-bottom: 15px;
	padding: 15px 0;
}

.p_box img {
	width: 60px;
	height: 60px;
	margin-bottom: 12px;
}

.p_box h5 {
	color: var(--color-f9);
	font-size: 18px;
	font-family: var(--font-bold);
	text-transform: uppercase;
}

.p_box p {
	font-size: 16px;
	line-height: 1.33;
	width: 60%;
	margin: 0 auto;
}

.p_box ul.inline-text {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	justify-content: center;
}

.p_box ul.inline-text li {
	color: #fff;
}

.tbl-center table {

	margin: 0 auto;
}

.pdt_properties table {
	border-collapse: unset;
}

.pdt_properties table tr td {
	border: solid 1px rgba(255, 255, 255, 0.2);
}

.pdt_properties table tr th {
	text-align: center;
	background: #eee;
	color: #000;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}


.cert_approvals {
	padding: 60px 0;
}

.cert_approvals .swiper-container-horizontal {
	padding-bottom: 0px;
}

.cert_approvals .swiper-slide {
	width: auto;
	padding-top: 15px;
	padding-bottom: 15px
}

.cert_approvals .feature-box {
	text-align: center;
	justify-content: center;
	padding: 15px;
}

.cert_approvals .feature-box img {
	width: 100%;
}


.title_block {
	padding: 15px 0;
}

.title_block h2 {
	text-align: center;
	color: var(--theme-orange);
}

.product_cat_img {
	position: relative;

	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(225, 225, 225, 1) 0%, rgba(238, 238, 238, 1) 52%, rgba(225, 225, 225, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(225, 225, 225, 1) 0%, rgba(238, 238, 238, 1) 52%, rgba(225, 225, 225, 1) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(225, 225, 225, 1) 0%, rgba(238, 238, 238, 1) 52%, rgba(225, 225, 225, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#e1e1e1", GradientType=1);
	padding-bottom: 60px;
	text-align: center;
}

.cat_contact {
	padding: 0px !important
}

.cat_contact .row {
	background: #f2f2f2;
	align-items: center;
}

.cat_contact .col-md-6 {
	padding: 0px;
}

.cat_contact .col-md-6:last-child {
	background: #f2f2f2;
}

.cat_contact img {
	width: 45%;
	margin: 0 auto;
}

.dwn_btn {
	position: absolute;
	z-index: 1;
	bottom: 12px;
	display: block;
	left: calc(50% - 175px);
}

.dwn_btn a {
	font-size: 22px;
	font-family: var(--font-bold);
	text-transform: uppercase;
	color: var(--primary-color);
	font-weight: bold;
}

.dwn_btn a span {
	display: block;
	line-height: 0;
	font-weight: normal;
	color: var(--theme-orange);
	width: auto;
	font-family: var(--font-medium);
}

.dwn_btn a svg {
	width: 60px;
	height: 60px;
	position: relative;
	top: -15px;
	margin-left: 20px;
}

.enquiry_form {
	padding: 35px;
	width: 80%;
	margin: 0 auto;
}

.enquiry_form .card-heading {
	color: var(--primary-color);
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
}

.enquiry_form .form-control {
	height: 40px;
	padding-left: 2px;
	margin-bottom: 12px;
}

.enquiry_form textarea {
	font-family: 'cera-pro-light';
	color: #828282;
}

.enquiry_form .form-group>i {
	font-size: 18px;
	top: 45%;
	color: #797979;
}

.enquiry_form .form-group .mbtn {
	padding: 10px 24px;
	width: 100%;
	text-transform: uppercase;
	background: var(--primary-color);
	border: none;
	color: var(--color-fd);
}

.enquiry_form .form-group .iti {
	height: 40px;
	margin-bottom: 12px;
}


.form_block .row {
	background: transparent;

}


.form-group {
	position: relative;
	margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
	margin: 0;
	width: 100%;
	height: 60px;
	font-weight: 400;
	font-size: 16px;
	border-radius: 0;
	padding: 15px 24px 15px 5px;
	transition: all .4s;
	background: transparent;
	border: none;
	border-bottom: 1px solid #dbdbdb;
	color: var(--color-fd);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-bottom: 1px solid var(--primary-color);
	box-shadow: none;
	outline: none;
}

.form-group textarea {
	height: 120px;
	border-radius: 0;
	padding-left: 5px;
}

.form-group i {
	position: absolute;
	top: 50%;
	font-size: 18px;
	line-height: 18px;
	margin-top: -9px;
	right: 20px;
	color: var(--color-fd);
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 1
}

#newslettersForm .form-group i.fa-envelope {
	color: #867e7e;
	position: absolute;
	z-index: 1111;
	left: 10px;
}


.tp-contact-info-area {
	padding: 60px 0 120px;
	background: var(--theme-white-light);
}

.tp-contact-info-item {
	padding: 20px;
	background: var(--theme-white);
	height: 100%;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(182, 171, 171, 0.15);
	width: 90%;
	margin: 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.tp-contact-info-item {
		padding: 18px;
	}
}

.tp-contact-info-item p {
	color: var(--theme-orange);
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.tp-contact-info-item a {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	color: var(--theme-blue-dark);
}

.tp-contact-info-item a::after {
	position: absolute;
	content: "";
	bottom: -2px;
	left: 0;
	height: 1px;
	width: 100%;
	background: #E6E8F0;
}

.tp-contact-info-item a::before {
	position: absolute;
	content: "";
	width: 0;
	height: 1px;
	bottom: -2px;
	left: auto;
	right: 0;
	-webkit-transition: all 0.3s 0s ease-out;
	-moz-transition: all 0.3s 0s ease-out;
	-ms-transition: all 0.3s 0s ease-out;
	-o-transition: all 0.3s 0s ease-out;
	transition: all 0.3s 0s ease-out;
	background: var(--theme-grey-mid);
	z-index: 1;
}

.tp-contact-info-item a:hover::before {
	width: 100%;
	right: auto;
	left: 0;
}

.tp-contact-info-icon {
	margin-bottom: 30px;
}

.tp-contact-info-icon span {
	display: inline-block;
	text-align: center;
	line-height: 50px;
	height: 50px;
	width: 50px;
}

.tp-contact-info-icon span svg {
	width: 40px;
	height: 40px
}

.tp-contact-info-title {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.4px;
	color: #6E6E6E;
}

.contact-section {
	margin-top: 0;
}

.contact-section .col-md-5 {
	padding: 0px;
}

.map__location {
	height: 100%;
}

.contact_form {
	padding: 30px 50px 25px 50px;
	background: var(--primary-color)
}



.contact_form_title {
	color: var(--color-f9);
	margin-bottom: 15px;
}

.contact_form_title span {
	color: #dfdfdf;
}

.contact_form input[type="submit"],
.to_agent .inner a {
	border: none;
	color: #fff;
	outline: none;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	padding: 15px 30px;
	-webkit-box-shadow: 0px 10px 40px -10px rgba(133, 120, 126, 0.5);
	-moz-box-shadow: 0px 10px 40px -10px rgba(133, 120, 126, 0.5);
	box-shadow: 0px 10px 40px -10px rgba(133, 120, 126, 0.5);
	font-weight: 600;
	text-align: center;
	line-height: 1;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	background: var(--primary-color);
	margin-top: 20px;
}

.contact_form p.req_info {
	margin: 0;
	text-align: right;
	font-style: italic;
	color: var(--color-f9);
}


.filter-section {
	background-color: var(--light-gray);
	padding: 1.5rem 0 1rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.filter-label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.form-select,
.form-control {
	border: 1px solid var(--border-color);
	padding: 0.5rem 1rem;
	border-radius: 4px;
	width: 100%;
	--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.download-card {
	border: 1px solid #dbdbdb;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	height: 100%;
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.card-image {
	background-color: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 15px;
}

.card-image img {
	max-height: 225px;
}

.card-body {
	padding: 1.5rem;
}

.card-title {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.card-text {
	color: #6c757d;
	margin-bottom: 1.25rem;
	min-height: 60px;
}

.btn-download {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

@media (max-width: 768px) {
	.filter-section {
		padding: 1rem;
	}

	.page-header {
		padding: 2rem 0;
	}

	.page-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 576px) {
	.card-image {
		height: 150px;
	}

	.card-body {
		padding: 1rem;
	}
}

.to_agent {
	padding-bottom: 90px;
}

.to_agent .inner {
	background: var(--theme-blue-mid);
	padding: 60px 25px;
	border-radius: 15px;
	position: relative;
}

.to_agent .inner h4 {
	font-size: 38px;
	color: #fff;
	width: 80%;
	margin-bottom: 15px;
	display: inline-block;
}

.to_agent .inner a {
	padding: 0;
	font-size: 22px;
	margin-top: 8px;
	display: inline-block;
	color: #c9c9c9;
}

.to_agent .inner a i {
	position: relative;
	top: 0;
	font-size: 16px;
	left: 5px;
}

.to_agent .img_ {
	position: absolute;
	right: 0;
	bottom: 0;
}

.to_agent .img_ img {
	width: 250px;
}

.agents_search {
	padding: 60px 0px;
	padding-bottom: 0px !important;
}

.form_ag_search {
	margin-bottom: 75px;
}

.form_ag_search .form-control {
	border-radius: 18px;
	box-shadow: 0 0 22px rgba(0, 0, 0, 0.05);
	background: #fff;
}

.form_ag_search .form_group {
	position: relative;
}

.form_ag_search .form_group i {
	position: absolute;
	top: 18px;
	right: 18px;
}

.guide_info {
	text-align: center;
	display: inline-block;
	width: 100%;
	margin-top: 10px;
}

.guide_info {
	text-align: center;
	display: inline-block;
	width: 100%;
	margin-top: 10px;
}

#approvals .guide_info {
	margin-top: 50px;
	display: inline-block;
	width: 100%;
	background: var(--theme-white-light);
	padding: 15px;
	border-radius: 18px;
}

.guide_info a {
	text-decoration: underline;
}

.agents_search .col-md-3 {
	margin-bottom: 25px;
}

.agents_search .card {
	border: 0;
	margin-bottom: 25px;
	height: auto !important;
}

.agents_search .card .card-header {
	color: #fff;
	padding: 3px 6px;
	text-align: center;
	margin-bottom: 5px;
	height: 150px;
}

.agents_search .card .card-header img {
	width: 85px;
	margin-bottom: 5px;
}

.agents_search .card .card-header img.ag_m {
	width: 155px;
}

.agents_search .card .card-header img.ag_as {
	width: 155px;
}

.agents_search .card .card-header button {
	color: #fff;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	white-space: normal;
}

.agents_search .card,
.agents_search .card .card-body {
	height: 100% !important;
	padding-bottom: 0;
}

.agents_search .card .card-body {
	padding: 2.5rem 1rem;
}

.agents_search .card .collapse {
	height: 100%;
	padding: 0 2px;
}

.agents_search .card .card-body {
	background-color: #f3f3f3;
	box-shadow: none;
	color: #53565a;
	width: 99%;
	margin: 0 auto;
}

.agents_search .card .card-header {
	background-color: #1b90ae;
}

.agents_search .card .card-header {
	background-color: #005670;
}

.agents_search .card .card-header h4 {
	text-align: center;
	padding: 10px;
	color: var(--theme-white);
	font-size: 22px;
}

.agents_search .card svg {
	height: 25px;
	position: relative;
	margin-right: 6px;
	width: 20%;
	text-align: left;
}

.agents_search .card span {
	position: relative;
	left: 4px;
	width: 70%;
}

.agents_search .card p a {
	display: flex;
	color: #040404;
	text-align: left;
	line-height: 1.33
}

.agents_search .card p a.pl {
	padding-left: 31px;
}

.agents_search .card p a span u {
	display: block;
	clear: both;
	color: var(--theme-blue-mid);
}


.agents_search .loc_flag {
	text-align: center;
	padding: 10px 0;
	background: var(--theme-grey-light);
	border-top: 2px dotted var(--theme-grey-mid);
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.agents_search .loc_flag svg {
	width: 50px;
	height: 50px;
	position: relative;
	top: 0;
}

.agents_search .loc_flag span {
	text-transform: uppercase;
	font-weight: bold;
}

@media (min-width:768px) {
	.agents_search .card .card-header {
		background-image: linear-gradient(to right, #106f94 40%, #084b6b);
	}
}

@media (min-width: 1200px) {
	.agents_search .col-xl-2 {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

.img_bg {
	width: 60%;
	margin: 0 auto;
	position: relative;
}

.our-clients-logo-section {
	padding: 60px 0;
}

.our-clients-logo-section img {
	transition: transform .3s ease;
	-webkit-transition: transform .3s ease;
	-moz-transition: transform .3s ease;
	padding: 15px;
	border: 1px solid #eee;
	border-radius: 8px;
	box-shadow: 0px 0px 8px rgba(166, 166, 166, 0.1);
}

.our-clients-logo-section img:hover {
	animation: shake .5s ease-in-out;
	-webkit-animation: shake .5s ease-in-out
}

@keyframes shake {

	0%,
	to {
		transform: translateX(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px)
	}
}

@-webkit-keyframes shake {

	0%,
	to {
		transform: translateX(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px)
	}
}




.collection-carousel {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	min-height: -webkit-min-content;
	min-height: -moz-min-content;
	min-height: min-content;
	margin: auto;
	background: #f9f9f9;
}

.collection-carousel.container {
	max-width: 1140px;
}

@media (min-width:992px) {
	.collection-carousel {
		padding-top: 120px;
		padding-bottom: 120px
	}
}

@media (max-width:575.98px) {
	.collection-carousel {
		padding-left: 42px;
		padding-right: 42px
	}
}

.collection-carousel .carousel-intro {
	margin-bottom: 40px
}

.collection-carousel .carousel-intro__cta {
	-ms-flex-item-align: end;
	align-self: flex-end
}

@media (min-width:768px) {
	.collection-carousel .carousel-intro__cta {
		text-align: right
	}
}

.collection-carousel .carousel-intro__cta a {
	text-transform: uppercase;
	font-size: .8125rem;
	font-weight: 600
}

.collection-carousel .carousel-tiles__tile__caption {
	font-size: 18px;
	line-height: 1.2rem;
	font-weight: 600;
	color: #000;
	text-align: center;
}

.collection-carousel .carousel-tiles .slick-arrow.slick-next {
	right: 20px
}

.collection-carousel .carousel-tiles .slick-arrow.slick-prev {
	left: 20px
}


.carousel .slick-slide {
	height: auto
}

.carousel-tiles {
	margin: 5px -30px 0
}

@media (min-width:768px) {
	.carousel-tiles {
		margin-left: -60px;
		margin-right: -60px
	}
}

.carousel-tiles .slick-list {
	overflow: visible
}

.carousel-tiles .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -60px;
	width: 80px;
	height: 80px;
	border: 0;
	z-index: 1;
	cursor: pointer;
	background: #fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxpdmVsbG9fMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDM4LjQgMTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDM4LjQgMTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojNTg1ODU3O30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTM4LjIsNS41bC02LjItNS4zYy0wLjMtMC4zLTAuOS0wLjMtMS4yLDBjLTAuMywwLjMtMC4zLDAuOCwwLDFsNC43LDMuOUgwLjh2MS42aDM0LjVsLTQuNywzLjkKCWMtMC4zLDAuMy0wLjMsMC44LDAsMWMwLjMsMC4zLDAuOSwwLjMsMS4yLDBsNi4yLTUuM2MwLjItMC4xLDAuMy0wLjMsMC4zLTAuNVMzOC4zLDUuNiwzOC4yLDUuNXoiLz4KPC9zdmc+Cg==) 50% no-repeat;
	background-size: 38px 12px;
	-webkit-transform: none;
	-o-transform: none;
	transform: none
}

.carousel-tiles .slick-arrow:before {
	display: none
}

.carousel-tiles .slick-arrow.slick-next {
	right: 41px
}

@media (min-width:992px) {
	.carousel-tiles .slick-arrow.slick-next {
		right: 0
	}
}

.carousel-tiles .slick-arrow.slick-prev {
	left: 41px;
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}

@media (min-width:992px) {
	.carousel-tiles .slick-arrow.slick-prev {
		left: 0
	}
}

.carousel-tiles .slick-arrow:hover {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIzLjEuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxpdmVsbG9fMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgdmlld0JveD0iMCAwIDM4LjQgMTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDM4LjQgMTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojMDA2NTlEO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTM4LjIsNS41bC02LjItNS4zYy0wLjMtMC4zLTAuOS0wLjMtMS4yLDBjLTAuMywwLjMtMC4zLDAuOCwwLDFsNC43LDMuOUgwLjh2MS42aDM0LjVsLTQuNywzLjkKCWMtMC4zLDAuMy0wLjMsMC44LDAsMWMwLjMsMC4zLDAuOSwwLjMsMS4yLDBsNi4yLTUuM2MwLjItMC4xLDAuMy0wLjMsMC4zLTAuNVMzOC4zLDUuNiwzOC4yLDUuNXoiLz4KPC9zdmc+Cg==)
}

.carousel-tiles__tile {
	position: relative;
	padding: 0 10px
}

@media (min-width:768px) {
	.carousel-tiles__tile {
		padding: 0 20px
	}
}

.carousel-tiles__tile img {
	margin-bottom: 25px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: inset 0 0 10px #d7d6d6;
	-webkit-box-shadow: inset 0 0 10px #d7d6d6;
}

.carousel-tiles__tile__title {
	font-weight: 600;
	color: #585857;
	letter-spacing: .5px
}

.carousel-tiles__tile:hover {
	text-decoration: none
}

.carousel-tiles__tile:hover .carousel-tiles__tile__title {
	color: #00659d
}

.carousel-tiles__tile:focus {
	outline: none
}

.carousel-tiles .slick-dots {
	padding: 40px 30px 0;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important
}

@media (min-width:768px) {
	.carousel-tiles .slick-dots {
		padding-left: 60px;
		padding-right: 60px
	}
}

.carousel-tiles .slick-dots li {
	display: inline-block;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	height: 2px;
	width: 100%;
	background: #d9d9d9;
	-webkit-transition: .3s ease-out;
	-o-transition: .3s ease-out;
	transition: .3s ease-out;
	border: 0;
	margin: 0
}

.carousel-tiles .slick-dots li.slick-active {
	background: #787876
}

.carousel-tiles .slick-dots li button {
	border: 0;
	display: none !important
}

.carousel.carousel-single .carousel-tiles {
	margin-left: -20px;
	margin-right: -20px
}

.carousel.carousel-single .carousel-tiles__tile {
	padding: 0 20px
}

.carousel.carousel-single .carousel-tiles__tile:not(.slick-current) {
	opacity: .5
}

.carousel.carousel-single .carousel-tiles .slick-arrow.slick-next {
	right: -20px
}

.carousel.carousel-single .carousel-tiles .slick-arrow.slick-prev {
	left: -20px
}

.carousel.carousel-single .carousel-tiles .slick-dots {
	padding-left: 20px;
	padding-right: 20px
}


.teaser .title {
	font-size: 7rem;
}

.teaser .card {
	padding: 1rem;
	margin-top: -3rem;
	background: var(--primary-color);
}

.teaser .card h2 {
	text-transform: uppercase;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: bold;
	color: #fff;
}

.teaser__card h2,
.teaser__card .h2 {
	margin: 2.5rem 0;
}

.teaser__text p {
	font-weight: bold;
	color: #000;
	line-height: 1.33;
	font-size: 18px
}

picture>img {
	max-width: 100%;
	height: auto;
	margin-left: -3rem;
}

@media (min-width:576px) {
	.teaser .card {
		padding: 1.5rem
	}
}

@media (min-width:992px) {
	.teaser .card {
		padding: 1rem
	}
}

@media (min-width:1200px) {
	.teaser .card {
		padding: 1.5rem
	}
}

@media (min-width:1600px) {
	.teaser .card {
		padding: 1.5rem
	}
}

.card-header {
	padding: 2.5rem 3.125rem;
	margin-bottom: 0;
	background-color: transparent;
	border-bottom: 1px solid #f2f2f2
}

.card-header>h1,
.card-header>h2,
.card-header>h3,
.card-header>h4,
.card-header>h5 {
	margin: 0
}

.card-body {
	padding: 2.5rem 3.125rem;
	background-color: transparent
}

.card-body .btn {
	margin-bottom: 0
}

.card-footer {
	padding: 1.75rem 3.125rem;
	background-color: transparent;
	border-top: none
}

.card--color-white {
	background: #fff
}

.card--color-black {
	background: #000
}

.card--color-secondary {
	background: var(--theme-orange)
}

.card--color-primary {
	background: #2a3a42
}

.card--center {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center
}









.usi-products {
	padding: 60px 0;
}

.usi-products .container {
	max-width: 1140px;
}

.usi_product_block {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 20px;
	border: 1px solid rgba(0, 0, 0, 0.03);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	/* Soft, modern shadow */
	text-align: center;
	height: 100%;
	/* Ensure equal height in row */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	/* Smooth springy transition */
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
}

/* Hover State for Card */
.usi_product_block:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	border-color: rgba(0, 0, 0, 0);
	background: #0e4c7d;
}

/* Anchor tag styling reset */
.usi_product_block .product__link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* Image Styling */
.usi_product_block img {
	max-width: 80%;
	height: auto;
	margin-bottom: 25px;
	transition: transform 0.5s ease;
	filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Image Hover Effect */

.usi_product_block:hover img {
	transform: scale(1.08);
	/* Subtle zoom */
}

/* Caption Styling */
.product__title__caption {
	/* Modern font suggestion */
	font-size: 1.1rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0;
	padding: 10px 20px;
	border-radius: 50px;
	background-color: #f8f9fa;
	transition: all 0.3s ease;
	width: 100%;
}

.usi_product_block:hover .product__title__caption {
	background-color: #f9a01d;
	/* Example brand color (Blue) */
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive Fixes */
@media (max-width: 768px) {
	.usi_product_block {
		margin-bottom: 30px;
	}
}


.contact_uae {
	background-image: url(../images/usi-uae-contact.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 175px 0px 75px;
}

.contact_uae::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.exe_agents {
	background-image: url(../images/bg/hd_eagents.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.exe_agents::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}


.cls {
	background-image: url(../images/bg/hd_clients.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.cls::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.abt_h {
	background-image: url(../images/bg/hd_abt.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.abt_h::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.blog_h {
	background-image: url(../images/bg/hd_blog.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.blog_h::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.pdt_h {
	background-image: url(../images/bg/hd_pdt.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.pdt_h::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.contact_ksa {
	background-image: url(../images/unishield-ksa-contact.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 175px 0px 75px;
}

.contact_ksa::before {
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgb(35, 45, 100) 90%);
}

.usitrading_loc_map .col-md-12 {
	padding: 0px !important;
}


.contact-section .it-contact-list ul li {
	list-style-type: none;
	padding-left: 45px;
	position: relative;
}

@media (max-width: 767px) {
	.contact-section .it-contact-list ul li {
		padding-left: 30px;
	}
}

.contact-section .it-contact-list ul li:not(:last-child) {
	margin-bottom: 28px;
}

.contact-section .it-contact-list ul li a {
	font-size: 20px;
	list-style-type: none;
	display: inline-block;
	color: #000;
	font-weight: bold;
}

@media (max-width: 767px) {
	.contact-section .it-contact-list ul li a {
		font-size: 14px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.contact-section .it-contact-list ul li a {
		font-size: 17px;
	}
}

.contact-section .it-contact-list ul li a:hover {
	color: #333;
}

.contact-section .it-contact-list ul li span {
	position: absolute;
	top: -2px;
	left: 0;
}

@media (max-width: 767px) {
	.contact-section .it-contact-list ul li span svg {
		height: 20px;
		width: 20px;
	}
}

@media (max-width: 767px) {
	.contact-section .it-contact-social a svg {
		height: 20px;
		width: 20px;
	}
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
	.contact-section .it-contact-social a svg {
		height: 30px;
		width: 30px;
	}
}

.contact-section .it-contact-social a:not(:last-child) {
	margin-right: 35px;
}

.contact-section .it-contact-list ul li span::after {
	content: "";
	position: absolute;
	bottom: -2px;
	right: -2px;
	height: 100%;
	width: 100%;
	z-index: -2;
	border-radius: 20px;
	background-color: var(--primary-color);
}

.contact-section .it-contact-list ul li span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	border-radius: 20px;
	background-color: #f0f4f5;
}


@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
	.contact-section .it-contact-3-left {
		padding: 0;
	}
}

.contact-section .it-contact-3-left span {
	font-size: 28px;
	display: block;
	margin-bottom: 20px;
	color: var(--it-common-black);
	font-family: var(--it-ff-spartan-semibold);
}

.contact-section .it-contact-list ul li {
	padding-left: 0;
	display: flex;
	align-items: center;
}

.contact-section .it-contact-list ul li a {
	padding-left: 0;
}

.contact-section .it-contact-list ul li span {
	border-radius: 20px;
	width: 68px;
	height: 68px;
	line-height: 65px;
	text-align: center;
	z-index: 1;
	position: relative;
	margin-right: 20px;
	display: inline-block;
	margin-bottom: 0;
	background-color: #f0f4f5;
	border: 1px solid rgba(31, 36, 50, 0.1);
}

@media (max-width: 767px) {
	.contact-section .it-contact-list ul li span {
		width: 60px;
		height: 60px;
		line-height: 58px;
	}
}

.it-contact-list {
	padding: 60px 0;
}

.contact-section .it-contact-list ul {
	margin-top: 25px;
}

.contact-section .it-contact-list .contact_form_title {
	color: #16396b;
	margin-bottom: 40px;
	font-size: 2.3rem;
}

.contact-section .it-contact-list .contact_form_title span {
	color: var(--secondery-color);
}

.cat_contact .col-md-12 {
	padding: 0px;
}

.w100 img {
	width: 100% !important;
}


/* Section wrapper */
.mv-section {
	padding: 60px 0;
	background: linear-gradient(to bottom, #ffffff 0%, #eef6fb 100%);
}

/* Header */
.mv-header {
	background: linear-gradient(135deg, #0a66c2, #00a8e8);
	padding: 40px;
	border-radius: 6px;
	color: #fff;
}

.mv-header h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 5px;
}

.mv-header h2 span {
	display: block;
}

.mv-header p {
	font-style: italic;
	margin: 0;
}

/* Boxes */
.mv-box {
	background: #fff;
	padding: 30px 25px 35px;
	border-radius: 8px;
	height: 100%;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.mv-box p {
	line-height: 1.33;
	margin: 0;
	color: #000;
}

.mv-box i {
	font-size: 42px;
	color: #0a66c2;
	margin-bottom: 15px;
}

.mv-box h5 {
	font-weight: 600;
	margin-bottom: 15px;
}

/* Values list */
.mv-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.mv-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
	font-size: 14px;
	color: #555;
	width: 50%;
}

.mv-list li span {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.mv-list li p {
	line-height: 1.33;
}

.mv-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #0a66c2;
	font-size: 20px;
}

.mv-box .mv-box-title {
	text-align: center;
	margin-bottom: 35px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
	.mv-header {
		text-align: center;
	}

	.mv-header h2 {
		font-size: 28px;
	}
}







.mvv-split-section {
	width: 100%;
}

/* Left image */
.mvv-image {
	background-size: cover;
	background-position: center;
	min-height: 100%;
}

/* Right content */
.mvv-content {
	padding: 90px 50px;
	background: #fcfcfc;
}

/* Item layout */
.mvv-item {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 40px;
}

.mv-list li span {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}

.mv-list li p {
	margin: 0;
	color: #000;
	line-height: 1.33;
	font-size: 16px;
}

/* Icon circle */
.mvv-icon {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 30px;
}

/* Icon colors */
.mvv-icon.blue {
	background: #5c7cfa;
}

.mvv-icon.sky {
	background: #4dabf7;
}

.mvv-icon.green {
	background: #51cf66;
}

/* Text */
.mvv-text h4 {
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.mvv-text p {
	margin: 0;
	color: #000;
	line-height: 1.33;
	font-size: 16px;
}

.mvv-text {
	padding-top: 25px;
}

.val_box h4 {
	margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 991px) {
	.mvv-image {
		min-height: 300px;
	}

	.mvv-content {
		padding: 40px 25px;
	}

	.mvv-item {
		gap: 20px;
	}
}




.coming-soon-one {
	padding: 250px 0;
}

.coming-soon-one .coming-soon-btn li {
	list-style: none !important;
}

.coming-soon-one .coming-soon-content .coming-soon-title {
	font-size: 72px;
	line-height: 85px;
	text-transform: uppercase;
	margin-bottom: 30px;
}



/* Custom 5-column layout for Bootstrap */
@media (min-width: 992px) {
	.col-lg-2-4 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

/* Section */
.clients-grid-section {
	background: #ffffff;
	padding: 40px 0;
}

/* Grid item */
.client-item {
	border-right: 1px solid #cfcfcf;
	border-bottom: 1px solid #cfcfcf;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 20px 10px;
	position: relative;
}

.client-item .cl_flag {
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	background: #fbfbfb;
	padding: 10px 0;
	margin-bottom: 15px;
}

.client-item .cl_flag img {
	width: 35px;
}

.client-item .cl_flag span {
	font-weight: bold;
	text-transform: uppercase;
}



/* Remove last column border (desktop) */
@media (min-width: 992px) {
	.client-item:nth-child(5n) {
		border-right: none;
	}
}

/* Logo images */
.client-item img {
	max-width: 100%;
	max-height: 125px;
	object-fit: contain;
	opacity: 0;
	filter: blur(6px);
	transition: .5s ease-in;

	animation: logoAppear 1.2s ease-out forwards;
	-webkit-animation: logoAppear 1.2s ease-out forwards;
	margin-top: 18px;
	margin-bottom: 30px;
}


.client-item .cl_info {
	position: absolute;
	padding: 0;
	width: 100%;
	text-align: center;
	line-height: 1.1;
	margin-bottom: 10px;
	display: flex;
	align-content: center;
	justify-content: center;
	margin-top: 150px;
	font-weight: bold;
	padding: 0 10px;
}

.client-item .cl_flag img {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Optional hover effect */
.client-item:hover img {
	transform: scale(1.05);
}

/* Mobile border fixes */
@media (max-width: 991px) {
	.client-item {
		border-right: 1px solid #e0e0e0;
	}
}

/* Randomized delays */
.client-item:nth-child(1) img {
	animation-delay: 0.1s;
}

.client-item:nth-child(2) img {
	animation-delay: 0.4s;
}

.client-item:nth-child(3) img {
	animation-delay: 0.2s;
}

.client-item:nth-child(4) img {
	animation-delay: 0.6s;
}

.client-item:nth-child(5) img {
	animation-delay: 0.3s;
}

.client-item:nth-child(6) img {
	animation-delay: 0.5s;
}

.client-item:nth-child(7) img {
	animation-delay: 0.25s;
}

.client-item:nth-child(8) img {
	animation-delay: 0.7s;
}

.client-item:nth-child(9) img {
	animation-delay: 0.15s;
}

.client-item:nth-child(10) img {
	animation-delay: 0.45s;
}

/* Animation */
@keyframes logoAppear {
	to {
		opacity: 1;
		filter: blur(0);
	}
}

@-webkit-keyframes logoAppear {
	to {
		opacity: 1;
		filter: blur(0);
	}
}


.text-bold {
	font-weight: bold;
}

section#datasheet_request {
	margin-left: 30% !important;
	background: #202b64;
	width: 40%;
	border-radius: 15px;
	display: none;
	top: auto !important;
	left: auto !important;
	margin-top: -30% !important;
	transform: none !important;

}

#datasheet_request .form-control {
	padding-left: 15px;
	font-weight: 500;
	color: #333;
	margin-bottom: 15px;
}

#datasheet_request .form-control.error {
	margin-bottom: 5px;
}

#datasheet_request textarea {
	color: #333;
}

form#datasheet_form {
	padding-bottom: 40px;
}

#datasheet_request .text-bold span {
	display: block;
	font-size: 12px;
	font-weight: normal;
	font-style: italic;
}

#datasheet_request .text-bold {
	color: #ffffff
}

#datasheet_form .btn-primary {
	background: #f58528;
	border-color: #f58528;
}

.modal_close img {
	position: absolute;
	top: 25px;
	right: 25px;
	display: block;
	width: 25px;
	height: 25px;
	z-index: 2;
}

form#datasheet_form .error {
	font-style: italic;
	color: #ffe300;
	margin-top: 0;
	font-size: 14px;
	line-height: 1.1;
}


#contact_form label.error {
	color: #ffe300
}

.iti{
	width: 100%;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
	color: #fff;
}

.iti__arrow {
	border-top: 4px solid #fff;
}

.iti--separate-dial-code .iti__selected-flag {
	background-color: transparent;

}


.blog-filters {
	text-align: center;
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
}

.filter-tags {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-tag {
	padding: 8px 20px;
	border: 2px solid #ddd;
	background: white;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
}

.filter-tag:hover,
.filter-tag.active {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

.blog-item {
	transition: opacity 0.3s;
}

.blog-item.hidden {
	display: none;
}

.no-blogs-found {
	text-align: center;
	padding: 60px 20px;
	color: #666;
}

.alert-success{
	line-height: 1.33;
  text-align: center;
  font-weight: bold;
  color: #264e0b;
}
.alert-danger{
	color: #4e0b14;
}

#datasheet_form .iti{
	margin-bottom: 15px;
}
#datasheet_form .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
  color: #000;
}
/************************************/
/***      26. Responsive css      ***/
/************************************/

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

	.our-testimonial-content {
		padding: 100px 50px;
	}


	.main-menu ul li a {
		font-size: 15px;
		padding: 15px 8px;
	}

	.header-btn .btn-default {
		font-size: 12px;
		padding: 14px 40px 14px 14px;
	}
}

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

	.agents_search {
		padding-top: 30px;
	}

	.form_ag_search {
		display: none;
	}

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		padding: 50px 20px;
	}

	.client-item .cl_info {
		font-size: 12px;
	}

	.client-item .cl_flag img {
		width: 30px;
	}

	.client-item .cl_flag span {
		font-size: 12px;
	}

	.contact-section .col-md-5 {
		padding: 0px;
		margin-left: 0;
	}

	.it-contact-list {
		padding: 30px 0;
	}

	.contact-section .it-contact-list .contact_form_title {
		color: #16396b;
		margin-bottom: 40px;
		font-size: 2rem;
		padding-left: 15px;
	}
}

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

	.navbar {
		padding: 0px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

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

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

	.section-title h3 {
		margin-bottom: 10px;
	}

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

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

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

	.hero {
		min-height: auto;
		padding: 180px 0 140px;
		margin-top: -92px;
		height: 600px !important;
	}

	.swiper-fade {
		height: 100%;
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 0;
		min-height: auto;
		height: 100%;
	}

	img.anim_media {
		width: auto;
		left: 0;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

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

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

	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

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

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
	}

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

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

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

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

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

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

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

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

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

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

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

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

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

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
		text-align: left;
	}

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

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

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

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

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

	.page-header {
		padding: 120px 0 80px;
		margin-top: 10px;
	}

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

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

	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
		font-size: 16px;
	}

	.about-facility-list {
		margin-top: 50px;
		gap: 20px;
	}

	.about-facility-item {
		width: calc(33.33% - 13.33px);
	}

	.about-facility-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.about-facility-item .icon-box img {
		max-width: 20px;
	}

	.about-facility-content {
		width: calc(100% - 55px);
	}

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

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 30px 15px;
		gap: 30px 40px;
	}

	.vision-mission-item {
		width: calc(50% - 20px);
	}

	.vision-mission-item::before {
		right: -20px;
	}

	.vision-mission-item .icon-box {
		width: 70px;
		height: 70px;
	}

	.vision-mission-item .icon-box img {
		max-width: 30px;
	}

	.vision-mission-content h3 {
		margin-bottom: 15px;
	}

	.best-selling {
		padding: 25px 0 50px;
	}

	.best-selling-content {
		margin-bottom: 20px;
	}

	.best-selling-content-img {
		margin-bottom: 20px;
	}

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

	.team-readmore-btn {
		top: 20px;
		right: 20px;
	}

	.team-readmore-btn a {
		width: 50px;
		height: 50px;
	}

	.team-content {
		margin-bottom: 15px;
	}

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

	.our-faqs-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

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

	.our-faqs-image {
		text-align: center;
		margin-left: 0px;
	}

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

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

	.our-clients .our-clients-box {
		max-width: 100%;
	}

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

	.page-service-single {
		padding: 50px 0;
	}

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

	.service-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li {
		margin-bottom: 10px;
	}

	.service-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

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

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

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

	.service-feature-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry ul li {
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 18px;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 30px;
	}

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

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

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

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

	.post-entry blockquote {
		background-position: 25px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

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

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 6px 15px;
	}

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

	.page-project-single {
		padding: 50px 0;
	}

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

	.project-detail-list {
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-single-image {
		margin-bottom: 30px;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 30px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 20px;
	}

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

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.85;
	}

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

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

	.faq-catagery-list {
		padding: 20px;
		margin-bottom: 30px;
	}

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

	.faq-catagery-list ul li a::before {
		width: 16px;
		height: 16px;
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 40px;
	}

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

	.contact-us-image {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.6;
	}

	.contact-us-form {
		margin-left: 0;
	}

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

	.google-map {
		padding: 25px 0 50px;
	}

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

	.contact-info-box {
		gap: 20px;
		margin-top: 40px;
	}

	.contact-info-item {
		width: calc(33.33% - 13.33px);
	}

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

	.contact-info-item .icon-box i {
		font-size: 16px;
	}

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

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

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

	.error-page-image img {
		max-width: 80%;
	}

	.slicknav_btn {
		background: transparent;
	}


}

@media (min-width:768px) and (max-width:991px) {

	.contact-section .col-md-5 {
		margin-left: 30px;
	}

	.about-img-1 img {
		width: 70%;
	}

	.about-img-2 img {
		width: 75%;
	}

	.about-img-2 {
		bottom: 80px;
		right: 50px;
	}

	.certs_list .cert_img img,
	.labs_list .cert_img img,
	.stands_list .cert_img img {
		max-width: 85px;
	}

	.certifications_sec div.col-md-6:first-child::after {
		display: none;
	}

	.usi-products .section-title {}

	.our-blog-footer {
		margin-top: 0px;
		margin-bottom: 15px;
	}

	.intro-video .offset-1 {
		margin-left: 0px;
	}

	.intro-video {
		padding: 75px 0;
	}

	.intro-video h4 {
		font-size: 26px;
	}

	.intro-video h4 a {
		font-size: 26px;
	}

	#newslettersForm .form-group input {
		height: 50px;
	}

	.footer-newsletter-form .form-group {
		margin-bottom: 0;
		margin-top: 25px;
	}

	.footer-logo {
		text-align: center;
	}

	.footer-social-link-title h3 {
		font-size: 16px;
	}

	.about-us-images {
		margin-bottom: 0px;
	}

	.page-header {
		padding: 125px 0 10px;
		margin-top: 0;
	}

	.teaser {
		margin-top: 20px;
	}

	.teaser .card {
		padding: 1rem;
	}

	.teaser .card h2 {
		text-transform: uppercase;
		font-size: 1.2rem;
		line-height: 1.5;
		font-weight: bold;
		color: #fff;
	}

	.teaser .col-lg-3 {
		width: 30%;
	}

	.teaser .col-lg-5 {
		width: 25%;
	}

	.teaser .col-lg-4 {
		width: 45%;
	}

	.teaser picture>img {
		max-width: 100%;
		height: auto;
		margin-left: -3rem;
		margin-top: 200px;
		z-index: 1;
		position: relative;
	}

	.teaser__text p {
		font-weight: bold;
		color: #000;
		line-height: 1.33;
		font-size: 16px;
	}

	.clients-grid-section .col-md-3 {
		width: 20%;
	}

	.product_info_intro .col-md-6 {
		padding: 30px;
	}

	.product_info_intro .col-md-6 .col-md-6 {
		padding: 0;
		width: 100%;
	}

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

	.product_info_intro h4 {
		font-size: 26px;
	}

	.pdt_properties .col-md-10 {
		width: 100%;
		margin-left: 0px;
	}

	.pdt_properties .offset-3 {
		margin-left: 0px;
	}

	.pdt_properties table {
		width: 100% !important;
	}
}

@media only screen and (min-width: 768px) {
	.clients-grid .client-item.cl_last {
		border-bottom: none !important;
	}
}

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

	.product_img .offset-3 {
		margin-left: 0px !important;
	}

	.product_info_intro .col-md-6 .offset-3 {
		margin-left: 0px;
	}

	.footer-logo {
		text-align: center;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title {
		margin-bottom: 15px;
	}

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

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

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

	.hero-content .btn-default {
		margin-right: 15px;
		margin-bottom: 0px;
	}

	.hero-content .btn-default.btn-highlighted {
		margin: 0;
	}

	.certifications_sec div.col-md-6:first-child::after {
		display: none !important;
	}

	.about-us-images {
		background-position: left 10px bottom 10px;
		background-size: 20% auto;
		padding: 10px 45px 100px 0;
	}

	.feedback-counter {
		transform: rotate(-180deg) translate(0, 0);
	}

	.feedback-counter p {
		font-size: 12px;
		height: 38px;
		width: 38px;
		margin: 0 0 6px 0;
	}

	.feedback-counter h3 {
		font-size: 12px;
		width: calc(100% - 40px);
	}

	.about-us {
		padding-bottom: 15px;
	}

	.about-img-2 {
		max-width: 240px;
	}

	.certifications_sec {
		padding: 15px 0;
	}

	.certs_list {
		margin-bottom: 50px;
	}

	.certs_list .row .col-md-4 {
		width: 33.333333%;
	}

	.certifications_sec div.has_divider {
		padding-left: 0px;
	}

	.labs_list {
		padding-bottom: 30px;
	}

	.labs_list .row .col-md-4 {
		width: 33.3333333%;
	}

	.labs_list .row .col-md-3 {
		width: 25%;
		padding: 0 3px;
	}

	.experience-counter {
		height: 102px;
		width: 102px;
	}

	.experience-counter h3 {
		font-size: 22px;
	}

	.experience-counter p {
		font-size: 12px;
		line-height: 1.1em;
	}

	.about-us-content-body {
		gap: 0px;
	}

	.about-us-content-body::before {
		display: none;
	}

	.about-us-content-info {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-us-content-list {
		margin-bottom: 20px;
	}

	.about-us-contact-list {
		width: 100%;
	}

	.about-us-content-list ul li {
		margin-bottom: 10px;
	}

	.about-us-content-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-contact-item {
		margin-bottom: 20px;
	}

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

	.experience-counter {
		border: 3px solid #ffffff;
	}

	.experience-counter img {
		width: 60px;
	}

	.usi-products {
		padding: 60px 0 20px;
	}

	.usi-products .col-md-6 {
		margin-bottom: 15px;
		width: 50%;
		padding: 0 5px;
	}

	.usi_product_block {
		background: #ffffff;
		border-radius: 20px;
		padding: 10px;
	}

	.product__title__caption {
		font-size: 14px;
		font-weight: 700;
		color: #2c3e50;
		margin: 0;
		padding: 10px 10px;
		border-radius: 15px;
	}

	.intro-video {
		padding: 100px 0;
	}

	.intro-video h4 {
		color: #fff;
		font-size: 16px;
		line-height: 1.8;
	}

	.intro-video .offset-1 {
		margin-left: 0px;
	}

	.intro-video h4 a {
		line-height: 1.33;
		font-size: 16px;
	}

	.usi-products .our-blog-footer {
		margin-bottom: 15px;
	}

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

	.why-choose-img-2 img {
		aspect-ratio: 1 / 1.02;
	}

	.why-choose-img-4 img {
		aspect-ratio: 1 / 1.588;
	}

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

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-btn a {
		width: 60px;
		height: 60px;
	}

	.project-btn img {
		max-width: 20px;
	}

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

	.how-we-work-item {
		width: 100%;
	}

	.how-we-work-item .icon-box img {
		max-width: 50px;
	}

	.how-we-work-content h3 {
		font-size: 18px;
	}

	.how-work-company-slider {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-skill-image {
		padding-bottom: 83px;
	}

	.our-skill-img-1 {
		width: 200px;
		padding: 20px 0 0 20px;
	}

	.our-skill-img-2 {
		width: 130px;
		top: 20px;
	}

	.our-skill-img-3 {
		width: 200px;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

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

	.testimonial-content p {
		font-size: 16px;
	}

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

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 38px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item-content {
		margin-bottom: 10px;
	}

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

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

	.footer-social-links {
		justify-content: start;
		gap: 20px;
	}

	.footer-social-link-title h3 {
		font-size: 18px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

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

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

	.page-header-box h1 {
		font-size: 28px;
		margin-bottom: 5px;
	}

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

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

	.about-facility-item {
		width: 100%;
	}

	.vision-mission {
		background: linear-gradient(180deg, var(--primary-color) 40%, var(--white-color) 40%);
	}

	.vision-mission-box {
		padding: 20px;
		gap: 40px;
	}

	.vision-mission-item {
		width: 100%;
	}

	.vision-mission-item::before {
		height: 1px;
		width: 100%;
		top: auto;
		right: 0;
		bottom: -20px;
	}

	.vision-mission-item:nth-child(2n + 2)::before {
		display: block;
	}

	.vision-mission-item:last-child::before {
		display: none;
	}

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

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 30px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		top: 2px;
	}

	.faq-accordion .accordion-body {
		padding-right: 0;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.service-catagery-list h3 {
		font-size: 18px;
	}

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

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-feature-image {
		margin-bottom: 20px;
	}

	.service-feature-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry-list-image {
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		padding: 70px 20px 20px 20px;
	}

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

	.project-single-image {
		margin-bottom: 20px;
	}

	.project-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.project-info,
	.project-design-highlight {
		margin-bottom: 20px;
	}

	.project-entry h2 {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 18px;
		top: 5px;
	}

	.project-gallery-images {
		gap: 20px;
	}

	.project-gallery-img {
		width: calc(50% - 10px);
	}

	.contact-us-image img {
		aspect-ratio: 1 / 0.75;
	}

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

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

	.error-page-image img {
		max-width: 100%;
	}

	.page-header__inner h2 {
		font-size: 26px;
		margin-bottom: 5px;
	}

	.page-header__inner .thm-breadcrumb {
		margin: .5rem 0;
	}

	.teaser {
		margin-top: 20px;
	}

	.teaser__card h2,
	.teaser__card .h2 {
		margin: 1.5rem 0;
	}

	.teaser .card h2 {
		text-transform: uppercase;
		font-size: 1.3rem;
		line-height: 1.33;
	}

	picture>img {
		max-width: 75%;
		text-align: center;
		margin: 15px 0;
	}

	.teaser__text p:empty {
		display: none;
	}

	.mvv-icon {
		height: 50px;
		min-width: 50px;
	}

	.mvv-text {
		padding-top: 10px;
	}

	.mv-list li {
		width: 100%;
	}

	.mdev-break {
		border-bottom: none !important;
	}

	.page-header__inner .thm-breadcrumb li,
	.page-header__inner .thm-breadcrumb li a {
		font-size: 12px;
	}

	.product_info_intro h4 {
		font-size: 24px;
	}

	.product_info_intro .col-md-6 {
		padding: 30px 10px;
	}

	.product_info_intro p {
		font-size: 16px;
		line-height: 1.33;
	}

	.pdt_properties table {
		margin: 0 auto;
	}

	.certifications_sec .section-title img {
		width: 40px;
		margin-right: 0;
	}

	.product_img .col-md-12 {
		padding: 0px;
	}

	.cat_contact img {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 50px;
	}

	.dwn_btn a {
		line-height: 2;
	}

	.dwn_btn a svg {
		top: 0px
	}

	.post-entry p {
		line-height: 1.1;
	}

	.modal_close img {
		position: absolute;
		top: 10px;
		right: 10px;
	}
	header.main-header .header-sticky{
		background:transparent;
		backdrop-filter: none;
	}
}

@media (min-width:600px) and (max-width:767px) {
	.contact-section .col-md-5 {
		width: 50%;
	}

	.contact_form {
		padding: 30px 30px 25px 30px;
	}

	.product_info_intro .col-md-6 .col-md-6 {
		width: 50%;
	}
}

@media (max-width:600px) {
	.navbar-brand img {
		width: 80px;
	}


	.btn-default {
		font-size: 14px;
	}

	.page-header {
		padding: 100px 0 5px;
		margin-top: 0;
	}

	.agents_search .img_bg {
		width: 100%;
	}

	section#datasheet_request {
		margin-left: 15% !important;
		background: #202b64;
		width: 70%;
		margin-top: -50% !important;
	}

}


@media (min-width:480px) {
	.our-blog .col-lg-6 {
		width: 50%;
	}

}

@media (max-width:479px) {
	section#datasheet_request {
		margin-left: 5% !important;
		background: #202b64;
		width: 90%;
		border-radius: 15px;
		display: none;
		top: auto !important;
		left: auto !important;
		margin-top: -50% !important;
		transform: none !important;
	}
}