/* main css */
@import url("../fonts/fonts.css");

:root {
  --white: #fff;
  --black: #000;
  --color1: #FD7F4B;
  --color2: #53C99F;
  --color3: #1B2B2B;
  --color4: #19c7eb;
  --color5: #FFF7F3;
  --color6: #ffd222;
  --text1: #6f7775;
  --text2: #333;
}

body {
	background-color: var(--white);
    color: var(--text1);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: 'Manrope Regular';
}

p {
    font-weight: 400;
    font-style: normal;
}

a {
    color: var(--color3);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope Bold';
    color: var(--color3);
    font-style: normal;
    margin-bottom: 0;
    margin-top: 10px;
    line-height: 1.2;   
    font-weight: 800;
    -webkit-transition: .5s;
    transition: .5s;
    font-size:42px;
}
h1 {
    font-size:42px;
}
h2 {
    font-size: 35px;
    
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.5
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}
.line {
	display: inline-block;
	width: 100px;
	height: 3px;
	background-color: var(--color1);
}
.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); }

.btn-shiny2 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-shiny2:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
  
.btn-shiny2:focus {
    outline: none;
}
  
.btn-shiny2 {
    background-image: linear-gradient(
      to right,
      #25aae1,
      #4481eb,
      #04befe,
      #3f86ed
	);
}

.element {
	animation: slideOutLeft 1s forwards;
	animation-timeline: scroll();
}

.btn1 {
    font-size: 16px;
    padding: 14px 42px;
    font-weight: 400;
    line-height: 26px;
    border-radius: 30px;
    color: #fff;
    background: var(--color1);
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.btn1 i {
    margin-left: 5px;
}
/*
.btn1 i.fa-heart {
    color: transparent;
	-webkit-text-stroke: 1px var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
    transition: .5s;
}*/
.btn1:before, .btn1:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--color2);
    transition: .5s;
    z-index: -1;
}
.btn1:before {
    transform: translateY(-100%);
}
.btn1:after {
    transform: translateY(100%);
}
.btn1:hover:before {
    transform: translateY(-50%);
}
.btn1:hover:after {
    transform: translateY(50%);
}
.btn1:hover {
    color: #111;
}/*
.btn1:hover i.fa-heart {
	-webkit-text-stroke: 1px #111;
}*/
.btn1.style2 { background: var(--color2); }
.btn1.style2:before, .btn1.style2:after { background: var(--color1); }

.btn2 {
    padding: 15px 40px;
    font-weight: 500;
    background: var(--color1);
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.btn2:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--color2);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0);
    transition: .5s;
}
.btn2 i {
    font-size: 13px;
    margin-left: 5px;
}
.btn2:hover:before {
    transform: scale(1);
}

.btn3 {
    padding: 14px 34px;
    font-weight: 500;
    color: #1b3434;
    background-color: var(--white);
    display: inline-block;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn3 i {
    font-size: 13px;
    color: #FD7F4B;
    padding-left: 4px;
    transition: .5s;
}
.btn3:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--color2);
    border-radius: 30px;
    transition: .5s;
    z-index: -1;
}
.btn3:hover {
    color: #fff;
}
.btn3:hover i {
    color: #fff;
}
.btn3:hover:before {
    width: 100%;
    left: 0;
}
.btn3.style2:before {
    background-color: var(--color1);
}
.btn3.style2 i {
    color: #53C99F;
}

/* header */
header { 
	display: unset; /* required for sticky header */
}
.topbar {
    padding: 11px 75px 11px;
}
.topbar .item,
.header_middle .item {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.topbar .item i,
.header_middle .item i {
    background: var(--color1);
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 45px;
    text-align: center;
    color: var(--white);
	font-size: 16px;
	outline:1px solid var(--color1);
	outline-offset:2px;
}
.topbar .item span,
.header_middle .item span {
	display: block;
	font-size: 14px;
}
.topbar .item a,
.header_middle .item a {
	font-size: 16px;
	color: var(--text2);
	text-decoration: none;
}
/* social */
.social {
    display: flex;
    gap:5px;
}
.social li {
	display: block;
}
.social a {
    display: block;
    font-size:18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social a.fa-facebook-f { background: #3b5998; }
.social a.fa-twitter    { background: #00acee; }
.social a.fa-telegram   { background: #00acee; }
.social a.fa-youtube    { background: #c4302b; }
.social a.fa-skype      { background: #00AFF0; }
.social a.fa-linkedin   { background: #0e76a8; }
.social a.fa-whatsapp   { background: #25D366; }
.social a.fa-instagram  {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.social li a:hover          { background: #111; }
/*
.social li a {
    color:#fff;
	font-size: 24px;
}
.social li img {
	width: 20px;
    filter: brightness(0) invert(1);
}
*/

.header-btn {
	display: flex;
	font-size: 14px;
	align-items: center;
}
.header-btn .number {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #ddd;
}
.header-btn .number p {
	margin: 0;
	font-size: 16px;
	color: #111;
}
.header-btn .btn1 {
	font-size: 14px;
	padding: 10px 20px;
    /*line-height: initial;*/
}
/***************/
.header_middle .grid_view {
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:30px;
}
.navbar {
	position: sticky;
	position: -webkit-sticky;
	top: 0; /* required */
	/*backdrop-filter: blur(5px);*/
	z-index: 10;
	background-color: var(--color1);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
	/*border-bottom: 5px solid var(--color1);*/
}
.navbar-brand {
    display:flex;
    gap:15px;
    align-items:center;
	/*background-color: var(--white);*/
	font-size: 36px;
	font-weight: bold;
	/*margin-top: -52px;*/
	white-space:wrap;
	-webkit-transition: all 0.3s ease;
  	-moz-transition: all 0.3s ease;
  	transition: all 0.3s ease;
}
.navbar-brand h2 {
	color: var(--color2);
	font-size: 30px;
	font-weight: bold;
	margin:0;
}
.navbar-brand img { 
	height: 120px;
	-webkit-transition: all 0.3s ease;
  	-moz-transition: all 0.3s ease;
  	transition: all 0.3s ease;
}
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar.fixed-top .navbar-brand { margin-top: 0; }
.navbar.fixed-top .navbar-brand img { height: 70px; }

.nav-item {
	position: relative;
	padding: 0 25px;
}
.nav-item:before {
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	width:1px;
	background: rgb(17,17,17);
    background: linear-gradient(0deg, rgba(17,17,17,0) 0%, rgba(17,17,17,1) 50%, rgba(17,17,17,0) 100%);
    content:'';
}
.nav-item:last-child:after {
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	width:1px;
	background: rgb(17,17,17);
    background: linear-gradient(0deg, rgba(17,17,17,0) 0%, rgba(17,17,17,1) 50%, rgba(17,17,17,0) 100%);
    content:'';
}
/*
.nav-item:before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}
.nav-item:last-child:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	content: '';
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}*/
.nav-link {
	color: #111;
	font-size: 15px;
	padding:15px;
	/*text-transform:uppercase;*/
}
.dropdown-item {
	font-size: 14px;
}
.dropdown-item:active,
.dropdown-item:hover {
	background-color: var(--color2);
}
/*********************/
.slider_wrap {
	background-color: var(--color2);
	padding: 15px;
}
.updates {
    position:relative;
	background-color: var(--white);
	border: 3px solid var(--color1);
	padding: 0 15px;
	overflow: hidden;
	height: 520px;
}
.updates:before {
    position:absolute;
	z-index:0;
    top:0;
    bottom:0;
    left:0;
    right:0;
    
    content:'';
	background-image: url('../upload/samarth.jpeg');
	background-size: 90%;
	background-position: center;
	background-repeat: no-repeat;
	opacity:0.4;
}
.updates > h3,
.updates > h4,
.updates .wrap {
    position:relative;
	z-index:1;
}
.updates .wrap {
    overflow-y:scroll;
	height: 100%;
	/*max-height: 100%;*/
}
.updates p {
	padding-right:10px;
}
.updates p i {
	display: none;
}
.updates > h3 {
	font-size: 21px;
	color: var(--black);
	padding: 5px;
	margin: 0;
	text-align: center;
}
.updates > h4 {
	font-size: 18px;
	color: var(--black);
	border-bottom: 2px solid var(--color1);
	padding: 5px;
	text-align: center;
	margin: 0;
}
.updates a {
	font-size: 14px;
	line-height: 1.4em;
	color:#222;
	display: block;
	margin: 5px 0;
}
.updates a img {
    height:40px;
}
.updates ::-webkit-scrollbar {
  width: 6px;
}
.updates ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
.updates ::-webkit-scrollbar-thumb {
  background: var(--color2); 
  border-radius: 10px;
}
.updates ::-webkit-scrollbar-thumb:hover {
  background: var(--color2); 
}
.modal p {
    font-size:14px;
}
.modal .form-control {
    font-size:14px;
    padding:5px 10px;
    margin-bottom:10px;
}
.modal .close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    background: #f00;
    border-radius: 50px;
    color: #fff;
    opacity: 1;
    display: block;
    border:#f00;
}
.modal .btn1 {
    border:none;
}

.galleryinner img {
    width:100%;
    height:250px;
    object-fit:cover;
}

.certificates .item figure {
    /*background:#eee;*/
    /*padding:30px;*/
    margin:0;
}
.certificates .item figure img {
    height:70px;
}
.certificates .item h6 {
    padding:5px;
    margin:0;
}

.sidebar {
    background:#f7f7f7;
    border:2px solid #eee;
    padding:10px;
}
.sidebar > h4 {
    border-bottom:1px dotted #ddd;
    margin-bottom:15px;
    padding-bottom:15px;
}
.sidebar ul {
    padding:10px;
    margin:0;
}
.sidebar li {
    display:block;
    border-bottom:1px dotted #ddd;
    margin-bottom:15px;
    padding-bottom:15px;
}
.sidebar li:last-child {
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}
.sidebar li a {
    display:block;
    font-size:14px;
}
.sidebar li a:hover {
    text-decoration:underline;
}

/* slider */
.carousel-item {
	position: relative;
}
.owl-slide .item img,
.carousel-item .main {
	width: 100%;
	height: 520px;
	object-fit: cover;
}
.carousel-item .carousel-caption {
	height: 520px;
	text-align: left;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
}
.carousel-item p {
	font-size: 10em;
	font-weight: bold;
	position: absolute;
	top: -50px;
	right: 10px;
	line-height: initial;
	margin: 0;
	opacity: 0.5;
}
.carousel-item h1 {
	color: #fff;
	font-weight: bold;
	margin-bottom: 0;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.owl-slide .owl-nav,
.carousel .owl-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    gap:15px;
}
.owl-slide .owl-nav > div,
.carousel-control-next, .carousel-control-prev {
    position: relative;
    top: initial;
    bottom: initial;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 71px;
    height: 62px;
    color: #fff;
    text-align: center;
    background: 0 0;
    background-color: transparent !important;
    box-shadow:none !important;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
    background-size: contain;
    background-repeat: no-repeat;
}
.owl-slide .owl-nav > div.owl-prev,
.carousel-control-prev {
	background-image: url('../upload/prev.png');
}
.owl-slide .owl-nav > div.owl-next,
.carousel-control-next {
	background-image: url('../upload/next.png');
}


.heading2 {
    font-family: 'Lobster Regular';
	color: var(--color1);
	font-size: 20px;
}
.heading2 span {
	position: relative;
	display: inline-block;
}
.heading2 span:after {
	position: relative;
	display: block;
	background-color: var(--color2);
	content: '';
	height: 2px;
	width: 50px;
	margin: 10px 0;
	transition: 0.5s;
}
.heading2:hover span:after {
	width: 100%;
}

.heading2.centered span:after {
    margin:15px auto;
}
/*********************/
.breadcrumb {
    position:relative;
    color:var(--color1);
    background-size:cover;
    margin:0;
}
.breadcrumb:before {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:var(--color3);
    content:'';
    opacity:0.8;
}
.breadcrumb .container {
    position:relative;
    z-index:1;
}
.breadcrumb-content {
    height:400px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
.breadcrumb li {
    display:inline-block;
}

/*********************/
/* 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;
}
/*********************/
/* home products */
.home_products {
	background-size: cover;
}
.home_products .item figure {
	background-color: #fff;
	padding: 30px;
}
.home_products .item figure img {
	width: 150px;
}
.home_products .btn-shiny2 {
	padding: 5px 25px;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 14px;
}
/*********************/
.welcome {
	position: relative;
}
.welcome:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 20%;
	content: '';
	background-color: var(--color2);
	z-index: -1;
	opacity: 0.5;
}
.welcome .aboutimg {
	position: relative;
	outline: 5px solid var(--color1);
	outline-offset: -50px;
	transform: scale(1.4) translateX(-50px) translateY(30px);
}

/*********************/
.contact-information {
    margin-bottom: 30px;
}
.contacts-icon {
    float: left;
    margin-right: 20px;
}
.contacts-icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--color1);
    text-align: center;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    display: inline-block;
}
.upper.contacts-icon i {
    background: var(--color2);
}
.upper2.contacts-icon i {
    background: var(--color4);
}
.contacts-title h5 {
    color: #666;
    font-weight: 400;
    font-family: 'Lobster Regular';
    font-size: 16px;
}
.contacts-title h6 {
    font-size: 18px;
    font-weight: 600;
    padding: 4px 0 0;
}
/*********************/
.programs {
	background-color: #eee;
}
.programs .item {
	background-color: #fff;
	overflow: hidden;
	border-radius: 10px;
}
.programs .item img {
	width:100%;
	height:250px;
}
.programs .item h4 {
	font-size: 21px;
	margin-bottom: 10px;
}
.programs .item p {
	font-size: 14px;
	line-height: 1.5;
	
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.programs .item .btn1 {
	font-size: 14px;
	padding: 8px 20px;
}
.programs .owl-carousel {
	position: relative;
}
.programs .owl-nav {
	position: absolute;
	bottom: 100%;
	right: 0;
	margin-bottom: 15px;
	display: flex;
	gap:15px;
}

.programimg img {
	width:100%;
	height:300px;
	object-fit:cover;
    border-radius:15px;
}
/*********************/

.cta {
	background-size: cover;
	background-position: center;
}
.cta .desc {
	padding: 25px;
}
.cta .title {
	display: flex;
	gap:20px;
	align-items: center;
	margin-bottom: 20px;
}
.cta .title img {
	flex-shrink: 0;
}
.cta .title h2 {
	color: #fff;
	margin-bottom: 10px;
}
.cta p {
	color: #fff;
	margin-bottom: 30px;
}
/*********************/
/* category */
.category .item {
	display: block;
}
.category .item figure {
	border-radius: 50%;
	border:5px solid #eee;
	overflow: hidden;
}
.category .item img {
	width: 100%;
}
.category .item span {
	display: inline-block;
	background-color: rgb(120,55,250);
	padding: 5px 10px;
	color: #fff;
	border-radius: 5px;
}
.owl-carousel .owl-nav > div {
    background-color: var(--color5);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    transition: .5s;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.owl-carousel .owl-nav > div:hover {
    background-color: var(--color2);
    color: var(--white);
}

.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: var(--color2);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--color1);
}
/*********************/
/* counter */
.counter_wrap {
	background-size: cover;
	background-attachment: fixed;
}
.counter_wrap h1 {
	font-size: 60px;
	font-weight: 700;
	color: #efcda5;
}
/*********************/
/* testimonials */
.testimonials {
	background-size: cover;
}
.testimonials .item {
	position: relative;
	/*background-color: #fff;*/
	/*padding: 30px;*/
	border-radius: 15px;
}
.testimonials .item:before {
	position: absolute;
	background-color: #fff;
	border-radius: 5px;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 20px;
	content: '';
	z-index: -1
}
.testimonials .item .desc {
	position: relative;
	padding: 0 30px;
}
.testimonials .item img {
	width: 100px;
	height: 100px;
	border-radius: 100px;
	border:4px solid rgba(255,255,255,0.5);
	margin-bottom: 15px;
}
.testimonials .item .text {
	position: relative;
	padding:10px;
	padding-left: 40px;
}
.testimonials .item .text:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '\f10d';
	color: var(--color1);
	font-family:"FontAwesome";
	font-size: 2em;
}
.testimonials .item .star {
	border-radius: 30px;
	font-size: 14px;
}
.testimonials .item .city {
	position: relative;
	color: var(--color1);
	display: flex;
	align-items: center;
	gap:15px;
}
.testimonials .item .city:before {
	position: relative;
	background-color: var(--color2);
	width: 20px;
	height: 2px;
	content: '';
}
/*********************/
/* 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 */
.contact-us-section .form-box input {
    height: 60px;
    background-color: #fff;
    border: 0;
    transition: .5s;
    padding: 0px 25px;
    display: block;
    width: 100%;
    color: #0D0E14;
    margin-bottom: 20px;
    border-radius: 4px;
    outline: 0;
}
.contact-us-section .form-box textarea {
    height: 180px;
    width: 100%;
    padding: 15px 22px 0px;
    background: #fff;
    border: 0;
    border-radius: 4px;
    color: #0D0E14;
}
.form-box input::placeholder {
    font-size: 14px;
    opacity: .8;
}
.form-box textarea::placeholder {
    font-size: 14px;
    opacity: .8;
}
.form-box input:focus,
.form-box textarea:focus {
    border:1px solid var(--color1);
    outline:none;
}
.contact-us-section .btn1 {
    border:none;
}
.enquiry {
	background-color: #eee;
}
.form1 {}
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #f5f6fd;
  border: 1px solid #ccc; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}

.wrap-input-8 .input:focus {
  outline: none;
}

.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}

.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--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;
}

/*********************/
/* whyus */
.whyus { background-size: cover; background-attachment: fixed; }
.whyus .grid_view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
}
.whyus .item {
    padding: 25px;
    border-radius: 10px;
    border:1px solid #fff;
    display: flex;
    gap:15px;
    align-items: center;
    color: #fff;
}
.whyus .item figure {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
}
.whyus .item figure img {
    width: 50px;
}
@keyframes LeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -ms-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes RightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    transform: translateX(1000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.whyus .item:nth-child(odd) {
  -webkit-animation-name: LeftBig;
  animation-name: LeftBig;
}
.whyus .item:nth-child(even) {
  -webkit-animation-name: RightBig;
  animation-name: RightBig;
}

/*********************/
.custom1 .item {
    border:1px solid #fff;
    border-radius:10px;
    padding:10px;
    margin:10px 0;
}
.team {
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.team .grid_view {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 50px;
}
.team .item figure {
	background-image: url('../upload/brush.png');
	background-size: 100% 100%;
	width: 100%;
	aspect-ratio:1/1;
	margin: 0;
}
.team .item figure img {
	width: 100%;
	aspect-ratio:1/1;
	border-radius: 50%;
	transform: scale(0.9);
	border: 8px solid var(--white);
}
.team .item:nth-child(1) figure { background-image: url('../upload/brush1.png');}
.team .item:nth-child(2) figure { background-image: url('../upload/brush2.png');}
.team .item:nth-child(3) figure { background-image: url('../upload/brush3.png');}
.team .item:nth-child(4) figure { background-image: url('../upload/brush4.png');}
.team .item:nth-child(1) span { color: var(--color1);}
.team .item:nth-child(2) span { color: var(--color2);}
.team .item:nth-child(3) span { color: var(--color4);}
.team .item:nth-child(4) span { color: var(--color6);}

/*********************/

/* footer */
footer .footer-top {
	position: relative;
    background: url(../upload/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 85px;
}
footer .footer-logo {
	height: 100px;
	margin-bottom: 15px;
}
footer .footer-top p {
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
}
footer .footer-top h4 {
	position: relative;
	color: var(--white);
	font-size: 22px;
}
footer .footer-top h4 span {
	position: relative;
	display: inline-block;
}
footer .footer-top h4 span:after {
	position: relative;
	display: block;
	content: '';
	width:40px;
	height: 2px;
	background-color: var(--color1);
	margin: 15px 0;
	transition: 1s;
}
footer .footer-top h4 span:hover:after {
	width:100%;
}
footer .footer-top .links {
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
footer .footer-top .links li {
	display: block;
}
footer .footer-top .links li a {
	display: block;
	color: var(--white);
	font-size: 14px;
}

footer .footer-top .links li a i {
	font-size: 12px;
}
footer .footer-bottom {
	background-color: rgba(0,0,0,0.15);
}
.footer-shape {
    position: absolute;
    bottom: 30px;
    left: 50px;
}
.footer-shape2 {
    position: absolute;
    top: 50px;
    right: 50px;
}

/* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate2 {
  animation-name: float-bob2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob2;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob2;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob2;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate3 {
  animation-name: float-bob3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob3;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob3;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob3;
  -o-animation-duration: 4s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
.bounce-animate4 {
  animation-name: float-bob4;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob4;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob4;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob4;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
 .bounce-animate5 {
  animation-name: float-bob5;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob5;
  -moz-animation-duration: 6s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob5;
  -ms-animation-duration: 6s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob5;
  -o-animation-duration: 6s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear; }
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); } }
@-webkit-keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); } }
@-webkit-keyframes float-bob3 {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px); }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes float-bob4 {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); } }
@-webkit-keyframes float-bob5 {
  0% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); } }
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveleftbounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.rotateme {
  -webkit-animation-name: rotateme;
          animation-name: rotateme;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

/* dance-animate */
.dance {
  -webkit-animation: dance 2s alternate infinite;
}
@keyframes dance {
  0% {
    -webkit-transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}
.dance2 {
  -webkit-animation: dance2 4s alternate infinite;
}
@keyframes dance2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(25px, -25px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -25px, 25px);
  }
}
.dance3 {
  -webkit-animation: dance3 9s alternate infinite;
}
@keyframes dance3 {
  0% {
    -webkit-transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .carousel-item .main { height: 300px; }
    .carousel-item p { font-size: 5em; top: -25px; }
    .carousel-item h1 { font-size: 24px; }
    .navbar-brand h2 {     font-size: 21px;}
    .counter_wrap h1 { font-size: 48px; text-align: center; }
    .team .grid_view { grid-template-columns: 1fr; grid-gap: 30px;}
    .welcome:before {background:none;}
    .welcome .aboutimg { transform:none;  }
    .text-capitalize {  font-size: 40px;    padding-bottom: 43px;}
    .owl-slide .item img, .carousel-item .main {height: 200px}
    .nav-item {position:inherit;}



