* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  font-family: sans-serif;
}
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

p a {
  display: inline;
}
li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(./assets/background/fondo.webp);
  background-size: cover;
}

/* ------------------------Header------------------------------ */
.header {
  width: 80%;
  max-width: 1100px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  /* background-color: red; */
  display: flex;
  border-radius: 20px;
  padding: 20px;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ffff;
  margin-top: 10px;
}

.header-logo {
  margin-right: 20px;
  object-fit: cover;
  width: 180px;
}

.header .menu {
  margin-left: 100px;
  width: 50%;
  backdrop-filter: blur(50px);

  /* background-color: blueviolet; */
}

.header .menu-ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.header .li {
  margin: 0.5em;
}

.header .button {
  display: none;
}
/* -------banner sobre nostros------ */

.sobre-banner {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  width: 80%;
  max-width: 1366px;
  height: 100%;
  justify-content: center;
  /* background-color: red; */
}

.sobre-texto {
  width: 50%;
  padding: 20px;
  padding-top: 80px;
}
.sobre-texto p {
  margin-top: 30px;
  font-size: 18px;
  width: 70%;
  text-align: justify;
  color: #a39eaa;
}

.sobre-texto h3 {
  font-size: 30px;
  width: 60%;
  color: #123467;
}

.sobre-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-img img {
  height: 300px;
  width: 300px;
  border-radius: 200px;
  position: absolute;
  z-index: 1;
  margin-left: 20px;
}
.container-img {
  position: relative;
  width: 400px;
  height: 400px;
  /* background-color: #3e96fc; */
}

.sobre-exp-img {
  margin-top: 200px;
}

.years-texto {
  position: absolute;
  z-index: 2;
  margin-left: 100px;
  margin-top: 30px;
  color: white;
}
.years {
  /* margin-top: 200px; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 200px;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 5px 0px rgba(62, 150, 252, 1);
  font-size: 40px;
}

.years p {
  color: #3e96fc;
}

/* --------valores-------- */
.etica {
  margin-top: 40px;
  width: 1200px;
  height: 100%;
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.etica div {
  /* min-width: 300px; */
  width: 400px;
  height: 400px;
}

.tarjeta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.tarjeta i {
  font-size: 90px;
}

.tarjeta p {
  margin-top: 30px;
  text-align: center;
}
.tarjeta ol {
  margin-top: 30px;
}

.valores {
  /* background-color: #3e96fc; */
  border-right: 5px solid black;
}
.mision {
  /* background-color: green; */
  border-right: 5px solid black;
}

.vision {
  /* background-color: gray; */
}
/* ---------------------------footer------------------------------- */
.footer {
  /* border-top: 1px solid black; */
  margin-top: 50px;
  width: 100%;
  height: 100%;
  /* background-color: #fff; */
  padding: 50px;
}
.footer-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: red; */
  height: 100%;
  flex-wrap: wrap;
  border-bottom: 2px solid #b2b2b2;
  padding-bottom: 10px;
}
.footer-logo {
  width: 150px;
  height: 100%;
  /* background-color: #123467; */
}
.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-info {
  /* background-color: blue; */

  display: flex;
  flex-direction: row;
  width: 50%;
  height: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.redes-sociales {
  display: flex;
  flex-direction: row;
  width: 100px;
  height: 100%;
  /* background-color: #3e96fc; */
  justify-content: center;
}
.redes-sociales a {
  font-size: 20px;
  padding: 5px;
}

.footer-termino {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 10px;
}

/* --------medias------ */

@media (max-width: 1210px) {
  .sobre-texto h3 {
    font-size: 30px;
    width: 90%;
  }
  .sobre-texto p {
    width: 100%;
  }
  .etica {
    width: 950px;
  }
  .mision {
    border-right: 0;
  }
}

@media (max-width: 1010px) {
  .mision {
    border-right: 0;
  }
}

@media (max-width: 865px) {
  .header {
    width: 100%;
  }
  .header-logo {
    margin-right: 20px;
    object-fit: cover;
    width: 180px;
  }

  .header .menu {
    width: 100%;
    display: none;
    /* background-color: blueviolet; */
    height: 0;
    transition: all 0.5s ease;
  }

  .header .menu.activo {
    width: 100%;
    display: block;
    /* background-color: blueviolet; */
    margin-left: 0px;
    height: 14vh;
  }
  .header .menu-ul {
    flex-direction: column;
  }

  .header .li {
    text-align: center;
    margin: 0.5em;
    width: 100%;
    height: 20px;
  }

  .header li:hover {
    background-color: rgba(0, 0, 0, 0.25);
  }
  .header .button {
    display: block;
    margin-right: 20px;
    background-color: white;
  }
  /* ------banner--- */
  .sobre-texto h3 {
    font-size: 30px;
    width: 100%;
  }
  .sobre-texto p {
    width: 100%;
  }
  .container-img {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
  }
  /* //////etica */
  .etica {
    width: 80%;
  }
  .etica div {
    border-bottom: 5px solid black;
  }
  .valores {
    border-right: 0;
  }
}
/* ---//////diuseño repsonvio banner----- */
@media (max-width: 640px) {
  .sobre-banner {
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    height: 100%;
    max-width: 1366px;
  }

  .sobre-texto {
    width: 100%;
    justify-content: center;
  }
  .sobre-texto p {
    margin-top: 30px;
    font-size: 18px;
    width: 100%;
  }

  .sobre-texto h3 {
    font-size: 30px;
    width: 100%;
    text-align: center;
  }

  .sobre-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sobre-img img {
    height: 300px;
    width: 300px;
    border-radius: 200px;
    position: absolute;
    z-index: 1;
    margin-left: 20px;
  }
  .container-img {
    position: relative;
    width: 400px;
    height: 400px;
    /* background-color: #3e96fc; */
    display: flex;
    justify-content: center;
  }

  .sobre-exp-img {
    margin-top: 200px;
  }

  .years-texto {
    position: absolute;
    z-index: 2;
    margin-left: 100px;
    margin-top: 30px;
    color: white;
  }
  .years {
    /* margin-top: 200px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100px;
    width: 100px;
    border-radius: 200px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 5px 0px rgba(62, 150, 252, 1);
    font-size: 40px;
  }

  .years p {
    color: #3e96fc;
  }
}

@media (max-width: 416px) {
  /* --------footer--- */
  .footer-body {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    height: 100%;
    width: 100%;

    flex-wrap: wrap;
    border-bottom: 20px solid #0000;
  }
  .footer-logo {
    width: 100%;
    height: 100%;
    /* background-color: #123467; */
  }
  .footer-logo img {
    width: 100%;
    height: 100%;
  }

  .footer-info {
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .redes-sociales {
    display: flex;
    flex-direction: row;
    width: 100px;
    height: 100%;
    /* background-color: #3e96fc; */
    justify-content: center;
  }
  .redes-sociales a {
    font-size: 20px;
    padding: 5px;
  }

  .footer-termino {
    display: flex;
    flex-wrap: wrap;
  }
  /* -----baner img--- */
  .sobre-img img {
    height: 250px;
    width: 250px;
    border-radius: 200px;
    position: absolute;
    z-index: 1;
    margin-left: 20px;
  }
}
