--------------------------------------------------------------*/

/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family:intertight;
  src: url(./font/InterTight-VariableFont_wght.ttf);
}

/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  /* color: var(--color-default); */
}

a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-default);

}

a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,h2,h3,h4,h5{
  font-family:intertight !important;
}

p{
  font-family:intertight !important;
}
a{
  font-family:intertight !important;
}
/*--------------------------------------------------------------
  # Sections & Section Header
  --------------------------------------------------------------*/

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  height: 90px;
  border-bottom: 1px solid #fff;
  position: relative;
}

@media (max-width: 575px) {
  .header {
    height: 90px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}
.header .imagee{
  width: 80px;
  height: 80px;
}
.header .logo img {
   width: 100%;
   height: 100%;
   /* object-fit: contain; */
}

.header .logo h3 {
  font-size: 34px;
  font-weight: 700;
  color: #000 !important;
  text-decoration: underline;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  border: 2px soild #f20606;
  color: #fff;
  background: rgba(213, 20, 20, 0.8);
}

@media(max-width:768px) {

  .header .btn-book-a-table,
  .header .btn-book-a-table:focus {
    font-size: 14px;
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.3s;
  }

  @media(max-width:370px){
    .header .btn-book-a-table{
      font-size: 12px;
    }
  }

  .header .logo h3 {
    display: none;
  }
}

/*--------------------------------------------------------------
  # Desktop Navigation
  --------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family:intertight !important;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
  # Mobile Navigation
  --------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family:intertight !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 20px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@media(max-width:665px){
  #hero{
    padding-top: 10%;
}
}
@media(max-width:480px){
  #hero{
    padding-top: 20%;
}
}




/* ========== Blur Box only for Promo Run =========== */

#blur-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
}

/* Modal content */
.blur-content {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 8px;
  max-width: 50%;
  width: 100%;
  text-align: center;
}

#blur-box .close-btn {
  position: absolute;
  height: 40px;
  width: 40px;
  display: grid;
  place-items: center;
  top: -10px;
  right: -10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  border-radius: 50%;
  background-color: var(--color-primary);
}

#blur-box .close-btn:hover{
  scale: 1.2;
}

.blur-content img {
  max-width: 100%;
  height: auto;
}

@media(max-width:1400px){
  .blur-content {
    max-width: 70%;
  }
}

@media(max-width:1100px){
  .blur-content {
    max-width: 80%;
  }
}

@media(max-width: 576px){
  .blur-content {
    padding: 7px;
    max-width: 70%;
  }
  #blur-box .link-data a{
    padding: 12px 22px;
    font-size: 14px;
  }
}

@media (max-width: 500px){
  .blur-content {
    max-width: 80%;
  }
}

@media (max-width: 400px){
  .blur-content {
    max-width: 90%;
  }
}

/* ============================  About us   =============================== */
#about {
  position: relative;
}
#about .data{
  overflow: hidden;
  border-radius: 10px;
  
}
#about .data img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all .5s ease-in-out;
}

#about .data img:hover{
  transform: scale(1.1);
}
#about a {
  padding: 10px 15px 10px 15px;
  border: 2px solid var(--color-primary);
  color: #000;
  font-weight: 600;
  border-radius: 100px;
}

#about a:hover{
  background-color: var(--color-primary);
  color: #fff;
  transition: 300ms;
}


#about h1 {
  font-weight: 600;
  color: #000;
  position: relative;
  display: inline-block;
}

#about h1:after {
  content: '';
  position: absolute;
  right: -33%;
  bottom: 40%;
  display: inline-block;
  background-color: var(--color-primary);
  height: 3px;
  width: 30%;
  margin-top: 5px;
}

#about p span{
  font-weight: 700;
  color: var(--color-primary);
}

#about .shp00 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media(max-width:768px){
  #about .shp00{
    display: none;
  }
}
@media(max-width:450px){
  #about p{
    font-size: 14px;
  }
}
/*- ================ Section 3 ============= - */

#schedule{
  position: relative;
}

#schedule h2 {
  font-size: 2.3em;
  font-weight: 600;
}

#schedule .shp1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

#schedule table{
  font-family:intertight !important;
}

#schedule .para{
  font-weight: 600;
  font-size: 20px;
  color: #7f7f90;
}

@media(max-width:991px) {
  #schedule h2 {
    font-size: 2em;
  }
}

@media(max-width:768px) {
  #schedule h2 {
    font-size: 1.7em;
  }
  #schedule .shp1{
    display: none;
  }
  #schedule .para{
    font-size: 17px;
  }
}

@media(max-width:450px){
  #schedule h2 {
    font-size: 1.5em;
  }
}
@media(max-width:377px){
  #schedule h2 {
    font-size: 1.4em;
  }
}
@media(max-width:370px){
  #schedule .para{
    font-size: 16px;
  }
}

#schedule table {
  width: 100%;
  text-align: center;
  border: 1px solid #000;
}

#schedule table tbody {
  border-top: 1px solid #000;
}

#schedule table tbody tr {
  border-bottom: 1px solid #000;
}

#schedule table tbody tr td {
  border-right: 1px solid #000;
  height: 40px;
}

#schedule table tr td {
  color: #000;
  font-size: 13px;
}

#schedule table tr td a {
  font-family:intertight !important;
  color: var(--color-primary);
  text-decoration: none;
}
#schedule table tr td a:hover {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width :768px) {
  #schedule table .thd tr th {
    font-size: 12px;
  }
}

/* ========== Gallery ========= */
#gallery{
  position: relative;
}

#gallery .insdd{
  border: 10px solid #fff;
  background-color: white;
  box-shadow: 0px 10px 30px -5px rgb(109 117 143 / 33%);
  border-radius: 10px;
}

#gallery .insdd{
  width: 100%;
  height: 210px;
  overflow: hidden !important;
}

#gallery .insdd img {
  transition: all 0.5s ease-in;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}

.insdd:hover img {
  transform: scale(1.1)!important;
  cursor: pointer;
  overflow: hidden;
}


#gallery .data1 h2 {
  font-weight: 600;
}


#gallery .data1 p{
  font-size: 18px;
}
#gallery .data1 p span{
  color: var(--color-primary);
  font-weight: 700;
}

#gallery .data1 h2{
  position: relative;
  display: inline-block;
}

#gallery .data1 h2:after {
  content: '';
  position: absolute;
  right: -33%;
  bottom: 40%;
  display: inline-block;
  background-color: var(--color-primary);
  height: 3px;
  width: 30%;
  margin-top: 5px;
}


#gallery .shp2 {
  position: absolute;
  right: 0;
   bottom: 0;
   z-index: -1;
}

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

/* ========== Video ========= */
#vdo{
  position: relative;
}

video {
  max-width: 100%;
  height: auto;
}

#vdo .shp3 {
  position: absolute;
  left: 0;
   bottom: 0;
   z-index: -1;
}

#vdo .insidedata h2 {
  font-weight: 600;
}

#vdo .insidedata h2{
  position: relative;
  display: inline-block;
}

#vdo .insidedata h2:after {
  content: '';
  position: absolute;
  right: -33%;
  bottom: 40%;
  display: inline-block;
  background-color: var(--color-primary);
  height: 3px;
  width: 30%;
  margin-top: 5px;
}


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

/* ========== media ========= */
.media{
  background-color: #f5f6f8;
}

/* ========== Video ========= */
.media .mj{
  display: flex;
}
.media .data{
  flex: 1;
}
.media .data img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.media .insidedata h2 {
  font-weight: 600;
}

.media .insidedata h2{
  position: relative;
  display: inline-block;
}

.media .insidedata h2:after {
  content: '';
  position: absolute;
  right: -33%;
  bottom: 40%;
  display: inline-block;
  background-color: var(--color-primary);
  height: 3px;
  width: 30%;
  margin-top: 5px;
}


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

/* ========== Footer ========= */


#fotr {
  background-color: #000;
}

#fotr a {
  padding: 10px 15px 10px 15px;
  border: 2px solid white;
  border-radius: 50px;
  color: #ffffff;
  font-family:intertight !important;
}

@media(max-width:450px){
  #fotr p{
font-size: 14px;
  }
}

/*-- ************* Copyryt ************* --*/
footer{
  background-color: #3a3a3a;
}

footer .data h4{
  color: #fff;
  font-weight: 700;
}

footer .inside h4{
  color: #fff;
  font-weight: 700;
}

footer .inside h4 a{
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
footer .inside h4 a:hover{
  color: #c3c3c3;
}
footer .copyryt h6 a{
color: #fff !important;
}
/* ============================================== MEDIA QUERY STARTS HERE ==================================== */



@media (max-width:1200px) {
  .navbar-nav a {
    font-size: 18px;
  }
}

@media (max-width:991px) {
  .navbar-nav .brd::after {
    display: none;
  }

  .offcanvas {
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
  }

  .header .header_top h1 {
    font-size: 40px;
  }

  .navbar-nav a:hover {
    color: var(--main);
  }

  .scrolled .navbar-nav a {
    color: white;
    transition: 0.5s;
  }
}
@media(max-width:450px){
  p{
    font-size: 14px !important;
  }
  footer .inside h4{
    font-size: 16px;
  }
  footer .inside h4 a{
    font-size: 16px;
  }
}








/*-- =============  Banner Css ============ -- */

.banner {
  position: relative;
  margin-top: -2px;
}

.banner .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '';
  display: none;
}

.banner .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: '';
}

/* Custom Swiper Navigation Styles */
.custom-swiper-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 1.5rem;
}

/* Responsive Styles for buttons */
@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 1.5rem;
    padding: 8px;
  }
}

@media (max-width: 480px) {

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 0.8rem !important;
    padding: 3px;
  }

  .swiper-button-prev i,
  .swiper-button-next i {
    font-size: 0.8rem;
  }

}
