@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  color: rgb(98, 90, 90);
}
h1, h2, h3, h4, span {
font-weight: bold;
}
span {
  font-size: 32px;
}
nav {
  box-shadow: 0px 0px 10px 0 #607866;
  -webkit-box-shadow: 0px 0px 10px 10px #607866;
}

.nav-link:hover {
  font-weight: bold;
  zoom: 1.05;
}

header {
    background:linear-gradient(rgba(5, 7 ,12, 0.5), rgba(5, 7 ,12 ,0.5)), url('/img/buildings01.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* background-size: 100% auto; */
    background-size: cover;
  
  }
 
.logo {
  margin: 10px;
  width: 30px;
}
  .midle {
    text-align: center;
    padding: 20% 0;
    
  }
  .opacity {
    padding: 20px;
    /* background: rgba(5, 7 ,12 ,0.40); */
    
  }
  .tex {
    color: #fff;
    font-weight: bold;
  }

main {
  padding-top: 50px;
}

.proyecto {
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 40px;
  font-family: 'Open Sans', sans-serif;
}
.img-proy {
  width: 90%;
  border-radius: 15% 5% 15% 5%;
  transform: scale(var(--escala, 1));
  transition: transform 0.25s;
  object-fit: cover;

  }
.img-proy:hover {
border-radius: 0;
--escala: 1.1;
filter: saturate(180%);
}

/* cartas */
.carta {
  padding: 80px 0;
}

.card:hover {
-webkit-transform:scale(1.1);transform:scale(1.1);
filter: saturate(180%);
}
.card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-body {
  height: 200px;
}

/* Footer */
footer {
  padding-top: 10px;
}
.underline {
  text-decoration: underline;
}
a {
  text-decoration: none;
  color: rgb(98, 90, 90);
}
a:hover {
  color:skyblue;
  font-weight: bold;
}

.certificado{
  text-align: center;
  padding-bottom: 10px;
}
/* Cookies */
.cookies {
  display: none;
  background-color: #333;
  color: #fff;
  z-index: 100;
}
.cookies.activo {
  display: block;
}
.margen {
  padding: 15px;
}
.cook {
  font-size: small;
}
.config-cook {
  color: skyblue;
  text-decoration: underline skyblue;
}
.btn {
  height: 30px;
}
.mod {
  color:#333;
  text-align: left;
  margin: 4%;
  font-size: 12px;
}
.r {
  border-radius: 50%;
  border-color:rgb(255, 213, 0);
  background-color: rgb(255, 213, 0);
}
/* Adaptable responsivo */
@media screen and (max-width: 760px) {
  h1 {
    font-size: 24px;
  }

  span {
    font-size: 20px;
  }

  .img-proy {
    width: 100%;
    max-height: 380px;
    padding: 20px 10px;
}
.img-proy:hover {
  --escala: 1;
  }
  .proyecto {
    line-height: 30px;
    font-size: 14px;
  }
}



