/*
Theme Name: Kloudlab
Author: Misael Sabán
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Kloudlab

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/***** Colores ********/
/*

Naranja 
#FD6B0D
Naranja Claro
#FDBD10

*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900&display=swap');

@font-face {
	font-family: 'MontserratAlt1-Black';
	src: url('assets/fonts/MontserratAlt1/MontserratAlt1-Black.otf')  format('opentype'), url('assets/fonts/MontserratAlt1/MontserratAlt1-Black.ttf')  format('truetype');
	font-weight: normal;
	font-style: normal;
  }
@font-face {
	font-family: 'MontserratAlt1-Bold';
	src: url('assets/fonts/MontserratAlt1/MontserratAlt1-Bold.otf')  format('opentype'), url('assets/fonts/MontserratAlt1/MontserratAlt1-Bold.ttf')  format('truetype');
	font-weight: normal;
	font-style: normal;
}

  


html, body {
	background: #eee;
	font-size: 14px;
	color: #000;
	margin: 0;
	padding: 0;
	
}

.swiper {
	width: 100%;
	height: 100%;
	position: fixed;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
}

.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: white;
	fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}

.oscurecer-img{
	filter: brightness(55%);
  }

.contenido-home {
	color: white;
	position: absolute;
	z-index: 100;
	padding: 5% 5%;
	width: 80%;
}
.contenido-home h1 {
	font-family: 'MontserratAlt1-Bold';
	margin-top: 15%;
	font-size: 3.5em;
	text-transform: uppercase;
}
.contenido-home p {
	font-family: 'Montserrat';
	font-size: 1.3em;
	font-weight: 100;
}
.contenido-home img {
	max-height: 50px;
}
.form-container {
	font-family: 'Montserrat';
	background-color: #282A36;
	color: white;
}
.form-container h3 {
	font-family: 'MontserratAlt1-Bold';
}
.list-redes {
	display: flex;
	list-style: none;
	flex-wrap: nowrap;
	flex-direction: row;
	align-content: space-around;
	justify-content: flex-start;
	align-items: center;
	margin-top: 2em;
}
.list-redes li{
	padding: 0 10px;
}
.list-redes i{
	font-size: 1.8em;
}
.list-redes i:focus, .list-redes i:hover{
	font-size: 2em;
	transform: scale(1.2);
	transition: transform 1s;
}
.list-redes a{
	color: white;
}
.list-redes a:focus, .list-redes a:hover{
	color: white;
}

.btn-primary {
	background-color: transparent;
    color: white;
    border: white solid 2px;
    border-radius: 0;
    font-weight: 500;
}

.btn-primary:focus, .btn-primary:hover {
	background-color: transparent;
    color: white;
    border: white solid 2px;
    border-radius: 0;
    font-weight: 500;
	transform: scale(1.1);
	transition: transform 1s;
}
.form {
	position: fixed;
	bottom: 5px;
    z-index: 1000;
	padding-left: 5%;
}

.form form {
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
}




.form input[type="text"], .form input[type="email"], .form input[type="tel"]  {
    background: #000000a3;
    border: 0;
    height: 40px;
    border-bottom: white solid 1px;
	color: white;
	width: 100%;
	padding-left: 10px;
}
.wpcf7-submit {
	background-color: transparent;
    color: white;
    border: white solid 2px;
    border-radius: 0;
    font-weight: 500;
	height: 40px;
}
.wpcf7-not-valid-tip {
	font-size: 11px;
    color: red;
    font-weight: 500;
}
.wpcf7-response-output {
	display: none;
}
.screen-reader-response {
	display: none;
}


@media screen and (max-width: 991px){
	.contenido-home {
		width: 100%;
	}
	.contenido-home img {
		max-height: 40px;
	}
	.contenido-home h1 {
		margin-top: 30%;
		font-size: 2.4em;
	}
	.contenido-home p {
		font-size: 1.2em;
	}
	.form {
		bottom: 1em;
	}
	.form form {
		display: block;
	}
	.wpcf7-submit {
		width: 100%;
	}
}