* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Kumbh Sans', sans-serif;
  }

  body,html {
	  background-color: #141414;
	  font-family: 'Kumbh Sans', sans-serif;
	  scroll-behavior: smooth;
  }
  
  .navbar {
	background: #005bd1;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	position: sticky;
	top: 0;
	z-index: 999;
  }
  
  .navbar__container {
	display: flex;
	justify-content: space-between;
	height: 80px;
	z-index: 1;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 50px;
  
  }
  
  #navbar__logo {
	/*background-color: #005bd1;
	background-image: linear-gradient(to top, #005bd1 0%, #fbff08 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	text-decoration: none;
	font-size: 2rem;
	font-style: italic;*/
	margin: 1rem;
	display: flex;
	cursor: pointer;
	width: 50px;
	height: 60px;
  
  
  }
  
  .fa-gem {
	margin-right: 0.5rem;
  
  }
  
  .navbar__menu {
	display :flex;
	align-items: center;
	list-style: none;
	text-align: center;
  }
  
  .navbar__item {
	height: 80px;
  }
  
  .navbar__links {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0 1rem;
	height: 100%;
	font-size: 20px;
  }
  
  /*.navbar__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
	width: 100%;
  }*/
  
  .navbar__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }

  .btn {
	  text-decoration: none;
	  padding: 10px 50px;
	  font-size: 1.25rem;
	  position: relative;
	  margin: 32px;
  }

  .btn-3 {
	  overflow: hidden;
	  color: #005bd1;
	  border-radius: 30px;
	  box-shadow: 0 0 0 0 rgba(143, 64, 248, 0.5), 0 0 0 0 rgba(39, 200, 255, 0.5);
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-3::after {
	  content: "";
	  width: 100%;
	  height: 400px;
	  position: absolute;
	  top: -50px;
	  left: 0px;
	  background-color: #ff3cac;
	  background-image: linear-gradient(225deg, #ee985f 0%,
	   #26caf8 50%, 
	   #c625d0 100%);
	   z-index: -1;
	   transition: transform 0.5s ease;
  }

  .btn-3:hover {
	  transform: translate(0, -6px);
	  box-shadow: 10px -10px 25px 0 rgba(179, 221, 25, 0.596), -10px 10px 25px 0 rgba(179, 221, 25, 0.596);
  }


/* BUTTON */


  
 /* .button:hover {
	background: #fbff08b7;
	color: black;
	transition: all 0.3s ease;
  
  }*/
  
  .navbar__links:hover {
	color: #fbff08;
	transition: all 0.3s ease;
  }

  /* NAVBAR MOBILE VIEW */
  
  @media screen and (max-width: 960px) {
	.navbar__container {
	  display: flex;
	  /*justify-content: space-between;*/
	  height: 80px;
	  z-index: 1;
	  width: 100%;
	  max-width: 1300px;
	  padding: 0;
  
	}
  
	.navbar__menu {
	  display: grid;
	  grid-template-columns: auto;
	  margin: 0;
	  width: 100%;
	  position: absolute;
	  top: -1000px;
	  opacity: 0;
	  transition: all 0.5s ease;
	  height: 50vh;
	  z-index: -1;
	  background: #131313;
	  
	}
  
	.navbar__menu.active {
	  background: #131313;
	  top: 100%;
	  opacity: 1;
	  transition: all 0.5s ease;
	  z-index: 99;
	  height: 50vh;
	  font-size: 1.6rem;
	}
  
  #navbar__logo {
	padding-left: 25px;
	}
  
  .navbar__toggle .bar {
	width: 25px;
	height: 3px;
	margin: 5px auto;
	transition: all 0.3s ease-in-out;
	background: #fff;
  }
  
  .navbar__item {
	width: 100px;
  }
  
  .navbar__links {
	text-align: center;
	padding: 2rem;
	width: 100%;
	display: table;
  
  }
  
  #mobile-menu {
	position: absolute;
	top: 20%;
	right: 5%;
	transform: translate(5%, 20%);
  }
  
  .navbar__btn {
	padding-bottom: 2rem;
  
  }
  
  .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 60px;
	margin: 0;
	
  }

  .btn-3 {
	overflow: hidden;
	color: white;
	border-radius: 30px;
	box-shadow: 0 0 0 0 rgba(143, 64, 248, 0.5), 0 0 0 0 rgba(39, 200, 255, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
  .navbar__toggle .bar {
	display: block;
	cursor: pointer;
  }
  
  #mobile-menu.is-active .bar:nth-child(2) {
	opacity: 0;
  }
  
  #mobile-menu.is-active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg)
  }

  #mobile-menu.is-active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg)
  }
  
  }

  /* -----------------------------------HERO SECTION--------------------------------- */

  .main {
	  background-color: #141414;
  }

  .main__container {
	  display: grid;
	  overflow: hidden;
	  grid-template-columns: 1fr 1fr;
	  align-items: center;
	  justify-self: center;
	  margin: 0 auto;
	  height: 90vh;
	  background-color: #141414;
	  z-index: 2;
	  width: 100%;
	  max-width: 1300px;
	  padding: 0 50px 0 50px ;
	}

	.main__content h1 {
		margin-right: 2rem;
		font-family: "Aharoni", sans-serif, ;
		font-style: italic;
		font-size: 4rem;
		background-color: black;
		background-image: linear-gradient(to top, #005bd1 0%, #fbff08b7 100%);
		background-size: 100%;
		-webkit-background-clip: text;
		-moz-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		-moz-text-fill-color: transparent;
	}

	.main__content h2 {
		font-family: "Lucida Calligraphy", sans-serif ;
		font-style: italic;
		font-size: 0.9rem;
		color: rgba(228, 231, 39, 0.788);
	}


	.main__content p {
		margin-top: 4rem;
		font-weight: 700;
		color: white;
		text-shadow: 2px 2px 2px #000000;
		width: 100%;
	}

	#main__img {
		/*width: 750px;*/
		position: flex;
		height: 500px;
		z-index: 999;
	}

/* HERO SECTION (MOBILE VIEW) */

@media screen and (max-width: 768px) {
	.main_content h1 {
		font-size: 5rem;
	}

	.main__content p {
		width: 110%;
	}

	#main__img {
		/*width: 750px;*/
		position: static;
		height: 400px;
		z-index: 999;
	}
}

@media screen and (max-width: 480px) {
	.main__container {
		display: grid;
		grid-template-columns: auto;
		align-items: center;
		justify-self: center;
		width: 100%;
		margin: 0 auto;
		height: 100vh;
	}

	.main__content {
		text-align: center;
		margin: 0 auto;
	}

	.main__content h1 {
		font-size: 3rem;
		margin-top: 2rem;
	}

	.main__content h2 {
		font-size: 1.3rem;
	}

	.main__content p {
		width: 100%;
	}

	#main__img {
		/*width: 750px;*/
		position: flex;
		height: 300px;
		z-index: 999;
		/*display: none;*/
	}
}


/* -----------------------------------ABOUT US SECTION------------------------------------------- */

.about {
	background-color: #141414;
}

.about__container {
	display: grid;
	overflow: hidden;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-self: center;
	margin: 0 auto;
	height: 90vh;
	background-color: #141414;
	z-index: 2;
	width: 100%;
	max-width: 100%;
  }

  .about__img--container {
	  position: relative;
	  background-color: rgb(255, 255, 255);
	  width: 300px;

  }

  .about__img--container h1 {
	color: #141414;
	font-weight: 700;
	font-size: 3rem;
	margin: 0 0 0 90px;

}

  #about__img {
	height: 400px;
}

.overlay {
	 position: absolute;
	 transition: all .3s;
	 opacity: 0;
	 background-color: #141414;
 }

 #info__img {
	height: 370px;
	
 }


.about__img--container:hover .overlay{
	opacity: 1;
}

.overlayLeft {
	height: 100%;
	width: 0;
	top: 60px;
	left: 0;
}

.about__img--container:hover .overlayLeft {
	width: 170%;
}

  .about__content {
	width: auto;
	padding: 0 50px;
	
}

  .about__content h1 {
	  font-family: "Aharoni", sans-serif, ;
	  font-size: 3rem;
	  color: white;
	  
  }

  .about__content h2 {
	  
	  margin-top: 2rem;
	  font-style: italic;
	  font-size: 0.9rem;
	  color: white;
  }


  .about__content p {
	  margin-top: 4rem;
	  font-weight: 700;
	  color: white;
	  text-shadow: 2px 2px 2px #000000;
	  width: 100%;
  }

  
/*
/*
/*--------------------------------------------------------------------------------------------------
/*
/*
/*
/*
/* HERO SECTION (MOBILE VIEW) */
@media screen and (max-width: 1200px) {
.about__img--container:hover .overlay{
	display: none;
}}
@media screen and (max-width: 900px) {
	.about__container {
		display: grid;
		grid-template-columns: auto;
		align-items: center;
		justify-self: center;
		width: 100%;
		margin: 0 auto;
		height: 130vh;
	}
  
	.about__content {
		text-align: center;
		margin: 0 auto;
	}
  
	.about__content h1 {
		font-size: 3rem;
		margin-top: 2rem;
	}
  
	.about__content h2 {
		font-size: 1.3rem;
	}
  
	.about__content p {
		width: 100%;
	}
  
	#about__img {
		/*width: 750px;*/
		position: static;
		height: 300px;
		z-index: 999;
		display: none;
	}

	.about__img--container:hover .overlay{
		display: none;
	}
	
}

@media screen and (max-width: 480px) {
  .about__container {
	  display: grid;
	  grid-template-columns: auto;
	  align-items: center;
	  justify-self: center;
	  width: 100%;
	  margin: 0 auto;
	  height: 130vh;
  }

  .about__content {
	  text-align: center;
	  margin: 0 auto;
  }

  .about__content h1 {
	  font-size: 3rem;
	  margin-top: 2rem;
  }

  .about__content h2 {
	  font-size: 1.3rem;
  }

  .about__content p {
	  width: 100%;
  }

  #about__img {
	  /*width: 750px;*/
	  position: static;
	  height: 300px;
	  z-index: 999;
	  display: none;
  }

  .about__img--container:hover .overlay{
	display: none;
}

}
/*
/*
/*
/*----------------------------------------------------------------------
/*
/*
/*
/* ---------------------------------SERVICES SECTION---------------------------------------- */

.service__container {
	background: #141414;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: auto;
	z-index: 2;
	/*height: 90vh;*/
	/*overflow-y: hidden;
	position: relative;*/
}

.service__container h1 {
	align-items: center;
	color: #ccc;
	font-size: 2.5rem;
}

.service__container span {
	font-style: italic;
	font-size: 30px;
}

.service__container {
	width: 100%;
	padding-right: 0px;
	padding-left: 0px;
	margin-right: auto;
	margin-left: auto;
}

.service__row {
	display: flex;
	flex-wrap: wrap;
	margin-right: 0px;
	margin-left: 0px;
}

.service__column {
	position: relative;
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	flex: 0 0 100%;
	max-width: 100%;
}

.section-title {
	position: relative;
	width: 100%;
	text-align: center;
	padding: 45px 0 30px 0;
}

.section-title::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	left: 0;
	background: #eeeeee;
}

.effect {
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	box-shadow:5px 5px 15px #000;
}

.effect .effect-img {
	font-size: 0;
	overflow: hidden;
	opacity: 0.5;
}

.effect .effect-img img {
	width: 100%;
	height: auto;
	transition: all .3s;
}

.effect:hover .effect-img img{
	transform: scale(1.2);
} 

.effect .effect-text {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.76);
	overflow: hidden;
	transition: all .3s easi-in;
	opacity: 0.5;  
	
	cursor: pointer;
}

.effect .effect-text .inner {
	position: absolute;
	padding: 0 15%;
	z-index: 1;
}

.effect .effect-text:before, 
.effect .effect-text:after {
	position: absolute;
	display: block;
	width: 100%;
	height: 0;
	content: '';
}

.effect .effect-text:before {
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	left: -100%;
	top: 0;
}

.effect .effect-text:after {
	border-bottom: 3px solid #ffffff;
	border-left: 3px solid #ffffff;
	left: 100%;
	bottom: 0;
}

.effect:hover .effect-text {
	opacity: 1;
}

.effect:hover .effect-text:after,
.effect:hover .effect-text:before {
	animation-delay: .1s;
	animation-duration: .5s;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

.effect:hover .effect-text:after {
	animation-name: left-up;
}

.effect:hover .effect-text:before {
	animation-name: right-dn;
}

@-webkit-keyframes left-up {
	0% {
		left: 100%;
		height: 0;
	}
	50% {
		left: 0;
		height: 0;
	}
	100% {
		left: 0;
		height: 100%;
	}

}

@-webkit-keyframes right-dn {
	0% {
		left: -100%;
		height: 0;
	}
	50% {
		left: 0;
		height: 0;
	}
	100% {
		height: 0;
		left: 100%;
	}

}

.effect .effect-text h2 {
	height: 60px;
	color: #ffffff;
	font-size: 20px;
	margin: 0;
}

ul {
	color: #ffffff;
	font-size: 14px;
	margin-bottom: 5px;
	text-align: left;
}

.service__container p {
	text-align: center;
	color: #ccc;
	padding-top: 19px;
}

@media (min-width:576px) {

	.service__container {
		max-width: 600px;
	}

	.service__column {
		flex: 0 0 100%;
		max-width: 100%;
	}
}


@media (min-width:992px) {
	.service__container {
		max-width: 1200px;
	}

	.service__column {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}


/* SLIDER SECTION */ 

.slider {
	height: 200px;
	margin: auto;
	position: relative;
	background-color: #141414;
	width: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.slide-track {
	display: flex;
	width: calc(200px * 20);
	animation: scroll 60s linear infinite;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-200px * 10));
	}
}

.slide {
	height: 100px;
	width: 150px;
	display: flex;
	align-items: center;
	padding: 15px;
	perspective: 100px;
}

.slide img {
	width: 100%;
	transition: transform 1s;
}

.slide img:hover {
	transform: translateZ(20px);
}

/* GRADIENT SHADOWS */

.slider::before,
.slider::after {
	background: linear-gradient(to right, #141414 0%, rgba(255,255,255,0) 100%);
	content: '';
	height: 100%;
	position: absolute;
	width: 15%;
	z-index: 2;
}

.slider::before {
	left: 0;
	top: 0;
}

.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}


/* ---------------------------------------TEAM SECTION--------------------------------------*/

.team__container {
	margin: 20px 40px;
	background: #141414;
	color: white;
}

.heading {
	font-size: 60px;
	color: white;
}

.heading span {
	font-style: italic;
	font-size: 30px;
}

.profiles {
	display: flex;
	justify-content: space-around;
	margin: 20px 80px;

}

.profile {
	flex-basis: 260px;
}

.profile .profile-img {
	height: 260px;
	width: 260px;
	border-radius: 50%;
	filter: grayscale(100%);
	cursor: pointer;
	transition: 400ms;
}

.profile:hover .profile-img {
	filter: grayscale(0);
}

.user-name {
	margin-top: 30px;
	font-size: 35px;
	text-align: center;
}

.profile h5 {
	font-size: 18px;
	font-weight: 100;
	letter-spacing: 3px;
	color: #ccc;
	text-align: center;
	
}

.profile p {
	font-size: 16px;
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width: 1150px) {
	.profiles {
		flex-direction: column;
	}

	.profile {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.profile p {
		text-align: center;
		margin: 20px 60px 80px 60px;
		font-size: 20px;
	}
}
	@media only screen and (max-width: 900px) {
		.heading {
			font-size: 40px;
			color: white;
			text-align: center;
		}

		.heading span {
			font-size: 15px;
		}

		.profiles {
			margin: 20px 0;
		}

		.profile p {
			margin: 20px 10px 80px 10px;
		} 


	}

	.divider1 {
		height: 10vh;
	}
	

	/*------------------------------FOOTER SECTION-------------------------------- */

.footer {
	background: #0c0c0c;
	color: aliceblue;
	height: auto;
	position: relative;
	padding-top: 50px;
}

.footer h1 {
	font-size: 50px;
	display: flex;
	justify-content: center;
}

.footer h2 {
	font-style: italic;
	display: flex;
	justify-content: center;
	background-color: #ff3cac;
	background-image: linear-gradient(150deg, #ee985f 29%,
	 #26caf8 43%, 
	 #c625d0 100%);
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	z-index: -1;
	transition: transform 0.5s ease;

}

.footer span {
	font-style: italic;
	font-size: 60px;
}


.contact__container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px 10px;
}

/*.container:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}*/

.contact-box {
	max-width: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #0c0c0c;
	margin-bottom: 150px;
}

.left {
	height: 100%;
	padding-top: 80px;
}


.right {
	padding: 25px 40px;
}

.field {
	width: 100%;
	padding: 0.5rem 1rem;
	outline: none;
	border: 2px solid rgba(0, 0, 0, 0);
	background-color: rgba(230, 230, 230, 0.6);
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
	box-shadow: 0px 0px 11px 5px rgb(36, 36, 36);
}

.field:hover {
	background-color: rgba(255, 255, 255, 0.747);
}

.field:focus {
	background-color: #fff;
	border: 2px solid rgba(30, 85, 250, 0.47);
}

.area {
	min-height: 150px;
}

.contact__btn {
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	background-color: #2971cf;
	cursor: pointer;
	outline: none;
	border: none;
	transition: .3s;
}

.contact__btn:hover {
	background-color: #ccc;
}

@media screen and (max-width:880px) {
	.contact-box {
		grid-template-columns: 1fr;
	}

	.right {
		width: 460px;
	}
}








.footer .footer-bottom {
	background: #000000;
	color: aliceblue;
	font-size: 0.8rem;
	height: 50px;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding-top: 20px;

}
