/* --------------- GENERAL ---------------- */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  width: 100%;
}
/* ------------------------------------ */

/* --------------- SCROLL BAR ---------------- */
html {
  overflow: scroll;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
/* ------------------------------------ */

/* --------------- HEADER ---------------- */
header {
  background-color: transparent;
  height: 3.5em;
  display: flex;
  align-items: center;
  padding: 10px 0px;
  position: sticky;
  top: 0;
  justify-content: space-between;
  transition: background-color 0.4s ease-in-out;
}

header.scrolled {
  background-color: white;
  opacity: 0.98;
}

.OrkaLogo {
  display: flex;
  align-items: center;
  padding: 10px 0px 5px 25px;
}

.OrkaLogo img {
  max-width: 100px;
}

.content {
  max-width: 40rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  text-align: center;
}
/* ------------------------------------ */

/* --------------- MAIN ---------------- */
.Main {
  background-image: url("Images/image 6.png");
  background-size: cover;
  background-position: center;
  height: calc(100vh + 5em);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -5em;
}

.Overlay {
  color: white;
}

.Overlay h1 {
  font-size: 5em;
  margin-bottom: 10px;
}

.Overlay p {
  font-size: 2.5em;
  margin: 6px 0 26px 0;
}
/* ------------------------------------ */

/* --------------- BOTóN ---------------- */
.boton {
  background-color: #2d479e;
  color: white;
  border: none;
  padding: 25px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2.2em;
  border-radius: 20px;
  cursor: pointer;
}

.boton:hover {
  background-color: #1d3480;
}
/* ------------------------------------ */

/* --------------- CONTENIDO ---------------- */
.Contenido {
  width: 100%;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: auto;
}

.Contenido-Columnas {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  max-width: 2500px;
  height: auto;
}

.Contenido-Columnas-Columna-1 {
  height: auto;
  display: flex;
  flex-direction: row nowrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.Contenido-Columnas-Columna-1 figure {
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 15px 0 15px;
}

.Contenido-Columnas-Columna-1 figure img {
  max-width: 100%;
  height: auto;
  padding: 35px;
}

.Contenido-Columnas-Columna-2 {
  padding: 10px;
  height: auto;
}

.Contenido-Columnas-Columna-2 h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.Contenido-Columnas-Columna-2 p {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: justify;
  text-indent: 25px;
}

/* Lista */
.listas {
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
}
/* ------------------------------------ */

/* --------------- POWERED BY ---------------- */
.Power {
  position: sticky;
  display: flex;
  flex-direction: column-reverse;
  justify-content: right;
  background-color: white;
}

.col {
  width: auto;
  display: flex;
  flex-direction: column nowrap;
  justify-content: right;
  align-items: center;
  padding-right: 15px;
}

.col p {
  display: flex;
  margin: 0 0 5px 0;
}

.col img {
  max-height: 30px;
  align-items: center;
}
/* ------------------------------------ */

/* --------------- FOOTER ---------------- */
footer {
  width: 100%;
  background-color: #2d479e;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  height: auto;
}

.Footer-Grupo {
  width: 100%;
  background-color: #2d479e;
  max-width: 2000px;
  margin: 6.25px 80px 6.25 80px;
  display: grid;
  grid-template-columns: 1fr 20% 1fr;
  grid-gap: 50px;
  padding: 10px 100px 10px 100px;
  height: auto;
}

.Footer-Grupo-Columna-Left figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px 0 15px;
}

.Footer-Grupo-Columna-Left figure img {
  height: 40px;
}

.Footer-Grupo-Columna-Center figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px 0 15px;
}

.Footer-Grupo-Columna-Center img {
  display: flex;
  max-width: 45px;
  text-align: center;
}

.Footer-Grupo-Columna-Right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Footer-Grupo-Columna-Right p {
  display: flex;
  width: 100%;
  padding: 0 15px 0 15px;
  text-align: right;
  color: #ffffff;
  font-family: "Karla", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 23.38px;
  margin: 0;
}

.Footer-Disclaimer {
  background-color: #2d479e;
  padding-top: 10px;
  text-align: center;
  color: white;
  width: 100%;
}

.Footer-Disclaimer small {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
/* ------------------------------------ */

/* --------------- MEDIA ---------------- */
@media screen and (max-width: 768px) {
  .Overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  .Overlay p {
    font-size: 1.8em;
    margin: 6px 0 26px 0;
  }
  /* ------------------------------------ */
  .boton {
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.5em;
    border-radius: 20px;
    cursor: pointer;
  }
  /* ------------------------------------ */
  .Footer-Grupo {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
    padding: 15px 0 0 0;
    margin-bottom: 10px;
  }
  .Footer-Grupo-Columna-Right {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .Footer-Grupo-Columna-Right p {
    text-align: center;
  }
  /* ------------------------------------ */
  .Contenido-Columnas {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .Footer-Grupo {
    width: 90%;
    padding: 0;
    grid-gap: auto;
  }
}

/* ------------------------------------ */
