:root {
  --themeprimaryclr: #372870;
  --themesecondaryclr: #FB3D3B;
  --plainclr: #fff;
  --darkclr: #000;
  --card7-bg: #E3FFFF;
  --light-primary-bg: #E6F5FF;
  --tab1-bg: #FFEDD8;
  --tab2-bg: #E8FFEC;
  --card6-bg: #FFEEEE;
  --border-color9: #ccc;
}

.gallery-sec-5 {
  /* new css  */
  /* gallery new css start */
  /* gallery new css end */
  /* popup gallery css  */
}
.gallery-sec-5 .gallery-sec h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.gallery-sec-5 .gradient-text {
  font-weight: bold;
  background: linear-gradient(to right, var(--themesecondaryclr), var(--themeprimaryclr));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: normal;
}
.gallery-sec-5 .gallery-sec .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .gallery-sec-5 .gallery-sec .tabs {
    justify-content: left;
  }
  .gallery-sec-5 .gallery-sec .tabs-and-heading h2.gradient-text {
    text-align: left;
    display: flex;
    justify-content: left;
  }
}
.gallery-sec-5 .gallery-sec .tab {
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  background-color: var(--plainclr);
  transition: background-color 0.3s ease;
  font-weight: 500;
  text-transform: capitalize;
}
.gallery-sec-5 .gallery-sec .tab:first-child {
  background: var(--card7-bg);
}
.gallery-sec-5 .gallery-sec .tab:nth-child(2) {
  background: var(--light-primary-bg);
}
.gallery-sec-5 .tab:nth-child(3) {
  background: var(--tab1-bg);
}
.gallery-sec-5 .gallery-sec .tab:nth-child(4) {
  background: var(--tab2-bg);
}
.gallery-sec-5 .gallery-sec .tab:nth-child(5) {
  background: var(--card6-bg);
}
.gallery-sec-5 .gallery-sec .tab.more {
  background: var(--card6-bg);
}
.gallery-sec-5 .gallery-sec .tab.active,
.gallery-sec-5 .gallery-sec .tab:hover {
  background: linear-gradient(138deg, var(--themesecondaryclr), var(--themeprimaryclr));
  color: var(--plainclr);
}
.gallery-sec-5 .gallery-sec .gallery {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.gallery-sec-5 .gallery-sec .gallery-item {
  margin-bottom: 25px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.gallery-sec-5 .gallery-sec .gallery-item:hover label {
  display: block;
}
.gallery-sec-5 .gallery-sec label {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to right, var(--themesecondaryclr), var(--themeprimaryclr));
  color: var(--plainclr);
  padding: 7px;
  width: 100%;
  display: none;
  text-align: center;
  transition: background 0.8s;
}
.gallery-sec-5 .gallery-sec .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  padding: 8px;
}
@media (max-width: 991px) {
  .gallery-sec-5 .gallery-sec .gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 575px) {
  .gallery-sec-5 .gallery-sec .gallery {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.gallery-sec-5 .gallery-sec .btns {
  margin-top: 15px;
}
.gallery-sec-5 .gallery-sec .btns .gradient-btn {
  box-shadow: 0px 4px 4px 10px var(--shadow2);
}
.gallery-sec-5 .gallery-sec .tab.more {
  display: flex;
  align-items: center;
  position: relative;
}
.gallery-sec-5 .gallery-sec .more-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: var(--plainclr);
  border: 1px solid var(--border-color9);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 100;
  width: -moz-max-content;
  width: max-content;
}
.gallery-sec-5 .gallery-sec .more-dropdown .dropdown-item {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--darkclr);
}
.gallery-sec-5 .gallery-sec .more-dropdown .dropdown-item:hover {
  background: linear-gradient(138deg, var(--themesecondaryclr), var(--themeprimaryclr));
  color: var(--plainclr);
}
.gallery-sec-5 .gallery-sec .tabs-and-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .gallery-sec-5 .gallery-sec .tabs-and-heading {
    flex-direction: column;
    justify-content: left;
  }
}
.gallery-sec-5 #moreDropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plainclr);
  border: 1px solid var(--border-color9);
  display: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 10;
}
.gallery-sec-5 #moreDropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--plainclr);
}
.gallery-sec-5 .image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gallery-sec-5 .image-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gallery-sec-5 .image-popup img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.gallery-sec-5 .nav-btn,
.gallery-sec-5 .close-btn {
  position: absolute;
  width: 45px;
  height: 45px;
  background: var(--plainclr);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--darkclr);
  font-size: 20px;
  transition: background 0.3s;
}
.gallery-sec-5 .nav-btn:hover,
.gallery-sec-5 .close-btn:hover {
  background: var(--themesecondaryclr);
  color: var(--plainclr);
}
@media (max-width: 575px) {
  .gallery-sec-5 .nav-btn,
  .gallery-sec-5 .close-btn {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--plainclr);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--darkclr);
    font-size: 20px;
    transition: background 0.3s;
  }
}
.gallery-sec-5 .close-btn {
  top: 20px;
  right: 20px;
}
.gallery-sec-5 .prev-btn {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-sec-5 .next-btn {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-sec-5 .gallery-sec .gallery {
  display: block;
}
.gallery-sec-5 .gallery-sec .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-sec-5 .gallery-sec .gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s linear;
}
.gallery-sec-5 .gallery-sec .gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-sec-5 .gallery-sec .gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}
.gallery-sec-5 .gallery-sec .gallery-item:hover::before {
  opacity: 1;
}
.gallery-sec-5 .gallery-sec .gallery-item::after {
  font-weight: 900;
  font-size: 24px;
  color: var(--plainclr);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-sec-5 .gallery-sec .gallery-item:hover::after {
  opacity: 1;
}
.gallery-sec-5 .gallery-sec .gallery-item label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, var(--themesecondaryclr), var(--themeprimaryclr)) !important;
  color: var(--plainclr) !important;
  padding: 8px 12px;
  border-radius: 0 0 12px 12px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
  z-index: 3;
  pointer-events: none;
  text-transform: capitalize;
}/*# sourceMappingURL=galleryDesign5.css.map */