/* main css */
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --color1: #b33434;
  --color2: #fbd627;
  --color3: #ff6600;
  --color4: #457b9d;
  --color5: #1d3557;
  --transition: all 0.3s ease-in-out;
  --shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--white);
    font-family: "Kumbh Sans", sans-serif;
	color: #585858;
	line-height: 28px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color1);
}

.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;
}
.line {
	position: relative;
	display: flex;
	gap:5px;
}
.line:before,
.line:after {
	height: 3px;
	background-color: #222;
	content: '';
}
.line.theme:before,
.line.theme:after {
	background-color: var(--color1);
}
.line:before { 	width: 20px;}
.line:after { width: 50px;}

.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); }

.btn1 {
    font-size: 16px;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn1:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
  
.btn1:focus {
    outline: none;
}
  
.btn1 {
    background-image: linear-gradient(
      to right,
      #25aae1,
      #4481eb,
      #04befe,
      #3f86ed
	);
}

.element {
	animation: slideOutLeft 1s forwards;
	animation-timeline: scroll();
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i {
    background: var(--color1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 14px;
	color: var(--black);
	text-decoration: none;
}
.social li {
	display: inline-block;
	margin: 0 5px;
}
.social li img {
	width: 20px;
	/*filter: brightness(0) invert(1);*/
}
.navbar {
	position: sticky;
	position: -webkit-sticky;
	top: 0; /* required */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
}
.navbar-brand img { height: 80px; }
.nav-item {
	position: relative;
	padding: 0 10px;
}
/*
.nav-item:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
.nav-item:last-child:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}*/
.nav-link {
	color: #111;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 30px;
}
.dropdown-item {
	color: var(--white);
	font-weight: normal !important;
	transition: 0.5s;
}
.dropdown-item:hover {
	color: var(--black);
	background-color: transparent;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
    visibility: hidden;
    display: initial;
    /*width: max-content;*/
	margin-top: 50px;
    opacity: 0;
    z-index: -1;
    border-radius: 0;
    border: none;
    padding: 15px;
    padding-left: 35px;
	background-color: var(--color1);
	border-bottom: 3px solid var(--white);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
    transform-origin: top center;
    transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.nav-item.dropdown .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.nav-item.dropdown:hover .dropdown-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
	z-index: 9;
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
	font-weight: 700;
}
.nav-item.dropdown:hover .dropdown-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 11px;
  left: -6px;
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--color1);
  font-weight: 700;
  font-family: "Font Awesome 6 Free";
  background-color: var(--white);
  box-shadow: inset 0px 2px 4px 0px rgba(255, 104, 26, 0.4);
}

.navbar-right a {
	position: relative;
    display: inline-flex;
	background-color: var(--color3);
	color: var(--white);
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: var(--transition);
}
.navbar-right a span {
	display: flex;
	background-color: var(--white);
	color: var(--color1);
	width: 20px;
	height: 20px;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -4px;
	right: -4px;
	box-shadow: 0 0 5px #333;
	border-radius: 50%;
	font-size: 12px;
}
.navbar-right a:hover {
	background-color: var(--color1);
}
/*********************/
/* slider */
.owl-slide .item {
    position:relative;
}
.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;
    color:#fff;
    text-shadow:0 0 10px #000;
}
.owl-slide .item .desc h1 {
    color:#fff;
    font-weight:700;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active p {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInDown;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active p {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav > div {
	position: absolute;
	top: 40%;
	font-size: 3em;
	color: #fff;
	padding: 10px;
}
.owl-slide .owl-nav > div.owl-prev { left: 0;}
.owl-slide .owl-nav > div.owl-next { right: 0;}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
.slidewrap {
	position: relative;
}
.slidewrap:before,
.slidewrap:after {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../../uploads/bell.gif');
	background-size: contain;
	background-repeat: no-repeat;
	width:300px;
	height:200px;
	z-index:2;
}
.slidewrap:after { left:auto;}
/*********************/
.carousel-item {
	position: relative;
}
.carousel-item .main {
	width: 100%;
	height: 520px;
	object-fit: cover;
}
.carousel-item .carousel-caption {
	height: 520px;
	display: grid;
	place-items:center;
}
.carousel-item p {
	font-size: 10em;
	font-weight: bold;
	position: absolute;
	top: -50px;
	right: 10px;
	line-height: initial;
	margin: 0;
	opacity: 0.5;
}
.carousel-item h1 {
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 0;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/*********************/
/* banner */
.banner {
	position: relative;
}
.banner img {
	width: 100%;
	height: calc(100% -140px);
}
.banner .grid_view {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.banner .item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner .item span {
	background-color: #fff;
	padding: 10px;
	outline-offset: 5px;
	outline-width: 2px;
	outline-color: #fff;
	outline-style: solid;
	color: rgb(120,55,250);
	font-size: 24px;
	font-weight: bold;
	transition: 0.5s;
}
.banner .item:hover span {
	background-color: rgb(120,55,250);
	outline-color: rgb(120,55,250);
	color: #fff;
}
/*********************/
/* marquee */
.news {
	display: flex;
	align-items: center;
}
.news > span {
	background-color: #f00;
	color: #fff;
	padding: 10px;
	font-weight: bold;
}
.news p {
	margin: 0;
}

/*********************/
.welcome {
	position: relative;
	padding: 150px 0 50px;
	background-size: contain;
	background-position: center;
}
.welcome figure {
	position: relative;
}
.welcome figure .img {
	border-radius: 15px;
}
.welcome figure .img1 {
	position: absolute;
	top: -20px;
	left: -50px;
	width: 100px;
	z-index: -1;
}
.welcome figure .img2 {
	position: absolute;
	bottom: -30px;
	left: -50px;
	width: 200px;
	z-index: -1;
	opacity: 0.5;
}
.welcome figure:after {
	position: absolute;
	/*content: '';*/
	top: 0;
	left: 0;
	bottom: 0;
	width:calc(100% - 25px);
	height: 100%;
	border:4px solid var(--color1);
	transform: scale(1.05);
	z-index: -1
}
.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 {
	background-size: cover;
}
.home_products .item {
	position: relative;
	background-color: var(--white);
	padding: 10px;
	text-align: center;
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}
.home_products .item figure img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}
.home_products .item p {
	font-size: ;
	font-weight: 600;
}
.home_products .item .btn,
.home_products .item .btn1 {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	padding: 0 15px;
	font-size: 14px;
	border-radius: 30px;
}

/*********************/
/* 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;
}
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: #111;
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 2px;
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials .item {
	background-color: var(--white);
	padding: 30px;
	border-radius: 5px;
	border: 1px solid var(--color2);
}
.testimonials .item .thumb {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonials .item .thumb img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:1px solid var(--grey);
}
.testimonials .item .quote {
	width: 60px;
	height: 60px;
}
.contactinfo {
}
.contactinfo .item {
	display: flex;
	color: var(--white);
	gap: 15px;
	align-items: center;
}
.contactinfo .item i {
	font-size: 21px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 4px;
	background-color: var(--color3);
	color: var(--color2);
	text-align: center;
}
.contactinfo .item h4 {
	font-size: 18px;
	color: var(--black);
	margin-bottom: 0;
}
.contactinfo .item p {
	color: var(--black);
	font-size: 16px;
	margin-bottom: 0;
}
.whatsappfix {
	position: fixed;
	background-color: var(--color1);
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 50px;
	bottom: 10px;
	left: 10px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap:10px;
}
.whatsappfix i {
	font-size: 1.8em;
}
/*********************/
/* 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);
}
/*********************/
/* form */
.enquiry_wrap {
	position: relative;
}
.enquiry_wrap img {
	border-radius: 15px;
}

.form1 {}
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #f5f6fd;
  border: 1px solid #ccc; 
  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;
	background-size: cover; 
	background-attachment: fixed; 
	padding: 100px 0;
}
.whyus:before { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*content: '';*/
	background-color: #000;
	opacity: 0.7;
}
.whyus .points {
	position: relative;
	border-top: 2px solid #fff;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.whyus .points li {
	position: relative;
	display: block;
	transition: 0.5s;
}
.whyus .points li:before {
	display: block;
	width: 2px;
	height: 150px;
	content: '';
	background-color: #fff;
	margin: 0 auto;
}
.whyus .points li:nth-child(even):before {
	height: 100px;
}
.whyus .points li figure {
	width: 100px;
	padding: 20px;
	background-color: #fff;
	margin: 0 auto;
	border-radius: 50%;
	transition: 0.5s;
}
.whyus .points li figure img {
	width: 100%;
	transition: 0.5s;
}
.whyus .points li p {
	margin: 10px 0;
	text-transform: uppercase;
}
.whyus .points li:hover {
	color: var(--color1);
}
.whyus .points li:hover figure {
	background-color: var(--color1);
}
.whyus .points li:hover figure img {
	filter: brightness(0) invert(1)
}

.whyus .grid_view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}
.whyus .item {
    padding: 25px;
    border-radius: 10px;
    border:1px solid #fff;
    display: flex;
    gap:15px;
    align-items: center;
    color: #fff;
}
.whyus .item figure {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
}
.whyus .item figure img {
    width: 50px;
}
@keyframes LeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -ms-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes RightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    transform: translateX(1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.whyus .item:nth-child(odd) {
  -webkit-animation-name: LeftBig;
  animation-name: LeftBig;
}
.whyus .item:nth-child(even) {
  -webkit-animation-name: RightBig;
  animation-name: RightBig;
}

/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
.team {
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.team:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background-color: #111;
	opacity: 0.5;
}
.team .container-fluid {
	position: relative;
	z-index: 1
}
.team img {
	border-radius: 15px;
}

/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: var(--color1);
}
footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
footer h4:after {
	position: relative;
	display: block;
	content: '';
	width:60px;
	height: 3px;
	background-color: var(--color1);
	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(--black);
}
footer .social li a {
	display: flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--black);
	/* filter: brightness(0) invert(1); */
}
.footer-bottom {
	background-color: rgba(0,0,0,0.2);
}

.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(--color1);
  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: 10px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 10px;
  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;}

.process {
	counter-reset: process;
}
.process .image {
	max-width: 150px;
	margin: 0 auto;
	position: relative;
	padding: 10px;
	margin-bottom: 15px;
}
.process .image figure {
	border-radius: 50%;
	background-color: var(--color3);
	padding: 30px;
	margin: 0 auto;
}
.process .image figure img {
	width: 100%;
	filter: brightness(0) invert(1);
}
.process .image::after {
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px dashed var(--color2);
	content: "";
	border-radius: 50%;
	position: absolute;
	animation: rotate 20s linear infinite;
}
.process .image .process-number {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
}
.process .image .process-number:before {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: var(--transition);
	background: var(--color2);
	color: var(--black);
	font-size: 18px;
	counter-increment: process;
	content: "0" counter(process) "";
}
.process .item {
	position: relative;
	color: var(--white);
}
.process .item h4 {
	font-weight: bold;
	color: var(--white);
}
@media (min-width: 992px) {
	.process .item {
	  margin-bottom: 0px;
	}
}
.process .item .process-arry {
	position: absolute;
	top: 18%;
	right: -14%;
	filter: brightness(0) invert(1);
}
.process [class*='col-']:last-child .item .process-arry {
	display: none;
}
@media (max-width: 991px) {
	.process .item .process-arry {
	  top: unset;
	  right: unset;
	  bottom: -110px;
	  left: 40%;
	}
	.process .item .process-arry img {
	  transform: rotate(90deg);
	}
}
@keyframes sway {
	0% {
	  transform: translateX(-20px);
	}
	100% {
	  transform: translateX(0px);
	}
}
.sway__animation {
	animation: sway 3s linear infinite alternate;
}
  
@keyframes swayX {
	0% {
	  transform: translateX(20px);
	}
	100% {
	  transform: translateX(0px);
	}
}
.sway__animationX {
	animation: swayX 3s linear infinite alternate;
}
  
@keyframes footer__shadow {
	0% {
	  margin-left: -200px;
	}
	100% {
	  margin-right: -200px;
	}
}
@keyframes sway_Y {
	0% {
	  transform: translateY(0px);
	}
	100% {
	  transform: translateY(20px);
	}
}
.sway_Y__animation {
	animation: sway_Y 3s linear infinite alternate;
}
  
@keyframes sway_YY {
	0% {
	  transform: translateY(0px);
	}
	100% {
	  transform: translateY(-20px);
	}
}
.sway_Y__animationY {
	animation: sway_YY 3s linear infinite alternate;
}
  
@keyframes rotate {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
}
.animation__rotate {
	animation: rotate 40s linear infinite;
}
  
@keyframes rotateY {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(-360deg);
	}
}
  .animation__rotateY {
	animation: rotateY 40s linear infinite;
}

@keyframes bobble {
	0% {
	  transform: translateY(0) scale(1);
	}
	100% {
	  transform: translateY(-20px) scale(1.1);
	}
}
.bobble__animation {
	animation: bobble 3s ease-in-out infinite alternate;
}
  
@-webkit-keyframes video-animation {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
	100% {
	  opacity: 0;
	  transform: scale(2);
	}
}
@keyframes video-animation {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.5);
	}
	100% {
	  opacity: 0;
	  transform: scale(2);
	}
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
	.carousel-item .main { height: 300px; }
	.carousel-item p { font-size: 5em; top: -25px; }
	.carousel-item h1 { font-size: 24px; }
	.counter_wrap h1 { font-size: 48px; text-align: center; }
}