/* main css */

/*====================
1. Google fonts
======================*/

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
	--body-font: 'Roboto', sans-serif;
	--heading-font: 'Yantramanav', sans-serif;
	--white: #fff;
	--black: #000;
	--grey: #eee;
	--white-rgb: 255, 255, 255;
	--black-rgb: 21, 21, 21;
	--color1: #01458e;
	--color2: #e67817;
	--color3: #757F95;
	--color4: #012758;
	--color5: #19232B;
	--transition: all 0.3s ease-in-out;
	--shadow: 0px 4px 25px 0px #0000000f;
}

html, body {
	height: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
}
body {
	font-family: var(--body-font);
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	color: var(--color3);
	line-height: 1.8;
	background-color: var(--white);
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	font-weight: 600;
	font-family: var(--heading-font);
	line-height: 1;
	color: var(--color5);
}

.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 {
	display: inline-block;
	position: relative;
	font-size: 14px;
	color: var(--white);
	padding: 14px 20px;
	transition: all .5s ease-in-out;
	text-transform: uppercase;
	border-radius: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	text-align: center;
	border: none;
	background: var(--color2);
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
	overflow: hidden;
}
.btn1:before {
	content: "";
	height: 300px;
	width: 300px;
	background:  var(--color1);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover {
	color: var(--white);
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1 i {
	margin-left: 5px;
}
.btn1 span {
	margin-right: 5px;
}
.btn2{
	background: var(--white);
	color: var(--dark);
}
.btn2:before{
	background: var(--color1);
}
.btn2:hover{
	color: var(--white);
}

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

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {
	position: relative;
	z-index: 1;
	border-radius: 0 0 100px 100px;
	/* background: linear-gradient(90deg,rgba(230, 120, 23, 1) 0%, rgba(1, 69, 142, 1) 100%); */
}
/*
.topbar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 30%;
    background: var(--color2);
    z-index: -1;
}*/
.social span {
	color: var(--white);
	font-weight: 500;
}
.social a {
	display: inline-flex;
	width: 35px;
	height: 35px;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-size: 16px;
	border: 1px solid rgba(var(--white-rgb), .5);
	background-color: var(--color1);
	text-align: center;
	border-radius: 50px;
	transition: all .5s ease-in-out;
}
.social img {
	width: 16px;
	filter: brightness(0) invert(1);
}
.social a:hover {
	background-color: var(--white);
}
.social a:hover img {
	filter: none;
	animation: iconTranslateY 0.4s forwards;
}
@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

.header-top-contact ul {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
}
.header-top-contact ul li{
	display: flex;
	gap: 10px;
	border-right: 1px solid rgba(255, 255, 255, .2);
	padding-right: 20px;
}
.header-top-contact ul li:last-child{
	border: none;
	padding-right: 0;
}
.header-top-contact ul li a {
	color: var(--white);
	font-weight: 400;
}
.header-top-contact ul li a i{
	color: var(--color2);
	margin-right: 5px;
}

.navbar {
	/* position: sticky; */
	/* position: -webkit-sticky; */
	/* top: 0;  */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.navbar.fixed-top {
	background: var(--white) !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
	animation: slide-down 0.7s;
}
@keyframes slide-down {
	0% {
	  transform: translateY(-100%);
	}
	100% {
	  transform: translateY(0);
	}
}
.navbar-brand {
	font-size: 36px;
	font-weight: bold;
	font-family: var(--heading-font);
}
.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-item > .nav-link {
	color: #111;
    font-size: 17px;
    font-weight: 600;
	/*padding: 30px;*/
    text-transform: capitalize;
}
.navbar .dropdown-toggle::after {
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
	font-family: 'Fontawesome';
	content: "\f107";
	font-weight: 600;
	border: none;
	font-size: 14px;
}
.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    border: none;
    left: -15px;
    border-radius: 0px;
    border-top: 4px solid var(--color2);
    background: var(--color1);
    width: 220px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
}
.nav-item.dropdown:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}
.navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.nav-item.dropdown .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 25px;
    font-weight: 500;
    color:  var(--white);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
}
.navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f0da";
	font-family:"FontAwesome";
    position: absolute;
    left: 15px;
    top: 8px;
    color: var(--color2);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--color2);
    padding-left: 32px;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
}
/*********************/
/* slider */
.hero-section {
	position: relative;
}
  
.hero-single {
	height: 100vh;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
  
.hero-single::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: -0.5px;
	top: 0;
	background: rgba(11, 28, 57, .7);
	z-index: -1;
}
  
.hero-single .hero-content {
	height: 100%;
}
  
.hero-single .hero-content .hero-title {
	color: var(--white);
	font-size: 48px;
	font-weight: 800;
	line-height:1.3;
	margin: 20px 0;
	text-transform: capitalize;
}
  
.hero-single .hero-content .hero-title span{
	color: var(--color2);
}
  
.hero-single .hero-content .hero-sub-title {
	display: inline-block;
	color: var(--color2);
	font-size: 25px;
	letter-spacing: 6px;
	font-weight: 800;
	position: relative;
	text-transform: uppercase;
	border-bottom: 3px solid var(--color2);
}
  
.hero-single .hero-content p {
	color: var(--white);
	line-height: 30px;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
}
  
.hero-single .hero-content .hero-btn {
	gap: 1rem;
	display: inline-flex;
	justify-content: start;
}
  
.hero-single .hero-img::before{
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	background: var(--color1);
	right: 100px;
	bottom: 0px;
	border-radius: 50%;
	filter: blur(150px);
	z-index: -1;
}
  
.hero-single .hero-img{
	position: absolute;
	right: 100px;
	bottom: 120px;
	width: 50%;
	z-index: -1;
}
  
.hero-slider.owl-theme .owl-nav {
	margin-top: 0px;
}
  
.hero-slider.owl-theme .owl-nav [class*=owl-] {
	color: var(--white);
	font-size: 25px;
	margin: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.2);
	display: inline-block;
	cursor: pointer;
	height: 55px;
	width: 55px;
	line-height: 55px;
	border-radius: 50px;
	text-align: center;
	transition: all .5s ease-in-out;
}
  
.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
	background: var(--white);
	color: var(--color);
}
  
.hero-slider.owl-theme .owl-nav .owl-prev {
	left: 40px;
}
  
.hero-slider.owl-theme .owl-nav .owl-next {
	right: 40px;
}
  
.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/*********************/
/* 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;
}
.about-one__image {
  position: relative;
}
.about-one__image__one {
  position: relative;
  display: inline-block;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 534 523" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M250.305 0.75354C316.131 -4.1738 381.653 15.0929 432.1 57.6876C487.179 104.194 541.51 167.951 533.143 239.571C525.097 308.449 443.099 334.389 394.051 383.388C345.075 432.316 319.037 513.998 250.305 522.128C178.733 530.593 115.749 475.972 68.0118 421.953C23.4011 371.473 -4.51356 306.759 0.602021 239.571C5.39619 176.605 48.1941 126.645 93.8187 83.0091C138.096 40.6615 189.221 5.32587 250.305 0.75354Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 534 523" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M250.305 0.75354C316.131 -4.1738 381.653 15.0929 432.1 57.6876C487.179 104.194 541.51 167.951 533.143 239.571C525.097 308.449 443.099 334.389 394.051 383.388C345.075 432.316 319.037 513.998 250.305 522.128C178.733 530.593 115.749 475.972 68.0118 421.953C23.4011 371.473 -4.51356 306.759 0.602021 239.571C5.39619 176.605 48.1941 126.645 93.8187 83.0091C138.096 40.6615 189.221 5.32587 250.305 0.75354Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.about-one__image__one img {
  width: 100%;
  height: 100%;
  object-fit:contain;
}
.about-one__image__bg {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 100%;
  height: 100%;
  max-height: 523px;
  background-color: var(--color2);
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 534 523" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M250.305 0.75354C316.131 -4.1738 381.653 15.0929 432.1 57.6876C487.179 104.194 541.51 167.951 533.143 239.571C525.097 308.449 443.099 334.389 394.051 383.388C345.075 432.316 319.037 513.998 250.305 522.128C178.733 530.593 115.749 475.972 68.0118 421.953C23.4011 371.473 -4.51356 306.759 0.602021 239.571C5.39619 176.605 48.1941 126.645 93.8187 83.0091C138.096 40.6615 189.221 5.32587 250.305 0.75354Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 534 523" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M250.305 0.75354C316.131 -4.1738 381.653 15.0929 432.1 57.6876C487.179 104.194 541.51 167.951 533.143 239.571C525.097 308.449 443.099 334.389 394.051 383.388C345.075 432.316 319.037 513.998 250.305 522.128C178.733 530.593 115.749 475.972 68.0118 421.953C23.4011 371.473 -4.51356 306.759 0.602021 239.571C5.39619 176.605 48.1941 126.645 93.8187 83.0091C138.096 40.6615 189.221 5.32587 250.305 0.75354Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.about-one__image__border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: -1;
  /* animation: vibrant 2s ease 0s infinite; */
}
.about-one__image__two {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 213px;
  height: 229px;
  background-color: var(--ienet-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 213.000000 229.000000"><g transform="translate(0.000000,229.000000) scale(0.050000,-0.050000)"><path d="M1867 4565 c5 -8 -60 -17 -144 -19 -159 -4 -194 -11 -493 -107 -184 -58 -400 -155 -464 -207 -20 -16 -92 -72 -162 -123 -210 -156 -420 -433 -484 -639 -14 -44 -31 -89 -37 -100 -7 -11 -12 -29 -13 -40 -1 -11 -9 -68 -18 -127 -23 -152 -35 -262 -35 -343 -2 -103 33 -470 43 -470 2 0 7 -27 12 -60 45 -323 169 -550 484 -889 315 -339 338 -368 484 -611 173 -287 245 -398 265 -407 8 -3 15 -15 15 -26 0 -11 13 -33 30 -49 16 -17 41 -45 55 -64 80 -108 310 -241 425 -248 33 -2 71 -12 85 -22 14 -10 49 -11 80 -3 30 9 70 18 87 20 18 2 56 9 85 16 29 8 57 13 63 13 89 -5 392 228 704 543 252 255 360 355 535 501 525 439 736 750 771 1141 15 174 -45 615 -85 615 -9 0 -15 11 -13 25 9 57 -154 395 -285 590 -108 161 -578 645 -626 645 -15 0 -31 7 -34 15 -57 130 -815 414 -1092 409 -46 0 -90 7 -96 17 -6 11 -43 19 -81 19 -39 0 -66 -7 -61 -15z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 213.000000 229.000000"><g transform="translate(0.000000,229.000000) scale(0.050000,-0.050000)"><path d="M1867 4565 c5 -8 -60 -17 -144 -19 -159 -4 -194 -11 -493 -107 -184 -58 -400 -155 -464 -207 -20 -16 -92 -72 -162 -123 -210 -156 -420 -433 -484 -639 -14 -44 -31 -89 -37 -100 -7 -11 -12 -29 -13 -40 -1 -11 -9 -68 -18 -127 -23 -152 -35 -262 -35 -343 -2 -103 33 -470 43 -470 2 0 7 -27 12 -60 45 -323 169 -550 484 -889 315 -339 338 -368 484 -611 173 -287 245 -398 265 -407 8 -3 15 -15 15 -26 0 -11 13 -33 30 -49 16 -17 41 -45 55 -64 80 -108 310 -241 425 -248 33 -2 71 -12 85 -22 14 -10 49 -11 80 -3 30 9 70 18 87 20 18 2 56 9 85 16 29 8 57 13 63 13 89 -5 392 228 704 543 252 255 360 355 535 501 525 439 736 750 771 1141 15 174 -45 615 -85 615 -9 0 -15 11 -13 25 9 57 -154 395 -285 590 -108 161 -578 645 -626 645 -15 0 -31 7 -34 15 -57 130 -815 414 -1092 409 -46 0 -90 7 -96 17 -6 11 -43 19 -81 19 -39 0 -66 -7 -61 -15z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-one__image__two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-one__image__two__inner {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 203 219" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M89.5285 0.014726C119.587 -0.511311 148.02 13.095 169.178 34.5332C190.233 55.868 206.064 84.6666 202.496 114.483C199.177 142.229 172.59 158.372 152.098 177.289C132.973 194.945 115.341 221.761 89.5285 218.77C64.2141 215.837 56.0951 184.046 39.9088 164.29C26.4381 147.849 8.55716 135.292 4.08479 114.483C-1.57071 88.1698 -3.47111 58.8159 12.6092 37.2733C30.3552 13.4991 59.9376 0.532586 89.5285 0.014726Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 203 219" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M89.5285 0.014726C119.587 -0.511311 148.02 13.095 169.178 34.5332C190.233 55.868 206.064 84.6666 202.496 114.483C199.177 142.229 172.59 158.372 152.098 177.289C132.973 194.945 115.341 221.761 89.5285 218.77C64.2141 215.837 56.0951 184.046 39.9088 164.29C26.4381 147.849 8.55716 135.292 4.08479 114.483C-1.57071 88.1698 -3.47111 58.8159 12.6092 37.2733C30.3552 13.4991 59.9376 0.532586 89.5285 0.014726Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
/*********************/
.heading {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}
.heading span {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color2);
    position: relative;
    border-bottom: 2px solid var(--color2);
}
.heading h2 {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color1);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
/*********************/
.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 services */
.services {
	position: relative;
}
.services .wrap {
	position: relative;
	border-radius: 50px;
	padding:0 60px;
	overflow: hidden;
	background-attachment: fixed;
}
.services .wrap::before {
	content:'';
	position: absolute;
	inset: 0;
	background: var(--color1);
	opacity: 0.9;
}
.services .content {
	position: relative;
	border-radius: 0 0 30px 30px;
	padding:0 60px;
	overflow: hidden;
}
.services .item {
	color: var(--black);
	/*padding: 20px;*/
	margin-bottom: 15px;
}
.services .item .img {
	position: relative;
	/*overflow: hidden;*/
	margin-bottom: 20px;
	transition: var(--transition);
}
.services .item .img img {
	width: 80px;
	filter: drop-shadow(0 1000px 0 var(--color2));
	transform: translateY(-1000px);
	transition: var(--transition);
}
.services .item h4 {
	color: var(--color1);
	transition: var(--transition);
	margin-bottom: 15px;
}
.services .item:hover h4 {
	color: var(--color2);
}
.services .item:hover .img {
	transform: scale(1.05) translateX(10px);
}

/*********************/
/* 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: 10px;
	height: 10px;
	border-radius: 10px;
	background-color: #111;
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
	outline: 1px solid var(--color1);
	outline-offset: 2px;
}*/
.owl-dots .owl-dot span {
	background: var(--color2);
	border-radius: 50px;
	width: 8px;
	height: 8px;
	display: inline-block;
	transition: all .5s ease-in-out;
}
.owl-dots .owl-dot.active span {
	width: 20px;
}
/*********************/
/* counter */
.counter_wrap {
	position: relative;
}
.counter_wrap h2 {
	color: var(--white);
	font-size: 60px;
	font-weight: 800;
}
.counter_wrap .title {
	color: var(--white);
	margin-top: 20px;
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}
/*********************/
/* testimonials */
.testimonials {}
.testimonials .item {
	position: relative;
	background: var(--white);
	border-radius: 40px 40px 40px 0;
	padding: 25px 25px;
	margin: 6px;
	border-bottom: 5px solid var(--color2);
}
.testimonial-rate { color: var(--color2);}
.testimonial-quote {
	color: var(--color3);
	font-style: italic;
	font-weight: 500;
}
.testimonial-content {
	display: flex;
	align-items: center;
	gap: 10px;
}
.testimonial-content .img {
	width: 75px;
	padding: 4px;
	border-radius: 50px;
	border: 2px dashed var(--color2);
}
.testimonial-content .img img {
	border-radius: 50%;
}
.testimonial-content .info {
	margin: 15px 0 10px 0;
}
.testimonial-content .info h4 {
	font-size: 20px;
	color:  var(--color5);
	margin-bottom: 2px;
}
.testimonial-content .info p {
	color: var(--color2);
	font-weight: 500;
	margin-bottom: 0;
}
.testimonial-quote-icon {
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--white);
	font-size: 30px;
	width: 40px;
	height: 40px;
	line-height: 41px;
	text-align: center;
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
/* form */
.enquiry_wrap {
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.enquiry_wrap .info {
	border-radius: 30px;
}

.form1 {
	border-radius: 80px 80px 80px 0;
	box-shadow: 0 0 10px 5px rgb(0 0 0 / 20%);
}
.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: var(--white);
  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;
}
/*********************/
.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: 0px;
}
.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(--color1);
	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;
}
/*********************/
/* whyus */
.whyus { 
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}
.choose-img {
	position: relative;
	margin-left: 50px;
}
.choose-img::before{
	content: "";
	position: absolute;
	left: -15px;
	bottom: -15px;
	width: 100%;
	height: 100%;
	border: 5px solid var(--color2);
	border-radius: 30% 0 30% 30%;
}
.choose-img img{
	border-radius: 30% 0 30% 30%;
}
.whyus .item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 50px 50px 50px 0;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	padding: 15px 15px 15px 0;
	overflow: hidden;
}
.whyus .item .icon {
	width: 80px;
	height: 80px;
	line-height: 75px;
	text-align: right;
	background: var(--color2);
	border-radius: 50px 50px 50px 0;
	padding-right: 12px;
	margin-left: -12px;
}
.whyus .item .icon img {
	width: 45px;
	filter: brightness(0) invert(1);
}
.whyus .item .item-info {
	flex: 1;
}
.whyus .item .item-info h4 {
	color: var(--color5);
	margin-bottom: 10px;
	font-size: 21px;
}
.whyus .item .item-info p {
	font-size: 14px;
	margin-bottom: 0;
}
/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
/*********************/
.team {
	position: relative;
}
.team .item {
	position: relative;
	background: var(--white);
	padding: 15px;
	margin-bottom: 25px;
	border-radius: 60px 60px 60px 0;
	overflow: hidden;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	transition: all .5s ease-in-out;
}
.team .item:hover {
	transform: translateY(-10px);
}
.team .item img{
	border:1px solid #eee;
	border-radius: 50px 50px 50px 0;
	margin-bottom: 15px;
}
.team .item h5 {
	font-size: 22px;
	margin-top: 5px;
	margin-bottom: 5px;
	text-transform: capitalize;
}
.team .item span {
	font-size: 13px;
	font-weight: 500;
	color: var(--color1);
	text-transform: uppercase;
	letter-spacing: 2px;
}
/*********************/

/* footer */
footer {
	background-size: cover;
}
footer h4 {
	position: relative;
	color: var(--white);
	padding-bottom: 20px;
	margin-bottom: 30px;
	font-size: 24px;
	z-index: 1;
}
footer h4:before {
	content: '';
	position: absolute;
	width: 90px;
	height: 3px;
	background: rgba(255, 255, 255, 0.2);
	bottom: 0;
	left: 0;
	z-index: -1;
}
footer h4:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--color2);
	bottom: 0;
	left: 18px;
	z-index: -1;
}

footer .logo {
	height: 40px;
	filter: brightness(0) invert(1);
}
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);
	transition: all .5s ease-in-out;
}
footer .links li a i {
	margin-right: 5px;
	color: var(--color2);
}
footer .links li a:hover {
	padding-left: 10px;
	color: var(--color2);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: center;
	color: var(--white);
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: var(--white);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	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);
}
.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: 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: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;}

.plans .tab-content {
	border-radius: 20px;
}
.plans .nav li a {
	background-color: var(--color1);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	padding: 10px 25px;
	border-radius: 50px 50px 50px 0;
	transition: var(--transition);
}
.plans .nav li a.active,
.plans .nav li a:hover {
	background-color: var(--color2);
	color: var(--white);
}
.plans .tab-content h2 {
	font-weight: 800;
	color: var(--color2);
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.plans .grid_view {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	text-align: center;
}
.plans .item {
	padding: 15px;
}
.plans .item:not(:last-child) {
	border-right: 1px solid #ccc;
}
.plans .price {
	display: inline-flex;
	align-items: center;
	gap:5px;
}
.plans .price .amount {
	font-size: 48px;
	font-weight: 800;
	color: var(--color1);
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    
.hero-single {    height: 250px;}
.hero-single .hero-content .hero-title { font-size:25px}
.hero-content .btn1 {display:none;}
.hero-slider.owl-theme .owl-nav .owl-prev, .hero-slider.owl-theme .owl-nav .owl-next{display:none;}
.about-one__image__one {  padding-bottom: 60px;}
.heading h2 {font-size:30px}
.services .item {    color: var(--black);     margin-bottom: 15px;}
.counter_wrap h2 {font-size: 45px;}
.footer-contact li {font-size: 15px;}
.footer-social li a {    width: 35px;}
}

