/*# sourceMappingURL=Business.css.map */
@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Roboto+Slab:wght@900&display=swap");


.FoodFusion{
  color: rgb(255, 255, 255);
}

/* Here is where you change the colors for each page above--------------------------------------------------------------- */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.InfoSection{
    width: 100%;
    margin-top: 850px;
}
body {
  height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Nunito", sans-serif;

  --primary: #2c2c2c;
  --blue: #feba00;
}

h1 {
  font-family: "Roboto Slab", serif;
  color: var(--primary);
}


ul {
  list-style: none;
}

#videoBkg {
  position: fixed;
  z-index: -1;
  right: 0%;
}

.hero-section {
  position: absolute;
  top: 30%;
  left: 12%;
  transform: translateY(-30%);
  z-index: 10;
}
.hero-section > * {
  transform: translateY(80px);
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}
.hero-section h1 {
  font-size: 55px;
}
.hero-section p {
  font-size: 25px;
  margin: 4em 0 2em 0;
  line-height: 30px;
}
.hero-section p strong {
  color: var(--blue);
}
.hero-section button {
  border: 2px solid var(--primary);
  padding: 1em 1.2em;
  outline: none;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.hero-section button:hover {
  background-color: var(--blue);
  color: #ffffff;
  border: 2px solid var(--blue);
}

.hero-section h1:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-section h1:nth-child(3) {
  animation-delay: 0.5s;
}
.hero-section h1:nth-child(4) {
  animation-delay: 0.8s;
}
.hero-section p {
  animation-delay: 1s;
}
.hero-section button {
  animation-delay: 1.2s;
}

.menu-section {
  position: fixed;
  width: 34%;
  top: 5%;
  right: 12%;
  transform: translateY(-30%);
  z-index: 20;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
}
.menu-section li {
  float: left;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.3s;
}
.menu-section li:hover {
  color: var(--blue);
}
.menu-section p {
  color: var(--blue);
}
.menu-section p span {
  color: var(--primary);
}

/* MEDIA QUERIES for video background
----------------------------------------- */
@media (min-aspect-ratio: 16/9) {
  #videoBkg {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  #videoBkg {
    width: auto;
    height: 100%;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}






/* MEDIA QUERIES for video background
------------------------------------------------------------------------------------------------------------------------------------------------------- */
.information-container {
    background: #000000;
    background: -webkit-linear-gradient(45deg, #dddddf, #00584e5e); /*Here is the color for the background of information tab */
    background: linear-gradient(45deg, #b8b8b8fc,#00381af6);
  
    background-size: cover;
    padding: 60px 0;
  }
  
  .inner-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .section-title {
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;
  }
  
  .border {
    width: 160px;
    height: 2px;
    background:#000000;
    margin: 40px auto;
  }
  
  .service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-box {
    max-width: 33.33%;
    padding: 10px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
  }
  
  .service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #feba00;
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
  }
  
  .service-icon i {
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 26px;
  }
  
  .service-box:hover .service-icon {
    background: #ffffffe0;
    color: #ddd;
  }
  
  .service-title {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .description {
    font-size: 15px;
  }
  
  @media screen and (max-width:960px) {
    .service-box {
      max-width: 45%;
    }
  }
  
  @media screen and (max-width:768px) {
    .service-box {
      max-width: 50%;
    }
  }
  
  @media screen and (max-width:480px) {
    .service-box {
      max-width: 100%;
    }
  }
