/*endregion  */
.index--section {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* .welcome-section{
  margin-top: 10px;
} */
/* Make Swiper full width and center aligned */
.swiper {
  width: 100%;
  height: 350px;
  /* max-width: 1200px; */
  border-radius: 20px;
  overflow: hidden;
  border-radius: 0 !important;
}

/* Style each slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa; /* Light gray or any color you prefer */
}

/* Image inside slides */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-fit: contain; */
  border-radius: 0 !important;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  /* color: #007bff; */
  color: white;
  font-weight: bold;
  transition: transform 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}



#organizational-unit-data-top {
    width: 100vw;
    height: auto;
    text-align: center;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#organizational-unit-data-top a {
    display: inline-block;
    padding: 1.2rem 1.5rem;
    transition: 500ms ease;
    text-decoration: none;
    color: #4d5765;
    font-size: 12px;
    font-family: "Jost", sans-serif;
    transition: background-color 0.6s ease;
}

#organizational-unit-data-top a.active,
#organizational-unit-data-top a:hover {
    background-color: #4d576547;
}

#organizational-unit-data-background {
    width: 100%;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom {
    width: 100vw;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    list-style: none;
}

/*
    +------------------------------------------------------------------------------+
    |             // HERE                                                          |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom>li {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 10px;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |           // HERE             | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom>li>a {
    text-decoration: none;
    font-weight: bolder;
    color: black;
}

/*
    +------------------------------------------------------------------------------+
    |                                         // HERE                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | |     |  |     |                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/  
#organizational-unit-data-bottom-departments {
    display: flex;
    list-style: none;
    position:relative;
    align-items:center;
}

#organizational-unit-data-bottom-departments > div {
    position: absolute;
    top: 140%;
    z-index: 5;
    background-color: white;
    opacity:0%;
    pointer-events: none;
    transition: 250ms ease;
    display: flex;
    flex-direction: column;
}

#organizational-unit-data-bottom-departments > p{
    font-family: "Poppins";
}

#organizational-unit-data-bottom-departments > div.active{
    opacity:100%;
    pointer-events: all;
}

/*
    +------------------------------------------------------------------------------+
    |                                                                              |
    |   +-------------------------------+ +-----+  +-----+                         |
    |   |                               | | HERE|  | HERE|                         |
    |   +-------------------------------+ +-----+  +-----+                         |
    |                                                                              |
    +------------------------------------------------------------------------------+
*/
#organizational-unit-data-bottom-departments > div >  a {
    font-family: "Jost", sans-serif;
    text-decoration: none;
    padding: 10px 20px;
    color: #4d5765;
      background-color: white;
    display: inline-block;
    white-space:nowrap;
}

#organizational-unit-data-bottom-departments > div >  a:hover {
    color: #000;
}

@media screen and (orientation: portrait) {
    #organizational-unit-data-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #organizational-unit-data-background {
        /* position: absolute; */
        left: 0%;
        width: 210%;
        margin: unset;
        margin-left: -55%;
        /* transform: translateX(-26%); */
        overflow: hidden;
    }

    #organizational-unit-data-bottom {
        text-align: center;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    #organizational-unit-data-bottom-departments {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }

    #organizational-unit-data-bottom>li {
        width: 100%;
        padding: unset;
    }

    #organizational-unit-data-bottom>li>a {
        padding: unset;
        width: 100%;
    }

    #organizational-unit-data-bottom>li>a,
    #organizational-unit-data-bottom-departments > div >  a {
        background-color: #4d576547;
        color: #2c333d;
        text-decoration: none;
        padding: 1rem;
        width: 100%;
    }
}

@media screen and (orientation: portrait) and (max-width: 250px) {
    #organizational-unit-data-top {
        grid-template-columns: 1fr;
    }

    #organizational-unit-data-top a {
        padding: 0.5rem 1.5rem;
    }
}






















/* Responsive design */
@media screen and (max-width: 768px) {
  .swiper {
    max-width: 100%;
  }
}


