@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: rgba(255, 255, 255, 0.8980392157);
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
}

.en {
  display: none;
}

.nav {
  height: 10vh;
  background-color: #304E61;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .nav {
    width: 100%;
    top: 0px;
    position: fixed;
  }
  .nav .hamburger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 3;
  }
  .nav .line {
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0px;
  }
}

.nav-logo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 45%;
  align-items: center;
}
.nav-logo span {
  color: rgba(255, 255, 255, 0.8980392157);
  font-size: 25px;
}
@media screen and (max-width: 425px) {
  .nav-logo span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .nav-logo {
    width: 90%;
    margin: auto;
  }
}

.nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  width: 45%;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #304E61;
    clip-path: circle(13.7% at -10% -10%);
    -webkit-clip-path: circle(13.7% at -10% -10%);
    height: 100vh;
    pointer-events: none;
    position: fixed;
    transition: all 500ms ease-out;
    width: 100%;
    z-index: 2;
  }
  .nav-links.open {
    clip-path: circle(1200px at -10% -10%);
    -webkit-clip-path: circle(1200px at -10% -10%);
    pointer-events: all;
  }
  .nav-links.open a {
    opacity: 1;
  }
}
.nav-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 5px 10px;
  border-left: 10px solid #304E61;
  border-right: 10px solid #304E61;
  border-bottom: 5px solid white;
}
@media screen and (max-width: 768px) {
  .nav-links a {
    opacity: 0;
    transition: all 100ms;
    border: none;
  }
}

.header {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .header {
    margin-top: 10vh;
  }
}

.header-left {
  width: 50%;
  height: 100%;
  background-color: #304E61;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 425px) {
  .header-left {
    order: 2;
    width: 100%;
    height: 50%;
  }
}
.header-left .description {
  align-self: center;
  height: 90%;
  width: 90%;
  background-color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.header-left .description .datos {
  width: 100%;
  align-self: center;
  text-align: center;
}
.header-left .description .datos h1 {
  color: white;
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  .header-left .description .datos h1 {
    padding: 10px 0px 10px 0px;
  }
}
@media screen and (min-width: 375px) {
  .header-left .description .datos h1 {
    font-size: 35px;
  }
}
@media screen and (min-width: 425px) {
  .header-left .description .datos h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .header-left .description .datos h1 {
    font-size: 40px;
    color: #304E61;
    padding: 5px 0px;
  }
}
@media screen and (min-width: 1024px) {
  .header-left .description .datos h1 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1440px) {
  .header-left .description .datos h1 {
    font-size: 60px;
    width: 80%;
    margin: auto;
  }
}
.header-left .description .datos strong {
  font-size: 20px;
  color: #304E61;
}
@media screen and (max-width: 425px) {
  .header-left .description .datos strong {
    color: white;
    font-size: 16px;
  }
}
.header-left .description .datos p {
  margin: auto;
  text-align: start;
  width: 90%;
  font-size: 18px;
  padding: 20px 0px 0px 0px;
  color: #304E61;
}
@media screen and (max-width: 425px) {
  .header-left .description .datos p {
    color: white;
    padding: 5px 0px 0px 0px;
    font-size: 14px;
    width: 90%;
  }
}
.header-left .description .datos .redes {
  padding: 10px 0px;
  margin: auto;
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 425px) {
  .header-left .description .datos .redes {
    width: 90%;
  }
}
.header-left .description .datos .redes h4 {
  width: 100%;
  text-align: center;
  padding: 15px 0px;
  font-size: 20px;
  color: #304E61;
}
@media screen and (max-width: 425px) {
  .header-left .description .datos .redes h4 {
    color: white;
    padding: 2px 0px;
    font-size: 16px;
  }
}
.header-left .description .datos .redes i {
  font-size: 40px;
  color: #304E61;
}
@media screen and (max-width: 425px) {
  .header-left .description .datos .redes i {
    padding: 10px 0px;
    color: white;
  }
}
@media screen and (max-width: 425px) {
  .header-left .description {
    width: 100%;
    height: 100%;
    background-color: #304E61;
  }
}

.header-right {
  height: 100%;
  width: 50%;
  background-color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 425px) {
  .header-right {
    order: 1;
    width: 100%;
    height: 50%;
  }
}
.header-right .description {
  align-self: center;
  height: 90%;
  width: 90%;
  background-color: #304E61;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 425px) {
  .header-right .description {
    width: 100%;
    height: 100%;
    background-color: white;
  }
}
.header-right .description img {
  width: 75%;
  border-radius: 20px;
}
@media screen and (max-width: 425px) {
  .header-right .description img {
    width: 70%;
    border-radius: 10px;
  }
}

.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
  display: none;
}
.modal .modal-content {
  width: 50%;
  max-width: 450px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.modal .modal-content .modal-header h2 {
  color: #304E61;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .modal .modal-content .modal-header h2 {
    font-size: 28px;
  }
}
.modal .modal-content .modal-body {
  text-align: center;
  flex: 1;
}
.modal .modal-content .modal-body p {
  color: #304E61;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .modal .modal-content .modal-body p {
    font-size: 18px;
  }
}
.modal .modal-content .modal-body .modal-body_icon {
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .modal .modal-content .modal-body .modal-body_icon {
    width: 220px;
    height: 220px;
  }
}
@media screen and (max-width: 425px) {
  .modal .modal-content .modal-body .modal-body_icon {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 320px) {
  .modal .modal-content .modal-body .modal-body_icon {
    width: 150px;
    height: 150px;
  }
}
.modal .modal-content .modal-body button {
  padding: 10px 20px;
  background-color: #304E61;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .modal .modal-content {
    width: 80%;
  }
}

.main {
  width: 100%;
  background-image: linear-gradient(90deg, rgba(36, 52, 84, 0.9) 30%, rgba(36, 52, 84, 0.7) 40%, rgba(36, 52, 84, 0.9) 30%), url("../img/markus-spiske-AaEQmoufHLk-unsplash.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.main .main-contenido {
  width: 90%;
  margin: auto;
}
.main .main-contenido h3 {
  padding: 40px 0px;
  width: 100%;
  font-size: 44px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8980392157);
}
.main .main-contenido .proyectos {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main .main-contenido .proyectos .proyecto {
  width: 30%;
  transition: all 500ms;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 425px) {
  .main .main-contenido .proyectos .proyecto {
    margin-top: 30px;
    width: 100%;
  }
}
.main .main-contenido .proyectos .proyecto::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 128, 128, 0.5);
  transform: translateY(0%);
  transition: all 500ms;
}
.main .main-contenido .proyectos .proyecto img {
  width: 100%;
}
.main .main-contenido .proyectos .proyecto:hover {
  transform: scale(1.05);
  opacity: 1;
}
.main .main-contenido .proyectos .proyecto:hover::before {
  transform: translateY(-100%);
}

/*# sourceMappingURL=index.css.map */
