* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
  }
  .heading{
    font-size: 2rem;
    text-align: center;
    color: #fff;
    font-family: 'serif';
    font-style: italic;
  }
  
  .heading span{
   color: #40ffe3;
   font-size: 3.5rem;
   font-style: normal;
}

  html {
    font-size: 62.5%;
  }

  html, body {
    position: relative;
    height: 100%;
  }

  body {
    background: #111111!important;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    /* background-color: #222; */
    color: white;
    position: relative;
    
  }
  
  .exhi .flex{
    display: flex;
    align-items: flex-start;
  }
  .exhi .flex .icon{
   width: 40px;
  }
  .exhi li{
    list-style-type: none;
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
  }
  .exhi h4{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .bottom{
    text-align: end;
    padding: 1rem;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
}
  .exhi li i{
    background: #f06318;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 1rem;
    text-align: center;
    border-radius: 5rem;
    margin-right: 1rem;
  }
  
 p {
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    
  }
  
  #page_About h2{
    color:#fff;

  }

  .logo {
    text-align: center;
    flex-grow: 1;
  }

  .logo img {
      max-height: 75px;
  }

  .search-bar {
    display: flex;
    align-items: center;
   
  }

  .search-icon {
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
    
  }

  .search-icon:hover {
    transform: scale(1.2);
  }

  .search-input {
    width: 0;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    background: #333;;
    /* position: absolute;
    left:0; */
    border-radius: 5px;
    margin-left: 10px;
    transition: width 0.3s, opacity 0.3s;
    opacity: 0;
  }

  .search-input.open {
    width: 200px;
    opacity: 1;
  }

  .close-icon {
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    display: none;
    transition: transform 0.3s;
  }

  .close-icon:hover {
    transform: scale(1.2);
  }

  .menu-icon {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .menu-icon:hover {
    transform: scale(1.2);
  }

  .sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 1000;
  }

  .sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 27px;
    color: #999;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .sidebar .close-btn:hover {
    transform: scale(1.2);
  }

  .sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 22px;
    color: white;
    display: block;
    transition: 0.3s;
  }

  .sidebar a:hover {
    background-color: #575757;
    color:#fff;
  }
  .gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
  }
  
  .gallery:hover .gallery__image {
    filter: grayscale(1);
  }
  
  .gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
  }
  
  .gallery__link {
    margin: 2px;
    overflow: hidden;
  }
  
  .gallery__link:hover .gallery__image {
    filter: grayscale(0);
  }
  
  .gallery__link:hover .gallery__caption {
    opacity: 1;
  }
  
  .gallery__thumb {
    position: relative;
  }
  .gallery__thumb img {
    object-fit: cover;
    width: 300px;
    height: 300px;
  }
  .gallery__column:nth-of-type(1) .gallery__link:nth-child(2) img,
  /* .gallery__column:nth-of-type(2) .gallery__link:nth-child(1) img, */
  .gallery__column:nth-of-type(2) .gallery__link:nth-child(3) img,
  .gallery__column:nth-of-type(3) .gallery__link:nth-child(1) img,
  .gallery__column:nth-of-type(4) .gallery__link:nth-child(3) img {
      width: 300px;
      height: 500px;
  }
  
  
  
  
  .gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
  }
  
  .gallery__image:hover {
    transform: scale(1.1);
  }
  
  .gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
  }
  

  .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 90vh;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 400px;
    height: 400px;
    
    position: relative;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  .swiper-slide::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    background: inherit;
    transform: scaleY(-1);
    opacity: 0.4;
  }

  .swiper-slide::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 1), rgba(17, 17, 17, 0));
  }

  .swiper-slide:not(.swiper-slide-active) .text-overlay {
      background: linear-gradient(45deg, black, transparent)!important;
  
    opacity: 1;
  }
  .swiper-slide:not(.swiper-slide-active) .text-overlay h2{
      opacity: 0;
  }
  .swiper-slide:not(.swiper-slide-active) .text-overlay p{
      opacity: 0;
  }


  .text-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: #fff;
    top: 0px;
    background: linear-gradient(45deg, black, transparent)!important;
    right: 0px;
    text-align: center;
    /* text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7); */
    opacity: 0;
    transition: opacity 0.5s, background 0.5s, color 0.5s;
    padding: 3rem;
  }

  .swiper-slide-active .text-overlay {
    opacity: 1;
  }

  .text-overlay h2 {
    margin: 0;
    font-size: 7rem;
    /* font-family: 'Playfair Display', serif; */
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1.2;
    
  }

  .text-overlay p {
    margin: 5px 0 0;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
  }

  @media (max-width: 768px) {
    .swiper-slide {
      width: 300px;
      height: 300px;
    }

    .search-input.open {
      width: 150px;
    }

    .text-overlay h2 {
      font-size: 2.4rem;
    }

    .text-overlay p {
      font-size: 1.2rem;
    }
  }

  .footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #222;
    color: #fff;
    font-size: 1.2rem;
    position: sticky;
    bottom: 0;
    width: 100%;
  }
   
  .ser-box{
    border: 1px solid rgb(122 255 235 / 57%);
    padding: 3rem;
    border-radius: 1rem;
    background: #000;
    height: 120px;
    display: flex;
    align-items: center;
    margin: 1rem;
    justify-content: center;

  }
  .ser-box h2{
    font-size: 2rem;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}
@media(max-width:768px){
  .gallery__thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .gallery__column:nth-of-type(1) .gallery__link:nth-child(2) img,
/* .gallery__column:nth-of-type(2) .gallery__link:nth-child(1) img, */
.gallery__column:nth-of-type(2) .gallery__link:nth-child(3) img,
.gallery__column:nth-of-type(3) .gallery__link:nth-child(1) img,
.gallery__column:nth-of-type(4) .gallery__link:nth-child(3) img {
  width: 100%;
  height: 100%;
}
.tabs{
  flex-direction: column;
  text-align: center;
}
}
  