/*
Colores
Amarillo    var(--amarillo);  rgb(238,255,0)
*/
:root {
  --amarillo: #eeff00;
  --amarillo-rgb: 238, 255, 0;
  --gris-1: #666;
  --gris-2: #0f0f0f;
  --gris-3: #181818;
}

.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: .8s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}


@font-face {
  font-family: 'formularlight';
  src: url('../fonts/formular-light-webfont.woff2') format('woff2'),
    url('../fonts/formular-light-webfont.woff') format('woff');
  font-weight: 100;
  font-style: normal;

}

@font-face {
  font-family: 'formularmedium';
  src: url('../fonts/formular-medium-webfont.woff2') format('woff2'),
    url('../fonts/formular-medium-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}


/*
Generales
*/

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 100;
  font-family: 'formularlight';
}

::-moz-selection {
  color: #000;
  background: var(--amarillo);
  text-shadow: none;
}

::selection {
  color: #000;
  background: var(--amarillo);
  text-shadow: none;
}

html {
  background-color: #000;
  font-size: 12px;
  overflow-x: hidden;

}

body {
  background-color: #000;
  color: #fff;
  /*overflow-x: hidden;*/
}



/*
Tipografía
*/
h1 {
  margin-bottom: 0.5em;
  font-size: 2.3rem;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}

section h2 {
  color: var(--amarillo);
}

section.back-ama-bco h2,
section.back-bco h2 {
  color: #000;
}

h3 {
  font-size: 2rem;
}

h3.balazo {
  font-size: 1.5rem;
  line-height: 1.6em;
  text-align: center;
}

h4 {
  font-size: 1.65rem;
  line-height: 1.5em;
}

section.back-ama-bco h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mosaicos-textos h4 {
  margin-bottom: 2rem;
}

section.balazo h4 {
  font-size: 1.4rem;
  line-height: 1.8em;
}


h5 {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5 {
  text-wrap: balance;

}

p {
  line-height: 1.6em;
  font-size: 1.1rem;
  text-align: justify;
}

section p {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

p.cont-btn {
  margin-bottom: 0;
  margin-top: 2.5rem;
}

p strong,
p b,
h3 strong,
h3 b,
h5 strong,
h5 b,
.back-ama-bco .cont-sin-color p b,
.back-ama-bco .cont-sin-color p strong,
h4 strong,
h4 b {
  color: #000;
  background-color: var(--amarillo);
  padding: .2em;
  display: inline;
  font-weight: inherit;
}

.back-ama h4 strong,
.back-ama h4 b,
.back-ama strong,
.back-ama b,
.back-ama-bco p b,
.back-ama-bco p strong {
  background-color: #000;
  color: var(--amarillo);
}


ol {
  padding-left: 0;
  list-style: none;
  counter-reset: mi-contador;
}

ol li {
  padding-top: 25px;
  counter-increment: mi-contador;
  position: relative;
  margin-bottom: 1.5rem;

}

ol li::before {
  content: counter(mi-contador) ". ";
  background-color: var(--amarillo);
  color: #000;
  padding: 3px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  left: calc(50% - 4px);
  top: 0;
}

.color-gris {
  color: var(--gris-1);
}

.color-amarillo {
  color: var(--amarillo)
}

/*
Links
*/
a {
  color: var(--amarillo);
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;

}

a:hover {
  color: inherit;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}

.avisos a {
  color: #000;
  text-decoration: underline;
}

.link-dar {
  font-size: 0.85rem;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gris-1);
}

.link-dar:hover {
  border-bottom-color: rgba(var(--amarillo-rgb), 0.75);
}

.link-dar.link-dar-dos {
  color: var(--gris-1);
  text-transform: none;
  font-size: 0.75rem;
  border-bottom: none;
}

.link-dar.link-dar-dos:hover {
  color: var(--amarillo);
}

.btn-dar {
  color: #000;
  padding: 1rem 2.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  border: 1px solid rgba(var(--amarillo-rgb), 0.5);
  text-decoration: none !important;
  border-radius: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: all ease .5s;
  -o-transition: all ease .5s;
  transition: all ease .5s;
}

.btn-dar:hover {
  color: #fff;
  /*        border: 1px solid var(--amarillo);*/
}

.btn-dar:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--amarillo);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transition: all ease .5s;
  -o-transition: all ease .5s;
  transition: all ease .5s;
}

.btn-dar:hover:before {
  width: 0;
  -webkit-transition: all ease .5s;
  -o-transition: all ease .5s;
  transition: all ease .5s;
}

.btn-dar.btn-sm {
  padding: 0.7rem 2rem;
  font-size: 0.8rem;
}

.btn-dar.btn-invert {
  color: #fff;
}

.btn-dar.btn-invert:hover {
  color: #000;
}

.btn-dar.btn-invert:before {
  width: 0%;
}

.btn-dar.btn-invert:hover:before {
  width: 100%;
}

section.back-bco .btn-dar.btn-invert,
.cont-sin-color .btn-dar.btn-invert {
  color: #000;
  border-color: #000;
}

section.back-bco .btn-dar.btn-invert:before,
.cont-sin-color .btn-dar.btn-invert:before {
  background-color: #000;
}

section.back-bco .btn-dar.btn-invert:hover,
.cont-sin-color .btn-dar.btn-invert:hover {
  color: var(--amarillo);
}

.btn-dar.btn-dar-dark {
  color: var(--amarillo);
  border-color: #000;
}

.btn-dar.btn-dar-dark:hover {
  color: #000;
}

.btn-dar.btn-dar-dark:before {
  background: #000;
}






section {
  padding-top: 9rem;
  padding-bottom: 9rem;
  text-align: center;
}

section.back-bco {
  color: #000;
  background-color: #fff;
}

section.back-ama {
  color: #000;
  background: var(--amarillo);
}

section.back-ama-bco {
  padding-top: 0;
  padding-bottom: 0;
  color: #000;
  background-color: #fff;
  overflow: hidden;
}

section.back-ama-bco .color-margen {
  background: var(--amarillo);
  padding-top: 9rem;
  padding-bottom: 3rem;
  position: relative;
}
  .color-margen .link-dar{
    color: #000;
  }
  .color-margen .link-dar:hover{
    border-bottom-color: #000;
  }

section.back-ama-bco .color-margen:after {
  position: absolute;
  top: 0;
  left: calc(0px - 100%);
  width: 100%;
  height: 100%;
  background-color: var(--amarillo);
  content: "";
}

section.back-ama-bco .color-margen:before {
  position: absolute;
  top: 0;
  right: calc(0px - 100%);
  width: 100%;
  height: 100%;
  background-color: var(--amarillo);
  content: "";
}

section.back-ama-bco .cont-sin-color {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

section.back-lineas-ama {
  background: url('../img/back-lineas-hor.png') center bottom no-repeat;
  background-size: cover;
}

section.mosaicos {
  color: #000;
  background-color: #fff;
  padding: 0;
  overflow: hidden;
}

section.mosaicos .color-izq,
section.mosaicos .color-der {
  /*background: #000;*/
  position: relative;
}

.mosaicos-fotos {
  position: relative;
}

.mosaicos-fotos.der:after,
.mosaicos-fotos.izq:after {
  content: '';
  width: 100%;
  height: 100px;
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.mosaicos-fotos img,
.pro-fotos img {
  max-width: calc(100% + 18px) !important;
  margin-left: -9px;
  margin-right: -9px;
  margin-top: 3rem;
  position: relative;
}

.mosaicos-textos {
  margin-top: 3rem;
}

section.un-texto {
  text-align: center;
}

section.balazo {
  background-image: url('../img/back-lineas-balazo.png');
  background-repeat: no-repeat;
  background-position: calc(0% - -80px) 0;
  background-size: cover;
}

section.pro-texto {
  padding: 6rem 0;
}

section.pro-ficha,
section.pro-fotos {
  padding: 3rem 0;
}

/*section.c-1{
        padding-top: 9rem;
    }*/
section.pro-texto p {
  margin-top: 0;
}



.no-scroll {
  overflow-y: hidden;
}

.avisos {
  background-color: var(--amarillo);
  color: #000;
  padding: 50px;
  text-align: center;
}
.avisos p{
  text-align: center;
}

/*
MENU
*/
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px;
    /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    overflow-y: auto;
    visibility: hidden;
    min-height: 100vh;
    display: block;
    background-color: #000;
    border-top: 1px solid var(--amarillo);
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  }

  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
    overflow: hidden;
  }
}

.navbar {
  padding: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
}

.navbar-nav .nav-link {
  color: #fff;
  padding: 2rem 1rem 1rem !important;
}

.navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-nav .nav-link:hover {
  color: #000;
  background-color: var(--amarillo);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28238, 255, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.nav-underline .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}

.nav-underline .nav-link:hover {
  color: #007bff;
}

.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}

.dropdown-menu {
  background: #000;
  margin: -1px;
  border-radius: 0;
  left: -1px;
  padding: 0;
}

.dropdown-menu li {
  padding: .5rem;
}

.dropdown-item {
  color: var(--amarillo);
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--amarillo);
  color: #000;
}

.drop-darquet .dropdown-menu {
  background-color: var(--amarillo);
}

.drop-darquet .dropdown-item {
  color: #000;
}

.drop-darquet .dropdown-item:focus,
.drop-darquet .dropdown-item:hover,
.drop-darquet .dropdown-item.active {
  background-color: #000;
  color: var(--amarillo);
}

.idioma {
  color: #fff;
  margin: 0 0.5rem;
}

.idioma-act {
  font-family: formularmedium;
}

.idioma:hover,
.idioma-act {
  color: var(--amarillo);
}

.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.cont-switch {
  margin-right: 20px;
  font-size: 15px;
}

/*
Header
*/
#header {
  background-color: #000;
}

.header-home {
  background-image: url("../img/back-header-home.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-foto {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.header-foto:after {
  content: '';
  width: 100%;
  height: 100px;
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.header-copy {
  position: relative;
  z-index: 2;
  margin-top: 250px;
}

.header-interior {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  position: relative;
  padding-bottom: 150px;
}

.header-interior .header-row {
  min-height: 100% !important;
}

.header-interior .header-copy {
  margin-top: 250px;
}

.header-interior .cont-info-header h2 {
  margin-bottom: 0rem;
}

.header-interior .cont-info-header h4 {
  font-size: 1.4rem;
  margin-top: 1.3rem;
}

.header-logo-servicios img {
  max-height: 40px;
  margin-bottom: 1rem;
}

.header-interior.Proyectos .header-foto {
  filter: grayscale(1);
}



/*
Cards
*/
.card-darquet {
  padding: 0;
  border: 1px solid #4d4d4d;
  position: relative;
  z-index: 1;
  /*margin-bottom: 2rem;*/
}

.card-foto {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
  overflow: hidden;
  transition: all ease .4s;
}

.card-foto:after {
  content: '';
  width: 100%;
  height: 100px;
  display: block;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.card-darquet:hover .card-foto {
  opacity: 0.6;
  transition: all ease .4s;
}

.card-foto-link {
  display: block;
  width: 100%;
  height: 100%;
}

.card-info {
  padding: 20px;
  margin-top: -30px;
  z-index: 3;
  text-align: left;
}

.card-info .card-nombre-proyecto {
  color: var(--amarillo);
  margin-bottom: 0;
}

.card-info .card-nombre-proyecto:hover {
  color: #fff;
}

.card-info p {
  margin-bottom: 0;
}

.card-info .card-info-cats {
  margin-bottom: 1rem;
}

.card-info-cats a {
  margin-right: 0.75rem;
}

.card-link {
  text-align: right;
}

.card-servicios {
  border: none;
}

.card-servicios .card-info {
  margin-top: -80px;
  text-align: center;
}

.card-servicios .card-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card-servicios .card-foto:after {
  height: 150px;
}

.card-servicios .card-nombre-proyecto {
  text-align: center;
}

.card-servicios .card-nombre-proyecto img {
  max-height: 40px;
}

.card-servicios .card-link {
  text-align: center;
}

.card-servicios .card-resumen {
  padding: 0 20px;
}

.card-mini {
  padding: 2rem 0 0;
  margin-bottom: 2rem;
  border: 1px solid #4d4d4d;
  text-align: center;
}

/*CLIENTES*/
.clientes-logos .row>div {
  padding: 0 20px;
}

.clientes-logos img {
  margin: .8rem 0;
  filter: grayscale(100%);
}

.clientes-logos img:hover {
  filter: grayscale(0);
}

/*Soluciones*/
.soluciones-item {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #4d4d4d;
}

.soluciones-item:last-child {
  border-bottom: none;
}

.soluciones-item h4 {
  color: var(--amarillo);
}

.soluciones-item h4 span {
  color: #fff;
}

.soluciones-item p {
  margin-top: 0.5rem;
}

/*PROYECTOS*/
.pro-ficha-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #4d4d4d;
}

.pro-ficha-item p {
  font-size: 1rem;
}

.pro-ficha-item p,
.pro-ficha-item .pro-ficha-titulo {
  margin: 0;
  text-align: left;
}

.pro-foto-tit {
  margin-bottom: 3rem;
}

.pro-foto {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.proyectos-filtro {
  margin-bottom: 3rem;
}

.proyectos-filtro .fitro-tit {
  margin-bottom: 1.5rem;
}

.proyectos-filtro .filtro-sub {
  margin-bottom: 1rem;
}

.proyectos-filtro .drop-darquet {
  margin-bottom: 2rem;
}

.proyectos-filtro-interior {
  margin-bottom: 5rem;
}

.proyectos-filtro-interior .drop-darquet {
  margin-left: 2rem;
}

/*ACCESOS*/

.accesos-datos>div {
  margin-bottom: 1rem;
}

.accesos-datos>div>h4 {
  margin-bottom: 0;
}

.accesos-datos>div>h4:last-child {
  margin-top: 0;
}

/*LICITACIONES*/
.mosaico-li {
  border-bottom: 1px solid #000;
}

.bloque-li-titulos {
  background: #000;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(var(--amarillo-rgb), 0.3);
}

.bloque-li-titulos>div>* {
  font-size: 0.9rem;
  text-align: left;
}

.bloque-li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gris-3);
}

.bloque-li p {
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
}

.bloque-li p.li-tit {
  color: var(--amarillo);
}

.bloque-li p.li-fecha,
.row-li p.li-fecha {
  text-transform: capitalize;
}

.bloque-li .li-interesado {
  padding-top: 2rem;
}

.bloque-li:nth-child(odd) {
  background: var(--gris-2);
}

.row-li p strong {
  margin-right: 0.5rem;
}
a.lic-archivo{
  width: 100%;
  height: 100%;
  color: #000;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.2;
  border: 1px solid var(--amarillo);
}
  a.lic-archivo:hover{
    background-color: var(--amarillo);
  }
  a.lic-archivo img{
   max-width: 40px;
   margin: 0 auto 0.75rem;
   display:block;
  }

/*
FORM
*/
.fomr-darq {
  width: 100% !important;
}

.fomr-darq input[type=text],
.fomr-darq input[type=password],
.fomr-darq textarea,
.fomr-darq textarea:focus {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  outline: none;
  border: 1px solid #4d4d4d;
  border-radius: 0;
}

.fomr-darq input[type=submit] {
  background-color: var(--amarillo);
  color: #000;
  padding: 1rem 2.8rem;
  margin: 2rem 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 0;
  outline: none;
  border: none;
}

.fomr-darq input.input-error {
  border-color: var(--amarillo);
}

.fomr-darq input.input-error::placeholder {
  color: var(--amarillo) !important;
}

.fomr-darq dt {
  display: none;
}

.fomr-darq label {
  margin-right: 1rem;
}

/*
Edit
*/
.edit {
  background-color: orange;
  color: #000;
  position: fixed;
  width: 60px;
  height: 40px;
  right: 0;
  bottom: 0;
  z-index: 99999;

}

.edit p {
  font-size: 0.8rem;
  padding: 10px;
  text-align: center;
}

.edit p a {
  color: #000;
}

/*
footer
*/

footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.9rem;
  text-align: center;
}

.footer-logo {
  margin-bottom: 5rem;
}


.footer-contacto {
  margin-bottom: 3rem;
}

.footer-contacto a {
  color: #fff;
  margin: 0 1rem;
}

.footer-contacto a:hover {
  color: var(--amarillo);
}

.footer-menu {
  margin-top: 3rem;
  margin-bottom: 3rem;
  list-style: none;
}

.footer-menu li {
  display: inline-block;
  margin: 0 .5rem;
}

.footer-menu li:hover {
  background: var(--amarillo);
}

.footer-menu li a {
  color: #fff;
  font-size: 0.9rem;
  padding: .3rem .7rem;
}

.footer-menu li a:hover {
  color: #000;
}

.disclaimer {
  border-top: 1px solid rgba(var(--amarillo-rgb), 0.5);
  padding-top: 2rem;
}

.disclaimer p {
  color: var(--gris-1);
  font-size: 0.8rem;
}

.disclaimer a {
  color: inherit;
  text-decoration: underline;
}

.disclaimer a:hover {
  color: #fff;
}

.whats {
  width: 50px;
  height: 50px;
  background: url('../img/whats.png') 0 0;
  background-size: cover;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 999;
}

.whats a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}




/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

  section {
    text-align: left;
  }


  section.back-ama-bco .color-margen {
    padding-bottom: 9rem;
  }

  section.back-ama-bco .color-margen:before {
    display: none;
  }

  section.back-ama-bco .cont-sin-color {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  section.mosaicos .color-izq:after {
    position: absolute;
    top: 0;
    left: calc(0px - 100%);
    width: 100%;
    height: 100%;
    background-color: #000;
    content: "";
  }

  section.mosaicos .color-der:after {
    position: absolute;
    top: 0;
    right: calc(0px - 100%);
    width: 100%;
    height: 100%;
    background-color: #000;
    content: "";
  }

  section.balazo {
    background-position: bottom right;
    background-size: contain;
  }

  section.pro-texto.dos-columnas .pro-texto-cont {
    column-count: 2;
    column-gap: 40px;
  }

  ol li {
    padding-left: 30px;
    padding-top: 0;
  }

  ol li::before {
    left: 0;
  }

  .header-row {
    min-height: 100vh !important;
  }

  .header-foto {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }

  .header-foto:after {
    content: '';
    width: 300px;
    height: 100%;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
    position: absolute;
    top: 0;
    right: 0;
  }

  .header-copy {
    margin-top: 0;
  }

  .header-interior .header-copy {
    margin-top: 150px;
  }

  .header-interior .cont-info-header {
    padding-right: 20%;
  }

  .mosaicos-fotos img,
  .pro-fotos img {
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }

  .mosaicos-textos {
    margin-top: 0;
  }

  .mosaicos-fotos.der:after {
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
  }

  .mosaicos-fotos.izq:after {
    width: 150px;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 90%);
    left: 0;
  }

  .sticky-md-top {
    top: 80px;
  }

  .proyectos-filtro-interior .drop-darquet {
    margin-right: 2rem;
  }

}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

  html {
    font-size: 15px;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1.5em;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  h3.balazo {
    font-size: 1.6rem;
  }

  .dropdown-menu[data-bs-popper] {
    margin: -1px 0 0;
    border-radius: 0;
    left: -1px;
  }

  .cont-switch {
    display: none;
  }

}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {


}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}


/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

  .proyectos-filtro-interior .nombre-folder {
    margin-bottom: 3rem;
  }

  .bloque-li-titulos>div>* {
    font-size: 0.75rem;
  }

  .bloque-li p {
    font-size: 0.7rem;
  }

}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {}

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {}

/*X-Large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {}