html,
body {
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;

}


.container {

  margin: 0px;
  padding: 0px;
  padding-top: 31px;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
  background-color: white;

}



header {
  background-color: #004aad;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

.atention {
  min-height: 220px;
  display: flex;
  flex-flow: row wrap;
  background-color: white;
  justify-content: center;
  padding: 11px;
}

@media screen and (max-width:767px) {

  .atention {
    width: 100%;
  }
}


@media screen and (min-width:768px) {

  .atention {
    max-width: 48%;
  }
}


.atention img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


#atentionTitle {
  width: 100%;
  height: 40px;
  text-align: center;
  overflow-wrap: break-word;
}

#listQuestionsBox {
  width: 100%;
  height: 40px;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;

}

#listResponseBox {
  width: 100%;
  height: 0px;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 31px;
  flex-flow: row wrap;
  overflow-y: hidden;
}

#listResponseBox:hover {
  transition: all 0.5;
  height: 0px;
}

#listQuestionsBox>select {
  width: 100%;
  height: 30px;
  color: grey;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
}

#listResponseBox>p {
  width: 98%;
  min-height: 100px;
  color: grey;
  box-sizing: border-box;
  margin: 0px;
  padding: 11px;
  background-color: white;
  display: none;
}

.info {
  margin: 0px;
  box-sizing: border-box;
  flex-flow: row wrap;
  max-width: 480px;
  min-height: 120px;
  display: flex;
  background: white;
  padding: 5%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info h2 {
  color: #004aad;
  margin-top: 0;
}

.info p {
  margin: 0.5rem 0;
}

.mapa {
  margin: 0px;
  padding: 11px;
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-flow: row wrap;
}

.mapa iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}


.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

footer {
  width: 100%;
  min-height: 30px;
  overflow-wrap: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: transparent;
  color: white;
  margin-top: 2rem;
}