html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

ol, ul {
	list-style: none;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Spartan', sans-serif;
}

*, *:before, *:after {
    box-sizing:border-box;
}

/*
font-family: 'PT Sans', sans-serif;
font-family: 'Lato', sans-serif;
*/

body {
font-family: 'Lato', sans-serif;
}
.barrasup{
  display: flex;
  background-color: #49596b;
  padding: 10px;
  justify-content: space-around;
}

.barrasup p, .barrasup a{
  color:#fff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 20px;
  display: inline-block;
}

.barrasup p{
  text-align: center;
}

.barrasup a{
	text-align: right;
}

.barrasup a:hover{
	color:#01c6b8;
}



header{
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  padding: 10px;
	grid-gap: 10px;
}


header ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
}

header ul li{
  display: grid;
  justify-content: center;
  align-items: center;

}

header ul li a:before{
	content:"";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0%;
	height:100%;
	display: block;
	border-bottom: 2px #93282B solid;
	transition: all 1s;
	}

header ul li a:hover:before{
	width:100%;
	}

header ul li a{
  color:#55677c;
  text-transform: uppercase;
    text-decoration: none;
    font-family: 'Spartan', sans-serif;
		box-shadow: inset 0 0 0 0 #fff;
		transition: all 1s;
	position: relative;
	z-index: 1;
padding: 5px 0;
}


.activo{
	border-bottom: 2px #93282B solid;;
}

.hamburger {
  cursor: pointer;
  display: grid;
  gap: 5px;
  justify-content: right;
  margin-right: 20px;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}


.contenedorslider{
	overflow: hidden;
margin-bottom: 30px;
}

.slider{
	display: grid;
	grid-template-columns: 100% 100%;
	min-height: 300px;
	animation: slider 20s infinite;
	animation-delay: 5s;
	animation-timing-function:ease;
	position: relative;
}

@keyframes slider {
	0%{
		right: 0%;
	}
	25%{
		right: 0%;
	}
	50%{
		right: 100%;
	}
	75%{
		right: 100%;
	}
	100%{
		right: 0%;
	}

}

.contslider{
	display: grid;
	grid-template-columns: 1fr 2fr;
	position: relative;
}
.legend{
  border:500px solid transparent;
  border-left:800px solid rgba(52, 73, 94, .7);
  border-bottom:0;
  position:absolute;
  bottom:0;
}

.contslider01{
	background: url("../imagenes/02.jpg") no-repeat;
	background-size: cover;

}

.contslider02{
	background: url("../imagenes/obra12.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}

.txtslider{
	padding: 20px;
	z-index: 1;
	position: absolute;
	width:400px;
	top:150px;
}




.txtslider h2{
	    font-size: 20px;
	    color: #fff;
			margin-bottom: 20px;
			border-left: 5px #93282B solid;
	padding-left: 10px;
	padding-top: 5px;
}

.txtslider p{

	font-size: 14px;
	text-align: justify;
	color: white;
}

main{
	padding: 10px;
}

.titulosecc{
	font-size: 25px;
  margin-bottom: 30px;
  background-color: #eee;
  padding: 10px;

    border-left: 5px solid #93282B;
}

.contsecciones{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 40px;
	margin-bottom:30px;
}

.seccion{
	display: grid;
}

.seccion img{
	width: 100%;
	border: 10px solid white;
}

.descrseccion{
	background-color: #eee;
	padding: 30px;
}
.descrseccion h4{
	margin-bottom: 20px;
	font-size: 20px;
  text-transform: uppercase;
	position: relative;
}

.descrseccion h4:after{
	position: absolute;
	    top: 100%;
	    left: 0;
	    width: 50px;
	    height: 1px;
	    background: #93282B;
	    content: '';
	    margin-top: 10px;
}


.descrseccion p {
    line-height: 30px;
		color:#555458;
}

.descrseccion a,#buttonprim{
	color: #444447;
    font-size: 14px;
    line-height: 22px;
    border: 2px solid #01c6b8;
    padding: 10px 10px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    -webkit-transform: translateZ(0px);
    -moz-transform: translateZ(0px);
    transform: translateZ(0px);
		text-decoration: none;
		float: right;
		margin-top: 10px;
}

.descrseccion a:hover,#buttonprim:hover{
	color:white;
}

.descrseccion a:hover:before, #buttonprim:hover:before{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}
#buttonprim{
  cursor:pointer;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #a94442;
}

.has-error #claveprim:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px #ce8483;
}

.has-error #claveprim {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.descrseccion a:before,#buttonprim:before {
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background: #01c6b8;
    transition-property: transform;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    content: '';
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    z-index: -1;
    position: absolute;
}

.contazul{
	background: #49596b;
	padding: 50px 30px 50px;
	margin-bottom: 30px;
}

	.contazul h4{
		font-size: 30px;
		color: white;
		text-align: center;
		margin-bottom: 20px;
	}

	.galeria{
		display: grid;
		grid-template-columns: repeat(6,1fr);
		grid-template-rows: 200px;
	}

	.contimggal{
		overflow: hidden;
		width: 100%;
	}

.contgris{
	background: #ece8e7;
    padding: 104px 30px 60px;
    margin-bottom: 30px;
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-gap: 40px;
}

.contgristxt{
    background: #ece8e7;
    padding: 60px 30px 114px;
    margin-bottom: 30px;
}

.contgristxt img{
border: 5px solid white;
margin-right:30px;
}

.contgris img{
	width: 100%;
	border:5px solid white;
}
.clear{
  clear:both;
}

.titulosecciongrande{
    font-size: 50px;
    text-align: center;
    margin-bottom: 25px;
    padding: 16px;
    font-weight: bold;
    background: #93282B;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 3px 3px rgb(255 255 255 / 40%), 0px -1px 1px rgb(0 0 0 / 30%);
}

.imggris{
}

.txtgris h3{
	font-size: 25px;
  margin-bottom: 30px;
	text-transform: uppercase;
	border-bottom: 1px #01c6b8 solid;
}


.txtgris p{
	margin-bottom: 10px;
	line-height: 40px;
	text-align: justify;
}

.txtgris a{
	color: #444447;
    font-size: 18px;
    line-height: 22px;
    border: 2px solid #01c6b8;
    padding: 15px 42px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    -webkit-transform: translateZ(0px);
    -moz-transform: translateZ(0px);
    transform: translateZ(0px);
		text-decoration: none;
}

.txtgris a:hover{
	color:white;
}

.txtgris a:hover:before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.txtgris a:before {
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    background: #01c6b8;
    transition-property: transform;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    content: '';
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    z-index: -1;
    position: absolute;
}

/* Sombra general */

.drop-shadow {
	position:relative;
	float:left;
	width:30%;
	background:#fff;
	-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
		 -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.drop-shadow:before,
.drop-shadow:after {
	content:"";
	position:absolute;
	z-index:-2;
}

.drop-shadow p {
	font-size:16px;
	font-weight:bold;
}

/* Caja elevada - No requiere pseudoelementos */

.raised {
	-webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
		 -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}


/** Galeria de fotos **/
	 #photo-slide {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

 #photo-slide li {
        list-style: none;
    /*float: left;
    width: 16.66%;*/
    /*padding-top:15px;*/
    transition: all ease 0.3s;
    position: relative;
}

 #photo-slide li img {
    vertical-align: top;
}

 #photo-slide li .text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    /*font-weight: 700;*/
    color: #fff;
    font-size: 22px;
    line-height: 24px;
    opacity: 0;
    transition: all ease 0.2s;
}

 #photo-slide li:hover .text {
    opacity: 1;
}

 #photo-slide li .text a {
    color: #fff;
}

#photo-slide li:hover .text {
    /*transform: translateY(-15px);*/
}

#photo-slide li:hover {
    padding-top: 0;
}

#photo-slide li .img-holder a {
    display: block;
    overflow: hidden;
		text-decoration: none;
}

 #photo-slide li .img-holder img {
    transition: all ease 0.2s;
}

 #photo-slide li:hover .img-holder img {
    transform: scale(1.1);
}

#photo-slide li img {
    width: 100%;
}

.owl-carousel .owl-nav [class*="owl-"] {
    height: 100%;
    margin-top: 0;
    top: 0;
    background-color: #34506f;
    background-repeat: no-repeat;
    background-position: center;
    width: 46px;
    position: absolute;
    text-indent: 50px;
    overflow: hidden;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transition: all ease 0.35s;
    -moz-transition: all ease 0.35s;
    transition: all ease 0.35s;
}

.owl-carousel .owl-nav .owl-prev {
    left: 0;
    background-image: url("../imagenes/btn-prev2.png");
		border: 0;
}

.owl-carousel .owl-nav .owl-next {
    right: 0;
    background-image: url("../imagenes/btn-next2.png");
		border: 0;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

.owl-carousel .owl-nav [class*="owl-"].disabled,
.owl-carousel .owl-nav [class*="owl-"].disabled:hover {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: not-allowed;
}

.fondogris{
	background: #ece8e7;
		padding: 104px 30px 60px;
		margin-bottom: 30px;
}

.contcontacto{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap:20px;
}

.infocont h3{
	font-size: 35px;
	margin-bottom: 10px;
}

.infocont i{
	margin-right: 10px;
}
.infocont li{
	margin-bottom: 5px;
}

.secccontacto{
	margin-top: 20px;
	position: relative;
	margin-bottom: 10px;
}

.secccontacto:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 50px;
    height: 1px;
    background: #93282B;
    content: '';
		margin-top: 5px;
}

.mapa iframe{
	width: 100%;
	height: 100%;
}

.claveboton{
  display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}
.claveboton a{
  float: none;
    text-align: center;
}

#claveprim{
  padding: 10px;
    margin-top: 15px;
}

.logo-handing{
  width: 75px;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .contsecciones{
			grid-template-columns: 1fr;
		}
    .contcontacto{
      grid-template-columns: 1fr;
    }
    .contgris{
      grid-template-columns: 1fr;
    }
    .titulosecciongrande{
      font-size:30px;
    }
    .contgristxt img{
      width: 100%;
    margin-bottom: 25px;
    }
    .barrasup{
      grid-template-columns: 1fr;
      gap:10px;
      text-align: center;
    }
    .barrasup a{
      text-align: center;
    }
    header ul{
      display: none;
    }
    .hamburger.active .bar:nth-child(2){
      opacity: 0;
    }

    .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
    }

    header ul.active{
      display: block;
      grid-column: 1/3;
    }
    
}


@media screen and (min-width: 769px) {
.hamburger{
  display: none;
}

}