* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("../img/fondoaltitud.png");
  background-size: cover;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #23315E;
}

.logo {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
.logo img {
  width: 177px;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* flex-flow: row nowrap; */
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: stretch;
  height: 100%;
  gap: 0px;
  width: 90%;
  margin: auto;
  margin-top: 20px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0px 16px 16px hsla(0, 0%, 0%, 0.03);
  max-width: 250px;
}

.flex-container:hover {
  box-shadow: 1px 16px 16px hsla(0, 0%, 0%, 0.07);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.flex-container > div {
  padding: 10px;
  height: 60px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.item1 {
  /* flex:1 1 auto; */
  /*flex-grow:1;*/
  border-radius: 100px 0px 0px 100px;
  text-align: center;
  background-color: #0274bb;
  cursor: pointer;
}
.item1 .inside {
  width: 40px !important;
  padding: 5px;
  height: 100%;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item2 {
  /* flex:3 1 auto; */
  flex-grow: 3;
  text-align: center;
  border-radius: 0px 100px 100px 0px;
  background: rgb(2, 116, 187);
  background: linear-gradient(90deg, rgb(2, 116, 187) 0%, rgb(48, 171, 226) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 40px;
  cursor: pointer;
  margin-left: -17px;
}

.footer {
  background-color: white;
  margin-top: 80px;
}
.footer .footer-container {
  width: 90%;
  margin: auto;
  padding: 20px 0px;
}
.footer .footer-container .ciudad {
  color: #23315E;
}
.footer .footer-container .direccion {
  color: #7B7B7B;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
}
.footer .footer-container .detalle {
  color: #7B7B7B;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
}
.footer .footer-container .legal {
  color: #7B7B7B;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 600px) {
  /* OVER 600px CSS here, es la parte de Desktop */
  body {
    background-position: 90% 40%;
    background-size: 60%;
    background-repeat: no-repeat;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    max-width: 400px;
    margin: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .flex-container {
    max-width: 400px;
  }
  .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    margin-top: 80px;
  }
  .footer .footer-container {
    max-width: 600px;
  }
}/*# sourceMappingURL=styles.css.map */