* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-color: lightgray;
}
.nav-bar {
  width: 80%;
  height: 70px;
  margin: auto;
  background-color: gray;
  margin-top: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-bar ul {
  color: white;
  list-style: none;
}
.nav-bar ul li {
  display: inline;
  margin: 0 30px;
  font-size: 1.2rem;
}
.nav-bar ul li:hover {
  cursor: pointer;
  background-color: white;
  color: grey;
}
.main-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  height: 100%;
  background-color: lightgrey;
  align-items: center;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-wrapper input {
  width: 300px;
  height: 35px;
  border: 1px solid gray;
  margin: 10px 0;
  border-radius: 6px;
  outline: none;
  text-align: center;
}
.form-wrapper p {
  text-align: center;
  margin-bottom: 20px;
  color: grey;
  font-size: 1.1rem;
  width: 70%;
}
textarea {
  width: 300px;
}
.form-wrapper button {
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: white;
  color: grey;
  margin-top: 15px;
}
#map {
  height: 350px;
  width: 600px;
  border-radius: 10px;
}
.info {
  width: 100%;
  height: 370px;
  background-color: white;
}
.info img {
  width: 300px;
  height: 60px;
  background-color: white;
  padding: 10px;
}
.info-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.info-wrapper p {
  text-align: left;
  font-size: 1.2rem;
  line-height: 25px;
  color: grey;
  font-weight: bolder;
}
.info-firma-wrapper {
  width: 100%;
  margin-top: 20px;
  color: grey;
  font-size: 1.1rem;
  background-color: white;
  margin-left: 20px;
}
.info-firma-wrapper p {
  line-height: 30px;
}
@media screen and (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
  .nav-bar {
    width: 100%;
    justify-content: flex-start;
  }
  .nav-bar ul li {
    font-size: 1rem;
    margin: 0 20px;
  }
  #map {
    width: 100%;
  }
  .form-wrapper {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .info-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  .info-wrapper p {
    font-size: 1.1rem;
    width: 90%;
  }
  .info-firma-wrapper {
    width: 100%;
    padding: 10px;
  }
  .info {
    height: 500px;
  }
}
