/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Oswald", sans-serif;
  background-color: #ffffff; 
  color: rgb(192, 190, 190);
  font-size: 16px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  margin: auto;
  position: fixed;
  background-color: rgba(167, 167, 167, 0.6);
}

/* Navigation */
.nav-main {
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0px 0;
}

.nav-brand {
  width: 180px;
  padding-left: 15px;
}

/* Navbar Left */
.nav-main ul {
  display: flex;
}

.nav-main ul li {
  padding: 10px;
}

.nav-main ul li a {
  padding: 2px;
}

.nav-main ul li a:hover {
  border-bottom: 2px solid #fff;
  background-color: rgba(167, 167, 167, 0.6);
}

.nav-menu li ul {
  display:none;
  position:absolute;
  min-width:140px;
  background-color: rgba(167, 167, 167, 0.6);
}

.nav-menu li:hover > ul {
  display:block;
}

.nav-menu li ul li {
  position:relative;
}
.nav-main ul.nav-menu {
  flex: 1;
  margin-left: 20px;
}

hr {
  margin: 10px 0;
}

/* Responsive Button */
.menu-btn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
  display: none;
  color: #ffffff
}

.showcase {
  width: 100%;
  height: 900px;
  padding: 50px;
  background-image: url("./img/img_header4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-right: 0px;
}

.showcase h1 {
  color: #ff8000;
}

.showcase p {
  color: #797979;
}

.showcase h2,
.showcase p {
  margin-bottom: 10px;
}

.showcase .btn {
  margin-top: 20px;
}

/* News Cards */
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 70px 0;
  height: 450px;
  padding: 30px;
}

.news-cards img {
  width: 100%;
  height: 280px;
}

.news-cards h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #ff8000;
}

.news-cards a {
  padding: 10px 0;
  color: #f2f2f2;
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
}

.news-cards a {
  color: #ff8000;
  padding-left: 100px;
}


/* CARDS BANNER TWO*/
.cards-banner-two {
  width: 100%;
  height: 650px;
  background: url("./img/portfolio.jpg") no-repeat center center/cover;
  color: #ff8000;
  display: table;
  font-weight: bold;
}
  
.cards-banner-two h1 {
  font-size: 50px;
}

.cards-banner-two .content {
  display: table-cell;
  width: 100%;
  text-align: center; 
  vertical-align: middle;
}

/* Follow */
.social {
  margin: 50px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.social p {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.links {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Footer Links */
.footer-links {
  background: #c0bebe;
  color: #616161;
  font-size: 12px;
  padding: 35px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: flex-start;
  justify-content: center;
}

.footer-container ul {
  margin: 0 auto;
}

.footer-links li {
  line-height: 2.8;
}
/* Footer */
.footer {
  background: #c0bebe;
  font-size: 12px;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  font-size: 1rem;
  padding-bottom: 20px;
}

/* Mobil */
@media (max-width: 700px) {
  .menu-btn {
    display: block;
    position: fixed;
  }

  .menu-btn:hover {
    opacity: 0.5;
  }

  .nav-main ul.nav-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    border-right: #ccc 1px solid;
    opacity: 0.9;
    padding: 30px;
    transform: translateX(-500px);
    transition: transform 0.5s ease-in-out;
  }

  .nav-main ul.nav-menu li {
    padding: 20px;
    background-color: rgba(47, 54, 64, 0.6);
    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);
    width: 100%;
    height: 1350px;

  }

  .cards-banner-one .content,
  .cards-banner-two .content {
    width: 80%;
  }

  .footer-links .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@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;
  }
}






#formulario {
  background-color: rgba(167, 167, 167, 0.6);
  width: 400px;
  padding: 20px;
  border-radius: 10px;
  margin: 0px auto 0 auto;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-family: sans-serif;
}

button[type="submit"] {
  background-color: #008CBA;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}