@font-face {
  font-family: "Lexend";
  src: url("fonts/lexend/Lexend-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html, body {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
}

#header #logo-container {
  position: absolute;
  width: 100%;
  height: 300px;
  background-image: linear-gradient(white, rgba(0, 0, 0, 0));
  display: flex;
  align-items: center;
  flex-direction: column;
}
#header #logo-container img {
  height: 125px;
  margin-top: 25px;
}
#header #logo-container p {
  color: #000A3E;
  margin: 0px;
  margin-top: 5px;
  font-family: "Lexend", sans-serif;
}
#header #video-container {
  width: 100%;
  height: 92vh;
  display: flex;
}
#header #video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header #video-container #explore-container {
  position: absolute;
  z-index: 2;
  width: 100%;
  align-self: flex-end;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
#header #video-container #explore-container h1 {
  text-align: center;
  color: white;
  padding-bottom: 30px;
  font-size: 33px;
}
@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(0px - 50%));
  }
}
#header #scrolling-header-parent-container {
  width: 100%;
  background-color: black;
  overflow-x: hidden;
}
#header #scrolling-header-parent-container #scrolling-header-container {
  display: flex;
  width: fit-content;
  height: 8vh;
  font-size: 30px;
  align-items: center;
  overflow-x: hidden;
  animation-name: infiniteScroll;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#header #scrolling-header-parent-container #scrolling-header-container .scrolling-header-container-item {
  white-space: nowrap;
  color: white;
}

#restaurants-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  background-image: url("img/white-background.jpg");
  background-size: contain;
  background-repeat: repeat;
}
#restaurants-container h1 {
  text-align: center;
  margin: 60px 0px;
  font-size: 45px;
}
#restaurants-container #restaurant-box-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 60px;
  width: 80vw;
  margin-left: 5vw;
  padding: 5vw 5vw;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 50px 0px;
}
#restaurants-container #restaurant-box-container #restaurant-box {
  flex: 0 0 25%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
#restaurants-container #restaurant-box-container #restaurant-box img {
  width: 176px;
  height: 176px;
  border-radius: 88px;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 50px 0px;
}
#restaurants-container #restaurant-box-container #restaurant-box p, #restaurants-container #restaurant-box-container #restaurant-box a {
  text-align: center;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 0px;
}
#restaurants-container #restaurant-box-container #restaurant-box .cuisine-type {
  margin-top: 10px;
  margin-bottom: 0px;
  font-size: 18px;
  color: grey;
}
#restaurants-container #restaurant-box-container #restaurant-box .restaurant-link {
  color: black;
  font-weight: bold;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
}

#contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 70px;
}
#contact-container h1 {
  margin-top: 60px;
  padding-bottom: 10px;
  font-size: 45px;
}
#contact-container #contact-sub-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#contact-container #contact-sub-container .mapouter {
  width: 100% !important;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 50px 0px;
}
#contact-container #contact-sub-container .mapouter .gmap_canvas {
  width: 100% !important;
}
#contact-container #form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
#contact-container #form .contact-form-input {
  width: 50vw;
  margin: 10px 20px;
  border: none;
  background-color: rgb(244, 244, 244);
  padding: 12px;
  color: black;
  outline: none;
  white-space: pre-wrap;
  font-size: 15px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 40px 0px;
}
#contact-container #form textarea {
  white-space: pre-wrap;
}
#contact-container #form #contact-submit-button {
  border: none;
  background-color: #2bbd63;
  color: white;
  width: 150px;
  height: 40px;
  margin-top: 15px;
  cursor: pointer;
  outline: none;
  box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-size: 15px;
}
#contact-container #error-message {
  text-align: center;
  color: red;
}
#contact-container #success-message {
  text-align: center;
  color: green;
}

footer {
  height: 60px;
  background-color: #000A3E;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer p {
  color: white;
  font-weight: 500;
  font-size: 15px;
}

@media only screen and (max-width: 1270px) {
  #restaurant-box {
    flex: 0 0 33% !important;
  }
}
@media only screen and (max-width: 900px) {
  #restaurant-box {
    flex: 0 0 50% !important;
  }
}
@media only screen and (max-width: 600px) {
  footer {
    height: 100px;
    flex-direction: column;
    justify-content: center;
  }
  footer p {
    padding: 0px !important;
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

/*# sourceMappingURL=style.css.map */
