@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind", sans-serif;
  color: #2b2b2b;
  font-size: 18px;
}

.navbar-brand img {
  height: 45px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #FFF8EA;
  color: #2b2b2b;
  font-size: 14px;
}

.top-bar a {
  color: #2b2b2b;
  text-decoration: none;
}



.social-icons a {
  height: 35px;
  width: 35px;

  overflow: hidden;
  border-radius: 8px;


  display: flex;
  align-items: center;
  justify-content: center;
}




/* ===== NAVBAR ===== */
.navbar {
  transition: all .3s ease;
}

.nav-link {
  font-weight: 500;
  color: #1f2937 !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f76f00;
  transition: width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar .btn-primary {
  border-radius: 20px;
}

/* SECTION */
.leader-circle-ui {
  background-image: url(../images/vidhan-sabhi-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 85vh;
}

.leader-circle-ui-about {
  background-image: url(../images/1999gopal-1fb07d859c.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 55vh;
}

.mainHeading {
  text-shadow: 0 0 6px #706f6f7a;
}

.gra-text {
  background: linear-gradient(45deg, #F47D00, #F5BD60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}

/* Leader image */
.leader-img img {
  position: absolute;
  bottom: 0px;
  right: 50px;
  z-index: 5;
  max-width: 350px;

}


.leader-circle-ui::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.leader-circle-ui::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to Top, #ffffffb3, #ffffff0b);
  z-index: 4;
}

.leader-circle-ui .container-fluid,
.leader-circle-ui .work-carousel {
  position: relative;
  z-index: 2;
}


.leader-circle-ui-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.leader-circle-ui-about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to Top, #ffffffb3, #ffffff0b);
  z-index: 4;
}


/* ===== MODERN CARD ===== */
.work-slide {
  position: relative;
  /* height: 150px; */
  padding: 10px 20px;

  border-radius: 18px;

  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);

  border: 1px solid rgba(255, 255, 255, 0.55);

  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  text-align: start;
  line-height: 1;
  transition: all 0.35s ease;
}



/* ===== ICON ===== */
.work-slide .icon {
  width: 55px;
  height: 55px;
  background-color: #fff;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TITLE ===== */
.work-slide h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #1f2937;
}



/* ===== SMOOTH MARQUEE MOTION ===== */
.work-carousel .owl-stage {
  display: flex;
  align-items: stretch;
  transition-timing-function: linear !important;
}

/* ===== JOIN US BUTTON ===== */
.join-btn {
  position: relative;
  padding: 12px 30px !important;
  text-decoration: none;
  font-weight: 600;
  color: #1f2937 !important;
  border-radius: 12px;
  display: flex;
  /* Glass background */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  /* Border + bottom accent */
  border: 1px solid #F5BD60;


  transition: all .3s ease;
}

/* Hover effect */
.join-btn:hover {


  transform: translateY(-2px);

  box-shadow:
    0 8px 10px rgba(0, 0, 0, 0.22);
}

/* Active click */
.join-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Mobile spacing */
@media (max-width: 991px) {
  .join-btn {
    display: block;
    text-align: center;
  }
}

.btn-orange {
  background: linear-gradient(45deg, #F47D00, #F5BD60);
}

/* ===== ABOUT SECTION ===== */
.about-candidate {
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .75));
}

/* Numbers */
.counter-box h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #f47d00;
}

/* Label */
.counter-box p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .counter-box h3 {
    font-size: 26px;
  }
}

.heading-separator {
  width: 200px;
}

.heading-separator2 {
  width: 300px;
}

/* Message Box */
.message-box {
  position: relative;
  padding: 36px 30px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Quote icon */
.quote-icon {
  position: absolute;
  top: -18px;
  left: 24px;

  font-size: 64px;
  font-weight: 800;
  line-height: 1;

  color: #f47d00;
  opacity: 0.25;
}

/* Message text */
.message-text {

  line-height: 1.8;
  color: #2b2b2b;
}

/* Leader image */
.message-img-wrap {
  position: relative;
}


.leader-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.bg-light-2 {
  background-color: #FFF8EA;
}

/* Mobile */
@media (max-width: 768px) {
  .message-box {
    padding: 28px 22px;
  }

  .quote-icon {
    font-size: 52px;
  }
}

.custom-news-card {
  border: 1.5px solid #F47D00;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.18s, border-color 0.18s;
  cursor: pointer;
  box-shadow: none !important;
  box-shadow: 0 2px 12px rgba(42, 91, 180, 0.08);
}

.news-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  transition: filter 0.2s;
}

.zoom-btn {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  /* width: 50px; */
  /* height: 50px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2b2b2b;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.bg-main {
  background: linear-gradient(45deg, #F47D00, #F5BD60);
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.news-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 48, 80, 0.85);
  z-index: 1;
  animation: fadeIn 0.2s;
}

.news-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.news-lightbox-content {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 90%;
  width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(42, 91, 180, 0.13);
  animation: popIn 0.2s;
}

.news-lightbox-content {
  position: relative;
  z-index: 10000;
  background: #fff;
  margin: 5% auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.news-lightbox-close {


  background: #2b3035;
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  font-size: 1.1rem;
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}

.news-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  font-size: 18px;
}

.news-lightbox-header {
  border-bottom: 1px solid #e3eaf7;
  font-size: 1rem;
  color: #2b2b2b;
  background: #f6faff;
  border-radius: 18px 18px 0 0;
}

.news-lightbox-img-wrap {
  padding: 1.2rem 0 0.5rem 0;
  flex: 1 1 auto;
  height: 100%;
  overflow-y: auto;
}

.news-lightbox-img-wrap img {
  max-width: 100%;
  max-height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(42, 91, 180, 0.08);
}

.news-lightbox-footer {
  border-top: 1px solid #e3eaf7;
  background: #f6faff;
  border-radius: 0 0 18px 18px;
  gap: 1rem;
}

.btn-main-light {
  background: #eaf3ff;
  color: #2b2b2b;
  border: none;
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  transition: background 0.18s, color 0.18s;
}

.rounded-12 {
  border-radius: 12px;
}

/* ===== NEWS CUTTING CARD ===== */
.custom-news-card {
  position: relative;
  background: #fff;
  border-radius: 10px;

  /* Newspaper border */
  border: 1.6px solid #f47d00;

  /* Soft paper depth */
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);

  overflow: hidden;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* Torn paper feel */
.custom-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    repeating-linear-gradient(-45deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 4px);
  pointer-events: none;
}


/* Hover = lifted cutting */
.custom-news-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Image treatment */
.custom-news-card .news-img {
  filter: grayscale(5%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.custom-news-card:hover .news-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* Text area */
.custom-news-card .card-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: #1f2937;
}



/* Zoom button polish */
.custom-news-card .zoom-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-news-card:hover .zoom-btn {
  background: #f47d00;
  color: #fff;
}

.bg-darkline {
  background-image: url(../images/dark-hero-section-only-lines-33050.svg);
  background-size: cover;
  background-position: center;
}

/* ===== Owl Nav ===== */
.impact-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.owl-prev-btn,
.owl-next-btn {
  background: rgba(27, 27, 27, 0.682);
  color: #fff;
  font-size: 22px;
  padding: 10px 14px;
  border-radius: 50%;
  transition: 0.3s;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.owl-prev-btn:hover,
.owl-next-btn:hover {
  background: linear-gradient(120deg, #df643a, #f48308);
}

.impact-carousel .owl-prev {
  position: absolute;
  left: -10px;
}

.impact-carousel .owl-next {
  position: absolute;
  right: -10px;
}

/* ===== Dots ===== */
.impact-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.3);
}

.impact-carousel .owl-dots .owl-dot.active span {
  background: linear-gradient(120deg, #df643a, #f48308);
}

/* ===== DEVELOPMENT IMPACT ===== */


/* LEFT TEXT */
.impact-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.impact-months {
  font-size: 96px;
  font-weight: 900;
  color: #f48308;
}

.impact-text {
  display: block;
  font-size: 42px;
  font-weight: 700;
}

.impact-amount {
  font-size: 64px;
  font-weight: 900;
  color: #F5BD60;
}

.impact-tag {
  display: inline-block;
  background: #F47D00;
  color: #000;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
}

/* ===== HEX GRID ===== */
/* ===== IMPACT GRID ===== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ===== IMPACT BOX ===== */
.impact-box {
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  min-height: 140px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
  font-weight: 600;

  /* Glass + depth */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);

  transition: all 0.35s ease;
}

/* Hover interaction */
.impact-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.45);
}

/* Subtle top glow */
.impact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

/* TEXT */
.impact-box small {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.impact-box h3 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  color: #ffeb3b;
}

.impact-box span {
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===== COLOR VARIANTS (REUSED) ===== */
.bg-hex-blue {
  background: linear-gradient(135deg, #0288d1, #26c6da);
}

.bg-hex-brown {
  background: linear-gradient(135deg, #4e342e, #795548);
}

.bg-hex-yellow {
  background: linear-gradient(135deg, #af8f00, #fbc02d);
}

.bg-hex-red {
  background: linear-gradient(135deg, #ff5252, #ff867c);
}

.bg-hex-orange {
  background: linear-gradient(135deg, #ef6c00, #ffb74d);
}

.bg-hex-green {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
}

.bg-hex-olive {
  background: linear-gradient(135deg, #7c8b4f, #a5b96f);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bgl-1 {
  background-color: #ff424262;
  border-color: #ff4242;
  fill: #ff4242;
}

.bgl-1 svg path {
  fill: #ff4242;
}

.bgl-2 {
  background-color: #ffe04262;
  border-color: #ffe042;
}

.bgl-2 svg path {
  fill: #ffe042;
}

.bgl-3 {
  background-color: rgba(133, 255, 34, 0.384);
  border-color: #85ff22;
}

.bgl-3 svg path {
  fill: #85ff22;
}

.bgl-4 {
  background-color: rgba(34, 255, 174, 0.384);
  border-color: #22ffae;
}

.bgl-4 svg path {
  fill: #22ffae;
}

.bgl-5 {
  background-color: rgba(34, 237, 255, 0.384);
  border-color: #22edff;
}

.bgl-5 svg path {
  fill: #22edff;
}

.bgl-6 {
  background-color: rgba(181, 34, 255, 0.384);
  border-color: #b522ff;
}

.bgl-6 svg path {
  fill: #b522ff;
}

.card-style-1 .card-image {
  border-radius: 10px;
  overflow: hidden;
}

.card-style-1 .card-image a {
  display: block;
}

.card-style-1 .card-image img {
  width: 100%;
}

.oran-img {
  height: 80px !important;
  width: 80px !important;
  top: 10px;
  left: 10px;
  border: 4px solid #2e7d32;
  border-radius: 50%;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-style-1 .card-content {
  padding: 18px;
}

.fs-14 {
  font-size: 14px;
}

.gra-text {
  background: linear-gradient(45deg, #F47D00, #F5BD60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}

.card-style-1 {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 576px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collapse:not(.show) {
  display: block !important;
}

.poster-section {
  background: #f2f2f2;
}

/* MAIN PANELS */
.poster-card {
  background: linear-gradient(180deg, #9a4f0f, #7a3b05);
  color: #fff;
  padding: 30px 25px;
  height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* About us page */
.aboutbanner {
  width: 50%;
  z-index: 999;
  z-index: 999999999999999999999;
  position: absolute;
  top: 30%;
}

.gallyheading {
  z-index: 999;
  position: absolute;

}

.form-select:focus {
  border-color: #ff9500;
  outline: 0;
  box-shadow: unset !important;
}

/* LEFT & RIGHT SHAPES */
.left-card {
  border-radius: 30px 0 0 30px;
  margin-right: -60%;
}

.right-card {
  border-radius: 0 30px 30px 0;
  margin-left: -60%;

}

/* EACH ITEM */
.poster-item {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.right-card .poster-item {
  text-align: right;
}

/* DOTTED LINE */
.poster-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed rgba(255, 255, 255, .6);
}

/* REMOVE LAST BORDER */
.poster-item:last-child::after {
  display: none;
}

/* WHITE BULLET */
.poster-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffe042;
  border-radius: 50%;
  top: 6px;
}

.left-card .poster-item::before {
  left: -30px;
}

.right-card .poster-item::before {
  right: -30px;
}

/* TEXT */
.poster-item h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.poster-item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* CENTER IMAGE */
.leader-poster-img {
  z-index: 5;
  position: relative;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .poster-card {
    height: auto;
    margin-bottom: 20px;
  }

  .left-card {
    border-radius: 30px 30px 0 0;
    margin-right: 0;
  }

  .right-card {
    border-radius: 0 0 30px 30px;
    margin-left: 0;

  }

  .right-card .poster-item {
    text-align: center;
  }

  .left-card .poster-item {
    text-align: center;
  }

  .left-card .poster-item::before {
    display: none;
  }

  .right-card .poster-item::before {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .impact-title {
    font-size: 44px;
  }

  .impact-months {
    font-size: 72px;
  }

  .impact-amount {
    font-size: 48px;
  }

  .hex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 30px;
  }

  .social-icons a {
    height: 25px;
    width: 25px;
    overflow: hidden;
    border-radius: 4px;
  }

  .work-slide {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .work-carousel {
    bottom: unset !important;
  }

  .leader-img img {
    right: 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .leader-img img {
    right: 0;
  }
}

@media (max-width: 991.98px) {
  #mainNav {
    display: block !important;
    height: 100% !important;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px;
    transform: translateX(-110%);
    transition: all 0.3s ease-in-out;
  }

  #mainNav.show {
    transform: translateX(0%);
  }

  .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-item {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #f1f1f1;
  }

  .aboutbanner {
    width: 80%;
    overflow: hidden;
    z-index: 999;
    position: absolute;
    top: 30%;
  }

  .leader-img img {
    max-width: 350px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-link {
    font-size: 14px;
  }

  .leader-img img {
    max-width: 350px;
  }
}

@media (min-width: 1200px) {}


/* Single page */
.gallery {
  /* max-width: 1200px; */
  margin: auto;
  margin-top: 20px;
}

/* BIG IMAGE */
.big-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px double #ff6a00;
  margin-bottom: 14px;
}

.big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

/* THUMBNAILS */
.thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.thumbnails::-webkit-scrollbar {
  height: 6px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.thumbnails img {
  flex: 0 0 auto;
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .6;
  border: 2px solid transparent;
  transition: .3s ease;
}

.thumbnails img.active {
  opacity: 1;
  border-color: #ff6a00;
}

.thumbnails img:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 576px) {
  .gallery {
    padding: 12px;
  }

  .thumbnails img {
    width: 70px;
    height: 55px;
  }
}