@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* body {
  min-height: 1000px;
} */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  z-index: 1000;
  transition: 0.6s;
}
header.sticky {
  padding: 5px 100px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
header .logo img {
  position: relative;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: invert(100%)
} 
header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 300;
  transition: 0.6;
}
header.sticky .logo {
  filter: invert(100%);
  width: 70px;
}
header.sticky .logo,
header.sticky ul li a {
  color: #000;
}
.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url(img/Principal.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px;
}
.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* justify-content: center; */
  align-items: center;
}
.content .textBox {
  position: relative;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}
.content .textBox h2 {
  color: #fff;
  font-size: 2em;
  line-height: 1.5em;
  font-weight: 300;
  /* text-transform: uppercase; */
}
.content .textBox h2 span {
  font-size: 1.5em;
}
.content .textBox p {
  color: #fff;
  text-align: justify;
}

/* Contact */
.contact {
  background: #000;
  padding: 20px;
} 
.contact p {
  color: #fff;
}
.content-cont {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.copyright a {
  color: #fff;
}
.toggle {
  display: none;
}
@media (max-width: 992px) {
  .toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .toggle::before {
    content: '';
    position: absolute;
    top: 4px;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 1;
    box-shadow: 0 10px 0 #000;
    transform: 0.5s;
  }
  .toggle::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 1;
    transform: 0.5s;
  }
  header,
  header.sticly {
    padding: 5px 50px;
    background: #fff;
  }
  header ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: auto;
    background: #fff;
    visibility: hidden;
    opacity: 0;
  }
  header.active ul {
    visibility: visible;
    opacity: 1;
    display: block;
    padding-top: 20px;
  }
  header.active ul li a {
    display: inline-block;
    margin: 10px 0;
    font-size: 20px;
  }
  header .logo,
  header ul li a {
    color: #000;
  }
  .banner {
    background-position: center;
  }
  .banner h2 {
    font-size: 30px;
    padding: 0 50px;
  }
  header .logo img {
    width: 60px;
  }
  header .logo {
    filter: invert(100%);
  }
  .content {
    justify-content: center;
  }
}