* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	list-style: none;
}
section {
    display: block;
    margin: 0 auto; 
    width: 70%;
  }
  main {
	display: block;
	margin-bottom: 7.2em;
  }
  .section-loader{
	background-color: #000;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5;
	width: 100%;
  }
  .hidden{
	overflow: hidden;
  }
  /*Loader Moderno*/
  .spinner {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-left: -75px;
  }
  
  .spinner span {
	position: absolute;
	top: 50%;
	left: var(--left);
	width: 35px;
	height: 7px;
	background: #ffff;
	animation: dominos 1s ease infinite;
	box-shadow: 2px 2px 3px 0px black;
  }
  
  .spinner span:nth-child(1) {
	--left: 80px;
	animation-delay: 0.125s;
  }
  
  .spinner span:nth-child(2) {
	--left: 70px;
	animation-delay: 0.3s;
  }
  
  .spinner span:nth-child(3) {
	left: 60px;
	animation-delay: 0.425s;
  }
  
  .spinner span:nth-child(4) {
	animation-delay: 0.54s;
	left: 50px;
  }
  
  .spinner span:nth-child(5) {
	animation-delay: 0.665s;
	left: 40px;
  }
  
  .spinner span:nth-child(6) {
	animation-delay: 0.79s;
	left: 30px;
  }
  
  .spinner span:nth-child(7) {
	animation-delay: 0.915s;
	left: 20px;
  }
  
  .spinner span:nth-child(8) {
	left: 10px;
  }
  
  @keyframes dominos {
	50% {
	  opacity: 0.7;
	}
  
	75% {
	  -webkit-transform: rotate(90deg);
	  transform: rotate(90deg);
	}
  
	80% {
	  opacity: 1;
	}
  }
  
  
  /*Loader Lavarropas*/
  /*
  .lavarropas {
	width: 120px;
	height: 150px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-image: linear-gradient(#ddd 50%, #bbb 51%),
	  linear-gradient(#ddd, #ddd), linear-gradient(#ddd, #ddd),
	  radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
	  radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
	  radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%);
	background-position: 0 20px, 45px 0, 8px 6px, 55px 3px, 75px 3px, 95px 3px;
	background-size: 100% 4px, 1px 23px, 30px 8px, 15px 15px, 15px 15px, 15px 15px;
	position: relative;
	border-radius: 6%;
	animation: shake 3s ease-in-out infinite;
	transform-origin: 60px 180px;
  }
  .lavarropas:before {
	content: "";
	position: absolute;
	left: 5px;
	top: 100%;
	width: 7px;
	height: 5px;
	background: #aaa;
	border-radius: 0 0 4px 4px;
	box-shadow: 102px 0 #aaa;
  }
  .lavarropas:after {
	content: "";
	position: absolute;
	width: 95px;
	height: 95px;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 20px;
	background-color: #bbdefb;
	background-image: linear-gradient( to right, #0004 0%, #0004 49%, #0000 50%, #0000 100% ),
	  linear-gradient(135deg, #64b5f6 50%, #607d8b 51%);
	background-size: 30px 100%, 90px 80px;
	border-radius: 50%;
	background-repeat: repeat, no-repeat;
	background-position: 0 0;
	box-sizing: border-box;
	border: 10px solid #DDD;
	box-shadow: 0 0 0 4px #999 inset, 0 0 6px 6px #0004 inset;
	animation: spin 3s ease-in-out infinite;
  }
  @keyframes spin {
	0% {
	  transform: rotate(0deg)
	}
  
	50% {
	  transform: rotate(360deg)
	}
  
	75% {
	  transform: rotate(750deg)
	}
  
	100% {
	  transform: rotate(1800deg)
	}
  }
  @keyframes shake {
	65%, 80%, 88%, 96% {
	  transform: rotate(0.5deg)
	}
  
	50%, 75%, 84%, 92% {
	  transform: rotate(-0.5deg)
	}
  
	0%, 50%, 100% {
	  transform: rotate(0)
	}
  }
  */
  @font-face {
    font-family:Helvetica;
    src: url(./fuente/Montserrat-Regular.otf);
}
@font-face {
  font-family: 'Avenir black';
  src: url(./fuente/Avenir\ Black.ttf);
}
body{
    background-size: 2000px;
    color: black;
    font-family: 'Helvetica', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
}
.header {
    position: fixed;
    z-index: 292;
    width: 100%;
    transition: 1.1s cubic-bezier(.16,.84,.442,.98);
    color: #fff;
    padding: 35px;
}
/*EFECTO DE JAVA*/
header.abajo{
    background: #fff;
    background: rgb(255 255 255/80%);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    padding: 0px 0px;
}
header.abajo .logo, header.abajo ul li a{
    color: #ffffff;
}
.conteiner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
  }
  .navbar {
	  width: 80%;
	  margin: auto;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  z-index: 289;
	  height: 120px;
  }
  
  .logo {
	  width: 300px;
	  cursor: pointer;
	  position: relative;
	  z-index: 100;
	  transition: 0.1s;
  }
  
  .ul-inicio {
	  position: relative;
	  z-index: 90;
	  
  }
  
  
  /* linea de abajo celeste piola:*/
  .navbar ul li {
	  list-style: none;
	  display: inline-block;
	  margin: 0 20px;
	  position: relative;
  }
  .navbar ul li a{
	  text-decoration: none;
	  color: white;
	  font-size: 1.2rem;
	  font-family: Helvetica;
	  letter-spacing: 2px;
	  transition: 0.7s;
  }
  .navbar ul li::before {
	  content: "";
	  height: 3px;
	  width: 0%;
	  background: #0499ba;
	  position: absolute;
	  left: 0;
	  bottom: -12px;
	  transition: 0.4s ease-out;
  }
  .navbar ul li:hover::before {
	  width: 100%;
  }
  @media screen and (min-width: 850px) {
	.menu {
		display: none;
	}
	  /*Section en horizontal*/
	  .p-titulo-horizontal{
		font-weight: 700;
		font-size: 3.125rem;
		line-height: 4.125rem;
		margin-bottom: 2.813rem;
		text-align: center;
	  }
	  .div-texto-horizontal{
	   padding-left: 180px;
	   padding-right: 180px;
	  }
	  /*Título debajo del fondo*/
	.section-inicio {
		z-index: 3;
		position: relative;
		bottom: 130px;
		height: 500px;
		background-color: #00c6e1;
	  }
	  .section-inicio::before {
		content: "";
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.5;
		background-color: #030821;
	}
	  .conteiner-inicio{
		position: relative;
		top: 120px;
		text-align: center;
	  }


	  .section-inicio .conteiner-inicio h1 {
		font-size: 90px;
		color: #ffffff;
		margin-bottom: 30px;
	  }
	  
	  .section-inicio p {
		font-size: 20px;
		color: #ffffff;
		margin-bottom: 10px;
	  }
}

	@media screen and (max-width: 850px) {
		.logo {
			width: 270px;
			padding: 10px;
		}
		.navbar {
			margin: 0;
			height: 100px;
		}
		.header {
			padding: 15px;
		}
	.ul-inicio {
		display: none;
	}
	.menu {
		display: inherit;
		padding-left: 240px;
		padding-bottom: 13px;
		transition: all ease 0.5s;
	}
	.menu:hover, .header .overlay a:hover{
		transform: scale(1.05);
	}
	.section-inicio .conteiner-inicio h1{
		scale:  0.9;
	  }
	  
	}
	@media screen and (max-width: 580px){
		.logo {
			width: 240px;
		}
		.navbar {
			margin: 0;
			height: 100px;
		}
		.header {
			padding: 15px;
		}
		.menu{
			position: relative;
			left: 60px;
			padding-left: 100px;
		}
		.div-texto-horizontal p{
			padding-left: 10px;
			padding-right: 10px;
		   }

		   /*Título debajo del fondo*/
	.section-inicio {
		z-index: 3;
		position: relative;
		bottom: 130px;
		height: 800px;
		background-color: #00c6e1;
	  }
	  .section-inicio::before {
		content: "";
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.5;
		background-color: #030821;
	}
	  .conteiner-inicio{
		position: relative;
		top: 120px;
		text-align: center;
	  }


	  .section-inicio .conteiner-inicio h1 {
		font-size: 70px;
		color: #ffffff;
		margin-bottom: 20px;
	  }
	  
	  .section-inicio p {
		font-size: 20px;
		color: #ffffff;
		margin-bottom: 10px;
		padding: 10px;
	  }
	}
	.img-horizontal{
		width: 100%;
	  }
  /*HEADER MOBILE*/
  .header a{
	text-decoration: none;
  }
  .header .overlay{
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	background-color: #000000;
	overflow: hidden;
	transition: all 0.3s ease 0s;
  }
  .header .overlay .overlay-content{
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  .header .overlay a{
	padding: 15px;
	font-size: 36px;
	display: block;
	transition: all 0.3s ease 0s;
	font-weight: 700;
	color: rgb(241, 231, 231);
  }
  .header .overlay a:hover, .header .overlay a:focus{
	color: #00c6e1;
  }
  .header .overlay .close{
	position: absolute;
	top: 100px;
	right: 45px;
	font-size: 65px;
  }
  .menu{
	color: white !important;
	font-size: 50px;
  }

  @media screen and (max-height: 450px) {
	.header .overlay a{
		font-size: 20px;
	}
	.header .overlay .close{
		font-size: 40px;
		top: 15px;
		right: 35px;
  }
}


  /*Fondo y flechita del inicio*/
  .div-1{
    background-image: url("Imagenes/peakpxaa.gif");
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed!important;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important;
    text-align: center!important;
    background-size: cover;
    position: relative;
    z-index: 0;
}
.div-1:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(17,17,17,.5);
}
    .div-1-1{
        z-index: 2;
        height: 100%;
        position: relative;
        padding-bottom: 1rem;
    } 
	/*Flechita del inicio*/
	.i:hover{
	  cursor: pointer;
	  font-size: 6.5rem;
	  top: 53.5rem;
	 }
	 .i{
	  position: relative;
	  top: 53.1rem;
	  right: 3px;
	  color: #484d52;
	  cursor: pointer;
	  font-size: 5rem;
	  transition: 0.2s cubic-bezier(.16,.84,.442,.98);
	 }


	  /*@media screen and (max-width:1680px) {
		.section-inicio {
			bottom: 113,75px;
			height: 487,5px;
			background-color: red;
		  }
		  .conteiner-inicio{
			top: 131,25px;
		  }
		  main {
			display: block;
			margin-bottom: 6,3em;
		  }
		  .section-inicio h1 {
			font-size: 70,75px;
			margin-bottom: 26,25px;
		  }
		  .section-inicio p {
			font-size: 16px;
			margin-bottom: 8.75px;
		  }
	  }
	  */
	  	
	  
	
	  .section-inicio p::selection{
		background-color: #000;
		
	  }
	  .section-inicio h1::selection{
		background-color: #000;
		color: aqua;
	  }




@media screen and (max-width: 450px) {
	.p-titulo-horizontal, .div-texto-horizontal{
		padding-left: 6%;
		padding-right: 6%;
	}
	.div-1{
		background-image: url("peakpxaa_copia.gif");
	}
}


.contact-form__font-size {
	font-size: 22px;
}
.contact-form__font-family {
	font-family:'Times New Roman', Times, serif;
}
.contact-form__line-height {
	line-height: 40px;
}
.contact-form__font-weight {
	font-weight: 600;
}
.contact-form__img-padding {
	height: 300px;
	width: 700px;
}
div p {
	font-size: 20px;
}
.pseudoelemento-first-letter::first-letter {
	font-size: 5em;
}
.pseudoelementos{
	display:block
}
.input-selection::selection {
	color: blueviolet;
	background: black;
}
.H2-selector {
	display: inline;
}
.Display-flex {
	height: auto;
	width: 300px;
}


/*pie de pagina*/
.footer {
	background-color: #484d52;
	margin-top: 200px;
	padding: 80px 0;
	position: relative;
	font-family: sans-serif;
   }
   .footer-div1{
	 max-width: 1200px;
	 margin: 0 auto;
   }
   .footer-div-row{
	 display: flex;
	 flex-wrap: wrap;
   }
   .footer-div-links{
	 width: 25%;
	 padding: 0 15px;
	 box-sizing: border-box;
   }
   .footer-div-links h4{
	 font-size: 20px;
	 color: #ffffff;
	 margin-bottom: 25px;
	 font-weight: 500;
	 border-bottom: 2px solid rgb(118, 179, 194);
	 padding-bottom: 10px;
	 display: inline-block;
   }
   .footer-div-links ul li a{
	 font-size: 18px;
	 text-decoration: none;
	 color: #BBBBBBBB;
	 display: block;
	 margin-bottom: 15px;
	 transition: all .3s ease;
   }
   .footer-div-links ul li a:hover{
	 color: #ffffff;
	 padding-left: 6px;
   }
   .footer-social-link a{
	 display: inline-block;
	 min-height: 40px;
	 width: 40px;
	 background-color: rgba(255, 255, 255, 0.2);
	 margin: 0 10px 10px 0;
	 text-align: center;
	 line-height: 40px;
	 border-radius: 50%;
	 color: #ffffff;
	 transition: all .5s ease;
   }
   .footer-social-link a:hover{
	 background-color: rgb(118, 179, 194);
   }
   @media(max-width:990px) {
	 .footer-div-row{
	   text-align: center;
	 }
	 .footer-div-links{
	   width: 100%;
	   margin-bottom: 30px;
	 }
   }

