#coffee-wrap {
  width: 800px;
  height: 350px;
  position: absolute;
  top: 35%;
  right: -57%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  #coffee-wrap {
    width: 100% !important;
    height: 350px;
    top: -16%;
    right: -175%;
  }
}

.mug,
.machine,
.floor {
  position: absolute;
}

.mug {
  width: 72px;
  height: 77px;
  bottom: 6px;
  z-index: 4;
}

.mug1 {
  opacity: 1;
  right: 100px;
  -webkit-animation: new-mug 3.5s ease infinite;
          animation: new-mug 3.5s ease infinite;
}

.mug2 {
  opacity: 1;
  right: 220px;
  -webkit-animation: jump-to-machine 3.5s linear infinite;
          animation: jump-to-machine 3.5s linear infinite;
}

.mug3 {
  right: 377px;
  bottom: 46px;
  -webkit-animation: filled-out 3.5s ease infinite;
          animation: filled-out 3.5s ease infinite;
}

.mug4 {
  right: 540px;
  -webkit-animation: go-out 3.5s ease infinite;
          animation: go-out 3.5s ease infinite;
}

@media (max-width: 768px) {
  .mug4 {
    bottom: -44px;
  }
}

.svg-mug {
  width: 100%;
  height: 100%;
}

.mug .cream {
  -webkit-animation: mug-fill-cream 3.5s ease infinite;
          animation: mug-fill-cream 3.5s ease infinite;
}

.mug .coffee {
  -webkit-animation: mug-fill-coffee 3.5s ease infinite;
          animation: mug-fill-coffee 3.5s ease infinite;
}

.machine {
  width: 173px;
  height: 285px;
  bottom: 6px;
  left: 300px;
  z-index: 2;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: machine-coffee 3.5s ease infinite;
          animation: machine-coffee 3.5s ease infinite;
}

#hot-coffee-wrap {
  position: absolute;
  bottom: 56px;
  right: 408px;
  height: 100px;
  width: 20px;
  overflow: hidden;
  z-index: 2;
  -webkit-animation: hot-coffee-wrap 3.5s ease infinite;
          animation: hot-coffee-wrap 3.5s ease infinite;
}

.last-drop {
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  bottom: 30px;
  left: 8px;
  border-radius: 50%;
  background: #AB4D37;
  -webkit-animation: last-drop 3.5s ease infinite;
          animation: last-drop 3.5s ease infinite;
}

#hot-coffee-down {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: hot-coffee-down 3.5s ease infinite;
          animation: hot-coffee-down 3.5s ease infinite;
}

.olhos {
  -webkit-animation: olhos 3.5s ease infinite;
          animation: olhos 3.5s ease infinite;
}

#boca-encher {
  -webkit-animation: boca-encher 3.5s ease infinite;
          animation: boca-encher 3.5s ease infinite;
}

#boca-sopro {
  opacity: 0;
  -webkit-animation: boca-sopro 3.5s ease infinite;
          animation: boca-sopro 3.5s ease infinite;
}

#boca-pronto {
  opacity: 0;
  -webkit-animation: boca-pronto 3.5s ease infinite;
          animation: boca-pronto 3.5s ease infinite;
}

.svg-machine {
  width: 100%;
  height: 100%;
}

.stars {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 20%;
  background: #F9D67D;
  opacity: 0;
  bottom: 0;
  left: 0;
}

.star1 {
  opacity: 0;
  -webkit-transform: translate(500px, -120px) scale(0.2);
          transform: translate(500px, -120px) scale(0.2);
  -webkit-animation: star1 3.5s ease infinite;
          animation: star1 3.5s ease infinite;
}

.star2 {
  opacity: 0;
  -webkit-transform: translate(280px, -170px) scale(0.2);
          transform: translate(280px, -170px) scale(0.2);
  -webkit-animation: star2 3.5s ease infinite;
          animation: star2 3.5s ease infinite;
}

.star3 {
  opacity: 0;
  -webkit-transform: translate(500px, -250px) scale(0.2);
          transform: translate(500px, -250px) scale(0.2);
  -webkit-animation: star3 3.5s ease infinite;
          animation: star3 3.5s ease infinite;
}

/* Floor */
.floor {
  width: 538px;
  height: 10px;
  bottom: 6px;
  left: 120px;
  z-index: 0;
}

.svg-floor {
  width: 100%;
  height: 100%;
}

/* MUG 1 */
@-webkit-keyframes new-mug {
  0% {
    opacity: 1;
    right: 220px;
  }
  21.25% {
    opacity: 1;
    right: 220px;
  }
  21.30% {
    opacity: 0;
    right: 100px;
  }
  31.25% {
    opacity: 0;
    right: 100px;
  }
  34% {
    opacity: 1;
  }
  37.5% {
    right: 220px;
  }
  100% {
    opacity: 1;
    right: 220px;
  }
}
@keyframes new-mug {
  0% {
    opacity: 1;
    right: 220px;
  }
  21.25% {
    opacity: 1;
    right: 220px;
  }
  21.30% {
    opacity: 0;
    right: 100px;
  }
  31.25% {
    opacity: 0;
    right: 100px;
  }
  34% {
    opacity: 1;
  }
  37.5% {
    right: 220px;
  }
  100% {
    opacity: 1;
    right: 220px;
  }
}

/* MUG 2 */
@-webkit-keyframes jump-to-machine {
  0% {
    opacity: 0;
  }
  21.2% {
    opacity: 0;
  }
  21.25% {
    opacity: 1;
    bottom: 6px;
    right: 220px;
  }
  39.95% {
    opacity: 1;
    bottom: 46px;
    right: 377px;
  }
  40% {
    opacity: 0;
    bottom: 6px;
    right: 220px;
  }
}
@keyframes jump-to-machine {
  0% {
    opacity: 0;
  }
  21.2% {
    opacity: 0;
  }
  21.25% {
    opacity: 1;
    bottom: 6px;
    right: 220px;
  }
  39.95% {
    opacity: 1;
    bottom: 46px;
    right: 377px;
  }
  40% {
    opacity: 0;
    bottom: 6px;
    right: 220px;
  }
}

/* MUG 3 */
@-webkit-keyframes mug-fill-coffee {
  0% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  30% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  30.1% {
    opacity: 0;
    y: 70;
    height: 0px;
  }
  40.9% {
    opacity: 0;
  }
  41% {
    opacity: 1;
    y: 70;
    height: 0px;
  }
  80% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  100% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
}
@keyframes mug-fill-coffee {
  0% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  30% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  30.1% {
    opacity: 0;
    y: 70;
    height: 0px;
  }
  40.9% {
    opacity: 0;
  }
  41% {
    opacity: 1;
    y: 70;
    height: 0px;
  }
  80% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
  100% {
    y: 30;
    height: 47px;
    opacity: 1;
  }
}

@-webkit-keyframes mug-fill-cream {
  0% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  30% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  30.1% {
    y: 70;
    height: 0px;
    opacity: 1;
  }
  41% {
    y: 70;
    height: 0px;
    opacity: 1;
  }
  80% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  100% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
}

@keyframes mug-fill-cream {
  0% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  30% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  30.1% {
    y: 70;
    height: 0px;
    opacity: 1;
  }
  41% {
    y: 70;
    height: 0px;
    opacity: 1;
  }
  80% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
  100% {
    y: 20;
    height: 10px;
    opacity: 1;
  }
}

@-webkit-keyframes filled-out {
  0% {
    opacity: 1;
  }
  10% {
    bottom: 46px;
    right: 377px;
    opacity: 1;
  }
  30% {
    bottom: 6px;
    right: 540px;
    opacity: 1;
  }
  30.1% {
    opacity: 0;
  }
  39.9% {
    opacity: 0;
    bottom: 46px;
    right: 377px;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes filled-out {
  0% {
    opacity: 1;
  }
  10% {
    bottom: 46px;
    right: 377px;
    opacity: 1;
  }
  30% {
    bottom: 6px;
    right: 540px;
    opacity: 1;
  }
  30.1% {
    opacity: 0;
  }
  39.9% {
    opacity: 0;
    bottom: 46px;
    right: 377px;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* MUG 4 */
@-webkit-keyframes go-out {
  0% {
    opacity: 1;
  }
  7% {
    bottom: 6px;
    right: 540px;
    opacity: 1;
  }
  13% {
    bottom: 6px;
    right: 620px;
    opacity: 0;
  }
  30% {
    opacity: 0;
    right: 540px;
  }
  30.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes go-out {
  0% {
    opacity: 1;
  }
  7% {
    bottom: 6px;
    right: 540px;
    opacity: 1;
  }
  13% {
    bottom: 6px;
    right: 620px;
    opacity: 0;
  }
  30% {
    opacity: 0;
    right: 540px;
  }
  30.1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* Coffee */
@-webkit-keyframes hot-coffee-wrap {
  0% {
  }
  39% {
  }
  40% {
    height: 105px;
  }
  70% {
    height: 84px;
  }
  71% {
  }
}
@keyframes hot-coffee-wrap {
  0% {
  }
  39% {
  }
  40% {
    height: 105px;
  }
  70% {
    height: 84px;
  }
  71% {
  }
}

@-webkit-keyframes hot-coffee-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  39% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(600px);
            transform: translateY(600px);
  }
  71% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes hot-coffee-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  39% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(600px);
            transform: translateY(600px);
  }
  71% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes last-drop {
  0% {
    opacity: 0;
  }
  64% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  66% {
    opacity: 1;
  }
  71% {
    opacity: 1;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  76% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  77% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes last-drop {
  0% {
    opacity: 0;
  }
  64% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  66% {
    opacity: 1;
  }
  71% {
    opacity: 1;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  76% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  77% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Machine */
@-webkit-keyframes machine-coffee {
  0% {
  }
  25% {
    /*width: 165px;
        height: 300px;
        margin-left: 0;*/
    -webkit-transform: scale(0.95, 1.07);
            transform: scale(0.95, 1.07);
  }
  40% {
    /*width: 165px;
        height: 300px;
        margin-left: 0;*/
    -webkit-transform: scale(0.95, 1.07);
            transform: scale(0.95, 1.07);
  }
  75% {
    /*width: 183px;
        height: 265px;*/
    -webkit-transform: scale(1.05, 0.92);
            transform: scale(1.05, 0.92);
  }
  100% {
  }
}
@keyframes machine-coffee {
  0% {
  }
  25% {
    /*width: 165px;
        height: 300px;
        margin-left: 0;*/
    -webkit-transform: scale(0.95, 1.07);
            transform: scale(0.95, 1.07);
  }
  40% {
    /*width: 165px;
        height: 300px;
        margin-left: 0;*/
    -webkit-transform: scale(0.95, 1.07);
            transform: scale(0.95, 1.07);
  }
  75% {
    /*width: 183px;
        height: 265px;*/
    -webkit-transform: scale(1.05, 0.92);
            transform: scale(1.05, 0.92);
  }
  100% {
  }
}

@-webkit-keyframes olhos {
  3.75% {
    /* cy: 78.666; */
    opacity: 1;
  }
  3.80% {
    opacity: 0;
  }
  6% {
    opacity: 0;
  }
  6.1% {
    opacity: 1;
  }
  10% {
    /*cy: 74.666;*/
  }
  25% {
  }
  40% {
    /*cy: 74.666;*/
  }
  71% {
    /*cy: 83.666;*/
  }
  89% {
    /*opacity: 1;*/
  }
  90% {
    /*opacity: 0;*/
  }
  93% {
    /*opacity: 0;*/
  }
  94% {
    /*opacity: 1;*/
  }
  100% {
  }
}

@keyframes olhos {
  3.75% {
    /* cy: 78.666; */
    opacity: 1;
  }
  3.80% {
    opacity: 0;
  }
  6% {
    opacity: 0;
  }
  6.1% {
    opacity: 1;
  }
  10% {
    /*cy: 74.666;*/
  }
  25% {
  }
  40% {
    /*cy: 74.666;*/
  }
  71% {
    /*cy: 83.666;*/
  }
  89% {
    /*opacity: 1;*/
  }
  90% {
    /*opacity: 0;*/
  }
  93% {
    /*opacity: 0;*/
  }
  94% {
    /*opacity: 1;*/
  }
  100% {
  }
}

@-webkit-keyframes boca-encher {
  0% {
    opacity: 1;
    r: 2.666;
  }
  30% {
    r: 14;
    opacity: 1;
  }
  38% {
    r: 14;
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  25% {
  }
  40% {
  }
  75% {
  }
  100% {
    opacity: 0;
  }
}

@keyframes boca-encher {
  0% {
    opacity: 1;
    r: 2.666;
  }
  30% {
    r: 14;
    opacity: 1;
  }
  38% {
    r: 14;
    opacity: 1;
  }
  39% {
    opacity: 0;
  }
  25% {
  }
  40% {
  }
  75% {
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes boca-sopro {
  0% {
    opacity: 0;
  }
  38% {
    opacity: 0;
  }
  39% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  74% {
    opacity: 1;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  75% {
    opacity: 0;
  }
}

@keyframes boca-sopro {
  0% {
    opacity: 0;
  }
  38% {
    opacity: 0;
  }
  39% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  74% {
    opacity: 1;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  75% {
    opacity: 0;
  }
}

@-webkit-keyframes boca-pronto {
  0% {
    opacity: 0;
  }
  74% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes boca-pronto {
  0% {
    opacity: 0;
  }
  74% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes star1 {
  0% {
    opacity: 0;
  }
  28% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    -webkit-transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
  }
  40% {
    opacity: 1;
    -webkit-transform: translate(500px, -120px) scale(1) rotate(-45deg);
            transform: translate(500px, -120px) scale(1) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes star1 {
  0% {
    opacity: 0;
  }
  28% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    -webkit-transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
  }
  40% {
    opacity: 1;
    -webkit-transform: translate(500px, -120px) scale(1) rotate(-45deg);
            transform: translate(500px, -120px) scale(1) rotate(-45deg);
  }
  50% {
    -webkit-transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -120px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes star2 {
  0% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  45% {
    opacity: 1;
    -webkit-transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
            transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate(280px, -170px) scale(1) rotate(-45deg);
            transform: translate(280px, -170px) scale(1) rotate(-45deg);
  }
  65% {
    -webkit-transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
            transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes star2 {
  0% {
    opacity: 0;
  }
  43% {
    opacity: 0;
  }
  45% {
    opacity: 1;
    -webkit-transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
            transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
  }
  55% {
    opacity: 1;
    -webkit-transform: translate(280px, -170px) scale(1) rotate(-45deg);
            transform: translate(280px, -170px) scale(1) rotate(-45deg);
  }
  65% {
    -webkit-transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
            transform: translate(280px, -170px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes star3 {
  0% {
    opacity: 0;
  }
  53% {
    opacity: 0;
  }
  55% {
    opacity: 1;
    -webkit-transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
  }
  65% {
    opacity: 1;
    -webkit-transform: translate(500px, -210px) scale(1) rotate(-45deg);
            transform: translate(500px, -210px) scale(1) rotate(-45deg);
  }
  75% {
    -webkit-transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  76% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes star3 {
  0% {
    opacity: 0;
  }
  53% {
    opacity: 0;
  }
  55% {
    opacity: 1;
    -webkit-transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
  }
  65% {
    opacity: 1;
    -webkit-transform: translate(500px, -210px) scale(1) rotate(-45deg);
            transform: translate(500px, -210px) scale(1) rotate(-45deg);
  }
  75% {
    -webkit-transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
            transform: translate(500px, -210px) scale(0.2) rotate(-45deg);
    opacity: 1;
  }
  76% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.heading h1 {
  font-size: 56px;
  color: #fff;
  line-height: 64px;
  font-family: "Fontin Sans Rg", sans-serif;
  font-weight: bold;
}

.heading p {
  color: #fff;
  list-style: 20px;
}

.button {
  display: inline-block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #D27843;
  z-index: -2;
}

.button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #a25427;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}

.button:hover {
  color: #fff;
}

.button:hover:before {
  width: 100%;
}

/**************************************************
*********************Default Setting***************
****************************************************/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Oxygen', sans-serif;
  font-size: 16px;
}

@font-face {
  font-family: 'Fontin Sans Rg';
  src: url("fonts/FontinSans-Regular.woff2") format("woff2"), url("fonts/FontinSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fontin Sans Rg';
  src: url("fonts/FontinSans-Bold.woff2") format("woff2"), url("fonts/FontinSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

header {
  min-height: 96px;
  display: relative;
  background-color: #6a3523;
}

nav {
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  position: relative;
}

@media (max-width: 768px) {
  nav {
    background-color: #6a3523;
  }
}

#robotcarousel {
  margin-top: -96px;
}

@media (max-width: 768px) {
  #robotcarousel {
    margin-top: 0px;
    position: relative;
  }
}

.carousel-caption {
  top: 35%;
  left: 20%;
  text-align: left !important;
}

.carousel-caption h1 {
  color: #fff;
  font-size: 56px;
}

.carousel-caption h1 span {
  display: block;
}

@media (max-width: 768px) {
  .carousel-caption h1 span {
    display: inline;
  }
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 22px;
    font-weight: 700;
  }
}

.carousel-caption h5 {
  color: #fff !important;
}

.carousel-caption p {
  color: #fff !important;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .carousel-caption p {
    font-size: 16px;
    width: 100%;
  }
}

.carousel-caption .btnCls {
  background-color: #D27843;
  padding: 8px 10px 12px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  margin-right: 20px;
  line-height: 30px;
  height: 30px;
  margin-top: 30px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.carousel-caption .btnCls:hover {
  background-color: #c55b1d;
}

@media (max-width: 768px) {
  .carousel-caption .btnCls {
    display: none;
  }
}

.carousel-caption .btnCls2 {
  border: #b0521a 2px solid;
  padding: 7px 40px  10px 40px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .carousel-caption .btnCls2 {
    display: none;
  }
}

/*Styling logo*/
.logo {
  padding: 1vh 1vw;
  text-align: center;
}

.logo img {
  height: 5rem;
  width: 5rem;
}

.logo_menu {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexbtn {
  height: 40px;
  background-color: #D27843 !important;
  border: none !important;
}

@media (max-width: 768px) {
  .flexbtn {
    display: none !important;
  }
}

/*Styling Links*/
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0 0.7vw;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Oxygen", sans-serif;
  font-size: 1rem;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 1vw;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-links li a {
    margin: 0 10px;
  }
}

.nav-links li a:hover {
  color: #f78b4d;
}

.nav-links li {
  position: relative;
}

.nav-links li a::before {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background-color: #d27843;
  position: absolute;
  bottom: 0px;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
  width: 80%;
}

.navigation {
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
  position: relative;
  z-index: 9;
}

.content {
  float: left;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .content {
    margin-top: -50px;
  }
}

.banImg {
  float: right;
}

@media (max-width: 768px) {
  .banImg {
    display: none;
  }
}

.banImg img {
  margin-top: -120px;
}

/*Styling Buttons*/
.login-button {
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
}

.login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

.join-button {
  color: #131418;
  background-color: #61DAFB;
  border: 1.5px solid #61DAFB;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  -webkit-transition: all ease-in-out 350ms;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

.toggle div {
  background: #fff;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
  .fade:not(.show) {
    opacity: 1 !important;
  }
  .fade:not(.show) a {
    color: #fff;
  }
  nav {
    z-index: 3;
    position: static !important;
  }
}

@media screen and (max-width: 800px) and (max-width: 768px) {
  nav {
    width: 90%;
    display: table;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 8%;
    -webkit-transform: translate(-5%, -50%);
            transform: translate(-5%, -50%);
    z-index: 999999;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  .nav-links {
    position: fixed;
    background: #592412;
    height: 100vh;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 99;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 1;
  }
  .nav-links li:nth-child(1) {
    -webkit-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    -webkit-transition: all 0.5s ease 0.4s;
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    -webkit-transition: all 0.5s ease 0.6s;
    transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4) {
    -webkit-transition: all 0.5s ease 0.7s;
    transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5) {
    -webkit-transition: all 0.5s ease 0.8s;
    transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6) {
    -webkit-transition: all 0.5s ease 0.9s;
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }
  .nav-links li:nth-child(7) {
    -webkit-transition: all 0.5s ease 1s;
    transition: all 0.5s ease 1s;
    margin: 0;
  }
  li.fade {
    opacity: 1;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

.our_menu {
  background-color: #131720;
  min-height: 200px;
  padding: 118px 0;
  background-image: url(../images/our_menuBg.png);
  background-position: top right;
  background-repeat: no-repeat;
}

.nav-tabs {
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabStyle li button {
  background-color: #FAF3EB !important;
  border-radius: 0px !important;
  color: #323232;
  border: none !important;
}

.tabStyle li button.active {
  background-color: #D27843 !important;
  border-radius: 0px !important;
  color: #fff !important;
}

.tab-content {
  width: max-width 900px;
  display: table;
  margin: 0 auto;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1000px;
}

.menu .menuItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 60px;
  -webkit-box-flex: 44%;
      -ms-flex: 44%;
          flex: 44%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu .menuItems {
    margin-right: 0px;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

.menu .menuItems img {
  width: 50px;
  height: 48px;
  margin-right: 20px;
}

.menu .menuItems .itemDetails {
  margin-right: 20px;
}

.menu .menuItems .itemDetails h5 {
  font-family: "Fontin Sans Rg", sans-serif;
  color: #fff;
}

.menu .menuItems .itemDetails p {
  font-family: "Oxygen", sans-serif;
  font-size: 14px;
  color: #fff;
}

.menu .menuItems small {
  background-color: #D27843;
  width: 50px;
  height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  line-height: 30px;
}

.carousel-item {
  position: relative;
}

.carousel-item .carousel-ban-text-adj {
  position: absolute;
  z-index: 9999;
}

.carousel-item img {
  position: relative;
}

.reviews {
  background-color: #080F1E;
  padding: 82px 0;
  background-image: url(../images/reivew_bg.png);
  background-position: center left;
  background-repeat: no-repeat;
  position: relative;
}

.reviews #demos {
  margin-top: 35px;
}

.reviews .reviewBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviews .reviewBox time {
  font-family: "Oxygen", sans-serif;
  color: #fff;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.reviews .reviewBox p {
  font-family: "Oxygen", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.reviews .reviewBox a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 40px;
}

.reviews .reviewBox a::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background-color: #D27843;
  left: 0;
  top: 10px;
}

.reviews .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}

@media (max-width: 768px) {
  .reviews .owl-nav {
    display: none;
  }
}

.reviews .owl-nav .arrow-left {
  background-image: url(../images/arrow_left.png);
  background-repeat: no-repeat;
  width: 42px;
  height: 18px;
  position: absolute;
  left: -80px;
}

.reviews .owl-nav .arrow-right {
  background-image: url(../images/arrow_right.png);
  background-repeat: no-repeat;
  width: 42px;
  height: 18px;
  position: absolute;
  left: -30px;
}

.book_your_table {
  background-color: #E3E0E0;
  min-height: 200px;
  background-image: url(../images/bakground_bookYourTable.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 0px 0 20px 0;
  margin-bottom: 70px;
}

.book_your_table .box_center {
  background-color: #D27843;
  width: 62px;
  height: 71px;
  margin: 0 auto 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.book_your_table .box_center img {
  margin-top: 10px;
  margin-bottom: 10px;
}

.book_your_table .box_center h6 {
  color: #fff;
}

.book_your_table .heading_center {
  max-width: 80%;
  display: block;
  margin: 0 auto;
  position: relative;
}

.book_your_table .heading_center::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #8C6954;
  position: absolute;
  top: 50%;
}

.book_your_table .heading_center h2 {
  font-family: "Fontin Sans Rg", sans-serif;
  color: #4E3B32;
  font-size: 52px;
  font-weight: bold;
  text-align: center;
  background-color: #E3E0E0;
  position: relative;
  z-index: 9999;
  display: table;
  padding: 0 20px;
  margin: 0 auto;
}

.book_your_table .form_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  margin: 50px auto;
}

@media (max-width: 768px) {
  .book_your_table .form_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.book_your_table .form_section .img_card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.book_your_table .form_section .img_card img {
  width: 100%;
}

.book_your_table .form_section .formdesign {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 35px;
  background-color: #D1CBC7;
  min-height: 100%;
}

.book_your_table .form_section .formdesign h3 {
  font-family: "Fontin Sans Rg", sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.book_your_table .form_section .formdesign h3 span {
  display: block;
}

.book_your_table .form_section .form-group {
  margin-bottom: 24px;
}

.book_your_table .form_section .form-group label {
  margin-bottom: 14px;
}

.book_your_table .form_section .form-group input {
  border-radius: 0px;
  border: #857E7E 1px solid;
}

.book_your_table .form_section .form-group .btn-theme {
  background-color: #D27843;
  color: #fff;
  min-width: 150px;
  border-radius: 0px;
  float: right;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.book_your_table .form_section .form-group .btn-theme:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  background-color: #c55b1d;
}

.instaSec {
  margin-bottom: 80px;
}

.instaSec a img {
  width: 25%;
}

.instaSec h1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 54px;
  font-family: "Fontin Sans Rg", sans-serif;
  color: #4E3B32;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}

.instaSec h1 img {
  margin-right: 10px;
}

#instafeed-container a img {
  width: 20%;
  height: 210px;
}

@media (max-width: 768px) {
  #instafeed-container a img {
    width: 25%;
    height: 120px;
  }
}

footer {
  background: #080F1E;
  padding: 20px 0px 0px;
}

footer .footerLeft {
  padding: 20px 0 20px;
}

footer .footerLeft .logo {
  padding: 1vh 1vw 4vh;
}

footer .footerLeft p {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: #DDDCDC;
  font-family: "Fontin Sans Rg", sans-serif;
}

footer .footerRight {
  background: #40434B;
  padding: 20px 20px 0;
  margin-bottom: 24px;
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 380px 380px;
}

footer .footerRight h5 {
  font-weight: normal;
  font-size: calc(24px + 8*(100vw - 360px)/1440);
  line-height: calc(28px + 8*(100vw - 360px)/1440);
  color: #D1D1D1;
  font-family: "Fontin Sans Rg", sans-serif;
  margin-bottom: 30px;
}

footer .footerRight .contactSec {
  margin-bottom: 20px;
}

footer .footerRight .contactSec h6 {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  color: #F8F8F8;
  font-family: "Fontin Sans Rg", sans-serif;
  margin-bottom: 18px;
}

footer .footerRight .contactSec a {
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  font-family: "Oxygen", sans-serif;
  color: #CFCFCF;
}

footer .footerRight .contactSec .emailLink {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  font-family: "Oxygen", sans-serif;
  color: #CFCFCF;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footerRight .contactSec .emailLink img {
  margin-right: 12px;
}

footer .footerRight .contactSec .socialSec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footerRight .contactSec .socialSec .socialLink {
  margin-right: 20px;
}

footer .footerRight .contactSec .socialSec .socialLink :last-child {
  margin-right: 0px;
}

footer .footerLast {
  background: #131720;
  padding: 24px;
}

footer .footerLast p {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #D6D6D6;
  font-family: "Oxygen", sans-serif;
}

footer .footerLast .footerTerm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footerLast .footerTerm a {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #D6D6D6;
  text-decoration: none;
  font-family: "Oxygen", sans-serif;
}

@media screen and (min-width: 1200px) {
  footer .footerLast {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footerLast a {
    margin-right: 24px;
    position: relative;
  }
  footer .footerLast a:last-child {
    margin-right: 0;
  }
  footer .footerLast a:last-child::before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    background: #D6D6D6;
    left: -12px;
  }
  footer .footerLast p {
    margin-bottom: 0px;
  }
  footer .footerLeft {
    padding: 70px;
  }
  footer .footerRight {
    padding: 50px;
    margin-bottom: 0px;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  footer .footerRight h5 {
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 768px) {
  .nav-item {
    width: 100% !important;
  }
  .nav-item button {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */