/* --------------------------------- */
/* 0. Webfonts and Icon fonts
 ----------------------------------- */

@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,700|Merriweather:400italic,400");

/* -------------------------------- 
 1. Primary style
 -------------------------------- */

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #f2f2f2;
  font-size: 1.6rem;
  font-family: "PT Sans", sans-serif;
  color: #f2f2f2;
}

a {
  color: #030303;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.75em 0;
}

h3 {
  font-size: 1.17em;
  margin: 0.83em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.5em 0;
}

h6 {
  font-size: 0.75em;
  margin: 1.67em 0;
}

ul li {
  list-style: none;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  color: #34a1c4;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #34a1c4;
  padding: 1em 5em;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.btn:hover {
  background: #34a1c4;
  color: #fff;
  padding: 1em 5em;
}

.btn:after {
  position: absolute;
  content: "\f18e";
  font-family: "FontAwesome";
  font-weight: 400;
  right: -3em;
  transition: 0.4s;
  color: #fff;
}

.btn:hover:after {
  right: 2em;
}

.menu-desc {
  opacity: 0 !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-align: left;
}

.single-page:hover .menu-desc {
  opacity: 1 !important;
}

.page-title span {
  display: block;
}

.page-title span i {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 30px transparent;
  display: inline-block;
  font-size: 2.5em;
  padding: 0.5em;
  height: 2em;
  line-height: 1em;
  text-align: center;
  width: 2em;
  margin: 15px auto;
  display: block;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.single-page:hover .page-title span i {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  -webkit-transition: box-shadow 0.4s ease-in-out;
  -moz-transition: box-shadow 0.4s ease-in-out;
  -o-transition: box-shadow 0.4s ease-in-out;
  -ms-transition: box-shadow 0.4s ease-in-out;
  transition: box-shadow 0.4s ease-in-out;
}

/* ------------------------------------------------
 /*  1.a. Color Schemes for Home Page backgrounds 
 /*  Choose one and comment/remove other two
 /* ------------------------------------------------*/

/* Olive Scheme  
 ----------------------------------*/

.single-page:nth-child(1) {
  background: #030303;
}

.single-page:nth-child(2) {
  background: #030303;
}

.single-page:nth-child(3) {
  background: #030303;
}

pre {
  font: 17px "Myriad Pro Regular", "Merriweather", sans-serif;
  color: #332e2e;
  text-align: left;
  /*margin-bottom: 20px;*/
  padding-bottom: 0px;
  margin-bottom: 5px;
  margin-left: -10px;
  line-height: 1.42857143;
  padding-top: 0;
  word-break: keep-all;
  word-wrap: break-word;
  border: none;
  border-radius: 4px;
  width: 100%;
  white-space: pre-line;
  background: none;
  overflow: visible;
  font-family: "Myriad Pro Bold", "Times New Roman", Times, serif;
}

/* -------------------------------- 
     1.c. Footer Styles
 -------------------------------- */

/* ------------------------------------------- */
/* 2. Preloader CSS */
/* ------------------------------------------- */

#preloader {
  background: url("../img/Background-500X700.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.loader1 {
  background: url("../img/strees-ghost.png") no-repeat scroll center center
    rgba(0, 0, 0, 0);
  height: 128px;
  width: 128px;
  position: absolute;
  left: 33%;
  top: 40%;
}

.loader3 {
  background: url("../img/loading.gif") no-repeat scroll center center
    rgba(0, 0, 0, 0);
  height: 128px;
  width: 128px;
  position: absolute;
  left: 33%;
  top: 58%;
}

/* -------------------------------- 
 /*   3. Main Components 
 -------------------------------- */

.page-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.page-container::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: "mobile";
  display: none;
}

.page-container .single-page {
  position: absolute;
  /*top:6vh;*/
  left: 0;
  width: 100%;
  height: 33%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  -ms-transition: -moz-transform 0.4s;
  -o-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  /* on mobile -  move items outside the viewport */
  -webkit-transform: translateX(-200%);
  -moz-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  -o-transform: translateX(-200%);
  transform: translateX(-200%);
}

.page-container .single-page::after {
  /* background image */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 34vh;
  width: 100%;
  /*background-image:url("../img/pancakes.jpg");*/
  background: #fdb320;
  vertical-align: vertical;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: opacity 0.5s, height 0.6s;
  -moz-transition: opacity 0.5s, height 0.6s;
  -ms-transition: opacity 0.5s, height 0.6s;
  -o-transition: opacity 0.5s, height 0.6s;
  transition: opacity 0.5s, height 0.6s;
}

.page-container .single-page::before {
  /* never visible - this is used in jQuery to detect if the background image has been loaded  */
  content: "img/product.jpg";
  display: none;
}

.page-container .single-page:nth-of-type(2) {
  top: 33vh;
  height: 35%;
}

.page-container .single-page:nth-of-type(2)::after {
  /*background-image:url("../img/omeletes.jpg")*/
  background-color: #43bbed;
}

.page-container .single-page:nth-of-type(3) {
  top: 66vh;
  height: 34%;
}

.page-container .single-page:nth-of-type(3)::after {
  /*background-image:url("../img/omeletes.jpg")*/
  /*background-color: #65675c; */
  background-color: #c6c6c6;
}

.shd::after {
  background-color: #f37d68 !important;
}

.makrina-icons {
  padding-bottom: 2%;
}

.page-container .single-page.is-loaded {
  /* move items in the viewport when background images have been loaded */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.page-container .single-page.is-full-width {
  /*display:block;
   position: fixed;
   height:auto;
   bottom:0;
   left:0;
   margin-top: auto;
   margin-bottom: auto;
   overflow:auto;
   top:0;
   z-index:1;
   cursor: auto;*/
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  z-index: 1;
  cursor: auto;
  -webkit-transition: z-index 0s 0s, top 0.4s 0s;
  -moz-transition: z-index 0s 0s, top 0.4s 0s;
  -ms-transition: z-index 0s 0s, top 0.4s 0s;
  -o-transition: z-index 0s 0s, top 0.4s 0s;
  transition: z-index 0s 0s, top 0.4s 0s;
}

.page-container .single-page.is-full-width::after {
  height: 100vh;
}

.page-title {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 15vh;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

#brkf {
  font-family: "CfDaphne";
}

#brkf-special {
  background: #f37d68;
}

@font-face {
  font-family: "CfDaphne";
  src: url("../fonts/cf daphne/CF Daphne Rg 2.ttf") format("truetype");
}

.is-full-width .page-title {
  top: 44vh;
  -webkit-transition: opacity 0s, top 0.4s;
  -moz-transition: opacity 0s, top 0.4s;
  -ms-transition: opacity 0s, top 0.4s;
  -o-transition: opacity 0s, top 0.4s;
  transition: opacity 0s, top 0.4s;
}

.page-title > * {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-title h2 {
  font-family: "PT Sans", sans-serif;
  font-size: 2.25em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5em;
  margin: 20px auto 5px;
}

.page-title p {
  font-size: 1.4rem;
  font-family: "Myriad Pro Regular", "Merriweather", serif;
  /*font-style:italic;*/
  line-height: 1.2;
  padding: 0.5em 2em;
  display: block;
  opacity: 0.6;
}

.page-info {
  position: relative;
  z-index: 1;
  clear: both;
  visibility: visible;
  opacity: 0;
  margin-top: 100vh;
  cursor: auto;
  background-color: #fff;
  color: #3f538e;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -ms-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -o-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}

.change-visibility {
  margin-top: 0vh;
}

.is-full-width .page-info {
  visibility: visible;
  opacity: 1;
}

.page-container .page-close,
.page-container .page-scroll,
.page-container .topnav,
.page-container .pinfo {
  display: block;
  z-index: 1;
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  /*-webkit-transition:  -webkit-transform 1s 0s, visibility 0s 1s;
   -moz-transition:  -moz-transform 1s 0s, visibility 0s 1s;
   -ms-transition:  -moz-transform 1s 0s, visibility 0s 1s;
   -o-transition:  -moz-transform 1s 0s, visibility 0s 1s;
   transition:  transform 1s 0s, visibility 0s 1s;*/
}
.page-container .topnav {
  position: fixed;
  background-color: rgba(204, 204, 204, 0.78);
  height: 40px;
  width: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.page-container .page-close {
  position: fixed;
  top: -1px;
  left: 5%;
  background: url("../img/back.png") no-repeat center center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.page-container .pinfo {
  position: fixed;
  top: -1px;
  right: 1%;
  background: url("../img/info.png") no-repeat center center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.page-container .page-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("../img/icons/icon-arrow-mobile.svg") no-repeat center center;
}

.project-is-open .page-close,
.project-is-open .page-scroll,
.project-is-open .topnav,
.project-is-open .pinfo {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  -ms-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  -o-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
}

.project-is-open .page-scroll {
  background-color: rgba(204, 204, 204, 0.78);
  border-radius: 50%;
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-translate 1.2s 0.4s;
  -moz-animation: cd-translate 1.2s 0.4s;
  animation: cd-translate 1.2s 0.4s;
  -webkit-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
.no-touch .project-is-open .topnav:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .page-close:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .pinfo:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .page-scroll:hover {
  -webkit-transform: translateX(-50%) scale(1.2);
  -moz-transform: translateX(-50%) scale(1.2);
  -ms-transform: translateX(-50%) scale(1.2);
  -o-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);
}

@-webkit-keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}

@-moz-keyframes cd-translate {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }

  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}

@keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }

  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }

  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

/* Screens Resolution : 768px+
 --------------------------------------------------------------------- 
 
 @media only screen and (min-width: 768px) {
 
 
 .page-container .single-page {
   width:20vw;
   height:100%;
   opacity:0;
   -webkit-transform: translateX(0);
   -moz-transform: translateX(0);
   -ms-transform: translateX(0);
   -o-transform: translateX(0);
   transform: translateX(0);
   -webkit-transition: width 0s;
   -moz-transition: width 0s;
   transition: width 0s;
 }
 
 
 .page-container .single-page:first-of-type::before {
   content:'img/food-l.jpg';
 }
 
 .page-container .single-page:first-of-type::after {
   background-image:url("../img/food-l.jpg")
 }
 
 .page-container .single-page:nth-of-type(2) {
   top:0;
   left:20vw;
 }
 
 .page-container .single-page:nth-of-type(2)::before {
   content:'img/beer-l.jpg';
 }
 
 .page-container .single-page:nth-of-type(2)::after {
   background-image:url("../img/beer-l.jpg")
 }
 
 .page-container .single-page:nth-of-type(3) {
   top:0;
   left:40vw;
 }
 
 .page-container .single-page:nth-of-type(3)::before {
   content:'img/cocktails-l.jpg';
 }
 
 .page-container .single-page:nth-of-type(3)::after {
   background-image:url("../img/cocktail-l.jpg")
 }
 
 .page-container .single-page:nth-of-type(4) {
   top:0;
   left:60vw
 }
 
 .page-container .single-page:nth-of-type(4)::before {
   content:'img/drinks-l.jpg'
 }
 
 .page-container .single-page:nth-of-type(4)::after {
   background-image:url("../img/drinks-l.jpg")
 }
 .page-container .single-page:nth-of-type(5) {
   top:0;
   left:80vw
 }
 
 .page-container .single-page:nth-of-type(5)::before {
   content:'img/dessert-l.jpg'
 }
 
 .page-container .single-page:nth-of-type(5)::after {
   background-image:url("../img/dessert-l.jpg")
 }
 
 .page-container .single-page::after {
   height:100vh;
   width:100%;
   opacity:0
 }
 
 .page-container .single-page.is-loaded {
 /* show items when background images have been loaded 
   opacity:1
 }
 
 .page-container .single-page.is-loaded::after {
   opacity:1
 }
 
 .page-container .single-page.is-full-width {
 /* selected item 
   left:0;
   width:100vw;
   -webkit-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
   -moz-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
   -ms-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
   -mo-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
   transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
 }
 
 .page-title {
   position:absolute;
   z-index:1;
   left:0;
   top:50vh;
   width:25vw;
   opacity:0;
   text-align:center;
   -webkit-transform: translateY(-50%) translateX(-20px);
   -moz-transform: translateY(-50%) translateX(-20px);
   -ms-transform: translateY(-50%) translateX(-20px);
   -o-transform: translateY(-50%) translateX(-20px);
   transform: translateY(-50%) translateX(-20px)
 }
 
 .page-title h2 {
   font-family: "PT Sans",sans-serif;
   font-size: 2.25em;
   font-weight: 700;
   letter-spacing: 1px;
   line-height: 1.5em;
   margin: 20px auto 5px;
   text-transform: uppercase;
 }
 
 .page-title p {
   font-size:1.4rem;
   font-family:"Merriweather",serif;
   font-style:italic;
   line-height:1.2;
   padding:.5em 2em;
   display:block;
   opacity:.6
 }
 
 
 .is-loaded .page-title {
   opacity:1;
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
   transform: translateY(-50%);
   -webkit-transition: -webkit-transform 0.6s,opacity 0.6s,left .4s;
   -moz-transition: -moz-transform 0.6s,opacity 0.6s,left .4s;
   transition: transform 0.6s,opacity 0.6s,left .4s
 }
 
 .is-loaded.is-full-width .page-title {
   left:37.5vw;
   -webkit-transition: -webkit-transform 0.6s,opacity 0s,left .4s;
   -moz-transition: -moz-transform 0.6s,opacity 0s,left .4s;
   transition: transform 0.6s,opacity 0s,left .4s
 }
 
 } /* min-width:768 end */

/* ----------------------------------------------------
 /* 5. Resume Styles
 /* ---------------------------------------------------- */
.over-div {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.04);
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.resume {
  background: none repeat scroll 0 0 rgba(242, 242, 242, 0.85);
  overflow: hidden;
  padding: 35px 0 50px;
  position: relative;
}

.resume .sec-divider {
  background: url("../img/icons/grad-cap.svg") no-repeat scroll center center
    rgba(0, 0, 0, 0);
  display: block;
  height: 52px;
  margin: 40px auto 20px;
  width: 52px;
}

.resume .education ul,
.resume .employment ul {
  margin: 0;
  padding: 0;
}

.resume .education {
  text-align: right;
  padding-right: 50px;
}

.resume .employment {
  text-align: left;
  position: relative;
  padding-left: 10px;
  width: 99%;
}

.resume .education h2,
.resume .employment h2 {
  color: #1f1f20;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 36px 0;
}

.education ul li {
  display: block;
  margin: 20px 0;
}

.employment ul li {
  display: block;
  margin: 20px 0;
}

.education ul li h3,
.employment ul li h3 {
  color: #636368;
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
  padding: 5px 0;
}

.education ul li h4,
.employment ul li h4 {
  color: #3f3f46;
  font-family: "Merriweather", sans-serif;
  font-size: 14px;
  padding: 5px 0;
}

.education ul li span,
.employment ul li span {
  color: #0ed4c8;
  display: inline-block;
  margin: 5px 0 10px;
  font-size: 13px;
}

.education ul li p,
.employment ul li p {
  color: #838c95;
  font-size: 14px;
  line-height: 24px;
  padding: 5px 0;
}

.education ul li p {
  padding-left: 150px;
}

.employment dl dd dt {
  padding-right: 100px;
}

/* ----------------------------------------------------
 /* 6.a. Testimonials Styles
 /* ---------------------------------------------------- */

.testimonials {
  background: none repeat scroll 0 0 rgba(242, 242, 242, 0.85);
  display: block !important;
  min-height: 200px;
  min-width: 100vw;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 10%;
}

@font-face {
  font-family: "Myriad Pro Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Bold"),
    url("../fonts/Myriad Pro/MYRIADPRO-REGULAR.woff") format("woff");
}

@font-face {
  font-family: "CfDaphne";
  src: url("../fonts/cf daphne/CF Daphne Rg 2.ttf") format("truetype");
}

.inside-titles {
  font-size: 23px;
  padding-bottom: 5px;
  color: #fdb320;
  font-family: "CfDaphne", "Times New Roman", Times, serif;
  margin-left: -10px;
}

.breakfast-titles {
  font-size: 23px;
  padding-bottom: 5px;
  color: #65675c;
  font-family: "CfDaphne", "Times New Roman", Times, serif;
  margin-left: -10px;
}

.drink-titles,
.inside-drink-titles {
  font-size: 23px;
  padding-bottom: 8px;
  color: #43bbed;
  font-family: "CfDaphne", "Times New Roman", Times, serif;
  margin-left: -10px;
}

.soon {
  font-size: 95px;
  margin: 10%;
  font-family: "CfDaphne", "Times New Roman", Times, serif;
  text-align: center;
}

.inside-drink-titles2 {
  color: #a5a49a;
  font-size: 19px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
  font-family: "CfDaphne", "Times New Roman", Times, serif;
}

.inside-drink-titles {
  color: #a5a49a;
  font-size: 18px;
  padding-top: -2px;
}

.over-div {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.04);
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.testimonials .text-container {
  padding-top: 10px;
  padding-bottom: 50px;
}
.testimonials h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 25px;
  font-weight: 900;
  color: #d30f0f;
  text-align: left;
}

.testimonials dt {
  font-family: "Myriad Pro Bold", "Times New Roman", Times, serif;
  font-size: 18.5px;
  /*font-weight:500;*/
  color: #000000;
  text-align: left;
  margin-left: -10px;
}

@font-face {
  font-family: "Myriad Pro Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Myriad Pro Regular"),
    url("../fonts/Myriad Pro/MYRIADPRO-REGULAR.woff") format("woff");
}

.testimonials dd {
  font: 18px "Myriad Pro Regular", "Merriweather", sans-serif !important;
  /*font-weight:300;*/
  color: #332e2e;
  text-align: left;
  margin-bottom: 5px;
  margin-left: -10px;
}

.testimonials h1 span {
  display: block;
}

.testimonials .header-col {
  padding-top: 9px;
}

/*  Blockquotes */
.testimonials blockquote {
  margin: 0 0 30px;
  position: relative;
  border: none;
}

.testimonials blockquote:before {
  content: none;
}

.testimonials blockquote p {
  color: #3f3f46;
  display: block;
  font-size: 16px;
  font-style: italic;
  line-height: 28px;
  margin: 0 auto;
  max-width: 800px;
  padding: 0;
  text-align: center;
}

.testimonials blockquote cite {
  display: block;
  font-size: 12px;
  text-align: center;
  font-style: normal;
  line-height: 18px;
  color: #3f3f46;
}

.testimonials blockquote cite:before {
  content: "\2014 \0020";
}

.testimonials blockquote p:before {
  color: #3f3f46;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 20px;
  margin-left: -20px;
  margin-top: -5px;
  opacity: 0.4;
  position: absolute;
}

.testimonials blockquote p:after {
  color: #3f3f46;
  content: "\f10e";
  font-family: "FontAwesome";
  font-size: 20px;
  margin-left: 1px;
  margin-top: 5px;
  opacity: 0.4;
  position: absolute;
}

.testimonials blockquote cite a,
.testimonials blockquote cite a:visited {
  color: #8b9798;
  border: none;
}

.owl-theme .owl-controls .owl-page span {
  background: none repeat scroll 0 0 #3f3f46 !important;
}

.clients {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.clients ul li {
  float: left;
  display: inline-block;
  margin: 10px;
}

/* ----------------------------------------------------
 /*   Side bar nav menu Styles
 /* ---------------------------------------------------- */

body {
  font-family: "Lato", sans-serif;
}

.bottom-left {
  position: absolute;
  font-size: 26px;
  color: #ebebeb;
  top: 1.86px;
  left: 13px;
}
.bottom-right {
  position: absolute;
  bottom: 3px;
  left: 15px;
  color: #f8f8f8;
  font-size: 12px;
  font-weight: 700;
}

.bottom-p {
  position: absolute;
  bottom: 10px;
  right: 5px;
  color: #f8f8f8;
  font-size: 12px;
  font-weight: 700;
  -webkit-transition: 0.1s 0.1s 0.1s 0.1s;
  -moz-transition: 0.1s 0.1s 0.1s 0.1s;
  transition: 0.1s 0.1s 0.1s 0.1s;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.99);
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #d6d6d6;
  display: block;
  border: none;
  background: none;
  outline: none;
  transition: 0.3s;
}

.sidenav a.ex2:hover,
a.ex2:active {
  color: #ffffff;
  font-size: 200%;
}

/*
 .sidenav .closebtn {
   position: absolute;
   top: 0;
   right: 25px;
   font-size: 36px;
   margin-left: 50px;
 }
 
 img {
   border-radius: 50%;
 }
 
 .centered {
   position: absolute;
   top: 11%;
   left: 50%;
   transform: translate(-50%, -50%);
 }
 
 .options{
   position: absolute;
   top: 200px;
   left:-10px;
 }
 
 
 #events {
   position: fixed;
   display: none;
   width: 100%;
   height: 100%;
   top:0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.97);
   z-index: 2;
   cursor: pointer;
   overflow: auto;
 }
 #specialmenu{
   position: fixed;
   display: none;
   width: 100%;
   height: 100%;
   top:0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.97);
   z-index: 2;
   cursor: pointer;
   overflow: auto;
 }
 
 
 
 
 .closeicE{
   position: absolute;
   top: 0;
   right: 25px;
   font-size: 40px;
   margin-left: 50px;
   color: white;
 }
 .closeicS{
   position: absolute;
   top: 0;
   right: 25px;
   font-size: 40px;
   margin-left: 50px;
   color: white;
 }
 
 #outside {
   position: fixed;
   display: none;
   width: 30%;
   height: 100%;
   top: 0;
   margin-left: 100%;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0);
   z-index: 2;
   cursor: pointer;
 }
 
 /*------------media ICONS-------------------*/

body {
  margin: 0;
}

.icon-bar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  overflow: auto;
  margin-left: 28px;
  margin-top: 75px;
}

.icon-bar a {
  float: left;
  width: 20%;
  text-align: center;
  padding: 12px 0;
  transition: all 0.3s ease;
  color: white;
  font-size: 24px;
}

.icon-bar a:hover {
  background-color: rgba(0, 0, 0, 0);
}

/* -----------------dropdown translate-------------------- */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(46, 46, 46);
  width: 100%;
  margin-left: 20%;
  z-index: 1;
  height: 100px;
  overflow: auto;
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  font-size: 20px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: rgb(97, 97, 97);
}

.dropdown:hover .dropbtn {
  background-color: rgba(0, 0, 0, 0);
}
.show {
  display: block;
}

/* -----------------EVENTS CONTAINER-------------------- */
.containers {
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  padding: 20px;
  margin: 40px 0;
}

.containers::after {
  content: "";
  clear: both;
  display: table;
}

.containers img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.containers span {
  color: #ffffff;
  font-size: 25px;
  margin-right: 15px;
}

.containers p {
  color: #ffffff;
  font-size: 15px;
  margin-right: 15px;
}

/* -----------------SPECIAL CONTAINER-------------------- */

.special {
  min-height: 200px;
  max-width: 300px;
  padding: 50px 0;
  width: 100%;
  height: 100%;
  display: block !important;
  position: relative;
  top: 55%;
  left: 53%;
  transform: translate(-50%, -50%);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.special h2 {
  font-family: "Alegreya SC";
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.special dt {
  font-family: "Courgette";
  font-size: 14px;
  font-weight: 500;
  color: #fdfdfd;
  text-align: center;
  margin-left: -10px;
}
.special dd {
  font: 12px/16px Merriweather, sans-serif;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  padding-bottom: 20px;
  margin-left: -10px;
  width: 100%;
  display: fixed;
}

.change {
  overflow: hidden;
  position: relative;
}

.slidehand {
  margin-left: 55%;
  position: relative;
  -webkit-animation: mymove 3.5s infinite; /* Safari 4.0 - 8.0 */
  animation: mymove 3.5s infinite;
}
​
 
 /* Safari 4.0 - 8.0 */
 @-webkit-keyframes mymove {
  from {
    right: 0px;
  }
  to {
    right: 80px;
  }
}

@keyframes mymove {
  from {
    right: 0px;
  }
  to {
    right: 80px;
  }
}

/* CHANGES BY ENNEAS */
#modal2 {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2;
  cursor: pointer;
}

#modal {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  cursor: pointer;
}

#modal img {
  border-radius: 0;
}

/* CHANGES BY ENNEAS */

#text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.open_image {
  border-radius: 50%;
  width: 300px;
  border: 5px solid #ffffff;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  overflow-y: scroll;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 17px;
  color: #ffffff;
  display: block;
  transition: 0.3s;
}

.overlay .closebtn {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 40px;
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/*HEADER NAVBAR*/

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}

details > summary::before {
  /*content: '\25B6';*/
  content: none;
}

details[open] > summary::before {
  /*content: '\25BC';*/
  content: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details ::-webkit-details-marker {
  display: none;
}

.food-info {
}

/* details > summary::before {
   content: '\25B6';
 }
 
 details > summary::-webkit-details-marker::before {
   content: '\25BC';
 }
 
 details[open] > summary::before {
   content: '\25BC';
 }
 details[open] > summary::-webkit-details-marker::before {
   content: '\25BC';
 } */

/* Hides the google translate toolbar */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-combo {
  font-size: 14px !important;
}
/* Styles the dropdown */
#google_translate_element {
  display: inline-block;
  margin-left: 10px;
}

.goog-te-gadget-simple {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 8px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #555;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: #555;
}

.goog-te-gadget-simple .goog-te-menu-value span:hover {
  color: #000;
}

.goog-te-gadget-icon {
  display: none;
}

/* Dropdown menu styles */
.goog-te-combo {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #333;
  outline: none;
}

iframe {
  visibility: hidden !important;
}
