header {
  background-image: url("images/bg-header-mobile.png");
  background-position: center;
  background-size: cover;
  height: 30vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  header {
    background-image: url("images/bg-header-desktop.png");
    height: 40vh;
  }
}
header img {
  width: 300px;
  display: block;
  margin: auto auto;
}
h2 {
  font-size: 40px;
  text-align: center;
  font-family: "gotham-rounded-book";
  color: #333;
  margin: auto auto;
  padding: 1em;
}
#Contact-Section {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#Contact-Section a{
    color: black;
    cursor:pointer;
}
#Person2,
#Person1,
#Person3 {
  width: 150px;
  height: auto;
  margin: 1rem;
  padding: 10px;

  box-shadow: 4px 4px #eceff2;
  
  font-family: "gotham-rounded-book";
  border-radius: 20px;
}
#Person2 h3,
#Person1 h3,
#Person3 h3 {
  color: #4a4949;
}
.fa-whatsapp {
  color: green;
  margin-right: 10px;
}
.Garrage-Gallery {
  overflow-x: auto;
  padding: 1em;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 100px;
}
.Garrage-Gallery::-webkit-scrollbar {
  display: none;
}
.group {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
  padding-right: 1em;
}
.card {
  width: 300px;
  flex: 0 0 5em;
}
@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}
#Location {
  display: flex;
  flex-wrap: wrap;
  background: #333;
  padding: 1em;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 2em;
}
.Location-Description {
  padding: 1rem;
  font-family: "gotham-rounded-book";
  max-width: 300px;
  color: #a4a2a2;
}
.Location-Description h2{
    font-size: 35px;
    color: white;
    text-align: center;
}
@font-face {
  font-family: "gotham-rounded-book";
  src: url("fonts/Gotham/gotham-rounded-book.otf");
}
iframe{
    width: 400px;
    height: 400px;
    border-radius: 10px;
}