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

body {
  background-color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logo {
  text-align: center;
  margin-top: 50px;
  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: 10px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0px 16px 16px hsla(0, 98%, 48%, 0.03);
}

.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);
  opacity: 0.7;
}

.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: 10px 0px 0px 10px;
  text-align: center;
  background-color: #120c0c;
  cursor: pointer;
}
.item1 .inside {
  width: 40px !important;
  background-color: #120c0c;
  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 10px 10px 0px;
  background: #120c0c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 40px;
  cursor: pointer;
}

.footer {
  background-color: white;
  margin-top: 80px;
}
.footer .footer-container {
  width: 90%;
  margin: auto;
  padding: 20px 0px;
}
.footer .footer-container .ciudad {
  color: #41C0F0;
}
.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 500px CSS here */
  body {
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    max-width: 600px;
    margin: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    margin-top: 80px;
  }
  .footer .footer-container {
    max-width: 600px;
  }
}
.headercontainer {
  background-image: url("../img/squat.jpeg");
  height: 200px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.headercontainerlevantamiento {
  background-image: url("../img/bench.jpeg");
  height: 200px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.textocontainer {
  padding: 30px;
}
.textocontainer p {
  color: white;
  font-size: 15px;
  letter-spacing: 0pt;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.textocontainer > p:nth-child(1) {
  font-size: 25px;
}

.botonvolver {
  position: fixed;
  background-color: #120c0c;
  padding: 15px;
  margin: 5px;
  border-radius: 5px;
  color: white;
  background: #120c0c;
}/*# sourceMappingURL=styles.css.map */