/* GLOBAL RESET + FONTS */
body {
  font-family: 'source-sans-pro', sans-serif;
  background-color: #f2f2f2;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: auto;
  background-color: #fff;
}

/* NAVIGATION */
header {
    background-color: #fff;
    border-bottom: 1px solid #FFFFFF;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav ul li {
  margin: 10px;
}

nav ul li a {
  color: #394c97;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  width: 100%;
  overflow: hidden;
}

.cabecera {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ABOUT */
.about {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.text_column2 {
  flex: 0 0 60%;
  text-align: justify;
  font-weight: 300;
  line-height: 1.6;
  color: #000;
  font-size: 1.2rem;
}

.text_column {
  flex: 0 0 35%;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  padding: 20px;
  background-color: #394c97;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .about {
    flex-direction: column;
  }

  .text_column2, .text_column {
    flex: 0 0 100%;
  }
}
