* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: url(./img/bgd.jpg);
  background-size: cover;
  backdrop-filter: blur(4px);
  background-attachment: fixed;
}

.logos {
  width: 100%;
  padding-top: 40px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.logos img {
  width: 300px;
}

#texto {
  width: 80%;
  margin: auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: white;
}

#texto h1 {
  font-weight: 700;
  font-style: normal;
  font-size: 80px;
}

#texto h2 {
  padding: 20px;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
}

#consultas {
  margin: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

#consultas #tarjeta {
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 500px;
  height: auto;
  padding: 20px;
  border-radius: 50px;
  gap: 30px;
}

i {
  color: black;
  font-size: 100px;
  margin: 10px;
}

#consultas #tarjeta p {
  font-size: 25px;
  color: black;
  font-weight: 300;
}

#consultas #tarjeta a {
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  background-color: orange;
  padding: 10px;
  text-decoration: none;
  color: white;
  border-radius: 99px;
  width: 300px;
  transition: all 100ms;
}

#consultas #tarjeta a:hover {
  background-color: brown;
  transform: scale(1.1);
  font-weight: bold;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 70px;
  color: white;
  padding: 20px;
  text-align: center;
}

#contacto {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

#contacto .tarjeta-contacto i {
  font-size: 100px;
  color: white;
  margin: 30px;
}

#contacto .tarjeta-contacto p {
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
}

#Donde {
  background-color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

#Donde h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 70px;
  color: white;
  padding: 20px;
  text-align: center;
  width: 100%;
}

#Donde #mapa p {
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
}

#Donde a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  margin: 5px;
  width: 100%;
}

#Donde a i {
  text-decoration: none;
  color: white;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  #texto h1 {
    font-size: 40px;
  }

  #texto h2 {
    font-size: 30px;
  }

  #contacto .tarjeta-contacto i {
    font-size: 70px;
  }
}
