@charset "utf-8";
/* CSS Document */

html::-webkit-scrollbar{
	background: white;
	width: 8px;
}
html::-webkit-scrollbar-thumb{
	background: #E6BC4F;
	border-radius: 5px
}

*{
	margin: 0;
	padding: 0;
}
body{
	color: #828282;
    font-family: arial;
    background: #f4f4f4;
}
a{
	text-decoration: none;
}
H1, H2, M3{
	color: #07173d;
}


/*inicio header*/
.uno{
	width: 100%;
}
.cabecera{
	margin: 0 auto;
    width: 100%;
    height: 60px;
    position: relative;
    display: flex;
    z-index: 10;
	text-align: center;
	background: #f4f4f4;
}
.logo{
	position: absolute;
	width: 100%;
    max-width: 400px;
    height: auto;
	padding: 15px 25px;
	right: 0;
	box-sizing: border-box;
	transition: 1s;
	z-index: 3;
}
.logo img {
    aspect-ratio: attr(width) / attr(height);
    width: 100%;
    height: auto;
	filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 1))
			drop-shadow(0px 0px 5px rgba(255, 255, 255, 1))
			drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

/*inicio menu*/
.nav {
	margin: auto;
    text-align: center;
	width: 100%;
	max-width: auto;
	background-color: #f4f4f4;
	padding: 9px 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	margin-top: 5px;
	z-index: 10;
}
.nav li{
	display: inline;
	border-right: 1px dotted #a5a5a5;
	padding: 8px 30px;
}
.nav li:last-child{
	border-right: 0;
}
.menu {
	padding: 0!important;
	margin: 0!important;
}
.menu a{
	color: #07173d;
	text-decoration: none;
	transition: .2s;
}
.menu a:hover{
	font-weight: 510;
	text-shadow: 1px 3px 2px rgba(0,0,0,0.3);
	transition: .2s;
}
.burger {
	display: none;
	color: #07173d;
	width: 100%;
}
.burger span {
    display: block;
    margin-top: 4px;
	width: 24px;
    height: 2px;
    background: #07173d;
	position: relative;
	left: 90%;
}

#toggle {
    display: none;
}


@media only screen and (max-width: 619px) {
    .burger {
        display: block;
        cursor: pointer;
    }
	
	.burger:before{
		content: "Menu";
		position: absolute;
		left: 20px;
	}
	.nav li{
	border-right:none;
	}
    .menu {
        text-align: center;
        width: 100%;
        display: none;
    }
    .menu li {
        display: block;
        border-bottom: 1px dotted #a5a5a5;
    }
	.menu li:nth-child(1){
		border-top: 1px dotted #a5a5a5;
		margin-top: 10px;
	}
	.menu li:last-child{
		border-bottom: 0;
	}
	
    #toggle:checked + .menu {
        display: block;
    }
	.nav{
	/*box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.2);*/	
	}
	.logo{
		max-width: 300px;
	}
}
@media only screen and (max-width: 995px) {
	.nav{
	margin: auto;
	}
	.logo{
		/*top: 50%;*/
		left: 50%;
		transform: translate(-50%, 0%);
		transition: 1s;
	}
}
/*fin menu*/
/*fin header*/

/*inicio banners*/
.invertir{display: flex; flex-direction: column-reverse;}
.invertir h1{ margin: 40px 10px; text-align: center;}
.banners {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-bottom: 600px;
  background: #96989a;
  overflow: hidden;
}
.banners input {
  display: none;
}
.banners .slider_img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
	text-align: center;
}
.banners .slider_img:before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	position: absolute;
}
.banners .slider_img img {
  width: inherit;
  height: inherit;
  object-fit: cover;	
}
.banners .slider_img div{
	color: white;
	position: absolute;
	width: 100%;
	text-shadow: 2px 2px 2px black;
	padding: 60px 40px;
	box-sizing: border-box;
	text-align: left;
	bottom: 0;
}
.banners  h2{
	letter-spacing: 5px;
	color:#E6BC4F;
	font-size:clamp(2rem, 4vw, 6rem);
}
.banners .slider_img h3{
	font-size: 20px;
}
.banners #nav_slide {
  width: 100%;
  bottom: 15px;
  height: 11px;
  position: absolute;
  text-align: center;
  z-index: 10;
  cursor: default;
  opacity: 40%;
}
.banners #nav_slide:hover{
  opacity: 100%;
}
.banners #nav_slide .dots {
  width: 18px;
  height: 18px;
  margin: 0 10px;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  background-color:rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.4s;
  cursor: pointer;
}
.banners #nav_slide .dots:hover{
	background: #E6BC4F;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
}

#i1:checked ~ #ban-uno,
#i2:checked ~ #ban-dos,
#i3:checked ~ #ban-tres,
#i4:checked ~ #ban-cuatro {
 	opacity: 1;
	animation: transicion-uno 2s ease-in-out;
}

@keyframes transicion-uno {
	0% {opacity: 0.4;}
	100% {opacity: 1;} 
}
	
#ban-uno, #ban-dos, #ban-tres, #ban-cuatro {
	animation-play-state:paused;
}


#i1:checked ~ #nav_slide #dot1 {
  background: #E6BC4F;
}
#i2:checked ~ #nav_slide #dot2 {
  background: #E6BC4F;
}
#i3:checked ~ #nav_slide #dot3 {
  background: #E6BC4F;
}
#i4:checked ~ #nav_slide #dot4 {
  background: #E6BC4F;
}

@media screen and (max-width: 540px) {
	.banners .slider_img div{
	padding: 30px 20px;
	}
}
/*fin banners*/

/*inicio summary*/
.summary{
	display: flex;
	align-items: center;
	flex-direction: column;
}
.summary p{
	width: 100%;
	max-width: 1200px;
	padding: 10px;
	box-sizing: border-box;
	text-align: justify;
}
.summary p:nth-child(5){
	text-align: center;
	font-style: italic;
	margin-top: 40px;
}
.summary h2{
	text-align: center;
	padding: 20px 10px;
	box-sizing: border-box;
}
/*fin summary*/

/*inicio focus*/
.focus{
	padding: 40px 0;
	margin: 40px 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	background: #E6BC4F;	
}
.focus h2{
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
}
.focus p{
	color: #f4f4f4;
	text-align: justify;
}
.focus p:nth-child(2){
	width: 100%;
	max-width: 1200px;
	text-align: justify;
	padding: 40px 10px 20px 10px;
	box-sizing: border-box;
}
.focus .focus-icon{
	width: 100%;
	max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-around;
    gap: 20px;
	margin-top: 40px;
}
.focus .focus-icon div{
	width:100%;
	max-width: 339px;
	margin: auto;
	padding: 0 10px;
	box-sizing: border-box;
	text-align: center;
	margin-top: 0px;
}
.focus .focus-icon div h3{
	padding: 20px 0;
	color: #07173d;
}
.focus .focus-icon div div{
	height: 150px;
	width: 179px;
	overflow: hidden;
	border: 4px solid #07173d;
	border-radius: 20px;
}
.focus .focus-icon div div img{
	width: 358px;
	height: auto;
	position:relative;
	left: 89px;
	top:-1px;
}
.focus .focus-icon div div img:hover{
	left: -89px;
	background: #07173d;
}
.two-column-list {
  	columns: 2;
  	column-break-inside: avoid;
	column-gap: 25px;
	margin: 0 10px 40px 30px;
	line-height: 1.6;
	box-sizing: border-box;
	color: #f4f4f4;
}
@media screen and (max-width: 540px) {
	.two-column-list {
  	columns: 1;
	}	
}
/*fin focus*/

/*inicio nosotros*/
.foto{
	width: 100%;
	max-width: 350px;
}
.foto img{
	width: 100%;
	height: auto;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.1);
	box-sizing: border-box
}
.iris-txt {
    width: 100%;
	max-width: 750px;
    /*min-width: 300px; */
    display: flex;
    justify-content: center;
    flex-direction: column;
	padding: 0 10px;
	box-sizing: border-box;
	text-align: justify;	
}
.iris-txt h3{
	margin-bottom: 20px;
	color: #E6BC4F;
}
.iris-txt p{
	padding: 10px 0;
	box-sizing: border-box;
}
.iris-txt ul{
	margin-left: 20px;
    padding-left: 0; 	
}
/*fin nosotros*/

/*inicio servicios*/
.margen {
    padding: 50px 10px;
    box-sizing: border-box;
}
.img-box {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 550px;
}
.historia-txt {
    width: 100%;
    max-width: 800px;
    min-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tabla {
    display: inline-block;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    max-width: 850px;
    min-width: 100%;
    text-align: left;
}
.tabla table{
	border-collapse:collapse;
	line-height:22px;
	color: #828282;
	background-color: #FFFFFF;
	width: 100%;
    max-width: 850px;
    min-width: 100%;
	border: 1px solid #828282;
}
.tabla table tbody tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
}
.tabla table tbody tr:nth-child(odd){
	background: rgba(230, 188, 79, .2);
}
.tabla table tbody tr:nth-child(1){
	background: #E6BC4F;
	text-align: center;
	font-size: 22px;
	color: #07173d;
}
.tabla table tbody tr td {
    padding: 10px;
	box-sizing: border-box;
	border: 1px solid #828282;
}

@media screen and (max-width: 800px) {
	.servicios-uno:nth-child(even) .contenedor{
	flex-direction: column-reverse;
}
}

.common{
	text-align: center;
	padding: 20px 10px;
	box-sizing: border-box;
}
.two-column-list-dos {
    columns: 2;
    column-break-inside: avoid;
    column-gap: 25px;
    padding: 20px 10px 20px 15px;
	box-sizing: border-box;
	margin: auto;
    line-height: 1.6;
	text-align: left;
	width: 100%;
	max-width: 800px;
}
/*fin servicios*/

















/*inicio contacto*/
.contenedor {
    width: 100%;
    max-width: 1150px;
    margin: auto;
	margin-top: 40px;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.cajas {
    position: relative;
    display: flex;
    flex-direction:column;
    align-items:center;
	justify-content: center;
    gap: 10px;
    flex-grow: 1;
}
/*formulario*/
.formulario-caja{
	width: 100%;
	max-width: 550px;
    min-width: 100%;
	padding: 10px;
	box-sizing: border-box;
}
.formulario{
	width: 100%;
	display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
	gap:20px;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #828282;
	border-radius: 20px;
}
.form {
    width: 100%;
    position: relative;
    height: 50px;
    overflow: hidden;
}
.form input, .mensaje{
    width: 100%;
    height: 100%;
    padding-top: 10px;
    border: none;
    outline: none;
	caret-color: #07173d;
	color:#07173d;
	background: #f4f4f4;
}
.mensaje{
	border-bottom: 1px solid #828282;
}
.mensaje::placeholder {
	color: #737577;
	font-family: arial;
	font-size: 17px;
}
.form label {
    position: absolute;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid #96989a;
}
.form label:after {
    content: "";
    position: absolute;
    left: 0PX;
    bottom: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 3PX SOLID #E6BC4F;
    transform: translateX(-100%);
    transition: transform .3s ease;
}
.content-name {
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all .3s ease;
	color:#737577;
}
.form input:focus + .label-name .content-name, .form input:valid + .label-name .content-name{
transform: translateY(-150%);
font-size: 14px;
}
.form input:focus + .label-name:after, .form input:valid + .label-name:after{
transform: translateY(0);
}

.boton {
    padding: 15px 25px;
    color: white;
    background: #E6BC4F;
    border: none;
    cursor: pointer;
    text-decoration: none;
    max-height: 50px;
	transition: .5s;
}
.boton:hover{
	transform: scale(1.1);
	box-shadow: 5px 5px 3px rgba(0,0,0,0.3);;
}

/*mapa*/
.calle{
	/*width: 100%;*/
    max-width: 850px;
	min-width: 100%;
    display: flex;
    justify-content: center;
	min-height: 400px;
	flex-direction: column;	
}
.calle h3{
	margin: 20px 0 10px 0;
}
.calle .mapa-google{
    width: 100%;
    max-width: 550px;
    min-width: 100%;
    height: 400px;
}

.captcha{
	display: flex;
	flex-wrap: wrap;
	gap:20px;
	justify-content: space-around;
	align-items: center;
    width: 100%;
}
/*fin contacto*/

/*inicio footer*/
footer{
	color: #f4f4f4;
	background: #07173d;
	width: 100%;
	border-top: 5px solid #E6BC4F;
	padding: 10px 10px;
    display: flex;
    justify-content: center;
	box-sizing: border-box;
	margin-top: 40px;
}
footer a{
	color: #f4f4f4;
}
.footer-box {
    width: 100%;
    max-width: 1350px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.contacto {
    font-family: arial;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
    align-items: center;
    flex-grow: 4;
}
.data{position: relative}
.data:before{
	content: "";
	width: 2px;
	height: 100px;
	background: #E6BC4F;
	position: absolute;
	top: -10px;
	left: -10px;
}
.rrss {
    display: flex;
    justify-content: space-around;
    flex-grow: 1;
    flex-basis: 100px;
}
.certified {
    flex-grow: 8;
    flex-basis: 400px;
	text-align: center;
}
.certified img{
	margin: 5px;
}
.icono {
    width: 12px;
	height: 12px;
    margin-top: 3px;
}
.facebook{
	width: 30px;
	height: 30px;
	background: #E6BC4F;
	border: 2px solid #E6BC4F;
	border-radius: 5px;
}
.copy {
    color: #f4f4f4;
    text-align: center;
    padding: 10px 10px;
    width: 100%;
    background: #04112f;
	box-sizing: border-box;
}
.copy a{
	color: #f4f4f4;
}
@media screen and (max-width: 540px) {
	.logo-footer {
		display: inline-block;
		width: 100%;
		text-align: center;
		box-sizing: content-box;
		margin-top: 10px;
	}
	.data:before{
		display: none;
	}
}
/*fin footer*/

/*inicio whatsapp*/
.action{
		
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
		background: green;
		border: 1px solid white;
		border-radius: 50%;
		box-shadow: 0 5px 5px rgba(0,0,0,.1);
		z-index: 100;
	}
	.iconow{
		cursor: pointer;
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: 0.3s ease-in-out;
	}
	.iconow img{
		width: 30px;
		height: auto;
		filter:grayscale(100%) brightness(900%);
	}
	.action.active .iconow img{
		filter:none;
	}
	.action.active{
		border: 1px solid green;
		background: white;
	}
	.cajaw{
		position: absolute;
		bottom: 55px;
		min-width: 350px;
		border-radius: 20px;
		overflow:hidden;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
		right: -5px;
		filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
	}
	.action.active .cajaw{
		bottom: 65px;
		opacity: 1;
		visibility: visible;
		transition: 0.3s;
	}
	.titulow{
		background: #075e55;
		padding: 20px;
		display: flex;
		align-items: center;
		color: white;
		font-family: tahoma;
		font-size: 20px;
	}
	.titulow p{
		margin: 0 0 0 20px;
	}
	.titulow p:nth-child(2){
		font-size: 15px;
	}
	.cuerpow{
		background:url("../img/fondow.webp");
		background-size: cover;
		padding: 20px;
	}
	.piew{
		display: flex;
		background: #d3d3d5;
		padding: 20px;
		justify-content: center;
	}
	.btnchatw{
		font-family: tahoma;
		font-size: 20px;
		color: white;
		background: #47b552;
		width: 300px;
		height: 50px;
		border-radius: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.btnchatw img{
		width: 30px;
		height: auto;
		margin-right: 10px;
		filter:grayscale(100%) brightness(900%);
	}
	.avatarw{
		width: 55px;
		height: 55px;
		background: url(../img/avatar.webp);
		background-position: center;
		background-size: 50px;
		border-radius: 50px;
		/**/background-repeat: no-repeat;
		background-color: #f4f4f4;
	}
	.avatarw:before{
		content: "";
		background: #54d500;
		width: 10px;
		height: 10px;
		display: block;
		position: relative;
		border-radius: 50%;
		bottom: -80%;
		right: -80%;
	}

	/*burbuja de texto*/
	.comentariosw .comentariow{
			max-width: 200px;
			margin-bottom: 40px;
		}

		.comentariosw .comentariow p{
			margin: 0 0 10px 0;
			font-family: tahoma;
			font-size: 18px;
		}
	.comentariosw .comentariow p:nth-child(1){
	color: #ad181a;
		}

		.burbujaw{
			position: relative;
			background-color: #fff;
			padding: 10px 20px 10px 20px;
			color: #96989a;
			border-radius: 0px 10px 10px 10px;
			margin-left: 10px;
		}

		.burbujaw:after{
			content: "";
			display: block;
			position: absolute;
			top: -4.6px;
			margin-left: -30px;
			width: 0;
			height: 0;
			border-top: 8px solid transparent;
			border-bottom: 8px solid transparent;
			border-right: 15px solid #fff;
			transform: rotate(29deg);
		}
/*fin whatsapp*/