@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/*
Theme Name: Ejecom
Theme URI: http://ejecom.mx
Author: Uble SAS de CV
Author URI: http://uble.mx
Description: Ejecom Theme for Wordpress by Uble
Version: 0.0.1
License: GNU General Public License

  /*****************/
  /* EJECOM STYLES */
  /*****************/

  /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body,html{
	margin:0 !important;
	padding: 0 !important;
}
body {
	background: #000;
	color: #fff;
	font-family: "Lato", sans-serif;
  }
  
  a {
	color: #f2f2f2;
	transition: 0.5s;
  }
  
  a:hover,
  a:active,
  a:focus {
	color: #ffffff75;
	outline: none;
	text-decoration: none;
  }
  
  p {
	padding: 0;
	margin: 0 0 30px 0;
  }
  span{
	text-decoration: none !important;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
  }
body.blog,
body.single-post,
body.category,
body.search{
	background-color: #fff;
	color: #000;
}
body.blog a,
body.single-post a,
body.category a,
body.search a{
	color: #4f1a7e;
}
body.blog #header a,
body.single-post #header a,
body.category #header a,
body.search #header a{
	color: #fff;
}
  /* Back to top button */
  
  .back-to-top {
	position: fixed;
	display: none;
	background: #4f1a7e;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
  }
  
  .back-to-top i {
	padding-top: 12px;
	color: #fff;
  }

  /*New Titles*/
  .title-gradient {
	border-left: 8px #00adee solid;
	padding-left:20px;
	background-image: linear-gradient(90deg, #652d90 0%, #1b75bb 56%, #00adee 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	font-weight:300 !important;
	font-family: 'Lato';
  	font-size: 7vmin;
	margin-top: 20px;
	margin-bottom: 30px;
  }
  .title-gradient .second-word{
	color: white;
	font-weight:100;
  }
  .elegantshadow {
	color: #d8d8d8;
	letter-spacing: 0.15em;
	font-size: 3vmin;
	
  }
	/* Prelaoder */
  
  #preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
  }
  
  #preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #4f1a7e;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  @keyframes animate-preloader {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
  
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  
  #header {
	background: rgba(0,0,0, 0.6);
	backdrop-filter: blur(10px);
	padding: 0px 0;
	height: 0px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 997;
  }
  
  #header.header-scrolled {
	padding: 10px 0;
	height: 120px;
	transition: all 0.25s;
  }
  
  #header #logo {
	float: left;
  }
  
  #header #logo h1 {
	font-size: 34px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
  }
  
  #header #logo h1 a,
  #header #logo h1 a:hover {
	color: #fff;
	padding-left: 10px;
	border-left: 4px solid #4f1a7e;
  }
  
  #header #logo img {
	height: 0px;
  }
  
  #header.header-scrolled #logo img {
	padding: 0px;
	margin: 0px;
	height: 100px;
  }
  
  /*--------------------------------------------------------------
  # Intro Section
  --------------------------------------------------------------*/
  
  #intro {
	display: table;
	width: 100%;
	height: 100vh;
	background: #000;
  }
  
  #intro .carousel-item {
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
  }
  
  #intro .carousel-item::before {
	content: '';
	background-color: rgba(0, 0, 0, 0.25);
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
  }
  
  #intro .carousel-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	-ms-flex-pack: start;
	justify-content: start;

	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
  }
  
  #intro .carousel-background img,
  #intro .carousel-content img {
	max-width: 100% !important;
  }
  
  #intro .carousel-content {
	text-align: center;
	margin-left: 15%;
  }
  
  #intro h2 {
	color: #fff;
	margin-bottom: 30px;
	font-size: 48px;
	font-weight: 700;
  }
  
  #intro p {
	width: 80%;
	margin: 0 auto 30px auto;
	color: #fff;
  }
  
  #intro .carousel-fade {
	overflow: hidden;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item {
	transition-property: opacity;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
	opacity: 0;
  }
  
  #intro .carousel-fade .carousel-inner .active,
  #intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
  #intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
	opacity: 1;
	transition: 0.5s;
  }
  
  #intro .carousel-fade .carousel-inner .carousel-item-next,
  #intro .carousel-fade .carousel-inner .carousel-item-prev,
  #intro .carousel-fade .carousel-inner .active.carousel-item-left,
  #intro .carousel-fade .carousel-inner .active.carousel-item-right {
	left: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
  }
  
  #intro .carousel-control-prev,
  #intro .carousel-control-next {
	width: 10%;
  }
  
  #intro .carousel-control-next-icon,
  #intro .carousel-control-prev-icon {
	background: none;
	font-size: 32px;
	line-height: 1;
  }
  
  #intro .carousel-indicators li {
	cursor: pointer;
  }
  
  #preabout .btn-get-started {
	font-family: "Lato", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 32px;
	border-radius: 50px;
	transition: 0.5s;
	margin: 10px;
	
	background: #fff;
	color: #4f1a7e;
  }
  
  #preabout  .btn-get-started:hover {
	color: #fff;
	background: #00adee;
  }
  
  @media screen and (max-width: 992px) {
	#intro .carousel-container {
	
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#intro .carousel-content {
		margin-left: 0%;
		margin-right: 0%;
	  }

  }
    /*--------------------------------------------------------------
  # Pre About section
  --------------------------------------------------------------*/
  #preabout{
	width: 100%;
	min-height: 50vh;
	background-image: url('./img/backs/foco.png');
	background-size: cover;
	background-attachment: fixed;
    background-position: 50% 0;
    background-repeat: no-repeat;
    position: relative;
	
  }
  #preabout #preabout-main{
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #000000aa;
	width: 100%;
	height: 100%;
	min-height: 50vh;
  }


  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  
  /* Nav Menu Essentials */
  
  .nav-menu,
  .nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
  }
  
  .nav-menu li {
	position: relative;
	white-space: nowrap;
  }
  
  .nav-menu > li {
	float: left;
  }
  
  .nav-menu li:hover > ul,
  .nav-menu li.sfHover > ul {
	display: block;
  }
  
  .nav-menu ul ul {
	top: 0;
	left: 100%;
  }
  
  .nav-menu ul li {
	min-width: 180px;
  }
  
  /* Nav Menu Arrows */
  
  .sf-arrows .sf-with-ul {
	padding-right: 30px;
  }
  
  .sf-arrows .sf-with-ul:after {
	content: "\f107";
	position: absolute;
	right: 15px;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
  }
  
  .sf-arrows ul .sf-with-ul:after {
	content: "\f105";
  }
  
  /* Nav Meu Container */
  
  #nav-menu-container {
	float: right;
	display: none;
  }
  
  #nav-menu-container.header-scrolled {
	float: right;
	display: inline;
  }
  
  /* Nav Meu Styling */
  
  .nav-menu a {
	padding: 30px 8px 30px 8px;
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	outline: none;
  }
  
  .nav-menu li:hover > a,
  .nav-menu > .menu-active > a {
	color: #00adee;
  }
  
  .nav-menu > li {
	margin-left: 10px;
  }
  
  .nav-menu ul {
	margin: 4px 0 0 0;
	padding: 10px;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	background: #fff;
  }
  
  .nav-menu ul li {
	transition: 0.3s;
  }
  
  .nav-menu ul li a {
	padding: 10px;
	color: #333;
	transition: 0.3s;
	display: block;
	font-size: 13px;
	text-transform: none;
  }
  
  .nav-menu ul li:hover > a {
	color: #4f1a7e;
  }
  
  .nav-menu ul ul {
	margin: 0;
  }
  
  /* Mobile Nav Toggle */
  
  #mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	margin: 31px 20px 31px 0;
	border: 0;
	background: none;
	font-size: 24px;
	display: none;
	transition: all 0.4s;
	outline: none;
	cursor: pointer;
  }
  
  #mobile-nav-toggle i {
	color: #000;
  }
  
  /* Mobile Nav Styling */
  
  #mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(0, 0, 0, 0.8);
	left: -260px;
	width: 260px;
	overflow-y: auto;
	transition: 0.4s;
  }
  
  #mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
  }
  
  #mobile-nav ul li {
	position: relative;
  }
  
  #mobile-nav ul li a {
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	overflow: hidden;
	padding: 10px 22px 10px 15px;
	position: relative;
	text-decoration: none;
	width: 100%;
	display: block;
	outline: none;
	font-weight: 700;
	font-family: "Lato", sans-serif;
  }
  
  #mobile-nav ul li a:hover {
	color: #4f1a7e;
  }
  
  #mobile-nav ul li li {
	padding-left: 30px;
  }
  
  #mobile-nav ul li.menu-active a {
	color: #4f1a7e;
  }
  
  #mobile-nav ul .menu-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 15px;
	cursor: pointer;
	color: #fff;
  }
  
  #mobile-nav ul .menu-has-children i.fa-chevron-up {
	color: #4f1a7e;
  }
  
  #mobile-nav ul .menu-has-children li a {
	text-transform: none;
  }
  
  #mobile-nav ul .menu-item-active {
	color: #4f1a7e;
  }
  
  #mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	display: none;
  }
  
  /* Mobile Nav body classes */
  
  body.mobile-nav-active {
	overflow: hidden;
  }
  
  body.mobile-nav-active #mobile-nav {
	left: 0;
  }
  
  body.mobile-nav-active #mobile-nav-toggle {
	color: #fff;
  }
  
  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  
  /* Sections Header
  --------------------------------*/
  
  .section-header h3 {
	font-size: 32px;
	color: #111;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 15px;
  }
  
  .section-header h3::before {
	content: '';
	position: absolute;
	display: block;
	width: 120px;
	height: 1px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
  }
  
  .section-header h3::after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 3px;
	background: #4f1a7e;
	bottom: 0;
	left: calc(50% - 20px);
  }
  
  .section-header p {
	text-align: center;
	padding-bottom: 30px;
	color: #fff;
  }
  
  /* Section with background
  --------------------------------*/
  
  .section-bg {
	background: #000;
  }
  
  /* Featured Services Section
  --------------------------------*/
  
  #featured-services {
	background: #fff;
	padding-top:60px;
	padding-bottom: 60px;
	background-image: url('./img/team_1.jpg');
	background-repeat: repeat;
	background-position: top;
	position: relative;
	z-index: 2;
  }
  #featured-services::before{
	content: '';
	position: absolute;
	top:0;
	bottom:0;
	z-index: -1;
	left:0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #dab6fa96;
  }
  #featured-services .title-gradient .second-word{
	color: #000 !important;
	font-weight:800;
  }
  
  .parent {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 40px;
	width: 100%;
	}
	#featured-services .box {
		padding: 30px 20px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #48127888;
		border-radius: 34px;
		backdrop-filter: blur(3px);
		transition: all 500ms linear;
		background-size: cover;
		background-position: center;
		position: relative;
	  }
	  
	#featured-services .box.div1 { grid-area: 1 / 1 / 2 / 2; background-color: #652D90bb;}
	#featured-services .box.div10{ grid-area: 2 / 1 / 3 / 2; background-color: #00aeeebb; background-image: url('./img/featured/5.png');}
	#featured-services .box.div2 { grid-area: 1 / 2 / 2 / 3; background-color: #00aeeebb; background-image: url('./img/featured/1.png');}
	#featured-services .box.div3 { grid-area: 1 / 3 / 2 / 4; background-color: #00adeebb;}
	#featured-services .box.div4 { grid-area: 2 / 2 / 4 / 4; background-color: #00adeebb;}
	#featured-services .box.div5 { grid-area: 3 / 1 / 4 / 2; background-color: #652D90bb; background-image: url('./img/featured/4.png');}
	#featured-services .box.div6 { grid-area: 4 / 1 / 5 / 3; background-color: #652D90bb;}
	#featured-services .box.div7 { grid-area: 4 / 3 / 5 / 4; background-color: #00adeebb; display: flex; align-items: center; justify-content: center;}
	#featured-services .box.div8 { grid-area: 1 / 4 / 3 / 5; background-color: #652D90bb;}
	#featured-services .box.div9 { grid-area: 3 / 4 / 5 / 5; background-color: #00adeebb; background-image: url('./img/featured/6.webp');}
	
	#featured-services .box.div2::before,
	#featured-services .box.div5::before,
	#featured-services .box.div9::before,
	#featured-services .box.div10::before{
		content: '';
		background-image: linear-gradient(0deg, #652d90 0%, #1b75bb 56%, #00adee 100%);
		width: 100%;
		height: 100%;
		top:0px;
		left:0px;
		right: 0px;
		bottom: 0px;
		position: absolute;
		z-index: 2;
		opacity: .35;
		border-radius: 34px;
		transition: all .5s linear;
	
	}
	#featured-services .box.div2:hover::before,
	#featured-services .box.div5:hover::before,
	#featured-services .box.div9:hover::before,
	#featured-services .box.div10:hover::before{
		opacity: 0;
		transition: all .5s linear;
		color:#fff;
	}
	#featured-services .box.div7 img{
		width: 75%;
	}
	#featured-services .box:hover{
		background-color: #ffffff94;
		color:#000;
		transition: all 500ms linear;
		
	  }
	  #featured-services .box:hover i{
		color:#000;
		transition: all 500ms linear;
		
	  }
	#featured-services .box article{
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap:10px;
		border-radius: 34px;
	}
	#featured-services .box.div10 article{
		width: 100%;
		height: 100%;
		position: absolute;
		top:0;
		left:0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 3;
		transition: all 500ms linear;
	}
	#featured-services .box.div10:hover article{
		background-color: #ffffffc8;
		transition: all 500ms linear;
	}
  
  
  #featured-services .box-bg {
	background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
  }
  
  #featured-services i {
	color: #fff;
	font-size: 48px;
	display: inline-block;
	line-height: 1;
  }
  #featured-services .box.div4 i{
	font-size: 68px;
  }
  #featured-services h4 {
	font-weight: 400;
	margin: 15px 0;
	font-size: 18px;
  }
  #featured-services .box.div4 h4{
	font-size: 40px;
  }
  
  #featured-services h4 a {
	color: #fff;
  }
  
  #featured-services h4 a:hover {
	color: #4f1a7e;
  }
  
  #featured-services p {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 0;
  }
  @media (max-width: 650px) {
	#featured-services .parent {
		display: flex;
		flex-direction: column;
	}
	#featured-services .box {
		min-height: 200px;
	}
  }
/* NEW design*/
  #featured-services .nav.nav-pills{
	background-color: #4f1a7e;
	border-radius: 34px;
	padding: 10px;
	color: #fff;
  }
  #featured-services .nav-pills .nav-link.active{
	background-color: #00adee;
	color:#4f1a7e;
	border-radius: 34px;
  }
  #featured-services .card{
	background-color: #ffffffaa;
	backdrop-filter: blur(5px);
	border-radius: 34px;
  }
  #featured-services .card .card-title{
	color: #4f1a7e;
	font-weight: 700;
	font-size: 40px;
	word-spacing: 10px;
	text-align: center;
	padding: 10px auto;
	letter-spacing: 1.5px;

  }
  #featured-services .card .card-img-top {
	width: 50%;
	max-width: 800px;
	margin: 40px auto;
	display: block;
  }
  #featured-services .card .card-text{
	color: #000;
	font-size: 20px;
	text-align: center;
	line-height: 1.5;
	padding: 10px 0px;

  }
  #featured-services .card .btn{
	background-color: #4f1a7e;
	color: #fff;
	border-radius: 34px;
	margin: 50px auto;
	display: block;
	width: 30%;
  }
  @-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		opacity: 0;
		-webkit-filter: blur(10px);
	
	}
	50%{
		-webkit-filter: blur(5px);
		  
		}
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
		-webkit-filter: blur(0px);
	}
}
@-moz-keyframes rotateIn {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(-200deg);
		opacity: 0;
		-moz-filter: blur(10px);
	
	}
	50%{
		-moz-filter: blur(5px);
		}
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	    -moz-filter: blur(0px);
	}
}
@-o-keyframes rotateIn {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(-200deg);
		opacity: 0;
		-o-filter: blur(10px);
	}
	50%{
		-o-filter: blur(5px);
		}
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
		-o-filter: blur(0px);
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center center;
		transform: rotate(-200deg);
		opacity: 0;
		filter: blur(10px);
	}
	50%{
		filter: blur(5px);
		}
	100% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
		filter: blur(0px);
	}
}

#featured-services .rotateIn {
	-webkit-animation-name: rotateIn;
	-moz-animation-name: rotateIn;
	-o-animation-name: rotateIn;
	animation-name: rotateIn;
}
@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
		-webkit-filter: blur(10px);
	}
	50%{
		-webkit-filter: blur(5px);
		}
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(200deg);
		opacity: 0;
		-webkit-filter: blur(0px);
	}
}

@-moz-keyframes rotateOut {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
		-moz-filter: blur(10px);
	}
	
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(200deg);
		opacity: 0;
		-moz-filter: blur(0px);
	}
}

@-o-keyframes rotateOut {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
		-o-filter: blur(10px);
	}
	
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(200deg);
		opacity: 0;
		-o-filter: blur(0px);
	}
}

@keyframes rotateOut {
	0% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
		filter: blur(10px);
	}
	
	100% {
		transform-origin: center center;
		transform: rotate(200deg);
		opacity: 0;
		filter: blur(0px);
	}
}

#featured-services .rotateOut {
	-webkit-animation-name: rotateOut;
	-moz-animation-name: rotateOut;
	-o-animation-name: rotateOut;
	animation-name: rotateOut;
}
  
  /* About Us Section
  --------------------------------*/
  
  #about {
	background: url("./img/backs/grunge.jpg") no-repeat fixed;
	background-size: cover;
	padding: 60px 0 40px 0;
	position: relative;
  }
  
  #about::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0, 0.3);
	z-index: 9;
  }
  
  #about .container {
	position: relative;
	z-index: 10;
  }
  
  #about .about-col {
	background: #000;
	border-radius: 0 0 4px 4px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
  }
  
  #about .about-col .img {
	position: relative;
  }
  
  #about .about-col .img img {
	border-radius: 4px 4px 0 0;
  }
  
  #about .about-col .icon {
	width: 64px;
	height: 64px;
	padding-top: 8px;
	text-align: center;
	position: absolute;
	background-color: #4f1a7e;
	border-radius: 50%;
	text-align: center;
	border: 4px solid #fff;
	left: calc( 50% - 32px);
	bottom: -30px;
	transition: 0.3s;
  }
  
  #about .about-col i {
	font-size: 36px;
	line-height: 1;
	color: #fff;
	transition: 0.3s;
  }
  
  #about .about-col:hover .icon {
	background-color: #fff;
  }
  
  #about .about-col:hover i {
	color: #4f1a7e;
  }
  
  #about .about-col h2 {
	color: #000;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	padding: 0;
	margin: 40px 0 12px 0;
  }
  
  #about .about-col h2 a {
	color: #000;
  }
  
  #about .about-col h2 a:hover {
	color: #4f1a7e;
  }
  
  #about .about-col p {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 0;
	padding: 0 20px 20px 20px;
  }
  
  #about .about-img {
	text-align: center;
	padding-bottom: 20px;
  }
   /* Our Footprint Section
  --------------------------------*/
  #footprint{
	background-image: url('./img/backs/earth.jpg');
	background-size: cover;
	padding-top: 120px;
  }
  #footprint .footprint-img{
	width: 100%;
	margin: 0 auto;
	text-align: center;
  }
  #footprint .footprint-img img{
	width: 80%;
	margin: 0 auto;
	display: block;
  }

  /* Philosophy Section
  --------------------------------*/
  
  #philosophy {
	padding: 60px 0;
	background-color: #131313;
  }
  
  #philosophy .contact-info {
	margin-bottom: 20px;
	text-align: center;
  }
  
  #philosophy .contact-info i {
	font-size: 48px;
	display: inline-block;
	margin-bottom: 10px;
	color: #4f1a7e;
  }
  
  #philosophy .contact-info address,
  #philosophy .contact-info p {
	margin-bottom: 0;
	color: #fff;
  }
  
  #philosophy .contact-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #999;
  }
  
  #philosophy .contact-info a {
	color: #00adee;
  }
  
  #philosophy .contact-info a:hover {
	color: #4f1a7e;
  }
  
  #philosophy .contact-address,
  #philosophy .contact-phone,
  #philosophy .contact-email {
	margin-top: 0px;
	margin-bottom: 0px;
  }
  
  #philosophy .contact-phone p {
	margin-left: 20px;
	margin-right: 20px;
  }
  #philosophy .card {
	border-radius: 1% !important;
	border: 1px solid rgba(0, 0, 0, .150);
	margin:10px;
  }
  
  #philosophy .card-title {
	color: #000;
	font-weight: 700;
  }
  
  #philosophy .card-date {
	font-size: 1.2rem;
	font-weight: 700;
	color: #000;
  }
  
  #philosophy .prod-img {
	margin-top: -150px;
	margin-bottom: 10px;
  }
  
  #philosophy .product-img .prod-img img {
	width: 250px;
	height: 250px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	border-radius: 10%;
  }
  
  #philosophy .card-text {
	font-size: 1.2rem;
	color: #000 !important;
  }
  
  #philosophy .card-footer {
	padding: .75rem 1.25rem;
	background-color: rgba(0, 0, 0, .001);
	border-top: 1px solid rgba(0, 0, 0, .125);
  }

  
  /* Our Clients Section
  --------------------------------*/
  
  #ourclients {
	background: rgb(0,0,0);
	background: linear-gradient(180deg, #260c3d 0%, #000000 100%);
	background-size: cover;
	padding: 60px 0 40px 0;
  }
  
  #ourclients .box {
	margin-bottom: 30px;
  }
  
  #ourclients .icon {
	float: left;
  }
  
  #ourclients .icon i {
	color: #00adee;
	font-size: 46px;
	line-height: 1;
	transition: 0.5s;
  }
  
  #ourclients .title-gradient {
	border-left: 8px #ffffff solid;
	padding-left:20px;
	background-image: linear-gradient(90deg, #ffffff 0%, #00adee 56%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	font-weight:300 !important;
	font-family: 'Lato';
  	font-size: 7vmin;
	margin-top: 20px;
	margin-bottom: 30px;
  }
   
  #ourclients .title-gradient .second-word{
	color: #00adee;
	font-weight:100;
  }
  
  #ourclients .title a {
	color: #111;
  }
  
  #ourclients .box:hover .title a {
	color: #4f1a7e;
  }
  
  #ourclients .description {
	font-size:24px;
	margin-left: 60px;
	line-height: 24px;
	margin-bottom: 0;
	font-weight: 100;
  }
  
  /* Services Section
  --------------------------------*/
  
  #services {
	background: #fff;
	background-size: cover;
	padding: 60px 0 40px 0;
  }
  
  #services .box {
	margin-bottom: 30px;
  }
  
  #services .icon {
	float: left;
  }
  
  #services .icon i {
	color: #4f1a7e;
	font-size: 36px;
	line-height: 1;
	transition: 0.5s;
  }
  
  #services .title {
	margin-left: 60px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 18px;
  }
  
  #services .title a {
	color: #111;
  }
  
  #services .box:hover .title a {
	color: #4f1a7e;
  }
  
  #services .description {
	font-size: 14px;
	margin-left: 60px;
	line-height: 24px;
	margin-bottom: 0;
  }
  
  /* Call To Action Section
  --------------------------------*/
  
  #call-to-action {
	background: url("img/call-to-action-bg.jpg") fixed center center;
	background-size: cover;
	padding: 60px 0;
  }
  
  #call-to-action h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
  }
  
  #call-to-action p {
	color: #fff;
  }
  
  #call-to-action .cta-btn {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 8px 28px;
	border-radius: 25px;
	transition: 0.5s;
	margin-top: 10px;
	border: 2px solid #fff;
	color: #fff;
  }
  
  #call-to-action .cta-btn:hover {
	background: #4f1a7e;
	border: 2px solid #4f1a7e;
  }
  
  /* Call To Action Section
  --------------------------------*/
  
  #skills {
	padding: 60px 0;
  }
  
  #skills .progress {
	height: 35px;
	margin-bottom: 10px;
  }
  
  #skills .progress .skill {
	font-family: "Lato", sans-serif;
	line-height: 35px;
	padding: 0;
	margin: 0 0 0 20px;
	text-transform: uppercase;
  }
  
  #skills .progress .skill .val {
	float: right;
	font-style: normal;
	margin: 0 20px 0 0;
  }
  
  #skills .progress-bar {
	width: 1px;
	text-align: left;
	transition: .9s;
  }
  
  /* Facts Section
  --------------------------------*/
  
  #facts {
	background: url("img/about-mission.jpg?v=1.0.1") center top no-repeat fixed;
	background-size: cover;
	padding: 60px 0;
	position: relative;
  }
  
  #facts::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #ffffffc9;
	z-index: 9;
  }
  #facts .title-gradient .second-word{
	color: #000 !important;
	font-weight:800;
  }
  #facts .container {
	position: relative;
	z-index: 10;
  }
  
  #facts .counters span {
	font-weight: bold;
	font-size: 48px;
	display: block;
	color: #000;
  }
  #facts .counters h6 {
	padding: 0;
	margin: 20px 0 20px 0;
	font-weight: 400;
	font-size: 36px;
	color: #000;
  }
  #facts .counters p {
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 22px;
	color: #000;
  }
  #facts .counters p {
	padding: 0;
	margin: 0 0 20px 0;
	font-family: "Lato", sans-serif;
	font-size: 20px;
	color: #000;
  }

  #facts .facts-img {
	text-align: center;
	padding-top: 30px;
  }
  
  /* Portfolio Section
  --------------------------------*/
  
  #portfolio {
	padding: 60px 0;
  }
  
  #portfolio #portfolio-flters {
	padding: 0;
	margin: 5px 0 35px 0;
	list-style: none;
	text-align: center;
  }
  
  #portfolio #portfolio-flters li {
	cursor: pointer;
	margin: 15px 15px 15px 0;
	display: inline-block;
	padding: 10px 20px;
	font-size: 12px;
	line-height: 20px;
	color: #666666;
	border-radius: 4px;
	text-transform: uppercase;
	background: #fff;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
  }
  
  #portfolio #portfolio-flters li:hover,
  #portfolio #portfolio-flters li.filter-active {
	background: #4f1a7e;
	color: #fff;
  }
  
  #portfolio #portfolio-flters li:last-child {
	margin-right: 0;
  }
  
  #portfolio .portfolio-wrap {
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
  }
  
  #portfolio .portfolio-wrap:hover {
	box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  #portfolio .portfolio-item {
	position: relative;
	height: 360px;
	overflow: hidden;
  }
  
  #portfolio .portfolio-item figure {
	background: #000;
	overflow: hidden;
	height: 240px;
	position: relative;
	border-radius: 4px 4px 0 0;
	margin: 0;
  }
  
  #portfolio .portfolio-item figure:hover img {
	opacity: 0.4;
	transition: 0.3s;
  }
  
  #portfolio .portfolio-item figure .link-preview,
  #portfolio .portfolio-item figure .link-details {
	position: absolute;
	display: inline-block;
	opacity: 0;
	line-height: 1;
	text-align: center;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 50%;
	transition: 0.2s linear;
  }
  
  #portfolio .portfolio-item figure .link-preview i,
  #portfolio .portfolio-item figure .link-details i {
	padding-top: 6px;
	font-size: 22px;
	color: #333;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover,
  #portfolio .portfolio-item figure .link-details:hover {
	background: #4f1a7e;
  }
  
  #portfolio .portfolio-item figure .link-preview:hover i,
  #portfolio .portfolio-item figure .link-details:hover i {
	color: #fff;
  }
  
  #portfolio .portfolio-item figure .link-preview {
	left: calc(50% - 38px);
	top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure .link-details {
	right: calc(50% - 38px);
	top: calc(50% - 18px);
  }
  
  #portfolio .portfolio-item figure:hover .link-preview {
	opacity: 1;
	left: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item figure:hover .link-details {
	opacity: 1;
	right: calc(50% - 44px);
  }
  
  #portfolio .portfolio-item .portfolio-info {
	background: #fff;
	text-align: center;
	padding: 30px;
	height: 90px;
	border-radius: 0 0 3px 3px;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 {
	font-size: 18px;
	line-height: 1px;
	font-weight: 700;
	margin-bottom: 18px;
	padding-bottom: 0;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a {
	color: #333;
  }
  
  #portfolio .portfolio-item .portfolio-info h4 a:hover {
	color: #4f1a7e;
  }
  
  #portfolio .portfolio-item .portfolio-info p {
	padding: 0;
	margin: 0;
	color: #b8b8b8;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
  }
  
  /* Clients Section
  --------------------------------*/
  
  #clients {
	padding: 60px 0;
	background-image: url('./img/backs/city.jpg');
	background-size: cover;
	background-attachment: fixed;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: relative;
  }
  #clients .awards-carousel .lead{
	display: flex;
	align-items: center;
	gap:30px;
	justify-content: center;

  }
  #clients .awards-carousel .logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
  }
  #clients .awards-carousel .logo-container span{
	color:#fff;
	font-size: 20px;
	font-weight: 700;
  }
  #clients .awards-carousel .ph {
	max-width: 300px;
	opacity: 0.7;
	transition: 0.3s;
	padding: 15px 20px;
  }
  #clients .awards-carousel .logo{
	height: 100px;
	width: auto;
	display: block;
	margin: 15px auto;

  }
  #clients .lead{
	display: flex;
	align-items: center;
	gap:30px
  }
  @media screen and (max-width: 780px) {
	#clients  .lead{
		display: block;
	  }
	  #clients .awards-carousel .ph {
		height: auto;
		max-height: 300px;
		margin: 0 auto;
		display: block;
	  }
  }
  
  #clients .icon{
	text-align: center;
	width: 100%;
	font-size: 40px;
  }
  #clients .awards-carousel img:hover {
	opacity: 1;
  }
  
  #clients .owl-nav,
  #clients .owl-dots {
	margin-top: 5px;
	text-align: center;
  }
  
  #clients .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
  }
  
  #clients .owl-dot.active {
	background-color: #4f1a7e;
  }
  
  /* Testimonials Section
  --------------------------------*/
  
  #testimonials {
	padding: 60px 0;
	background-color: #131313;
  }
  
  #testimonials .section-header {
	margin-bottom: 40px;
  }
  
  #testimonials .testimonial-item {
	text-align: center;
  }
  
  #testimonials .testimonial-item .testimonial-img {
	width: 120px;
	border-radius: 50%;
	border: 4px solid #fff;
	margin: 0 auto;
  }
  
  #testimonials .testimonial-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #bcbcbc;
  }
  
  #testimonials .testimonial-item h4 {
	font-size: 14px;
	color: #00adee;
	margin: 0 0 15px 0;
  }
  
  #testimonials .testimonial-item .quote-sign-left {
	margin-top: -15px;
	padding-right: 10px;
	display: inline-block;
	width: 37px;
  }
  
  #testimonials .testimonial-item .quote-sign-right {
	margin-bottom: -15px;
	padding-left: 10px;
	display: inline-block;
	max-width: 100%;
	width: 37px;
  }
  
  #testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
	color:#ffffff
  }
  
  #testimonials .owl-nav,
  #testimonials .owl-dots {
	margin-top: 5px;
	text-align: center;
  }
  
  #testimonials .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
  }
  
  #testimonials .owl-dot.active {
	background-color: #4f1a7e;
  }
  
  /* Team Section
  --------------------------------*/
  
  #team {
	padding: 60px 0;
	--userthumb: 150px;
  	--arrowSize: 15px;
  }
  #team h3{
	font-family: "Lato", sans-serif;
  	color: #00adee;
	font-size: 50px;
	font-weight: 100;
}
  
  #team .member {
	text-align: center;
	margin-bottom: 20px;
	background: #000;
	position: relative;
  }
  
  #team .member .member-info {
	opacity: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	transition: 0.2s;
  }
  
  #team .member .member-info-content {

	transition: margin 0.8s;
	margin: 20px 0px 20px auto;
  }
  
  #team .member:hover .member-info {
	background: rgba(0, 0, 0, 0.7);
	opacity: 1;
	transition: 0.8s;
  }
  
  #team .member:hover .member-info-content {
	margin-top: 0;
	transition: margin 0.8s;
	margin: 20px auto 20px 0px;
    width: 65%;
  }
  
  #team .member h3 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	color: #fff;
  }
  
  #team .member span {
	font-style: italic;
	display: block;
	font-size: 14px;
	color: #fff;
	max-width: 80%;
	margin:0px auto;

  }
  
  #team .member .social {
	margin-top: 15px;
  }
  
  #team .member .social a {
	transition: none;
	color: #fff;
  }
  
  #team .member .social a:hover {
	color: #4f1a7e;
  }
  
  #team .member .social i {
	font-size: 18px;
	margin: 0 2px;
  }
  
  @media screen and (max-width: 480px) {
	#team .marisol{
		margin: 0 auto;
	}
	#team .member .member-info,
	#team .marisol .member-info{
		display: block;
		position: relative;
		margin: 0px auto;
		padding: 0px 10px;
		opacity: 1;
		text-align: center;
		font-size: 18px;
	}
	#team .member.member-info-content {
		margin-top: 0;
		transition: margin 0.8s;
		margin: 20px auto 20px auto;
		width: 90%;
	  }
	  #team .member:hover .member-info-content {
		margin-top: 0;
		transition: margin 0.8s;
		margin: 20px auto 20px auto;
		width: 90%;
	  }
	#team .member span {
		max-width: 90%;
		font-size: 18px;
	}
	#team .member h4 {
		font-weight: 700;
		margin-bottom: 2px;
		font-size: 14px;
		color: #fff;
	}
	#team .member .social i {
		font-size: 16px;
		margin: 0 1px;
	  }
  }
  #team .marisol .parent{
	display: flex;
	align-items: center;
	justify-content: center;
  }
  #team .marisol .crop{
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	max-width: 300px;
  }
  #team .marisol .crop img{
	width: 100%;
  }
  #team .userProfile {
	flex-wrap: wrap;
	align-items: center;
  }
  #team .userProfile__thumbnail {
	width: var(--userthumb, 75px);
	height: var(--userthumb, 75px);
	flex: 0 0 auto;
	margin: 0px;
	padding: 0px;
  }
  #team .userProfile__image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	overflow: hidden;
  }
  
  #team .team {
	padding: 0px;
	list-style: none;
	flex-wrap: wrap;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap:15px;
  }
  @media (max-width: 480px) {
	#team .team {
	  justify-content: center;
	}
  }
  #team .team__members {
	position: relative;
	padding: 1rem;
	display: none;
	margin-bottom: calc(var(--userthumb) + var(--arrowSize)*2 );
	box-sizing: border-box;
	flex: 0 0 100%;
	filter: grayscale(1) contrast(100%);
	
  }
  @media (min-width: 480px) {
	#team .team__members {
	  padding: 1rem;
	  display: inline-block;
	  flex: 0 0 20%;
	  margin: 0px;
	}
  }
  
  #team .team__members .userProfile {
	justify-content: center;
	position: absolute;
	top: calc(100% + var(--arrowSize));
	margin: 0 auto;
	left: 0;
	right: 0;
  }
  @media (min-width: 480px) {
	#team .team__members .userProfile {
	  position: static;
	}
  }
  #team .team__members .userProfile__thumbnail {
	position: relative;
  }
  #team .team__members .userProfile__thumbnail:after {
	content: " ";
	position: absolute;
	left: 50%;
	top: 50%;
	width: var(--userthumb, 50px);
	height: var(--userthumb, 50px);
	transform: translate(-50%, -50%) scale(0);
	background: linear-gradient(90deg, #fff, #00adee);
	background-size: 400% 400%;
	border-radius: 50%;
	z-index: -1;
	transition: all 0.3s linear;
  }
  #team .team__members:hover, 
  #team .team__members.team__members--show {
	filter: grayscale(0) contrast(150%);
	display: inline-block;
  }
  @media (min-width: 480px) {
	#team .team__members:hover .team__details, .team__members.team__members--show .team__details {
	  transform: translateX(-50%) scale(1, 1);
	}
  }
  #team .team__members:hover .userProfile__thumbnail:after, 
  #team .team__members.team__members--show .userProfile__thumbnail:after {
	transform: translate(-50%, -50%) scale(1.2);
	animation: rainbow-border 1.5s linear infinite;
  }
  @media (max-width: 480px) {
	#team .team__members:hover:not(.team__members--show) {
	  display: none !important;
	}
  }
  #team .team__details {
	margin: 0 auto;
	position: relative;
	transform: translateX(0%) scale(1, 1);
	background: white;
	border: 1px solid #ccc;
	padding: 20px;
	width: 300px;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	transform-origin: center bottom;
	transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	color:#000;
  }
  @media (min-width: 480px) {
	#team .team__details {
	  position: absolute;
	  bottom: calc(100% + 15px);
	  left: 50%;
	  transform: translateX(-50%) scale(0, 0);
	}
  }
  #team .team__details:after {
	width: var(--arrowSize);
	height: var(--arrowSize);
	position: absolute;
	top: calc(100% - var(--arrowSize)/2);
	background-color: #fff;
	content: " ";
	transform: rotate(45deg);
	left: calc(50% - var(--arrowSize)/2);
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  }
  #team .team__details__summery {
	border-top: 1px dashed #ccc;
	padding-top: 15px;
	font-size: 15px;
	color: #aeaeae;
  }
  #team .team__meta {
	padding-bottom: 15px;
  }
  #team .team__meta__title {
	margin: 0px;
	font-weight: 300;
	color:#000;
	font-size: 23px;
  }
  #team .team__meta__designation {
	margin-top: 10px;
  }
  
  @keyframes rainbow-border {
	0% {
	  background-position: 0% 50%;
	}
	50% {
	  background-position: 100% 50%;
	}
	100% {
	  background-position: 0% 50%;
	}
  }
/*


*/
#ourrealclients{
	padding: 60px 0px;
	background-color: #000;
}
#ourrealclients .clients-carousel img{
	filter:saturate(.0) brightness(4) invert(0);
	transition: filter .5s linear;
}
#ourrealclients .clients-carousel img:hover{
	filter:none;
	transition: filter .5s linear;
}
#ourrealclients .clients-carousel.owl-carousel{
	position: relative;
}
#ourrealclients .clients-carousel.owl-carousel .owl-stage {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
#ourrealclients .owl-nav,
#ourrealclients .owl-dots {
  margin-top: 5px;
  text-align: center;
}
#ourrealclients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}
#ourrealclients .owl-dot.active {
  background-color: #4f1a7e;
}
#ourrealclients .owl-nav{
	position: absolute;
	width: 100%;
	display: flex;
}
  /* Experience Section
  --------------------------------*/
  
  #experience {
	padding: 60px 0;
  }
  
  #experience .contact-info {
	margin-bottom: 20px;
	text-align: center;
  }
  
  #experience .contact-info i {
	font-size: 48px;
	display: inline-block;
	margin-bottom: 10px;
	color: #4f1a7e;
  }
  
  #experience .contact-info address,
  #experience .contact-info p {
	margin-bottom: 0;
	color: #000;
  }
  
  #experience .contact-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #999;
  }
  
  #experience .contact-info a {
	color: #000;
  }
  
  #experience .contact-info a:hover {
	color: #4f1a7e;
  }
  
  #experience .contact-address,
  #experience .contact-phone,
  #experience .contact-email {
	margin-bottom: 20px;
  }
  
  #experience .form #sendmessage {
	color: #4f1a7e;
	border: 1px solid #4f1a7e;
	display: none;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  #experience .form #errormessage {
	color: red;
	display: none;
	border: 1px solid red;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  #experience .form #sendmessage.show,
  #experience .form #errormessage.show,
  #experience .form .show {
	display: block;
  }
  
  #experience .form .validation {
	color: red;
	display: none;
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 13px;
  }
  
  #experience .form input,
  #experience .form textarea {
	padding: 10px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
  }
  
  #experience .form button[type="submit"] {
	background: #4f1a7e;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	cursor: pointer;
  }
  
  #experience .form button[type="submit"]:hover {
	background: #13a456;
  }
  
  /* Believe Section
  --------------------------------*/
  
  #believe {
	padding: 20px 0;
  }
  
  #believe .contact-info {
	margin-bottom: 0;
	text-align: center;
  }
  
  #believe .contact-info i {
	font-size: 48px;
	display: inline-block;
	margin-bottom: 0;
	color: #4f1a7e;
  }
  
  #believe .contact-info address,
  #believe .contact-info p {
	margin-bottom: 0;
	color: #000;
  }
  
  #believe .contact-info h3 {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: bold;
	text-transform: uppercase;
	color: #999;
  }
  
  #believe .contact-info a {
	color: #000;
  }
  
  #believe .contact-info a:hover {
	color: #4f1a7e;
  }
  
  #believe .contact-address,
  #believe .contact-phone,
  #believe .contact-email {
	margin-bottom: 0;
	margin-left: 20px;
	margin-right: 20px;
  }
  
  #believe .contact-phone h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #999;
  }
  
  /* Contact Section
  --------------------------------*/
  
  #contact {
	padding: 60px 0;
  }
  #contact .section-header{
	margin-bottom: 50px;
  }
  
  #contact .contact-info {
	margin-bottom: 20px;
	text-align: center;
  }
  
  #contact .contact-info i {
	font-size: 48px;
	display: inline-block;
	margin-bottom: 10px;
	color: #4f1a7e;
  }
  
  #contact .contact-info address,
  #contact .contact-info p {
	margin-bottom: 0;
	color: #000;
  }
  
  #contact .contact-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #999;
  }
  
  #contact .contact-info a {
	color: #00adee;
  }
  
  #contact .contact-info a:hover {
	color: #4f1a7e;
  }
  
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
	margin-bottom: 20px;
  }
  
  #contact .form #sendmessage {
	color: #4f1a7e;
	border: 1px solid #4f1a7e;
	display: none;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  #contact .form #errormessage {
	color: red;
	display: none;
	border: 1px solid red;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
  }
  
  #contact .form #sendmessage.show,
  #contact .form #errormessage.show,
  #contact .form .show {
	display: block;
  }
  
  #contact .form .validation {
	color: red;
	display: none;
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 13px;
  }
  
  #contact .form input,
  #contact .form textarea {
	padding: 10px 14px;
	border-radius: 0;
	box-shadow: none;
	font-size: 15px;
  }
  
  #contact .form button[type="submit"] {
	background: #4f1a7e;
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	cursor: pointer;
  }
  
  #contact .form button[type="submit"]:hover {
	background: #13a456;
  }
  
  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  
  #footer {
	background: #000;
	padding: 0 0 30px 0;
	color: #eee;
	font-size: 14px;
  }
  #footer a{
	color:#fff !important;
  }
  #footer a:hover{
	color:#4f1a7e;
  }
  #footer .footer-top {
	background: #111;
	padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
	margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 10px;
	line-height: 1;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	letter-spacing: 3px;
	border-left: 4px solid #4f1a7e;
  }
  
  #footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Lato", sans-serif;
	color: #eee;
  }
  
  #footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #eee !important;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
	background: #4f1a7e;
	color: #fff ;
  }
  
  #footer .footer-top h4 {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 12px;
  }
  
  #footer .footer-top h4::before,
  #footer .footer-top h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
  }
  
  #footer .footer-top h4::before {
	right: 0;
	background: #555;
  }
  
  #footer .footer-top h4::after {
	background: #4f1a7e;
	width: 60px;
  }
  
  #footer .footer-top .footer-links {
	margin-bottom: 30px;
	padding-right: 20px;
	padding-left: 20px;
  }
  
  #footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  #footer .footer-top .footer-links ul i {
	padding-right: 8px;
	color: #ddd !important;
  }
  
  #footer .footer-top .footer-links ul li {
	border-bottom: 1px solid #333;
	padding: 10px 0;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
	color: #eee !important;
  }
  
  #footer .footer-top .footer-links ul a:hover {
	color: #4f1a7e;
  }
  
  #footer .footer-top .footer-contact {
	margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-contact p {
	line-height: 26px;
  }
  
  #footer .footer-top .footer-newsletter {
	margin-bottom: 30px;
  }
  
  #footer .footer-top .footer-newsletter input[type="email"] {
	border: 0;
	padding: 6px 8px;
	width: 65%;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"] {
	background: #4f1a7e;
	border: 0;
	width: 35%;
	padding: 6px 0;
	text-align: center;
	color: #fff;
	transition: 0.3s;
	cursor: pointer;
  }
  
  #footer .footer-top .footer-newsletter input[type="submit"]:hover {
	background: #13a456;
  }
  
  #footer .copyright {
	text-align: center;
	padding-top: 30px;
  }
  
  #footer .credits {
	text-align: center;
	font-size: 13px;
	color: #ddd;
  }
  
  /*--------------------------------------------------------------
  # Responsive Media Queries
  --------------------------------------------------------------*/
  
  @media (min-width: 768px) {
  
	.contact-full {
	  display: block;
	}
  
	.contact-responsive {
	  display: none;
	}
  
	#contact .contact-address,
	#contact .contact-phone,
	#contact .contact-email,
	#contact .contact-whats
	 {
	  padding: 20px 0;
	}
  
	#contact .contact-phone {
	  
	  border-right: 1px solid #ddd;
	}
	#contact .contact-whats {
		
		border-left: 1px solid #ddd;
	  }
  }
  
  @media (min-width: 992px) {
	.contact-full {
	  display: block;
	}
  
	.contact-responsive {
	  display: none;
	}
  
	#testimonials .testimonial-item p {
	  width: 80%;
	}
	
  }
    
  @media (max-width: 1024px) {
	.nav-menu > li {
		margin-left: 4px;
	}
  }
  @media (min-width: 1024px) {
  
	.contact-full {
	  display: block;
	}
  
	.contact-responsive {
	  display: none;
	}
  
	#header #logo {
	  padding-left: 60px;
	}

  
	#intro p {
	  width: 60%;
	}
  
	#intro .carousel-control-prev,
	#intro .carousel-control-next {
	  width: 5%;
	}
  
	#nav-menu-container {
	  padding-right: 60px;
	}
  }
  
  @media (max-width: 768px) {
	.contact-full {
	  display: none;
	}
  
	.contact-responsive {
	  display: block;
	}
  
	.back-to-top {
	  bottom: 15px;
	}
  
	#call-to-action {
	  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url("img/call-to-action-bg.jpg") fixed center center;
	  background-size: cover;
	  padding: 60px 0;
	}
  
	#header #logo h1 {
	  font-size: 28px;
	}
  
	#header #logo img {
	  max-height: 80px;
	}
  
	#intro h2 {
	  font-size: 28px;
	}
  
	#nav-menu-container {
	  display: none;
	}
  
	#nav-menu-container.header-scrolled {
	  display: none;
	}
  
	#mobile-nav-toggle {
	  display: inline;
	}
  }


/* Wrapper */

	#wrapper {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-moz-transition: opacity 0.5s ease;
		-webkit-transition: opacity 0.5s ease;
		-ms-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;
		margin: 0 auto;
		max-width: 100%;
		opacity: 1;
		padding: 4.5em;
		width: 90em;
	}

		body.is-menu-visible #wrapper {
			opacity: 0.15;
		}

		@media screen and (max-width: 1680px) {

			#wrapper {
				padding: 3em;
			}

		}

		@media screen and (max-width: 1280px) {

			#wrapper {
				display: block;
			}

		}

		@media screen and (max-width: 736px) {

			#wrapper {
				padding: 1.5em;
			}

		}

		body.single #wrapper {
			display: block;
		}

/* Main */

	#main {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-ms-flex: 1;
		width: 100%;
	}
/* Post */

.post {
	padding: 3em 3em 1em 3em ;
	background: #ffffff;
	border: solid 1px rgba(160, 160, 160, 0.3);
	margin: 0 0 3em 0;
	position: relative;
}

	.post > header {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		border-bottom: solid 1px rgba(160, 160, 160, 0.3);
		left: -3em;
		margin: -3em 0 3em 0;
		position: relative;
		width: calc(100% + 6em);
	}

		.post > header .title {
			-moz-flex-grow: 1;
			-webkit-flex-grow: 1;
			-ms-flex-grow: 1;
			flex-grow: 1;
			-ms-flex: 1;
			padding: 3.75em 3em 3.3em 3em;
		}

			.post > header .title h2 {
				font-weight: 900;
				font-size: 1.5em;
			}

			.post > header .title > :last-child {
				margin-bottom: 0;
			}

		.post > header .meta {
			padding: 3.75em 3em 1.75em 3em ;
			border-left: solid 1px rgba(160, 160, 160, 0.3);
			min-width: 17em;
			text-align: right;
			width: 17em;
		}

			.post > header .meta > * {
				margin: 0 0 1em 0;
			}

			.post > header .meta > :last-child {
				margin-bottom: 0;
			}

			.post > header .meta .published {
				color: #3c3b3b;
				display: block;
				font-family: "Raleway", Helvetica, sans-serif;
				font-size: 0.7em;
				font-weight: 800;
				letter-spacing: 0.25em;
				margin-top: 0.5em;
				text-transform: uppercase;
				white-space: nowrap;
			}

	.post > a.image.featured {
		overflow: hidden;
	}

		.post > a.image.featured img {
			-moz-transition: -moz-transform 0.2s ease-out;
			-webkit-transition: -webkit-transform 0.2s ease-out;
			-ms-transition: -ms-transform 0.2s ease-out;
			transition: transform 0.2s ease-out;
		}

		.post > a.image.featured:hover img {
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
			transform: scale(1.05);
		}

	.post > footer {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
	}

		.post > footer .actions {
			-moz-flex-grow: 1;
			-webkit-flex-grow: 1;
			-ms-flex-grow: 1;
			flex-grow: 1;
		}

		.post > footer .stats {
			cursor: default;
			list-style: none;
			padding: 0;
		}

			.post > footer .stats li {
				border-left: solid 1px rgba(160, 160, 160, 0.3);
				display: inline-block;
				font-family: "Raleway", Helvetica, sans-serif;
				font-size: 0.6em;
				font-weight: 400;
				letter-spacing: 0.25em;
				line-height: 1;
				margin: 0 0 0 2em;
				padding: 0 0 0 2em;
				text-transform: uppercase;
			}

				.post > footer .stats li:first-child {
					border-left: 0;
					margin-left: 0;
					padding-left: 0;
				}

				.post > footer .stats li .icon {
					border-bottom: 0;
				}

					.post > footer .stats li .icon:before {
						color: rgba(160, 160, 160, 0.3);
						margin-right: 0.75em;
					}

	@media screen and (max-width: 980px) {

		.post {
			border-left: 0;
			border-right: 0;
			left: -3em;
			width: calc(100% + (3em * 2));
		}

			.post > header {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				padding: 3.75em 3em 1.25em 3em ;
				border-left: 0;
			}

				.post > header .title {
					-ms-flex: 0 1 auto;
					margin: 0 0 2em 0;
					padding: 0;
					text-align: center;
				}

				.post > header .meta {
					-moz-align-items: center;
					-webkit-align-items: center;
					-ms-align-items: center;
					align-items: center;
					display: -moz-flex;
					display: -webkit-flex;
					display: -ms-flex;
					display: flex;
					-moz-justify-content: center;
					-webkit-justify-content: center;
					-ms-justify-content: center;
					justify-content: center;
					border-left: 0;
					margin: 0 0 2em 0;
					padding-top: 0;
					padding: 0;
					text-align: left;
					width: 100%;
				}

					.post > header .meta > * {
						border-left: solid 1px rgba(160, 160, 160, 0.3);
						margin-left: 2em;
						padding-left: 2em;
					}

					.post > header .meta > :first-child {
						border-left: 0;
						margin-left: 0;
						padding-left: 0;
					}

					.post > header .meta .published {
						margin-bottom: 0;
						margin-top: 0;
					}

					.post > header .meta .author {
						-moz-flex-direction: row-reverse;
						-webkit-flex-direction: row-reverse;
						-ms-flex-direction: row-reverse;
						flex-direction: row-reverse;
						margin-bottom: 0;
					}

						.post > header .meta .author .name {
							margin: 0 0 0 1.5em;
						}

						.post > header .meta .author img {
							width: 3.5em;
						}

	}

	@media screen and (max-width: 736px) {

		.post {
			padding: 1.5em 1.5em 0.1em 1.5em ;
			left: -1.5em;
			margin: 0 0 2em 0;
			width: calc(100% + (1.5em * 2));
		}

			.post > header {
				padding: 3em 1.5em 0.5em 1.5em ;
				left: -1.5em;
				margin: -1.5em 0 1.5em 0;
				width: calc(100% + 3em);
			}

				.post > header .title h2 {
					font-size: 1.1em;
				}

	}

	@media screen and (max-width: 480px) {

		.post > header .meta {
			-moz-align-items: center;
			-webkit-align-items: center;
			-ms-align-items: center;
			align-items: center;
			-moz-flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
		}

			.post > header .meta > * {
				border-left: 0;
				margin: 1em 0 0 0;
				padding-left: 0;
			}

			.post > header .meta .author .name {
				display: none;
			}

		.post > .image.featured {
			margin-left: -1.5em;
			margin-top: calc(-1.5em - 1px);
			width: calc(100% + 3em);
		}

		.post > footer {
			-moz-align-items: -moz-stretch;
			-webkit-align-items: -webkit-stretch;
			-ms-align-items: -ms-stretch;
			align-items: stretch;
			-moz-flex-direction: column-reverse;
			-webkit-flex-direction: column-reverse;
			-ms-flex-direction: column-reverse;
			flex-direction: column-reverse;
		}

			.post > footer ul {
				text-align: center;
			}

				.post > footer ul li {
					margin: 0 0 0 1.25em;
					padding: 0 0 0 1.25em;
				}

	}
/* Mini Post */
.mini-post-container{
	display: flex;
	flex-direction:row;
	gap:20px;
	flex-wrap: wrap;
}
.mini-post {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    background: #ffffff;
    border: solid 1px rgba(160, 160, 160, 0.3);
    margin: 0 0 2em 0;
    width: calc(33% - 2em);
	position: relative;
}

	.mini-post .image {
		overflow: hidden;
		width: 100% !important;
		
	}

		.mini-post .image img {
			-moz-transition: -moz-transform 0.2s ease-out;
			-webkit-transition: -webkit-transform 0.2s ease-out;
			-ms-transition: -ms-transform 0.2s ease-out;
			transition: transform 0.2s ease-out;
			width: 100%;
			height: auto !important;
		}

		.mini-post .image:hover img {
			-moz-transform: scale(1.05);
			-webkit-transform: scale(1.05);
			-ms-transform: scale(1.05);
			transform: scale(1.05);
		}
		.mini-post .button {
			-moz-appearance: none;
			-webkit-appearance: none;
			-ms-appearance: none;
			appearance: none;
			-moz-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
			-webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
			-ms-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
			transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
			background-color: transparent;
			border: 0;
			box-shadow: inset 0 0 0 1px #4f1a7e40;
			color: #4f1a7e !important;
			cursor: pointer;
			display: inline-block;
			font-family: "Raleway", Helvetica, sans-serif;
			font-size: 0.6em;
			font-weight: 800;
			height: 4.8125em;
			letter-spacing: 0.25em;
			line-height: 4.8125em;
			padding: 0 2.5em;
			text-align: center;
			text-decoration: none;
			text-transform: uppercase;
			white-space: nowrap;
			margin-bottom: 30px;
		}
		.mini-post .category{
			position:absolute;
			top:30px;
			right:0px;
			background-color: #4f1a7e;
			color: #fff;
			font-size: 14px;
			padding: 7px;	
			z-index: 3;
			border-radius: 10px 0px 0px 10px;
		}
		.mini-post .category a{
			color:#fff; 
		}
	.mini-post header {
		padding: 1.25em 4.25em 0.1em 1.25em ;
		min-height: 4em;
		position: relative;
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
	}

		.mini-post header h3 {
			font-size: 0.7em;
		}

		.mini-post header .published {
			display: block;
			font-family: "Raleway", Helvetica, sans-serif;
			font-size: 0.6em;
			font-weight: 400;
			letter-spacing: 0.25em;
			margin: -0.625em 0 1.7em 0;
			text-transform: uppercase;
		}

		.mini-post header .author {
			position: absolute;
			right: 2em;
			top: 2em;
		}

.mini-posts {
	margin: 0 0 2em 0;
}

	@media screen and (max-width: 992px) {

		.mini-post-container {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-flex-wrap: wrap;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			width: calc(100% + 2em);
		}

			.mini-post-container > * {
				margin: 2em 2em 0 0;
				width: calc(48% - 2em);
			}

			.mini-posts > :nth-child(-n + 2) {
				margin-top: 0;
			}
			.navbar .nav-search {
				position: relative !important;
				margin: 20px auto;
				width: auto !important;
				left: 0 !important;
				right: 0 !important;
				display: block !important;
			}
			.navigation-bar .container {
				padding-right: 0px !important;
			}
			.nav-search .search-block {
				justify-content: center !important;
			}

	}

	@media screen and (max-width: 480px) {

		.mini-post-container {
			display: block;
			width: 100%;
		}

			.mini-post-container > * {
				margin: 0 0 2em 0;
				width: 100%;
			}

	}
/* Image */

.image {
	border: 0;
	display: inline-block;
	position: relative;
}

	.image img {
		display: block;
	}

	.image.left, .image.right {
		max-width: 40%;
	}

		.image.left img, .image.right img {
			width: 100%;
		}

	.image.left {
		float: left;
		padding: 0 1.5em 1em 0;
		top: 0.25em;
	}

	.image.right {
		float: right;
		padding: 0 0 1em 1.5em;
		top: 0.25em;
	}

	.image.fit {
		display: block;
		margin: 0 0 2em 0;
		width: 100%;
	}

		.image.fit img {
			width: 100%;
		}

	.image.featured {
		display: block;
		margin: 0 0 3em 0;
		width: 100%;
	}

		.image.featured img {
			width: 100%;
			height: auto;
		}

		@media screen and (max-width: 736px) {

			.image.featured {
				margin: 0 0 1.5em 0;
			}

		}

	.image.main {
		display: block;
		margin: 0 0 3em 0;
		width: 100%;
	}

		.image.main img {
			width: 100%;
		}

/*--------------------------------------------------------------
## Navbar/Navigation
--------------------------------------------------------------*/
.navbar {
	padding: 0;
	background-color: #ffffff;
	margin: 40px auto;
}
.sticky-header {
	background-color: #ffffff;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid #eeeeee;
}
.navbar-head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 22px;
	padding-bottom: 22px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
.navbar-head.header-overlay-dark .container:before,
.navbar-head.header-overlay-light .container:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}
.navbar-head.header-overlay-dark .container:before {
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}
.navbar-head.header-overlay-light .container:before {
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}
.navbar-head.navbar-bg-set,
.navbar-head.navbar-bg-set .site-title,
.navbar-head.navbar-bg-set .site-title a,
.navbar-head.navbar-bg-set .site-description,
.navbar-head.navbar-bg-set.header-overlay-dark,
.navbar-head.navbar-bg-set.header-overlay-dark .site-title,
.navbar-head.navbar-bg-set.header-overlay-dark .site-title a,
.navbar-head.navbar-bg-set.header-overlay-dark .site-description,
.navbar-head.header-overlay-dark,
.navbar-head.header-overlay-dark .site-title,
.navbar-head.header-overlay-dark .site-title a,
.navbar-head.header-overlay-dark .site-description {
	color: #ffffff;
}
.navbar-head.navbar-bg-set.header-overlay-light,
.navbar-head.navbar-bg-set.header-overlay-light .site-title,
.navbar-head.navbar-bg-set.header-overlay-light .site-title a,
.navbar-head.navbar-bg-set.header-overlay-light .site-description {
	color: #333333;
}
.navbar-ad-section {
	text-align: right;
	padding-top: 8px;
	padding-bottom: 8px;
}
.navbar .navbar-head .col-lg-4 + .navbar-ad-section {
	margin-top: 0;
}
.navbar-ad-section .newscard-ad-728-90 {
	display: inline-block;
}
.navbar-head .navbar-head-row {
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.navigation-bar {
	background-color: #ffffff;
	color: #4f1a7e;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.navigation-bar .container {
	position: relative;
	padding-right: 85px;
}
.navigation-bar-top {
	min-height: inherit;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}
.navbar-brand {
	display: flex;
	justify-content: center;
}
.navbar-main {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}
.navbar .nav-search {
	position: absolute;
	top: 0;
	right: 30px;
	display: inline-block;
}
.navbar-toggler {
	border: none;
	padding: 10px 15px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
.navbar-toggler:hover,
.site-header.toggled-on .navbar-toggler,
[aria-expanded="true"].navbar-toggler {
	background-color: rgba(0, 0, 0, 0.15);
}
.navbar-toggler:focus {
	outline: none;
}
.navbar-toggler:before {
	display: block;
	font-size: 26px;
	content: '\f0c9';
	font-family: 'FontAwesome';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.collapse.in {
	display: block;
}
.navbar .navbar-collapse {
	flex-grow: 0;
}
.navbar .main-navigation ul {
	padding-left: 0;
}
.main-navigation li {
	position: relative;
	list-style: none;
	display: inline-block;
	float: left;
}
.main-navigation a {
	color: #4f1a7e;
	display: block;
	padding: 15px;
	font-weight: 700;
}
.main-navigation a:hover {
	text-decoration: none;
}
.main-navigation ul li.current_page_item > a,
.main-navigation ul li.current_page_ancestor > a,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-menu-ancestor > a,
.main-navigation ul li a:hover,
.main-navigation ul li a:focus,
.main-navigation ul li.show > a,
.main-navigation ul li:hover > a {
	color: #ffffff;
	background-color: #4f1a7e;
	border-radius: 7px;
}
.main-navigation.nav-uppercase ul li a {
	text-transform: uppercase;
}
.main-navigation.nav-uppercase li ul a {
	text-transform: inherit;
}
.main-navigation ul li.menu-item-has-children > a,
.main-navigation ul li.page_item_has_children > a {
	position: relative;
}
.main-navigation ul li.menu-item-has-children > a:after,
.main-navigation ul li.page_item_has_children > a:after {
	content: "\f0d7";
	font-family: fontawesome;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 50%;
	right: 15px;
	font-size: 18px;
	display: block;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	color: #ffffff;
}
.main-navigation li ul li.menu-item-has-children > a:after,
.main-navigation li ul li.page_item_has_children > a:after {
	content: "\f105";
	right: 7px;
	color: #555555;
}
.main-navigation ul li.menu-item-has-children > a,
.main-navigation ul li.page_item_has_children > a {
	padding-right: 32px;
}
.main-navigation ul li ul li.menu-item-has-children > a,
.main-navigation ul li ul li.page_item_has_children > a {
	padding-right: 18px
}
.main-navigation .dropdown-parent .dropdown-toggle {
	width: 40px;
	height: 100%;
	color: #555555;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 18px;
	text-align: center;
	display: none;
}
.main-navigation .dropdown-parent .dropdown-toggle:after {
	display: none;
}
.main-navigation .dropdown-parent .dropdown-toggle:hover {
	cursor: pointer;
}
.main-navigation .dropdown-parent .dropdown-toggle .dropdown-icon {
	display: inline-block;
	position: relative;
	height: 45px;
	width: 45px;
	transition: all ease-in-out 0.2s;
	-webkit-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
}
.main-navigation .dropdown-parent .dropdown-toggle .dropdown-icon:after {
	content: "\f105";
	font-family: fontawesome;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 50%;
	right: 0;
	width: 100%;
	height: auto;
	text-align: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	border: none;
	font-weight: bold;
	display: block;
}
.main-navigation .dropdown-parent .dropdown-toggle.toggle-on .dropdown-icon {
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
}

/* Dropdown */
.main-navigation ul li ul li {
	display: block;
	float: none;
}
.main-navigation ul li ul,
.main-navigation ul li:hover ul ul,
.main-navigation ul ul li:hover ul ul,
.main-navigation ul ul ul li:hover ul ul,
.main-navigation ul ul ul ul li:hover ul ul {
	display: none;
	z-index: 9999;
}
.main-navigation ul li:hover ul,
.main-navigation ul ul li:hover ul,
.main-navigation ul ul ul li:hover ul,
.main-navigation ul ul ul ul li:hover ul,
.main-navigation ul ul ul ul ul li:hover ul {
	display: block;
}
.main-navigation li:hover .dropdown-menu {
	display: block;
}
.main-navigation .dropdown-menu,
.main-navigation li ul {
	top: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	padding-top: 0;
	padding-bottom: 0;
	position: absolute;
	left: 0;
	z-index: 999;
	background-color: #ffffff;
	margin-top: 0;
	display: none;
	width: 240px;
}
.main-navigation .dropdown-menu a,
.main-navigation li ul a {
	color: #555555;
	padding: 8px 12px;
	text-transform: inherit;
	font-weight: normal;
}
.main-navigation .dropdown-menu a:hover,
.main-navigation .dropdown-menu a.current-menu-item,
.main-navigation li ul li:hover > a,
.main-navigation li ul li.current-menu-item > a,
.main-navigation li ul li.current-menu-ancestor > a,
.main-navigation ul li li.current_page_item > a,
.main-navigation li ul li.current_page_ancestor > a {
	background-color: rgba(0, 0, 0, 0.05);
	color: #4f1a7e;
}
.main-navigation ul li ul li ul,
.headernav .main-navigation ul li ul li ul {
	left: 100%;
	top: 0;
}
.main-navigation ul.sub-menu ul.sub-menu,
.main-navigation ul.children ul.children {
	top: -1px;
}
.main-navigation .dropdown-toggle:after {
	display: none;
}
.navbar-collapse .form-inline {
	margin-left: 10px;
}
.nav-search{
	height: 100% !important;
}
.nav-search .search-block {
    padding: 3px 10px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.nav-search .search-block input[type="text"]{
	background-color: transparent;
	 border-radius: 20px;
	 border:0px;
	 outline: 1px #4f1a7e solid;
	 padding:2px 4px;
	 color:#4f1a7e;
}
.nav-search .search-block input[type="submit"]{
	border:0px;
	background-color: transparent;
	color:#4f1a7e;
}
.post.comments input[type="text"],
.post.comments textarea{
	width: 100%;
    margin: 10px auto 10px auto;
    border-radius: 10px;
    padding: 8px 2px;
    border: solid 1px #ddd;
}
.post.comments input[type="submit"]{
	
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		-webkit-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		-ms-transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
		background-color: transparent;
		border: 0;
		box-shadow: inset 0 0 0 1px #4f1a7e40;
		color: #4f1a7e !important;
		cursor: pointer;
		display: inline-block;
		font-family: "Raleway", Helvetica, sans-serif;
		font-size: 0.6em;
		font-weight: 800;
		height: 4.8125em;
		letter-spacing: 0.25em;
		line-height: 4.8125em;
		padding: 0 2.5em;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
		margin-bottom: 30px;
	
}
.post.comments input[type="submit"]:hover{
	color:#fff !important;
	background-color: #4f1a7e;
}

.blog-header{
	margin-top: 40px;
}

/* SERVICES NEW */
#services .container .main-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
#services .container .card{
	height: 350px;
	border: none;
}
#services .container .card .content .slide1{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#services .container .card .content .icon{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin-top: 30px;
	
}
#services .container .card .content .icon img{
	width: 100px;
	height: 100px;
}
#services .container .card .content .icon span{
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	margin-top: 10px;
	padding-left: 5px;
	padding-right: 5px;

}


#services .container .card .slide {
    width:  100% !important;
    height: 260px;
    transition: 0.5s;
}

#services .container .card .slide.slide1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: .7s;
    transform: translateY(70px);
	background-color: #ffffff;
}

#services .container .card:hover .slide.slide1{

    transform: translateY(0px);
	background-color: #000000;
	transition: .7s;

}

#services .container .card .slide.slide2 {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    box-sizing: border-box;

    transition: .8s;

    transform: translateY(-100px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	overflow: hidden;
	height: 200px;
	font-size: 12px;

}

#services .container .card:hover .slide.slide2{

    transform: translateY(0);
	height: auto;
	overflow: visible;
	height: 250px;
}

#services .container .card .slide.slide2::after{

    content: "";

    position: absolute;

    width: 30px;

    height: 4px;

    bottom: 15px;

    left: 50%;

    left: 50%;

    transform: translateX(-50%);

    background: #4f1a7e;

}

#services .container .card .slide.slide2 .content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #4f1a7e;
}

#services .container .card .slide.slide2 .content h3 {

    margin: 0 0 10px 0;

    padding: 0;

    font-size: 24px;

    text-align: center;

    color: #414141;

} 
@media screen and (max-width: 992px) {
	#services .container .main-grid{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 768px) {
	#services .container .main-grid{
		grid-template-columns: repeat(1, 1fr);
	}
}


@import url(https://pro.fontawesome.com/releases/v5.11.2/css/all.css);
:root {
  --user-button-circle: rgba(0,0,0,0.025);
  --user-button-cardborder: rgba(255,255,255,0.25);
  --user-button-text:#323133;
  --user-button-shadow:rgba(0,0,0,0.1);
}

#services #user-button {
  z-index: 1000;
  bottom: 1rem !important;
  right: 1rem !important;
  color: var(--user-button-text);
  transition: 1s 0s ease-out;
  -webkit-animation: slide 3s ease-out forwards;
          animation: slide 3s ease-out forwards;
}
@-webkit-keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
@keyframes slide {
  0%, 50% {
    opacity: 0;
    display: block !important;
  }
  100% {
    opacity: 1;
    display: block !important;
  }
}
#services #user-button .u-card {
  border-radius: 100%;
  box-shadow: 0 0 1rem -0.25rem var(--user-button-shadow), inset 0 0 1rem -0.75rem var(--user-button-shadow);
}
#services #user-button .u-main {
  cursor: pointer;
  --user-button-background:var(--user-button-main, #EC87C0);
}
#services #user-button .u-main img {
  height: 100%;
  width: 100%;
}
#services #user-button .u-main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  opacity: 1;
  transition: 0s 4s;
}
#services #user-button .u-icons {
  position: relative;
  z-index: 950;
  transform: translate(-50%, -50%);
  background: var(--user-button-circle);
  box-shadow: 0 0 0 0.125rem var(--user-button-cardborder);
  border-radius: 100%;
  transition: 0.25s;
  opacity: 1 !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  /*&:before {
     z-index:-1;
     position:absolute;
     top:0; right:0; bottom:0; left:0;
     content:'';

     backdrop-filter: blur(10px);
  }*/
}
#services #user-button .u-icons a {
  color: inherit;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}
#services #user-button .u-icons a div {
  padding: 0.5rem;
  transition: 0s;
}
#services #user-button .u-icons a[href="https://twitter.com/zed_dash"] {
  position: relative;
}
#services #user-button .u-icons a[href="https://twitter.com/zed_dash"]:before {
  content: "Middle Click";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-family: "Lato", Tahoma, Geneva, Verdana, sans-serif;
  white-space: pre;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in;
  background: #fffc;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
#services #user-button .u-icons a[href="https://twitter.com/zed_dash"].show:before {
  opacity: 1;
  transition: 0.25s ease-out;
}
#services #user-button .u-icons a[href="https://twitter.com/zed_dash"] div {
  color: #1da1f2;
}
#services #user-button .u-icons a[href="https://codepen.io/z-"] div {
  background: black;
  color: white;
}
#services #user-button .u-icons a.u-random div {
  position: relative;
  top: -1px;
  -webkit-animation: diespin 2s linear infinite;
          animation: diespin 2s linear infinite;
}
@-webkit-keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes diespin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#services #user-button .u-icons a.u-random:not(:hover) div {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
#services #user-button .u-icons > * {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--singlecolour);
  border-radius: 100%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.25s -0.05s;
}
#services #user-button .u-icons > *:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#services #user-button .u-icons > *:hover, #services #user-button .u-icons > *:focus-within {
  background: var(--hcolour);
}
#services #user-button .u-icons > *:first-child:nth-last-child(1):nth-child(1), #services #user-button .u-icons > *:first-child:nth-last-child(1) ~ *:nth-child(1) {
  left: 25%;
  top: 25%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(1), #services #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(1) {
  left: 37.5%;
  top: 18.75%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(2):nth-child(2), #services #user-button .u-icons > *:first-child:nth-last-child(2) ~ *:nth-child(2) {
  left: 18.75%;
  top: 37.5%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(1), #services #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(1) {
  left: 50%;
  top: 15.625%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(2), #services #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(2) {
  left: 25%;
  top: 25%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(3):nth-child(3), #services #user-button .u-icons > *:first-child:nth-last-child(3) ~ *:nth-child(3) {
  left: 15.625%;
  top: 50%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(1), #services #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(1) {
  left: 62.5%;
  top: 18.75%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(2), #services #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(2) {
  left: 37.5%;
  top: 18.75%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(3), #services #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(3) {
  left: 18.75%;
  top: 37.5%;
}
#services #user-button .u-icons > *:first-child:nth-last-child(4):nth-child(4), #services #user-button .u-icons > *:first-child:nth-last-child(4) ~ *:nth-child(4) {
  left: 18.75%;
  top: 62.5%;
}
#services #user-button:hover .u-icons, #services #user-button:focus-within .u-icons {
  width: 300% !important;
  height: 300% !important;
}

#services {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  font-family: "Lato", sans-serif;
  transition: 0.25s;
  background:  url('./img/backs/white.jpg');
  background-size: cover;
  background-position: center;
  color: black;
}
#services .title-gradient .second-word{
	color:black;
	font-weight: 400;
}
#services .section-header{
	margin:60px 0px;
}
#services .wrapper {
	min-width: 600px;
	max-width: 1200px;
	width: 100%;
	margin: 30px 0px;
}
#services .wrapper h3{
	font-family: "Lato", sans-serif;
  	color: #000;
	font-size: 40px;
	font-weight: 400;
}
#services .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 1200px;
  width: 100%;
  height: 400px;
}
#services .options3 {
	height: 500px;
}



#services .options .option {
  position: relative;
  overflow: hidden;
  width: auto;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: auto 130%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transform: translateZ(0);
}

#services .options .option.active {
  flex-grow: 10000;
  max-width: 100%;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
  position: relative;
  
  /*&:active {
     transform:scale(0.9);
  }*/
}
#services .options .option.active::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: #00000099;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
}
#services .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
#services .options .option.active .label {
  opacity: 0;
  color:#fff;
}
#services .options1 .option:nth-child(1) {
	--optionBackground:url('./img/services_new/Imagen1.jpg')
}
#services .options1 .option:nth-child(2) {
	--optionBackground:url('./img/services_new/Imagen4.jpg?v=0.0.1')
}
#services .options1 .option:nth-child(3) {
	--optionBackground:url('./img/services_new/Imagen8.jpg')
}
#services .options1 .option:nth-child(4) {
	--optionBackground:url('./img/services_new/Imagen5.jpg')
}
#services .options1 .option:nth-child(5) {
	--optionBackground:url('./img/services_new/Imagen2.jpg')
}
#services .options2 .option:nth-child(1) {
	--optionBackground:url('./img/services_new/Imagen9.jpg')
}
#services .options2 .option:nth-child(2) {
	--optionBackground:url('./img/services_new/Imagen10.jpg')
}
#services .options2 .option:nth-child(3) {
	--optionBackground:url('./img/services_new/Imagen3.jpg')
}
#services .options2 .option:nth-child(4) {
	--optionBackground:url('./img/services_new/Imagen6.jpg')
}
#services .options3 .option:nth-child(1) {
	--optionBackground:url('./img/services_new/Imagen11.jpg')
}
#services .options3 .option:nth-child(2) {
	--optionBackground:url('./img/services_new/Imagen12.jpg')
}
#services .options3 .option:nth-child(3) {
	--optionBackground:url('./img/services_new/Imagen13.jpg')
}
#services .options3 .option:nth-child(4) {
	--optionBackground:url('./img/services_new/Imagen14.jpg')
}
#services .options3 .option:nth-child(5) {
	--optionBackground:url('./img/services_new/Imagen15.jpg')
}
#services .options3 .option:nth-child(6) {
	--optionBackground:url('./img/services_new/Imagen16.jpg')
}
#services .options .option.active .info  {
  left: 0px;
  opacity: 1;
  width: 100%;
  padding: 10px;
  z-index: 2;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.8s 0.5s ease-out;
}
#services .options .option:not(.active) {
  flex-grow: 1;
  border-radius: 30px;
  width: 135px;
}
#services .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
#services .options .option:not(.active) .label {
  bottom: 0px;
  left: 0px;
  right:0px;
  top:0px;
  margin:auto auto;
  opacity: 1;
  filter: drop-shadow(5px 5px 10px #d6eeff);
}
#services .options .option:not(.active) .info  {
  left: 20px;
  opacity: 0;
  width: 0%;
  z-index: 0;
}
#services .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
#services .options .option .label {
  position: absolute;
  right: 0px;
  height: 100%;
  width: 100%;
  font-size: 29px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg) scale(1);
  filter: drop-shadow(0 0 1rem black);
  transition: 0.8s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  color:white;
}

#services .options .option .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  width: 0px;
  position: absolute;
  top:0;
  left:0;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0s 0s ease-out;
}

#services .options .option .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
#services .options .option .info .sub {
  transition-delay: 0.2s;
  padding:30px;
  font-weight: 200;
  font-size: 20px;
}
#services .options .option .info .sub h2{
	font-size: 29px;
	font-weight: 900;
	color:#fff;
}
@media screen and (max-width: 638px) {
	#services .options {
	  min-width: 100%;
	  flex-direction: column;
	}
	#services .wrapper {
	  min-width: 100%;
	  max-width: 100%;
	}
	#services .options .option:not(.active),
	#services .options .option{
		width: 100% !important;
	}
	#services .options .option .label {
	  display: none;
	}
	#services .options .option:not(.active) .info,
	#services .options .option.active .info {
	  left: 20px;
	  opacity: 1;
	  width: 100%;
	  z-index: 1;
	}
	#services .options .option:not(.active) {
		flex-grow: 10000;
	}
	#services .options{
		height: 900px;
	}
  }