* {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}
body {
	font-family: "Manrope", serif;
	background-color: #111111;
	color: #ffffff;
}

/*Responsive Web Design - Grid-View https://www.w3schools.com/css/css_rwd_grid.asp*/
.row::after {
	content: "";
	clear: both;
	display: table;
}

[class*="col-"] {
	float: left;
	padding: 15px;
}

@media only screen and (min-width: 600px) {
	.col-s-1 {width: 8.33%;}
	.col-s-2 {width: 16.66%;}
	.col-s-3 {width: 25%;}
	.col-s-4 {width: 33.33%;}
	.col-s-5 {width: 41.66%;}
	.col-s-6 {width: 50%;}
	.col-s-7 {width: 58.33%;}
	.col-s-8 {width: 66.66%;}
	.col-s-9 {width: 75%;}
	.col-s-10 {width: 83.33%;}
	.col-s-11 {width: 91.66%;}
	.col-s-12 {width: 100%;}
  }
  
  @media only screen and (min-width: 768px) {
	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}
  }
  
  /*Responsive Web Design - Grid-View https://www.w3schools.com/css/css_rwd_grid.asp*/

/******************/
.svglogo {
	display: flex;
	justify-content: center;
	width: 100%;
}

.svglogo svg {
	/*https://www.w3schools.com/css/tryit.asp?filename=tryresponsive_image3*/
	width: 75%;
	height: auto;
	margin-top: 70px;
}
/******************/


/*******Mouse***********************/
.mouse {
	display: block;
	margin: 0 auto;
	width: 26px;
	height: 46px;
	border-radius: 13px;
	border: 2px solid #46A6FF;
	bottom: 40px;
	position: relative;
	left: 50%;
	margin-left: -14px;
	margin-top: 40px;
}
.mouse span {
	display: block;
	margin: 6px auto;
	width: 2px;
	height: 2px;
	border-radius: 4px;
	background: #46A6FF;
	border: 1px solid transparent;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scroll;
	animation-name: scroll;
}

@-webkit-keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}
@keyframes scroll {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
}	
/*******Mouse***********************/
/*Intro*/
		.p-h1 {
			display: none;
			font-size: 3em;
			color: #46a6ff;
			font-weight: bold; 
			margin: auto;
			position: relative;
			text-align: center;
			line-height: 1.2;
			margin-top: 60px;
		}
		.p-p1, .p-p2 {
			display: none;
			font-size: 1.5em;
			color: #fff;
			margin: auto;
			position: relative;
			text-align: center;
			line-height: 1.2;
			margin-top: 20px;			
		}
		#mouse-c1 {
			display: none;
		}


/*Intro*/




.right-banner-content, mnuservicios {
	padding: 100px 45px;
	background-color: #111111;
	text-align: center;		
	/*min-height: 680px;
	height: 680px;*/
}

.right-banner-content h2, mnuservicios h2 {
	font-size: 3em;
	text-transform: uppercase;
	font-weight: 700;
	color: #46A6FF;
	margin-bottom: 5px;
	transition: 0.3s;
}

.right-banner-content h2:hover, mnuservicios h2:hover {
	text-shadow: rgba(75,131,209,0.9) 0px 0px 19px;
}


.right-banner-content .line-dec, mnuservicios .line-dec {
	width: 100%;
	height: 5px;
	background-color: #46A6FF;
	margin: 30px auto;
	float: left;
}

.right-banner-content span, mnuservicios span {
	font-size: 1.8em;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.5px;
	float: left;
	margin-left: 15px;
}

.right-banner-content em, mnuservicios em {
	font-style: normal;
	font-weight: 700;
}

.right-banner-content p, mnuservicios p {
	font-style: normal;
	font-size: 1em;
	color: #fff;
}

.right-banner-content {
	margin-top: 25px;
	
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;	
	margin-top: 25px;	
}

.isocialblck {	
	display: block;
	float: left;
	 margin-right: 20px;
}

.isocial {
	text-decoration: none;
	list-style: none;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: #222222;
	border-radius: 50%;
	transition: all 0.5s;
	color: #46A6FF;
	font-size: 17px;
	display: flex;
	align-items: center;
	justify-content: center;	
}

.isocial svg {
	width: 80%;
	height: auto;	
}

/*https://codepen.io/dig-lopes/pen/WLVGda*/
.svgsatellite, .svgcloud, .svgworld {
	fill: #111111;
	transition: all 0.5s;
}
.svgsatellite:hover, .svgcloud:hover, .svgworld:hover  {
	fill: #46A6FF;
	filter: drop-shadow(0px 0px 3px #46A6FF);
		}

.isocial::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	/*width: 100%;
	height: 100%;
	border-radius: 50%;*/
	background: #46A6FF;
	transition: .5s;
	transform: scale(.9);
	z-index: -1;
}

.isocial:hover::before {
	transform: scale(1.1);
  	box-shadow: 0 0 15px #46A6FF;
}

.isocial:hover {
	color: #46A6FF;
	box-shadow: 0 0 5px #46A6FF;
	text-shadow: 0 0 5px #46A6FF;
}


.isocial svg:hover {
  width: 1em;
  height: 1em;
  fill: #46A6FF;
}

/*
.right-banner-content .social-icons a:hover {
	background-color: #46A6FF;
}
*/
@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

