@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/arial-mt");

@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@font-face {
  font-family: "ProximaNovaBold";
  src: url("ProximaNovaBold.otf"); /* IE9*/

  font-display: swap;
}

@font-face {
  font-family: "NexaRustSlab-BlackShadow";
  src: url("NexaRustSlab-BlackShadow01.otf"); /* IE9*/

  font-display: swap;
}

.navbar-expand-lg {
  display: flex;
  justify-content: space-evenly;
}
#navbarCollapse {
  flex-basis: initial;
  flex-grow: initial;
}

.navbar-toggler-icon {
  background-image: url(../img/humicon.png);
}

.sachin-carousel {
  position: relative;
}

.sachin-carousel-item {
  position: relative;
  display: block;
}

.owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
  display: none;
}

.sachin-carousel:hover .owl-nav {
  opacity: 1;
  display: none;
}
.full-grid-container-box .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.8vw;
}

.full-grid-container-box .griditem {
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
  display: none;
}

.owl-dots {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 1;
  transition: 0.5s;
  z-index: 1;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #000000;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
  margin: 5px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: flex;
}

:root {
  --primary: #4394cf;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
  --btn: #414551;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: var(--primary);
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: var(--primary);
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

#navbarCollapse {
  justify-content: center;
}

.navbar .navbar-nav .nav-link {
  margin-right: 40px;
  padding: 20px 0;
  color: var(--light);
  font-size: 18px;
  outline: none;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(2, 36, 91, 1) 0%,
    rgba(2, 36, 91, 0) 100%
  );
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*** Service ***/

.centerbox {
  display: inline-block;
  background: var(--primary);
  color: #000;
  font-weight: 600 !important;
  font-size: 24px;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold !important;
  font-family: "Work Sans", sans-serif;
}
.banner_main {
  position: relative;
  top: -20px;
  z-index: 99;
}

.text-green {
  color: var(--primary);
}
.text-green-bg {
  background-color: var(--primary);
}

.nav-right {
  position: relative;
}
.dremtext {
  position: absolute;
  /* display: none; */
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  top: -15px;
  left: -16px;

  font-weight: bold !important;
  font-family: "Work Sans", sans-serif;
}

.nav-right button {
  color: var(--light);
  font-size: 18px;
  outline: none;
  text-transform: uppercase;

  font-weight: 600;
  font-family: "Work Sans", sans-serif;
}

body {
  margin: 0;

  background-image: url(../img/BG.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Work Sans", sans-serif;
}
.center-box-test-wrapper {
  font-weight: bold !important;

  font-size: 24px;
  padding: 5px 10px;
  border-radius: 10px;

  font-family: "Work Sans", sans-serif;
}

.center-box-test {
  display: inline;
  padding: 10px;
  z-index: 999;
  position: absolute;
  top: 0px;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 1;
  transition: 0.5s;
  z-index: 1;
  margin-top: 20px;
}

.category {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  position: relative;
}

.category img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.category h3 {
  color: white;
  margin: 0;
  position: absolute;
  text-shadow: 0 0 10px #000;
  z-index: 1;
  background: #0d0c0cbf;
  padding: 18px;
  font-size: 28px;
  font-weight: bold !important;
  width: 100%;
  bottom: 0px;
  text-align: center;
  font-family: "Arvo", serif;
}
.black-box h2 {
  font-family: "Arvo", serif;
  font-weight: bold !important;

  color: #0e0a17 !important;

  font-size: 28px;

  line-height: 1.3;
}

.black-box {
  text-align: left;

  margin-top: 10px;

  color: #fff;
  font-weight: 600 !important;

  font-size: 18px;
  font-weight: bold !important;
  font-family: "Work Sans", sans-serif;
}

.green-box {
  color: #000;
  font-weight: 600 !important;

  font-size: 18px;
  font-weight: bold !important;
  font-family: "Work Sans", sans-serif;
}
.green-box p {
  margin: 0px;
}
.box-holder p {
  color: #0e0a17;
  font-weight: 500;
  font-size: 20px;
  font-family: "Work Sans";
  line-height: 1.3;
}

.box-holder:hover {
  background-color: var(--primary);
}
.box-holder:hover h2,
.box-holder:hover p {
  color: #fff !important;
}

.new-box {
  background-color: #000000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.getstart {
  max-width: 300px;
  margin: auto;
  text-align: center;
  padding: 20px;
}
.getstart a h5 {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 900 !important;
}
.getstart img {
  max-width: 100px;
}

.left_black_box {
  position: relative;
  top: -40px;
  z-index: 99;
  left: 0px;
}

.left_black_box_inner {
  display: inline-block;
  background: var(--primary);
  color: #000;
  font-weight: 600 !important;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  font-size: 22px;
  /* margin-top: 20px; */
  font-weight: 800 !important;
}

/****************************************CUSTOM CSS***************************************************************
*************************************************************************************************************************
********************************************************************/
header {
  background-color: #0d0d0d;
  padding: 20px 0px;
}

.nav-right button:hover {
  color: #ffffff;
}
.navbar-brand {
}
.navbar-brand {
  width: 170px;
}
.banner-image img {
  width: 100%;
  height: auto;
}

.heading-5 {
  color: var(--primary);
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: 32px;
}
.game-time-favorites {
  position: relative;
}

.view-full-menu a {
  background-color: var(--btn);
  border: none;
  font-weight: 700;
  font-size: 24px;
}
.flw {
  font-weight: 900;
  font-size: 24px;
  color: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}
.flw span {
  padding-left: 10px;
}
.flw a {
  padding: 0px 5px;
}
.flw a img {
  width: 40px;
  height: 40px;
}
.full-width-gallery .gallery {
  display: flex;
  place-content: center;

  /* min-height: 100vh; */
  margin-inline: auto;
}

.plusimg {
  position: absolute;
  top: 10%;
  left: -4%;
}

.dotsimg {
  position: absolute;
  bottom: -23%;
  left: -4%;
}
.dotsimg img {
  width: 80%;
}
.arrowimg img {
  width: 95% !important;
  opacity: 0.2;
}
.arrowimg {
  position: absolute;
  bottom: -108px;
  right: 0px;
  display: flex;
  justify-content: end;
  z-index: -1;
}
.plusimg img {
  opacity: 0.2;
  width: 80% !important;
}

.mid_box {
  position: relative;
}
.dotsimg img {
  width: 65% !important;
}

.full-width-gallery .gallery__content--flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.full-width-gallery .gallery__content--flow > * {
  flex-grow: 1;
  flex-basis: calc((30rem - 100% - 1rem) * 999);
}

.full-width-gallery figure {
  display: flex;
  min-width: 20rem;
  /* max-height: 16rem; */
  position: relative;
  /* border-radius: .35rem; */
  box-shadow: rgb(40, 40, 40, 0.1) 0px 2px 3px, rgb(20, 20, 20, 0.2) 0px 5px 8px,
    rgb(0, 0, 0, 0.25) 0px 10px 12px;
  overflow: hidden;
  transition: transform var(--anim-time--med) ease;
  margin: 0 !important;
}

.full-width-gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 0.8) 0%,
    hsla(0, 0%, 0%, 0.7) 12%,
    hsla(0, 0%, 0%, 0.2) 41.6%,
    hsla(0, 0%, 0%, 0.125) 50%,
    hsla(0, 0%, 0%, 0.01) 59.9%,
    hsla(0, 0%, 0%, 0) 100%
  );
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--anim-time--med), var(--anim-time--med);
  transition-timing-function: ease, ease;
  z-index: 4;
}

.full-width-gallery figure:hover::before {
  opacity: 0.8;
}

.full-width-gallery figure:hover .header__caption {
  transform: translateY(0);
  opacity: 1;
}
.full-width-gallery figure:hover img {
  transform: scale(1);
}

.full-width-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  transform: scale(1.15);
  aspect-ratio: 16 / 13;
  transition: 400ms ease-in-out;
}
.Add_gallery figure {
  display: flex;
  min-width: 14rem;
  max-height: 16rem;
  position: relative;
  border-radius: 0.35rem;
  box-shadow: rgb(40, 40, 40, 0.1) 0px 2px 3px, rgb(20, 20, 20, 0.2) 0px 5px 8px,
    rgb(0, 0, 0, 0.25) 0px 10px 12px;
  overflow: hidden;
  transition: transform var(--anim-time--med) ease;
}

.Add_gallery figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 0.8) 0%,
    hsla(0, 0%, 0%, 0.7) 12%,
    hsla(0, 0%, 0%, 0.2) 41.6%,
    hsla(0, 0%, 0%, 0.125) 50%,
    hsla(0, 0%, 0%, 0.01) 59.9%,
    hsla(0, 0%, 0%, 0) 100%
  );
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--anim-time--med), var(--anim-time--med);
  transition-timing-function: ease, ease;
  z-index: 4;
}

.Add_gallery figure:hover::before {
  opacity: 0.8;
}

.Add_gallery figure:hover img {
  transform: scale(1);
}

.Add_gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  transform: scale(1.15);
  aspect-ratio: 16 / 13;
  transition: 400ms ease-in-out;
}
.Add_gallery {
  background: #00a1fc42;
  padding: 81px 0px;
}

.Add_gallery .gallery {
  --anim-time--hi: 266ms;
  --anim-time--med: 400ms;
  --anim-time--lo: 600ms;

  display: flex;
  place-content: center;
  max-width: clamp(30rem, 95%, 50rem);
  width: max(22.5rem, 100%);
  min-height: 100vh;
  margin-inline: auto;
  padding: clamp(0px, (30rem - 100vw) * 9999, 1rem);
}

.Add_gallery .gallery__content--flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.Add_gallery .gallery__content--flow > * {
  flex-grow: 1;
  flex-basis: calc((30rem - 100% - 1rem) * 999);
}

.cross {
  height: -webkit-fill-available;
  width: 68%;
  padding-left: 48px;
}
.cross img {
  width: 100%;
}

.hero-wrapper-two-2 {
  display: flex;
  /* justify-content: end; */
  align-items: center;
  padding: 45px 0px;
}
.hero-without-image-2 {
  padding-bottom: 100px;
}

.game-time-favorites {
  margin: 0px !important;
  padding: 0px !important;
}

.hero-without-image-2 {
  position: relative;
}

.bg-img img {
  width: 100%;
}
/**************************The overtime experience Start***************************/
.overtime-exp {
  background-image: url(../img/overexbg.png);
  background-position: right;
  padding: 45px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.orderbtn {
  padding: 3px 10px;
  background-color: #0db16c;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  justify-content: center;
  text-align: center;
}
.orderbtn a {
  color: var(--light);
  font-size: 18px;
  outline: none;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  padding-left: 6px;
  padding-top: 2px;
}

.overtime_image_main img {
  width: 77%;
}
.overtime_text_box {
  background: #1b1818;
  padding: 20px;
  width: 80%;
  color: #fff;
}
.overtime_text_box h2 {
  text-transform: uppercase;
  font-family: "Arvo", serif;
  color: #ffffff;
  font-size: 1.6rem;
}
.overtime_text_box {
  font-size: 1.3rem;
  line-height: 1.3;
}

.overtime_text_box a {
  background: var(--primary);
  padding: 5px 16px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  font-family: "ProximaNovaBold", serif;
  font-size: 26px;
}
.chk {
  display: flex;
  justify-content: end;
}

.overtime_images-box {
  position: relative;
}
.overtime_image_main {
  position: absolute;
  top: -69px;
}

.overtime-exp-wrapper {
  position: relative;
}
.overtime_image_modal {
  width: 100%;
}
.overtime_image_main_right {
  top: 247px;
  right: -85px;
  position: absolute;
}
.overtime_image_main_left {
  top: 200px;
  left: -80px;
  position: absolute;
}

.overtime_text-box h2 {
  color: #fff;
}

.overtime_text-box p {
  color: #fff;
}

.overtime_text-box a {
  color: #fff;
}

.overtime_exp_for_mobile_view {
  background-color: #000000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/overexbg.png);
  background-position: center;
  background-size: cover;
  color: #ffffff;

  text-align: center;
}
.M_mo {
  position: relative;
}
.plats {
  position: absolute;
  top: 0px;
}
.plats img {
  width: 80%;
}
.overtime_exp_for_mobile_view {
  display: none;
}

/**************************The overtime experience End***************************/

/**************************Book Room Start***************************/

.bookroomgr {
  background-image: url(../img/GrungeBrush.png);
  padding: 30px;
  background-size: contain;
}

.book-box {
  background: var(--primary);
  padding: 4px 25px;
  margin-top: 18px;
  color: #ffffff;
  font-family: "ProximaNovaBold", serif;
  display: inline-block;
  text-align: center;
}
.book-box a {
  color: #ffffff;
  font-family: "ProximaNovaBold", serif;
  font-size: 28px;
}

.subheading {
  font-family: "Work Sans", sans-serif;

  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.bookdemo {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.bookdemo span img {
  width: 80px;
}
.bookdemo span {
  line-height: 10px;
}
.bookdemo span:first-child {
  padding-right: 20px;
}
.bookdemo span:last-child {
  padding-left: 20px;
}
/* 
.bookdemo::before {
  content: url("../img/vl.png"); 
  width: 120px;

  display: inline-block;
  margin: 4px 10px;
}

.bookdemo::after {
  content: url("../img/vr.png");  
  width: 120px;

  display: inline-block;
  margin: 4px 10px;
} */
/**************************Book Room End***************************/

/*********************************images_grid_box_start**************************************/
.images_grid_box {
  background-color: #4594d13d;
  padding: 60px 0px;
  position: relative;
}
.images_grid_box .myGallery {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.images_grid_box .myGallery img {
  width: 100%;
}
.images_grid_box .myGallery .item {
  position: relative;
  overflow: hidden;
}
.images_grid_box .myGallery .item img {
  vertical-align: middle;
}
/*********************************images_grid_box_End**************************************/
/**********************************************CUSTOM TESTIMONIAL START***************************/

.arrow1,
.arrow2 {
  position: absolute;
  opacity: 0.3;
  width: 71%;
}

.arrow1 {
  bottom: 0px;
  right: 0px;
}
.arrow2 {
  top: 65px;
}
#customers-testimonials .col3 {
  position: relative;
}
.testimonials {
  position: relative;
  padding-top: 60px;
}
#customers-testimonials .item-details {
  color: #fff;
  padding: 30px;
  text-align: center;
  position: absolute;
  top: 170px;
  font-size: 14px;
}

#customers-testimonials .item {
  text-align: center;
  margin-bottom: 80px;
}

#customers-testimonials .owl-carousel .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}

#customers-testimonials .owl-carousel img {
  height: 500px;
}

#customers-testimonials .owl-carousel .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

#customers-testimonials .owl-carousel {
  position: relative;
}

#customers-testimonials .owl-carousel .owl-next,
#customers-testimonials .owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  font-size: 20px;
  color: red;
  border: 1px solid #ddd;
  text-align: center;
}

#customers-testimonials .owl-carousel .owl-prev {
  left: -70px;
}

#customers-testimonials .owl-carousel .owl-next {
  right: -70px;
}
.centerimages {
  display: none !important;
}

.center .shadow-effect .normal_img {
  display: none;
}
.center .shadow-effect .centerimages {
  display: block !important;
}
#customers-testimonials .owl-item.active.center {
  margin-top: 73px;
}

#customers-testimonials .center .item-details {
  top: 50px;
}
/**************************************CUSTOM TESTIMONIAL END/

/********************************************YOUTUBE_START*****************************************/
.Youtube_Visit {
  width: 100%;
  padding: 40px 0px 40px 0px;
  background-image: url(../img/overtimelo.png);
  background-size: cover;
}

.Youtube_Visit_heading {
  color: #ffffff;
  font-family: "Arvo", serif;
  font-weight: bold !important;
  font-size: 32px;
}
.Youtube_Visit_left p {
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
  margin: 18px 0px;
}
.Youtube_Visit_heading img {
  width: 320px;
  margin-left: 10px;
}

.Youtube_Visit_btn a {
  background: var(--primary);
  padding: 5px 16px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  font-family: "ProximaNovaBold", serif;
  font-size: 26px;
}
.Youtube_Visit_btn {
  margin-top: 30px;
}

.bootom_box {
  display: flex;
  justify-content: space-between;
}
.Youtube_Visit_img_box {
  display: flex;
  display: flex;
  gap: 25px;
}
.Youtube_img {
  width: 280px;
  height: 150px;
}
.Youtube_Visit_right_for_mob {
  display: none;
}

.Youtube_img img {
  height: 100%;
}

/********************************************YOUTUBE_END****************************************/
/***********************************NEWLETTER_STARR********************************/

.newzletterbox {
  background-color: #ffffff;

  padding: 40px 0px;
}

.newzletterbox h6 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 500 !important;
  color: #3a3c40;
  padding: 30px 0px;
}
.newzletterbox h2 {
  font-family: "Arvo", serif;
  font-weight: bold !important;
  font-size: 32px;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0px;
}

.newzletterbox section {
  background: #ffffff;
}

.newzletterbox .form-subscribe {
  max-width: 600px;
  margin: 0 auto;
}
.newzletterbox .form-subscribe .form-control {
  background: #dfdfdf;
  padding-left: 24px;
  padding-right: 24px;
  letter-spacing: 1px;
  border: none;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
}
.newzletterbox .form-subscribe .form-control.focus,
.newzletterbox .form-subscribe .form-control:focus {
  z-index: 2;
  background-color: #dfdfdf;
}

.newzletterbox::-ms-input-placeholder {
  color: #6f6f6f;
  font-size: 25px;
  font-weight: 700;
}
.newzletterbo input::placeholder {
  font-size: 25px;
  font-weight: 700;
}

.newzletterbox::placeholder {
  color: #6f6f6f;
}
.newzletterbox .form-subscribe .btn {
  border-radius: 36px;
  border-bottom-right-radius: 36px;
  background: #414551;
  border-color: #414551;
  height: 50px;
  font-size: 18px;
  padding: 0px 36px;
}
.newzletterbox .input-group {
  width: 100%;
  background: #dfdfdf;
  border-radius: 24px;
}

/*********************************FOOTER_START************************************/
footer {
  padding: 50px 0px;
  background-color: #000;
}

.show_Mobile {
  display: block !important;
}

.hide_mobile {
  display: none !important;
}

.hide_Desktop {
  display: none;
}
.location-img img {
  width: 80%;
}
.location-img {
  margin-right: 5px;
}
.location {
  margin-bottom: 5px;
}

.footer-heading {
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.day {
  color: var(--primary);
  font-weight: 600;
}
.time,
.footer-address {
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  font-size: 18px;
}
.time-box {
  margin-top: 10px;
}

.footer-map {
  padding: 0px 30px;
}

.footer-logo {
  height: 180px;
  display: flex;
  align-items: center;
}
.copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-top: 13px;
}

.footer-social img {
  width: 45px;
}

/*********************************FOOTER_End************************************/
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #bcbec2;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
  margin: 5px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: #4594d1;
}

.order_online_mob {
  display: none;
}

#customers-testimonials .item-details .Clint_name {
  font-weight: 300 !important;
  font-size: 20px;
  padding-top: 19px;
}

/**************************************EXPE Start******************************************************************/

.food_place {
  padding: 40px 0px;
}

.heading_t span {
  font-size: 20px;
  font-weight: 500;
  padding: 0px 10px;
  font-family: "Work Sans", sans-serif;
}

.title_box .heading_t {
  font-family: "Arvo", serif;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.marginbottom {
  margin-bottom: 20px;
  margin-top: 40px;
}

.grid-container img {
  width: 100%;
  height: 100%;
}

.grid-container {
  display: grid;
  gap: 20px;
  grid-template-columns: 50% 1fr;
  grid-template-rows: 1fr;
}

.content {
  display: grid;
  gap: 20px;
  grid-template-rows: 1fr 1fr;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(21 22 23 / 32%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.overlay h2 {
  color: #ffffff;
  font-size: 34px;
  font-family: "NexaRustSlab-BlackShadow";
}

.showcase {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}

.content1 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.bottom-row.showcase {
  max-height: 250px;
}

.formobsocila .flw {
  flex-direction: column;
  flex-wrap: nowrap;
}

.formobso img {
  width: 40px;
  height: 40px;
}

.follow_text {
  font-weight: 900;
  font-size: 24px;
  color: #0d0d0d;
  line-height: 1.1;
  margin: 20px 0px;
}
.formobsocila {
  display: none;
}
/**************************************EXPE End******************************************************************/
/***************************************** Contact Section****************************************************/

#contact {
  padding: 80px 0;
  overflow: hidden;
}
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: #4195d1;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #4195d1;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.menu_wrapper p {
  font-size: 16px;
}

.menu-list span.dots {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  border: 0;
  height: 3px;
  display: block;
  background-image: radial-gradient(
    circle closest-side,
    #b3b3b3 99%,
    transparent 1%
  );
  background-position: bottom;
  background-size: 6px 3px;
  background-repeat: repeat-x;
}

.menu-list__title {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1.85px;
  font-weight: 600;
}

.menu-list__item {
  position: relative;
  margin-bottom: 5px;
  list-style: none;
}

.menu-list__item-title {
  position: relative;
  margin-top: 0;
  margin-bottom: 5px;

  text-align: left;
  letter-spacing: 1.25px;
}

.menu-list__item-title .item_title {
  position: relative;
  z-index: 5;
  background-color: white;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

p.menu-list__item-desc {
  position: relative;
  margin-bottom: 0;
  text-align: left;
}

p.menu-list__item-desc + span.dots {
  display: none;
}

.desc__content {
  position: relative;
  z-index: 5;
  background-color: white;
}

.menu-list__item-price {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-width: 96px;

  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.27316;
  font-weight: bold;
  /* font-size: 15px; */
}

.menu-list__item-price p {
  color: #e3b379;
  font-size: 17px;
  font-family: "Source Sans Pro", Arial;
}

.menu-list__item-highlight-title {
  position: absolute;
  top: -38px;
  left: -18px;
  padding: 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: white;
  background-color: #c59d5f;
}

.menu-list__item-highlight-wrapper {
  margin-top: 54px;
  margin-bottom: 38px;
}

.menu-list__item-highlight-wrapper:before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid #c59d5f;
}

.menu-list__items {
  list-style: none;
  padding: 0px;
}

.menu_box_bg {
  padding: 40px 0px;
}

.BRUNCHmenu p {
  font-size: 25px;
}

.menu_wrapper img {
  width: 100%;
}

.menu_wrapper {
  width: 90%;
  margin: auto;
}

.menu_wrapper .box-holder:hover {
  background-color: transparent;
}

.menu_wrapper .box-holder:hover p {
  color: #000000 !important;
}

.menu_wrapper .box-holder:hover h2 {
  color: #02245b !important;
}
.menu_wrapper h2 {
  font-weight: 900 !important;
  color: #02245b !important;
}
