/* =====================================================
   SPEAKER / MINISTER CARD â€“ PREMIUM SECTION CSS
   ===================================================== */
 :root {
  --section-gap: 64px;
}


section {
  margin-bottom: var(--section-gap);
}
section {
  scroll-margin-top: var(--header-height);
}
   *, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
   overscroll-behavior-x: none;
}

.hero-content h1{
   font-weight:700; 
}

@media screen and (min-width: 992px) {
    .hero-content h1{
    font-size:8.75em;
    }
}

/* Reset card padding */

.bg-cover::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,33,71,0.25); /* navy tint */
    opacity: 0.5;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.img-custom-anim-left{
    font-weight:700;
}
.overlay{
    padding:5px 10px;
    background-color:#26247bc5;
    
}
.bg-midnightblue{
    background-color:#26247b !important;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 320px;   /* desktop max */
}
@media (min-width: 992px) {
    .logo.logo-right img{
        height:100px;
    }
}


@media (max-width: 992px) {
  .logo img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .logo img {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .logo img {
    max-width: 110px;
  }
}


.mean__menu-wrapper .main-menu #mobile-menu > ul > li {
    margin: 0;
    padding: 0;
    position: relative;
}

/* âœ… ONLY main menu anchor */
.mean__menu-wrapper .main-menu #mobile-menu > ul > li > a {
    display: block;
    padding: 12px 75px;
    border-right: 1px solid #fff;
}

/* last item */
.mean__menu-wrapper .main-menu #mobile-menu > ul > li:last-child > a {
    border-right: 0;
}

@media (min-width: 992px) {
  .swiper-wrapper {
    display: flex;
    justify-content: center;
  }
}



/* Card Wrapper */
.inner-box {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: all 0.45s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Hover lift */
.inner-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(0,33,71,0.25);
}

/* IMAGE SECTION */
.image-box {
    position: relative;
    text-align: center;
    padding-top: 28px;
}

/* Circular image */
.image-box .image {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e6e6e6;
    transition: all 0.45s ease;
    background: #fff;
}

/* Image itself */
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* Image zoom on hover */
.inner-box:hover .image-box img {
    transform: scale(1.12);
}

/* Elegant glow ring */
.inner-box:hover .image-box .image {
    border-color: #002147;
}

/* Soft radial overlay */
.image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,33,71,0.22),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.inner-box:hover .image-box::after {
    opacity: 1;
}

/* INFO BOX */
.info-box {
    padding: 22px 18px 32px;
    text-align: center;
}

/* Name */
.info-box .name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
    line-height:unset;
}

/* Name link */
.info-box .name a {
    color: #002147;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Animated underline */
.info-box .name::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    /*background: #002147;*/
     background: linear-gradient(
        to right,
        #FF9933,
        #FFFFFF,
        #138808
    );
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.inner-box:hover .info-box .name::after {
    width: 65%;
}

/* Designation */
.designation {
    display: block;
    font-size: 14px;
    color: #555;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.inner-box:hover .designation {
    color: #333;
}

/* Cursor polish */
.inner-box:hover {
    cursor: pointer;
}

.GOI_section .swiper-slide, .GOI_section .marquee-track {
    height: auto;
    display: flex;
}
.GOI_section .swiper-slide .card,
.swiper-slide .card-body,
.inner-box,.GOI_section .marquee-track .card,
.swiper-slide .card-body,
.inner-box {
    height: 100%;
    width:100%;
}
.GOI_section .inner-box {
    display: flex;
    flex-direction: column;
}

.GOI_section .image-box {
    flex-shrink: 0;
}

.GOI_section .info-box {
    flex-grow: 1;               /* ⭐ magic line */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}  

/* =====================================================
   SWIPER INTEGRATION
   ===================================================== */

.marquee-static {
  cursor: default;
  pointer-events: none;
}

.ministersSwiper,.minister-marquee {
    padding: 25px 10px 55px;
}

.ministersSwiper .swiper-wrapper, .minister-marquee .marquee-track {
    align-items: stretch;
    justify-content: center;
}

/* Maintain col-md-3 look */
@media (min-width: 1200px) {
    .ministersSwiper .swiper-slide, .minister-marquee .marquee-item  {
        width: calc(20% - 20px) !important;
    }
}

/* Swiper arrows */
.ministersSwiper .swiper-button-next,
.ministersSwiper .swiper-button-prev {
    color: #002147;
}

/* Hide arrows if disabled */
.swiper-button-disabled {
    opacity: 0.3;
}

/* =====================================================
   RESPONSIVE TWEAKS
   ===================================================== */

@media (max-width: 991px) {
    .image-box .image {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 575px) {
    .image-box .image {
        width: 115px;
        height: 115px;
    }

    .info-box .name {
        font-size: 16px;
    }

    .designation {
        font-size: 13px;
    }
}


.swiper-slide {
    /*background: #f5f5f5;*/
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.table thead.table-bg-primary th {
    --bs-bg-opacity: 1;
    background-color: #26247b !important;
}
.table thead.table-bg-primary.text-white th{
    color:#ffffff;
}
.table-tb {
    background: #26247b;
    border-radius: 20px;
}

.professional-tabs {
    border-bottom: 2px solid #dee2e6;
}

.professional-tabs .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 12px 22px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
}

.professional-tabs .nav-link:hover {
    color: var(--bs-primary);
}

.professional-tabs .nav-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
    background-color: transparent;
}
.w-95{
    width:95% !important;
}

@media (max-width: 768px) {
    .professional-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Timeline container */
.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bs-primary);
    opacity: 0.2;
}

/* Timeline item */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* Icon / Number */
.timeline-icon {
    position: absolute;
    left: -5px;
    top: -25px;
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.timeline-content {
    background: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

/* Tag / Infographic chips */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* Mobile tweak */
@media (max-width: 576px) {
    .timeline {
        padding-left: 30px;
    }
    .timeline-content {
        padding: 16px;
    }
}

.cii-social-live .swiper-slide {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cii-social-live iframe,
.cii-social-live .twitter-wrapper,
.cii-social-live .fb-page {
    border-radius: 12px;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.zone-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.zone-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.zone-card p {
    color: #555;
    font-size: 14px;
}

/* Submenu */
.zone-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.zone-submenu li {
    margin-bottom: 8px;
}

.zone-submenu a {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
}

.zone-submenu a:hover {
    text-decoration: underline;
}

/* Card link reset */
.zone-card-link {
    text-decoration: none;
    color: inherit;
}

/*gallery Swiper*/

.GallerySwiper .swiper-slide ,.GallerySwiperMain .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.GallerySwiperMain .event-card-item{
    margin-top:0;
}

.GallerySwiperMain .event-card-item, .GallerySwiperMain .event-card-item .event-image{
    width:100%;
    height:100%;
} 

.GallerySwiperMain {
  height: 75%;
  width: 100%;
  max-height:75vh;
}

.GallerySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  max-height:20vh;
}

.GallerySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.GallerySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.GallerySwiper .swiper-slide img, .GallerySwiperMain .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-image {
    display: flex;
    align-items: flex-start;   /* TOP align */
    justify-content: center;   /* horizontally center (optional) */
}

.event-image img {
    object-fit: cover;        /* ya contain, need ke hisaab se */
    object-position: top;     /* IMAGE TOP se crop/align */
}

/*.bg-tricolor{*/
/*    background: linear-gradient(*/
/*        to bottom,*/
/*        rgba(255,153,51) 0%,*/
/*        rgba(255,179,102) 28%,*/

/*        rgba(255,255,255) 40%,*/
/*        rgba(255,255,255) 60%,*/

/*        rgba(184,224,184) 72%,*/
/*        rgba(19,136,8) 100%*/
/*    );*/
    
/*}*/

.bg-tricolor{
    position: relative;
    border: 3px solid transparent;
    overflow: hidden;
    background:
        /* TOP BORDER */
        linear-gradient(
            to right,
            #FF9933,
            #FFD7B0,
            #FFFFFF,
            #C8E6C9,
            #138808
        ) top / 100% 5px no-repeat,

        /* BOTTOM BORDER */
        linear-gradient(
            to right,
            #FF9933,
            #FFD7B0,
            #FFFFFF,
            #C8E6C9,
            #138808
        ) bottom / 100% 3px no-repeat,

        /* LEFT BORDER */
        linear-gradient(
            to bottom,
            #FF9933,
            #FFD7B0,
            #FFFFFF,
            #C8E6C9,
            #138808
        ) left / 3px 100% no-repeat,

        /* RIGHT BORDER */
        linear-gradient(
            to bottom,
            #FF9933,
            #FFD7B0,
            #FFFFFF,
            #C8E6C9,
            #138808
        ) right / 3px 100% no-repeat,

        /* MAIN TRICOLOR BACKGROUND */
        linear-gradient(
            to bottom,
            rgba(255,153,51,0.85) 0%,
            rgba(255,193,140,0.85) 28%,

            rgba(255,255,255,0.95) 40%,
            rgba(255,255,255,0.95) 60%,

            rgba(200,230,201,0.85) 72%,
            rgba(19,136,8,0.85) 100%
        );

    background-origin: border-box;
    background-clip:
        border-box,
        border-box,
        border-box,
        border-box,
        padding-box;
}

.tri-border{
    position: relative;
    border: 3px solid transparent;

    background:
        /* TOP BORDER */
        linear-gradient(to right,
            #FF9933, #FFD7B0, #FFFFFF, #C8E6C9, #138808
        ) top / 100% 3px no-repeat,

        /* BOTTOM BORDER */
        linear-gradient(to right,
            #FF9933, #FFD7B0, #FFFFFF, #C8E6C9, #138808
        ) bottom / 100% 3px no-repeat,

        /* LEFT BORDER */
        linear-gradient(to bottom,
            #FF9933, #FFD7B0, #FFFFFF, #C8E6C9, #138808
        ) left / 3px 100% no-repeat,

        /* RIGHT BORDER */
        linear-gradient(to bottom,
            #FF9933, #FFD7B0, #FFFFFF, #C8E6C9, #138808
        ) right / 3px 100% no-repeat;

    background-origin: border-box;
    background-clip: border-box;
}
.footer-section {
    position: relative;
    background-size: cover;
    background-position: center;
    
}

/* Tri-color border using border-image */
.footer-section.tri-border {
    border-width: 3px; /* border thickness */
    border-style: solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
}

.bg-tricolor::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.60);
    z-index:2;
    /*animation: flagWave 15s ease-in-out infinite;*/
}

@media (max-width: 768px) {
  .bg-cover {
    background-position: calc(100% + 60px) right;
  }
}
.header-section{
    max-width:100%;
}
/* Mobile only */
@media (max-width: 767px) {
  .header-section {
    overflow: hidden;
  }
}

/* SVG behaves like animated background */
.svg-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width:100%;
    z-index: 1;
}
/* Content upar rahe */
.logo-wrap{
    position: relative;
    z-index: 3;
}

.india-glance-section {
  background: #f8f9fa;
}

.glance-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.glance-card:hover {
  transform: translateY(-6px);
  background: #26247b;
}
.glance-card:hover img {
  filter: brightness(1.3) contrast(1.1);
  transform: scale(1.05);
}

.glance-card i {
  font-size: 34px;
  color: #26247b; /* India saffron */
  margin-bottom: 12px;
}
.glance-card img {
  width:100px;
}

.glance-card h4 {
  font-weight: 700;
  margin-bottom: 6px;
}
.glance-card:hover h4,.glance-card:hover p{
  color:#ffffff;  
}
.glance-card:hover h4 {
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
  
}

.glance-card p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++*/
/* Card – SAME HEIGHT & WIDTH */
/*.emblemSwiper .card {*/
/*  width: 100%;*/
 /* height: 220px; */        /* Mobile default */
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/


/*.emblemSwiper .swiper-slide {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/

/* Default – Mobile */
/*.emblem-box {*/
/*  height: 220px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.emblem-box img {*/
/*  max-height: 200px;*/
/*  width: auto;*/
/*  object-fit: contain;*/
  /*filter: grayscale(100%);*/
/*  transition: all 0.4s ease;*/
/*}*/

/*.emblem-box img:hover {*/
/*  filter: grayscale(0%);*/
/*  transform: scale(1.05);*/
/*}*/

/* Tablet */
/*@media (min-width: 768px) {*/
/*  .emblem-box {*/
/*    height: 120px;*/
/*  }*/

/*  .emblem-box img {*/
/*    max-height: 100px;*/
/*  }*/
/*}*/

/* Desktop */
/*@media (min-width: 992px) {*/
/*  .emblem-box {*/
/*    height: 180px;*/
/*  }*/

/*  .emblem-box img {*/
/*    max-height: 140px;*/
/*  }*/
/*}*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.minister-marquee {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 10px;
}

.marquee-track {
  animation: none !important;
  transform: translateX(0) !important;
}

.marquee-static {
  pointer-events: none;
}

/* Desktop → 4 cards */
@media (min-width: 1024px) {
  .marquee-item {
    width: calc(20% - 20px) !important;
  }
}

/* Mobile → 1 card */
@media (max-width: 1023px) {
  .marquee-item {
    width: calc(20% - 20px) !important;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.minister-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.minister-marquee,
.minister-marquee * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
}

.minister-marquee img {
  pointer-events: none; /* image drag disable */
}

/* Swiper slide */
.emblemSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:99;
}

/* Card – SAME HEIGHT & WIDTH */
.emblemSwiper .card {
  width: 90%;
  height: 220px;        /* Mobile default */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  transition: all 0.4s ease;
}

/* Remove Bootstrap padding issue */
.emblemSwiper .card-body {
  padding: 0;
  width: 100%;
  height: 100%;
}

/* Logo container */
.emblem-box {
  height: 100%;
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: center;
  text-align:center;
  transition: all 0.45s ease;
}

/* Logo image */
.emblem-box img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.emblem-box img:hover {
  transform: scale(1.05);
}
.emblemSwiper .swiper-wrapper,.emblemSwiper .swiper-wrapper .swiper-slide{
    height:100%;
}

.emblemSwiper *,
.emblemSwiper *::before,
.emblemSwiper *::after {
  box-sizing: border-box;
}

.emblemSwiper .swiper-slide,
.emblemSwiper .card,
.emblemSwiper .card-body {
  overflow: visible !important;
}

/* Hover effect */
.emblemSwiper .card:hover {
  z-index: 20;
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0,33,71,0.25);
}


/* Tablet */
@media (min-width: 768px) {
  .emblemSwiper .card {
    height: 120px;
  }

  .emblem-box img {
    max-height: 100px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .emblemSwiper .card {
    height: 180px;
  }

  .emblem-box img {
    max-height: 140px;
  }
}



.border-midnightblue{
    border:3px #26247b solid;
}
.bs-bage{
    background-color:var(--bs-gray-300) !important;
}
.bs-gray-300{
    background-color:var(--bs-gray-300) !important;
}


.session-box {
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cii-wef-section {
    padding: 70px 0;
    background: #ffffff;
}

.cii-wef-section .section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.cii-wef-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #26247b;
    display: block;
    margin-top: 10px;
}

/* 👇 ONLY CII TEXT */
.cii-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.highlight-card {
    background: #f8f9fa;
    /*border-left: 4px solid #26247b;*/
    padding: 25px;
    border-radius: 6px;
}

.highlight-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-card ul {
    padding-left: 18px;
    margin: 0;
}

/*.highlight-card ul li {*/
/*    margin-bottom: 10px;*/
/*    font-size: 15px;*/
/*}*/
/* Individual item card */
.highlight-card ul li {
    position: relative;
    background: #ffffff;
    padding: 12px 14px 12px 18px;
    margin-bottom: 12px;
    font-size: 15px;
    border-radius: 6px;
    transition: background 0.4s ease;
    border-left: 4px solid #26247b;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.highlight-card ul li:hover {
  background: rgba(38, 36, 123, 0.08);
}

.wef-focus {
    margin-top: 40px;
    padding: 18px 25px;
    background: #eef4ff;
    border-left: 5px solid #26247b;
    font-size: 15.5px;
}

/* Registration Section */
.registration-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.registration-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.registration-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #26247b;
    display: block;
    margin-top: 10px;
}

.registration-item {
    margin-bottom: 25px;
    padding: 18px 20px;
    background: #ffffff;
    border-left: 4px solid #26247b;
    border-radius: 6px;
}

.registration-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.registration-item .cii-text {
    font-size: 15.5px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.registration-item .cii-text a {
    color: #26247b;
    text-decoration: none;
}

.registration-item .cii-text a:hover {
    text-decoration: underline;
}

.ciiSocialSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: auto;
}



/*About Cii*/
.about-cii-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-cii-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.about-cii-section .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #26247b;
    display: block;
    margin-top: 10px;
}

.about-cii-section .cii-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.thematic-section .themes {
    overflow: hidden;
    
}
.thematic-section .themes:hover .overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.thematic-section .themes .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #26247b66 ; /*rgba(80, 160, 80, 0.4);*/
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 1s ease;
    transition: 1s ease;
}
@media screen and (max-width: 576px) {
    .thematic-section .themes .overlay {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.text-normal{
    text-transform: none !important;
}
.thematic-section .themes .overlay span {
    color: #ffffff;
    font-weight: 700;
}
.fs-14px {
    font-size: 14px;
}
.fs-16px {
    font-size: 16px;
}
.fs-18px {
    font-size: 18px;
}
.fs-30px {
    font-size: 30px;
}
br {
  display: block;
}