@media only screen and (max-width: 1220px) {
  .location_details {
    flex-direction: column;
  }
  .location_details .details {
    max-width: 400px !important;
    width: 100% !important;
  }
  .locations iframe {
    display: none;
  }
}
html {
  font-family: "Roboto", sans-serif;
}
body {
  background-color: #101010;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
}
.logo {
  height: 350px;
  object-fit: contain;
}
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.links button {
  text-decoration: none;
  max-width: 400px;
  width: 100%;
  height: 70px;
  background-color: transparent;
  border: 2px solid #ffedc5;
  color: #ffedc5;
  font-size: 18px;
  cursor: pointer;
  padding: 0px 10px;
  text-align: center;
}
.links button:hover {
  background-color: #ffedc5;
  border: none;
  color: #101010;
}
.links button a {
  all: unset;
}
.links button i {
  padding-right: 10px;
}
.location_details {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.location_details .details {
  all: unset;
  box-sizing: border-box;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  color: #ffedc5;
  border: 2px solid #ffedc5;
  cursor: pointer;
}
.location_details .details:hover {
  background-color: #ffedc5;
  color: black;
}
.location_details .details .header {
  font-size: 16px;
  text-transform: uppercase;
}
.location_details .details .header i {
  padding-right: 10px;
}
.locations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
