/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

body {
  position: absolute;
  width: 100%;
  background: pink;
  color: white;
}
/******************************************
/* LAYOUT
/*******************************************/
img{
  display: block;
  margin: 0 auto;
  height: 400px;
}

.ques {
  text-align: center;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/

.caro {
  position: relative;
  margin-top: 5%;
}

.caro-item {
  
  padding: 1em;
  font-weight: bold;
  font-size: 2em;
  display: none;
  text-align: center;
}
.caro-item-selected {
  display: block;
}

.caro-nav {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  text-align: center;
}

.caro-button {
  width: 10px;
  display: inline-block;
  height: 10px;
  background: rgba(0,0,0,.4);
  border-radius: 50%;
  margin: 50px 5px;
  cursor: pointer;
}

.caro-button-selected {
  background: rgba(0,0,0,.8);
}



/* CSS */
.button-80 {
  background: #fff;
  backface-visibility: hidden;
  border-radius: .375rem;
  border-style: solid;
  border-width: .125rem;
  box-sizing: border-box;
  color: #212121;
  cursor: pointer;
  display: inline-block;
  font-family: Circular,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  padding: .5rem 1.125rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transform: translateZ(0) scale(1);
  transition: transform .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  height: 40px;
}

.button-80:not(:disabled):hover {
  transform: scale(1.05);
}

.button-80:not(:disabled):hover:active {
  transform: scale(1.05) translateY(.125rem);
}

.button-80:focus {
  outline: 0 solid transparent;
}

.button-80:focus:before {
  content: "";
  left: calc(-1*.375rem);
  pointer-events: none;
  position: absolute;
  top: calc(-1*.375rem);
  transition: border-radius;
  user-select: none;
}

.button-80:focus:not(:focus-visible) {
  outline: 0 solid transparent;
}

.button-80:focus:not(:focus-visible):before {
  border-width: 0;
}

.button-80:not(:disabled):active {
  transform: translateY(.125rem);
}

input {
  border-radius: 5px;
  height: 38px;
  width: 15%;
}

.hide {
  display: none;
}

/***** CARDS ****/

.cards {
  width: 100%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  /**justify-content: center;
  -webkit-justify-content: center;**/
  max-width: 820px;
}

.card__info-hover {
  position: absolute;
  padding: 16px;
width: 100%;
opacity: 0;
top: 0;
}


.card {
margin-right: 25px;
transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
background-color: #fff;
  width: 33.3%;
border-radius: 12px;
margin: 5% auto;
overflow: hidden;
box-shadow: 0px 13px 10px -7px rgba(0, 0, 0,0.1);
color: black;
}
.card:hover {
box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
  transform: scale(1.10, 1.10);
  color: black;
}

.card__info {
z-index: 2;
background-color: #fff;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
 padding: 16px 24px 24px 24px;
}

.card__category {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
color: #868686;
}

.card__title {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Roboto Slab', serif;
}

.card__by {
  font-size: 12px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.card__author {
  font-weight: 600;
  text-decoration: none;
  color: #AD7D52;
}

.card:hover .card__img--hover {
  height: 100%;
  opacity: 0.3;
}

.card:hover .card__info {
  background-color: transparent;
  position: relative;
}

.card:hover .card__info-hover {
  opacity: 1;
}

@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:100,300,400,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');


body, html {
  font-family: 'Roboto Slab', serif;
  width: 100%;
  height: 100%;
}

.drinksPics {
  border-radius: 50%;
  height: 200px;
}


/*** nav and banner ****/

/* Container */

.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1400px;
}

  @media screen and (max-width: 1680px) {

    .container {
      width: 1200px;
    }

  }

  @media screen and (max-width: 1280px) {

    .container {
      width: 100%;
    }

  }

  @media screen and (max-width: 960px) {

    .container {
      width: 100%;
    }

  }

  @media screen and (max-width: 840px) {

    .container {
      width: 100%;
    }

  }

  @media screen and (max-width: 736px) {

    .container {
      width: 100%;
    }

  }

  header {
		margin: 0 0 1em 0;
	}

		header > p {
			display: block;
			font-size: 1.5em;
			margin: 1em 0 2em 0;
			line-height: 1.5em;
			text-align: inherit;
		}

    /* Menu */

	ul.menu {
		height: 1em;
		line-height: 1em;
		list-style: none;
		padding-left: 0;
	}

		ul.menu li {
			display: inline-block;
			border-left: solid 1px rgba(128, 128, 128, 0.2);
			padding-left: 1.25em;
			margin-left: 1.25em;
		}

			ul.menu li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

/* Wrapper */

/**.wrapper {
  background: #fff;
  margin: 0 0 2em 0;
  padding: 6em 0 6em 0;
}

  .wrapper.style2 {
    padding-top: 0;
  }
**/
/* Header */

#header {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 7.5em 0 2em 0;
  cursor: default;
}

  #header:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  #header .inner {
    position: relative;
    z-index: 1;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
  }

  #header header {
    display: inline-block;
  }

    #header header > p {
      font-size: 1.25em;
      margin: 0;
    }

  #header h1 {
    color: #fff;
    font-size: 3em;
    line-height: 1em;
  }

    #header h1 a {
      color: inherit;
    }

  #header .button {
    display: inline-block;
    border-radius: 100%;
    width: 4.5em;
    height: 4.5em;
    line-height: 4.5em;
    text-align: center;
    font-size: 1.25em;
    padding: 0;
  }

  #header hr {
    top: 1.5em;
    margin-bottom: 3em;
    border-bottom-color: rgba(192, 192, 192, 0.35);
    box-shadow: inset 0 1px 0 0 rgba(192, 192, 192, 0.35);
  }

    #header hr:before, #header hr:after {
      background: rgba(192, 192, 192, 0.35);
    }

  #header footer {
    margin: 1em 0 0 0;
  }

body.homepage #header {
  height: 100vh;
  min-height: 40em;
}

  body.homepage #header h1 {
    font-size: 4em;
  }

  body.homepage #header:after {
    content: '';
    background: #1C0920;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -moz-transition: opacity 2.5s ease-in-out;
    -webkit-transition: opacity 2.5s ease-in-out;
    -ms-transition: opacity 2.5s ease-in-out;
    transition: opacity 2.5s ease-in-out;
    -moz-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    transition-delay: 0.5s;
  }



/* Nav */

#nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 1.5em 0 1.5em 0;
  z-index: 1;
  overflow: hidden;
}

  #nav > ul {
    line-height: 0px;
    position: relative;
    display: inline-block;
    margin: 0;
    height: 21px;
    border-left: solid 1px rgba(192, 192, 192, 0.35);
    border-right: solid 1px rgba(192, 192, 192, 0.35);
  }

    #nav > ul:before, #nav > ul:after {
      content: '';
      display: block;
      width: 300%;
      position: absolute;
      top: 50%;
      margin-top: -2px;
      height: 5px;
      border-top: solid 1px rgba(192, 192, 192, 0.35);
      border-bottom: solid 1px rgba(192, 192, 192, 0.35);
    }

    #nav > ul:before {
      left: 100%;
      margin-left: 1px;
    }

    #nav > ul:after {
      right: 100%;
      margin-right: 1px;
    }

    #nav > ul > li {
      display: inline-block;
      margin: -9px 0.5em 0 0.5em;
      border-radius: 0.5em;
      padding: 0.85em;
      border: solid 1px transparent;
      -moz-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
      -webkit-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
      -ms-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
      transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    }

      #nav > ul > li.active {
        border-color: rgba(192, 192, 192, 0.35);
      }

      #nav > ul > li > a, #nav > ul > li > span {
        display: block;
        color: inherit;
        text-decoration: none;
        border: 0;
        outline: 0;
      }

      #nav > ul > li > ul {
        display: none;
      }

.dropotron {
  background: rgba(255, 255, 255, 0.975);
  padding: 1em 1.25em 1em 1.25em;
  line-height: 1em;
  height: auto;
  text-align: left;
  border-radius: 0.5em;
  box-shadow: 0 0.15em 0.25em 0 rgba(0, 0, 0, 0.25);
  min-width: 12em;
  margin-top: -1em;
  list-style: none;
}

  .dropotron li {
    border-top: solid 1px rgba(128, 128, 128, 0.2);
    color: #5b5b5b;
    padding-left: 0;
  }

    .dropotron li:first-child {
      border-top: 0;
    }

    .dropotron li:hover {
      color: #ef8376;
    }

    .dropotron li a, .dropotron li span {
      display: block;
      border: 0;
      padding: 0.5em 0 0.5em 0;
      -moz-transition: color 0.35s ease-in-out;
      -webkit-transition: color 0.35s ease-in-out;
      -ms-transition: color 0.35s ease-in-out;
      transition: color 0.35s ease-in-out;
    }

  .dropotron.level-0 {
    margin-top: 2em;
    font-size: 0.9em;
  }

    .dropotron.level-0:before {
      content: '';
      position: absolute;
      left: 50%;
      top: -0.7em;
      margin-left: -0.75em;
      border-bottom: solid 0.75em rgba(255, 255, 255, 0.975);
      border-left: solid 0.75em rgba(64, 64, 64, 0);
      border-right: solid 0.75em rgba(64, 64, 64, 0);
    }

/* Banner */

#banner {
  background: white;
  color: black;
  text-align: center;
  padding: 4.5em 0 4.5em 0;
  margin-bottom: 0;
}

  #banner header > p {
    margin-bottom: 0;
  }

#footer {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2%;
}

.liqour {
  cursor: pointer;
}