@font-face {
  font-family: reg_font;
  src: url("jostreg.ttf");
}

@font-face {
  font-family: bold_font;
  src: url("Jost-Bold.ttf");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  font-family: reg_font;
  border: 0;
  margin: 0;
  font-size: 20px;
}

img,
video {
  max-width: 100%;
}

.full_wrap {
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0;
}

.title_wrap {
  font-family: bold_font;
}

.pdf_viewer_popup_wrap {
  position: fixed;
  top: 0;
  left: 0;
  background: #2a2a2e;
  z-index: 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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  display: none;
}

.pdf_viewer_popup_wrap iframe,
.pdf_viewer_popup_wrap .pdf-scroll-viewer {
  width: 1200px;
  height: calc(100% - 40px);
  overflow: auto;
  margin-top: 20px;
}

.pdf_viewer_popup_wrap.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.common_header {
  font-family: reg_font;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

#back-button {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 1px 0 rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 1000;
  background: #fff;
  padding: 20px;
  border-radius: 50px;
  cursor: pointer;
  display: none;
}

#back-button.active {
  display: inline-block;
}

.common_loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 100%;
  background: url(circle_loader.gif) center center no-repeat rgba(0, 0, 0, 0.9);
  display: none;
}

.content_parent_wrap {
  background: url("bg_back.jpg") center center no-repeat #2a2a2e;
  background-size: cover;
  height: 100vh;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.content_parent_wrap .logo_wrap {
  width: 200px;
}

.content_parent_wrap .social_wrap {
  text-align: center;
}

.content_parent_wrap .items-container {
  padding: 20px;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 2px 0 #e4e4e4;
          box-shadow: 0 0 2px 0 #e4e4e4;
  border-radius: 8px;
  margin-top: 10px;
}

.content_parent_wrap .items-container .item {
  padding: 10px 0;
  cursor: pointer;
  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;
  text-decoration: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-bottom: 1px dashed #AAAAAA;
}

.content_parent_wrap .items-container .item.has_title {
  background: #f7f7f7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content_parent_wrap .items-container .item .icon {
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  margin-right: 10px;
}

.content_parent_wrap .items-container .item .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  font-size: 18px;
  margin-bottom: 5px;
  color: #0B2031;
}

.content_parent_wrap .items-container .item .timing,
.content_parent_wrap .items-container .item .alcohol {
  font-size: 14px;
  max-width: 100%;
  color: #95949E;
  font-weight: 400;
}

.content_parent_wrap .items-container .item .timing img,
.content_parent_wrap .items-container .item .alcohol img {
  width: 20px;
  vertical-align: middle;
}

.content_parent_wrap .items-container .item:first-child {
  padding-top: 0;
}

.content_parent_wrap .items-container .item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.content_parent_wrap .content_wrap {
  height: calc(100% - 50px);
  overflow: auto;
  background: #000;
  padding: 40px;
  width: 500px;
  border-radius: 15px;
}

canvas {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.for_mob {
  display: none;
}

.gridContainer {
  max-width: 1250px;
  padding: 0 20px;
  margin: 0 auto;
}

.gridContainer.small {
  max-width: 1000px;
}

.buton_wrap {
  padding: 10px 20px;
  font-family: bold_font;
  background: #222222;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.buton_wrap:hover {
  background: #000;
  color: #fff;
}

.features_wrap {
  padding: 80px 0;
  text-align: center;
}

.features_wrap .title_wrap {
  margin-bottom: 40px;
}

.features_wrap .swiper-slide {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.features_wrap .swiper-slide.swiper-slide-active {
  -webkit-transform: none;
          transform: none;
}

.features_wrap .item img {
  width: 100%;
}

.features_wrap .coupons_wrap {
  margin-top: 60px;
}

.features_wrap .coupons_wrap .title_wrap {
  margin-bottom: 10px;
}

.features_wrap .coupons_wrap p {
  font-size: 13px;
}

.features_wrap.fix_wrap {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  padding: 0;
  width: 100%;
}

.features_wrap.fix_wrap .coupons_wrap {
  margin: 0;
  padding: 20px 0;
}

.swiper-pagination {
  position: relative !important;
  width: 100%;
  bottom: auto;
  left: auto;
  margin-top: 20px;
}

.swiper-pagination .swiper-pagination-bullet {
  background: #444443;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

body {
  background: url("slider_bg_desktop.jpg") top center no-repeat;
  background-size: cover;
  min-height: 100vh;
}

.top_owner {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0;
}

.top_owner img {
  width: 650px;
}

.journey_wrap .title {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.journey_wrap .title img {
  width: 650px;
}

.journey_wrap .items {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.journey_wrap .items .item {
  padding: 10px;
  width: 33.33%;
}

.marquee_wrap {
  margin-top: 50px;
  font-size: 50px;
  text-transform: uppercase;
  overflow: hidden;
  font-family: bold_font;
}

.marquee_wrap span {
  padding: 0 30px;
}

.marquee_wrap .js-marquee {
  margin: 0;
}

.features_wrap .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.family_wrap {
  margin-top: -100px;
  z-index: 100;
}

.food_wrap {
  text-align: center;
  margin-top: 100px;
}

.food_wrap img {
  width: 400px;
}

.social_wrap {
  margin-top: 30px;
}

.social_wrap .gridContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.social_wrap .gridContainer img {
  width: 120px;
}

.qr_wrap {
  margin-top: 100px;
}

.qr_wrap .gridContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.qr_wrap .gridContainer a {
  width: 50%;
  text-align: center;
}

.cont_wrap {
  text-align: center;
  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;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
  gap: 10px;
}

.cont_wrap .dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #fff;
}

.cont_wrap p {
  color: #fff;
}

@media only screen and (max-width: 1250px) {
  .pdf_viewer_popup_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .pdf_viewer_popup_wrap iframe,
  .pdf_viewer_popup_wrap .pdf-scroll-viewer {
    width: 90%;
    height: 80vh;
  }
}

@media only screen and (max-width: 480px) {
  .journey_wrap .gridContainer {
    padding: 0;
  }
  .gridContainer {
    max-width: 100%;
    width: 100%;
  }
  .common_header {
    font-size: 22px;
  }
  .cont_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cont_wrap p {
    margin: 0;
  }
  .journey_wrap .items .item {
    width: 50%;
  }
  .title_wrap {
    font-size: 15px;
  }
  .features_wrap .swiper-slide {
    -webkit-transform: none;
            transform: none;
  }
  .features_wrap .title_wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .for_mob {
    display: inline-block;
  }
  .for_desk {
    display: none;
  }
  .content_parent_wrap .logo_wrap {
    width: 150px;
  }
  #back-button {
    top: 20px;
    left: 20px;
    padding: 10px;
  }
  .content_parent_wrap {
    padding: 0 25px;
  }
  .content_parent_wrap .content_wrap {
    width: 100%;
    padding: 20px;
  }
  .content_parent_wrap .items-container {
    padding: 10px;
  }
  .content_parent_wrap .items-container .item .title {
    font-size: 14px;
  }
}

.swiper-slide > * {
  width: 100% !important;
}

.rotating_text img {
  width: auto;
}
/*# sourceMappingURL=style.css.map */