:root {
	--bs-primary: #FE5200;
	--bs-primary-rgb: 254, 82, 0;
	--bs-secondary: #f8f8f9;
	--bs-secondary-rgb: 248, 248, 249;
	--bs-light: #FEF4EB;
	--bs-light-rgb: 254, 244, 235;
	--bs-dark: #001d23;

	--primary: var(--bs-primary);
	--secondary: var(--bs-secondary);
	--light: var(--bs-light);
	--dark: var(--bs-dark);
	--charcoal: #414042;

	--bs-border-color: var(--bs-dark);
	--bs-border-radius: 10px;
	--bs-border-radius-lg: 30px;
	--bs-border-radius-xl: 50px;

	--plyr-color-main: #FE5200;
  --plyr-control-color: #FFFFFF;
  --plyr-range-thumb-background: #FE5200;
  --plyr-control-color-hover: #FE5200;
}

body {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #494850;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.text-box ul li {
	list-style: none;
	position: relative;
}

.text-box ul li::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	text-transform: none;
	content: "\f133";
	font-size: 19px;
	color: var(--primary);
	padding-right: 8px;
	position: relative;
	top: 3px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
}


/*** Button ***/
.btn {
	--bs-btn-padding-x: 2rem;
	--bs-btn-padding-y: 1rem;
	--btn-font-size: 1rem;
	--btn-border-radius: var(--bs-border-radius);
	--bs-btn-font-weight: 700;
	text-transform: uppercase;
}

.btn.btn-sm {
	--bs-btn-padding-x: 1rem;
	--bs-btn-padding-y: 0.5rem;
}

.btn-close {
	--bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.btn-primary {
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-bg: #fa944d;
	--bs-btn-hover-border-color: #fa944d;
}

.btn-outline-primary {
	--bs-btn-color: #ff6900;
	--bs-btn-border-color: #ff6900;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #ff6900;
	--bs-btn-hover-border-color: #ff6900;
	--bs-btn-focus-shadow-rgb: 13, 110, 253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #ff6900;
	--bs-btn-active-border-color: #ff6900;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #ff6900;
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: #ff6900;
	--bs-gradient: none;
}

/*** Navbar Start ***/
.navbar {
	--bs-navbar-padding-y: 0;
}

.navbar .navbar-nav {
	gap: 4rem;
}

@media (max-width: 1199.98px) {
	.navbar .navbar-nav {
		gap: 1rem;
	}
}

.navbar .navbar-nav .nav-link {
	font-size: 16px;
	padding: 10px 0;
	font-weight: bold;
	text-transform: uppercase;
	outline: none;
}

.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: flex;
		visibility: hidden;
		top: 100%;
		width: max-content;
		min-width: 260px;
		margin-top: 1px;
		transform: scaleY(0);
		transform-origin: top;
		transition: .35s;
		transition-delay: .35s;
		justify-content: stretch;
	}

	.navbar .nav-item.mega-dropdown .dropdown-menu {
		margin-top: 0;
		width: 100%;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transform: scaleY(1);
		visibility: visible;
		transition: .35s;
		transition-delay: 0s;
	}

	.navbar .nav-item:hover .dropdown-menu ul {
		opacity: 1;
		transition-delay: .35s;
	}

	.navbar .nav-item .dropdown-menu ul {
		opacity: 0;
		transition: opacity .35s ease;
	}
}

.dropdown-submenu .dropdown-menu {
	display: none;
}

.dropdown-submenu:hover .dropdown-menu {
	display: block;
}

ul.navbar-nav>li:last-child:after {
	background: none;
}

ul.navbar-nav>li>a {
	text-rendering: optimizeLegibility;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	margin: 0;
	line-height: 40px;
	padding: 30px 0;
	-webkit-transition: 350ms;
	-moz-transition: 350ms;
	-o-transition: 350ms;
	transition: 350ms;
}

/* Dropdown */

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -2px;
	border-radius: 0;
}


.dropdown-submenu:hover>a:after {
	border-left-color: #fff;
}

.dropdown-submenu.pull-left {
	float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

.dropdown-menu {
	text-align: left;
	left: 0;
	background: #fff;
	z-index: 100;
	border-radius: 0;
	border: 0;
	padding: 20px;
	border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
	border-bottom: solid 1px rgba(var(--bs-dark-rgb), .1);
	box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
}

.dropdown-menu-large {
	min-width: 400px;
}

.dropdown-menu-large>li>ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.dropdown-menu-large>li>ul>li>a {
	padding-left: 0;
}

.dropdown-menu-large>li>ul>li.active>a {
	color: var(--primary);
}

.navbar-nav>li>.dropdown-menu a {
	background: none;
}

.dropdown-menu li a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	text-decoration: none;
	padding: 12px 0;
	color: #333333;
}

.dropdown-menu li:last-child>a {
	border-bottom: 0;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>.dropdown-menu>.active>a {
	background: none;
	color: var(--primary);
}

.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
	color: var(--primary);
}

.exp {
	color: var(--primary);
	font-size: 21px;
	font-weight: 600;
}

/* Global Header */
.global-header {
	position: relative;
	width: 100%;
	z-index: 100;
	color: var(--bs-dark);
	--bs-border-color: var(--bs-dark);
	--transition-delay: .6s;
}

@media (max-width: 991px) {
	.global-header {
		--transition-delay: 0s;
	}
}

.global-header:has(~.hero-banner):has(.show),
.global-header.global-header--transparent:has(.show) {
	--bs-border-color: var(--bs-dark);
}

.global-header:has(~.hero-banner):not(:has(.show)),
.global-header.global-header--transparent:not(:has(.show)) {
	color: var(--bs-white);
}

.global-header .navbar-brand {
	position: relative;
	width: 200px;
	height: 85px;
}

.global-header .navbar-brand-subtitle {
	color: inherit;
	font-size: 13px;
	margin: -15px 0 0;
}

.global-header .navbar-brand-script img {
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.1) 15%, black 30%);
}

.global-header .star-logo-head {
	margin-block: auto;
	max-width: 100%;
	position: absolute;
	inset: 0;
	transition: opacity .3s var(--transition-delay) ease, visibility .3s var(--transition-delay) ease;
}

.global-header .star-logo-head--white {
	opacity: 0;
	visibility: hidden;
}

.global-header:has(~.hero-banner),
.global-header.global-header--transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	--bs-border-color: var(--bs-light);
	transition: background-color .3s var(--transition-delay) ease;
}

.global-header:has(~.hero-banner):not(:has(.show)) .star-logo-head--white,
.global-header.global-header--transparent:not(:has(.show)) .star-logo-head--white {
	opacity: 1;
	visibility: visible;
}

.global-header:has(~.hero-banner):not(:has(.show)) .star-logo-head--dark,
.global-header.global-header--transparent:not(:has(.show)) .star-logo-head--dark {
	opacity: 0;
	visibility: hidden;
}

.global-header:has(~.hero-banner):has(.show) .star-logo-head--white,
.global-header.global-header--transparent:has(.show) .star-logo-head--white {
	opacity: 0;
	visibility: hidden;
	--transition-delay: 0s;
}

.global-header:has(~.hero-banner):has(.show) .star-logo-head--dark,
.global-header.global-header--transparent:has(.show) .star-logo-head--dark {
	opacity: 1;
	visibility: visible;
	--transition-delay: 0s;
}

.global-header:has(~.hero-banner):not(:has(.show)) .navbar-collapse,
.global-header.global-header--transparent:not(:has(.show)) .navbar-collapse {
	border-color: var(--bs-white);
}

.global-header:has(~.hero-banner):not(:has(.show)) .navbar-nav,
.global-header.global-header--transparent:not(:has(.show)) .navbar-nav {
	--bs-nav-link-color: var(--bs-white);
	--bs-nav-link-hover-color: var(--bs-light);
}

.global-header p a {
	color: var(--bs-dark);
}

.global-header:has(~.hero-banner):not(:has(.show)) p a,
.global-header.global-header--transparent:not(:has(.show)) p a {
	color: var(--bs-white);
}

.global-header:has(~.hero-banner):has(.show),
.global-header.global-header--transparent:has(.show) {
	background-color: var(--bs-white);
	--transition-delay: 0s;
}

.global-header:has(~.hero-banner):not(:has(.show)) .form-control,
.global-header.global-header--transparent:not(:has(.show)) .form-control {
	--bs-body-bg: transparent;
	--bs-body-color: var(--bs-white);
}

.global-header:has(~.hero-banner):not(:has(.show)) .form-control::placeholder,
.global-header.global-header--transparent:not(:has(.show)) .form-control::placeholder {
	color: var(--bs-white);
}

.global-header:has(~.hero-banner) .form-control::placeholder,
.global-header.global-header--transparent .form-control::placeholder,
.global-header:has(~.hero-banner) p a,
.global-header.global-header--transparent p a,
.global-header:has(~.hero-banner) .navbar-nav .nav-link,
.global-header.global-header--transparent .navbar-nav .nav-link,
.global-header:has(~.hero-banner) .navbar-collapse,
.global-header.global-header--transparent .navbar-collapse,
.global-header:has(~.hero-banner) .form-control,
.global-header.global-header--transparent .form-control,
.global-header:has(~.hero-banner) .navbar-brand-subtitle,
.global-header.global-header--transparent .navbar-brand-subtitle {
	transition: color .3s var(--transition-delay) ease, border-color .3s var(--transition-delay) ease;
}

.global-header:has(~.hero-banner):has(.show) .form-control::placeholder,
.global-header.global-header--transparent:has(.show) .form-control::placeholder,
.global-header:has(~.hero-banner):has(.show) p a,
.global-header.global-header--transparent:has(.show) p a,
.global-header:has(~.hero-banner):has(.show) .navbar-nav .nav-link,
.global-header.global-header--transparent:has(.show) .navbar-nav .nav-link,
.global-header:has(~.hero-banner):has(.show) .navbar-collapse,
.global-header.global-header--transparent:has(.show) .navbar-collapse,
.global-header:has(~.hero-banner):has(.show) .form-control,
.global-header.global-header--transparent:has(.show) .form-control,
.global-header:has(~.hero-banner):has(.show) .navbar-brand-subtitle,
.global-header.global-header--transparent:has(.show) .navbar-brand-subtitle {
	--transition-delay: 0s;
}

/* Mega menu */
.megamenu-toggler {
	width: 32px;
	flex-direction: column;
}

.megamenu-toggler span {
	display: block;
	width: 32px;
	height: 4px;
	position: relative;
	background: var(--primary);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0;
	transition: transform 500ms cubic-bezier(.75, .2, .05, 1.0),
		background 500ms cubic-bezier(.75, .2, .05, 1.0),
		opacity 500ms ease;
}

.megamenu-toggler span:first-child {
	transform-origin: 0 0;
	margin-bottom: 5px;
}

.megamenu-toggler span:nth-last-child(2) {
	transform-origin: 0 100%;
	margin-bottom: 5px;
}

.navbar-collapse {
	border-width: 1px 0;
	border-style: solid;
	border-color: var(--bs-primary);
}

.global-header:has(~.hero-banner):has(.show:not(.mega-dropdown)) .navbar-collapse,
.global-header.global-header--transparent:has(.show:not(.mega-dropdown)) .navbar-collapse {
	border-bottom-color: transparent;
}

.dropdown-menu ul {
	list-style: none;
	padding: 0;
}

.dropdown-menu .megadropdown-title {
	font-weight: bold;
	color: var(--primary);
}

.dropdown-menu .mega-dropdown-wrapper {
	display: flex;
	flex-direction: column;
	max-height: 40vh;
	gap: 0 2rem;
	flex-wrap: wrap;
}

@media (max-width: 1600px) {
	.dropdown-menu .mega-dropdown-wrapper {
		max-height: 50vh;
	}
}

@media (max-width: 1400px) {
	.dropdown-menu .mega-dropdown-wrapper {
		max-height: 60vh;
	}
}

@media (max-width: 1199px) {
	.dropdown-menu .mega-dropdown-wrapper {
		max-height: 70vh;
	}
}

@media (min-width: 992px) {

	.dropdown:hover .dropdown-menu,
	.dropdown-menu.show {
		display: flex;
	}

	.mega-dropdown {
		position: static;
	}
}

@media (max-width: 767px) {
	.dropdown-menu {
		position: static !important;
	}

	.dropdown-menu a:not(.megadropdown-title) {
		color: var(--bs-body-color);
	}

	.dropdown:hover>.nav-link:not(.show)+.dropdown-menu {
		display: none;
	}

	.global-header .navbar-brand {
		width: 150px;
		height: 65px;
	}
}

/*** Topnav Start ***/
.bg-light2 {
	background-color: #f3f3f3;
}

.top-nav .btn-sm-square :hover {
	color: var(--primary);
}

/*** Hero Banner Start ***/

.hero-banner .hendrio-slider-area {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 600px;
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
}

.global-header~.hero-banner .hendrio-slider-area {
	padding: 10rem 0 5rem;
	min-height: 800px;
}

.hero-banner .hendrio-slider-area::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: rgba(0, 0, 0, .5);
	z-index: -1;
}

.hero-banner .slider-title {
	position: relative;
	z-index: 1;
}

.hero-banner .slider-title h4 {
	font-size: 16px;
	line-height: 42px;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 500;
	font-family: "Montserrat";
	margin: 0 0 12px 30px;
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-banner .slider-title h1 {
	font-size: 62px;
	line-height: 72px;
	color: #fff;
	text-transform: capitalize;
	margin: 0;
	font-weight: 700;
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-banner .slider-button {
	margin-top: 38px;
	text-align: center;
}

.hero-banner p {
	color: white;
	text-align: center;
	margin-top: 5%;
}

/*** Icon Box Start ***/

.usp-box .pt-fancy-box.pt-fancybox-4 {
	background-color: #ffffff;
	padding: 40px 30px;
	border: 1px solid #E0DBDB;
}

.usp-box .pt-fancy-box.pt-fancybox-4:hover img {
	transform: scale(1.1);
}

.usp-box .pt-fancy-box.pt-fancybox-4 img {
	transition: all 0.5s;
}

.usp-box .pt-fancybox-4 .pt-fancy-media {
	position: relative;
	margin-bottom: 30px;
	display: inline-block;
	width: 100%;
}

.usp-box .pt-fancybox-4 .pt-fancy-media i {
	font-size: 80px;
	line-height: 88px;
	color: var(--primary);
}

.usp-box .pt-fancybox-4 .pt-fancy-media span {
	float: right;
	font-family: 'Montserrat', sans-serif;
	opacity: 1;
	margin-top: -20px;
	font-style: normal;
	text-transform: capitalize;
	font-weight: 700;
	font-size: 64px;
	line-height: 72px;
	color: #eeeeee;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
}

.usp-box .pt-fancybox-4 .pt-fancy-info .pt-fancybox-sub-title {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--primary);
}

.pt-fancybox-4 .pt-fancy-info .pt-fancy-box-title {
	padding: 0 0 10px 0;
	border-bottom: 1px solid #F4EEEE;
	font-size: 19px;
}

.usp-box .pt-fancybox-4 .pt-fancy-info .pt-fancybox-description {
	margin-top: 15px;
}

.usp-box .pt-button.pt-btn-link {
	padding: 0;
	background: transparent;
	color: black;
}

.usp-box .pt-button {
	position: relative;
	width: auto;
	background: black;
	color: white;
	font-family: var(--title-fonts);
	padding: 12px 30px;
	line-height: 2;
	vertical-align: middle;
	display: inline-block;
}

.usp-box .pt-button span {
	z-index: 9;
	position: relative;
}

.usp-box .pt-text-primary {
	color: var(--primary);
}

.usp-box {
	padding: 130px 0;
}

/*** AboutUs Start ***/

.about-us .about-content h3 {
	font-size: 36px;
	margin-top: 22px;
	margin-bottom: 15px;
	line-height: 1.4;
}

.about-us .about-content .about-info {
	position: relative;
	margin-top: 10px;
	padding-left: 100px;
	padding-top: 10px;
}

.about-us .about-content .about-info i {
	display: inline-block;
	height: 80px;
	width: 80px;
	line-height: 80px;
	background-color: #fff;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
	color: var(--primary);
	font-size: 45px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	transition: .6s;
}

.about-us .about-content .about-info h4 {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 10px;
}

.about-us .about-content .about-info span {
	font-size: 16px;
	font-weight: 500;
	color: #6a6c72;
}

.about-us .about-image {
	text-align: right;
	position: relative;
}

.about-us .about-image .about-inner-box {
	background-color: var(--primary);
	padding: 35px 30px 22px;
	border-radius: 10px;
	transition: .6s;
	text-align: left;
	position: absolute;
	bottom: 10px;
	right: 10px;
	max-width: 390px;
}

.about-us .about-image .about-inner-box .content {
	position: relative;
	padding-left: 75px;
}

.about-us .about-image .about-inner-box .content .icon {
	position: absolute;
	left: 0;
	top: 0;
}

.about-us .about-image .about-inner-box .content .icon img {
	width: 45px;
	height: 45px;
}

.about-us .about-image .about-inner-box .content h3 {
	font-size: 19px;
	margin-bottom: 12px;
	font-weight: 500 !important;
}

.about-us .about-image .about-inner-box .content h3 a {
	color: #fff;
}

.about-us .about-image .about-inner-box .content p {
	color: #fff;
	font-size: 15px;
}

.about-us .section-title__tagline {
	position: relative;
	/*display: inline-block;*/
	font-size: 18px;
	line-height: 18px;
	color: var(--primary);
	padding-right: 15px;
	z-index: 1;
}


/*** Services Start ***/
.services .services-carousel .owl-stage-outer {
	padding-bottom: 3rem;
}

.services .services-carousel .owl-item .testimonial-item,
.services-carousel .owl-item.center .testimonial-item * {
	transition: .5s;
}

.services .services-carousel .owl-item.center .testimonial-item {
	background: var(--primary) !important;
	border-color: var(--primary) !important;
}

.services .services-carousel .owl-item.center .testimonial-item * {
	color: var(--light) !important;
}

.services .services-carousel .owl-dots {
	margin-top: 24px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.services .services-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	border: 1px solid #CCCCCC;
	border-radius: 15px;
	transition: .5s;
}

.services .services-carousel .owl-dot.active {
	background: var(--primary);
	border-color: var(--primary);
}

.services h3 a {
	color: var(--primary);
}

.services .meta-tags a {
	color: #404041;
}

.services .meta-tags a:hover {
	color: var(--primary);
}

.services {
	margin-top: 5%;
}

.single-blog {
	position: relative;
	margin: 40px 0 0;
}

.single-blog-img {
	width: 100%;
	overflow: hidden;
}

@media(min-width: 992px) {
	.single-blog-img img {
		height: 250px;
	}
}

.single-blog .post-content {
	background-color: #fff;
	-webkit-box-shadow: 0 12px 20px rgba(1, 84, 85, .1);
	box-shadow: 0 12px 20px rgba(1, 84, 85, .1);
	border-radius: 10px;
	padding: 10px 30px 20px;
	position: relative;
	margin: 0 auto;
	margin-top: -35px;
	width: calc(100% - 20px);
	z-index: 1;
	text-align: center;
}

.single-blog h3 {
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 8px;
}

.services .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 17px;
	line-height: 18px;
	color: var(--primary);
	padding-left: 15px;
	padding-right: 15px;
	z-index: 1;
}

.services .about-us .section-title__tagline::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	height: 6px;
	width: 6px;
	background-color: var(--primary);
	border-radius: 50%;
}

.services .section-title__tagline::after {
	content: "";
	position: absolute;
	top: 5px;
	right: 0;
	height: 6px;
	width: 6px;
	background-color: var(--primary);
	border-radius: 50%;
}

.services .section-title__tagline:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	height: 6px;
	width: 6px;
	background-color: var(--primary);
	border-radius: 50%;
}

/*** funfact-section ***/

.funfact-section {
	position: relative;
	padding: 120px 0;
	background: -webkit-linear-gradient(0deg, #ff690024, #FAF1EF 100%);
}

.funfact-section .content-box {
	position: relative;
	display: block;
	margin-right: 150px;
	background: #414042;
	border-radius: 25px;
	padding: 62px 50px 67px 50px;
}

.funfact-section .content-box .text-box p {
	color: #aca7a7;
	margin-bottom: 32px;
}

.funfact-section .content-box .sec-title {
	margin-bottom: 21px;
}

.funfact-section .big-text {
	position: absolute;
	top: -5px;
	right: -125px;
	font-size: 95px;
	line-height: 100px;
	font-family: "Urbanist", sans-serif;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: 3px 0px 0px #e4dcd8;
	writing-mode: vertical-lr;
}

.funfact-block-one {
	position: relative;
	padding-bottom: 32px;
}

.funfact-block-one .inner-box {
	position: relative;
	display: block;
	text-align: center;
	border: 1px dashed #35342d;
	border-radius: 25px;
	padding: 31px 20px 0px 20px;
}

.funfact-block-one .inner-box .count-outer {
	position: relative;
	display: inline-block;
	font-size: 48px;
	line-height: 50px;
	font-family: "Montserrat";
	font-weight: 800;
	color: #ff8c49;
	margin-bottom: 2px;
}

.funfact-block:first-child .funfact-block-one:first-child .inner-box .count-outer {
	color: #ff8c49;
}

.funfact-block:first-child .funfact-block-one:last-child .inner-box .count-outer {
	color: #ff8c49;
}

.funfact-block:first-child .funfact-block-one:first-child .inner-box {
	margin-bottom: 30px;
}

.funfact-block-one .inner-box .count-outer .symble {
	position: relative;
	font-size: 30px;
	top: -16px;
}

.funfact-block-one .inner-box .icon-box {
	position: relative;
	display: inline-block;
	width: 70px;
	height: 70px;
	line-height: 68px;
	background: #fff;
	font-size: 30px;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
	margin-bottom: -15px;
	border-radius: 50%;
	color: #60cf56;
	bottom: -20px;
}

.funfact-block:first-child .funfact-block-one:first-child .inner-box .icon-box {
	color: #fd6145;
}

.funfact-block:first-child .funfact-block-one:last-child .inner-box .icon-box {
	color: #ff8c49;
}

.funfact-block-one .inner-box p {
	position: relative;
	display: block;
	margin-bottom: 2px;
}

.sec-title .btn-box {
	position: absolute;
	right: 0;
	bottom: 12px;
}

.sec-title {
	position: relative;
	display: block;
	margin-bottom: 52px;
}

.working-section .sec-title .btn-box a i {
	color: #F36C23;
}

.sec-title h6 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 800;
	margin-bottom: 14px;
	text-transform: uppercase;
	padding-left: 28px;
}

.sec-title h6:before {
	position: absolute;
	content: "\f164";
	font-family: "Font Awesome 5 Free";
	font-size: 18px;
	left: 0;
	top: -1px;
}

.sec-title h2 {
	position: relative;
	display: block;
	font-size: 48px;
	line-height: 58px;
	font-weight: 700;
	margin: 0;
}

.sec-title.light h2 {
	color: #fff;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
	display: none !important;
}

.sec-title p {
	margin-top: 20px;
}

.sec-title h6 {
	color: var(--primary);
}

/*** Cta Start ***/

.cta .ctr-area {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	padding: 4% 7%;
}

.cta .ctr-bg-1 {
	background-image: url(../img/cta.jpg);
}

.cta .ctr-area:before {
	content: "";
	background-color: #000;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: .7;
}

.cta .ctr-text-content {
	text-align: center;
	position: relative;
}

.cta .ctr-text-content h2 {
	font-size: 40px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 1%;
}

.cta .ctr-text-content p {
	color: #fff;
	margin: 20px auto 25px;
	font-size: 16px;
}

.cta .ctr-text-content .default-btn {
	margin-top: 30px;
}

.cta .default-btn {
	background-color: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	display: inline-block;
	padding: 10px 30px;
	border-radius: 30px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	box-shadow: unset;
}

/*** It's Easy Start ***/

.its-easy .pq-bg-dark {
	padding-top: 4%;
	padding-bottom: 4%;
}

.its-easy .pq-section.pq-style-1 .pq-section-title {
	font-weight: 600;
	font-size: 48px;
	line-height: 56px;
	z-index: 9;
	color: #181f2e;
	padding: 0;
	margin: 0 0;
	position: relative;
	display: block;
}

.its-easy .pq-icon-box.pq-style-2 {
	text-align: center;
	position: relative;
	z-index: 1;
}

.its-easy .pq-icon-box.pq-style-2 .pq-icon {
	margin-bottom: 20px;
}

.its-easy .pq-icon-box.pq-style-2 .pq-icon i {
	font-size: 72px;
	line-height: 1;
	display: inline-block;
	color: var(--primary);
}

.its-easy .pq-icon-box.pq-style-2 .pq-icon-box-content .pq-icon-box-title {
	color: var(--dark);
	margin-bottom: 10px;
}

.its-easy .pq-icon-box.pq-style-2 .pq-icon-box-content .pq-icon-box-description {
	margin-bottom: 2;
	color: var(--dark);
}

/*** Who We Help Start ***/

.we-help .pq-section.pq-style-1.text-center {
	padding: 0 15em;
	margin-bottom: 60px;
}

.we-help .pq-section.pq-style-1 {
	position: relative;
	z-index: 1;
}

.we-help .pq-fancy-box.pq-style-1 {
	padding: 60px 45px;
	transition: all 0.5s ease;
	background: white;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.we-help .pq-fancy-box.pq-style-1 .pq-fancy-media {
	display: inline-flex;
	align-items: center;
}

.we-help .pq-fancy-box.pq-style-1 .pq-fancy-box-icon {
	margin-right: 30px;
	padding-right: 30px;
	position: relative;
}

.we-help .pq-fancy-box.pq-style-1 .pq-fancy-box-icon:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 90%;
	background: black;
	opacity: 0.1;
}

.we-help .pq-fancy-box.pq-style-1 .pq-fancy-box-icon i {
	font-size: 58px;
	line-height: 65px;
	transition: all 0.5s ease;
	display: inline-block;
}

.we-help .pq-fancy-box.pq-style-1 .pq-fancybox-description {
	margin: 20px 0;
	font-size: 18px;
}

.we-help .pq-button.pq-button-link {
	padding: 0;
	background: transparent;
	color: var(--primary);
}

.we-help .pq-button .pq-button-text {
	transition: all 0.5s ease;
}

.we-help .pq-button.pq-button-link:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transition: .3s cubic-bezier(.48, .05, .50, .94) .2s;
	-o-transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
	transition: .3s cubic-bezier(.47, .05, .50, .94) .2s;
}

.we-help .pq-bg-grey {
	background-color: #a4a4a4;
	padding-top: 4%;
	padding-bottom: 4%;
}

.we-help .pq-fancy-box.pq-style-1:hover {
	background-color: #414042;
	color: var(--light);
}

.we-help .pq-fancy-box-info a {
	color: var(--primary);
	font-size: 24px;
}

.we-help h2 {
	color: var(--light);
}

/*** Working process Start ***/

.working-process .single-process-box {
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.working-process .upper.single-process-box:before {
	position: inherit;
}

.working-process .single-process-box:before {
	position: absolute;
	content: "";
	right: 61px;
	top: 63px;
	width: 100%;
	height: 100%;
	background: url(../img/images/dots-line.png);
	background-repeat: no-repeat;
}

.working-process .process-thumb {
	position: relative;
	z-index: 1;
	width: 142px;
	height: 142px;
	line-height: 142px;
	border-radius: 71px;
	background-color: #f5f8fe;
	transition: .5s;
	display: inline-block;
}

.working-process .process-thumb:before {
	position: absolute;
	content: "";
	left: -9px;
	top: -9px;
	width: 160px;
	height: 160px;
	line-height: 160px;
	border-radius: 50%;
	border: 2px solid #152b63;
	opacity: .154;
	transition: .5s;
}

.working-process .process-number {
	position: absolute;
	right: -14px;
	top: 45px;
	transition: .5s;
}

.working-process .process-number span {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--primary);
	border-radius: 30px;
	font-family: 'Inter';
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	display: inline-block;
}

.working-process h4.process-title {
	font-size: 15px;
	padding: 24px 20px 11px;
}

.single-process-box {
	position: relative;
}

.single-process-box .process-thumb img {
	transition: transform 0.3s ease;
}

.single-process-box:hover .process-thumb img {
	transform: scale(1.1);
}

.single-process-box:hover .process-thumb {
	background-color: #f2eee2;
}

/*@media (min-width: 991.98px) {
.single_testimonial {
height: 300px;
}
}*/

.working-section {
	position: relative;
	padding: 115px 0 112px 0;
}

.working-section .sec-title .btn-box a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 46px;
	font-family: "Montserrat", sans-serif;
	color: #0c0c0c;
	font-weight: 800;
	text-transform: uppercase;
	padding-left: 60px;
}

.working-section .sec-title .btn-box a i {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 0;
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 25px;
	background: #faf1ef;
	text-align: center;
	border-radius: 50%;
}

/*** Our Work Start ***/

.our-work {
	margin-top: -5%;
}

/*** Testimonial Start ***/

.testimonial-carousel .owl-item .testimonial-text {
	background-color: #efefef;
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
	transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
	background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
	color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
	margin-top: 24px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	border: 1px solid #CCCCCC;
	transition: .5s;
}

.testimonial-carousel .owl-dot.active {
	background: var(--primary);
	border-color: var(--primary);
}

.testimonial .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
	color: var(--primary);
	padding-left: 15px;
	padding-right: 15px;
	z-index: 1;
}

.testimonial .section-title__tagline:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	height: 6px;
	width: 6px;
	background-color: var(--primary);
	border-radius: 50%;
}

.testimonial .section-title__tagline:after {
	content: "";
	position: absolute;
	top: 5px;
	right: 0;
	height: 6px;
	width: 6px;
	background-color: var(--primary);
	border-radius: 50%;
}

/*** Footer Start ***/

.footer .footer-area {
	background-color: var(--charcoal);
}

.footer .single-footer-widget {
	margin-bottom: 30px;
}

.footer .single-footer-widget p a {
	color: white;
}

.footer .single-footer-widget a img {
	margin-bottom: 25px;
}

.footer .single-footer-widget p {
	color: white;
	font-size: 14px;
}

.footer .single-footer-widget p i {
	color: var(--primary);
}

.footer .single-footer-widget .social {
	margin-top: 25px;
	padding-left: 0;
	margin-bottom: 0;
}

.footer .single-footer-widget .social li {
	list-style-type: none;
	display: inline-block;
}

.footer .single-footer-widget .social li a i {
	display: inline-block;
	border-radius: 6px;
	height: 32px;
	width: 32px;
	line-height: 34px;
	text-align: center;
	font-size: 21px;
	color: var(--charcoal);
	background: white;
	margin: 0 5px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.footer .single-footer-widget h2 {
	font-size: 22px;
	color: white;
	margin-bottom: 25px;
	font-weight: 600;
}

.footer .single-footer-widget .post-content {
	margin-bottom: 20px;
}

.footer .single-footer-widget .post-content .post-image a img {
	margin-bottom: 0;
	max-width: 80px;
}

.footer .single-footer-widget .post-content h4 {
	font-size: 15px;
	margin-bottom: 10px;
}

.footer .single-footer-widget .post-content h4 a {
	color: white;
}

.footer .single-footer-widget .post-content span {
	color: white;
	font-size: 12px;
}

.footer .single-footer-widget .useful-links-list {
	padding-left: 0;
	margin-bottom: 0;
}

.footer .single-footer-widget .useful-links-list li {
	list-style-type: none;
	margin-bottom: 15px;
	font-size: 15px;
}

.footer .single-footer-widget .useful-links-list li a {
	color: white;
}

.footer .single-footer-widget .useful-links-list li a:hover {
	color: var(--primary);
}

.footer .copyright-area {
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: #414042;
	border-top: 1px solid #292929;
}

.footer .copyright-area .copyright-area-content {
	text-align: center;
}

.footer .copyright-area .copyright-area-content p {
	color: #ffffff;
	font-size: 14px;
	margin-bottom: 0;
}

.footer button {
	margin-left: 30%;
	margin-top: 10%;
}


/*** INNER PAGE START ***/

/*** Branded Custom Marquees Header Start ***/

.branded-custom-marquees-header {
	margin-top: 5%;
}

/* Description Start */

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

.description h3 {
	font-size: 23px;
}

.description .section-title {
	margin-top: 10%;
}

.description .section-title1 h2 {
	font-size: 21px;
}

.description .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
	color: var(--primary);
	padding-right: 15px;
	z-index: 1;
	margin-bottom: 5%;
}

.carousel-indicators [data-bs-target] {
	background-color: var(--primary);
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
	background-color: var(--primary);
	border: 10px solid var(--primary);
}

@media (max-width: 767px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 250px;
	}

	#header-carousel .carousel-item img {
		width: 100%;
	}
}

/* Choose frame and size Start */

.choose-frame-and-size .choose-text {
	font-size: 30px;
	color: var(--primary);
}

.choose-frame-and-size .section-title h2 {
	font-size: 20px;
}

/* Table Section Start */

.table-section {
	padding-left: 8%;
	padding-right: 8%;
	margin-top: 3%;
}

.table-section .wrong {
	color: red;
	font-size: 18px;
	font-weight: 900;
}

.table-section .check {
	color: green;
	font-size: 18px;
	font-weight: 900;
}

table {
	width: 50%;
	/* Adjust the width as needed */
	margin: 0 auto;
	/* This centers the table horizontally */
	border-collapse: collapse;
}

th,
td {
	padding: 8px;
	border-bottom: 1px solid #ddd;
	text-align: left;
}

.table-section .border-color {
	border-color: var(--primary);
	border: 3px solid var(--primary);
}

.table-section th {
	border-color: var(--primary);
	border: 3px solid var(--primary);
}

.table-section .table>:not(:last-child)>:last-child>* {
	border-bottom-color: var(--primary);
}

.table-section tr {
	border-color: var(--primary);
	border: 3px solid var(--primary);
}

.table-section td {
	border-color: var(--primary);
	border: 3px solid var(--primary);
}

.table-section .table-header {
	background-color: #ffd9be;
}

.choose-frame-and-size-image img {
	width: 30%;
}

.choose-frame-and-size-image h2 {
	font-size: 20px;
	padding-left: 25%;
	padding-top: 2%;
}

.choose-frame-and-size-image .frame-image-2 {
	width: 20%;
}

.choose-frame-and-size-image {
	margin-bottom: 3%;
}

/* required walls start */

.required-walls h2 {
	font-size: 20px;
}

/*
.required-walls {
padding-left: 18%;
}
*/

/* Essential Slider */

.essential-carousel {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

@media (min-width: 576px) {
	.essential-carousel {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

.essential-carousel .owl-nav {
	position: absolute;
	width: 100%;
	height: 45px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.essential-carousel .owl-nav .owl-prev,
.essential-carousel .owl-nav .owl-next {
	position: relative;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: var(--primary);
	border-radius: 45px;
	font-size: 20px;
	transition: .5s;
}

.essential-carousel .owl-nav .owl-prev:hover,
.essential-carousel .owl-nav .owl-next:hover {
	background: var(--dark);
}

.essential-slider .blog-item img {
	transition: .5s;
	width: 64%;
	margin-left: 18%;
}

.blog-item2 {
	background-color: #f2f2f2;
	padding: 15px 15px;
}

.blog-item2 ul li {
	list-style: none !important;
}

.option_box {
	margin-bottom: 2%;
}

.option_box ul li {
	list-style: none !important;
}

.essential-slider .past-event-bg {
	background-color: #f2f2f2;
	text-align: center;
}

.essential-slider .upcoming-event-text {
	color: var(--dark);
}

.essential-slider .blog-item a {
	font-size: 14px;
	text-align: center;
	color: var(--dark);
	font-weight: 800;
}

.essential-slider .section-title__tagline-box {
	position: relative;
	display: inline-block;
}

.essential-slider .section-title span {
	color: var(--primary);
	display: block;
	margin-bottom: 7px;
}

.essential-slider .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.essential-slider .section-title__border-box {
	position: relative;
	display: block;
	height: 2px;
	width: 169px;
	background-color: var(--secondary);
	margin: 11px auto 0;
}

.essential-slider .section-title__border-box:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--light);
}

.essential-slider .section-title__border-box:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	height: 8px;
	width: 8px;
	border-radius: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: var(--light);
	border: 1px solid var(--secondary);
}

.essential-slider .section-title__title {
	margin: 0;
	color: var(--dark);
	font-size: 40px;
	line-height: 60px;
	font-weight: 600;
	margin-top: 8px;
}

.essential-slider .essential-text {
	text-align: center;
}

/* Walls Start */

.walls {
	margin-top: 3%;
}

.walls .walls-bg {
	background-color: #f2f2f2;
}

.walls a {
	color: var(--dark);
	font-size: 13px;
}

.amplify-your-brand-with-start .blog-item img {
	transition: .5s;
	width: 62%;
	margin-left: 21%;
}

.amplify-your-brand-with-start .blog-item:hover img {
	transform: scale(1.2);
}

@media (min-width: 991.98px) {
	.credit {
		background: var(--primary);
	}
}

.amplify-your-brand-with-start h2 {
	font-size: 40px;
}

.amplify-your-brand-with-start .amplify-bg {
	background-color: #F2F2F2;
	text-align: center;
}

.amplify-your-brand-with-start .amplify-text {
	color: var(--dark);
	text-align: center;
}

.amplify-your-brand-with-start a {
	font-size: 15px;
	font-weight: 800;
}

/* Tabs Start */

.templates-btn .btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}

.template-second {
	margin-top: 3%;
}

.template h2 {
	font-size: 30px;
	color: var(--primary);
}

/* Contact Us Start */

.contact-faqs-start {
	position: relative;
	width: 100%;
}

.contact-faqs-start .faqs-img {
	position: relative;
	height: 100%;
	padding: 10px;
}

.contact-faqs-start .faqs-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(max-width: 767.98px) {
	.contact-faqs-start .faqs-img {
		margin-bottom: 30px;
		height: auto;
	}
}

.card-style-seven {
	background: #fff;
	border-radius: 10px;
	padding: 55px 15px 42px
}

.blog-meta-four:hover,
.card-style-seven:hover {
	transform: translateY(-5px)
}

.card-style-seven .ribbon {
	width: 100%;
	height: 5px;
	left: 0;
	bottom: 0;
	border-radius: 3px
}

.contact-faqs-start .card {
	margin-bottom: 8px;
	padding-top: 8px;
	border: none;
	border-radius: 0;
	border-top: 1px solid #aa9166;
}

.contact-faqs-start .card:last-child {
	margin-bottom: 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #aa9166;
}

.contact-faqs-start .card-header {
	padding: 0;
	border: none;
	background: #ffffff;
}

.contact-faqs-start .card-header a {
	display: block;
	width: 100%;
	color: black;
	font-size: 18px;
	line-height: 25px;
}

.contact-faqs-start .card-header a span {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	text-align: center;
	background: var(--primary);
	color: black;
	font-weight: 700;
}

.contact-faqs-start .card-header [data-bs-toggle="collapse"]:after {
	font-family: 'font Awesome 5 Free';
	content: "\f067";
	float: right;
	color: #121518;
	font-size: 12px;
	font-weight: 900;
	transition: .3s;
}

.contact-faqs-start .card-header [data-bs-toggle="collapse"][aria-expanded="true"]:after {
	font-family: 'font Awesome 5 Free';
	content: "\f068";
	float: right;
	color: #121518;
	font-size: 12px;
	font-weight: 900;
	transition: .3s;
}

.contact-faqs-start .card-body {
	padding: 15px 0 0 0;
	font-size: 16px;
	border: none;
	background: #ffffff;
}

.contact-faqs-start .booking-form {
	padding: 50px 40px;
	background-color: #f2f2f2;
}

.form-style-one.sibling-four .theme-btn15 {
	line-height: 40px;
	padding: 20px 32px !important;
}

.contact-faqs-start form.form-style-one.sibling-four .form-inner {
	border-radius: 0;
	background-color: white;
	padding-left: 1%;
	padding-right: 0%;
	margin-top: 3%;
}

.contact-faqs-start form.form-style-one .form-inner {
	margin-bottom: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 20px;
	border-radius: 5px;
}

.contact-faqs-start input[type="text"],
.contact-faqs-start input[type="tel"],
.contact-faqs-start input[type="email"],
.contact-faqs-start textarea {
	padding: 12px;
	transition: .5s ease;
	width: 100%;
	display: block;
	width: 100%;
	padding: .375rem 2.25rem .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--bs-body-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--bs-body-bg);
	background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	border: var(--bs-border-width) solid var(--bs-border-color);
	border-radius: var(--bs-border-radius);
}

.contact-faqs-start textarea {
	min-height: 40px;
	border-radius: var(--bs-border-radius);
}

.wpcf7-list-item {
	margin-bottom: 10px;
	margin-left: 0;
	margin-right: 10px;
}

.contact-faqs-start form.form-style-one.sibling-four .form-inner textarea {
	min-height: 120px;
	border: white;
}

.contact-faqs-start textarea {
	border-radius: var(--bs-border-radius);
	padding: 12px;
	transition: .5s ease;
	width: 100%;
	color: var(--dark);
}

.contact-faqs-start .products-form {
	margin-left: 6%;
}

.contact-faqs-start .custom-control {
	position: relative;
	z-index: 1;
	min-height: 1.5rem;
	padding-left: 0;
	color-adjust: exact;
}

.contact-faqs-start input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

.contact-faqs-start .custom-control-input {
	position: absolute;
	left: 0;
	z-index: -1;
	width: 1rem;
	height: 1.25rem;
	opacity: 0;
}

.contact-faqs-start .custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
	font-size: 13px;
}

.contact-faqs-start .custom-control-input:checked~.custom-control-label::before {
	color: #fff;
	border-color: var(--primary);
	background-color: var(--primary);
}

.contact-faqs-start .custom-control-label::before {
	position: absolute;
	top: 0.25rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #adb5bd solid 1px;
}

.contact-faqs-start .col-xl-7 {
	padding-left: 20px;
}

.contact-faqs-start {
	margin-bottom: 5%;
}

/*** Unbranded Custom Marquees Start ***/

.features i {
	font-size: 24px;
	color: var(--primary);
}

.highlight {
	color: var(--primary);
}

/*** Unbranded Marquees Start ***/

.unbranded-printing {
	margin-top: 3%;
}

/*** Dust Extraction Start ***/

.dust-specification {
	margin-top: 5%;
}

/*** Wall Flags ***/

.specification-wall-flags {
	margin-top: 5%;
}

/*** Permanent Umbrells Start ***/

.permanent-umbrellas-specification {
	margin-top: 5%;
}

/*** Handheld Umbrella Start ***/

.handheld-umbrella-specification {
	margin-top: 5%;
}

.handheld-umbrella-printing {
	margin-top: 5%;
}

/*** Seg Banner Start ***/

.specification-seg-banner img {
	width: 40%;
}

/*** Other Infatable Products Start ***/

.other-inflatable-products-process {
	margin-top: -10%;
}

/*** Shipping Policy Start ***/

.shipping-policy-start {
	padding-left: 12%;
	padding-right: 12%;
	text-align: justify;
	margin-top: 5%;
	margin-bottom: 5%;
}

/*** Spare Sparts Starts ***/

.spare-parts-start a {
	color: var(--primary);
	font-weight: 800;
}

/*** About Us Start ***/

.section-title__tagline {
	position: relative;
	/*display: inline-block;*/
	font-size: 20px;
	line-height: 22px;
	color: var(--primary);
	z-index: 1;
	font-weight: 700 !important;
	text-transform: none !important;
}

h6.section-title__tagline {
	font-weight: 800 !important;
}

.about-us-start .about-us-1 {
	margin-top: 11%;
}

/* Why Choose Us Start */

.choose-us {
	margin-bottom: 5%;
}

.choose-us .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
	color: var(--primary);
	padding-right: 15px;
	z-index: 1;
}

.choose-us .choose-inner-content {
	margin-top: 25px;
	position: relative;
	padding-left: 35px;
}

.choose-us .choose-inner-content i {
	font-size: 20px;
	color: var(--primary);
	position: absolute;
	left: 0;
	top: 2px;
}

.choose-us .choose-inner-content h4 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 12px;
}

/*** Our Team Start ***/

.our-team .team-item img {
	transition: .5s;
}

.our-team .team-item:hover img {
	transform: scale(1.1);
}

.our-team .team-item .team-social .btn {
	color: var(--primary);
	background: #FFFFFF;
}

.our-team .team-item:hover .team-social {
	left: 0;
}

.our-team small {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}

.our-team p {
	margin-top: 5%;
	font-size: 14px;
}

.our-team .section-title__tagline {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 18px;
	color: var(--primary);
	padding-right: 15px;
	z-index: 1;
}

.our-team-header {
	margin-top: 5%;
}

.our-team-header h2 {
	color: var(--dark);
	font-size: 40px;
	font-style: normal;
}

/*** Our Community Header Start ***/

.our-community-header-start h2 {
	color: var(--dark);
	font-size: 40px;
	font-style: normal;
}

.our-community-header-start {
	margin-top: 5%;
}

/* Our Community Start */

.our-community .community-1 {
	margin-top: 11%;
}

.our-community {
	margin-bottom: 5%;
}

/*** Testimonial Header Start ***/

.testimonial-header-start h2 {
	color: var(--dark);
	font-size: 40px;
	font-style: normal;
}

.testimonial-header-start {
	margin-top: 5%;
}

/* Testimonial Start */

.testimonial-start .single_testimonial {
	position: relative;
	margin-top: 105px;
	padding: 15px 0px 15px 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.testimonial-start .single_testimonial_img {
	width: 150px;
	height: 150px;
	border: 5px solid var(--light);
	box-shadow: rgba(100, 100, 111, 0.15) 0px 7px 29px 0;
	border-radius: 50%;
	overflow: hidden;
	margin-left: 0;
	position: absolute;
	z-index: 9;
	top: -80px;
}

.testimonial-start .single_testimonial_text {
	background: #f2f2f2;
	padding: 43px 30px 40px 30px;
	border-radius: 25px;
	position: relative;
}

.testimonial-start .single_testimonial_text h4 {
	text-align: center;
	color: var(--dark);
	font-size: 25px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 5px;
	position: relative;
}

.testimonial-start .single_testimonial_text h4::before {
	left: auto;
	right: 15px;
}

.testimonial-start .single_testimonial_text h4::before {
	position: absolute;
	content: "";
	background: url(../img/images/testi_quot.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	top: -42px;
	left: 15px;
	z-index: 1;
}

.testimonial-start .single_testimonial_text .designation {
	color: var(--dark);
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
}

.testimonial-start .single_testimonial_text .feedback {
	color: var(--dark);
	text-align: center;
	margin: 20px 0px 25px 0;
}

.testimonial-start .single_testimonial_text .rating {
	font-size: 18px;
	text-align: center;
	color: var(--primary);
	display: block;
}

.testimonial-start .single_testimonial::after {
	position: absolute;
	content: "";
	background: var(--primary);
	width: 50%;
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: -1;
	border-radius: 25px;
}

.testimonial-start {
	margin-bottom: 5%;
}

.testimonial-start img {
	width: 120px;
	height: 120px;
	margin-bottom: 1%;
}

/*** Case Studies Header Start ***/

.case-studies-header-start h2 {
	color: var(--dark);
	font-size: 40px;
	font-style: normal;
}

.case-studies-header-start {
	margin-top: 5%;
}

/* Case Studies Start */

.case-studies-start .blog__item .image,
.event__inner-item .image {
	position: relative;
	overflow: hidden;
}

.case-studies-start .blog__item .image img {
	width: 100%;
}

.case-studies-start .blog__content {
	padding: 32px;
}

.case-studies-start .blog__content ul {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0%;
	font-size: 13px;
}

.case-studies-start .blog__content ul li {
	display: flex;
	align-items: center;
	gap: 3px;
}

.blogs .blog__content ul li span {
	font-size: 13px;
}

.case-studies-start .blog__item {
	box-shadow: 0 4px 25px 0 #0000000f;
}

.case-studies-start h4 a {
	color: var(--dark);
}

.case-studies-start .pb-25 {
	padding-bottom: 25px;
	font-size: 20px;
}

.case-studies-start {
	margin-top: 5%;
	margin-bottom: 5%;
}

.case-studies-start i {
	color: var(--primary);
}

.case-studies-start a {
	color: var(--dark);
}

/* Single Case Studies */

.single-case-studies-start .all-posts-wrap {
	padding-right: 40px;
}

.single-case-studies-start .blog-post-thumb img {
	margin-bottom: 30px;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
}

.single-case-studies-start .blog-posts-meta {
	padding-bottom: 10px;
}

.single-case-studies-start ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-case-studies-start .blog-posts-meta ul li {
	display: inline-block;
}

.single-case-studies-start .blog-posts-meta ul li i {
	margin-right: 6px;
	font-size: 16px;
	color: var(--primary);
}

.single-case-studies-start .blog-posts-meta ul li a {
	color: #696969;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 15px;
	margin-right: 15px;
}

.single-case-studies-start .block-quote {
	background-color: #f5f5f5;
	border: 0;
	padding: 25px 30px 35px;
	margin: 35px 0;
}

.single-case-studies-start .block-quote i {
	color: #dedede;
	font-size: 30px;
	font-style: italic;
	line-height: 40px;
}

.single-case-studies-start .block-quote p {
	margin: 0 0 8px;
	font-style: italic;
	line-height: 1.8;
}

.single-case-studies-start .entry-footer {
	margin-top: 15px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
	position: relative;
}

.single-case-studies-start .post-tags {
	font-size: 16px;
	font-weight: 500;
	color: #130f40;
	font-family: 'Rubik', sans-serif;
	padding-right: 20px;
}

.single-case-studies-start .entry-footer ul {
	position: absolute;
	top: 26px;
	left: 56px;
}

.single-case-studies-start .entry-footer ul li {
	display: inline-block;
	margin-right: 10px;
}

.single-case-studies-start .entry-footer ul li a {
	display: inline-block;
	background-color: var(--primary);
	color: #fff;
	font-size: 13px;
	padding: 6px 12px;
	border-radius: 4px;
}

.single-case-studies-start .latest-post.widget {
	padding-bottom: 20px;
}

.single-case-studies-start .widget {
	padding: 30px 40px 40px;
	margin-bottom: 30px;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
	box-shadow: 0 0 15px rgba(51, 51, 51, 0.10);
}

.single-case-studies-start .widget h4 {
	color: #130f40;
	padding-bottom: 15px;
	font-weight: 700;
	font-size: 24px;
}

.single-case-studies-start .recent-post-single {
	overflow: hidden;
	margin-bottom: 20px;
}

.single-case-studies-start .recent-post-thumb {
	float: left;
	width: 30%;
}

.single-case-studies-start .recent-post-cont.two {
	padding: 0 0 0 20px;
}

.single-case-studies-start .recent-post-cont {
	float: left;
	width: 70%;
}

.single-case-studies-start .recent-post-cont.two a {
	color: #130f40;
	font-family: 'Rajdhani';
	font-weight: 700;
}

.single-case-studies-start .recent-post-cont.two span {
	color: #696969;
}

.single-case-studies-start .widget-list li {
	padding: 0 0 15px;
}

.single-case-studies-start .widget-list li a {
	color: #696969;
	font-size: 18px;
}

.single-case-studies-start .widget-list li i {
	color: var(--primary);
	padding-right: 5px;
}

.single-case-studies-start .choose-inner-content {
	margin-top: 25px;
	position: relative;
	display: flex;
}

.single-case-studies-start .choose-inner-content i {
	font-size: 20px;
	color: var(--primary);
}

.single-case-studies-start .choose-inner-content p {
	margin-left: 25px;
}

.single-case-studies-start {
	margin-top: 5%;
	margin-bottom: 5%;
}

/* Others Case Studies */

.other_case_studies .owl-carousel .owl-nav {
	position: absolute;
	width: 98px;
	height: 60px;
	top: -110px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.other_case_studies .owl-carousel .owl-nav .owl-prev {
	width: 41px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	background: var(--primary);
	border-radius: 10px;
	font-size: 24px;
}

.other_case_studies .owl-carousel .owl-nav .owl-next {
	width: 41px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	background: var(--primary);
	border-radius: 10px;
	font-size: 24px;
}

.other_case_studies .blog__item {
	box-shadow: 0 4px 25px 0 #0000000f;
}

.other_case_studies .blog__item .image img {
	width: 100%;
}

.other_case_studies .blog__content {
	padding: 32px;
}

.other_case_studies .blog__content ul {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0%;
	font-size: 13px;
}

.other_case_studies .blog__content ul li {
	display: flex;
	align-items: center;
	gap: 3px;
}

.other_case_studies .blog__content i {
	color: var(--primary);
}

.other_case_studies a {
	color: var(--dark);
}

.other_case_studies .pb-25 {
	padding-bottom: 25px;
	font-size: 20px;
}

.other_case_studies {
	margin-top: -5%;
}

/*** Blogs Start ***/

.blogs .single-blog-post {
	margin-bottom: 30px;
	background: #fff;
	position: relative;
}

.blogs .single-blog-post .blog-post-content {
	padding: 20px 20px 35px;
	border: 1px solid #f2eee2;
}

.blogs i {
	color: var(--primary);
}

.blogs .single-blog-post .blog-post-content h3 {
	margin: 0;
	font-size: 20px;
}

.blogs .single-blog-post .blog-post-content h3 a {
	color: #1f2d30;
}

.blogs .single-blog-post .blog-post-content .default-btn {
	margin-top: 8%;
}

.blogs .default-btn {
	background-color: var(--primary);
	color: #fff;
	border: 1px solid var(--primary);
	display: inline-block;
	padding: 10px 30px;
	border-radius: 30px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
	box-shadow: unset;
}

.blogs .section-title {
	color: var(--primary);
}

/* Single Blogs Start */

/*.single-blogs .blog-right-col {
flex: 0 0 70%;
max-width: 70%;
padding-top: 65px;
}*/

.single-blogs .blog-classic .pbmit-featured-img-wrapper {
	position: relative;
}

.single-blogs .blog-classic .pbmit-featured-img-wrapper img {
	border-radius: 6px;
}

.single-blogs .blog-classic .pbmit-blog-classic-inner {
	padding: 0 30px 30px 30px;
	position: relative;
	margin-bottom: 35px;
	box-shadow: 0 9px 25px 0 rgba(0, 0, 0, .07);
	-webkit-border-bottom-right-radius: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-moz-border-radius-bottomleft: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.single-blogs .blog-classic .pbmit-blog-date {
	border-radius: 4px;
	position: absolute;
	color: #fff;
	padding: 10px 15px;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 16px;
	display: inline-block;
	top: -20px;
	background-color: var(--primary);
}

.single-blogs .blog-classic .pbmit-post-title {
	font-size: 30px;
	line-height: 42px;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 30px;
	display: inline-block;
}

.single-blogs .blog-classic .pbmit-blog-meta.pbmit-blog-meta-top {
	position: relative;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
	border-bottom: 1px solid #e5e8ef;
	padding-bottom: 25px;
	line-height: 22px;
	padding-top: 5px;
}

.single-blogs .blog-classic .pbmit-blog-meta {
	color: #616161;
}

.single-blogs .pbminfotech-meta-line {
	display: inline-block;
	font-weight: 400;
	position: relative;
	color: #8b95a0;
	margin-right: 30px;
}

.single-blogs .pbminfotech-meta-line i {
	color: var(--primary);
}

.single-blogs .screen-reader-text {
	display: none;
}

.single-blogs .pbmit-blog-meta a {
	color: #616161;
}

.single-blogs .blog-classic .pbmit-entry-content {
	margin-top: 25px;
}

.single-blogs .blog-classic .pbmit-entry-content ul li {
	padding-bottom: 10px;
	list-style: disc;
}

.single-blogs .blog-classic .pbmit-entry-content ul {
	display: block;
	padding-left: 15px;
}

.single-blogs .blog-classic .pbmit-entry-content ol li {
	padding-bottom: 10px;
	list-style: decimal;
}

.single-blogs .blog-classic .pbmit-entry-content ol {
	display: block;
	padding-left: 15px;
}

.single-blogs .pbminfotech-meta-line.cat-links:before {
	content: "";
	position: absolute;
	left: -18px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	top: 10px;
	background-color: var(--primary);
}

.single-blogs .pbminfotech-meta-line.comments-link:before {
	content: "";
	position: absolute;
	left: -18px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	top: 10px;
	background-color: var(--primary);
}

.single-blogs .pbmit-blog-meta.pbmit-blog-meta-bottom {
	padding-top: 16px;
	padding-bottom: 15px;
	margin-top: 40px;
	background-color: #f5f8fb;
	border-radius: 8px;
	display: inline-block;
	width: 100%;
}

.single-blogs .pbmit-blog-meta-bottom-left {
	float: left;
	position: relative;
	padding-top: 5px;
	color: #f5f8fb;
	padding-left: 15px;
}

.single-blogs .pbmit-blog-meta-bottom-left a {
	font-weight: 700;
	line-height: 13px;
	font-size: 13px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
	color: var(--dark);
	padding: 10px 14px;
	background-color: white;
	border-radius: 5px;
}

.single-blogs .pbmit-blog-meta-bottom-right {
	float: right;
	margin-top: -8px;
	margin-right: 10px;
}

.single-blogs .pbmit-blog-meta-bottom-right .pbmit-social-share-title {
	padding-right: 10px;
	position: relative;
	margin-right: 12px;
	margin-top: 11px;
	font-weight: 700;
	font-size: 16px;
}

.single-blogs .pbmit-blog-meta-bottom-right .pbmit-social-share-title {
	float: left;
}

.single-blogs .pbmit-blog-meta-bottom-right .pbmit-social-share {
	float: left;
}

.single-blogs .pbmit-blog-meta-bottom ul li {
	display: inline-block;
	padding-right: 10px;
	padding-top: 6px;
}

.single-blogs .pbmit-blog-meta-bottom .pbmit-social-share li a {
	border-radius: 4px;
	display: block;
	height: 40px;
	width: 27px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: var(--primary);
}

.single-blogs .sidebar .widget {
	padding: 30px 25px;
	border-radius: 6px;
	background-color: #f5f8fb;
	margin-bottom: 30px;
	border: 0;
	overflow: hidden;
}

.single-blogs .sidebar .widget .widget-title {
	display: inline-block;
	position: relative;
	width: 100%;
	font-weight: 500;
	font-size: 20px;
	line-height: 26px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	text-transform: capitalize;
	color: var(--dark);
}

.single-blogs .sidebar .widget .widget-title::before {
	position: absolute;
	height: 2px;
	border-radius: 8px;
	width: 40px;
	left: 12px;
	bottom: -1px;
	content: "";
	background-color: var(--primary);
}

.single-blogs .sidebar .widget .widget-title::after {
	position: absolute;
	height: 6px;
	width: 6px;
	left: 0;
	bottom: -3px;
	content: "";
	border-radius: 50%;
	background-color: var(--primary);
}

.recent-campaigns {
	position: relative;
	display: block;
}

.recent-campaigns li {
	position: relative;
	display: block;
	min-height: 80px;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #e3e9f4;
}

.recent-campaigns li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.recent-campaigns li .inner {
	position: relative;
	display: block;
	padding-left: 85px;
	min-height: 80px;
}

.recent-campaigns li .img-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 85px;
	height: 80px;
	overflow: hidden;
	border-radius: 0%;
}

.recent-campaigns li .img-box img {
	width: 100%;
	height: 80px;
}

.recent-campaigns li .img-box .overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.90);
	border-radius: 0%;
	opacity: 0;
	transform: perspective(400px) scale(0);
	transform-origin: top;
	transition: all 0.5s ease-in-out 0s;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.recent-campaigns li:hover .img-box .overlay-content {
	opacity: 1;
	transform: perspective(400px) scale(1.0);
	transition: all 0.3s ease-in-out 0.3s;
}

.recent-campaigns li .img-box .overlay-content a {
	color: #ffffff;
	font-size: 14px;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.recent-campaigns li .title-box {
	position: relative;
	display: block;
	padding-left: 20px;
	min-height: 80px;
}

.recent-campaigns li .title-box h4 {
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	margin: 0;
}

.recent-campaigns li .title-box h4 a {
	color: #222222;
	transition: all 200ms linear;
	transition-delay: 0.1s;
}

.recent-campaigns li .title-box h4 a:hover {
	color: var(--primary);
}

.recent-campaigns li .title-box .btns {
	position: relative;
	display: block;
	padding-top: 5px;
}

.recent-campaigns li .title-box .btns a {
	position: relative;
	display: inline-block;
	color: var(--primary);
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
}

.recent-campaigns li .title-box p {
	color: var(--primary);
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	margin: 12px 0 0;
}

.single-blogs .sidebar .widget .tagcloud a {
	font-size: 13px;
	position: relative;
	display: inline-block;
	color: #222d35;
	letter-spacing: 1px;
	padding: 10px 20px;
	margin-bottom: 15px;
	margin-right: 15px;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 2px 1px rgba(0, 0, 0, .06);
}

.single-blogs .sidebar .widget .tagcloud a:hover {
	box-shadow: 0 2px 2px rgba(0, 0, 0, .07);
}

.single-blogs ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-blogs .blog-classic .pbmit-post-title a {
	color: var(--dark);
}

/*** Process Start ***/

.process-start {
	margin-top: 5%;
}

.process-start h2 {
	font-size: 40px;
}

/*** Gallery Start ***/

.gallery-start {
	margin-top: 5%;
}

.gallery-start h2 {
	font-size: 40px;
}

/*** Templates Start ***/

.templates-start h2 {
	font-size: 40px;
	color: var(--primary);
}

.templates-start .template-text {
	color: var(--primary);
}

.templates-start {
	margin-top: 5%;
	margin-bottom: 5%;
	padding-left: 10%;
	padding-right: 10%;
}

.templates-start li {
	padding: 0;
	list-style: none;
}

.templates-start ul {
	padding: 0;
	margin: 0;
}

.templates-start a {
	color: var(--dark);
	font-weight: 500;
	font-size: 15pxl
}

.templates-start a:hover {
	color: var(--primary);
}

/*** Forms ***/
.form-control {
	padding: 0.75rem 1rem;
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--bs-primary);
}

.feedback-form-start {
	margin-top: 5%;
	margin-bottom: 5%;
	margin-left: 14%;
	margin-right: 14%;
}

.feedback-form-start h2 {
	font-size: 50px;
}

.feedback-form-start p {
	font-size: 17px;
}

.feedback-form-start .theme-btn15 {
	position: relative;
	overflow: hidden;
	font-size: 17px;
	font-weight: 700;
	line-height: 40px;
	border-radius: 5px;
	padding: 0 24px;
	text-align: center;
	border: none;
	outline: none;
	text-transform: capitalize;
	display: inline-block;
	background: var(--primary);
	color: #fff;
	z-index: 2;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	overflow: hidden;
	border: none;
}

.feedback-form-start .theme-btn15::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0%;
	width: 0%;
	background-color: var(--primary);
	border-radius: 100% 100% 5px 5px;
	z-index: -1;
	transition: all.4s;
}

.feedback-form-start .theme-btn15:hover {
	background-color: var(--dark) !important;
}

.feedback-form-start .form-control {
	min-height: 55px;
}

.feedback-form-start .theme-btn15::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 0%;
	width: 0%;
	background-color: var(--dark);
	border-radius: 5px 5px 100% 100%;
	z-index: -1;
	transition: all.4s;
}

.feedback-form-start .theme-btn15.black::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 0%;
	width: 0%;
	background-color: #222;
	border-radius: 5px 5px 100% 100%;
	z-index: -1;
	transition: all.4s;
}

.feedback-form-start .theme-btn15.black:hover {
	color: #fff;
	transform: translateY(-5px);
	background-color: #fff;
	transition: all.4s;
}

.feedback-form-start .theme-btn15:hover::after {
	height: 100%;
	width: 100%;
	border-radius: 5px 5px 5px 5px;
	transition: all.4s;
}

.feedback-form-start .theme-btn15:hover::before {
	height: 100%;
	width: 100%;
	border-radius: 5px 5px 5px 5px;
	transition: all.4s;
}

.feedback-form-start .theme-btn15:hover {
	color: var(--light);
	transform: translateY(-5px);
	background-color: #fff;
	transition: all.4s;
}

/*** Event Product Checklist Start ***/

.event-product-checklist-start {
	margin-top: 5%;
	margin-bottom: 5%;
}

/*** Contact Us Start ***/

.contact-us .contact-section {
	border-radius: var(--bs-border-radius);
	-webkit-box-shadow: 0 4px 40px -10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 40px -10px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.contact-us .contact-section .contact-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
}

.contact-us .contact-section .contact-list .contact-icon-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contact-us .contact-section .contact-list .contact-icon-list .single-icon {
	width: 50px;
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: var(--primary);
	border: 1px solid transparent;
	-webkit-transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.contact-us .contact-section .contact-list .contact-icon-list .single-icon i {
	color: var(--light);
	font-size: 20px;
}

.contact-us .contact-section .contact-list .contact-icon-list .divider-ver {
	width: 1px;
	height: 100%;
	background-color: #CCCDD3;
}

.contact-us .contact-section .contact-list .contact-content .subtitle {
	color: var(--primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
	margin-bottom: 10px;
}

.contact-us .contact-section .contact-list .contact-content .title {
	color: var(--dark);
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
}

.contact-us .top-padding4 {
	padding-top: 70px;
}

.contact-us .send-box {
	border-radius: 15px;
	padding: 30px;
	background: var(--light);
	-webkit-box-shadow: 0 4px 40px -10px rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 40px -10px rgba(0, 0, 0, 0.15);
}

.contact-us .custom-form .form-group {
	margin-bottom: 30px;
}

.contact-us .send-box .custom-form .custom-label {
	margin-bottom: 15px;
	font-weight: 400;
}

.contact-us .custom-form .custom-label {
	font-size: 16px;
	color: var(--dark);
}

.contact-us .custom-form .custom-input {
	padding: 17px 20px;
	border-radius: 8px;
	height: 50px;
	background-color: #F8F8F8;
	border: 1px solid #CCCDD3;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: var(--dark);
}

.contact-us .custom-form .custom-textarea {
	padding: 17px 20px;
	border-radius: 8px;
	background-color: #F8F8F8;
	border: 1px solid #CCCDD3;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: var(--dark);
	min-height: 170px;
}

.contact-us .map-frame {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	min-height: 400px;
}

.contact-us .top-bottom-padding2 {
	padding-top: 70px;
	padding-bottom: 20px;
}

.contact-us iframe {
	height: 100%;
	border-radius: 2%;
}

.contact-us .theme-btn15 {
	position: relative;
	overflow: hidden;
	font-size: 17px;
	font-weight: 700;
	line-height: 40px;
	border-radius: 5px;
	padding: 0 24px;
	text-align: center;
	border: none;
	outline: none;
	text-transform: capitalize;
	display: inline-block;
	background: var(--primary);
	color: #fff;
	z-index: 2;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
	overflow: hidden;
	border: none;
}

.contact-us .theme-btn15::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0%;
	width: 0%;
	background-color: var(--primary);
	border-radius: 100% 100% 5px 5px;
	z-index: -1;
	transition: all.4s;
}

.contact-us .theme-btn15::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 0%;
	width: 0%;
	background-color: var(--dark);
	border-radius: 5px 5px 100% 100%;
	z-index: -1;
	transition: all.4s;
}

.contact-us .theme-btn15.black::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 0%;
	width: 0%;
	background-color: #222;
	border-radius: 5px 5px 100% 100%;
	z-index: -1;
	transition: all.4s;
}

.contact-us .theme-btn15.black:hover {
	color: #fff;
	transform: translateY(-5px);
	background-color: #fff;
	transition: all.4s;
}

.contact-us .theme-btn15:hover::after {
	height: 100%;
	width: 100%;
	border-radius: 5px 5px 5px 5px;
	transition: all.4s;
}

.contact-us .theme-btn15:hover::before {
	height: 100%;
	width: 100%;
	border-radius: 5px 5px 5px 5px;
	transition: all.4s;
}

.contact-us .theme-btn15:hover {
	color: var(--light);
	transform: translateY(-5px);
	background-color: #fff;
	transition: all.4s;
}

.contact-us {
	margin-bottom: 5%;
}

/*** Merchendise Start ***/

.merchandise-specification-start i {
	color: var(--primary);
	font-size: 20px;
}

/*** Fence Mesh Banner Start ***/

.specification-fence-mash-banner {
	margin-top: 5%;
}

.fence-banner-para {
	padding-top: 10%;
}

.printing-fence-mesh-banner {
	margin-top: 5%;
}

.printing-fence-mesh-banner i {
	color: var(--primary);
	font-size: 20px;
}

.printing-fence-mesh-banner .printing-para {
	margin-top: 15%;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	color: var(--dark);
	text-decoration: none;
}

ul,
ol {
	padding-left: 15px;
}

.txt_box h4,
.txt_box b,
.txt_box h3 {
	color: var(--primary);
}

.txt_box2 h4,
.txt_box2 b,
.txt_box2 strong,
.txt_box2 h3 {
	color: var(--primary);
}

.txt_box2 p {
	margin-bottom: 8px;
}

.txt_box ul,
.txt_box ol {
	padding-left: 0;
}

.txt_box ul li {
	padding-bottom: 10px;
	list-style: none;
	position: relative;
	/*! padding-left: 10px; */
	display: block;
	font-size: 16px;
}

.txt_box ul li::before {
	display: inline-block;
	font-family: bootstrap-icons !important;
	/*! font-style: normal; */
	/*! font-weight: normal !important; */
	/*! font-variant: normal; */
	text-transform: none;
	content: "\f133";
	font-size: 19px;
	color: var(--primary);
	padding-right: 8px;
	/*! padding-top: 7px; */
	position: relative;
	top: 3px;
}

.about-how {
	padding-top: 20px;
	padding-bottom: 70px;
}

.about-how h1.intro-header {
	text-align: center;
}


.about-how-content {
	position: relative;
	width: 100%;
	max-width: 1000px;
	min-height: 300px;
	margin-top: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.about-how-content::before,
.about-how-content::after {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
}

.about-how-content::before {
	left: 0;
}

.about-how-content::after {
	left: 50%;
}

.about-how-content .about-how-steps {
	width: 100%;
}

.block-1-2 .bgrid {
	width: 50%;
}

.about-how-content .step {
	padding: 0 40px 0 60px;
	position: relative;
	min-height: 200px;
	float: left;
}

.about-how-content .step h3 {
	margin-bottom: 8px;
	font-size: 20px;
}

.about-how-content .step::before {
	display: block;
	/*font-family: "muli-bold";*/
	font-size: 2rem;
	content: attr(data-item);
	color: #ffffff;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary);
	box-shadow: 0 0 0 15px #ffffff;
	z-index: 500;
	position: absolute;
	/*top: -12px;*/
	left: -27px;
}

.theme_color2 {
	color: var(--primary);
}

@media(min-width:1199px) {

	.amplify-your-brand-with-start.v2 .amplify-bg {
		height: 490px;
		margin-top: 12px;
	}
}

.amplify-your-brand-with-start.v2 .amplify-bg ul li {
	list-style: disc !important;
	text-align: left;
}

.main-timeline:after {
	content: '';
	display: block;
	clear: both;
}

.main-timeline .timeline {
	border-right: 10px solid #404041;
	width: 50%;
	padding: 10px 20px 10px 0;
	box-shadow: 10px 0 #404041;
	float: left;
}

.main-timeline .timeline-content {
	text-align: center;
	display: block;
	position: relative;
	border-radius: 10px 10px;
}

.main-timeline .timeline-content:hover {
	text-decoration: none;
}

.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
	content: "";
	background: #404041;
	width: 80px;
	height: 3px;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: -120px;
}

.main-timeline .timeline-content:after {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	right: -125px;
}

.main-timeline .timeline-year {
	color: #fff;
	background: #404041;
	font-size: 40px;
	font-weight: 500;
	padding: 15px 25px;
	border-radius: 100px;
	border: 5px solid #404041;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: -350px;
}

.main-timeline .title {
	color: #fff;
	background: #404041;
	font-size: 22px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 10px 10px 9px;
	margin: 0;
	border-radius: 10px 10px 0 0;
}

.main-timeline .description {
	color: #555;
	background: linear-gradient(#f1f1f1, #d9d9d9);
	font-size: 15px;
	letter-spacing: 1px;
	padding: 20px 10px;
	border-radius: 0 0 10px 10px;
	margin: 0;
}

.main-timeline .timeline:nth-child(even) {
	float: right;
	border: none;
	border-left: 10px solid #404041;
	box-shadow: -10px 0 #404041;
	padding: 10px 0 10px 20px;
	margin: 0 0 0 10px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
	right: auto;
	left: -120px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
	right: auto;
	left: -125px;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
	right: auto;
	left: -350px;
}

.theme_color2 {
	color: var(--primary) !important;
}

@media screen and (max-width:767px) {
	.main-timeline .timeline-year {
		font-size: 30px;
		font-weight: 500;
		padding: 5px 20px;
	}

	.main-timeline .timeline,
	.main-timeline .timeline:nth-child(even) {
		width: 100%;
		padding: 100px 0 20px 20px;
		margin: 0 0 0 10px;
		box-shadow: -10px 0 #404041;
		border: none;
		border-left: 10px solid #404041;
		float: none;
	}

	.main-timeline .timeline-content:before,
	.main-timeline .timeline-content:after,
	.main-timeline .timeline:nth-child(even) .timeline-content:before,
	.main-timeline .timeline:nth-child(even) .timeline-content:after {
		top: -50px;
		left: -20px;
		width: 50px;
	}

	.main-timeline .timeline-content:after,
	.main-timeline .timeline:nth-child(even) .timeline-content:after {
		width: 15px;
		right: auto;
		left: 15px;
	}

	.main-timeline .timeline-year,
	.main-timeline .timeline:nth-child(even) .timeline-year {
		transform: translateX(-50%);
		top: -85px;
		left: 50%;
		right: auto;
	}

	.main-timeline {
		margin-right: 10px;
	}
}

/* Search */

.search-icon {
	color: var(--primary);
}

.global-header .search-button {
	position: absolute;
	inset: 0 auto;
	margin: auto 0 auto 0.5rem;
}


/* Custom Hero Video Styles on Custom Landing Page */
.hero-banner {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: white;
	height: 80vh;
	min-height: 600px;
	text-align: center;
	border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
}

.hero-banner .hero-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-banner .hero-banner-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	height: 100%;
}

.hero-banner .hero-banner-content h1 {
	font-weight: 800 !important;
}

.hero-banner .hero-banner-content h1 span {
	color: var(--primary);
}

.hero-banner .hero-banner-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	z-index: 0;
}


/* Landing Page Header */
.landing-placeholder::placeholder {
	color: white;
}

.vendor-carousel .owl-stage {
	transition-timing-function: linear !important;
}

.partner-image-wrapper {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 0.3s ease;
}

.partner-carousel-item:hover .partner-image-wrapper {
	transform: scale(1.05);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.partner-carousel-item:hover .partner-image {
	transform: scale(1.1);
}

.no-products-message {
	color: #d9534f;
	/* Red color */
	font-size: 16px;
	margin-top: 10px;
	font-weight: bold;
}

.btn-group-toggle .btn {
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-size: 0.8em;
}

.btn-group-toggle .btn.active {
	background-color: var(--primary);
	color: white;
	border-color: var(--primary);
	font-weight: 600;
}

.btn-group-toggle .btn:hover {
	background-color: #e55e00;
	color: #fff;
}

.quote-steps .col-md-4 {
	border-color: var(--primary) !important;
}

.quote-steps .col-md-3 {
	border-color: var(--primary) !important;
}

#quote-items-list .quote-item {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}


.row.no-gutter>[class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}



@media (max-width: 1200px) {
	.partner-carousel-item {
		flex: 0 0 calc(33.333% - 20px);
		max-width: calc(33.333% - 20px);
	}
}

@media (max-width: 991px) {

	.custom-contact-landing .col-md-7,
	.custom-contact-landing .col-md-5 {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.partner-carousel-item {
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}

	.quote-steps img.w-50 {
		width: 5em !important;
	}

	.quote-steps .col-md-6.justify-content-end {
		justify-content: center !important;
		display: flex;
	}

	.quote-steps .col-md-6.mobile-responsive-quote {
		justify-content: center !important;
		display: flex;
		order: 1;
	}

	.quote-steps .row.flex-wrap.pt-4.g-4 {
		margin: 0 0;
		text-align: center;
	}

	.quote-steps .col-md-4.border-start,
	.quote-steps .col-md-4.border-end {
		border: none !important;
	}

	.quote-form-container {
		width: 100%;
		right: -100%;
	}

	.custom-form p {
		display: flex;
		flex-direction: column;
	}

	.quote-steps .product-item .pe-4 {
		padding-right: 0 !important;
	}
}

@media (max-width: 480px) {
	.partner-carousel-item {
		flex: 0 0 calc(100% - 20px);
		max-width: calc(100% - 20px);
	}
}


@media (max-width: 768px) {
	.hero-banner .hero-banner-content h1 {
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}

	.hero-banner .hero-banner-content span {
		width: 100% !important;
		text-align: center;
	}
}


/* Carousel */

.partner-carousel-section .container {
	width: 100%;
	column-gap: 40px;
	border-radius: 10px;
}

.partner-carousel-section .container .side-info hr {
	display: block;
	background: #005baa;
	height: 4px;
	width: 20%;
	margin: 18px 0;
}

.partner-carousel-section .container a {
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	color: #717171;
	font-weight: 500;
	background: #fff;
	border-radius: 50px;
	border: 2px solid #c2c2c2;
	padding: 8px 16px;
	margin-top: 20px;
	transition: 0.3s ease-in-out;
}

.partner-carousel-section .container a:hover {
	border: 2px solid #005baa;
	color: #005baa;
}


.partner-carousel-section .swiper-pagination-bullet,
.partner-carousel-section .swiper-pagination-bullet-active {
	background: #fff;
}

.partner-carousel-section .swiper-pagination {
	bottom: 20px !important;
	background: var(--primary);
	display: flex;
	left: 50%;
	transform: translate(-50%);
	padding: 0.3em;
	border-radius: 20px;
	width: initial;
}

.partner-carousel-section .swiper-slide {
	aspect-ratio: 4/3;
	border-radius: var(--bs-border-radius-lg);
	overflow: hidden;
	position: relative;
	background: white;
}

.partner-carousel-section .swiper-slide img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.partner-carousel-section .swiper-slide:hover {
	transform: scale(1.1);
}

.partner-carousel-section .swiper-slide h2 {
	color: #fff;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 10px;
	padding: 0 0 0 24px;
	text-transform: uppercase;
	border-radius: 25px;
}

.partner-carousel-section .swiper-slide p {
	color: #dadada;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	padding: 0 24px;
	font-size: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.partner-carousel-section .swiper-slide a {
	margin: 20px 25px 50px !important;
	padding: 8px 16px !important;
	font-size: 14px;
	border: none;
}

.partner-carousel-section .swiper-slide a:hover {
	border: none;
}

.partner-carousel-section .swiper-slide div {
	display: none;
	opacity: 0;
	padding-bottom: 10px;
}

.partner-carousel-section .swiper-slide-active div {
	display: block;
	opacity: 1;
}

/* Additional Products Gallery */

.swiper-section .additional-swiper {
	overflow: visible;
	width: 100%;
	margin-bottom: 4em;
}

.swiper-section .swiper-button-prev-second,
.swiper-section .swiper-button-next-second {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--bs-primary);
	color: white;
	border: none;
	position: relative;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.swiper-section .swiper-button-prev-second::after,
.swiper-section .swiper-button-next-second::after {
	font-size: 18px;
}

.swiper-section .swiper-button-prev-second:hover,
.swiper-section .swiper-button-next-second:hover {
	opacity: 0.8;
}

.swiper-section .swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Testimonial Slider */

.swiper-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.swiper-section .swiper-outer {
	position: relative;
	width: 100%;
	overflow: visible;
}

.swiper-section .container {
	position: relative;
	overflow: visible;
}

.swiper-section .my-swiper {
	overflow: visible;
	width: 100%;
	margin-bottom: 4em;
}

.swiper-section .swiper-wrapper {
	overflow: visible;
}

/* Navigation Buttons Styling */
.swiper-section .swiper-nav-buttons {
	display: flex;
	gap: 2em;
	justify-content: end;
}

.swiper-section .swiper-button-prev,
.swiper-section .swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--bs-primary);
	color: white;
	border: none;
	position: relative;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.swiper-section .swiper-button-prev::after,
.swiper-section .swiper-button-next::after {
	font-size: 18px;
}

.swiper-section .swiper-button-prev:hover,
.swiper-section .swiper-button-next:hover {
	opacity: 0.8;
}

.swiper-section .swiper-button-disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.swiper-section .additional-swiper .services-icon {
	bottom: 1em;
	right: 1em;
	width: 40px;
	height: 40px;
	text-align: center;
	transition: transform 0.3s;
}


.swiper-section .additional-swiper .swiper-image img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.swiper-section .additional-swiper .swiper-slide:hover .services-icon {
	transform: scale(1.2);
	/* Enlarge icon on hover */
}


/* Landing Contact Form */
.custom-contact-form .form-control {
	border-color: var(--primary);
	background: transparent;
}

.custom-contact-form .form-select {
	border-color: var(--primary);
	background: transparent;
}

.landing-page-gallery .col-md-3 {
	position: relative;
}

.landing-page-gallery .col-md-3 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Modals */
.modal {
	--bs-modal-padding: 2rem;
}

.modal-header {
	--bs-modal-header-padding: calc(var(--bs-modal-padding) * 0.5) var(--bs-modal-padding);
	--bs-modal-header-border-width: 0;
}

/* Pagination */
.pagination {
	--bs-pagination-active-bg: var(--bs-primary);
	--bs-pagination-active-border-color: var(--bs-primary);
	--bs-pagination-focus-color: var(--bs-primary);
	--bs-pagination-hover-color: var(--bs-primary);
	--bs-pagination-color: var(--bs-dark);
}

/* Misc */
.grecaptcha-badge {
	display: none;
}

.form-select {
	min-height: 55px;
}


/* Capabilities */

.capability-thumbnail {
	position: absolute;
	top: -25px;
	bottom: -25px;
	right: -20px;
	transform: translateX(35%);
	width: 30%;
	max-width: 200px;
	transform: rotate(-5deg);
	transition: all 0.3s ease;
}

.capability-thumbnail:hover {
	transform: rotate(-3deg);
}

@media (max-width: 991px) {

	.capability-thumbnail {
		right: -69px;
		width: 35%;
	}
}

@media (max-width: 767px) {
	.capability-thumbnail {
		position: static;
	}
}

.transparent-image {
	mix-blend-mode: multiply;
}

.card h3, .card p {
	color: #494850;
}

@media (max-width: 768px) {
	.hero-banner.big-content .hero-banner-content h1 {
		font-size: 1.25rem;
	}
	.hero-banner.big-content .hero-banner-content .lead {
		font-size: 1rem;
	}
}

#breadcrumbs {
	margin: 1em 0;
}

#breadcrumbs a {
	color: #414042;
	transition: all 0.3s ease;
}
#breadcrumbs a:hover {
	color: var(--primary);
}

#breadcrumbs .breadcrumb_last {
	color: var(--primary);
	font-weight: 700;
}


.hero-banner-landing-page h1 {
	color: white;
}

#video .plyr {
	height: 100%;
}

#video .plyr__poster {
	background-size: cover;
}