*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

/* *** Navbar Start *** */
.navbar_btn {
    background: transparent;
    position: relative;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(255,0,0);
    border-radius: 6rem;
    outline: none;
    overflow: hidden;
    /* color: rgb(255,0,0); */
    color: white;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

.navbar_btn span {
    margin: 10px;
}

.navbar_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.navbar_btn:hover {
    color: #fff;
    border: 1px solid rgb(255,0,0);
}

.navbar_btn:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 0, 0);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.nav-item .nav-link {
    color: white !important;
    font-weight: bold;
    padding: 20px;
}

.nav-item .nav-link:hover{
    color: red !important;
}

#navbar-button{
    padding: 10px 30px;
    background-color: transparent;
    color: white;
    border-radius: 6rem;
    border: 2px solid red ;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-custom {
    /* background-color: rgba(0, 0, 0, 0.5) !important; */
    border-bottom: 2px solid red;
    position: absolute;
    top: 0;
    width: 89%;
    z-index: 2;
    color: white;
}

.navbar-nav-center {
    margin: 0 auto;
}

.navbar-nav-right {
    margin-left: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    /* font-size: 3vw; */
    z-index: 1;
}

.centered-text h1{
    font-size: 4rem;
    color:  black;
    margin-top: 2rem;
}

.centered-text p{
    margin-top: 2rem;
}

.centered-text button{
    padding: 10px 30px;
    background-color: transparent;
    color: black;
    border-radius: 6rem;
    border: 2px solid red ;
    margin-top: 2rem;

}

@media (max-width: 768px) {
    .centered-text {
        font-size: 5vw;
    }

    .navbar-custom{
        background-color: black !important;
    }

    .navbar_btn{
      margin-left: 10px;
    }
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/about-bg-2.jpg); */
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 0 0;
    height: 68vh;
}
/*** Single Page Hero Header End ***/


/*** Gallery About Start ***/
.about .tab-class .nav .nav-item a.active {
    background-color: transparent;
    border: 2px solid red !important;
    border-radius: 10px;
    color: red;
}

.about .tab-class .nav .nav-item a{
    border-radius: 10px;
    font-weight: bold;
    color: black;
}

.tab-class{
    background-color: #d2d3d3;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

.about_btn button{
    padding: 10px 30px;
    border: none;
    background-color: transparent;
    border-color: #f8b864;
    transition: 0.5s;
    font-weight: bold;
    border: 2px solid red;
    border-radius: 6rem;
}

.about_title{
    color: red;
    font-weight: bold;
}

/*** Gallery about End ***/


/*** Gallery Start ***/
  
.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
    color: red;
  }
  
  .gallery-container p.page-description {
    text-align: center;
    margin: 30px auto;
    font-size: 18px;
    color: #85878c;
  }
  
  .tz-gallery {
    padding: 40px;
  }
  
  .tz-gallery .thumbnail {
    padding: 0;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    transition: 0.15s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
  }
  
  .tz-gallery .thumbnail:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .tz-gallery .lightbox img {
    border-radius: 4px 4px 0 0;
    /* border-radius: 38% 37% 57% 27% / 39% 34% 62% 45%; */
    padding: 20px;
    transition: 0.15s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
    width: 400px;
    height: 300px;
  }
  
  .tz-gallery .lightbox img:hover{
    transform: translateY(-10px) scale(1.02);
  }
  
  .tz-gallery .caption{
    padding: 26px 30px;
    text-align: center;
  }
  
  .tz-gallery .caption h3 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 0;
  }
  
  .tz-gallery .caption p {
    font-size: 12px;
    color: #7b7d7d;
    margin: 0;
  }
  
  .baguetteBox-button {
    background-color: transparent !important;
  }
  
  .gallery_btn {
    background: transparent;
    position: relative;
    padding: 5px 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(255,0,0);
    border-radius: 6rem;
    outline: none;
    overflow: hidden;
    color: white;
    transition: color 0.3s 0.1s ease-out;
  }
  
  .gallery_btn a{
    color: black;
    transition: color 0.3s 0.1s ease-out;
  
  }
  
  .gallery_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
  }
  
  .gallery_btn:hover {
    color: #fff !important;
    border: 1px solid rgb(255,0,0);
  }
  
  .gallery_btn a:hover{
    color: white;
  }
  
  .gallery_btn:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 0, 0);
  }

  @media (max-width: 768px) {

    .gallery-container{
      margin-left: -15px;
    }

    .gallery_btn{
      text-align: center;
    }
}

/* .hidden {
  display: none;
}
.visible {
  display: block;
} */

    /*** Gallery End ***/



    /*** Footer Start ***/
.footer {
    border-top: 3px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-style: dotted;
    border-color: var(--bs-light);
  }
  .footer .footer-item a,
  .footer .footer-item p {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
    color: white;
    text-decoration: none;
  }
  
  .footer .footer-item a:hover {
    color: red;
    letter-spacing: 1px;
  }
  
  .footer .footer-item .footer-gallery {
    position: relative;
    overflow: hidden;
  }
  
  .footer .footer-item .footer-gallery img {
    width: 300px;
    height: 120px;
    transition: 0.5s;
  }
  
  .footer .footer-item .footer-gallery:hover img {
    transform: scale(1.2);
  }
  
  .footer .footer-item .footer-gallery .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
  }
  
  .footer .footer-item .footer-gallery:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
  }
  /*** Footer End ***/
  
  /*** copyright Start ***/
  .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
  }
  /*** copyright end ***/


  
 /* Mobile devices (portrait and landscape) */
@media (max-width: 576px) {
  /* Styles for mobile devices */
  .navbar-custom{
    background-color: black;
    width: 89%;
    margin-left: 10px;
  }

  .navbar_btn{
    width: 48%;
    margin-left: 8px;
  }
  .nav-item{
    position: relative;
    left: 60px;
  }
  
.bai_img{
  margin-top: 10px;
}
}

/* Tablets and small desktops */
@media (min-width: 577px) and (max-width: 768px) {
  /* Styles for tablets and small desktops */
}

/* Medium devices (laptops/desktops) */
@media (min-width: 769px) and (max-width: 992px) {
  /* Styles for laptops/desktops */
  .navbar-custom{
    background-color: black !important;
    width: 89%;
  }
  
}

/* Large devices (large desktops) */
@media (min-width: 993px) and (max-width: 1200px) {
  /* Styles for large desktops */
  .navbar-custom{
    /* background-color: black !important; */
    width: 99%;
  }

  
}

/* Extra large devices (extra large desktops, TVs) */
@media (min-width: 1201px) and (max-width: 1800px) {
  /* Styles for extra large desktops */
  .navbar-custom{
    width: 79% !important;
  }

  .nav-item{
    position: relative;
    left: 5px;
  }
}

/* Ultra large devices (ultra large desktops, large TVs) */
@media (min-width: 1401px) {
  /* Styles for ultra large desktops and large TVs */
  .navbar-custom{
    width: 59%;
  }

  .nav-item{
    position: relative;
    right: 10px;
  }
  
}


.gallery-container {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* Space between images */
}

.gallery img {
  width: 250px; /* Set your desired width */
  height: 200px; /* Set your desired height */
  object-fit: cover; /* Adjust to maintain aspect ratio */
  border-radius: 8px; /* Optional: for rounded corners */
}

.load-more-btn {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: red;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.load-more-btn:hover {
  background-color: red;
  /* color: black; */
}


/* Button styles */
.important-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

.important-btn:hover{
  animation: none;
}

/* Icon styling */
.important-btn i {
  margin-right: 8px;
}

.bai_img{
  position: relative;
  top: 5px;
}
.bai_img{
  margin-top: 10px;
}