  * { 
    box-sizing: border-box; 
  } 

  html, body { 
    width: 100%; 
    min-height: 100%;
    overflow-x: hidden;
  } 
  
  body {
    background: rgb(44,47,55);
    background: -webkit-linear-gradient(90deg, #18191d 15%, #141e30 50%, #18191d 85%);  
    background: linear-gradient(90deg, #18191d 15%, #141e30 50%, #18191d 85%);
    overflow-x: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none; 
    min-height: inherit; 
    margin: 0; 
    padding: 0; 
  }

  #menu-title{
    font-family: 'Lobster', cursive;
    font-family: 'Pacifico', cursive;
  }
  
  .banner {
    height: 100vh;
    min-height: 500px;
    background-image: url('../media/main/food.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
  }

  #menu-img {
    width: 100%;
    height: inherit;
    max-height: 85%;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
  }

  #service {
    height: 100vh;
    min-height: 500px;
  }

  .service-mobile {
    height: 100vh;
    min-height: 500px;
  }


  #menu {
    height: 100vh;
    min-height: 500px;
  }



  footer {
    /* font-family: 'Pacifico', cursive;
    font-family: 'Lobster', cursive; */

    background-image: url('../media/main/footer3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: aliceblue;
  }

  #footer-content{
    font-size: 22px;
    letter-spacing: 4px;
  }

  #footer-title{
    font-size: 30px;
    letter-spacing: 4px;
  }

  .logo-wrapper {
    float:left;
    width:12%;
    margin: 3%;   
  }

  .logo-wrapper img{
      max-width:100%
  }
  
  .btn-wrapper {
    float:left;
    width:12%;
    margin: 3%;   
  }

  .btn-wrapper img{
      max-width:100%
  }

  .logo {
      position: relative;
      height: 100%;
      transition: transform .4s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  }

  .logo-footer{
    width: 25%;
    z-index: 9999;
  }

  .logo:hover {
    transform: rotate(-30deg);
  }

  .zoom-menu {
    transition: transform .4s ease;
  }
  
  .zoom-menu:active {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3); 
  }

  .zoom{
    transition: transform .5s ease;
  }

  .zoom:active {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); 
  }
  
  .progress {
    height: 4px;
    background:rgba(0,0,0,0);
    border-radius: 0px;
    padding: 0px;
    z-index: 2000;
  }

  #progress_scroll_indicator {
    background: #e96443;  
    background: -webkit-linear-gradient(to right, #904e95, #e96443);  
    background: linear-gradient(to right, #904e95, #e96443); 
  }

  .text-container {
    color: white;
  }

  .text-content {
    font-size: 1.3rem;
    margin-top: 16px;
  }

  .text-header {
    font-size: 2rem;
    font-weight: 700;
  }

  .text-right-align {
    text-align: right;
  }

  .img-zoom-result {
    border: 1px solid #d4d4d4;
    /*set the size of the result div:*/
    width: 300px;
    height: 300px;
  }

  .title {
    color: aliceblue;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    word-spacing: 10px;
    letter-spacing: 8px;
    font-family: 'Pacifico', cursive;
    font-family: 'Lobster', cursive;
    
  }

  .title-sm {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    word-spacing: 10px;
    letter-spacing: 8px;
    font-family: 'Pacifico', cursive;
    font-family: 'Lobster', cursive;
  }

  .content {
    padding-top: 16px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    word-spacing: 2px;
    letter-spacing: 2px;
  }

  #beside-left-image {
    background-image: url('../media/main/food_photos.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%;;
  }

  #beside-right-image {
    background-image: url('../media/main/cattering_photos_2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 50%;;
  }

  .text-link {
    color: aliceblue;
    text-decoration: none;
    text-transform: uppercase;
  }

  @keyframes zoom-in {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }

/* Extra small devices (landscape phones, 576px and down) */
@media (max-width: 576px) {  
  .title {
    font-size: 1.5rem;
  }

  .title-sm {
    font-size: 1.2rem;
  }

  .content {
    padding-top: 8px;
    font-size: 0.8rem;
    word-spacing: 0px;
    letter-spacing: 2px;
  }
}

 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  .title {
    font-size: 1.5rem;
  }

  .title-sm {
    font-size: 1.2rem;
  }

  .content {
    padding-top: 8px;
    font-size: 0.8rem;
    word-spacing: 1px;
    letter-spacing: 2px;
  }
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
  .title {
    font-size: 1.8rem;
  }

  .title-sm {
    font-size: 1.3rem;
  }

  .content {
    padding-top: 8px;
    font-size: 1rem;
    word-spacing: 1px;
    letter-spacing: 2px;
  }

}
 
/* Extra extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {    
  .title {
    font-size: 1.8rem;
  }

  .title-sm {
    font-size: 1.3rem;
  }

  .content {
    padding-top: 8px;
    font-size: 1rem;
    word-spacing: 1px;
    letter-spacing: 2px;
  }

 
}

/* Extra extra large devices (large desktops, 1400px and up) */
@media (min-width: 1800px) {  
  .title {
    font-size: 2.2rem;
  }

  .title-sm {
    font-size: 1.5rem;
  }

  .content {
    padding-top: 8px;
    font-size: 1.2rem;
    word-spacing: 1px;
    letter-spacing: 2px;
  }

 
}

@media (min-width: 2000px) {
  .title {
    font-size: 3rem;
  }

  .title-sm {
    font-size: 2rem;
  }

  .content {
    padding-top: 8px;
    font-size: 1.4rem;
    word-spacing: 1px;
    letter-spacing: 2px;
  }
  
}
