/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
   color: white;;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}
section{
  padding-top: 30px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-padding1 {
  padding-top: 100px;
  padding-bottom: 60px;
}
.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
  white-space: nowrap !important;
}

.nav-item a{
  white-space: nowrap !important;
}

.nav-item{

}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

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


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0px; 
  right: 0;
  left: 0;
  margin-top: 0px;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #fbfbfb;
}

.navbar {
  /* margin-top: 50px; */
  background:#fbfbfb;
  z-index: 9;
  height: 105px;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  /* margin: 10px; */
  padding: 10px 20px;
  color: #1e65a5 !important;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
  font-weight: 900;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: #212529;
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: #212529;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #f2f4ff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}


/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-color: #f2f4ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: #1d60a4;
  position: relative;
  overflow: hidden;
  /* padding-bottom: 30px; */
  padding: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-image: url('../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg');
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: #cb2e23; 
}

.site-footer-link,
.copyright-text {
  color: white;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  /* display: inline-block; */
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: #fbfbfb;
  }
  .navbar-expand-lg .navbar-nav {
      padding-bottom: 30px;
      position: absolute;
      right: 4px;
      top: 80px;
      background: black;
      color: #ffffff !important;
      padding: 25px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    color: #ffffff !important;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

.slideshow-section {
  position: relative;
  width: 100%;
  height: 500px;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.slideshow-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

.slideshow-thumbnails img {
  width: 20%;
  margin: 10px;
  cursor: pointer;
}

.slideshow-navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prev-button, .next-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.prev-button:hover, .next-button:hover {
  background-color: #ccc;
}

.slideshow-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.image-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.image-description {
  font-size: 16px;
}
.artists-section{
  /* background-color: #000000; */
}

/* slider css start */

.slider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider {
  display: flex;
  gap: 15px;
}

.slider-image {
  width: 300px;
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slider-image:hover {
  transform: scale(1.1);
}

/* The Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  position: absolute;
  top: 115px;
  left: 326px;
  width: 197px;
  /* height: 500px; */
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Navigation buttons for modal */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

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

/* slider css start */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* BOOTSTRAP ICONS */
/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"); */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#mySkills {
    margin-top: 10px;
    margin-bottom: 50px;

}

#skillsContainer {
  background-image: linear-gradient(to bottom, #CA2E280D, #001AFF0D);
    box-shadow: 0px 0px 5px rgba(255, 153, 153, 1);
    border-radius: 10px;
}

.tab {
  overflow: hidden;
  /* border: 2px solid #3e4149; */
  /* background: #ffc8c8; */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tab button {
    font-family: "Nunito";
    font-weight: 700;
    text-transform: uppercase;
    width: 50%;
    color: #3e4149;
    background: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 16px;
    transition: 0.3s;
    font-size: 14px;
}

.tab button:hover {
    /* background-color: #ff9999; */
}

.tab button.active {
  color: #fff;
  background: #0084ba;
}

.tabContent {
  background: #fff;
  display: none;
  padding: 10px 15px;
  /* border: 2px solid #3e4149; */
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  animation: fadeEffect 0.5s;
}

.tabContent h3 {
    font-family: "Nunito";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.tabContent p {
    font-size: large;
    /* background: #3e4149; */
    /* color: #fff; */
    padding: 10px;
    transition: transform 0.4s ease, border-radius 0.4s ease, color 0.4s ease, background 0.4s ease, font-weight 0.4s ease;
}

.tabContent p:hover {
    transform: scale(1.08);
    border-radius: 8px;
    color: #3e4149;
    /* background: #ff9999; */
    font-weight: 700;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.text-center{text-align:center!important}

/* Modal Container */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content Box */
.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  height: auto;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Buttons Styling */
.option-btn, .signup-btn, .date-selector button, .time-selector button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 5px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.option-btn:hover, .signup-btn:hover, .date-selector button:hover, .time-selector button:hover {
  background-color: #007bff;
  color: white;
}

/* Select Dropdown Styling */
select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}


/* Styling for custom tabs */
.custom-tabs {
  overflow: hidden;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.custom-tablink {
      /* background-color: #555; */
      color: #080808;
      border: 2px solid #ddd;
      border-radius: 10%;
      margin: 9px;
      padding: 10px 12px;
      cursor: pointer;
      /* float: left; */
      /* border: none; */
      outline: none;
      transition: 0.3s;
}

/* Change background color of buttons on hover */
.custom-tablink:hover {
  background-color: #126698;
  color: aliceblue;
}

/* Content inside tabs */
.custom-tabcontent1 {
  display: none;
  padding: 20px;
  border-top: none;
  background-color: #f1f1f1;
  /* margin-top: 10px; */
}
.custom-tabcontent1 p {
  text-align: left;
}
.custom-tabcontent2 {
  display: none;
  padding: 20px;
  border-top: none;
  background-color: #f1f1f1;
  /* margin-top: 10px; */
}
.custom-tabcontent2 p {
  text-align: left;
}
.custom-tabcontent3 {
  display: none;
    padding: 20px;
    border-top: none;
    background-color: #f1f1f1;
    margin-top: -40px;
}
.custom-tabcontent3 p {
  text-align: left;
}
.ico-img{
  width: 10%;
}
.modal-content h3{
  text-align: left;
}
.modal-content .row{
margin: 20px 6px;
text-align: left;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2;
  color: #555;
}

tr:hover {
  background-color: #f1f1f1;
}



/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.rules-container {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between each rule */
}

.rule {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 40px;
  color: #007bff; /* Primary color */
  margin-right: 20px; /* Space between icon and text */
}

.rule-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
}

.rule-text p {
  margin: 0;
  color: #555; /* Text color */
}

.faq-container {
  width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
}

.faq-answer {
  display: none;
  padding: 0 0 15px;
}

.faq-question h3 {
  margin: 0;
  font-size: 20px;
}

.faq-question i {
  transition: transform 0.2s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}
.text-justify{
  text-align: justify !important;
}

.navbar-brand img{
    width: 50%;
    background: #fff;
    height: 100px;
}

.logo-text{
  width: 40% !important;
  margin: 15px 0 0 70px;
}

.slider-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}



.scroll-static-section {
  display: flex;
  height: 100vh;
  /* Adjust based on the desired height of the section */
  overflow: hidden;
}

/* .static-part {
  position: sticky;
  top: 0;
  width: 50%;
  background-color: #f8f9fa;
  padding: 20px;
  border-right: 2px solid #ddd;
  height: 319px;
} */

.scrollable-part {
  width: 100%;
    /* height: 319px; */
    /* overflow-y: scroll; */
    padding: 20px;
    /* margin-bottom: 0; */
    background-color: #fff;
}

.scrollable-content {
  /* height: 200vh; */
  /* Extra height to make it scrollable */
}
.fsize{
  text-align: left;
  font-size: 26px;
}

.property-margin{
  margin-top: -172px;
}

.properties-buttn{
  border: none;
  padding: 11px;
  width: 100%;
  text-align: left;
  text-decoration: underline;
}
.text-right{
  text-align: right;
}

.custom-tablink1{
  /* outline: 2px solid transparent;  */
    border-bottom: 2px solid #ddd;
    border-top: 2px solid #ddd;
    border-left: none;
    border-right: none;
    padding: 11px 28px;
}

.amenity-icon {
  font-size: 1.5rem;
    color: #61c43e !important;

}
.from-text{
  font-size: 18px;
  color: #0f6da5 !important;
}

.head-bg{
  background-color: #1d60a4;
  padding: 10px;
}
.head-bg h2{
 color: white;
}
.mt-12{
  margin-top: 12px;
}

@media only screen and (max-width: 600px) {

  .navbar-brand img{
      width: 100% !important;
  }

  .navbar-brand{
    width: 110px;
  }

  .custom-tablink1 {
    padding: 10px 7px;
    margin: 0px 4px;
    width: 90px;
  }
  .mobile-flex{
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .custom-tablink {
    margin: 0 !important;
  }
  .modal-content {
    display: block;
    position: absolute !important;
    top: 115px;
    left: 26px !important;
    width: 62% !important;
    /* height: 500px; */
  }
  .box1 {
    display: flex;
    flex-direction: row;
    width: 220px !important;
    align-items: center !important;
    padding: 1px 15px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  .border-01{
    width: 100% !important;
  }
  .border-02{
    width: 100% !important;
  }
}

@media only screen and (max-width: 991px) {

  .navbar-brand img{
      width: 100% !important;
  }
  .navbar-brand{
    width: 110px !important;
  }
  .border-01{
    width: 100% !important;
  }
  .border-02{
    width: 100% !important;
  }
}


  @media only screen and (max-width: 768px) {

    .navbar-brand img{
        width: 100% !important;
                height: 47px;
    }
    .navbar-brand{
      width: 110px !important;
    }
    .navbar-toggler{
      position: absolute;
      right: 15px;
    }
    .bhartipatel{
      width: 100%;
      margin-bottom: 25px;
    }
    .logo-text {
      margin: 15px 0 0 50px !important;
    }
    .artists-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: auto!important;
}
.banner-text p {
    color: white;
    font-size: 28px!important;
    position: relative;
    top: 150px!important;
    font-weight: 400;
}
.mobile-none{
   display: none;
}
.fsize {
    text-align: left;
    font-size: 23px;
}
.mi-vi {
    background-color: white;
    padding: 20px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 20px;
}
.owner-img img {
    width: 80%!important;
    position: relative;
    top: 35px;
    height: auto!important;
    left: 37px;
    margin-bottom: 110px;
}
.owner {
    background-image: url(../img/owner-back.jpg);
    background-size: cover;
    height: 1200px!important;
    width: 100%;
}
.text-left {
    text-align: center!important;
    margin-top: 20px!important;
}
.mobile-dn{
  display: none;
  }
}
  




/* Modal container */
#bookingModal1 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Background overlay */
}

/* Modal content box */
.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80% !important;
  max-width: 666px;
  position: relative;
  left: 0;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close button */
.close {
  color: #000;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.close:hover {
  color: #ff5a5a;
}

/* Modal header */
h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* Row styles for booking options */
.row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.book-room {
  text-align: center;
  flex-basis: 30%;
  margin-left: -19px;
}

.box1 {
  /* padding: 15px; */
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  width: 156px;
  align-items: center;
  padding: 1px 10px;
}

/* .box1:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.bi {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

p.openModalBtn1 {
  margin: 0;
  font-weight: 500;
}

/* Date and Time selection */
.date-selector button, .time-selector button {
  border: 1px solid #e5e5e5;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  font-size: 14px;
}

.date-selector button:hover, .time-selector button:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Select sharing type dropdown */
select {
  width: 100%;
  height: 55px;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

select:focus {
  border-color: #007bff;
}

/* Signup button */
.signup-btn {
  width: 100%;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-btn:hover {
  background-color: #0056b3;
}
.navbar-brand{
  width: 100%;
}
.my-20{
  margin: 20px 0px;
}
.border-02{
  border-top: 3px solid #c3005f;
  padding-top: 5px;
  width: 34%;
}
.border-01{
  border-top: 3px solid #126698;
  padding-top: 5px;
  width: 34%;
}
.site-footer-link i {
  display: inline-block;
  margin: 0 5px;
}
.box1 i{
  color: #61c43e !important;
}
.banner-image img{
     width: 100%;
    height: 470px;
  position: absolute;
       top: 105px;
  }

.tabContent p i{
  display: inline-block !important;
    font-size: 19px;
    color: #c3005f;
}
.custom-tablink1:hover {
  color: #c3005f !important;
}


/* Events Section Styling */
/* .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
} */
/* 
.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bold;
} */

/* #pastEvents {
  transition: all 0.5s ease-in-out;
}

#event{
  background-color: #f2f4ff !important;
} */

.banner-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background video */
.banner-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Foreground images */
.banner-images {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.banner-images img {
  border-radius: 10px;
  margin: 0 15px;
  max-width: 250px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Hover effect on images */
.banner-images img:hover {
  transform: scale(1.1);
}

/* Overlay effect for the video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Optional: for a dark overlay on the video */
  z-index: 1;
}

.event-section {
  padding: 50px 0;
}
.event-card {
  margin-bottom: 30px;
}
.event-img, .video-container iframe {
  width: 100%;
  border-radius: 10px;
}
.video-container {
  margin-top: 15px;
}

.brand-text {
  font-size: 1.25rem; 
  font-weight: bold; 
  color: #333;
}

.topbar-area {
  background-color: #bf0a48;
  color: #fff;
  padding: 15px 0;
}

/* Desktop and Tablet Default */
.topbar-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.topbar-left ul li {
  display: inline;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-right: 25px;
}

.topbar-left ul li a {
  color: #fff;
  text-decoration: none;
}

.topbar-left ul li a:hover {
  text-decoration: underline;
}

.topbar-info li i {
  margin-right: 5px;
  color: white;
}

/* Tablet View */
@media (max-width: 768px) {
  .topbar-left ul {
    gap: 5px;
    font-size: 12px;
  }

  .topbar-left ul li {
    display: inline;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    margin-right: 25px;
  }
  .banner-image img {
    width: 100%;
    height: 135px;
    position: absolute;
    top: 105px;
}
.home-top-mb{
    position: relative;
    top: -355px;
}
.under{
  background-color: white;
  padding: 15px;
  height: 765px!important;
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #80808078;
}
.gallery-img {
    width: 100%;
    height: auto!important;
    margin-top: 21px;
}
}

/* Mobile View */
@media (max-width: 480px) {
  .topbar-left ul {
    display: block;
    text-align: center;
  }

  .topbar-left ul li {
    display: block;
    margin: 5px 0;
  }

  .topbar-area {
    padding: 10px 0;
  }
  .sticky-wrapper {
    position: absolute;
    top: -53px !important;
    right: 0;
    left: 0;
    margin-top: 51px;
}
}
.home-first{
      width: 100%;
}
.f7{
  background-color: #f7f7f7;
  padding-top: 30px;
}
.under{
  background-color: white;
  padding: 15px;
  height: 600px;
  width: 100%;
  margin-bottom: 35px;
  border: 1px solid #80808078;
}
.under h6{
  font-size: 18px;

}
.about-image img{
      width: 100%;
    height: 500px;
}
.mi-vi{
  background-color: white;
  padding: 20px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 310px;
}


/* Ensure the section takes full height */
.artists-section {
    position: relative;
    height: 620px;
    overflow: hidden; /* Prevent scrollbars if video is larger */
}

/* Style the video as background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: -1; /* Make sure the video stays behind the content */
}

/* Content styling */
.content {
    position: relative;
    z-index: 1; /* Content appears above the video */
    text-align: center;
    color: white;
    padding: 20px;
}
.banner-text p {
    color: black;
    font-size: 60px;
    position: relative;
    top: 180px;
        font-weight: 400;
}
.sp-tx{
color: #bf0a48;
position: absolute;
top: -25px;
font-size: 40px;
}
.owner{
    background-image: url(../img/owner-back.jpg);
    background-size: cover;
    height: 490px;
    width: 100%;
}
.owner-img img{
      width: 90%;
    position: relative;
    top: 90px;
}
.text-left{
  text-align: left;
}
.owner-text{
  position: relative;
  top: 30px;
}
.small-t{
  font-size: 30px!important;
      margin-top: 65px;
}



  .form-container {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: auto;
        }

      

        label {
            font-weight: bold;
            margin-top: 10px;
            display: block;
        }

        input[type="text"], input[type="email"], textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .form-buttons {
            text-align: center;
        }

        button {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .reset-button {
            background-color: #f44336;
            margin-left: 10px;
        }

        .reset-button:hover {
            background-color: #e53935;
        }
        .copy{
          background-color: #1d60a4;
        }
        .copy-right{
          width: 60%;
        }
        .detoxify img{
          width: 100%;
          height: 380px;
        }











        #resource-slider {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 415px;
  margin: auto;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #DDD;
  overflow: hidden;
}

#resource-slider .arrow {
  cursor: pointer;
  position: absolute;
  width: 2em;
  height: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  background: transparent;
  top: -25px;
}

#resource-slider .arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

#resource-slider .arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0.75em;
  height: 0.75em;
  margin: auto;
  border-style: solid;
}

#resource-slider .prev {
  left: 0;
  bottom: 0;
}

#resource-slider .prev:before {
  left: 0.25em;
  border-width: 3px 0 0 3px;
  border-color: #333 transparent transparent #333;
  transform: rotate(-45deg);
}

#resource-slider .next {
  right: 0;
  bottom: 0;
}

#resource-slider .next:before {
  right: 0.25em;
  border-width: 3px 3px 0 0;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}

#resource-slider .resource-slider-frame {
  position: absolute;
  top: 0;
  left: 2em;
  right: 2em;
  bottom: 0;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  overflow: hidden;
}

#resource-slider .resource-slider-item {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
}

#resource-slider .resource-slider-inset {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0.5em 0.25em;
  overflow: hidden;
}

@media ( max-width: 60em ) {
  #resource-slider .resource-slider-item {
    width: 33.33%;
  }
  #resource-slider {
    height: 16em;
  }
}

@media ( max-width: 45em ) {
  #resource-slider .resource-slider-item {
    width: 50%;
  }
}

@media ( max-width: 30em ) {
  #resource-slider .resource-slider-item {
    width: 100%;
  }
  #resource-slider {
    height: 25em!important;
  }
}
.treatments-ig{
      height: 220px;
    width: 100%;
}
.hmt{
font-size: 17px;
    padding-top: 20px;
}
.gallery-img{
    width: 100%;
    height: 215px;
    margin-top: 21px;
}
.bharti{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
}
.font-ot{
  color: #1d60a4;
}