/* Home Page CSS. */
/* The below are fade in css elements to manage the home page */

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:3s;
  -moz-animation-duration:3s;
  animation-duration:3s;
}

.fade-in.one {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

.MainImage{
    padding-top: 120px;
    padding-bottom: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    height: 800px;
    
   
}

.float {
    float: left;
}

.OtherImage{
    padding: 0%;
    
    
}

.OtherImage:hover {
    filter: brightness(80%);
}



.Container{
    border: 1px solid antiquewhite;
    display: block;
    padding: 8px 0px 8px 0px;
    color: white;
    background-color:rgb(13, 13, 70);
    text-align: center;
    width:100%;
}

p{
    text-align: center;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: darkred;
    text-shadow: 0px 0px 4px white, -1px -1px white, 2px 2px white;
    font-weight: bold;

   
}

.btn{
  background-color: darkred;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid grey;
  
}

.btn2{
    background-color: darkred;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 6px;
    border: 1px solid grey;
    
  }

.btn:hover{
    background-color: white;
    color: grey;
}

.btn2:hover{
    background-color: white;
    color: grey;
}

.Leave{
    padding: 0px;
    display: inline-block;
    margin-left: 44%;
    color: white;
    text-align: center;
    width:200px;
    
    
}

.Menuitems
{
    display: block;
    background-color:white;
    width:100%;
    
 
}


.OrdersContain{
    display: flex;
    width: 50%;
    height: auto;
    float: left;
    background-color: white;
    
}

.OrdersCentre{
    display: block;
    width: 400px;
    height:400px;
    margin-left: auto;
    margin-right: auto;

}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #111E6C;
    
  }
  .overlay:hover {
    opacity: .8;
  }
  
  .text {
    color: white;
    font-size: 50px;
    font-style: CSFfont;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
    .image {
      width: 100%;
      height: 100%;
    }

    .imageNB{
      width: 100%;
      height: 80%;
    }

    .imageMN {
      width: 60%;
      height: 60%;
      padding-top: 10px;
      margin-right: auto;
      margin-left: auto;
    }

    .MNback{
      background-color: black;
    }
  
    
    .containerIMG {
      display: flex;
      position: relative;
      width: 50%;
    }

    .containerBP {
        display: flex;
        position: relative;
        width: 100%;
      }
    
    .overlayTop{
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      transition: .75s;
      background-color: #111E6C;
      opacity: 0;
      
    }
    
    .overlayTop:hover{
      opacity: .8;
      
    }

    .flex-container {
    
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      
    }
    
    .flex-container > div {
      position: relative;
      ;
      width: 50%;
      margin: 0px;
      
      line-height: 75px;
      font-size: 30px;
    }
    