/* main css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --grey: #eee;
  --white-rgb: 255, 255, 255;
  --black-rgb: 21, 21, 21;
  --color1-rgb: 253, 85, 35;
  --color1: #fd5523;
  --color2: #03222b;
  --color3: #062f3a;
  --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: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
	color: var(--color2);
}

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

/* header */
header { 
	position: relative;
}
.topbar {
	position: relative;
}
.topbar::before {
  content:'';
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
  background-color: var(--color3);
}
.topbar .shape{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.topbar .shape-1{
  position: absolute;
  top: 0;
  right: -50px;
  width: 50%;
  height: 100%;
  background: var(--color2);
  transform: skewX(40deg);
  border-radius: 20px 0 0 0;
  border-left: 5px solid var(--white);
}
.topbar .shape-2{
  position: absolute;
  top: 0px;
  left: -40px;
  bottom: 0;
  width: 10%;
  background: var(--color2);
  border-radius: 0 0 20px 0;
  transform: skewX(40deg);
  border-right: 5px solid var(--white);
}
.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 li {
	display: block;
	color: var(--white);
}
.social li a {
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--white-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social li a:hover {
	background-color: var(--white);
}
.social li a:hover img {
	filter: none;
}
/**************/
.menubar {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
	z-index: 10;
	/* background-color: var(--white); 
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
	/*backdrop-filter: blur(5px);*/
}
.logo {
	outline:none;
    /* background-color: var(--color1); */
    /* clip-path: polygon(100% 0, 90% 50%, 100% 100%, 0 100%, 0 0); */
}
.logo img { 
	height: 100px; 
    padding:2px;
}
.navbar-right {
    padding:0 15px 0 0;
}

.menuopen {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: var(--color1);
}
#menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: rgba(var(--black-rgb), .50);
	backdrop-filter: blur(5px);
  overflow-x: hidden;
  transition: var(--transition);
  display: flex;
  justify-content: end;
}
#menu .navwrap {
  background-color: var(--color2);
  width: 300px;
  height: 100%;
  padding: 20px;
  margin: 0;
}
#menu ul {
  padding: 0;
  margin: 0;
}
#menu ul li {
  display: block;
  border-bottom: 1px solid rgba(var(--white-rgb), .1);
}
#menu ul li a {
  display: block;
  color: var(--white);
  padding: 8px 5px;
  overflow:hidden;
}
#menu ul li a img {
  height: 20px;
  transform:translateY(-1000px);
  filter: drop-shadow(0 1000px 0 var(--color1));
  margin-right: 10px;
}
#menu ul li a:hover {
  color: var(--color1);
}
#menu .closebtn {
  position: absolute;
  inset: 0;
  border: none;
  z-index: -1;
  background-color: transparent;
  cursor: url("../upload/cross.png") 23 0, auto;
}
#menu .closebtn i {
  position: absolute;
  background-color: var(--color1);
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 300px;
  transition: var(--transition);
  cursor: pointer;
}
#menu .closebtn i:hover {
  background-color: var(--color3);
}

.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-link {
	color: var(--black);
	font-size: 17px;
	font-weight: 600;
	padding: 30px;
}
.nav-link::before {
  content: "";
  height: 2px;
  border-radius: 0px;
  background-color: var(--color1);
  position: absolute;
  bottom: 23px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}
.nav-item:hover .nav-link {
	color: var(--color1);
}
.nav-item:hover .nav-link::before {
  transform: scale(1, 1);
  transform-origin: right center;
}
.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: 220px;
	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;
}

.fixbar {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.fixbar.fixed-bottom {
  bottom: 10px;
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(100%);
	}
	100% {
	  transform: translateY(0);
	}
}
.fixbar ul {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: rgba(238, 238, 238, 0.4);
  padding: 0;
  margin: 0;
  border-radius: 10px;
	backdrop-filter: blur(5px);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.fixbar ul li {
  display: block;
}
.fixbar ul li a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.fixbar ul li a img {
  height: 30px;
}
.fixbar ul li a span {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: var(--white);
  text-align: center;
  transform: translateX(-50%);
  background-color: var(--color1);
  font-size: 11px;
  white-space: nowrap;
  padding: 0 5px;
  border-radius: 3px;
  opacity: 0;
  transition: var(--transition);
}
.fixbar ul li a:hover span {
  bottom: 100%;
  opacity: 1;
}
/*********************/
/* slider */
.owl-slide {
  -webkit-mask-image: url('../upload/shape.svg');
  mask-image: url('../upload/shape.svg');
  mask-size: 100% 100%;
}
.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: calc(100vh - 45px);
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 700px;
	padding-left: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 46px;
	font-weight: 700;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-transform: capitalize;
	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(--black);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color2);
	outline: 1px solid var(--color2);
	outline-offset: 5px;
}
/*********************/
.btn1 {
	position: relative;
	display: inline-block;
	background-color: var(--color2);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 30px;
	overflow: hidden;
	transition: var(--transition);
	border: #2a9d8f;
}
.btn1::before {
	position: absolute;
	inset: 0;
	background-color: var(--color1);
	content: '';
	transform: translateX(-100%);
	transition: var(--transition);
	border-radius: 30px;
}
.btn1 span {
	position: relative;
	z-index: 1;
}
.btn1:hover::before {
	transform: translateX(0);
}
.btn1.type2 { background-color: var(--color1);}
.btn1.type2::before { background-color: var(--color2);}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.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: 700;
    text-transform: capitalize;
    font-size: 44px;
    color: var(--color2);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
.img-bg{
  position: relative;
  background: var(--color1);
  z-index: 1;
}
.img-bg::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../upload/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .04;
  z-index: -1;
}
/*********************/
.about-three__left {
    position: relative;
    display: block;
    margin-right: 160px;
    margin-left: 0px;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.about-three__img::before {
    background: rgba(var(--white-rgb), .50);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    pointer-events: none;
}

.about-three__img:hover::before {
    height: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.about-three__img>img {
    width: 100%;
    border-radius: 10px;
}

.about-three__img-2 {
    position: absolute;
    top: 50%;
    right: -130px;
    max-width: 320px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 10%);
    z-index: 1;
    transform: translateY(-50%);
}

.about-three__img-2::before {
    background: rgba(var(--white-rgb), .50);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    border-radius: 10px;
}

.about-three__img-2:hover::before {
    width: 100%;
    opacity: 0;
    transition: all 0.6s linear;
}

.about-three__img-2>img {
    width: 100%;
    border-radius: 20px;
    border: 10px solid rgba(var(--white-rgb), 1);
}

.about-three__experience-box {
    position: absolute;
    top: 80px;
    left: -80px;
    background-color: var(--white);
    border: 5px solid var(--color1);
    max-width: 160px;
    width: 100%;
    text-align: center;
    padding: 20px 15px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    z-index: 1;
}

.about-three__experience-box::before {
    content: "";
    bottom: -76px;
    left: -5px;
    position: absolute;
    border-left: 40px solid transparent;
    border-right: 40px solid var(--color1);
    border-bottom: 37px solid transparent;
    border-top: 34px solid var(--color1);
}

.about-three__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-three__count-box h3 {
    font-size: 40px;
    line-height: 40px !important;
    color: var(--black);
    font-weight: 700;
}

.about-three__count-box span {
    font-size: 40px;
    line-height: 40px;
    color: var(--black);
    font-weight: 700;
}

.about-three__experience-text {
    margin-top: 5px;
}

.about-three__shape-1 {
    position: absolute;
    top: -30px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(var(--color1-rgb), .20);
    border-radius: 20px;
    z-index: -1;
}

.about-three__shape-2 {
    position: absolute;
    right: -120px;
    bottom: -20px;
    opacity: .30;
    z-index: -1;
}

.about-three__shape-2 img {
    width: auto;
}
/*********************/
.welcome {
	position: relative;
}
.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;
}
.about-left{
  position: relative;
  margin-right: 40px;
}

.about-left::before{
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  border-radius: 200px;
  border: 10px solid var(--color2);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.about-img img{
  border-radius: 200px;
  width: 100%;
}

.about-img .img-2{
  margin-top: 70px;
}

.about-right {
  position: relative;
  display: block;
}

.about-experience{
  background: var(--color2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  line-height: 1.2;
  border-radius: 100px;
  text-align: center;
  border: 10px solid var(--white);
}

.about-experience h5{
  color: var(--white);
  font-size: 40px;
  margin-top: 15px;
}

.about-experience p{
  color: var(--white);
  font-weight: 600;
}
/*********************/
.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 {
  position: relative;
  overflow: hidden;
}

.home_products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color2);
  opacity: 0.8;
}
.bg-video {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  background-color: var(--grey);
  object-fit: cover;
}
.home_products .item,
.innerproduct .item {
	display: block;
	position: relative;
	background-color: var(--white);
	/* border-radius: 20px; */
	/* box-shadow: 0 0 40px 5px rgb(0 0 0 / 25%); */
  transition: var(--transition);
}
.innerproduct .item {
	background-color: var(--grey);
    padding: 10px; 
}
.home_products .item .img,
.innerproduct .item .img {
	position: relative;
    overflow: hidden;
}
.home_products .item .img img,
.innerproduct .item .img img {
	aspect-ratio: 1/1;
	object-fit: cover;
	/* border-radius: 20px; */
    transition: var(--transition);
}
.home_products .item .img img:first-child,
.innerproduct .item .img img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translatex(50%) scalex(2);
          transform: translatex(50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.home_products .item:hover .img img:first-child,
.innerproduct .item:hover .img img:first-child {
  -webkit-transform: translatex(0) scalex(1);
          transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.home_products .item:hover .img img:nth-child(2),
.innerproduct .item:hover .img img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
          transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.home_products .item:hover {
  border-color: var(--color2);
}
.home_products .item:hover h4 {
	color: var(--color2);
}
.home_products .item .btn1,
.home_products .item .btn1::before {
  display: block;
  border-radius: 0;
  text-align: right;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.home_products .item:hover .btn1::before {
  transform: translateX(0);
}
.home_products .item h4,
.innerproduct .item h4 {
  position: relative;
  padding: 10px;
  margin: 0;
  border-top: 5px solid var(--color1);
  transition: all .5s ease-in-out;
  /*white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;*/
}
.home_products .item h4:before {
	position: absolute;
  top:-25px;
  right: 10px;
  content: '\f061';
  font-family:"FontAwesome";
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color1);
  color: var(--white);
  border-radius: 50%;
  transform: translateX(0);
  transition: var(--transition);
  opacity: 1;
}
.home_products .item:hover h4:before {
  transform: translateX(100%);
  opacity: 0;
}
/*********************/
/* 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 {
  position: relative;
}
.counter_wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  top: auto;
  height: calc(100% - 60px);
  background-image: url('../upload/bg.jpg');
  z-index: -1;
}
.counter_wrap .item {
  text-align: center;
}
.counter_wrap .item figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--white);
  border: 10px solid var(--color1);
  margin: 0 auto 10px;
}
.counter_wrap .item figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color1);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}
.counter_wrap .item figure img {
  position: relative;
  width: 60px;
  transition: var(--transition);
}
.counter_wrap .item h1 {
  font-size: 60px;
  color: var(--white);
  margin: 0 0 10px;
}
.counter_wrap .item p {
  color: var(--white);
  border: 1px solid rgba(var(--white-rgb), .5);
  padding: 5px;
}
.counter_wrap .item:hover figure::before {
  transform: scale(1);
}
.counter_wrap .item:hover figure img {
  transform: rotate(360deg);
  filter: brightness(0) invert(1);
}
/*********************/
/* testimonials */
.testimonials {
	position: relative;
	background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.testimonial-block-three {
  margin-bottom: 30px;
  position: relative;
}
.testimonial-block-three .inner-content {
  padding: 40px 35px 80px;
  -ms-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid #fff;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-block-three .inner-content:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 20px;
  clip-path: polygon(51% 100%, 0 0, 100% 0);
  background-color: #fff;
  -ms-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  left: 68%;
  bottom: -18px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-block-three .inner-content:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 20px;
  clip-path: polygon(51% 100%, 0 0, 100% 0);
  background-color: #fff;
  -ms-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 20px 0px rgba(0, 0, 0, 0.08);
  left: 68%;
  bottom: -20px;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-block-three .inner-content .reviews {
  background-color: var(--color1);
  padding: 10px 0px 10px 40px;
  position: absolute;
  left: 0;
  bottom: -1px;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  width: 69%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-block-three .inner-content .stars {
  position: relative;
  color: #fff;
  width: 100px;
  display: inline-block;
  letter-spacing: 3.8px;
}
.testimonial-block-three .inner-content .stars:before {
  content: "\f005" "\f005" "\f005" "\f005" "\f005";
  font-weight: 900;
  font-family: "FontAwesome";
  font-size: 14px;
}
.testimonial-block-three .inner-content .testi-quote {
  bottom: 40px;
  position: absolute;
  right: 40px;
}
.testimonial-block-three .inner-content .testi-quote i {
  color: #f1f1f1;
  font-size: 50px;
}
.testimonial-block-three:hover .inner-content {
  border: 2px solid var(--color1);
}
.testimonial-block-three:hover .inner-content:after {
  background-color: var(--color1);
}
.testimonial-block-three:hover .inner-content .reviews {
  background-color: var(--color1);
}
.testimonial-block-three .img-content {
  padding: 30px 40px;
}
.testimonial-block-three .img-content img {
  width: 70px;
  border-radius: 5px;
}
.testimonial-block-three .img-content .testi-holder h5 {
  color: var(--theme-color2);
  font-weight: 700;
}
.testimonial-item {
  position: relative;
  background: var(--white);
  padding: 15px 30px;
  border-bottom: 5px solid var(--color2);
  border-radius: 50px 50px 0px 50px;
  margin-bottom: 35px;
}

.testimonial-quote p{
  position: relative;
  color: var(--black);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  z-index: 1;
}

.testimonial-content{
  position: relative;
  border-left: 3px solid var(--color2);
  padding-left: 15px;
  margin-top: 15px;
  z-index: 1;
}

.testimonial-author-img {
  position: absolute;
  right: 20px;
  bottom: -50px;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 4px solid var(--color2);
}

.testimonial-author-img img {
  border-radius: 50%;
  border: 4px solid var(--white);
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: var(--black);
}

.testimonial-author-info p {
  color: var(--color2);
  font-weight: 500;
}

.testimonial-quote-icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
}

.testimonial-shadow-icon img{
  width: 200px !important;
}

.testimonial-rate {
  color: #FB9902;
  margin-bottom: 10px;
}
/*********************/
/* 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);
}
/*********************/
.portfolio-img {
  position: relative;
}

.portfolio-img img{
  border-radius: 50px 50px 50px 10px;
}

.portfolio-img::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--color2);
  border-radius: 50px 50px 50px 10px;
  transform: scaleY(0);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-img::before {
  opacity: .8;
  transform: scaleY(1);
}

.portfolio-link {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--color2);
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  left: 50%;
  top: 50%;
  font-size: 28px;
  margin-top: 50px;
  opacity: 0;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  transition-delay: 0.3s;
}

.portfolio-link:hover{
  color: var(--color2);
}

.portfolio-item:hover .portfolio-link {
  margin-top: 0px;
  opacity: 1;
}

.portfolio-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.portfolio-content small{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color2);
  letter-spacing: 2px;
}

.portfolio-content h4 a{
  font-size: 20px;
  color: var(--color1);
}

.portfolio-content h4 a:hover{
  color: var(--color2);
}

.portfolio-arrow{
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: var(--color2);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
}

.portfolio-arrow i{
  color: var(--white);
  transform: rotate(-45deg);
  transition: var(--transition);
}

.portfolio-arrow:hover i{
  transform: rotate(0);
}

/* sector */
.sector .owl-carousel .owl-nav {
  margin-top: 0px;
}

.sector .owl-carousel .owl-nav div{
  position: absolute;
  top: 50%;
  margin-top: -35px;
  transform: translate(0, -50%);
  transition: var(--transition);
}

.sector .owl-carousel .owl-nav div i{
  display: inline-block;
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: var(--white);
  font-size: 25px;
  text-align: center;
  background: var(--color2);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.sector .owl-carousel .owl-nav div:hover i{
  background: var(--color2);
  color: var(--white);
} 

.sector .owl-carousel .owl-nav .owl-prev {
  left: 0px;
  opacity: 0;
}

.sector .owl-carousel .owl-nav .owl-next {
  right: 0px;
  opacity: 0;
}

.sector .owl-carousel:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.sector .owl-carousel:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

@media all and (max-width: 1199px) {
  .sector .owl-carousel .owl-nav {
    display: none;
  }
}
/*********************/
.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;
}
.enquiry_wrap img {
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.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 */
.choose-item{
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.choose-item-icon{
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 55px;
  background: var(--color2);
  text-align: center;
  border-radius: 50px;
}

.choose-item-icon::before{
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--color2);
  border-radius: 50px;
}

.choose-item-icon img{
  width: 42px;
  filter: brightness(0) invert(1);
}

.choose-item-info{
  flex: 1;
}

.choose-item-info h4{
  color: var(--color1);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.choose-item-info p{
  color: var(--body-text-color);
}

.choose-img{
  position: relative;
  text-align: right;
}

.choose-img .img-1{
  width: 70%;
  border-radius: 100px 0px 100px 100px;
}

.choose-img .img-2{
  position: absolute;
  left: 0;
  bottom: -135px;
  width: 80%;
  border-radius: 100px 100px 100px 0px;
  border: 15px solid var(--white);
}

.choose-img .shape{
  position: absolute;
  left: 0;
  top: 70px;
  width: 150px;
  z-index: -1;
}

@media all and (max-width: 991px) {
  .choose-img .img-2{
    width: 70%;
    bottom: -50px;
  }
}

/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	border: 1px solid #ccc;
	padding: 5px;
}
.certificates .item img {
	max-width: 100%;
  max-height: 118px;
}
/*********************/

/* footer */
footer {
  position: relative;
	background-size: cover;
  /* background-attachment: fixed; */
	color: var(--black);
}
footer:before {
    content:'';
    position: absolute;
    inset:0;
    background-color:var(--white);
    opacity:0;
}
.footer-top {
  position: relative;
  padding-top: 80px;
  padding-bottom: 250px;
	background-size: cover;
	background-position: ;
}
/*
.footer-top::before,
.footer-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.footer-top::before {background-image: url('../upload/shape1.png'); background-position: right;}
.footer-top::after { background-image: url('../upload/shape2.png'); background-position: left;}
*/
.footer-top .container {
  position: relative;
  z-index: 1;
}
footer h4 {
	position: relative;
  margin-bottom: 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(--black);
}
footer .social li a {
	filter: brightness(0) invert(1);
}
.footer-bottom {
  position: relative;
	/* background-color: rgba(0,0,0,0.3); */
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: var(--black);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--black);
	-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: var(--color2);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	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 {
  position: relative;
  display:inline-block;
  width:140px;
  height:initial;
  padding: 12px 5px;
  border-radius: 30px;
  color:#111;
  /* background-position: right 10px center; */
  border:1px solid #ddd;
  outline: none;
  width: 50px;
  height: 50px;
  background-image: url('../upload/translate.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position:center;
  text-indent: 140px;
  appearance: none;
  cursor: pointer;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.social {
	display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 25px;
}
.social a {
	display: flex;
  width: 35px;
  height: 35px;
  border:1px solid var(--white);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}
.social img {
	height: 16px;
  filter: brightness(0) invert(1);
}
.social a:hover {
  background-color: var(--color1);
  border-color: var(--color1);
}
/**************/
.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;
  }
}
/************************/
.cta-area{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding:100px 0 150px;
  z-index: 1;
}
.cta-area::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color1);
  opacity: .9;
  z-index: -1;
}

.cta-area::after{
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  background: var(--color2);
  border-radius: 50%;
  opacity: .2;
  z-index: -1;
}
.cta-area .heading span {
    color:var(--white);
    border-color:var(--white);
}
.cta-content h1{
  color: var(--white);
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p{
  color: var(--white);
  font-size: 16px;
  margin-bottom: 30px;
}

.cta-content .theme-btn{
  background: var(--color2);
  color: var(--white);
}

.form-content {
  position: relative;
  margin-top: -80px;
  z-index: 1;
}
.formwrap .nav li a {
  background-color: var(--color2);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 0;
}
.formwrap .nav li a:hover,
.formwrap .nav li a.active {
  background-color: var(--white);
  color: var(--color2);
}
.formwrap .nav li a:hover {
  background-color: var(--grey);
}
.formwrap .nav li a img {
  height: 40px;
  margin-right: 5px;
}
.formwrap .nav li a img {
  filter: brightness(0) invert(1);
}
.formwrap .nav li a:hover img,
.formwrap .nav li a.active img {
  filter: none;
}
.formwrap .form-control {
  border-radius: 0;
  background-color: #F2F3F5;
  border: 1px solid #ddd;
  padding: 12px 20px;
  height: auto;
  box-shadow: none;
  transition: 0.4s;
}
.contactinfo li {
  position: relative;
  display: flex;
  gap:10px;
  margin-top: 20px;
  color: var(--white);
}
.contactinfo li i {
  display: flex;
  flex-shrink:0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color1);
  border-radius: 50%;
  transform: translateY(-15%);
}
.socialinfo {
  display: flex;
  gap: 10px;
}
.socialinfo li {
  display: block;
}
.socialinfo li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.socialinfo li a img {
  width: 20px;
  filter: brightness(0) invert(1);
}
.socialinfo li a:hover {
  background-color: var(--color1);
  border-color: var(--color1);
}

/******************/
.whyus {
  overflow: hidden;
}
.whyus .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.services-three__single {
    position: relative;
    display: block;
    margin: 50px 0 40px;
}
.services-three__single-inner {
    position: relative;
    display: block;
    background: var(--white);
    padding: 30px 35px 37px;
    border-radius: 10px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    transition: transform .8s;
    z-index: 1;
}
.services-three__single:hover .services-three__single-inner {
    transform: translateY(-10px);
}

.services-three__single-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color1);
    margin: -70px auto 30px;
    border: 5px solid rgba(var(--white-rgb), .20);
    overflow: hidden;
    transition-duration: 800ms;
    z-index: 1;
}
.services-three__single-icon img {
  width: 50px;
  max-width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.services-three__single:hover .services-three__single-icon {
    background-color: var(--black);
}

.services-three__single-icon:before {
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: var(--black);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    transition-duration: 800ms;
    z-index: -1;
}

.services-three__single:hover .services-three__single-icon:before {
    top: -40%;
}

.services-three__single-icon span {
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 55px;
    line-height: 55px;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-three__single:hover .services-three__single-icon span {
    transform: scale(0.9);
}

.services-three__single-inner h3 {
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: capitalize;
}

.services-three__single-inner p {
    margin-top: 20px;
    margin-bottom: 20px;
}
/********************/
.process-area {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    counter-reset: count;
    z-index: 1;
    overflow: hidden;
}
.process-one__map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-position: center;
    z-index: -1;
}
.process-area .shape1 {
    position: absolute;
    top: 0;
    right: 10%;
    width: 40%;
    z-index: -1;
    transform: translateY(-30%);
}
.process-area .shape2 {
    position: absolute;
    bottom: 0;
    left: 3%;
    width: 25%;
    z-index: -1;
}
.process-area .shape1 img,
.process-area .shape2 img {
    width: 100%;
}
.process-one__inner {
    position: relative;
    display: block;
    z-index: 1;
}
.process-one__list {
    position: relative;
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
}
.process-one__list li {
    position: relative;
    display: block;
    flex: 0 0 25%;
    margin-bottom: 21px;
}
.process-one__list li:nth-child(1) {
  margin-top: 0;
}
.process-one__list li:nth-child(2) {
  margin-top: 11%;
}
.process-one__list li:nth-child(3) {
  margin-top: 18%;
}
.process-one__list li:nth-child(4) {
  margin-top: 20%;
}
.process-one__list li h1 {
  font-size: 48px;
  font-weight: 700;
  color: rgba(var(--black-rgb), .2);
  margin-bottom: 0;
}
.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 90px;
    background-color: rgba(var(--color1-rgb), .60);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 500ms ease;
    z-index: 1;
}
.process-one__icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}
.process-one__list li:hover .process-one__icon {
    background-color: rgba(var(--black-rgb), .60);
}
/*
.process-one__icon:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: var(--color1);
    border-radius: 50%;
    transition: all 500ms ease;
    z-index: -1;
}*/
.process-one__list li:hover .process-one__icon:before {
    background-color: var(--black);
}
.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: 2;
}
.process-one__list li:hover .process-one__icon span {
    transform: scale(0.9);
    color: var(--white);
}
.process-one__count {
    position: absolute;
    top: -15px;
    right: -5px;
    height: 40px;
    width: 40px;
    z-index: 2;
}
.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--black);
    border: 3px solid rgba(var(--white-rgb), .50);
    border-radius: 50%;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.process-one__inner li:hover .process-one__count:before {
    color: var(--base);
    background-color: var(--white);
    border: 3px solid rgba(var(--black-rgb), .50);
}
.process-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 15px;
}
.process-one__title a {
  color: var(--black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.process-one__title a:hover {
  color: var(--base);
}
.process-one__text {
  font-size: 15px;
  font-weight: 500;
}
.process-one__list li .process-one__shpae-1 {
  position: absolute;
  top: 20px;
  left: 65px;
}
.process-one__list li:nth-child(2) .process-one__shpae-1 {
  top:-5px;
  transform: rotate(-10deg) scale(.9);
}
.process-one__list li:nth-child(3) .process-one__shpae-1 {
  top: -20px;
  left: 46px;
  transform: rotate(-16deg) scale(.8);
}
/*
.process-one__inner li:hover .process-one__shpae-1 {
    background-color: var(--black);
}
.process-one__shpae-1:before {
    content: "";
    position: absolute;
    top: -8px;
    right: -10px;
    height: 20px;
    width: 20px;
    background-color: var(--color1);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 500ms ease;
}
.process-one__inner li:hover .process-one__shpae-1:before {
    background-color: var(--black);
}*/

.market .item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: column;
  border: 1px solid #eee;
  padding: 30px 15px;
  overflow: hidden;
}
.market .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color1);
  z-index: -1;
  transform: translateY(-100%);
  transition: var(--transition);
}
.market .item figure {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  outline: 1px solid #eee;
  outline-offset: 5px;
  margin: 0;
}
.market .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.market .item h4 {
  font-size: 18px;
  color: var(--color1);
  transition: var(--transition);
}
.market .item:hover:before {
  transform: translateY(0);
}
.market .item:hover h4 {
  color: var(--white);
}

.breadcrumb .wrap {
  position:relative;
  -webkit-mask-image: url('../upload/shapebg.svg');
  mask-image: url('../upload/shapebg.svg');
  mask-size: 100% 100%;
}
.breadcrumb .wrap h2 {
  position:absolute;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color:rgba(0,0,0,0.2);
  padding-top:60px;
}
.breadcrumb .wrap img {
  height:350px;
  object-fit:cover;
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .menubar { position:relative; top:0;}
    .logo { padding:10px 0; font-size: 24px;}
    #google_translate_element select,
    .navbar-right .btn1,
    .menuopen { width:40px;height:40px;}
    .navbar-right .btn1 { padding:8px 15px;}
    /*.pt-4 {padding-top: 0.5rem !important;}*/
    .topbar .social { padding: 0; gap: 5px;}
    .social li a { width: 30px; height: 30px;}
    .navbar::after,
    .nav-link::before,
    .owl-slide .owl-nav > div,
    .process-one__shpae-1 { display: none;}
    .navbar-brand { font-size: 30px; padding: 20px 50px 20px 0;}
    .nav-item { padding: 0;}
    .nav-link { padding:10px 20px; border-top:1px solid rgba(0,0,0,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .navbar-collapse { background-color: var(--grey); margin: 0 -12px;}
    .dropdown-toggle::after { float: right;}
    .heading h2 { font-size: 30px;}
    .enquiry_wrap img { clip-path: none; margin-top: 15px;}
	.owl-slide,
	.breadcrumb .wrap { -webkit-mask-image:none; mask-image:none; border-radius:15px; overflow: hidden;}
	.navbar-right .btn1 span span,
	.process-area .shape2,
	.owl-slide .item::before { display:none;}
    .owl-slide .item img { height: 200px;}
    .owl-slide .item .desc { padding-left: 15px; max-width:72%;}
    .owl-slide .item .desc h1 { font-size: 18px;}
    .about-three__left { margin: 0 100px 0 0;}
    .about-three__experience-box { width: 120px; top:20px;}
    .about-three__experience-box p { margin: 0; font-size: 14px;}
    .about-three__img-2 { top: 175px; right: -100px;}
    .process-area { padding-bottom:0;}
    .process-one__list { flex-direction: column;}
    .process-one__list li { margin-top:0 !important;}
    .formwrap .nav li a { padding:10px; font-size: 14px;}
    .formwrap .nav li a img { display:block;margin:0 auto; height:33px;}
    /*footer { background-attachment: fixed;}*/
    footer:before { opacity:0.3;}
    .footer-top { padding-bottom: 0;}
    .scrollToTop.show { bottom:100px;}
    .whatsappfix { left:20px; bottom:150px;}
    .fixbar ul { width:90%; flex-wrap: wrap;}
    .fixbar ul li a { padding:5px 10px;}
    .fixbar ul li a img { height: 30px;}
    .breadcrumb .wrap img { height:100px;}
    .breadcrumb .wrap h2 { padding:0;}