/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: "Futura Std Book";
  background-color: white;
}
a {
  color: white;
  text-decoration: none; 
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  margin: auto;
}
/* Navigation */
.nav-main {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 50px 0px;
  background: #008b9a;
  width: 100%;
}
.nav-brand {
  width: 185px;
  border-radius: 0px 40px 40px 0px;
}
.nav-brands {
  width: 185px;
  border-radius: 40px 0px 0px 40px;
}
/* Navbar Left */
.nav-main ul {
  display: flex;

}
.nav-main ul li {
  padding: 10px;
}
.nav-menu li ul{
  display: none;
  position: absolute;
  background: #008b9ac9;
  border-radius: 10px;
}
.nav-menu li:hover > ul {
  display: block;
}
.nav-main ul li a {
  padding: 2px;
}
.nav-main ul li a:hover {
border: solid 3px #F38120;
border-radius: 7px;
}
.nav-main ul.nav-menu {
  flex: 1;
  margin-left: 20px;
}
/* Responsive Button */
.menu-btn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
  display: none;
}
/* SHOWCASE */
.btn {
  cursor: pointer;
  display: inline-block;
  border: 0;
  font-weight: bold;
  padding: 10px 20px;
  background: #262626;
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
}
.btn:hover {
  opacity: 0.9;
}

.video {
  width: 100%;
}
/* News Cards */
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 70px 0;

}

.news-cards img {
  width: 100%;
  height: 260px;
  border-radius: 60px 0px 60px 0px;

}

.gallery-container h3 {
  font-size: 20px; 
  margin: 10px 0;
  color: #F38120;
}

.news-cards a {
  border: none;
  outline: none;
  height: 40px;
  background:  rgba(10, 10, 10, 0.014);
  color: #F38120;
  font-size: 18px;
  border-radius: 5px;
}
.news-cards a:hover  {
  cursor: pointer;
  background: #F38120;
  color: #000;
}



/* Links */
.footer-links {
  background: black;
  color: #616161;
  font-size: 12px;
  padding: 35px 0;
  font-weight: bold;
}

.footer-container {
  background: #ece9e9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: -2.5%;
}

.footer-container ul {
  margin: 0 auto;
}

.footer-links li {
  line-height: 2.8;

}
.footer-links li:hover{
  border: solid 3px #008b9a;
  border-radius: 5px;
}
.footer-links {
  background: white;
  color: #616161;
  font-size: 12px;
  padding: 35px 0;
  font-weight: bold;
}

.foote-container {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
  margin-left: 100px;
  margin-right: 100px;

}

.foote-container ul {
  margin: 0 auto;
}

.foote-links li {
  line-height: 1;

}
.foote-links li:hover{
  border: solid 3px #008b9a;
  border-radius: 5px;
}
.foote-links {
  background: #F38120;
  color: black;
  font-size: 12px;
  padding: 35px 0;
  font-weight: bold;
}
  .footer {
  background: #008b9a;
  color: white;
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  padding-bottom: 20px;

}
/* Mobil */
@media (max-width: 1300px) {
  .menu-btn {
    display: block;
    background-color: white;
  }

  .menu-btn:hover {
    opacity: 0.5;
  }

  .nav-main ul.nav-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0; 
    background: #2f3640;
    width: 50%;
    height: 80%;
    border-right: #ccc 1px solid;
    opacity: 0.9;
    padding: 30px;
    transform: translateX(-1300px);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
  }


  .nav-main ul.nav-menu li {
    padding: 20px;
    border-bottom: #ccc solid 1px;
    font-size: 14px;
  }
  .nav-main ul.nav-menu li:last-child {
    border-bottom: 0;
  }

  .nav-main ul.nav-menu.show {
    transform: translateX(-20px);
  }

  .nav-main ul.nav-menu-right {
    margin-right: 50px;
  }

  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-banner-one .content,
  .cards-banner-two .content {
    width: 80%;
  }

} 

@media (max-width: 1000px) {
  .footer-links .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-links .footer-container ul {
    text-align: center;
  }
  .foote-links .foote-container {
    grid-template-columns: 1fr;
  }

  .foote-links .foote-container ul {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .news-cards {
    grid-template-columns: 1fr;
  }

  .cards-banner-one .content,
  .cards-banner-two .content {
    width: 100%;
    padding: 60px 20px;
  }
  .footer-links .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links .footer-container ul {
    text-align: center;
  }
  .foote-links .foote-container {
    grid-template-columns: 1fr;
  }

  .foote-links .foote-container ul {
    text-align: center;
  }
}

#menu ul li {
    background-color:#2e518b;
}

#menu ul {
  list-style:none;
  margin:0;
  padding:0;
}

#menu ul a {
  display:block;
  color:#fff;
  text-decoration:none;
  font-weight:400;
  font-size:15px;
  padding:10px;
  font-family:"HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform:uppercase;
  letter-spacing:1px;
}

#menu ul li {
  position:relative;
  float:left;
  margin:0;
  padding:0;
}

#menu ul li:hover {
  background:#5b78a7;
}

#menu ul ul {
  display:none;
  position:absolute;
  top:100%;
  left:0;
  padding:0;
}

#menu ul ul li {
  float:none;
  width:150px
}

#menu ul ul a {
  line-height:120%;
  padding:10px 15px;
}

#menu ul li:hover > ul {
  display:block;
}



.imgRedonda {
  width:70px;
  height:70px;
  border-radius:150px;
  }
  .form {
  padding: 25px;
  background: white;
  text-align: center;
  }
  .h33{
    font-style: oblique;
    color: #008b9a;
  }
  .linea{
    height: 4px;
    background-color: #008080;
  }
  .rh{
  height: 5vh;
  width: .2vw;
  border-width: 0;
  color: 000;
  background-color: #000;
  padding: 0;
  }
  .gallery-container{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
  }
  .gallery-item{
    box-sizing:border-box;
    width:100%;
    width:100%;
    overflow:hidden;
    border:2px solid rgba(255,255,255,0.7);
    position:relative;
    cursor:pointer;
    margin:1em
  }
    @media screen and (min-width: 800px){
        .gallery-item{
            width:-webkit-calc(50% - 2em);
            width:calc(50% - 2em)
            
        }
    }@media screen and (min-width: 1000px){
        .gallery-item{
            width:-webkit-calc(50% - 2em);
            width:calc(50% - 2em)
        }
    }.gallery-item img{
        width:100%;
        height: 70%; 
        border-radius: 60px 0px 60px 0px;
        display:block;
        -webkit-transition:all 0.4s;
        transition:all 0.4s
    }
        .gallery-item:hover img{
            -webkit-transform:scale(1.3);
            -ms-transform:scale(1.3);
            transform:scale(1.3)
        }.gallery-item:hover:after{
            opacity:1;
            -webkit-transform:scale(1);
            -ms-transform:scale(1);
            transform:scale(1)
        }
        .gallery-item:after{
          content:"Click para mas detalles" ;
          color: white;
          font-size: 40px;
          position:absolute;
          top:100px;
          left: 25%;
          bottom: 100px;
          width:50%;
          height:30%;
          border-radius: 60px 60px 60px 60px;
          background:url(img/gallery.png) center center/3em 3em no-repeat rgba(0, 0, 0, 0.829);
          opacity:0;-webkit-transform:scale(0.1);
          -ms-transform:scale(0.1);transform:scale(0.1);
          -webkit-transition:all 0.4s;transition:all 0.4s
        }
        .colorcito{
          background: #ece9e9;
        
          padding: 10px;
        } 