*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*{
    font-family: "Roboto", Arial, Helvetica, sans-serif;
}

a 
{
    text-decoration: none;
    color: white;
}

body
{
    margin: 0px; 
    min-height: 100vh; 
    position: relative; 
    background-color: #171e31;
}

footer
{
    background-color: #0D1627; 
    position: absolute; 
    height: 75px; 
    bottom: 0px; 
    width: 100%; 
    text-align: center;
    color: #877D9F;
}

.order-banner
{
    background-color: #171E31; 
    margin-top: 25px; 
    text-align: center;
}

.banner-text-content
{
    font-size: 20px;
    color: white;
    margin-left: 25px; 
    margin-right: 25px;
}

.button-order
{   
   margin-left: 10px;  
   cursor: pointer;
}

.button-order-text
{
    display: inline-block;
    background-color: rgba(167, 99, 191, 0.8);;
    padding: 15px 30px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 15px 2px #62C7E9;
    -moz-box-shadow: 0px 0px 15px 2px #62C7E9;
    box-shadow: 0px 0px 15px 2px #62C7E9;
    font-size: 18px;
}

.text-glow
{
    -webkit-filter: drop-shadow(0px 0px 10px #62C7E9)!important;
    filter: drop-shadow(0px 0px 10px #62C7E9)!important;
}

@media screen and (min-width: 750px)
{
    .banner-text-content
    {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.container {
    height: 60px;
    background-color: rgba(0,0,0,0.5);;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  
  .container .logo {
    max-width: 250px;
    padding: 0 10px;
    overflow: hidden;
  }
  
  .container .logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
  }
  
  .container .logo a img {
    max-width: 100%;
    max-height: 60px;
  }
  
  .container .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
  }
  
  .container .navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .container .navbar ul li a {
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    padding: 0 10px;
  }
  
  .container .navbar ul li a:hover {
    color: #ffffff;
    background-color: rgba(23, 23, 23, 0.9);
  }
  
  .container .navbar ul .close {
    display: none;
    text-align: right;
    padding: 10px;
  }
  
  .container .navbar ul .close span {
    font-size: 40px;
    display: inline-block;
    border: 1px solid #cccccc;
    padding: 0 10px;
    cursor: pointer;
  }
  
  .container .navbar .icon-bar {
    padding: 18px 8px;
    width: 50px;
    height: 60px;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .container .navbar .icon-bar i {
    background-color: #ffffff;
    height: 2px;
  }
  
  @media only screen and (max-width: 750px) {
    .container {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
  
    .container .logo {
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
    }
  
    .container .navbar {
      -webkit-box-flex: 0;
      -ms-flex: 0;
      flex: 0;
    }
  
    .container .navbar ul {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      position: fixed;
      left: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      background: #ffffff;
      width: 100%;
      height: 100%;
      overflow: auto;
      -webkit-transition: left .3s;
      -o-transition: left .3s;
      transition: left .3s;
    }
  
    .container .navbar ul li a {
      padding: 10px;
      font-size: 16px;
      height: auto;
      line-height: normal;
      color: #555555;
    }
  
    .container .navbar ul .close {
      display: block;
    }
  
    .container .navbar .icon-bar {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  
    .container .navbar ._Menus-show {
      left: 0;
    }
  }

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#hamburger input:checked ~ span
 {
   opacity: 1;
   transform: rotate(45deg) translate(-2px, -1px);
   background: #232323;
 }
 
 /*
  * But let's hide the middle one.
  */
  #hamburger input:checked ~ span:nth-last-child(3)
 {
   opacity: 0;
   transform: rotate(0deg) scale(0.2, 0.2);
 }
 
 /*
  * Ohyeah and the last one should go the other direction
  */
  #hamburger input:checked ~ span:nth-last-child(2)
 {
   transform: rotate(-45deg) translate(0, -1px);
 }

 #hamburger input:checked ~ .nav-links-hamburgerwrap
 {
     height: 500px;
 }
 
/*
 * Just a quick hamburger
 */
 .burger
 {
   display: block;
   width: 33px;
   height: 4px;
   margin-bottom: 5px;
   position: relative;
   
   background: #cdcdcd;
   border-radius: 3px;
   
   z-index: 1;
   
   transform-origin: 4px 0px;
   
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }

/* When the screen is less than 750 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 750px) 
{
    .nav-links-hamburgerwrap
    {
        position: fixed;
        top: 75px;
        left: 0px;
        right: 0px;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        width: 100%;
        height: 0px;
        overflow: hidden;
    }

    .nav-link
    {
        font-size: 24px;
        display: block;
        padding: 0px 10px;
    }
}


@media screen and (min-width: 751px)
{
    .nav-links
    {
        margin-left: auto; 
        display: table; 
        height: 75px;
    }
    
    .nav-link
    {
        font-size: 24px;
        display: table-cell;
        vertical-align: middle;
        padding: 0px 10px;
        overflow: hidden;
    }

    #hamburger
    {
        display: none;
    }
}


@font-face {
    font-family: "Roboto";
    src: url("assets/fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Thin";
    src: url("assets/fonts/Roboto-Thin.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("assets/fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto-Italic";
    src: url("assets/fonts/Roboto-Italic.ttf");
}