*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  font-size: 1.7rem;
  overflow-x: hidden;
}

@media only screen and (min-width: 60em) {
  .container {
    font-size: 1.6rem;
  }
}

img {
  display: block;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

.fas {
  font-family: 'Font Awesome 5 Free';
  color: #9d3716;
}

::-moz-selection {
  background-color: #9d3716;
  color: #fff;
}

::selection {
  background-color: #9d3716;
  color: #fff;
}

.resize-animation-stopper * {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

main h1,
main h2 {
  color: #290c04;
}

.heading-h1 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 5rem;
}

@media only screen and (min-width: 37.5em) {
  .heading-h1 {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 48em) {
  .heading-h1 {
    font-size: 7rem;
  }
}

@media only screen and (min-width: 60em) {
  .heading-h1 {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 70em) {
  .heading-h1 {
    font-size: 9rem;
  }
}

@media only screen and (min-width: 120em) {
  .heading-h1 {
    font-size: 10rem;
  }
}

.heading-h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
  font-size: 4.3rem;
}

@media only screen and (min-width: 37.5em) {
  .heading-h2 {
    font-size: 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .heading-h2 {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 70em) {
  .heading-h2 {
    font-size: 6.5rem;
  }
}

.heading-h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #9d3716;
  margin-bottom: 1rem;
  font-size: 2.7rem;
}

@media only screen and (min-width: 37.5em) {
  .heading-h3 {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 60em) {
  .heading-h3 {
    font-size: 3.5rem;
  }
}

main p {
  padding-bottom: 2rem;
  color: #595959;
}

.btn {
  display: inline-block;
  background-color: #9d3716;
  color: #fff;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  border-radius: 3rem 0.2rem;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}

.btn:hover {
  color: #9d3716 !important;
  background-color: #fff;
  border: 1px solid #9d3716;
}

.btn-outlined {
  background-color: transparent;
  color: #9d3716;
  border: 1px solid #9d3716;
}

.btn-outlined:hover {
  background-color: #9d3716;
  color: #fff !important;
}

.btn-underlined {
  color: #9d3716;
  background: transparent;
  border-bottom: 1px solid #9d3716;
  border-radius: 0;
}

.btn-underlined:hover {
  border-radius: 3rem 0.2rem;
}

.typing-wrapper {
  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;
  margin-bottom: 3rem;
}

.typing {
  width: 31ch;
  -webkit-animation: typing 2s steps(22), step-end infinite alternate;
          animation: typing 2s steps(22), step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  font-size: 2rem;
}

@media only screen and (min-width: 37.5em) {
  .typing {
    font-size: 2.3rem;
  }
}

@media only screen and (min-width: 48em) {
  .typing {
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 60em) {
  .typing {
    font-size: 3rem;
  }
}

@media only screen and (min-width: 70em) {
  .typing {
    font-size: 3.3rem;
  }
}

@media only screen and (min-width: 120em) {
  .typing {
    font-size: 3.5rem;
  }
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
}

@-webkit-keyframes grow {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes grow {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@-webkit-keyframes btn-animation {
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes btn-animation {
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.nav {
  width: 100%;
  height: 8rem;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  padding: 0 3rem;
}

@media only screen and (min-width: 48em) {
  .nav {
    padding: 0 5rem;
  }
}

.nav__wrapper {
  width: 100%;
  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;
  max-width: 112rem;
  margin: 0 auto;
}

.nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__logo img {
  max-width: 8rem;
}

.nav__mainnav {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 60em) {
  .nav__mainnav {
    position: static;
    width: auto;
  }
}

.nav__mainnav ul {
  background-color: #fff;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  -webkit-transform: perspective(600) rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 50% 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 60em) {
  .nav__mainnav ul {
    max-height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
  }
}

.nav__mainnav ul li {
  border-top: 1px solid #f7f7f7;
}

@media only screen and (min-width: 60em) {
  .nav__mainnav ul li {
    border: none;
  }
}

.nav__mainnav ul li a {
  color: #290c04;
  display: block;
  margin: 2rem 3rem;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  font-weight: 400;
}

@media only screen and (min-width: 60em) {
  .nav__mainnav ul li a {
    margin: 0 3rem 0 0;
  }
}

.nav__mainnav ul li a:hover {
  color: #9d3716;
}

.nav__mainnav ul li .btn {
  color: #fff;
  display: inline-block;
}

@media only screen and (min-width: 48em) {
  .nav__mainnav ul li .btn {
    margin-right: 0;
  }
}

#toggle {
  display: block;
  position: relative;
  width: 2.3rem;
  height: 1.8rem;
  cursor: pointer;
}

@media only screen and (min-width: 60em) {
  #toggle {
    display: none;
  }
}

#toggle span {
  display: block;
  position: absolute;
  right: 0;
  background-color: #595959;
  width: 100%;
  height: 1px;
  border-radius: 0.3rem;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

#toggle span.l1 {
  top: 0;
}

#toggle span.l2 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#toggle span.l3 {
  bottom: 0;
}

#mainnav.open ul {
  max-height: 100rem;
  -webkit-transform: perspective(600) rotate3d(0, 0, 0, 0);
}

#toggle.open .l1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#toggle.open .l2 {
  opacity: 0;
  width: 0;
}

#toggle.open .l3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#nav.active {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 6.5rem;
}

#nav.active #mainnav.open {
  top: 6.5rem;
}

#nav.active #mainnav {
  top: 6.5rem;
}

#nav.active #toggle {
  width: 2.2rem;
  height: 1.6rem;
}

#nav.active .btn {
  border: 1px solid #9d3716;
  color: #9d3716;
  background-color: #fff;
}

#nav.active .btn:hover,
#nav.active .btn:active {
  background-color: #9d3716;
  color: #fff !important;
}

.header__hero {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(66, 31, 16, 0.5))), url(../images/header600.jpg) right top;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(66, 31, 16, 0.5) 100%), url(../images/header600.jpg) right top;
  background-repeat: no-repeat !important;
  background-attachment: scroll;
  background-size: cover !important;
  height: 95vh;
  width: 100vw;
  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;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 37.5em) {
  .header__hero {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(66, 31, 16, 0.5))), url(../images/header1200.jpg) right top;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(66, 31, 16, 0.5) 100%), url(../images/header1200.jpg) right top;
    background-attachment: fixed;
  }
}

@media only screen and (min-width: 70em) {
  .header__hero {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(66, 31, 16, 0.5))), url(../images/header2000.jpg) right top;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(66, 31, 16, 0.5) 100%), url(../images/header2000.jpg) right top;
    background-attachment: fixed;
  }
}

.header__content {
  text-align: center;
  color: #fff;
  margin: 0 3rem;
}

.header__content a {
  color: #fff;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 22px;
}

.shape-divider .shape-fill {
  fill: #ffffff;
}

.about {
  padding: 10rem 3rem;
}

@media only screen and (min-width: 48em) {
  .about {
    padding: 15rem 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .about {
    padding: 20rem 3rem 25rem 3rem;
  }
}

.about .heading-h2 {
  max-width: 96rem;
  margin: 0 auto 4rem auto;
}

@media only screen and (min-width: 60em) {
  .about .heading-h2 {
    text-align: center;
  }
}

.about__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 96rem;
  margin: 0 auto;
}

@media only screen and (min-width: 60em) {
  .about__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 60em) {
  .about__picture {
    width: 50%;
  }
}

.about__picture .blob {
  position: absolute;
  top: -7rem;
  left: 0rem;
  z-index: -1;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media only screen and (min-width: 60em) {
  .about__picture .blob {
    max-width: 50rem;
    left: 5rem;
  }
}

.about__content {
  padding: 5rem 0 0 0;
}

@media only screen and (min-width: 60em) {
  .about__content {
    padding: 0 0 0 5rem;
    width: 50%;
  }
}

.menu {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(89, 74, 71, 0.031)), to(rgba(89, 74, 71, 0.03)));
  background: linear-gradient(to bottom, rgba(89, 74, 71, 0.031) 0%, rgba(89, 74, 71, 0.03) 100%);
  padding: 10rem 3rem;
}

@media only screen and (min-width: 48em) {
  .menu {
    padding: 15rem 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .menu {
    padding: 20rem 5rem;
  }
}

.menu__container {
  max-width: 112rem;
  margin: 0 auto;
}

.menu__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 10rem;
}

@media only screen and (min-width: 48em) {
  .menu__product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8rem 0;
  }
}

.menu__product .menu-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
  border: 1px solid transparent;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.menu__product .menu-img--1 {
  position: relative;
}

@media only screen and (min-width: 48em) {
  .menu__product .menu-img--1 {
    margin-right: 7rem;
  }
}

.menu__product .menu-img--1::before {
  content: url(../images/coffee-bg-1.png);
  position: absolute;
  display: block !important;
  top: -15rem;
  left: -18rem;
  z-index: -1;
  opacity: 0.1;
}

.menu__product .menu-img--2 {
  position: relative;
}

@media only screen and (min-width: 48em) {
  .menu__product .menu-img--2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 7rem;
  }
}

.menu__product .menu-img--2::before {
  content: url(../images/coffee-bg-2.png);
  position: absolute;
  display: block !important;
  top: -10rem;
  left: 21rem;
  z-index: -1;
  opacity: 0.1;
}

.menu__product .menu-img--3 {
  position: relative;
}

@media only screen and (min-width: 48em) {
  .menu__product .menu-img--3 {
    margin-right: 7rem;
  }
}

.menu__product .menu-img--3::before {
  content: url(../images/coffee-bg-3.png);
  position: absolute;
  display: block !important;
  top: -16rem;
  left: -16rem;
  z-index: -1;
  opacity: 0.1;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(238deg);
          transform: rotate(238deg);
}

.menu__product .menu-img:hover, .menu__product .menu-img:active {
  border: 1px solid #9d3716;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
}

.menu__product .menu-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
  padding-top: 2rem;
}

@media only screen and (min-width: 48em) {
  .menu__product .menu-content {
    padding-top: 0;
  }
}

.menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.testimonial {
  padding: 15rem 3rem;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(66, 31, 16, 0.3)), color-stop(50%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to top, rgba(66, 31, 16, 0.3) 0%, rgba(0, 0, 0, 0.8) 50%);
}

.testimonial .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.testimonial .bg-video__content {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__container {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 7rem 0.2rem;
  padding: 5rem 3rem;
}

@media only screen and (min-width: 48em) {
  .testimonial__container {
    padding: 5rem 8rem;
  }
}

.testimonial__container img {
  max-width: 10rem;
}

.testimonial .fa-quote {
  display: none;
}

@media only screen and (min-width: 48em) {
  .testimonial .fa-quote {
    display: block;
    font-size: 1.5rem;
    position: absolute;
    top: 7rem;
    color: #fc653b;
  }
}

.testimonial .fa-quote-right {
  left: 4rem;
}

.testimonial .fa-quote-left {
  right: 4rem;
}

.testimonial__review {
  text-align: justify;
  color: #fff;
}

.testimonial__user {
  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;
}

.testimonial__user .user-img {
  border-radius: 50%;
  margin-right: 2rem;
  width: 7rem;
  height: 7rem;
}

.testimonial__user .user-name {
  font-weight: 500;
  color: #a7a7a7;
}

.testimonial .progress-bar {
  background-color: #fc653b;
  width: 100%;
  height: 0.2rem;
  margin-bottom: 1.5rem;
  -webkit-animation: grow 10s linear infinite;
          animation: grow 10s linear infinite;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.gallery {
  padding: 10rem 3rem;
}

@media only screen and (min-width: 48em) {
  .gallery {
    padding: 15rem 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .gallery {
    padding: 20rem 5rem;
  }
}

@media only screen and (min-width: 48em) {
  .gallery {
    padding: 15rem 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .gallery {
    padding: 20rem 5rem;
  }
}

.gallery .heading-h2 {
  text-align: left;
  margin: 0 0 1rem 1rem;
}

.gallery p {
  margin-left: 1rem;
}

.gallery .slider {
  margin: 3rem 0;
}

.gallery .slide img {
  padding: 0 1rem;
}

.gallery .slick-prev:before,
.gallery .slick-next:before {
  color: #a7a7a7 !important;
}

.gallery .btn {
  margin-top: 2rem;
}

.booking {
  background-color: rgba(248, 247, 245, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath fill-rule='evenodd' d='M0 24h4v2H0v-2zm0 4h6v2H0v-2zm0-8h2v2H0v-2zM0 0h4v2H0V0zm0 4h2v2H0V4zm16 20h-6v2h6v-2zm0 4H8v2h8v-2zm0-8h-4v2h4v-2zm0-20h-6v2h6V0zm0 4h-4v2h4V4zm-2 12h2v2h-2v-2zm0-8h2v2h-2V8zM2 8h10v2H2V8zm0 8h10v2H2v-2zm-2-4h14v2H0v-2zm4-8h6v2H4V4zm0 16h6v2H4v-2zM6 0h2v2H6V0zm0 24h2v2H6v-2z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 10rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 48em) {
  .booking {
    padding: 15rem 5rem;
  }
}

@media only screen and (min-width: 60em) {
  .booking {
    padding: 20rem 5rem;
  }
}

.booking__content {
  position: relative;
  width: 100%;
  max-width: 70rem;
}

.booking__content::before {
  content: url(../images/coffee-bg-form.png);
  position: absolute;
  top: -5rem;
  right: 90%;
  z-index: -1;
  opacity: 0.07;
}

.booking__content::after {
  content: url(../images/coffee-bg-form-2.png);
  position: absolute;
  bottom: -5rem;
  left: 93%;
  z-index: -1;
  opacity: 0.08;
}

.booking__form-container {
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  max-width: 70rem;
  background-color: #fff;
  z-index: 3;
}

@media only screen and (min-width: 48em) {
  .booking__form-container {
    padding: 5rem;
  }
}

.booking .heading-h2 {
  font-size: 5rem;
}

.booking .progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 4rem 0;
}

.booking .progress-bar .step {
  width: 100%;
  position: relative;
  text-align: center;
}

.booking .progress-bar .step p {
  display: none;
}

@media only screen and (min-width: 48em) {
  .booking .progress-bar .step p {
    display: block;
  }
}

.booking .progress-bar .step p.active {
  color: #9d3716;
}

.booking .progress-bar .step .bullet {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border: 1px solid #727272;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.booking .progress-bar .step .bullet.active {
  border-color: #9d3716;
  background-color: #9d3716;
}

.booking .progress-bar .step .bullet::before,
.booking .progress-bar .step .bullet::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -3.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 3rem;
  background-color: #727272;
}

@media only screen and (min-width: 37.5em) {
  .booking .progress-bar .step .bullet::before,
  .booking .progress-bar .step .bullet::after {
    right: -8.5rem;
    width: 6.5rem;
  }
}

@media only screen and (min-width: 48em) {
  .booking .progress-bar .step .bullet::before,
  .booking .progress-bar .step .bullet::after {
    right: -10.5rem;
    width: 8.5rem;
  }
}

.booking .progress-bar .step .bullet.active::after {
  background-color: #9d3716;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-animation: btn-animation 0.3s linear forwards;
          animation: btn-animation 0.3s linear forwards;
}

.booking .progress-bar .step:last-child .bullet::before,
.booking .progress-bar .step:last-child .bullet::after {
  display: none;
}

.booking .progress-bar .step .bullet span {
  line-height: 3rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #727272;
}

.booking .progress-bar .step .bullet.active span {
  display: none;
}

.booking .progress-bar .step .check {
  position: absolute;
  left: 50%;
  top: 41%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

@media only screen and (min-width: 48em) {
  .booking .progress-bar .step .check {
    top: 75%;
  }
}

.booking .progress-bar .step .check.active {
  display: block;
  color: #fff;
}

.booking label,
.booking input,
.booking textarea {
  width: 100%;
}

.booking textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 15rem;
}

.booking input,
.booking textarea {
  padding: 1rem;
  border: 1px solid rgba(89, 74, 71, 0.1);
  height: 4rem;
  color: #a7a7a7;
  font-size: inherit;
}

.booking input:focus,
.booking textarea:focus {
  border-right: 1px solid #9d3716;
  border-left: 1px solid #9d3716;
  border-top: none;
  border-bottom: none;
  outline: 1px solid #9d3716;
}

.booking .label {
  color: #290c04;
}

.booking .form-outer {
  width: 100%;
  overflow: hidden;
}

.booking .form-outer form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400%;
}

.booking .form-outer form .form-inner {
  width: 25%;
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
}

.booking .form-outer form .field {
  width: 100%;
  margin: 3rem 0;
}

.booking .form-outer form .field-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 48em) {
  .booking .form-outer form .field-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 2;
        -ms-flex: 2 1 0px;
            flex: 2 1 0;
  }
}

.booking .form-outer form .field-flex .field {
  margin: 0;
}

.booking .form-outer form .field-flex .guests {
  margin: 3rem 0;
}

@media only screen and (min-width: 48em) {
  .booking .form-outer form .field-flex .guests {
    width: 55%;
    margin: 0 0 0 1rem;
  }
}

.booking .form-outer .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 37.5em) {
  .booking .form-outer .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.booking .form-outer .prev {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 37.5em) {
  .booking .form-outer .prev {
    margin: 0 1rem 0 0;
    border-radius: 3rem 0 0 0;
  }
}

@media only screen and (min-width: 37.5em) {
  .booking .form-outer .next {
    border-radius: 0 0 3rem 0;
  }
}

.footer {
  background-color: rgba(89, 74, 71, 0.1);
  color: #595959;
  padding: 7rem 3rem 0 3rem;
  font-size: 1.4rem;
}

.footer a:link,
.footer a:visited {
  color: #595959;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer a:hover,
.footer a:active {
  color: #9d3716;
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (1fr)[5];
      grid-template-rows: repeat(5, 1fr);
  grid-row-gap: 3rem;
}

@media only screen and (min-width: 48em) {
  .footer__content {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 2rem;
  }
}

@media only screen and (min-width: 60em) {
  .footer__content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 2rem;
    max-width: 112rem;
    margin: auto;
  }
}

@media only screen and (min-width: 70em) {
  .footer__content {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
}

.footer__content-box {
  text-align: center;
}

@media only screen and (min-width: 48em) {
  .footer__content-box {
    text-align: left;
  }
}

.footer__content-box .heading-h3 {
  font-size: 1.7rem;
}

.footer__form {
  position: relative;
  border-bottom: 1px solid #a7a7a7;
  text-align: left;
  width: 70%;
  margin: auto;
}

@media only screen and (min-width: 48em) {
  .footer__form {
    width: 100%;
  }
}

.footer__form input {
  outline: none !important;
  border-radius: 0px !important;
  border: none;
  background: transparent;
  height: 3.5rem;
}

.footer__form input[type='email'] {
  position: relative;
}

.footer__form input[type='submit'] {
  cursor: pointer;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #290c04;
}

.footer__form input[type='submit']:hover {
  color: #9d3716;
}

.footer .fab {
  font-size: 2rem;
  border: 1px solid #9d3716;
  border-radius: 50%;
  margin-right: 1rem;
  padding: 1rem;
  width: 4.5rem;
  text-align: center;
}

@media only screen and (min-width: 60em) {
  .footer .fab {
    font-size: 1.6rem;
    width: 4rem;
  }
}

.footer__policy {
  max-width: 112rem;
  margin: 0 auto;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727272;
  margin-top: 5rem;
}

@media only screen and (min-width: 60em) {
  .footer__policy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #d7d7d7;
    margin-top: 7rem;
  }
}

.footer__policy a:link,
.footer__policy a:visited {
  text-decoration: underline;
  color: #727272;
}

.footer__policy a:hover,
.footer__policy a:active {
  color: #9d3716;
}

.footer__policy div {
  padding-bottom: 1rem;
}

@media only screen and (min-width: 60em) {
  .footer__policy div {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=main.css.map */