@import url("https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap");


body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    overflow-y: scroll;
}

.ordernowbutton a {
  background: rgba(0, 0, 0, 0.0);
  opacity: 0.8;
  border: 2px solid	rgb(255,255,255, 0.8);
  top: 440px;
  right: 44%;
  font: 600 19px 'Lato', sans-serif;
  letter-spacing: 2px;
  margin: 8px;
  padding: 8px 12px;
  position: absolute;
  z-index: 900;
  animation: mainFadeIn 5s forwards;
}

.ordernowbutton a {
  text-decoration: none;
  color: white;
}


.ordernowbutton a:before, .ordernowbutton a:after {
  content: "";
  position: absolute;
  transition: all 0.125s ease-in-out;
}
.ordernowbutton a.paste:after {
  border: 2px dashed white;
  bottom: -2px;
  left: -2px;
  right: -2px;
  top: -2px;
}
.ordernowbutton a.paste:hover:after, .ordernowbutton a.paste:focus:after {
  bottom: 2px;
  left: 2px;
  right: 2px;
  top: 2px;
}


/* ####################################################   Navigation   #################################################### */


.topnav {
  overflow: hidden;
  padding-right: 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.0);
  z-index: 700;
  position: absolute;
}

.square {
  height: 90px;
  width: 90px;
  background-color: whitesmoke;
  z-index: 800;
  border-radius: 5%;
  position: absolute;
}

.logo {
  z-index: 900;
  box-shadow: #111;
  margin-left: 11px;
  margin-top: 10px;
  position: absolute;
}

.topnav a {
  float: right;
  font-family: HP Simplified;
  letter-spacing: 5px;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #333;
  color: white;
}

.topnav .icon {
  display: none;
}

/* ####################################################   Main Title   #################################################### */


 .maintitle {
	 width: 900px;
	 height: 90vh;
   position: absolute;
   z-index: 900;
   display: flex;
   left: 330px;
	 justify-content: center;
	 align-items: center;
}
 .maintitle .box {
	 width: 900px;
	 height: 400px;
	 position: relative;
	 display: flex;
	 justify-content: center;
	 flex-direction: column;
}
 .maintitle .box .title {
	 width: 100%;
	 position: relative;
	 display: flex;
	 align-items: center;
	 height: 50px;
}
 .maintitle .box .title .block {
	 width: 0%;
	 height: inherit;
	 background: #ffb510;
	 position: absolute;
	 animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
	 display: flex;
}
 .maintitle .box .title h1 {
	 font-family: "Poppins";
	 color: white;
	 font-size: 110px;
	 -webkit-animation: mainFadeIn 2s forwards;
	 animation: mainFadeIn 2s forwards;
	 animation-delay: 1.6s;
	 opacity: 0;
	 display: flex;
	 align-items: baseline;
	 position: relative;
}
 .maintitle .box .title h1 span {
	 width: 0px;
	 height: 0px;
	 -webkit-border-radius: 50%;
	 border-radius: 50%;
	 background: #ffb510;
	 -webkit-animation: load 0.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
	 animation: popIn 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
	 animation-delay: 2s;
	 margin-left: 5px;
	 margin-top: -10px;
	 position: absolute;
	 bottom: 13px;
	 right: -12px;
}
 .maintitle .box .role {
	 width: 100%;
	 position: relative;
	 display: flex;
	 align-items: center;
	 height: 30px;
	 margin-top: 25px;
}
 .maintitle .box .role .block {
	 width: 0%;
	 height: inherit;
	 background: #e91e63;
	 position: absolute;
	 animation: secBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
	 animation-delay: 2s;
	 display: flex;
}
 .maintitle .box .role p {
	 animation: secFadeIn 2s forwards;
	 animation-delay: 3.2s;
	 opacity: 0;
	 font-weight: 900;
	 font-family: "Lato";
	 color: white;
	 font-size: 20px;
    padding-left: 10px;
	 text-transform: uppercase;
	 letter-spacing: 5px;
}
 @keyframes mainBlock {
	 0% {
		 width: 0%;
		 left: 0;
	}
	 50% {
		 width: 100%;
		 left: 0;
	}
	 100% {
		 width: 0;
		 left: 100%;
	}
}
 @keyframes secBlock {
	 0% {
		 width: 0%;
		 left: 0;
	}
	 50% {
		 width: 94%;
		 left: 0;
	}
	 100% {
		 width: 0;
		 left: 100%;
	}
}
 @keyframes mainFadeIn {
	 0% {
		 opacity: 0;
	}
	 100% {
		 opacity: 1;
	}
}
 @keyframes popIn {
	 0% {
		 width: 0px;
		 height: 0px;
		 background: #e9d856;
		 border: 0px solid #ddd;
		 opacity: 0;
	}
	 50% {
		 width: 10px;
		 height: 10px;
		 background: #e9d856;
		 opacity: 1;
		 bottom: 45px;
	}
	 65% {
		 width: 7px;
		 height: 7px;
		 bottom: 0px;
		 width: 15px;
	}
	 80% {
		 width: 10px;
		 height: 10px;
		 bottom: 20px;
	}
	 100% {
		 width: 7px;
		 height: 7px;
		 background: #e9d856;
		 border: 0px solid #222;
		 bottom: 13px;
	}
}
 @keyframes secFadeIn {
	 0% {
		 opacity: 0;
	}
	 100% {
		 opacity: 0.5;
	}
}


/* ####################################################   Slide Show   #################################################### */


/* Slideshow nscontainer */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* ####################################################   Middle Menu   #################################################### */

html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  .column {
    float: left;
    width: 25%;
    margin-bottom: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .row {
      margin-left: 40px;
      margin-right: 40px;
  }
  
  
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }

  .card:hover {
    box-shadow: 5px 5px 20px grey;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container::after, .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .title {
    color: grey;
  }
  
  .button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  
  .button:hover {
    background-color: #555;
  }

  .headingmenu {
      font-family: 'Lobster', serif;
      font-size: 64px;
      text-align: center;
      padding-top: 34px;
  }
  .headingmenusub {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100px;
    margin-top: -55px;
    text-align: center;
    font-weight: bolder;

}

.morebutton button{
  border: 2px solid #d98e20; 
  font-size:1em;
  font-weight:600;
  border-radius: 25px 25px 25px 25px;
  background:#fff;
  width: 91%;
  padding:15px 200px;
  transition:all .3s ease-out; 
  box-shadow: 4px 4px 0 0 #d98e20;
}
.morebutton button:hover{
  color:black;
  box-shadow: 5px 5px 20px grey;
}
.morebutton{
	position:relative;
	width:100%;
    text-align:center;
    padding-top: 90px;
    padding-bottom: 90px;
}


/* ####################################################   Footer Area   #################################################### */

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  font-weight: 400;
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 400;
  font-size: 15px;
}

.footer address {
  font-style: normal;
  color: #999;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: #999;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}
  
.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }
  
  .nav__item--extra {
    flex-grow: 2;
  }
  
  .footer__addr {
    flex: 1 0px;
  }
  
  .footer__nav {
    flex: 2 0px;
  }
}

/* ####################################################  End of the CSS Styling Sheet  #################################################### */