body {
	--red-color: #ef4749;
	--red-color-rgb: 239, 71, 73;
	--yellow-color-rgb: 253, 186, 51;
	--yellow-color: #fdba33;
	--green-color: #7ac57d;
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
}

/* loading animation */
.loading-overlay {
	position: fixed;
	background: #fff;
	width: 100%;
	height: calc(100% + 90px);
	z-index: 1040;
	display: none;
	margin-top: -90px;
}

.loading-container {
	position: fixed;
	top: 50%;
	z-index: 1050;
	text-align: center;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}
.loading-container .loader-body {
	width: 48px;
	height: 48px;
	display: inline-block;
	position: relative;
	background: var(--yellow-color);
	box-sizing: border-box;
	-webkit-animation: flipX 1s linear infinite;
	animation: flipX 1s linear infinite;
}

body.load {
	overflow: hidden;
}
body.load .loading-container,
body.load .loading-overlay {
	display: block;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	font-size: 22px;
	background-color: var(--yellow-color);
	cursor: pointer;
}

.back-to-top:hover {
	color: #fff;
}

.nice-shadow {
	box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.text-aurora {
	color: var(--yellow-color);
}

.border-aurora {
	border-color: var(--yellow-color);
}

.bg-aurora {
	background-color: var(--yellow-color);
}

.dropdown-menu {
	border: none;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
	-webkit-animation-name: DropDownSlide;
	animation-name: DropDownSlide;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.dropdown-menu .dropdown-item .active,
.dropdown-menu .dropdown-item:active {
	background-color: var(--yellow-color);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
	color: var(--yellow-color);
	background-color: rgba(var(--other-color-rgb), 0.1);
}

.dropdown-menu .dropdown-divider {
	height: 0;
	opacity: 1;
	border-top: 1px solid #eff2f7;
}

@-webkit-keyframes DropDownSlide {
	100% {
		transform: translateY(0);
	}
	0% {
		transform: translateY(10px);
	}
}

@keyframes DropDownSlide {
	100% {
		transform: translateY(0);
	}
	0% {
		transform: translateY(10px);
	}
}

.btn-aurora {
	display: inline-block;
	padding: 12px 24px;
	border: 1px solid #4f4f4f;
	border-radius: 4px;
	transition: all 0.2s ease-in;
	position: relative;
	overflow: hidden;
	font-size: 19px;
	color: #333;
	background-color: #fff;
	z-index: 1;
	text-decoration: none;
}
.btn-aurora:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) scaleY(1) scaleX(1.25);
	top: 100%;
	width: 140%;
	height: 180%;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	display: block;
	transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
	z-index: -1;
}
.btn-aurora:after {
	content: "";
	position: absolute;
	left: 55%;
	transform: translateX(-50%) scaleY(1) scaleX(1.45);
	top: 180%;
	width: 160%;
	height: 190%;
	background-color: var(--yellow-color);
	border-radius: 50%;
	display: block;
	transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
	z-index: -1;
}
.btn-aurora:hover {
	color: #ffffff;
	border: 1px solid var(--yellow-color);
}
.btn-aurora:hover:before {
	top: -35%;
	background-color: var(--yellow-color);
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.btn-aurora:hover:after {
	top: -45%;
	background-color: var(--yellow-color);
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-aurora.hovered {
	border: 1px solid var(--yellow-color);
	color: #ffffff;
}

.btn-aurora.hovered:hover {
	border: 1px solid #4f4f4f;
	color: #333;
}

.btn-aurora.hovered:before {
	top: -35%;
	background-color: var(--yellow-color);
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-aurora.hovered:hover:before {
	transform: translateX(-50%) scaleY(1) scaleX(1.25);
	top: 100%;
	background-color: rgba(0, 0, 0, 0.05);
}

.btn-aurora.hovered:after {
	top: -45%;
	background-color: var(--yellow-color);
	transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.btn-aurora.hovered:hover:after {
	transform: translateX(-50%) scaleY(1) scaleX(1.45);
	top: 180%;
	background-color: var(--yellow-color);
}

.form-label {
	margin-bottom: 1rem;
	color: #888e97;
	font-size: 1.2rem;
}

.form-control::-webkit-input-placeholder {
	color: #888e9786;
}

.form-control::-moz-placeholder {
	color: #888e9786;
}

.form-control:-ms-input-placeholder {
	color: #888e9786;
}

.form-control::-ms-input-placeholder {
	color: #888e9786;
}

.form-control::placeholder {
	color: #888e9786;
}

.form-control {
	background-color: transparent;
	padding: 0.875rem 1.5rem;
	border: 1px solid rgb(216, 225, 237);
	border-radius: 0.5rem;
	outline: 0;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.03);
}

.form-control:focus {
	box-shadow: 0 6px 30px rgba(78, 107, 255, 0.1);
	border-color: var(--yellow-color);
}

.hr-icon {
	position: relative;
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
}

.hr-icon::before,
.hr-icon::after {
	content: "";
	display: block;
	height: 1px;
	width: 125px;
	background: currentColor;
	opacity: 0.15;
}

.hr-icon .icon {
	margin: 0 15px;
	height: auto;
	opacity: 0.15;
	font-size: 1.3rem;
}

.banner {
	height: 300px;
	position: relative;
	z-index: 1;
	color: #fff;
}

.banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* navbar */
nav.navbar .dropdown-toggle::after {
	width: 8px;
	height: 8px;
	border-bottom: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
	border-top: 0;
	border-left: 0;
	margin-left: 7px;
}

nav.navbar .navbar-toggler:focus {
	box-shadow: none;
}

.navbar-light .navbar-nav .nav-link {
	font-weight: 500;
	position: relative;
	text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: var(--yellow-color);
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--yellow-color);
}

.navbar-light .navbar-nav .nav-link.active:after,
.navbar-light .navbar-nav .nav-link:hover:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

nav.navbar .social-links {
	display: flex;
	align-items: center;
}
nav.navbar .social-links li a {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin-right: 1px;
}
nav.navbar .social-links li a:hover {
	color: var(--yellow-color);
}

.ham-svg {
	cursor: pointer;
	transition: transform 400ms;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.ham-svg.active {
	transform: rotate(45deg);
}

.ham-svg .line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: var(--yellow-color);
	stroke-width: 5.5;
	stroke-linecap: round;
}

.ham-svg.ham-4 .top {
	stroke-dasharray: 40 121;
}

.ham-svg.ham-4 .bottom {
	stroke-dasharray: 40 121;
}

.ham-svg.ham-4.active .top {
	stroke-dashoffset: -68px;
}

.ham-svg.ham-4.active .bottom {
	stroke-dashoffset: -68px;
}

/* header */
header.hero-slider-container .single-slide {
	height: 600px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.glide__slides {
	margin-bottom: 0;
}

header.hero-slider-container .single-slide::before {
	content: "";
	display: block;
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	position: absolute;
	height: 100%;
	z-index: -1;
}

/* about us */
.about-us-legacy-section .about-wrapper {
	background-image: url("../images/icon/about-legacy.png");
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 145px 30px 65px 30px;
	box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: #f5f5f5;
	border-radius: 5px 5px 5px 5px;
	position: relative;
	transition: all 0.4s ease;
	background-color: #fff;
	overflow: hidden;
}

.about-us-legacy-section .about-wrapper p {
	color: #716c80;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 26px;
}

.about-us-section .single-info {
	text-align: center;
}

.about-us-section .single-info:hover .info-icon {
	color: #fff;
	background-color: var(--yellow-color);
}

.about-us-section .single-info .info-icon {
	width: 115px;
	height: 115px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 2.7rem;
	border: 2px solid var(--yellow-color);
	margin-bottom: 22px;
	transition: 0.2s;
	position: relative;
	color: var(--yellow-color);
	margin-left: auto;
	margin-right: auto;
}

.about-us-section .single-info .info-title {
	text-transform: uppercase;
	font-size: 1.154rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--yellow-color);
	letter-spacing: 0.5px;
}

.about-us-section .single-info .info-desc {
	opacity: 0.8;
	margin: 0;
}

/* services */
.services-section {
	background-color: #f5f5f9;
}

.card-7 .single-blog-grid {
	margin-top: 30px;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 18px;
	padding: 12px;
}
.card-7 .single-blog-grid:hover .blog-img img {
	transform: scale(1.1);
}
.card-7 .single-blog-grid a {
	display: inline-block;
	text-decoration: none;
	transition: all 0.4s ease;
}
.card-7 .single-blog-grid .blog-img {
	overflow: hidden;
	border-radius: 12px;
}
.card-7 .single-blog-grid .blog-img a {
	width: 100%;
}
.card-7 .single-blog-grid .blog-img a img {
	width: 100%;
	max-width: 100%;
	transition: all 0.3s ease;
}
.card-7 .single-blog-grid .blog-content {
	padding: 30px 20px 18px 20px;
}
.card-7 .single-blog-grid .blog-content .category {
	font-size: 14px;
	color: var(--yellow-color);
	display: inline-block;
	font-weight: 500;
}
.card-7 .single-blog-grid .blog-content h4 {
	display: block;
	font-size: 25px;
	font-weight: 600;
	color: #151515;
	margin-bottom: 0;
	margin-top: 10px;
	line-height: 28px;
}
.card-7 .single-blog-grid .blog-content h4 a {
	font-size: 18px;
	color: #151515;
	display: inline-block;
}
.card-7 .single-blog-grid .blog-content h4 a:hover {
	color: var(--yellow-color);
}
.card-7 .single-blog-grid .blog-content p {
	display: block;
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 24px;
	color: #727272;
}
.card-7 .single-blog-grid .blog-content .more-btn {
	display: inline-block;
	margin-top: 20px;
	color: #888;
	font-weight: 500;
}
.card-7 .single-blog-grid .blog-content .more-btn:hover {
	color: var(--yellow-color);
	letter-spacing: 1px;
}

.projects-section .glide__arrows,
.partners-section .glide__arrows,
.services-section .glide__arrows {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.partners-section .glide__arrows button,
.projects-section .glide__arrows button,
.services-section .glide__arrows button {
	color: #777777;
	font-size: 0.9231rem;
	text-transform: uppercase;
	border: 1px solid #eaeaea;
	background-color: #fff;
	font-weight: 500;
	border-radius: 4px;
	outline: 0;
	transition: 0.2s;
	cursor: pointer;
	min-height: 40px;
	padding: 0 15px;
	position: unset;
	transform: none;
	display: inline-block;
	text-shadow: none;
	box-shadow: none;
	margin: 0 5px;
}

.partners-section .glide__arrows button:hover,
.projects-section .glide__arrows button:hover,
.services-section .glide__arrows button:hover {
	background-color: var(--yellow-color);
	color: #fff;
	border-color: var(--yellow-color);
}

/*  single service */
.single-blog-section .blog-details-content .details-title {
	font-size: 24px;
	font-weight: 600;
	color: #404040;
	margin-top: 45px;
}

.single-blog-section .blog-details-content .text {
	margin-top: 35px;
}

.single-blog-section p {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #798795;
	margin: 0;
}

.single-blog-section .blog-details-content .details-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
	padding-top: 5px;
	padding-left: 20px;
}

.single-blog-section .blog-details-content .details-list li {
	font-size: 1rem;
	color: #798795;
	margin-top: 25px;
	list-style: decimal;
}

.single-blog-section .blog-sidebar-wrapper {
	border: 1px solid #dedede4f;
}

.single-blog-section .blog-sidebar-wrapper .sidebar-title {
	padding: 15px 30px;
	border-bottom: 1px solid #dedede4f;
}

.single-blog-section .blog-sidebar-wrapper .sidebar-title .title {
	font-size: 18px;
	font-weight: 500;
	color: #404040;
	margin: 0;
}

.single-blog-section .blog-project .single-list {
	padding: 20px 30px 30px;
	border-bottom: 1px solid #dedede4f;
}

.single-blog-section .blog-project .single-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.single-blog-section .blog-project .single-list ul li a {
	color: #798795;
	font-size: 14px;
	margin-top: 10px;
	text-decoration: none;
	transition: all 0.3s ease-out 0s;
	display: block;
}

.single-blog-section .blog-project .single-list ul li a:hover {
	color: var(--yellow-color);
}

/* projects */
.projects-section {
	background-attachment: fixed;
	background-position: center;
}

.projects-section .hr-icon .icon {
	opacity: 0.8;
	color: #fff;
}

.projects-section .hr-icon::before,
.projects-section .hr-icon::after {
	background-color: #fff;
	opacity: 0.8;
}

.projects-section .single-blog-grid {
	border-radius: 5px;
	padding: 0;
	border: none;
}
.projects-section .single-blog-grid .blog-img {
	border-radius: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.projects-section .single-blog-grid .blog-content .category {
	color: #fff;
	background-color: var(--yellow-color);
	display: inline-block;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 5rem;
}

/* single work */

.projects-section.single-work-page .hr-icon::before,
.projects-section.single-work-page .hr-icon::after {
	background: currentColor;
	opacity: 0.15;
}

.projects-section.single-work-page .hr-icon .icon {
	opacity: 0.15;
	color: #333;
}

.projects-section.single-work-page .glide__arrows button {
	color: #777777;
	border: 1px solid #eaeaea;
	background-color: #fff;
}

.projects-section.single-work-page .glide__arrows button:hover {
	background-color: var(--yellow-color);
	color: #fff;
	border-color: var(--yellow-color);
}

.work-page.single-blog-section .images-glary .single-image img {
	width: 100%;
	height: 150px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (max-width: 576px) {
	.work-page.single-blog-section .images-glary .single-image img {
		height: 200px;
	}
}

.work-page.single-blog-section .glide__bullets {
	bottom: -20px;
}

.work-page.single-blog-section .glide__bullets .glide__bullet {
	background-color: #d6d6d6;
}
.work-page.single-blog-section
	.glide__bullets
	.glide__bullet.glide__bullet--active {
	background-color: var(--yellow-color);
}

/* partners */
.partners-section .single-partner {
	position: relative;
	border-radius: 5px;
	text-align: center;
}

.partners-section .single-partner:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(2, 0, 5, 0) 2%,
		var(--yellow-color) 100%
	);
	top: 0;
	opacity: 0.4;
}

.partners-section .single-partner:after {
	content: "";
	border: 1px dashed #ffffff;
	border-radius: 5px;
	padding: 55px 15px;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	display: block;
	z-index: 2;
	top: 0;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	margin: 10px;
	opacity: 0.7;
}

.partners-section .single-partner img {
	height: 200px;
	border-radius: 5px;
	-o-object-fit: cover;
	object-fit: cover;
}

.projects-section .glide__arrows button {
	color: #fff;
	border: 1px solid #fff;
	background-color: transparent;
}

/* banner */

.banner {
	height: 300px;
	position: relative;
	z-index: 1;
	color: #fff;
}

.banner::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.banner a {
	text-decoration: none;
}

.banner .breadcrumb-item.active a {
	color: var(--yellow-color);
}

.banner .breadcrumb-item.active::before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

/*  contact us */
.contact-us-section a {
	text-decoration: none;
	color: var(--yellow-color);
	transition: 0.3s;
}

.contact-us-section a:hover {
	color: #adb5bd;
}

.contact-us-section .contact-us-info .contact-us-social-media ul {
	display: flex;
	align-items: center;
}

.contact-us-section .contact-us-info .contact-us-social-media ul li a {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(var(--yellow-color-rgb), 0.1);
	color: var(--yellow-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 3px;
	font-size: 15px;
	transition: 0.4s;
}

.contact-us-section .contact-us-info .contact-us-social-media ul li a:hover {
	color: #fff;
	background-color: var(--yellow-color);
}

/* footer */
.footer-4 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-top: 1px solid #ddd;
	padding-top: 25px;
}
.footer-4 .shape {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.footer-4 ul,
.footer-4 ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.footer-4 a {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease-out 0s;
}
.footer-4 .footer-widget h3 {
	margin-bottom: 30px;
	margin-top: 10px;
	font-size: 25px;
	font-weight: 700;
}
.footer-4 .footer-widget {
	margin-bottom: 50px;
}
.footer-4 .footer-widget .logo {
	margin-bottom: 30px;
}
.footer-4 .footer-widget .desc {
	margin-bottom: 25px;
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
}
@media only screen and (min-width: 1400px) {
	.footer-4 .footer-widget .desc {
		padding-right: 50px;
	}
}
.footer-4 .footer-widget .social-links {
	display: flex;
	align-items: center;
}
.footer-4 .footer-widget .social-links li a {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(var(--yellow-color-rgb), 0.1);
	color: var(--yellow-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 18px;
}
.footer-4 .footer-widget .social-links li a:hover {
	background: var(--yellow-color);
	color: #fff;
}
.footer-4 .footer-widget .links li a {
	font-size: 16px;
	line-height: 30px;
	color: rgba(0, 0, 0, 0.7);
}
.footer-4 .footer-widget .links li a:hover {
	padding-left: 8px;
	color: var(--yellow-color);
}
.footer-4 .copyright {
	padding: 18px 0;
	text-align: center;
	color: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-4 .copyright a {
	color: inherit;
}
.footer-4 .copyright a:hover {
	color: var(--yellow-color);
}
.hero_box-slider {
	height: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}
header .hero_box-slider::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	
	z-index: 1;
}

.slider-text_box {
	padding: 0 157px;
}
/*start products*/
.our_products {
	padding: 30px 0;
}

.slider-title {
    font-size: 70px;
}
.slider-text p {
    font-size: 50px;
    color: white;
}

/* Media Query */
@media (max-width: 576px) {
}
@media (max-width: 768px) {
}
@media (max-width: 992px) {
}
@media (max-width: 1200px) {
}
