.slogan
{
  font-family: "Miniver", cursive;
    color: rgb(213 187 150);
    font-size: 25px;
    line-height: 30px;
}
.book-now
	{
		font-size: 20px;
								color: #e4c590;
								padding: 10px;
								border-color: #e4c590;
								border: solid 1px #e4c590;
								letter-spacing: 3px;
								font-weight: 700;
								text-transform: uppercase;
								position: relative;
								vertical-align: top;
								text-align: center;
								text-transform: uppercase;
	}
.link a
{
padding-left: 50px;
}
.inner-box a
{
    font-family: "Josefin Sans", sans-serif;
    font-size: 18px;
    line-height: 1px;
}
.menu-item
{
  font-family: "Josefin Sans", sans-serif;
}
.main-header .main-box .logo-box {
    position: relative;
    display: block;
    padding: 20px 0px;
    margin-left: 140px;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease; 
    -o-transition: all 300ms ease;
    z-index: 5;
}
.main-header .main-box .logo-box .logo img {
    position: relative;
    display: block;
    height: 110px;
    z-index: 1;
}
.link-btn
{
    padding:40px;
}







/*===============================*/

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
  }
  
  .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
  }
  
  @media screen and (max-width: 992px) {
    .navbar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75%;
      height: 100%;
      z-index: 10;
      opacity: 0;
      overflow-y: auto;
      visibility: hidden;
      box-shadow: var(--shadow-medium);
      background-color: var(--color-white-100);
      transition: all 0.5s ease;
    }
    .navbar.active {
      left: 0rem;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem !important;
  }
  .menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 1.9rem;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--color-black-500);
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}
  .menu-link > i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
  }
  .menu-link:hover {
    outline: none;
    color: var(--color-pink-500);
  }
  @media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      padding: 1rem;
  }
  }
  @media only screen and (max-width: 992px) {
    .menu {
      width: 100%;
      height: auto;
      padding: 1rem 0;
    }
    .menu-item {
      display: block;
      margin: 0 auto;
    }
    .menu-link {
      justify-content: space-between;
      padding: 0.5rem 1.25rem;
    }
  }
  
  .submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 4px solid #790000;
    box-shadow: var(--shadow-medium);
    background-color: #7900008f;
    transition: all 0.3s ease-in-out;
}
  .submenu-item {
    display: block;
    margin-top: 0.75rem;
  }
  .submenu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: #fff;
    transition: all 0.35s ease;
}
  .submenu-link:hover {
    outline: none;
    color: var(--color-pink-500);
  }
  @media only screen and (max-width: 992px) {
    .submenu {
      position: relative;
      top: -0.5rem;
      left: 2.5rem;
      width: 100%;
      max-height: 0;
      padding: 0px;
      border: none;
      outline: none;
      opacity: 1;
      overflow: hidden;
      visibility: visible;
      transform: translateY(0px);
      box-shadow: none;
      background: transparent;
    }
  }
  
  .burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
  }
  .burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--color-black-500);
  }
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  @media only screen and (max-width: 992px) {
    .burger {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 1;
    visibility: visible;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 992px) {
    .overlay.active {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }

.order-online
{
  text-align: center;
}
  /*-----------SLider Menu -----------------*/
  .bg-video-wrap .overlay{
width: 100%;
    background-color: rgb(0 0 0 / 30%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}.btn-style-two {
    
    font-size: 18px;
    
}
.order_btn {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 700;
    padding: 11px 45px;
    font-size: 18px;
    border: 2px solid rgb(170 155 111);
    background: rgb(170 155 111);
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}
.modal-header
{
	border:none;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex
;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    background: #ffffff00;
}
.close
{font-size: 30px;
    color: #fff;
    opacity: 1;
    position: absolute;
    float: right;
    right: 30px;
    font-weight: 400;
	}
	font-size: 30px;
    color: #fff;
    opacity: 1;
    position: absolute;
    float: right;
    right: 30px;
    font-weight: 400;
	}
	
