/* main css */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --grey-rgb: 208, 208, 208;
  --black-rgb: 21, 21, 21;
  --color1: #f1cd4a;
  --color2: #daa200;
  --color3: #f9b44d;
  --color4: #0a0a0a;
  --color5: #1d3557;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
}
body {
	background-color: var(--color4);
    font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	color: var(--white);
	overflow-x: hidden;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Libre Baskerville", serif;
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--color1); }
.bg-2 { background-color: var(--color2); }
.bg-3 { background-color: var(--color3); }
.bg-4 { background-color: var(--color4); }
.bg-5 { background-color: var(--color5); }
.bg-grey { background-color: var(--grey); }

section { position: relative; overflow: hidden;}

/* header */
header { 
	position: relative;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0px;
    padding: 5px 25px;
}
.social {
	display: inline-flex;
	gap:15px;
}
.social a {
	display: flex;
	width: 55px;
	height: 55px;
	border: 5px solid rgba(var(--white-rgb), .1);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social img {
	width: 20px;
	filter: brightness(0) invert(1);
}
.social a:hover {
	border: 5px solid rgba(var(--white-rgb), 1);
}
.social a:hover img {
	/* filter: none; */
}

.navbar {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
	backdrop-filter: blur(10px) saturate(100%);
	/* background-color: var(--white); */
	/* box-shadow: 0 10px 10px rgba(0,0,0,0.2); */
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
	padding: 0;
}
.navbar-brand img { 
	height: 120px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--white);
	font-size: 18px;
	padding: 30px;
	letter-spacing: 0.5px;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
.navbar-toggler-icon { filter: brightness(0) invert(1);}
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid #e3e3e3;
}
.dropdown-item {
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color1);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 300px;
	border: 1px solid #eaecf0;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--white);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
/* slider */
.slidewrap { 
	position: relative;
	display: block;
}
.slidewrap .desc {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap:15px;
}
.slidewrap button {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
	background-color: var(--color1);
	border-radius: 50%;
}
.slidewrap .desc h2 {
	font-size: 48px;
}
.slidewrap .desc p {
	font-size: 24px;
	line-height: 1.4;
}
.slider-nav {
	position: relative;
	width: 60%;
	transform: translateY(-50%) translateX(80%);
}
.slider-nav .slick-slide div {
	position: relative;
	margin-right: 20px;
	cursor: pointer;
}
.slider-nav .slick-slide div::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('../../upload/play-btn.png');
	background-position: center;
	background-repeat: no-repeat;
}
.slider-nav .slick-current div {
	outline: 10px solid rgba(var(--white-rgb), .5);
	outline-offset: -10px;
}
.slider-nav .slick-current div::before {
	display: none;
}
.slick-prev, .slick-next {
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color1);
	border: 1px solid var(--color1);
	border-radius: 50%;
	opacity: 1;
	transition: var(--transition);
	text-indent: 60px;
	overflow: hidden;
	z-index: 1;
}
.slick-prev {
	left: 10px;
}
.slick-next {
	right: 10px;
}
.slick-prev:before {
	color: inherit;
	content: '\f104';
	font-family:"FontAwesome";
}
.slick-next:before {
	color: inherit;
	content: '\f105';
	font-family:"FontAwesome";
}
.slick-prev:hover, .slick-next:hover {
	background-color: var(--color1);
}
.slick-prev:hover:before, .slick-next:hover:before {
	color: var(--black);
}
.slick-prev:focus, .slick-next:focus {
	color: var(--color1);
}

.owl-slide .item {
	position: relative;
}
.owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.owl-slide .item img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	font-weight: 900;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-transform: uppercase;
	margin-bottom: 0;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInLeft;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover { 
	background-color: var(--color1);
	border-color: var(--color1);
	opacity: 1;
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--white);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.owl-arrow .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	color: var(--black);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-arrow .owl-nav > div.owl-prev { left:-25px;}
.owl-arrow .owl-nav > div.owl-next { right:-25px;}
.owl-arrow .owl-nav > div:hover{ 
	background-color: var(--color1);
	border-color: var(--color1);
	opacity: 1;
}
/*********************/
.btn1{
	position: relative;
    display: inline-block;
    background-color: var(--color1);
    background-image: url(../../upload/gold.png);
	background-size: 10px;
    color: var(--black);
    font-size: 16px;
    line-height: 1em;
    text-transform: capitalize;
    text-align: center;
    border: none;
	border-radius: 30px;
    padding: 15px 46px 15px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.btn1:before {
	content: "";
	height: 300px;
	width: 300px;
	background-color:  var(--color3);
    background-image: url(../../upload/gold.png);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover{
	background: transparent;
    /* color: var(--white); */
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url(../../upload/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
    filter:brightness(0);
}
.btn1:hover::after{
	transform: translate(-18px, -50%);
    /* filter:none; */
}
.btn1.type2 { 
	background-color: transparent;
    background-image: none;
	outline: 2px solid var(--color1);
	outline-offset: -2px;
	color: var(--color3);
	font-weight: 500;
	transition: none;
}
.btn1.type2::after {
    background-image: url(../../upload/arrow-yellow.png);
    filter:none;
}
.btn1.type2:hover {
	color: var(--black);
}
.btn1.type2:hover::after {
    filter:brightness(0);
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
}
.heading span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    color: var(--color1);
    position: relative;
    border-bottom: 2px solid var(--color1);
}
.heading h2 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 50px;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
	margin: 0;
}
.welcome figure::before {
	position: absolute;
	content: '';
	inset: 0;
	/* border:4px solid var(--color1); */
	border: 5px solid transparent;
	border-image: url("../../upload/gold.png") 30 round;
	transform: translate(-30px, 30px);
	z-index: -1;
}
.welcome .order-sm-2 figure::before {
	transform: translate(30px, 30px);
}
.welcome .btn {
	background-color: #efcda5;
	border-color: #666;
	font-weight: 500
}
.welcome .btn:hover {
	background-color: #111;
	border-color: #111;
	color: #fff;
}

/*********************/
.custom2 .item {
	display: flex;
	gap:15px;
	color: var(--white);
	margin: 15px 0;
	background-color: rgba(255,255,255,0.1);
	padding: 30px;
}
.custom2 .item .icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #fff;
	color: var(--color1);
	flex-shrink: 0;
	border-radius: 50%;
	font-size: 30px;
}
.custom2 .item h4 {
	color: var(--white);
}
.custom2 .item p {
	color: var(--white);
	font-size: 14px;
	margin: 0;
}
/* home products */
.home_products .item {
	display: block;
	position: relative;
	background: var(--white);
	padding: 20px;
	border-radius: 50px 50px 50px 0;
	margin-bottom: 25px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.home_products .item .img {
	position: relative;
	margin-bottom: 15px;
}
.home_products .item .img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 40px 40px 40px 0;
}
.home_products .item .img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 40px 40px 40px 0;
	background: var(--color5);
	transition: all .5s ease-in-out;
}
.home_products .item:hover .img::before{
	opacity: 0.5;
	visibility: visible;
}
.home_products .item .img .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 100%;
	line-height: 50px;
	padding: 0;
	margin: -25px 0 0 -25px;
	color: var(--white);
	background: var(--color1);
	transform: scale(3);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease-in-out;
	z-index: 1;
}
.home_products .item:hover .img .btn {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
.home_products .item:hover .img .btn:hover{
	background: var(--white);
	color: var(--color2);
}
.home_products .item h4 {
	transition: all .5s ease-in-out;
}
.home_products .item:hover h4 {
	color: var(--color2);
}
/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
/*********************/
/* counter */
.counter_wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 80%;
	margin: 0 auto;
}
.counter_wrap .item {
	position: relative;
	aspect-ratio: 1/1;
	border-radius: 50%;
	z-index: 1;
	transform: scale(1.05);
	color: var(--black);
}
.counter_wrap .item::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    display: inline-block;
    background: linear-gradient(90deg,var(--color1) 0%, var(--color2) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s linear;
    -webkit-transition: opacity 0.3s linear;
    animation: crotate 3s infinite linear;
    box-shadow: 0 0 80px 1px rgba(var(--black-rgb), 1);
    -webkit-box-shadow: 0 0 80px 1px rgba(var(--black-rgb), 1);
}
@keyframes crotate {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}
.counter_wrap .item .inner {
	position: relative;
	z-index: 1;
	background-color: var(--white);
    border-radius: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	font-size: 18px;
	padding: 30px;
    box-shadow: 0 0 20px 1px rgba(var(--black-rgb), 0.5);
    -webkit-box-shadow: 0 0 20px 1px rgba(var(--black-rgb), 0.5);
}
.counter_wrap .item .inner h1 {
	font-size: 54px;
	color: var(--color2);
}
.counter_wrap .item:hover::before {
	opacity: 1;
}
.growing {
	animation:in 3s ease-out infinite forwards;
	animation-delay:1s;
	/*color:#fff;*/
	font-weight:500;
	margin-bottom:0;
	opacity:0;
	text-transform:uppercase
}
@keyframes in{
	0%{letter-spacing:0;opacity:0}
	to{letter-spacing:29px;opacity:1}
}
/*********************/
/* testimonials */
.testimonials .item {
	position: relative;
	background: rgba(var(--white-rgb), .2);
	border-radius: 40px 40px 40px 0;
	padding: 25px 25px;
	margin: 6px;
	border-bottom: 5px solid var(--color1);
	height:370px;
}
.testimonial-rate { color: #FDA31B;}
.testimonial-quote {
	color: var(--white);
	font-style: italic;
	font-weight: 400;
}
.testimonial-content {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonial-content .img {
	width: 75px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed var(--color1);
}
.testimonial-content .img img {
	border-radius: 50%;
}
.testimonial-content .info {
	margin: 15px 0 10px 0;
}
.testimonial-content .info h4 {
	font-size: 20px;
	color:  var(--white);
	margin-bottom: 2px;
}
.testimonial-content .info p {
	color: var(--color3);
	font-weight: 400;
	margin-bottom: 0;
}
.testimonial-quote-icon {
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--white);
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	background-color: var(--color1);
	border-radius: 50px 50px 50px 0;
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/*********************/
.features {
	counter-reset: process;
}
.features .item {
	position: relative;
	height: 100%;
	padding: 20px 25px;
	background: var(--white);
	border-radius: 50px 50px 50px 0px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 30px;
}
.features .item .count:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 60px;
	font-weight: 800;
	-webkit-text-stroke: 2px var(--color1);
	-webkit-text-fill-color: transparent;

	counter-increment: process;
	content: "0" counter(process) "";
}
.features .item .icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color2);
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}
.features .item:hover .icon {
	transform: rotateY(360deg);
}
.features .item .icon img {
	width: 48px;
	filter: brightness(0) invert(1);
}
.features .item .feature-content{
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color5);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/* form */
.enquiry_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.form1 {
	border-radius: 80px 80px 80px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.form1 .header2 {
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}
.form1 form {
	border-radius: 50px 50px 50px 0;
	padding: 20px 30px;
}

.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color2);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color2);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
}
.whyus .grid_view {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px;
	text-align: center;
}
.whyus .item {
	font-size: 14px;
	line-height: initial;
	overflow: hidden;
}
.whyus .item img {
	width: 50px;
	display: block;
	margin: 10px auto;
	filter: drop-shadow(0 100px 0 var(--color1));
	transform: translateY(-100px);
}
.cta {
	background-position: right;
	background-size: cover;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-image: url("../../upload/gold.png") 30 round;
}
.cta h1 {
	font-size: 48px;
	color: var(--color1);
	text-shadow: 0 0 20px var(--black);
}
.cta h2 {
	text-shadow: 0 0 20px var(--black);
}
/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer { overflow: hidden;}
.footer-top {
	position: relative;
}
.footer-top::before,
.footer-top::after {
	content: '';
	position: absolute;
	background-color: var(--color1);
	border-radius: 50%;
}
.footer-top::before {
	width: 80px;
	height: 80px;
	left: 0;
	top: 0;
	z-index: -1;
	transform: translateX(-50%) translateY(-50%);
}
.footer-top::after {
	width: 200px;
	height: 200px;
	right: 0;
	bottom: 0;
	z-index: -1;
	transform: translateX(50%) translateY(-20px);
}

footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--white);
	margin: 20px 0;
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: var(--white);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px 10px 10px 0;
	background-color: var(--color1);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--black);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	font-size: 18px;
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--black);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--color2);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--black);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.skillset .item {
	position: relative;
	display: flex;
	width: 100%;
	gap:20px;
	margin: 20px 0;
	justify-content: space-between;
	align-items: center;
}
.skillset .item::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--white);
	top: 50%;
}
.skillset .item .text {
	position: relative;
	background-color: var(--color1);
	padding: 15px 20px;
	color: var(--black);
	font-size: 21px;
}
.skillset .item .number {
	position: relative;
	background-color: var(--black);
	padding: 10px;
}
/********************/
.shape {
	display: flex;
	flex-wrap: wrap;
	width: 300px;
	z-index: -1;
}
.shape img:nth-child(1) { width: 140px; margin-bottom: -10px;}
.shape img:nth-child(2) { width: 160px; margin-bottom: -120px; margin-left: -25px;}
.shape img:nth-child(3) { width: 150px;}
.rotateit {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    rotate: 360deg;
  }
}
/********************/
.services .shape {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-15%);
}
.services .item {
	position: relative;
	border-radius: 30px;
	overflow: hidden;
}
.services .item .desc {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	padding: 20px;
	margin: 0 20px;
	border: 2px solid rgba(var(--white-rgb), .1);
	border-radius: 20px;
	backdrop-filter: blur(10px) saturate(100%);
}
.nav-pills li a {
	display: block;
	border: 1px solid var(--color1);
	color: var(--color1);
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 18px;
}
.nav-pills li a.active,
.nav-pills li a:hover {
	background-color: var(--color1);
	color: var(--black);
}
.events .item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--color1);
}
.events .item img {
	aspect-ratio:1/1.5;
	object-fit:cover;
}
.events .item .desc {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	backdrop-filter: blur(10px) saturate(100%);
}
.events .item .desc h4 {
    color: var(--color1);
	/*width: 80%;*/
}
.events .item .desc p {
	margin: 0;
}
.feedback .item {
    border-radius:20px;
    overflow:hidden;
}
.video-testimonials .owl-stage-outer {
	overflow: visible;
}
.video-testimonials .item {
	position: relative;
	background-color: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
}
.video-testimonials .item:hover {
	border-color: var(--color1);
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(241, 205, 74, 0.2);
}
.video-testimonials .item iframe {
	height: 500px;
}

.breadcrumb {
    position:relative;
    background-image:url('../../upload/banner.jpg');
    background-size:cover;
    background-position:center;
    padding:180px 0 50px;
}
.breadcrumb:before {
    content:'';
    position:absolute;
    background-color:var(--black);
    inset:0;
    opacity:0.8;
}
.breadcrumb h2 {
    position:relative;
}

#loading {
    position: fixed;
    display: flex;
    inset:0;
    justify-content: center;
    align-items: center;
    margin:auto;
    /*background-color: #fff;*/
    /*opacity: 1;*/
    z-index: 99;
    overflow: hidden;
}
#loading:before {
    content:'';
    position: absolute;
    inset:0;
    margin:auto;
    background-color: var(--color4);
    /*animation: width 1s;*/
    /*animation-fill-mode: both;*/
    z-index: 1;
}
@keyframes width {
    from {width: 0px;}
    to {width: 100%;}
}
#loading-logo {
    height:200px;
    z-index: 2;
}
/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.navbar-brand img { height: 60px;}
	.nav-item .nav-link { padding: 10px; text-align: center;}
	/* .slidewrap video { height: 100dvh; object-fit: cover;} */
	.slidewrap .desc { padding: 20px;}
	.slidewrap .desc h2 { font-size: 30px;}
	.slidewrap .desc p { font-size: 18px;}
	.counter_wrap { grid-template-columns: 1fr;}
	.heading h2 { font-size: 30px;}
	.services .shape { opacity: 0.3;}
	.services .item { border-radius: 0;}
	.services .item video { border-radius: 20px;}
	.services .item .desc { position: relative; transform: none; margin: 0; border: none; padding: 20px 0;}
	.whyus .grid_view { grid-template-columns: repeat(3, 1fr);}
	.whyus .item { font-size: 12px;}
	.growing { font-size: 24px;}
	@keyframes in{ 0%{letter-spacing:0;opacity:0} to{letter-spacing:10px;opacity:1} }
	.cta h1 { font-size: 30px;}
	footer { overflow: hidden;}
	.counter_wrap { display: flex; flex-wrap: wrap; gap:10px; width: 100%;}
	.counter_wrap .item { flex: 1 1 calc(50% - 10px); width: 50%; transform: none; flex-shrink: 0;}
	.counter_wrap .item .inner { height: auto; aspect-ratio: 1/1;}
	.counter_wrap .item .inner h1 { font-size: 36px;}
	.counter_wrap .item .inner p { font-size: 14px; margin: 0; line-height: initial;}
	.testimonials .item { height:550px;}
	.owl-arrow .owl-nav > div { position:relative; top:auto; transform:none; left:auto !important; right:auto !important; width: 30px; height:30px;}
	.owl-arrow .owl-nav { position:absolute; top:-40px; left:0; right:0; display:flex; justify-content:center; gap:10px;}
}