* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Overpass', sans-serif;
}

a {
	color: #fff;
}

a:hover {
	color: #3D5C57;
	text-decoration: none;
}

.btn:focus{
  box-shadow: none;
} 

/*------------------------------------*\
#LOADING-SECTION
\*------------------------------------*/
.preloader {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 99999;
  background-color: #3D5C57;
  overflow: hidden;
}

.preloader-brand{
  width: 150px;
  margin: -60px 0 0 -50px;
}

.spinner {
  margin: -40px 0 0 -40px;
  width: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
}

.spinner > div {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

@media (max-width: 576px) {
  .spinner > div {
    width: 10px;
    height: 10px;
  }
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
  -webkit-transform: scale(0)
  }
  40% {
  -webkit-transform: scale(1.0)
  }
  }
   @keyframes sk-bouncedelay {
  0%, 80%, 100% {
  -webkit-transform: scale(0);
  transform: scale(0);
  }
  40% {
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
  }
}

/*  HEADER  */

header {
	transition: all 0.5s ease; 
}

.logo-img {
	width: 180px;
}

.logo-mega {
  width: 200px;
  padding-left: 3.5rem;
}

@media (max-width: 768px) {
  .logo-img {
    width: 160px;
  }

  .logo-mega {
    width: 200px;
  }
}

@media (max-width: 360px) {
  .logo-img {
    width: 130px;
  }
  .logo-mega {
    width: 130px;
  }
}

@media (max-width: 340px) {
  .logo-img {
    width: 110px;
  }
  .logo-mega {
    width: 110px;
  }
}

/*.navbar-brand {
	background-color: #fff;
	padding: 10px;
	border-radius: 0 0 20px 20px;
}*/

.navbar-nav a {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}

.navbar-nav a i {
  font-size: 18px;
}

@media (max-width: 576px) {
  .navbar-nav a i {
    font-size: 14px;
  }
}

.navbar-nav a:hover {
	color: #21265C !important;
}

.bg-header{
  background-color: rgba(61,92,87,0.9);
}

.inverse {
	color: #595554 !important;
}

/* MENU BUTTON */

#menu-button {
  width: 2vw;
  height: 20px;
  position: relative;
  z-index: 99999;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  outline: none;
}

#menu-button:hover span {
  background: #21265C;
}

#menu-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#menu-button span:nth-child(even) {
  left: 50%;
  /*border-radius: 0 9px 9px 0;*/
}

#menu-button span:nth-child(odd) {
  left:0px;
  /*border-radius: 9px 0 0 9px;*/
}

#menu-button span:nth-child(1), #menu-button span:nth-child(2) {
  top: 0px;
}

#menu-button span:nth-child(3), #menu-button span:nth-child(4) {
  top: 7px;
}

#menu-button span:nth-child(5), #menu-button span:nth-child(6) {
  top: 14px;
}

#menu-button.open span:nth-child(1),#menu-button.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-button.open span:nth-child(2),#menu-button.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu-button.open span:nth-child(1) {
  left: 1px;
  top: 4.5px;
}

#menu-button.open span:nth-child(2) {
  left: calc(50% - 1px);
  top: 4.5px;
}

#menu-button.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#menu-button.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#menu-button.open span:nth-child(5) {
  left: 1px;
  top: 13.5px;
}

#menu-button.open span:nth-child(6) {
  left: calc(50% - 1px);
  top: 13.5px;
}


/* END MENU BUTTON */

#menuNavbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(61,92,87,0.9);
  z-index: 9999;
  transition: .4s ease;
  display: flex;
  justify-content: center;
  align-items: center;  
}

#menuNavbar .nav-link {
  font-size: 1.8rem;
}

.hide {
  opacity: 0;
  transform: translateX(100%);
}

.show {
  opacity: 1;
  transform: translateX(0%);
}

/*.navbar-collapse {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
		justify-content: center;
	}

  #collapsibleNavbar {
    background-color: rgba(61,92,87,0.9);
  }
}*/

/*  WHATSAPP ICON  */

.whatsapp {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}

.whatsapp-icon {
  margin-top:13px;
}

@media (max-width: 576px) {
    .whatsapp {
      bottom:20px;
      right:20px;
    }
}

/*  LOGO FIXED  */

.logo-fixed {
	position: fixed;
	width: 150px;
	top: 35vh;
	left: 50%;
	margin-left: -75px;
	z-index: -20;
}

@media (max-width: 991.98px) {
  	.logo-fixed {
		width: 100px;
		margin-left: -50px;
	}
}

@media (max-width: 576px) {
    .logo-fixed {
    top: 15vh;
    width: 50px;
    margin-left: -25px;
  }
}


/*  FOOTER  */

footer {
	background-color: #3D5C57;
	color: #fff;
	padding: 60px 0px;
}

@media (max-width: 576px) {
    footer {
    padding: 20px 0px;
  }
}

/*footer div {
  display: flex;
  align-content: space-between;  
}*/

footer .nav-item{
  line-height: 1;
}

footer .nav-link{
	padding: 0px;
  padding-bottom: 15px;
}

footer a:hover{
	color: #21265C !important;
}

.carpeta {
  border: 1px solid #fff;
}

#footer-navbar .nav-link {
  font-size: 1rem;
  font-weight: bold;
}

.rrss-footer a i {
  font-size: 1.3rem;
}

/*  HOME PAGE  */

/* Video Background */ 

#encabezado {
  height: 100vh;
}

.video-background {
  background: #000;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
}
.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 576px) {
  #encabezado, .video-background, .video-foreground {
    height: 40vh;
  }
}

/*  IMAGEN BACKGROUND  */

.img-background {
  position: fixed;
  width: 100%;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -99;
}

.img-foreground,
.img-background iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.img-background .overlay {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	height: 100vh;
  width: 100%;
	z-index: 9;
	background-color: rgba(125,125,125,0.4);
}

.title-homepage {
	position: fixed;
	top: 40vh;
  right: 5%;
  color: #fff;
  z-index: -10;
}

.titulo2 {
  background-color: rgba(61,92,87,0.9);
}

.title-homepage h3 {
  font-size: 2.5rem;
  color: #3D5C57;
  font-weight: bolder;
  -webkit-text-stroke: 2px #3D5C57;
}
.title-homepage h5, .title-homepage .typed {
  font-size: 1.6rem;
}

.title-servicios {
  position: fixed;
  top: 25vh;
  left: 10%;
  width: 80%;
  text-align: center;
  color: #fff;
  z-index: -10;
}

.title-servicios .typed {
    font-size: 1.5rem;
  }

@media (max-width: 768px) {
  .title-homepage h3 {
    font-size: 1.3rem;
  }
  .title-homepage h5, .title-homepage .typed, .typed-cursor {
    font-size: 1rem;
  }

  .title-servicios .typed, .typed-cursor {
    font-size: 1.3rem;
  }
}  

@media (max-width: 576px) {
  .img-foreground, .img-background, .img-background .overlay {
    height: 40vh;
  }
  .title-homepage {
    top: 15vh;
  }
  .title-servicios {
    width: 70% !important;
    top: 12vh;
    left: 15%;
  }
  .title-homepage h3 {
    font-size: 0.8rem;
    -webkit-text-stroke: 0px #fff;
  }
  .title-homepage h5, .title-homepage .typed, .typed-cursor {
    font-size: 0.5rem;
  }

  .title-servicios .typed, .typed-cursor {
    font-size: 0.7rem;
  }

  .title-servicios {
    left: 25%;
    width: 50% !important;
  }

  .divtyped {
    line-height: 1 !important;
    margin-top: -5px;
  }
}

.typed {
  color: #fff;
  font-weight: bold;
}

.title-novedad h4 {
	color: #3D5C57;
}

/*   ARROW ANIMATION   */

.arrow {
 display: flex;
 justify-content: center;
 align-items: flex-end;
 width: 100%;
 height: 85vh;
}

.chevron {
  position: absolute;
  width: 2em;
  height: 0.5em;
  margin-bottom: 2px;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
 content: '';
 position: absolute;
 top: 0;
 height: 100%;
 width: 50%;
 background: #fff;
}

.chevron:before {
 left: 0;
 transform: skewY(30deg);
}

.chevron:after {
 right: 0;
 width: 50%;
 transform: skewY(-30deg);
}

@keyframes move-chevron {
 25% {
  opacity: 1;
    }
 33.3% {
  opacity: 1;
  transform: translateY(2em);
 }
 66.6% {
  opacity: 1;
  transform: translateY(3em);
 }
 100% {
  opacity: 0;
  transform: translateY(4em) scale(0.5);
 }
}

@media (max-width: 576px) {
  .arrow {
    height: 30vh;
  }
  .chevron {
    width: 1em;
    height: 0.3em;
    margin-bottom: 0.5px;
  }
}

/*  END ANIMATION ARROW  */

.separador {
	height: 30px;
}

.linea-separador{
	margin: 20px auto;
  width: 50px;
	border-bottom: 5px solid #3D5C57;
}

.presentation {
	color: #fff;
	background-color: #3D5C57;	
}

.presentation h3 {
	line-height: 2;
}

@media (max-width: 576px) {
  .presentation h3, .presentation2 h5 {
    font-size: 1rem;
  }
}

/* OBRAS HOMEPAGE */

.divbg {
	height: 250px;
	width: 100%;
}

.logo-serv {
  width: 150px;
  height: 150px;
  -webkit-transition: background-image 0.6s ease-in-out;
  transition: background-image 0.6s ease-in-out;
}

@media (max-width: 768px) {
  .logo-serv {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .logo-serv {
    width: 150px;
    height: 150px;
  }
}

.obras h5 {
	color: #3D5C57;
	font-weight: 900;
}

.content {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.content-details {
  position: absolute;
  text-align: center;
  background-color: rgba(61,92,87,0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;/*
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
/*
.content-name {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}*/

.content:hover .content-details{
  /*top: 50%;
  left: 50%;*/
  opacity: 1;
}

.content-details h5, .content-name h5{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contentdiv {
  background-position: center center;
  background-size: cover;
  height: 250px;
  width: 24%;
  display: block;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .content-details h5 {
    font-size: 0.5rem;
  }

  .contentdiv {
    height: 200px;
    width: 30%;
  }
}

@media (max-width: 576px) {
  .contentdiv {
    width: 100%;
  }

  .content-details h5 {
    font-size: 1.2rem;
  }
}

.nestorfazio {
  background-image: url(../images/obras/fazio/fazio1.jpg);
}

.plutos {
  background-image: url(../images/obras/plutos/plutos03.jpg);
}

.jcc {
  background-image: url(../images/obras/jockeyclubcordoba/jockeyclubcordoba02.jpg);
}

.boma {
  background-image: url(../images/obras/boma/boma01.jpg);
}

.ruiz {
  background-image: url(../images/obras/ruiz-cia/ruiz-cia05.png);
}

.aysa {
  background-image: url(../images/obras/aysa/aysa02.jpg);
}

.ortiz {
  background-image: url(../images/obras/ortiz/ortiz20.jpg);
}

.stoller {
  background-image: url(../images/obras/stoller/stoller01.jpg);
}

.luiggi {
  background-image: url(../images/obras/luiggi/luiggi05bis.jpg);
}

.graficalatina {
  background-image: url(../images/obras/graficalatina/graficalatina03.jpg);
}

.ricardopalma {
  background-image: url(../images/obras/ricardopalma/ricardopalma02.jpg);
}

.tejas2 {
  background-image: url(../images/obras/tejas2/tejas201.jpg);
}

.ferniplast {
  background-image: url(../images/obras/ferniplast/ferniplast07.jpg);
}

.cofarsur {
  background-image: url(../images/obras/cofarsur/cofarsur01.jpg);
}

.centrocivico {
  background-image: url(../images/obras/centrocivico/centrocivico02.jpg);
}

.complejohabitacional {
  background-image: url(../images/obras/complejohabitacional/complejohabitacional01.jpg);
}

/*.fadeIn-bottom{
  top: 80%;
}*/

/* FIN OBRAS HOMEPAGE*/

.enlace i {
	color: #21265C;
	font-size: 20px;
}

.enlace a {
	color: #595554;
}

.enlace a:hover {
	color: #21265C;
}

.novedades-title {
	color: #fff;
	padding: 2%;
	background-color: #3D5C57;	
}

.novedad-titulo {
	color: #3D5C57;
	font-weight: 700;
  font-size: 18px;
}

.novedad-texto {
	display: -webkit-box;
	max-width: 100%;
	height: auto;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
  color: #777;
  font-size: 14px;
}

.novedad-linea{
  width: 10%;
  border-bottom: 3px solid #3D5C57;
}

.nosotros-title {
	color: #3D5C57;
	padding: 2%;
	background-color: #eeeeee;
  min-height: 12vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-title p, h4 {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .nosotros-title p {
    font-size: 0.7rem;
    margin-block-end: 0.2em;
  }

  .nosotros-title h4 {
    font-size: 1rem;
  }

  .nosotros-title h5 {
    font-size: 1rem;
  }
}

@media (max-width: 360px){
  .vertodas {
    max-width: 60%;
  }
}


/* ROTATE */

.rotate {
	transform: rotate(180deg);
}

/*  SLIDER BOOTSTRAP  */
/*.carousel-item {
	margin-right: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

    /* show 1 items */
 /*   .carousel-inner .active,
    .carousel-inner .active + .carousel-item  {
        display: block;
    }
    
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item {
        transition: none;
    }
    
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    
    .carousel-inner .active.carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -25%;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* left or forward direction */
 /*   .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .carousel-item-next.carousel-item-left + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    
    /* farthest right hidden item must be abso position for animations */
 /*   .carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* right or prev direction */
   /* .active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .carousel-item-prev.carousel-item-right + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item{
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }

@media (min-width: 768px) {

    /* show 3 items */
   /* .carousel-inner .active,
    .carousel-inner .active + .carousel-item,
    .carousel-inner .active + .carousel-item + .carousel-item,
    .carousel-inner .active + .carousel-item + .carousel-item + .carousel-item  {
        display: block;
    }
    
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item,
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item,
    .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left) + .carousel-item + .carousel-item + .carousel-item {
        transition: none;
    }
    
    .carousel-inner .carousel-item-next,
    .carousel-inner .carousel-item-prev {
      position: relative;
      transform: translate3d(0, 0, 0);
    }
    
    .carousel-inner .active.carousel-item + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: absolute;
        top: 0;
        right: -25%;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* left or forward direction */
   /* .active.carousel-item-left + .carousel-item-next.carousel-item-left,
    .carousel-item-next.carousel-item-left + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item,
    .carousel-item-next.carousel-item-left + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    
    /* farthest right hidden item must be abso position for animations */
    /*.carousel-inner .carousel-item-prev.carousel-item-right {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        display: block;
        visibility: visible;
    }
    
    /* right or prev direction */
    /*.active.carousel-item-right + .carousel-item-prev.carousel-item-right,
    .carousel-item-prev.carousel-item-right + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item,
    .carousel-item-prev.carousel-item-right + .carousel-item + .carousel-item + .carousel-item + .carousel-item {
        position: relative;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        display: block;
        visibility: visible;
    }

}

/* END SLIDER  */

.rrss i:hover{
	color: #21265C !important;
}

.rrss i {
	font-size: 30px;
  color: #3D5C57;
}

@media (max-width: 768px) {
  .rrss i {
    font-size: 25px;
  }
}

/* MAP */

#map {
  height: 400px;
  width: 100%;
  /*background-color: grey;*/
}

.listaobras a {
	color: #3D5C57;
}

.listaobras a:hover {
	color: #595554;
}

.boxnovedades {
	background-color: #ddd;
	border-radius: 20px;
}

.boxnovedades i {
  font-size: 30px;
  padding: 15px;
}

/*.boxnovedades:hover {
	background-color: #ccc;
}*/

.page-link-ferra {
	padding: 10px;
	color: #3D5C57;
}

.page-link-ferra:hover{
	color: #21265C;
}

.page-link-ferra.active {
	font-weight: bolder;
}

.contact a {
  color: #3D5C57;
  font-size: 1.5rem;
}

.contact i {
	padding: 20px;
	border: 1px solid #3D5C57;
	border-radius: 50%;
  color: #3D5C57;
}

.contact a:hover {
  color: #21265C;
}

.contact a:hover i {
  color: #21265C;
  border: 2px solid #21265C;
}

.form-group button {
  background-color: #3D5C57;
}

.form-group button:hover {
  background-color: #21265C;
}

.div-contact-form {
	border: 1px solid #3D5C57;
	border-radius: 10px;
}

.datosobra a {	
	color: #3D5C57;
}

.datosobra .indicate::before{
  border-color: #3D5C57 !important; 
}

.datosobra a:hover{
  color: #21265C;
}

.datosobra a:hover > div > span::before{
  border-color: #21265C !important;
}

.datosobra p {
	margin: 0;
}


/* Carousel obras */

.carousel-obras {
	height: 240px;
}

.detalle {
  font-weight: bold;
}

@media (min-width: 576px) {
  .carousel-obras {
    height: 432px;
  }
}

@media (min-width: 768px) {
  .carousel-obras {
    height: 576px;
  }
}

@media (min-width: 992px) {
  .carousel-obras {
    height: 744px;
  }
}

@media (min-width: 1200px) {
  .carousel-obras {
    height: 900px;
  }
}

/* Galería de Imágenes */

.gallery {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-width: 33%;
  -moz-column-width: 33%;
  column-width: 33%; 
}
.gallery .pics {
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease; 
}
.gallery .animation {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); 
}

@media (max-width: 450px) {
  .gallery {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-width: 100%;
    -moz-column-width: 100%;
    column-width: 100%;
  }
}

/*.thumb {
	margin-bottom: 15px;
}
.thumb:last-child {
	margin-bottom: 0;
}*/

.thumb 
figure img {
  -webkit-filter: grayscale(75%);
  filter: grayscale(75%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.thumb 
figure:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

@media (max-width: 576px) {
  .thumb figure img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    padding: -10px;
  }
}

.popup.right {
  right: 0;
  font-size: 30px !important;
}

.popup.left {
  left: 0;
  font-size: 30px !important;
}

i.indicate {
  pointer-events: none;
}

.valores {
  width: 35%;
}

@media (max-width: 576px) {
  .valores {
    width: 70%;
  }
}

@media (max-width: 576px) {
  .linegreen {
    border-bottom: 3px solid #3D5C57;
  }
}

.institucional a{
  border-bottom: 1px solid #3D5C57; 
  color: #3D5C57;
}

.institucional a:hover {
  color: #21265C !important;
  border-bottom: 1px solid #21265C !important;
}

.fondoinicio {
  background-image: url(../images/nosotros/portada-inicio.jpg);
  background-position: top left;
  background-size: cover;
}

.fondonosotros {
  background-image: url(../images/nosotros/portada-nosotros.jpg);
  background-position: top left;
  background-size: cover;
}

.fondoservicios {
  background-image: url(../images/servicios/portada-servicios.jpg);
  background-position: top center;
  background-size: cover;
}

.fondoobras {
  background-image: url(../images/obras/portada-obras.jpg);
  background-position: top left;
  background-size: cover;
}

.fondonovedades {
  background-image: url(../images/novedades/portada-novedades.png);
  background-position: center center;
  background-size: cover;
  background-color: #3D5C57; 
}

.listaobras a{
  color: #595554;
}

.listaobras a:hover{
  color: #21265C;
}

/* DROPDOWN OBRAS */

.dropobras {
    position: relative;
  }

.dropobras ul {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-type: none;
  display: block;
}

.dropobras .primer {
  border-radius: 0;
}

.dropobras .submenu {  
  background-color: #eeeeee;
  display: none;
  padding: 15px 0;
}

.dropobras .visible {
  display: block;
}

/* FIN DROPDOWN OBRAS*/

/* arrows indicate */

.indicright {  
  animation: move-indicateright 1.5s ease-in infinite;
}

.indicleft {  
  animation: move-indicateleft 1.5s ease-in infinite;
}

.indicate::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  border-color: #21265C;
  content: '';
  display: inline-block;
  height: 0.7em;
  left: 0.15em;
  position: relative;
  transform: rotate(-45deg);
  vertical-align: center;
  width: 0.7em;
}

.indicate.right:before {
  left: 0;
  transform: rotate(45deg);  
  margin-right: -0.3em;
}

.indicate.left:before {
  left: 0.25em;
  transform: rotate(-135deg);  
  margin-left: -0.3em;
}

@keyframes move-indicateright {
 0% {  
  transform: translateX(-0.5em);
}
 50% {
  transform: translateX(0.2em);
 }
 100% {
  transform: translateX(-0.5em);
 }
}

@keyframes move-indicateleft {
 0% {  
  transform: translateX(0.5em);
}
 50% {
  transform: translateX(-.02em);
 }
 100% {
  transform: translateX(0.5em);
 }
}

.industrial {
  height: 150px;
  background-image: url(../images/servicios/industrial2.png);
  background-position: center center;
  background-size: cover;
}

/*.industrial:hover {
  background-image: url(../images/servicios/industrial2.png);
}*/

.comercial {
  height: 150px;
  background-image: url(../images/servicios/comercial2.png);
  background-position: center center;
  background-size: cover;
}

/*.comercial:hover {
  background-image: url(../images/servicios/comercial2.png);
}*/

.oficinas-administrativas {
  height: 150px;
  background-image: url(../images/servicios/oficinas-administrativas2.png);
  background-position: center center;
  background-size: cover;
}

/*.oficinas-administrativas:hover {
  background-image: url(../images/servicios/oficinas-administrativas2.png);
}*/

.sedes-educativas {
  height: 150px;
  background-image: url(../images/servicios/sedes-educativas2.png);
  background-position: center center;
  background-size: cover;
}

/*.sedes-educativas:hover {
  background-image: url(../images/servicios/sedes-educativas2.png);
}*/

.obras-residenciales {
  height: 150px;
  background-image: url(../images/servicios/obras-residenciales2.png);
  background-position: center center;
  background-size: cover;
}

/*.obras-residenciales:hover {
  background-image: url(../images/servicios/obras-residenciales2.png);
}*/

.desarrollos-inmobiliarios {
  height: 150px;
  background-image: url(../images/servicios/desarrollos-inmobiliarios2.png);
  background-position: center center;
  background-size: cover;
}

/*.desarrollos-inmobiliarios:hover {
  background-image: url(../images/servicios/desarrollos-inmobiliarios2.png);
}*/

.mov-de-suelos {
  height: 150px;
  background-image: url(../images/servicios/mov-de-suelos2.png);
  background-position: center center;
  background-size: cover;
}

/*.mov-de-suelos:hover {
  background-image: url(../images/servicios/mov-de-suelos2.png);
}*/

.fundaciones-especiales {
  height: 150px;
  background-image: url(../images/servicios/fundaciones-especiales2.png);
  background-position: center center;
  background-size: cover;
}

/*.fundaciones-especiales:hover {
  background-image: url(../images/servicios/fundaciones-especiales2.png);
}*/

.pisos-industriales {
  height: 150px;
  background-image: url(../images/servicios/pisos-industriales2.png);
  background-position: center center;
  background-size: cover;
}

/*.pisos-industriales:hover {
  background-image: url(../images/servicios/pisos-industriales2.png);
}*/

.estructuras-de-hormigon {
  height: 150px;
  background-image: url(../images/servicios/estructuras-de-hormigon2.png);
  background-position: center center;
  background-size: cover;
}

/*.estructuras-de-hormigon:hover {
  background-image: url(../images/servicios/estructuras-de-hormigon2.png);
}*/

.estructuras-metalicas {
  height: 150px;
  background-image: url(../images/servicios/estructuras-metalicas2.png);
  background-position: center center;
  background-size: cover;
}

/*.estructuras-metalicas:hover {
  background-image: url(../images/servicios/estructuras-metalicas2.png);
}*/

.mantenimiento {
  height: 150px;
  background-image: url(../images/servicios/mantenimiento2.png);
  background-position: center center;
  background-size: cover;
}

/*.mantenimiento:hover {
  background-image: url(../images/servicios/mantenimiento2.png);
}*/

#carouselNovedades .carousel-indicators {
  bottom: -15px;
}

#carouselNovedades .carousel-indicators li {
  background-color: #3D5C57;
}

/* ZOOM PLANOS */

.wrapper{
  width: 100%;
  overflow:hidden;
  padding:3%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.wrapper img {
  width: 100%;
  padding: 20px;
}

/*.mfp-img {
  background-color: #fff;
}

.mfp-close {
  color: #3D5C57;
}*/

.image-zoom-available{
  cursor: zoom-in;
}
.image-zoom-available.is-active{
  cursor: none;
}

