@charset "UTF-8";
/*
Theme Name:Edilizia-theme
Author: Diego Barberis
Descripcion: Tema para web edilizia
Version: 1.0
Text Domain: EdiliziaWeb 2.0

*/
:root {
  --primario: #00548B;
  --secundario: #004168;
  --terciario: #005C99;
  --gris_primario: #bdbbbb;
  --gris_secundario: #c9c7c7;
  --gris_terciario: #a3a2a2;
  --light: #e9e9ec;
}

/*-----------------------------
    0-GENERALES
----------------------------*/
@font-face {
  font-family: Nunito Sans;
  src: url(webfonts/NunitoSans-Regular.ttf);
}
@font-face {
  font-family: Nunito Sans light;
  src: url(webfonts/NunitoSans-ExtraLight.ttf);
}
@font-face {
  font-family: Neurial bold;
  src: url(webfonts/NEURIALGROTESK-BOLD.OTF);
}
@font-face {
  font-family: Neurial light;
  src: url(webfonts/NEURIALGROTESK-LIGHT.OTF);
}
@font-face {
  font-family: Neurial medium;
  src: url(webfonts/NEURIALGROTESK-MEDIUM.OTF);
}
@font-face {
  font-family: Neurial;
  src: url(webfonts/NEURIALGROTESK-REGULAR.OTF);
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v52/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format("woff2");
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

body {
  color: var(--secundario);
  background-color: white;
  font-family: Neurial;
}

.bg-primary {
  background-color: #00548B !important;
}

.btn-primary {
  background-color: #00548B !important;
}

.bg-secondary {
  background-color: #bdbbbb !important;
}

.btn-secondary {
  background-color: #bdbbbb !important;
}

.bg-gray-third {
  background-color: #a3a2a2;
}

.imagenes-redondeadas {
  border-radius: 50%;
}

.cuadros-redondeados {
  border-radius: 25px;
}

@media (min-width: 768px) {
  .font-size {
    font-size: smaller;
  }
}
h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
  font-weight: bold;
}

.button-click {
  border-radius: 50px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.button-click:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

 /*-----------------------------
    0.1 -PRELOADER
----------------------------*/
/*Estilos pagina de carga*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: 10503;
}

.preloader::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primario);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.preloader.complete::after {
  top: -100%;
}

/*Estilos de icono de carga inicial*/
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid white;
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
  z-index: 10504;
}

.loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  -webkit-animation: animateBg 2s linear infinite;
  animation: animateBg 2s linear infinite;
}

.preloader.complete {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  70% {
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }
  70% {
    -webkit-transform: translate(-50%, -50%) rotate(270deg);
    transform: translate(-50%, -50%) rotate(270deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes animateBg {
  0% {
    height: 0;
  }
  25% {
    height: 25%;
  }
  50% {
    height: 50%;
  }
  75% {
    height: 75%;
  }
  100% {
    height: 100%;
  }
}
@keyframes animateBg {
  0% {
    height: 0;
  }
  25% {
    height: 25%;
  }
  50% {
    height: 50%;
  }
  75% {
    height: 75%;
  }
  100% {
    height: 100%;
  }
}
/*-----------------------------
    1-HEADER y FOOTER
----------------------------*/
/*
Estilos generales del menu
*/
/*posiciona la barra de navegacion al frente de todo*/
#barra-navegacion {
  z-index: 5500;
}

/*Tamaño inicial de la barra de navegacion y transicion de vuelta*/
.barra-inicial {
  padding-top: 0rem;
  padding-bottom: 0rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 100% !important;
}

#menu-nav {
  background-color: var(--primario);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-bottom: 1px solid white;
  padding-top: 20px;
  padding-bottom: 20px;
}

.barra-fija #menu-nav {
  padding-top: 0px;
  padding-bottom: 0px;
}

.mobile .barra-fija #menu-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*tamaño de logo princial ida y vuelta (el webkit es para navegadores viejos o moviles)*/
.webkit .logo-inicial {
  width: 89px;
  height: 18px;
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.edge .logo-inicial {
  width: 89px;
  height: 18px;
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.firefox .logo-inicial {
  width: 89px;
  height: 18px;
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 400px) {
  .webkit .logo-inicial {
    width: 114px;
    height: 23px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 992px) {
  .webkit .logo-inicial {
    width: 169px;
    height: 32px;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
/*
Estilos del menu pantalla grande
*/
/*Estilos a los items del menu*/
.navbar-nav .nav-link {
  font-size: 12px;
  font-weight: 100;
  color: white !important;
  padding: 0.5rem 0.5rem 0.5em 0.5rem;
  margin-right: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*tamaño del link al posicionarse arriba*/
.navbar-nav .nav-link:hover {
  font-family: Neurial bold;
  background-color: var(--secundario);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1300px) {
  .navbar-nav .nav-link {
    font-size: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/*
Estilos de menu de la pantalla movil
*/
/*quitamos estilos al boton por defecto*/
#menu-nav .navbar-toggler {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: 0;
}

#menu-nav .boton-menu::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: white;
  font-size: 1.5rem;
  content: "\f0c9";
}

/*boton cerrar del menu*/
#menu-nav .icono-cerrar::before {
  content: "\f057";
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

/*Estilos para flechita menu movil*/
.navbar-dark .navbar-nav .nav-link:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f138';
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 992px) {
  .navbar-dark .navbar-nav .nav-link:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '';
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}
.navbar-dark .navbar-nav .nav-link:hover:after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

/*Iconos redes sociales*/
.linkedin {
  display: block;
  height: 25px;
  color: white;
  cursor: pointer;
}

.linkedin-simple {
  display: none;
  height: 25px;
  color: white;
  cursor: pointer;
}

.redes-sociales li.linkedin-li {
  padding: 5px;
}

.redes-sociales li.linkedin-li:hover .linkedin {
  display: none;
  color: white;
}
.redes-sociales li.linkedin-li:hover .linkedin-simple {
  display: block;
  color: white;
}

.instagram {
  display: block;
  height: 25px;
  color: white;
  cursor: pointer;
}

.instagram-simple {
  display: none;
  height: 25px;
  color: white;
  cursor: pointer;
}

.redes-sociales li.instagram-li {
  padding: 5px;
}

.redes-sociales li.instagram-li:hover .instagram {
  display: none;
  color: white;
}
.redes-sociales li.instagram-li:hover .instagram-simple {
  display: block;
  color: white;
}

.facebook {
  display: block;
  height: 25px;
  color: white;
  cursor: pointer;
}

.facebook-simple {
  display: none;
  height: 25px;
  color: white;
  cursor: pointer;
}

.redes-sociales li.facebook-li {
  padding: 5px;
}

.redes-sociales li.facebook-li:hover {
  color: white;
}
.redes-sociales li.facebook-li:hover .facebook {
  display: none;
  color: white;
}
.redes-sociales li.facebook-li:hover .facebook-simple {
  display: block;
  color: white;
}

.redes-sociales li a i {
  color: white;
  font-size: 20px;
  padding: 6px;
  margin-right: 2px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (min-width: 400px) {
  .redes-sociales li a i {
    font-size: 20px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
}
@media (min-width: 992px) {
  .redes-sociales li a i {
    font-size: 25px;
    margin-top: 6px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    cursor: pointer;
  }
}
.redes-sociales li a i:hover {
  background-color: white;
  color: var(--primario);
  border-radius: 50px;
}

/**
FOOTER
*/
/* Estilos del menu footer*/
#footer {
  background-color: var(--primario);
}

.logo-footer {
  width: 240px;
  height: auto;
}

@media (min-width: 992px) {
  .logo-footer {
    width: 240px;
    height: auto;
  }
}
.footer .copyright {
  font-family: Neurial light;
}

.footer .nav-link {
  color: white;
  font-family: Neurial light;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 15px;
}

@media (min-width: 992px) {
  .footer .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .nav-link:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 992px) {
  .footer-mapa-sitio {
    margin-left: 20px;
  }
}
.footer .logo-iso,
.footer .logo-iram {
  height: 160px;
  width: auto;
}

/*pagina activa en footer*/
.current_page_item {
  color: white !important;
  text-decoration: underline;
  font-weight: bold;
}

/*-----------------------------
    2-HOMEPAGE
----------------------------*/
/*
 Publicidad
*/
.container-publicidad {
  position: fixed;
  background-color: var(--primario);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 1501;
}

.cartel-flotante {
  color: white;
  position: fixed;
  background-size: cover;
  background-position: left center;
  top: 50%;
  left: 50%;
  width: 78%;
  height: auto;
  z-index: 1502;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#publi1 .fas.fa-times-circle {
  cursor: pointer;
}

.publicidad-titulo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
}

.publicidad-titulo2 {
  font-family: Nunito Sans light;
  font-style: italic;
  font-size: 15px;
}

@media (min-width: 992px) {
  .publicidad-linea {
    border-right: 3px solid white;
  }
}
.publicidad-link {
  color: white;
  text-decoration: underline;
  font-weight: 0;
  font-size: 11px;
}

.publicidad-link:hover {
  color: white;
}

.publicidad-texto {
  font-size: 12px;
  font-style: italic;
  text-align: justify;
}

#publi1 .form-control {
  border: none;
  border-radius: 0px;
  font-size: 0.8rem;
}

.btn-publicidad {
  border-radius: 15px;
  border: none;
  font-size: 0.8rem;
}

@media (min-width: 992px) {
  .cartel-flotante {
    width: 70%;
    height: 500px;
  }

  .publicidad-titulo {
    font-size: 20px;
  }
}
.mensaje-publicidad-exitosa {
  position: fixed;
  top: 100px;
  left: 50%;
  z-index: 1497;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*
estilos de generales de SLIDER
*/
#slider .swiper-slide {
  height: 400px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center center;
}

@media (min-width: 800px) {
  #slider .swiper-slide {
    height: 700px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center center;
  }
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 25%;
  width: 50%;
}

/*
estilos de videos de SLIDER
*/
.slider-video {
  position: relative;
  left: -11%;
  height: 100%;
  width: 153%;
  margin-top: 18px;
  padding-right: 0px;
  padding-left: 0px;
}

@media (min-width: 600px) {
  .slider-video {
    position: relative;
    left: -15%;
    height: 100%;
    width: 170%;
    margin-top: 27px;
  }
}
@media (min-width: 900px) {
  .slider-video {
    height: 200%;
    left: -7%;
    width: 126%;
    margin-top: -511px;
  }
}
@media (min-width: 1000px) {
  .slider-video {
    height: 125%;
    left: -4%;
    width: 120%;
    margin-top: -83px;
  }
}
/*
estilos de botones de SLIDER
*/
/*estilos para efecto de transicion parallax*/
#slider.swiper-container {
  background-position: center;
  /* Center the image */
  background-repeat: no-repeat;
  /* Do not repeat the image */
  background-size: cover;
  /* Resize the background image to cover the entire container */
}

.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.parallax-slider .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.contenedor-slider {
  background-color: var(--primario);
  border: 1px solid white;
  width: 80%;
}

@media (min-width: 992px) {
  .contenedor-slider {
    height: 450px;
    margin-left: 100px;
    margin-right: 100px;
  }
}
.contenedor-slider-img {
  background-position: center;
  background-size: cover;
  height: 229px;
}

@media (min-width: 992px) {
  .contenedor-slider-img {
    margin-top: 0px;
    height: 448px;
  }
}
.contenedor-texto-slider {
  margin-left: 60px;
}

.texto-slider1 {
  font-size: 17px;
  font-weight: 900 !important;
  z-index: 151;
}

.texto-slider2 {
  font-family: Neurial light;
  font-size: 13px;
  z-index: 151;
  width: 350px;
  line-height: 30px;
}

.btn-slider {
  color: white;
  font-size: 12px;
  background-color: var(--secundario);
  width: auto;
  border-radius: 0;
  z-index: 151;
}

.btn-slider:hover {
  color: var(--primario);
  background-color: white;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (min-width: 992px) {
  .contenedor-texto-slider {
    margin-left: 100px;
  }

  .texto-slider1 {
    font-size: 45px;
    font-weight: bolder;
    z-index: 151;
  }

  .texto-slider2 {
    font-size: 20px;
    z-index: 151;
    width: 450px;
    text-align: justify !important;
  }

  .btn-slider {
    font-size: 18px;
  }
}
/*Boton previo*/
.swiper-button-prev {
  background-image: none !important;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline-color: transparent;
}

.swiper-button-prev:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  opacity: 1;
}

.swiper-button-prev::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--gris_terciario);
  font-weight: 900;
  font-size: 2rem;
  content: "\f104";
}

@media (min-width: 992px) {
  .swiper-button-prev::after {
    font-size: 3rem;
  }
}
/*Boton proximo*/
.swiper-button-next {
  background-image: none !important;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline-color: transparent;
}

.swiper-button-next:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  opacity: 1;
}

.swiper-button-next::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--gris_terciario);
  font-weight: 900;
  font-size: 2rem;
  content: "\f105";
}

@media (min-width: 992px) {
  .swiper-button-next::after {
    font-size: 3rem;
  }
}
/*paginacion, bullets*/
.swiper-pagination {
  z-index: 1003;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid var(--primario);
}

/*
Estilos de seccion FRASE
*/
.frases {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
  color: #00548B;
}

/*tamaño de frases en otros contextos*/
@media (min-width: 600px) {
  .frases {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .frases {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .frases {
    font-size: 20px;
  }
}
 /*
 Estilos de PROYECTOS DESTACADOS*
 /

         /*Estilos boton mas del mosaico en pantallas moviles*/
.safari.mobile .boton-mas-movil::before,
.mobile .boton-mas-movil::before {
  position: absolute;
  top: 0;
  left: 6px;
  font-family: 'Font Awesome 5 Free';
  content: '\f0fe';
  font-weight: 900;
  color: white;
  font-size: 25px;
}

.safari.mobile .boton-mas-movil:hover::before,
.mobile .boton-mas-movil:hover::before {
  content: '';
}

/* Estilos Generales de mosaico*/
/*Estilos menu de filtro proyectos*/
#nav-proyectos {
  background-color: var(--secundario);
}

/*quitamos estilos al boton por defecto*/
#nav-proyectos .navbar-toggler {
  font-size: 1.5rem;
  line-height: 1;
  background-color: var(--secundario);
  border: none;
  border-radius: 0;
  outline: 0;
  z-index: 1201;
}

#nav-proyectos .navbar-toggler .filtro-boton-todos {
  color: white;
  font-size: 17px;
  font-weight: 900;
}

#nav-proyectos .filtro-boton-principal::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: white;
  font-size: 1.5rem;
  content: "\f1de";
}

/*boton cerrar del filtro*/
#nav-proyectos .filtro-cerrar::before {
  content: "\f057";
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

#filter {
  border-bottom: 0.5px solid white;
  border-top: 0.5px solid white;
}

#nav-proyectos {
  border-top: 0.5px solid white;
}

.texto-mejores-proyectos {
  /*texto en filtro para pantalla movil*/
  color: white;
  font-family: Nunito Sans light;
  font-size: 20px;
}

.titulo-proyecto-destacados {
  color: white;
  font-size: 35px;
}

.button-ver-todos {
  color: white;
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button-ver-todos:hover {
  font-family: Neurial Bold;
  color: white;
  font-size: 25px;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button-filter {
  color: white;
  font-family: Neurial Light;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.button-filter:hover {
  color: white;
  font-family: Neurial Bold;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*estilos para ocultar y mostrar proyectos al filtrar*/
.gallery {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.block {
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*Estilos titulo y descripcion de mosaicos*/
.webkit .texto-titulo,
.texto-titulo {
  font-size: 25px !important;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 200;
  z-index: 120;
  position: relative;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

.texto-titulo::before {
  font-family: Neurial light;
  color: transparent;
  font-size: 2.2rem;
  content: "\02198";
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

@media (min-width: 700px) {
  .webkit .texto-titulo {
    font-size: 35px !important;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 200;
    z-index: 120;
    position: relative;
  }
}
.webkit .texto-descripcion,
.texto-descripcion {
  font-size: 12px !important;
  font-weight: 300;
  text-align: center;
  z-index: 120;
  position: relative;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

@media (min-width: 700px) {
  .webkit .texto-descripcion {
    font-size: 20px !important;
    text-align: center;
    z-index: 120;
    position: relative;
  }
}
/*Estilos boton para safari*/
.btn-proyecto-display {
  display: none !important;
}

.btn-proyecto {
  color: white;
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  z-index: 500;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

@media (min-width: 992px) {
  .btn-proyecto {
    font-size: 15px;
  }
}
/***********************************
Estilos mosaicos grandes
*************************************/
.mosaicos-proyecto-grande {
  color: transparent;
  height: 400px;
  text-align: center;
  background-size: cover;
  background-position: center center;
  z-index: 99;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mosaicos-proyectos-grande-arriba {
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
}

.mosaicos-proyectos-grande-abajo {
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
}

/*-----
 Estilos del hover para version movil en mosaicos grande (con desliza)
 ------*/
.safari.mobile .mosaicos-proyecto-grande:hover,
.mobile .mosaicos-proyecto-grande:hover,
.mosaicos-proyecto-grande:hover {
  color: white;
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  /*con este anidado sacon el mas del proyecto cuando hace hover*/
}
.safari.mobile .mosaicos-proyecto-grande:hover .btn-proyecto-display,
.mobile .mosaicos-proyecto-grande:hover .btn-proyecto-display,
.mosaicos-proyecto-grande:hover .btn-proyecto-display {
  display: block !important;
}
.safari.mobile .mosaicos-proyecto-grande:hover .btn-proyecto:hover,
.mobile .mosaicos-proyecto-grande:hover .btn-proyecto:hover,
.mosaicos-proyecto-grande:hover .btn-proyecto:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
.safari.mobile .mosaicos-proyecto-grande:hover .texto-titulo::before,
.mobile .mosaicos-proyecto-grande:hover .texto-titulo::before,
.mosaicos-proyecto-grande:hover .texto-titulo::before {
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  color: white;
}

/*Para mostrar fondo azul al hacer hover*/
.mosaicos-proyecto-grande:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0px;
  left: 0px;
  background-color: var(--secundario);
  opacity: 0.5;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.mosaicos-proyecto-grande:hover:after {
  height: 100%;
}

/***********************************
Estilos mosaicos chicos 
*************************************/
.mosaicos-proyecto-chico {
  color: transparent;
  height: 250px;
  text-align: left;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 99;
}

.mosaicos-proyectos-chico-arriba {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}

.mosaicos-proyectos-chico-abajo {
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}

@media (min-width: 670px) {
  .mosaicos-proyecto-chico {
    height: 400px;
  }
}
/*Para color de texto al hacer hover*/
.safari.mobile .mosaicos-proyecto-chico:hover,
.mobile .mosaicos-proyecto-chico:hover,
.mosaicos-proyecto-chico:hover {
  color: white;
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  /*con este anidado sacon el mas del proyecto cuando hace hover*/
}
.safari.mobile .mosaicos-proyecto-chico:hover .btn-proyecto-display,
.mobile .mosaicos-proyecto-chico:hover .btn-proyecto-display,
.mosaicos-proyecto-chico:hover .btn-proyecto-display {
  display: block !important;
}
.safari.mobile .mosaicos-proyecto-chico:hover .btn-proyecto:hover,
.mobile .mosaicos-proyecto-chico:hover .btn-proyecto:hover,
.mosaicos-proyecto-chico:hover .btn-proyecto:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}
.safari.mobile .mosaicos-proyecto-chico:hover .texto-titulo::before,
.mobile .mosaicos-proyecto-chico:hover .texto-titulo::before,
.mosaicos-proyecto-chico:hover .texto-titulo::before {
  -webkit-transition: all 0.8s ease-in;
  transition: all 0.8s ease-in;
  color: white;
}

/*Para mostrar fondo azul al hacer hover*/
.mosaicos-proyecto-chico:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0px;
  left: 0px;
  background-color: var(--secundario);
  opacity: 0.5;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.mosaicos-proyecto-chico:hover:after {
  height: 100%;
}

/*Estilos "MAS PROYECTOS"*/
.mas-proyectos {
  font-size: 16px;
}
.mas-proyectos a {
  text-decoration: none;
  padding-right: 5px;
  color: var(--primario);
}

@media (min-width: 750px) {
  .mas-proyectos {
    font-size: 20px;
  }
}
.fa-chevron-circle-right {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.mas-proyectos:hover .fa-chevron-circle-right {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

 /*
Estilos de CONTADORES
*
*/
/*Estilos generales de titulo de contador*/
#contador {
  background-color: var(--primario);
  padding-top: 0px;
  padding-bottom: 0px;
}

.contadores-datos {
  padding-left: 30px;
  padding-right: 60px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .contadores-datos {
    border-right: none;
    border-left: 1px solid white;
  }
}
.contadores-numeros {
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .contadores-numeros {
    border-top: none;
    border-bottom: 1px solid white;
  }
}
.contadores-titulo {
  color: white;
  font-size: 25px;
}

@media (min-width: 992px) {
  .contadores-titulo {
    font-size: 35px;
    font-weight: 600;
  }
}
.contadores-texto {
  color: white;
  font-family: Neurial light;
  font-size: 15px;
}

@media (min-width: 992px) {
  .contadores-texto {
    font-size: 20px;
    font-weight: 100 !important;
  }
}
.numero-contador {
  font-family: Neurial light;
  color: white;
  font-size: 30px;
}

.texto-contador1 {
  font-family: Neurial light;
  color: white;
  font-size: 15px;
}

@media (min-width: 992px) {
  .numero-contador {
    font-size: 50px;
  }

  .texto-contador {
    font-size: 25px;
  }
}
.contadores-btn {
  color: white;
  font-size: 20px;
  background-color: var(--secundario);
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: 150px;
}

.contadores-btn:hover {
  color: var(--primario);
  background-color: white;
  text-decoration: none;
}

.imagen-contador-tamaño {
  color: white;
  height: 64px;
  width: 64px;
}

.imagen-contador-tamaño .fas {
  font-size: 64px !important;
}

.imagen-contador-tamaño .material-icons {
  font-size: 66px !important;
  margin-left: 10px;
}

.imagen-contador {
  position: relative;
  height: 120px;
  width: 120px;
  background-color: var(--secundario);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.num-contador1 {
  font-family: Neurial;
  padding-top: 25px;
  color: var(--primario);
  font-weight: bold;
  font-size: 25px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

.num-contador {
  font-family: Neurial;
  padding-top: 25px;
  color: var(--primario);
  font-weight: bold;
  font-size: 27px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

@media (min-width: 360px) {
  .num-contador {
    font-size: 40px;
  }

  .num-contador1 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .num-contador {
    font-size: 50px;
  }

  .num-contador1 {
    font-size: 50px;
  }
}
.texto-contador {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 15px;
  text-align: center;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

@media (min-width: 992px) {
  .texto-contador {
    font-size: 17px;
  }
}
/*Estilos linea debajo del numero*/
.linea-contador {
  background-color: var(--secundario);
  height: 2px;
  width: 20%;
  position: absolute;
  bottom: 55px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 360px) {
  .linea-contador {
    bottom: 60px;
  }
}
/*Estilos del bloque completo del contador al hacer hover*/
.bloque-contador:hover .linea-contador {
  bottom: 65px;
}
@media (min-width: 366px) {
  .bloque-contador:hover .linea-contador {
    bottom: 70px;
  }
}
@media (min-width: 800px) {
  .bloque-contador:hover .linea-contador {
    bottom: 75px;
  }
}
.bloque-contador:hover .imagen-contador {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/*
Estilos de NOSOTROS/STAFF
*
*/
/*tamaño de foto (efecto parallax)*/
.jarallax {
  height: 550px;
  width: 100%;
  background-size: cover;
  background-position-y: center;
  background-position-x: 43%;
  display: table;
  background-attachment: fixed;
  z-index: 0;
}

@media (min-width: 992px) {
  .jarallax {
    height: 650px;
  }
}
.jarallax-img {
  background-position: center center;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*Estilos "Boton conocenos"*/
.staff-button {
  position: absolute;
  color: white;
  font-family: Nunito Sans light;
  font-size: 20px;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 25px;
  bottom: 70%;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.staff-button:hover {
  color: black;
  background-color: white;
  text-decoration: none;
}

.mobile .staff-button,
.android .staff-button,
.iphone .staff-button,
.ipad .staff-button,
.ipod .staff-button,
.webos .staff-button {
  bottom: 70%;
}

                /*
Estilos seccion TESTIMONIOS
*/
/*Estilos genreales de testimonios*/
#testimonios.swiper-container {
  background-color: white !important;
}

.titulo-testimonios {
  font-family: Neurial light;
  color: white;
  font-size: 25px;
  background-color: var(--secundario);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media (min-width: 992px) {
  .titulo-testimonios {
    font-size: 30px;
  }
}
.contenedor-testimonio {
  position: relative;
  height: 185px;
  width: 230px;
  border: 2px solid var(--primario);
  background-color: white;
}

@media (min-width: 370px) {
  .contenedor-testimonio {
    width: 300px;
  }
}
@media (min-width: 600px) {
  .contenedor-testimonio {
    width: 340px;
    height: 190px;
  }
}
.cabecera-testimonios {
  height: 52px;
  border-bottom: 2px solid var(--secundario);
}

@media (min-width: 600px) {
  .cabecera-testimonios {
    height: 62px;
  }
}
@media (min-width: 992px) {
  .cabecera-testimonios {
    height: 67px;
  }
}
/*estilos imagen de testimonios*/
.imagen-testimonios {
  position: absolute;
  left: -14px;
  top: -16px;
  height: 50px;
  width: 50px;
  border-right: 2px solid var(--secundario);
  -webkit-transform: translateY(16px) translateX(12px);
          transform: translateY(16px) translateX(12px);
}

@media (min-width: 370px) {
  .imagen-testimonios {
    -webkit-transform: translateY(16px) translateX(14px);
            transform: translateY(16px) translateX(14px);
  }
}
@media (min-width: 600px) {
  .imagen-testimonios {
    left: -14px;
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 992px) {
  .imagen-testimonios {
    height: 65px;
    width: 65px;
    -webkit-transform: translateY(16px) translateX(12px);
            transform: translateY(16px) translateX(12px);
  }
}
/*estilos nombre y cargo de testimonios*/
.nombre-testimonios {
  font-family: Neurial medium;
  font-size: 14px;
  color: var(--primario);
  text-align: left;
}

@media (min-width: 600px) {
  .nombre-testimonios {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .nombre-testimonios {
    font-size: 18px;
  }
}
.cargo-testimonios {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 9px;
  text-align: left;
}

.cargo-testimonios p {
  margin-bottom: 0px !important;
}

@media (min-width: 600px) {
  .cargo-testimonios {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .cargo-testimonios {
    font-size: 11px;
  }
}
/*estilos cita de testimonios*/
.cita-testimonios {
  font-family: Neurial medium;
  color: var(--primario);
  font-size: 11px;
  text-align: left;
}

@media (min-width: 600px) {
  .cita-testimonios {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .cita-testimonios {
    font-size: 12px;
  }
}
.testimonios-botones {
  position: absolute;
  color: var(--primario);
  font-size: 18px;
  bottom: 0;
  right: 10px;
}

.testimonios-linkedin {
  position: absolute;
  color: var(--primario);
  bottom: 5px;
  right: 10px;
  display: block;
  height: 20px;
  cursor: pointer;
}

@media (min-width: 600px) {
  .testimonios-linkedin {
    bottom: 5px;
  }
}
.testimonios-youtube {
  position: absolute;
  color: var(--primario);
  bottom: 4px;
  right: 50px;
  display: block;
  height: 22px;
  cursor: pointer;
}

@media (min-width: 600px) {
  .testimonios-youtube {
    bottom: 4px;
  }
}
/*estilos para slider de testimonios*/
#testimonios .swiper-slide {
  height: 300px;
  text-align: center;
  display: -webkit-box;
}

@media (min-width: 768px) {
  #testimonios .swiper-slide {
    height: 350px;
  }
}
/*Boton previo testimonios*/
.swiper-button-prev-testimonios {
  background-image: none !important;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline-color: transparent;
}

.swiper-button-prev-testimonios:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  opacity: 1;
}

.swiper-button-prev-testimonios::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--gris_terciario);
  font-weight: 900;
  font-size: 2rem;
  content: "\f104";
}

@media (min-width: 992px) {
  .swiper-button-prev-testimonios::after {
    font-size: 3rem;
  }
}
/*Boton proximo testimonios*/
.swiper-button-next-testimonios {
  background-image: none !important;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  outline-color: transparent;
}

.swiper-button-next-testimonios:hover {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  opacity: 1;
}

.swiper-button-next-testimonios::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--gris_terciario);
  font-weight: 900;
  font-size: 2rem;
  content: "\f105";
}

@media (min-width: 992px) {
  .swiper-button-next-testimonios::after {
    font-size: 3rem;
  }
}
.btn-prensa {
  color: white;
  background-color: var(--primario);
  border-radius: 50px;
  width: auto;
  z-index: 151;
}

.btn-prensa:hover {
  color: var(--primario);
  background-color: white;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border: 2px solid var(--primario);
}

.imagen-clientes-alto-fila {
  height: 150px;
}

/*
Estilos de Clientes
*
*/
#clientes {
  background-color: #f1efef;
  padding-top: 90px;
  padding-bottom: 90px;
}

.titulo-clientes {
  font-family: Neurial light;
  color: white;
  font-size: 25px;
  background-color: var(--secundario);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

@media (min-width: 992px) {
  .titulo-clientes {
    font-size: 30px;
  }
}
.imagen-clientes {
  width: 150px;
  height: auto;
  -webkit-filter: grayscale(1) contrast(0.5);
          filter: grayscale(1) contrast(0.5);
  opacity: 0.4;
  -webkit-transition: all .8 ease-in-out;
  transition: all .8 ease-in-out;
}

#clientes .swiper-button-next {
  padding-right: 10px;
}

#clientes .swiper-button-prev {
  padding-left: 10px;
}

#clientes .swiper-button-next::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--secundario);
  font-weight: 800;
  font-size: 1.7rem;
  content: "\f061";
}

#clientes .swiper-button-prev::after {
  font-family: 'Font Awesome 5 Free';
  color: var(--secundario);
  font-weight: 800;
  font-size: 1.7rem;
  content: "\f061";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 700px) {
  .imagen-clientes {
    width: 140px;
  }

  #clientes .swiper-button-next {
    padding-right: 50px;
  }

  #clientes .swiper-button-prev {
    padding-left: 50px;
  }
}
@media (min-width: 992px) {
  .imagen-clientes {
    width: 120px;
  }

  #clientes .swiper-button-next {
    padding-right: 30px;
  }

  #clientes .swiper-button-prev {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .imagen-clientes {
    width: 120px;
  }

  #clientes .swiper-button-next {
    padding-right: 80px;
  }

  #clientes .swiper-button-prev {
    padding-left: 80px;
  }
}
.imagen-clientes:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
  -webkit-transition: all .8 ease-in-out;
  transition: all .8 ease-in-out;
}

            /*
            estilos de COMUNIDAD

            */
/*estilo de texto de comunidad principal*/
#comunidad {
  background-color: var(--primario);
}

.contenedor-comunidad {
  height: 251px !important;
  margin-top: 80px;
}

.contenedor-titulo-general {
  padding-top: 60px;
}

.titulo-general-comunidad {
  font-family: Neurial light;
  font-size: 35px;
  color: white;
}

.titulo-comunidad {
  font-family: Neurial light;
  font-size: 25px;
  color: white;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
}

.imagen-comunidad {
  background-size: cover;
  height: 250px;
  border: 1px solid white;
  background-position: center;
}

.imagen-comunidad-cover:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 1px;
  left: 0px;
  background-color: var(--secundario);
  opacity: 0.8;
  cursor: pointer;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 3500;
}

.webkit .comunidad-texto,
.comunidad-texto {
  display: none;
  color: white;
  font-family: Neurial light;
  font-size: 17px !important;
  text-align: center;
  z-index: 10000;
  position: relative;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
}

.btn-comunidad {
  display: none;
  color: white;
  font-family: Neurial bold;
  font-size: 17px !important;
  text-decoration: none;
  z-index: 10000;
  position: relative;
}

.btn-comunidad:hover {
  color: white;
  font-size: 18px !important;
  text-decoration: underline;
}

.contenedor-comunidad:hover .imagen-comunidad-cover:before {
  height: 224px;
}
@media (min-width: 992px) {
  .contenedor-comunidad:hover .imagen-comunidad-cover:before {
    height: 248px;
  }
}
.contenedor-comunidad:hover .webkit .comunidad-texto,
.contenedor-comunidad:hover .comunidad-texto {
  display: block;
}
.contenedor-comunidad:hover .btn-comunidad {
  display: block;
}

/*
Estilos seccion CONTACTO
*/
/*Estilos para ocultar recaptcha google*/
.grecaptcha-badge {
  display: none;
}

#contacto label {
  font-family: Neurial;
}

/*Estilos de los campos del formulario*/
.form-estilos {
  border: none;
  color: var(--primario);
}

/*saco el borde de los campos cuando se hacen click en uno de ellos, tanto cuando es valido como cuando no*/
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.is-invalid:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.is-valid:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-select.is-valid:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-select.is-invalid:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*Estilos del texto carga tu CV*/
/*Estilos del texto de inicio del formulario*/
#sumateEdilizia {
  background-color: var(--primario);
}

.sumateEdilizia-Contenedor {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-size: cover;
}

.sumateEdilizia-Contenedor::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 500px;
  top: auto;
  left: 0px;
  background-color: var(--secundario);
  opacity: 0.65;
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 1500;
}

.contacto-texto-inicial-CV {
  font-family: Neurial;
  font-size: 25px;
  color: white;
  position: relative;
  z-index: 1501;
}

@media (min-width: 920px) {
  .contacto-texto-inicial-CV {
    font-size: 45px;
  }
}
.btn-CV {
  position: relative;
  font-family: Neurial bold;
  color: white !important;
  background-color: white;
  border: none;
  border-radius: 0px;
  width: 200px;
  padding: 15px;
  z-index: 1501;
}

.btn-CV a {
  color: var(--primario);
}

.btn-CV:hover {
  -webkit-box-shadow: 4px 6px 5px -3px rgba(0, 0, 0, 0.712);
  box-shadow: 4px 6px 5px -3px rgba(0, 0, 0, 0.712);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn-CV a:hover {
  color: var(--primario);
  text-decoration: none;
}

.formulario-border {
  border: 2px solid var(--gris_terciario);
}

/*Estilos del texto de inicio del formulario*/
.contacto-texto-inicial {
  font-family: Neurial;
  font-size: 25px;
}

.btn-formulario {
  font-family: Neurial;
  color: white;
  background-color: var(--secundario);
  width: 120px;
  border-radius: 0;
}

/*Estilos del boton para cargar archivo*/
.datepicker td, .datepicker th {
  width: 3rem;
  height: 2.5rem;
  padding-left: 15px;
  font-size: 0.85rem;
  cursor: pointer;
}

.datepicker {
  margin-bottom: 3rem;
}

/*
Estilos seccion ALIANZAS
*/
#alianzas {
  background-color: var(--secundario);
}

.alianzas-texto {
  font-family: Neurial light;
  color: white;
  font-size: 25px;
}

@media (min-width: 992px) {
  .alianzas-texto {
    font-size: 30px;
  }
}
.alianzas-imagen {
  width: 150px;
  height: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@media (min-width: 992px) {
  .alianzas-imagen {
    width: 250px;
  }
}
/*-----------------------------
    3-PAGINA PROYECTOS
----------------------------*/
/*
Estilos frase seccion proyectos
*/
#frase-edilizia .frase-proy {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.frase-proyecto-slider {
  position: relative;
  background-position: center center;
  background-size: cover;
  padding-top: 7px !important;
}

.frase-proyecto-slider-texto {
  font-size: 14px;
  color: var(--primario);
  font-weight: 900;
  letter-spacing: 1px;
}

@media (min-width: 600px) {
  .frase-proyecto-slider-texto {
    font-size: 16px;
  }

  .frase-proyecto-slider {
    padding-top: 8px !important;
  }
}
@media (min-width: 992px) {
  .frase-proyecto-slider-texto {
    font-size: 18px;
  }
}
@media (min-width: 1100px) {
  .frase-proyecto-slider-texto {
    font-size: 20px;
  }
}
.imagen-slider {
  height: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
Estilos friltros de proyectos
*/
#filtro-proyectos .titulo-filtro-page-proy {
  font-family: Neurial;
  color: white;
  font-size: 18px;
}

@media (min-width: 992px) {
  #filtro-proyectos .titulo-filtro-page-proy {
    font-size: 25px;
  }
}
#filtro-proyectos .buscador-proyectos {
  background-color: var(--primario) !important;
  height: 45px;
}

@media (min-width: 992px) {
  #filtro-proyectos .buscador-proyectos {
    width: auto;
  }
}
#filtro-proyectos .buscador-proyectos .fa-times-circle,
#filtro-proyectos .buscador-proyectos .fa-search {
  color: white;
  font-size: 17px;
}

#filtro-proyectos .buscador-input-proyectos {
  position: absolute;
  top: 61px;
  right: 15px;
  width: auto;
  height: 60px;
  background-color: whitesmoke !important;
  border: none;
  border-radius: 0px;
  opacity: 0.90;
  z-index: 500;
}

@media (min-width: 992px) {
  #filtro-proyectos .buscador-input-proyectos {
    top: 62px;
  }
}
#filtro-proyectos .buscador-input-proyectos input {
  position: relative;
  color: rgba(36, 36, 36, 0.685);
  background-color: transparent;
  height: 30px;
  border: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(36, 36, 36, 0.685)), to(rgba(36, 36, 36, 0.685)));
  background-image: linear-gradient(rgba(36, 36, 36, 0.685), rgba(36, 36, 36, 0.685));
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 100% 1px;
}

#filtro-proyectos .buscador-input-proyectos .btn:focus,
#filtro-proyectos .buscador-proyectos .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#filtro-proyectos {
  background-color: var(--primario);
  border-bottom: 1px solid white;
}

.maps iframe {
  pointer-events: none;
}

/*quitamos estilos al boton por defecto*/
#filtro-proyectos .navbar-toggler {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: 0;
}

#filtro-proyectos .boton-filtro-proy img {
  display: block;
  height: 20px;
  cursor: pointer;
}

#filtro-proyectos .filtro-cerrar::after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: white;
  content: "\f057";
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

/*Estilos de items filtro*/
#filtro-proyectos .item-todos,
#filtro-proyectos .nav-item a {
  color: white;
  font-size: 15px;
  letter-spacing: 1px;
}

/*Estilos del filtro desplegable en general*/
#filtro-proyectos .dropdown-menu {
  background-color: #699abb !important;
  border: none;
  border-radius: 0px;
}

#filtro-proyectos .nav-link {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (min-width: 992px) {
  #filtro-proyectos .dropdown-menu {
    background-color: #699abb !important;
    top: 113%;
    border: none;
    border-radius: 0px;
    opacity: 0.90;
  }

  #filtro-proyectos .dropdown-derecha {
    left: -130% !important;
  }
}
/*Estilos de los items generales*/
#filtro-proyectos .nav-link,
#filtro-proyectos .item-todos {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(white, white);
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 0% 2px;
  -webkit-transition: background-size .5s;
  transition: background-size .5s;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-right: 0px !important;
}

#filtro-proyectos .dropdown-item {
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(white, white);
  background-repeat: no-repeat;
  background-position: 45% 100%;
  background-size: 0% 1px;
  -webkit-transition: background-size .5s;
  transition: background-size .5s;
}

@media (min-width: 992px) {
  #filtro-proyectos .dropdown-item {
    color: white !important;
    padding-left: 0.8rem !important;
    font-size: 14px !important;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(--primario), to(--primario));
    background-image: linear-gradient(--primario, --primario);
    text-align: center;
    background-position: 0% 100%;
  }
}
/*Estilos de los items cuando esta activo*/
#filtro-proyectos .item-todos.active,
#filtro-proyectos .nav-link.dropdown-toggle.act {
  background-color: var(--secundario);
}

#filtro-proyectos .dropdown-item.active {
  background-color: var(--secundario);
}

@media (min-width: 992px) {
  #filtro-proyectos .item-todos.active {
    background-color: var(--secundario);
  }

  #filtro-proyectos .dropdown-item.active {
    background-color: var(--secundario);
  }
}
/*Estilos de los items cuando se hace hover*/
#filtro-proyectos .item-todos a {
  text-decoration: none;
}

#filtro-proyectos .item-todos:hover {
  background-color: var(--secundario);
}

#filtro-proyectos .dropdown-item:hover {
  background-color: var(--secundario);
}

@media (min-width: 992px) {
  #filtro-proyectos .item-todos:hover {
    background-color: var(--secundario);
  }

  #filtro-proyectos .dropdown-item:hover {
    background-color: var(--secundario);
  }
}
/*
Estilos seccion proyectos
*/
.titulo-proy {
  font-family: Neurial;
  font-size: 25px !important;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  display: none;
  color: white;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.titulo-proy::before {
  font-family: Neurial;
  color: transparent;
  font-size: 2.2rem;
  content: "\02198";
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  padding-right: 5px;
}

.descripcion-proy {
  display: none;
  color: white;
  font-family: Neurial light;
  font-size: 11px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (min-width: 700px) {
  .titulo-proy {
    font-size: 35px !important;
  }

  .descripcion-proy {
    font-size: 16px !important;
    text-align: center;
    z-index: 120;
    position: relative;
  }
}
.link-proy {
  display: none;
  color: white;
  font-size: 13px;
  font-weight: 900;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.link-proy:hover {
  color: white;
}

@media (min-width: 520px) {
  .titulo-proy {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .titulo-proy {
    font-size: 25px;
  }

  .descripcion-proy {
    font-size: 15px;
  }

  .link-proy {
    font-size: 15px;
  }
}
#page-proy {
  border-left: 1px solid white;
}

.containter-proy {
  height: 200px;
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}

@media (min-width: 520px) {
  .containter-proy {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .containter-proy {
    height: 300px;
  }
}
.containter-proy:hover .titulo-proy {
  display: block;
  position: relative;
  z-index: 500;
}
.containter-proy:hover .titulo-proy::before {
  color: white;
}
.containter-proy:hover .descripcion-proy {
  display: block;
  position: relative;
  z-index: 500;
}
.containter-proy:hover .link-proy {
  display: block;
  position: relative;
  z-index: 500;
}

.containter-proy::after {
  position: absolute;
  content: "";
  background-color: var(--primario);
  height: 0%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.containter-proy:hover::after {
  height: 100%;
}

/*
Estilos seccion escribinos
*/
.btn-escribinos {
  color: white;
  background-color: var(--primario);
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 18px;
  padding-right: 18px;
  -webkit-box-shadow: 4px 6px 5px -3px rgba(0, 0, 0, 0.21);
  box-shadow: 4px 6px 5px -3px rgba(0, 0, 0, 0.21);
}

@media (min-width: 992px) {
  .btn-escribinos {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.btn.btn-escribinos:hover {
  color: white;
  -webkit-box-shadow: 6px 8px 5px -3px rgba(0, 0, 0, 0.66);
  box-shadow: 6px 8px 5px -3px rgba(0, 0, 0, 0.66);
}

/*-----------------------------
    4-PROYECTOS INDIVIDUALES
----------------------------*/
.ind-proyecto-video {
  position: relative;
  height: 600px;
  margin-top: 56px;
}

@media (min-width: 992px) {
  .ind-proyecto-video {
    margin-top: 67px;
  }
}
button.play-toggle {
  border: 0;
  border-radius: 4px;
  background-color: transparent;
}

button.play-toggle:focus {
  outline: 0px;
}

button .fa-play-circle,
button .fa-pause-circle {
  color: white;
}

#ind-slider.swiper-container {
  height: 600px;
  margin-top: 56px;
}

.ind-proyecto-slider {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.ind-metrica-num {
  color: var(--primario);
  font-family: Neurial;
  font-size: 60px;
  border: 2px solid var(--primario);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 25px;
  padding-left: 25px;
}

.ind-text-metrica {
  color: var(--primario);
  font-family: Neurial;
  font-size: 20px;
}

.ind-proyecto-titulo {
  color: white;
  font-size: 32px;
  padding-top: 15px;
  position: absolute;
  text-align: left;
  bottom: 30px;
  left: 30px;
  z-index: 100;
  white-space: break-spaces;
}

@media (min-width: 768px) {
  .ind-proyecto-titulo {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .ind-proyecto-titulo {
    font-size: 40px;
  }
}
.ind-proyecto-descripcion {
  color: var(--gris_terciario);
  text-align: justify;
}

.ind-proyecto-informacion {
  color: var(--gris_terciario);
  text-align: justify;
}

@media (min-width: 992px) {
  .ind-proyecto-informacion {
    -webkit-column-count: 2;
            column-count: 2;
  }
}
.ind-proyecto-img {
  height: 300px;
  background-position: center center;
  background-size: cover;
}

.ind-proyecto-img-grande {
  height: 400px;
  background-position: center center;
  background-size: cover;
}

.vbox-content img {
  width: auto !important;
  height: 200px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 520px) {
  .vbox-content img {
    width: auto !important;
    height: 300px !important;
  }
}
@media (min-width: 720px) {
  .vbox-content img {
    width: auto !important;
    height: 450px !important;
  }
}
@media (min-width: 1240px) {
  .vbox-content img {
    width: auto !important;
    height: 450px !important;
  }
}
@media (min-width: 1400px) {
  .vbox-content img {
    width: auto !important;
    height: 500px !important;
  }
}
.ind-proyecto-recorrido3D iframe {
  width: 100%;
}

.ind-proyecto-mapa {
  position: relative;
}

.ind-proyecto-mapa::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--gris_secundario);
  opacity: 0.2;
}

.ind-proyecto-mapa iframe {
  width: 100%;
}

.link-externo-btn {
  color: white;
  font-family: Neurial light;
  font-weight: 200;
  font-size: 18px;
  background-color: var(--primario);
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  width: 150px;
  border-radius: 4px;
  cursor: pointer;
}

.link-externo-btn:hover {
  color: var(--primario);
  background-color: white;
  border: 2px solid var(--primario);
  text-decoration: none;
}

.titulo-unidades {
  font-family: Neurial medium;
  font-size: 35px;
  color: var(--primario);
}

.tabla-unidades th {
  font-family: Neurial medium;
  color: var(--primario);
  font-size: 13px;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primario);
}

.tabla-unidades tr {
  border-bottom: 1px solid var(--primario);
}

.tabla-unidades td {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 13px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

.unidad-visibilidad {
  display: none;
  visibility: hidden;
}

.unidad-visibilidad-contraria {
  display: table-cell;
  visibility: visible;
}

.vbox-next {
  display: none !important;
  visibility: hidden;
}

.vbox-prev {
  display: none !important;
  visibility: hidden;
}

@media (min-width: 768px) {
  .tabla-unidades th {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .tabla-unidades th {
    font-size: 16px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .tabla-unidades td {
    font-size: 16px;
  }

  .unidad-visibilidad {
    display: table-cell;
    visibility: visible;
  }

  .unidad-visibilidad-contraria {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 1092px) {
  .tabla-unidades th {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
.tabla-unidades a,
.unidades-mobile a {
  font-family: Neurial light;
  color: var(--primario);
  text-decoration: underline;
}

.tabla-unidades a:hover,
.unidades-mobile a:hover {
  font-family: Neurial bold;
}

.unidades-mobile tr {
  border-bottom: 1px solid var(--primario);
}

#unidades .btn-primary {
  font-family: Neurial;
  color: white;
  background-color: var(--primario);
  border: 1px solid var(--primario);
}

.unidades-mobile-titulo {
  font-family: Neurial bold;
  color: var(--primario);
}

.unidades-mobile-texto {
  font-family: Neurial light;
  color: var(--primario);
}

/*-----------------------------
    5-PAGINA NOSOTROS
----------------------------*/
.nav-tabs {
  border-bottom: 1px solid var(--primario);
}

.nav-tabs .nav-link {
  color: var(--primario);
  border-color: #fff #fff transparent;
  margin-left: 5px;
  margin-right: 5px;
  width: 5%;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef var(--primario);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: white;
  background-color: var(--secundario) !important;
  font-weight: 900;
  background-color: #fff;
  border-color: var(--primario) var(--primario) var(--primario);
}

/*-----------------------------
    5.1-STAFF
----------------------------*/
.nombre-persona-staff {
  position: relative;
  color: transparent;
  font-size: 12px;
  z-index: 102;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.rol-persona-staff {
  position: relative;
  color: transparent;
  font-size: 12px;
  z-index: 102;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (min-width: 554px) {
  .nombre-persona-staff {
    font-size: 14px;
  }

  .rol-persona-staff {
    font-size: 14px;
  }
}
.container-staff {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (min-width: 520px) {
  .container-staff {
    height: 240px;
  }
}
@media (min-width: 992px) {
  .container-staff {
    height: 300px;
  }
}
.imagen-descontracturada {
  position: relative;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.safari.mobile .container-staff::before,
.mobile .container-staff::before {
  position: absolute;
  top: 0;
  left: 6px;
  font-family: 'Font Awesome 5 Free';
  content: '\f0fe';
  font-weight: 900;
  color: white;
  font-size: 25px;
}

.safari.mobile .container-staff:hover::before,
.mobile .container-staff:hover::before {
  content: '';
}

.container-staff::after {
  position: absolute;
  content: "";
  background-color: var(--primario);
  height: 0%;
  width: 100%;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.container-staff:hover:after {
  height: 27%;
}

@media (min-width: 992px) {
  .container-staff:hover:after {
    height: 20%;
  }
}
.container-staff:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.container-staff:hover .nombre-persona-staff {
  color: white;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.container-staff:hover .rol-persona-staff {
  color: white;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.container-staff:hover .imagen-descontracturada {
  opacity: 1;
}

.buscador {
  background-color: var(--primario) !important;
  height: 45px;
}

.buscador .form-control {
  color: white;
  background-color: #6698b9 !important;
  height: 30px;
  border: none;
  border-radius: 25px;
}

.buscador .form-control::-webkit-input-placeholder {
  color: white;
}

.buscador .form-control:-ms-input-placeholder {
  color: white;
}

.buscador .form-control::-ms-input-placeholder {
  color: white;
}

.buscador .form-control::placeholder {
  color: white;
}

.buscador .fa-search {
  color: white;
  font-size: 19px;
}

.buscador .fa-times-circle {
  color: white;
  font-size: 19px;
}

.buscador .btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*Estilos del filtro desplegable movil staff*/
/*color y tamaño al boton*/
#filtro-staff .navbar-toggler .fa-filter {
  color: white;
  font-size: 1.5rem;
}

/*quitamos estilos al boton por defecto*/
#filtro-staff .navbar-toggler {
  padding: 0;
  padding-right: 15px;
  font-size: 1.5rem;
  line-height: 1;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: 0;
}

#filtro-staff-movil {
  width: 100%;
}

#filtro-staff-movil .navbar-nav {
  background-color: #699abb !important;
  margin-top: 0px !important;
}

#filtro-staff-movil .nav-link.ver-todos {
  font-size: 17px !important;
  font-weight: bold !important;
  letter-spacing: 1px;
}

#filtro-staff-movil .nav-link {
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(white, white);
  background-repeat: no-repeat;
  background-position: 45% 100%;
  background-size: 0% 1px;
  -webkit-transition: background-size .5s;
  transition: background-size .5s;
  letter-spacing: 1px;
}

#filtro-staff-movil .nav-link:hover {
  background-size: 90% 1px;
  background-position: 45% 100%;
  background-color: transparent;
}

#filtro-staff-movil .nav-link.active {
  background-size: 90% 1px;
  background-position: 45% 100%;
  background-color: transparent;
}

/*Estilos del filtro desplegable pc staff*/
#filtro-staff-pc {
  width: auto;
  background-color: var(--primario);
}

#filtro-staff-pc .nav-link {
  color: white;
  font-size: 1.5rem;
}

#filtro-staff-pc .dropdown-menu {
  background-color: whitesmoke !important;
  width: 260px;
  top: 107%;
  left: -210px;
  border: none;
  border-radius: 0px;
  opacity: 0.90;
}

#filtro-staff-pc .dropdown-derecha {
  left: -130% !important;
}

#filtro-staff-pc .dropdown-item.ver-todos {
  font-size: 15px !important;
  font-weight: bold;
  letter-spacing: 1px;
}

#filtro-staff-pc .dropdown-item {
  color: gray !important;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.8rem !important;
  cursor: pointer;
  font-size: 12px !important;
  text-decoration: none;
  text-align: left;
  background-image: -webkit-gradient(linear, left top, left bottom, from(grey), to(grey));
  background-image: linear-gradient(grey, grey);
  background-repeat: no-repeat;
  background-position: 0% 100%;
  background-size: 0% 1px;
  -webkit-transition: background-size .5s;
  transition: background-size .5s;
  letter-spacing: 1px;
}

#filtro-staff-pc .dropdown-item:hover {
  background-size: 90% 1px;
  background-position: 0% 100%;
  background-color: transparent;
}

#filtro-staff-pc .dropdown-item.active {
  background-size: 90% 1px;
  background-position: 0% 100%;
  background-color: transparent;
}

/*-----------------------------
    5.2-MISION, VISION Y VALORES
----------------------------*/
/*Estilos foto principal de pagina mision, vision y valores*/
#mvv .container-fluid {
  height: 500px;
  background-size: cover;
  background-position: center center;
}

.mvv-contenedor {
  position: relative;
}

.mvv-contenedor::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primario);
  opacity: 0.5;
}

.mvv-titulo {
  color: white;
  font-weight: 900;
  font-size: 30px;
  text-shadow: -1px 6px 10px #000000;
}

.safari .mvv-titulo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mvv-font-subtitulo {
  font-family: Neurial;
  font-size: 25px;
  letter-spacing: 1px;
  text-align: justify;
}

@media (min-width: 950px) {
  .mvv-font-subtitulo {
    font-size: 40px;
  }
}
.mvv-linea {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00548B), to(#00548B));
  background-image: linear-gradient(#00548B, #00548B);
  background-repeat: no-repeat;
  background-position: center 100%;
  background-size: 93% 2px;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .mvv-linea {
    background-position: 15px 100%;
    background-size: 93% 2px;
  }
}
.mvv-font-mision {
  font-family: Neurial;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: justify;
}

.mvv-font-mision::before {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 2.2rem;
  content: "\02198";
  margin-right: 5px;
}

.mvv-font-vision {
  font-family: Neurial;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: justify;
}

.mvv-font-vision::before {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 2.2rem;
  content: "\02198";
  margin-right: 5px;
}

.mvv-text-mision-vision {
  color: var(--primario);
  font-family: Neurial light;
}

.mvv-font-valores {
  font-family: Neurial;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: justify;
}

.mvv-font-valores::before {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 2.2rem;
  content: "\02198";
  margin-right: 5px;
}

.mvv-iconos {
  height: 40px;
  width: 40px;
}

.mvv-text-valores {
  font-family: Neurial light;
  color: var(--primario);
}

/*-----------------------------
    5.3-BIM y LEAn
----------------------------*/
/*Estilos foto principal de pagina mision, vision y valores*/
#bim-lean .container-fluid {
  height: 500px;
  background-size: cover;
  background-position: center center;
}

.bim-lean-contenedor {
  position: relative;
}

.bim-lean-contenedor::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primario);
  opacity: 0.5;
}

.bim-lean-titulo {
  color: white;
  font-weight: 900;
  font-size: 30px;
  text-shadow: -1px 6px 10px #000000;
}

.safari .bim-lean-titulo {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bim-lean-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: 50% 50%;
}

.bim-lean-font-subtitulo {
  font-family: Neurial;
  font-size: 25px;
  letter-spacing: 1px;
  text-align: justify;
}

@media (min-width: 950px) {
  .bim-lean-font-subtitulo {
    font-size: 40px;
  }

  .bim-lean-img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: 50% 50%;
  }
}
.bim-lean-text-descripcion {
  text-align: justify;
  letter-spacing: 1px;
}

.flecha-bim-lean-text::before {
  font-family: Neurial light;
  color: var(--primario);
  font-size: 2.2rem;
  content: "\02198";
  margin-right: 5px;
  position: absolute;
  left: -15px;
}

/* Estilos logos fundadores */
.imagen-fundadores {
  height: 150px;
  width: 30px;
}

@media (min-width: 950px) {
  .imagen-fundadores {
    height: 150px;
    width: auto;
  }
}
/*-----------------------------
    3-NOSOTROS (empresa)
----------------------------*/
#imagen-page-destacada.row {
  /*para que no se exceda de pantalla*/
  margin-left: 0px !important;
  margin-right: 0px !important;
}

#contenido.row {
  /*para que no se exceda de pantalla*/
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/*Fondos de la pagina*/
.imagen-destacada {
  height: 24rem;
  background-position: center center;
}

.nosotros-bg {
  background-image: url("../img/quienesSomos.jpeg");
}

/*Superponer contenido a la imagen de fondo*/
.contenido-pagina {
  margin-top: -5rem;
  background-color: white;
  border: solid;
  border-color: var(--primario);
  border-radius: 10px;
  position: relative;
  z-index: 50;
}

.text-pagina {
  color: white;
  font-size: xx-large;
  text-align: center;
}

.destacada {
  margin-top: -5rem;
}

.no-destacada {
  margin-top: 5rem !important;
}

/**-----------------------------------------
*-------------------------------------------
*4- ESTILOS PRENSA
*-------------------------------------------
*-------------------------------------------*/
.img-prensa-noticia {
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
  width: 100%;
}

@media (min-width: 600px) {
  .img-prensa-noticia {
    height: 280px;
  }
}
@media (min-width: 600px) {
  .img-prensa-noticia {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .img-prensa-noticia {
    height: 260px;
  }
}
@media (min-width: 1500px) {
  .img-prensa-noticia {
    height: 290px;
  }
}
.card-prensa-noticia {
  -webkit-box-shadow: 6px 6px 4px -2px rgba(100, 100, 100, 0.67);
  box-shadow: 6px 6px 4px -2px rgba(100, 100, 100, 0.67);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.card-prensa-noticia .link-prensa {
  cursor: pointer;
  color: #005C99;
  font-weight: bold;
}

.card-prensa-noticia .link-prensa:hover {
  color: #004573;
  font-weight: 900;
  font-size: 17px;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

/**-----------------------------------------
*-------------------------------------------
*ESTILOS MATERIALIZE PARA DATEPICKER
*-------------------------------------------
*-------------------------------------------*/
select {
  display: none;
}

select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem;
}

.select-wrapper {
  position: relative;
}

.select-wrapper.valid + label,
.select-wrapper.invalid + label {
  width: 100%;
  pointer-events: none;
}

.select-wrapper input.select-dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9e9e9e;
  outline: none;
  height: 2rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 1;
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid #26a69a;
}

.select-wrapper .caret {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  fill: rgba(0, 0, 0, 0.87);
}

.select-wrapper + label {
  position: absolute;
  top: -26px;
  font-size: 0.8rem;
}

select:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled + label {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled .caret {
  fill: rgba(0, 0, 0, 0.42);
}

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.42);
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3);
}

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  padding: 15px;
  max-height: 70%;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
}

.modal-overlay {
  position: fixed;
  z-index: 999;
  top: -25%;
  left: 0;
  bottom: 0;
  right: 0;
  height: 125%;
  width: 100%;
  background: #000;
  display: none;
  will-change: opacity;
}

/* Modal */
.datepicker-modal {
  max-width: 325px;
  min-width: 300px;
  max-height: none;
}

.datepicker-container.modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}

.datepicker-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 280px;
  margin: 0 auto;
}

.datepicker-controls .selects-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.datepicker-controls .select-wrapper input {
  border-bottom: none;
  text-align: center;
  margin: 0;
}

.datepicker-controls .select-wrapper input:focus {
  border-bottom: none;
}

.datepicker-controls .select-wrapper .caret {
  display: none;
}

.datepicker-controls .select-year input {
  margin-left: 3px;
  border: 2px solid #414040;
}

.datepicker-controls .select-month input {
  margin-right: 3px;
  border: 2px solid #414040;
}

.month-prev, .month-next {
  margin-top: 4px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* Date Display */
.datepicker-date-display {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
  background-color: var(--primario);
  color: #fff;
  padding: 20px 22px;
  font-weight: 500;
}

.datepicker-date-display .year-text {
  display: block;
  font-size: 1.5rem;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.datepicker-date-display .date-text {
  display: block;
  font-size: 2.8rem;
  line-height: 47px;
  font-weight: 500;
}

/* Calendar */
.datepicker-calendar-container {
  -webkit-box-flex: 2.5;
  -ms-flex: 2.5 auto;
  flex: 2.5 auto;
}

.datepicker-table {
  width: 280px;
  font-size: 1rem;
  margin: 0 auto;
}

.datepicker-table thead {
  border-bottom: none;
}

.datepicker-table th {
  padding: 10px 5px;
  text-align: center;
}

.datepicker-table tr {
  border: none;
}

.datepicker-table abbr {
  text-decoration: none;
  color: #999;
}

.datepicker-table td {
  border-radius: 50%;
  padding: 0;
}

.datepicker-table td.is-today {
  color: #26a69a;
}

.datepicker-table td.is-selected {
  background-color: #26a69a;
  color: #fff;
}

.datepicker-table td.is-outside-current-month, .datepicker-table td.is-disabled {
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.datepicker-day-button {
  background-color: transparent;
  border: none;
  line-height: 38px;
  display: block;
  width: 100%;
  border-radius: 50%;
  padding: 0 5px;
  cursor: pointer;
  color: inherit;
}

.datepicker-day-button:focus {
  background-color: rgba(43, 161, 150, 0.25);
}

/* Footer */
.datepicker-footer {
  width: 280px;
  margin: 0 auto;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.datepicker-cancel,
.datepicker-clear,
.datepicker-today,
.datepicker-done {
  color: #26a69a;
  padding: 0 1rem;
}

.datepicker-clear {
  color: #F44336;
}

/* Media Queries */
@media only screen and (min-width: 992px) {
  .datepicker-modal {
    max-width: 625px;
  }

  .datepicker-container.modal-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .datepicker-date-display {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 270px;
    flex: 0 1 270px;
  }

  .datepicker-controls,
  .datepicker-table,
  .datepicker-footer {
    width: 320px;
  }

  .datepicker-day-button {
    line-height: 44px;
  }
}
.btn-flat {
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
}

.btn-flat {
  font-size: 14px;
  outline: 0;
}

.btn-flat i {
  font-size: 1.3rem;
  line-height: inherit;
}

.btn-flat {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  color: #343434;
  cursor: pointer;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.btn-flat:focus, .btn-flat:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-flat:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-flat.disabled, .btn-flat.btn-flat[disabled] {
  background-color: transparent !important;
  color: #b3b2b2 !important;
  cursor: default;
}

.dropdown-content {
  background-color: #fff;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  display: none;
  min-width: 100px;
  overflow-y: auto;
  opacity: 0;
  position: fixed;
  height: 80%;
  width: 120px;
  left: 0%;
  top: 0%;
  z-index: 9999;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.dropdown-content li {
  display: inline;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 40px;
  line-height: 1rem;
  text-align: center;
  text-decoration: none;
}

.dropdown-content li > a, .dropdown-content li > span {
  font-size: 16px;
  color: var(--primario);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 22px;
  text-align: center;
  padding: 14px 16px;
}

.dropdown-trigger {
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */