/*
Theme Name: Cleaning Hood Service
Author: DonPig
Author URI: https://donpig.com/
Description: Plantilla de wordpress para el sitio Mileto.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: DonPigTemplate
*/

body{
	font-family: Montserrat,Poppins,Helvetica, sans-serif;
	text-align: center;
	margin:0 0 0 0;
	cursor:default;
	font-size: max(1vw,12px);
}
input[type="button"],button{
	border:none;
	background:none;
	font-size:1em;
	cursor:pointer;
}
img{
	border:none;
}
a{
	color: inherit;
	text-decoration: none;
}
*[onclick],*[href]{
	cursor: pointer;
}
textarea{
	resize:none;
}
.clr{
	clear:both;
}
.columnas2{
	-webkit-column-count:2;
	-moz-column-count:2;
	column-count:2;
}
.columnas3{
	-webkit-column-count:3;
	-moz-column-count:3;
	column-count:3;
}
.columnas4{
	-webkit-column-count:4;
	-moz-column-count:4;
	column-count:4;
}
.columnas5{
	-webkit-column-count:5;
	-moz-column-count:5;
	column-count:5;
}
.grid2{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 0;
}
.grid3{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0;
}
.grid4{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 0;
}
.grid5{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 0;
}
.flex{
	display: flex;
	flex-flow: row wrap;
	align-content: space-between;
	justify-content: space-between;
}
.flex>*{
	flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    text-align: center;
}

.site_error>div{
	margin: 0 auto;
	padding: 0.5em;
	color: #C44;
	border:#C44 solid 1px;
	background: #EDD;
	text-align: center;
	width: 50%;
	min-width: 280px;
	border-radius: 0.15em;
	font-weight:600;
}
.site_error{
	position: fixed;
	top:-20em;
	opacity: 0;
	z-index: 10;
	width: 100%;
	
	-webkit-animation: siteError 5s 1;
	-moz-animation: siteError 5s 1;
	animation: siteError 5s 1;
}

.site_success>div{
	margin: 0 auto;
	padding: 0.5em;
	color: #494;
	border:#494 solid 1px;
	background: #DED;
	text-align: center;
	width: 50%;
	min-width: 280px;
	border-radius: 0.15em;
	font-weight:600;
}
.site_success{
	position: fixed;
	top:-20em;
	opacity: 0;
	z-index: 10;
	width: 100%;
	
	-webkit-animation: siteError 5s 1;
	-moz-animation: siteError 5s 1;
	animation: siteError 5s 1;
}

@keyframes siteError{
	0%{opacity:1;top:5em;}
	90%{opacity:1}
	99%{opacity:0;top:5em;}
	100%{opacity:0;top:-20em;}
}

.hide_me{
	height: 0;
	width: 0;
	overflow: hidden;
	opacity: 0;
	font-size: 1px;
}

a,input,button,*[onclick],*[href]{
	transition: all .25s ease-in-out;
	cursor: pointer;
}


/* GENERALES */

header{
	position: sticky;
	top:0;
	left:0;
	right: 0;
	z-index: 10;
	/*background: linear-gradient(85deg,black 30%,white 70%);*/
	background: white;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	color: black;
	padding: 0.5em 2.5%;
}
#logo{
	display: flex;
	align-items: center;
	gap:0.5em;
}
#logo span{
	color: #999;
	font-size: 0.7em;
	font-weight: 300;
}
#logo span b{
	color:white;
}
#logo img{
	height: 4em;
}
menu,menu ul,menu li{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	list-style: none;
	gap:2em;
	color: #039;
	font-weight: 600;
}
menu li:last-child{
	color: #E03;
}

#content{
	min-height:100vh;
}
a.elementor-button-link:hover{
	background: white !important;
	color: #00F !important;
}

#topbar{
	background: linear-gradient(90deg,#00F,#39F,#00F);
	color:white;
	padding:3px 2.5%;
	display: flex;
	justify-content: end;
	align-content: end;
	align-items: center;
	letter-spacing: 0.15em;
	font-size: 0.8em;
	font-weight: 600;
}
#topbar ul{
	margin: 0 0 0 2em;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	list-style: none;
	gap:1em;
}
form :is(input,select,textarea){
	background: transparent;
	color:white;
	border:none;
	border-bottom: white solid 1px;
	text-transform: uppercase;
	box-sizing: border-box;
	padding: 0.5em;
	margin-bottom: 1em;
	font:inherit;
	font-style: italic;
	display:block;
	width:100%;
	font-weight: 600;
}
#contact form{
	width: max(75%,300px);
	margin:0 auto
}
form button{
	background: rgba(200,240,250,0.75);
	color:#039;
	padding: 0.5em 2em;
	font:inherit;
	font-weight: 600;
	border-radius: 2em;
	margin-top: 2em;
}
form button:hover{
	background: white;
}

footer{
	background: #039;
	color: white;
	padding: 1em 2.5%;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
}
footer :is(ul,li){
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-content: space-between;
	align-items: center;
	list-style: none;
	gap:1em;
}

#subfooter{
	color: #CCC;
	padding: 0.5em 1em;
	text-align: center;
	background: #026;
	font-size: 0.65em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	border-bottom: #E03 solid 0.5em;
}
#subfooter a{
	color:#3CD;
}


#content h1,#content h2,#content h3,#content h4,#content h5,#content p,#content img,#content a,#content li{
	position: relative;
	top: 2em;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

/* RESPONSIVO */

.mobile_only{
	display:none !important;
}

@media all and (max-width:960px){
	.mobile_only{
		display:block !important;
	}
	.desktop_only{
		display:none !important;
	}
	.columnas2,.columnas3{
		-webkit-column-count:1;
		-moz-column-count:1;
		column-count:1;
	}
	.columnas4{
		-webkit-column-count:2;
		-moz-column-count:2;
		column-count:2;
	}
	.columnas5{
		-webkit-column-count:3;
		-moz-column-count:3;
		column-count:3;
	}
	.grid2,.grid3,.grid4,.grid5,.flex{
		display: block;
	}
	.grid2mobile{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.grid3mobile{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	
	.grid2mobile{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.grid3mobile{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	
	header{
		height:60px;
		padding: 0 1em;
	}
	#menu_opener{
		float:left;
		margin: 5px;
		width:50px;
		height:50px;
	}
	#menu_opener>div{
		height:2px;
		margin: 4px auto 0 auto;
		background: black;
		width: 36px;
		border-radius: 3px;
	}
	#menu_opener>div:first-child{
		margin-top: 14px;
	}
	#logo img{
		height: 40px;
	}

	header:has(.opened){
		box-shadow: rgba(0,0,0,0.95) 0 2em 0 0 !important;
	}
	menu,menu ul,menu li{
		display: block;
		line-height: 3em;
		color:white;
	}
	menu{
		position: fixed;
		top:80px;
		font-size: 1.5em;
		background: rgba(0,0,0,0.95);
		padding: 2em;
		text-align: center;
		left: 0;
		right: 0;
		display: none;
		color: white;
	}
	a.elementor-button-link{
		border-radius: 2em !important;
	}
}