/* main css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Salsa&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #f2f3f5;
  --color1: #ff5e15;
  --color2: #001659;
  --color3: #00134d;
  --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: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Salsa", cursive;
	font-weight: 400;
	font-style: normal;
	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;
}

.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 {
	position: relative;
	display: inline-block;
    font-size: 16px;
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    text-align:center;
    border: none;
    border-radius: 50px;
	transition: var(--transition);
	overflow: hidden;
	z-index: 1;
}
.btn1:before,
.btn1:after {
	position: absolute;
	inset:0;
	content: '';
	background-color: var(--color2);
	width: 100%;
	height: 100%;
	border-radius: 50px;
	z-index: -1;
	transition: var(--transition);
}
.btn1:after {
	background-color: var(--color1);
}
.btn1:focus {
    outline: none;
}
.btn1 i {
	margin-left: 5px;
	transform: rotate(-45deg);
	transition: var(--transition);
}
.btn1:hover i {
	transform: rotate(0deg);
}
.btn1:hover:after {
	transform: translateX(100%);
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {
	border-bottom: 1px solid #ddd;
	padding-right: 20px;
}
.navbar-right {
	padding-right: 30px;
}
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 5px;
}
.topbar .item i {
    color: var(--color1);
	font-size: 16px;
}
.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: relative;
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
	/*backdrop-filter: blur(5px);*/
}
.navbar-brand {
	font-size: 36px;
	font-weight: 900;
	padding: 0px 20px;
	margin:0;
	color: var(--color1);
}
.navbar-brand:focus,
.navbar-brand:hover { color: var(--color1);}
.navbar-brand img { height: 129px; }

.navbar .border-l {
	border-left: 1px solid #ddd;
}
.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 {
	position: relative;
	color: var(--color2);
	font-size: 15px;
	font-weight: 500;
	padding: 30px;
}
.nav-link:before {
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--color1);
	transition: var(--transition);
}
.nav-item:hover .nav-link:before {
	width: 100%;
}
.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 rgba(255,255,255,0.2);
}
.dropdown-item {
	color: var(--white);
	padding: 10px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--white);
	background-color: var(--color2);
	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: 250px;
	border: none;
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--color1);
	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 */
.owl-slide .item img {
	width: 100%;
	height: calc(100vh - 125px);
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	gap:15px;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	padding-left:100px;
	max-width: 660px;
}
.owl-slide .item .desc h1 {
	font-weight: 600;
	color: var(--white);
	letter-spacing: 2px;
	text-shadow: 0 0 10px #000;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInUp;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInDown;
	animation-delay: 1s;
}
.owl-slide .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: var(--color1);
	color: var(--white);
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
	transition: var(--transition);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	opacity: 0.4;
}
.owl-slide .owl-nav > div.owl-prev { left: 15px;}
.owl-slide .owl-nav > div.owl-next { right: 15px;}
.owl-slide:hover .owl-nav > div { opacity: 1;}
.owl-slide .owl-nav > div:hover { background-color: var(--white); color: var(--color1);}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
	margin: 0;
}
.owl-slide .owl-dots > div {
	position: relative;
	width: 30px;
	height: 6px;
	border-radius: 6px;
	background-color: transparent;
	color: var(--white);
	overflow: hidden;
}
.owl-slide .owl-dots > div:before,
.owl-slide .owl-dots > div:after {
	position: absolute;
	content: '';
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 6px;
}
.owl-slide .owl-dots > div:before {
	background-color: rgba(0,0,0,0.2);
	width: 100%;
}
.owl-slide .owl-dots > div.active:after {
	background-color: var(--color1);
	animation: owldot 4s;
  	animation-fill-mode: forwards;
}
@keyframes owldot {
	from {width: 0;}
	to {width: 100%;}
}
/*********************/
.heading {
	position: relative;
}
.heading span {
	display: inline-flex;
	align-items: center;
	gap:10px;
	color: var(--color2);
	font-size: 18px;
	font-weight: 500;
}
.heading span:before {
	content: '';
	width: 35px;
	height: 2px;
	background-color: var(--color1);
}
.heading h2 {
	font-size: 44px;
	font-weight: 600;
	letter-spacing: 2px;
}

.shape-line,
.shape-line2 {
	position: absolute;
	left: 0;
	width: 100%;
	height: 30px;
	background-image: url('../upload/line2.png');
	background-size: contain;
}
.shape-line {
	background-image: url('../upload/line2.png');
}
.shape-line2 {
	background-image: url('../upload/line3.png');
}
.line1 { top:0;}
.line2 { bottom:0;}
.shape-line2.line1 { transform: rotateX(180deg);}
/*********************/
.breadcrumb {
    background-color:var(--color2);
    padding:15px 0;
    margin:0;
}
.breadcrumb h2 {
    margin:0;
}
.welcome {
	position: relative;
}
.welcome .container {
	position: relative;
	z-index: 1;
}
.welcome:before {
	content:'';
	position: absolute;
	z-index: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 300px;
	background-color: var(--color2);
}
.welcome .thumb {
	border-radius: 20px;
	overflow: hidden;
}
.welcome .thumb img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.btn-circle {
	position: relative;
	display: inline-block;
}
.btn-circle:before {
	position: absolute;
	inset: 0;
	content: '';
	background-color: var(--color2);
	background-image: url('../upload/lines.png');
	transform: translateX(-50%);
	border-radius: 50%;
}
.getintouch {
	position: relative;
	background-color: var(--white);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	box-shadow: var(--shadow);
}
.getintouch:before {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/getintouch.png');
	background-size: contain;
	animation: spin 10s linear infinite;
}
@keyframes spin {
	100% {
	  	transform: rotate(1turn);
	}
}
.getintouch i {
	background-color: var(--color1);
	color: var(--white);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	transition: var(--transition);
}
.getintouch:hover i {
	background-color: var(--color2);
}
/*********************/
/* home products */
.home_products {}
.home_products .item {
	position: relative;
	overflow: hidden;
	background-color: var(--white);
	border-radius: 25px;
	margin-bottom: 10px;
	transition: var(--transition);
}
.home_products .item figure {
	position: relative;
	overflow: hidden;
	margin: 0;
}
.home_products .item figure img {
	width: 100%;
	aspect-ratio: 1/1;
	transition: var(--transition);
}
.home_products .item .desc {
	padding: 20px;
}
.home_products .item .desc h4 {
	color: var(--color2);
}
.home_products .item .btn {
	font-weight: 500;
	padding: 0;
}
.home_products .item .btn i {
	margin-left: 5px;
}
.home_products .item:hover {
	box-shadow: 0 5px var(--color1);
}
.home_products .item:hover .btn {
	color: var(--color1);
}
.home_products .item:hover figure img {
	transform: scale(1.1);
}
.owl-bullet .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 20px;
}
.owl-bullet .owl-dots > div {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: var(--color3);
}
.owl-bullet .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 4px;
}
/*********************/
/* counter */
.counter_wrap {
	border-radius: 20px;
}
.counter_wrap .item:not(:first-child):before {
	display: block;
	width: 100%;
	height: 2px;
	content: '';
	background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
	margin-bottom: 20px;
}
.counter_wrap .icon {
	display: flex;
	justify-content: space-between;
}
.counter_wrap img {
	height: 60px;
	filter: brightness(0) invert(1);
}
.counter_wrap h2 {
	font-size: 48px;
	color: var(--white);
}
/*********************/
.team {
	position: relative;
}
.team .item {
	background-color: var(--grey);
	border-radius: 20px;
	box-shadow: 0 5px var(--color1);
	transition: var(--transition);
	overflow: hidden;
}
.team .item figure {
	margin: 0;
	overflow: hidden;
}
.team .item .desc {
	padding: 20px;
}
.team .item .desc h4 {
	margin: 0;
}
/*********************/
/* testimonials */
.testimonials {
	position: relative;
	padding: 100px 0;
}
.testimonials .item {
	background-color: rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: 20px;
}
.testimonials .item .star {
	font-size: 18px;
	color: var(--color1);
	letter-spacing: 3px;
	margin-bottom: 10px;
}
.testimonials .item img {
	width: 70px;
	height: 70px;
	border-radius: 70px;
	border:4px solid #fff;
}
.testimonials .item .thumb {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonials .item .thumb h4 {
	color: var(--white);
	margin-bottom: 0;
}
.testimonials .owl-dots > div { background-color: var(--white);}
/*********************/
/* 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 */
.contactinfo {
	position: relative;
	padding: 40px 30px;
	border-radius: 20px;
	height: 100%;
}
.contactinfo .item {
	display: flex;
	gap:15px;
}
.contactinfo .item i {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: var(--color1);
	font-size: 20px;
	border-radius: 5px;
}
.contactinfo .social {
	display: flex;
	gap: 10px;
}
.contactinfo .social a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: var(--color1);
	border-radius: 50%;
	outline: 1px solid var(--white);
	outline-offset: -5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	transition: var(--transition);
}
.contactinfo .social a img {
	width: 20px;
	filter: brightness(0) invert(1);
}
.contactinfo .social a:hover {
	outline-width: 5px;
}

.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(--color1);
  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(--color1);
  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;
}
/*********************/
.process {
	position: relative;
	padding: 100px 0;
	counter-reset: process;
}
.process .grid_view {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.process .item {
	position: relative;
	padding: 30px;
	border: 1px solid rgba(255,255,255,0.2);
}
.process .item:not(:last-child) {
	border-right: none;
}
.process .item:not(:last-child):after {
	position: absolute;
	content: '\f101';
	font-family:"FontAwesome";
	top: -15px;
	right: -15px;
	background-color: var(--white);
	color: var(--color1);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	font-size: 20px;
}
.process .process-number {
	position: absolute;
	top: -15px;
	left: 30px;
	z-index: 1;
}
.process .process-number:before {
	display: block;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	text-align: center;
	border-radius: 30px;
	background-color: var(--color1);
	color: var(--white);
	font-size: 14px;
	counter-increment: process;
	content: "Step " counter(process) "";
	transition: var(--transition);
}
.process .item h4 {
	font-size: 21px;
}
.process .item p {
	margin-bottom: 0;
}
/*********************/
/* whyus */
.whyus .img {
	object-fit: cover;
	border-radius: 20px;
}
.whyus .wrap {
	position: relative;
	padding: 50px 30px;
	border-radius: 20px;
	height: 100%;
}
.whyus .wrap::before {
	position: absolute;
	content: '';
	inset: 0;
	width: 5px;
	height: 80%;
	background-color: var(--color1);
	margin: auto 0;
	border-radius: 0 5px 5px 0;
}
.whyus .wrap .item {
	display: flex;
	gap:15px;
}
.whyus .wrap .item:not(:last-child) {
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.whyus .wrap .item img {
	width: 70px;
	height: 70px;
	filter: brightness(0) invert(1);
}
.whyus .wrap .item p {
	font-size: 14px;
	margin-bottom: 0;
	text-align: justify;
}
/*********************/

/* footer */
.footer-top {
	position: relative;
	padding: 100px 0;
}
.footer-bg {
	position: absolute;
	inset: 0;
	content: '';
	background-image: url('../upload/bg1.jpg');
	background-size: cover;
	background-position: center;
	opacity: 0.1;
}
footer h4 {
	position: relative;
	color: #fff;
}
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);
}

.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: 50px;
  height: 50px;
  line-height: 50px;
  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: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:140px;
    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;}

.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 2
}
.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;
  }
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
 /*   .nav-link { padding:10px; border-top:1px solid rgba(255,255,255,0.2);}*/
 /*   .navbar .border-l {border-left:none}*/
 /*    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}*/
 /*   .nav-item.dropdown .dropdown-menu.show { display:block;}*/
	/*.dropdown-toggle::after { float: right;}*/
	/*.owl-slide .item img { height: 300px;}*/
	/*.owl-slide .item .desc { padding: 30px;}*/
	/*.owl-slide .item .desc h1 { font-size: 18px;}*/
	/*.owl-slide .item .desc .btn1 { padding: 5px 15px; font-size: 12px;}*/
	/*.owl-slide .owl-dots {*/
	/*	display: flex;*/
	/*	gap:10px;*/
	/*	justify-content: center;*/
	/*	margin-top: 15px;*/
	/*}*/
	/*.owl-slide .owl-dots div {*/
	/*	background: var(--grey);*/
	/*	border-radius: 50%;*/
	/*	width: 10px;*/
	/*	height: 10px;*/
	/*}*/
	/*.owl-slide .owl-dots div.active {*/
	/*	background: conic-gradient(var(--color1) var(--percentage), var(--grey) 0);*/
	/*	animation: timer 4s both;*/
	/*}*/
	/*@property --percentage {*/
	/*	initial-value: 0%;*/
	/*	inherits: false;*/
	/*	syntax: "<percentage>";*/
	/*}*/
	/*@keyframes timer {*/
	/*	to {*/
	/*	  --percentage: 100%;*/
	/*	}*/
	/*}*/
	/*.owl-slide .btn1,*/
	/*.owl-slide .owl-nav,*/
	/*.owl-slide .owl-dots > div:before,*/
	/*.owl-slide .owl-dots > div:after { display: none;}*/
		
 /*   .process .grid_view {    display: grid;    grid-template-columns: repeat(1, 1fr);}*/
    
 /*   .navbar-toggler-icon {   margin-right: -100px;}*/
        
 /*   .navbar-brand {    font-size: 20px; padding: 0px;}*/
 #google_translate_element select { width:100%;}
    .topbar { padding-right:0;}
    .topbar .btn { background-color:var(--color2); color:#fff; font-size:14px; padding:5px;}
    .navbar-brand { font-size: 30px; padding: 5px;}
    .navbar-brand img {height:80px;}
    .nav-item { padding:0;}
    .nav-link { padding:10px; border-top:1px solid rgba(0,0,0,0.2);}
    .navbar .border-l {border-left:none; width:100%;}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
	.dropdown-toggle::after { float: right;}
	.owl-slide .item img { height: 200px;}
	.owl-slide .item .desc { padding: 20px;}
	.owl-slide .item .desc h1 { font-size: 18px;}
	.owl-slide .item .desc .btn1 { padding: 5px 15px; font-size: 12px;}
	.owl-slide .owl-dots {
		display: flex;
		gap:10px;
		justify-content: center;
		margin-top: 15px;
	}
	.owl-slide .owl-dots div {
		background: var(--grey);
		border-radius: 50%;
		width: 10px;
		height: 10px;
	}
	.owl-slide .owl-dots div.active {
		background: conic-gradient(var(--color1) var(--percentage), var(--grey) 0);
		animation: timer 4s both;
	}
	@property --percentage {
		initial-value: 0%;
		inherits: false;
		syntax: "<percentage>";
	}
	@keyframes timer {
		to {
		  --percentage: 100%;
		}
	}
	.owl-slide .btn1,
	.owl-slide .owl-nav,
	.owl-slide .owl-dots > div:before,
	.owl-slide .owl-dots > div:after,
	.process .item:not(:last-child):after { display: none;}
    .process .grid_view { display: grid; grid-template-columns: repeat(1, 1fr);}
    .process .item:not(:last-child) { border-right:1px solid rgba(255, 255, 255, 0.2);; border-bottom:none;}
    .heading h2 { font-size:32px;}
    .contactinfo .social a { width:45px; height:45px;}
    
}


