.cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    opacity: 50%;
}

.executive-section .tab-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.executive-section .tab-buttons button {
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    color: #0e3a81;
    background: #ebebeb;
    font-size: 1rem;
}

.executive-section .tab-buttons button.active {
    background: #008fd3;
    color: #ffffff;
    font-weight: bold;
}

.executive-section .tab-buttons button:hover {
    background: #008fd3;
    color: #ffffff;
    font-weight: bold;
}

.executive-section .tab-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 100%;
    padding-top: 20px;
    transform: translateY(20px);
}

.executive-section .tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    animation: fadeUp 0.5s ease forwards;
}

.executive-section .tabs-container {
    position: relative;
    min-height: 200px;
}

.executive-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 0.75rem;
    padding-right: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    gap: 1rem;
    border-radius: 60px 60px 0 60px;
}

@media screen and (max-width: 575.98px) {
    .executive-card {
        border-radius: 40px 40px 0 40px;
        padding: 0.5rem;
    }
}

.executive-card .content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.executive-card .content .name {
    color: #0e3a81;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    row-gap: 0.05rem;
}

@media screen and (max-width: 575.98px) {
    .executive-card .content .name {
        font-size: 1.25rem;
    }
}

.executive-card .content .position {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.executive-card .content .call {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.executive-card .content .call .phone-icon svg {
    width: 14px;
    height: 14px;
}

.executive-card .img {
    background: linear-gradient(180deg, #a7e6ff 0%, #32a5db 100%);
    border-radius: 50px 50px 0 50px;
}

@media screen and (max-width: 575.98px) {
    .executive-card .img {
        border-radius: 30px 30px 0 30px;
    }
}

.executive-card img {
    width: 174px;
    height: 205px;
    object-fit: cover;
    margin-top: -34px;
    margin-bottom: -0.35rem;
    border-radius: 50px 50px 0 50px;
    object-fit: cover;
    object-position: top;
}

@media screen and (max-width: 575.98px) {
    .executive-card img {
        width: 110px;
        height: 154px;
        margin-bottom: -0.5rem;
        border-radius: 30px 30px 0 30px;
    }
}

.executive-card:hover {
    transform: translateY(-5px);
}

.executive-card.small {
    border-radius: 40px 40px 0 40px;
    padding: 0.5rem;
}

.executive-card.small .img {
    border-radius: 30px 30px 0 30px;
}

.executive-card.small .content .name {
    font-size: 1rem;
}

.executive-card.small .content .position {
    font-size: 0.875rem;
}

.executive-card.small .content .call {
    font-size: 0.75rem;
}

.executive-card.small .content .call .phone-icon svg {
    width: 12px;
    height: 12px;
}

.executive-card.small img {
    width: 110px;
    height: 154px;
    margin-bottom: -0.5rem;
    border-radius: 30px 30px 0 30px;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.executive-profile .img {
    background: linear-gradient(180deg, #a7e6ff 0%, #32a5db 100%);
    border-radius: 50px 50px 0 50px;
    display: inline-block;
}

.executive-profile .img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-top: -34px;
    margin-bottom: -0.35rem;
}

.title-label {
    position: relative;
}

.title-label .title {
    background: linear-gradient(90deg,
            #0e3a81 15.12%,
            #037cc1 47.88%,
            rgba(0, 143, 211, 0) 92.2%);
    border-radius: 1rem 0 0 0;
    padding: 0.5rem 8rem 0.5rem 1.25rem;
    display: inline-block;
    margin-left: 24px;
}

.title-label::before {
    background: #0e3a81;
    width: 24px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 1rem 0 0;
}

.title-label .bullet {
    position: absolute;
    top: 20px;
    left: 19px;
    background-color: #ffffff;
    width: 8px;
    height: 8px;
    border-radius: 1rem 0 1rem 1rem;
    transform: rotate(315deg);
    z-index: 1;
}

.list-group {
    list-style: none;
    padding-left: 1.25rem;
}

.list-group li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
    padding-left: 1.25rem;
}

.list-group li:last-child {
    margin-bottom: 0;
}

.list-group .dot {
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 1rem 0 1rem 1rem;
    transform: rotate(88deg);
    background: #008fd3;
    margin-right: 0.75rem;
}

.org-chart {
    position: relative;
    text-align: center;
    margin-top: 40px;
    z-index: 1;
}
.org-chart.--row-03.--show-01 .org-row.flexible .org-node.center::before{
   content: none;
}
@media screen and (max-width: 991.98px) {
    .org-chart.--row-03.--show-01 .org-row.flexible .org-node.center::before{
        content: '';
    }

}
@media screen and (max-width: 991.98px) {
    .org-chart.--row-03 .org-row:nth-child(3) .org-node .line{
      display: block;
    }

}
.org-chart.--row-03 .org-node.top::before {
    height: 21.8rem;
}

@media screen and (max-width: 1199.98px) {
    .org-chart.--row-03 .org-node.top::before {
        height: 24rem;
    }

}
.org-chart.--row-03-sub .org-node.top::before {
    height: 31.8rem;
}
@media screen and (max-width: 1199.98px) {
    .org-chart.--row-03-sub .org-node.top::before {
        height: 36.5rem;
    }

}
.org-chart.--row-03 .flexible .org-node.center .line {
    border-radius: 0;
    border-left-style: solid;
    border-width: 2px;
    border-color: #076fb2;
}

.org-chart.--row-03 .flexible .org-node.center::before {
    left: 100px;
}

@media screen and (max-width: 991.98px) {
    .org-chart.--row-03 .flexible .org-node.center::before {
        top: 25px;
        width: 100%;
        right: auto;
        left: -8%;
    }
}

.org-chart .line {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border-left: 2px solid #076fb2;
    border-top: 2px solid #076fb2;
    width: 50%;
    height: 40px;
    z-index: -1;
    border-radius: 1rem 0 0 0;
}

@media screen and (max-width: 991.98px) {
    .org-chart .line {
        top: auto;
        bottom: 95px;
        right: 0;
        width: 2px;
        height: 130%;
        border: none;
        left: -8%;
        right: auto;
        background: #076fb2;
    }
}

.org-node {
    position: relative;
    display: inline-block;
}

.org-node::before {
    content: "";
    position: absolute;
    top: -40px;
    width: 19rem;
    right: -230px;
    height: 2px;
    background: #076fb2;
    z-index: -1;
    border-radius: 16px 0 0 0;
}

@media screen and (max-width: 991.98px) {
    .org-node::before {
        top: 25px;
        width: 100%;
        right: auto;
        left: -8%;
    }
}

.org-node.right::before {
    content: "";
    position: absolute;
    width: 19rem;
    left: -230px;
    height: 2px;
    background: #076fb2;
    z-index: -1;
    border-radius: 16px 0 0 0;
}

@media screen and (max-width: 991.98px) {
    .org-node.right::before {
        top: 25px;
        width: 100%;
        right: auto;
        left: -8%;
    }
}

.org-node.right .line {
    border-right: 2px solid #076fb2;
    border-left: none;
    border-radius: 0 1rem 0 0;
    left: 0;
}

@media screen and (max-width: 991.98px) {
    .org-node.right .line {
        top: auto;
        bottom: 95px;
        right: 0;
        width: 2px;
        height: 130%;
        border: none;
        left: -8%;
        right: auto;
        background: #076fb2;
    }
}

.org-node.center .line {
    border: none;
}

.org-node .position {
    position: relative;
    background: linear-gradient(90deg, #009ddc 0%, #0e3a81 100%);
    border-radius: 100px;
    padding: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    transition: all .25s;
    display: grid;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.org-node .position:hover {
    background: linear-gradient(90deg, #0e3a81 0%, #009ddc 100%);
}

@media screen and (max-width: 991.98px) {
    .org-node .position {
        min-height: 48px;
    }
}



.org-node .position .title {
    font-weight: 600;
}

.org-node .position p {
    font-size: 14px;
}

.org-node.top::before {
    content: none;
}

.org-node.top .position {
    border-radius: 8px;
    padding: 0.5rem 2rem;
    margin-bottom: 40px;
}

.org-node.top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 2px;
    height: 18rem;
    background-color: #0e3a81;
}

@media screen and (max-width: 991.98px) {
    .org-node.top {
        width: 100%;
    }

    .org-node.top::before {
        content: none;
    }

    .org-node.top .position {
        margin-bottom: 1rem;
    }
}

.org-row {
    display: grid;
}

.org-row.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.org-row.columns-4 .org-node {
    margin: 2.5rem 1rem;
}

@media screen and (max-width: 991.98px) {
    .org-row.columns-4 {
        grid-template-columns: 90%;
        justify-content: end;
    }

    .org-row.columns-4 .org-node {
        margin: 0;
        margin-bottom: 1rem;
    }

    .org-row.columns-4 .org-node:first-child .line {
        display: none;
    }
}

.org-row.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.org-row.columns-5 .org-node {
    margin: 2.5rem 0.25rem;
}

@media screen and (max-width: 991.98px) {
    .org-row.columns-5 {
        grid-template-columns: 90%;
        justify-content: end;
    }

    .org-row.columns-5 .org-node {
        margin: 0;
        margin-bottom: 1rem;
    }
}

.org-row.flexible {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 991.98px) {
    .org-row.flexible {
        display: grid;
        grid-template-columns: 90%;
        justify-content: end;
    }

}

.flexible .org-node {
    margin: 2.5rem 1rem;
    width: 30%;
}

@media screen and (max-width: 991.98px) {
    .flexible .org-node {
        margin: 0;
        margin-bottom: 1rem;
        width: 100%;
    }

}

.org-node .list-group {
    background: linear-gradient(90deg, #009ddc 0%, #0e3a81 100%);
    border-radius: 18px;
    padding: 0.25rem 4px;
    margin-top: 0.75rem;
    cursor: pointer;
}

.org-node .list-group .title {
    background: #fff;
    border-radius: 100px;
    padding: 0.35rem;
    color: #0769ac;
    font-size: 14px;
}

.org-node .list-group .list {
    text-align: left;
    padding: 0 0.55rem;
    color: #ffffff;
    font-size: 14px;
}

.org-node .list-group .list .dot {
    top: 5px;
    background: #ffffff;
}

.org-popup-overlay {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.org-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.org-popup-content {
    position: relative;
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    min-width: 350px;
    max-width: 800px;
    margin: 1rem;
    animation: fadeInUp 0.3s ease;

    .close {
        position: absolute;
        right: 1rem;
        top: 0;
        font-size: 48px;
        color: #8589ab;
        cursor: pointer;
    }

    @media screen and (max-width: 575.98px) {
        padding: 2rem 1rem;
    }
}

.org-popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.org-popup-details {
    height: auto;
    max-height: 580px;
    min-height: 90px;
    padding-right: 0.75rem;
    overflow: auto;

    @media screen and (max-width: 575.98px) {
        height: 100vw;
        max-height: max-content;
        min-height: 90px;
    }

    .row {
        display: flex;
        align-items: baseline;
        margin-bottom: 0.5rem;
    }

    .content {
        padding: 0 1.25rem;
        margin: 0.5rem 0 0.75rem;
    }

    .dept-block {
        border-bottom: 1px solid #dcdcdc;
        margin-bottom: 0.75rem;
    }

    .icon {
        color: #0e3a81;
        margin-right: 0.5rem;

        em {
            width: 14px;
            height: 14px;
            font-size: 14px;
        }
    }

    .icon .dot {
        width: 14px;
        height: 14px;
        display: block;
        border-radius: 1rem 0 1rem 1rem;
        transform: rotate(88deg);
        background: #0e3a81;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Edit */
.section-12 .swiper-04 {
    overflow: hidden;
}

.section-12 .arrows {
    opacity: 1;
    left: -60px;
    right: -60px;
    padding: 0;
}

.swiper-tabs-03 {
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
}

.tab-container .tab-content.active {
    overflow: visible;
}

.ss-card-05.minisite .ss-img {
    padding: 146% 0 0 0;
}


/* Theme */
.theme-1 .ss-title>*:first-child {
    background-image: linear-gradient(to right, rgb(255 255 255), rgb(255 255 255), rgb(255 255 255 / 100%), rgb(255 255 255), rgb(255 255 255));
}

.theme-1 .title-label::before {
    filter: grayscale(1);
}

.theme-1 .title-label .title {
    filter: grayscale(1);
}

.theme-1 .executive-profile .img {
    filter: grayscale(1);
}

.theme-1 .list-group .dot {
    filter: grayscale(1);
}

.theme-1 .phone-icon svg path {
    fill: #fff;
}

.theme-2 .ss-title>*:first-child {
    background-image: linear-gradient(to right, rgb(254 203 0), rgb(254 203 0), rgb(254 203 0 / 100%), rgb(254 203 0), rgb(254 203 0));
}

.theme-2 .title-label::before {
    background: transparent;
}

.theme-2 .title-label .title {
    background: transparent;
}

.theme-2 .title-label .bullet {
    background-color: #fecb00;
}

.theme-2 .executive-profile .img {
    background: transparent;
}

.theme-2 .list-group .dot {
    background: #fecb00;
}

.theme-2 .phone-icon svg path {
    fill: #fecb00;
}

.theme-1 .executive-section .tab-buttons button {
    filter: grayscale(1);
}

.theme-1 .executive-card .content .name {
    color: #ffffff;
}

.theme-1 .executive-card {
    filter: grayscale(1);
    background: transparent;
    border: 1px solid;
}

.theme-2 .executive-section .tab-buttons button {
    background-color: #fecb00;
    color: #000000;
}

.theme-2 .executive-card .content .name {
    color: #fecb00;
}

.theme-2 .executive-card .img {
    filter: grayscale(1);
}

.theme-2 .executive-card {

    background: transparent;
    border: 1px solid;
}


.theme-1 .org-node .position {
    filter: grayscale(1);
}

.theme-1 .org-node .list-group {
    filter: grayscale(1);
}

.theme-1 .org-node.top::before,
.theme-1 .org-node::before,
.theme-1 .org-node.right::before {
    background: #ffffff;
}

.theme-1 .org-chart .line {
    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    border-right: none;
}

@media screen and (max-width: 991.98px) {
    .theme-1 .org-chart .line {
        background: #ffffff;
    }
}

.theme-1 .org-node.right .line {
    border-right: 2px solid #ffffff;
    border-left: none;
}

.theme-1 .org-node.center .line {
    border: none;
}

.theme-1 .org-popup-content {
    background: #000000;
    border: 1px solid;
}

.theme-1 .org-popup-content .close {
    color: #ffffff;
}

.theme-1 .org-popup-details .icon {
    color: #ffffff;
}

.theme-1 .org-popup-details .icon .dot {
    background: #ffffff;
}

.theme-2 .org-node .position {
    border: 1px solid;
    color: #fecb00;
    background: #000000;
}

.theme-2 .org-node .list-group {
    border: 1px solid;
    color: #fecb00;
    background: #000000;
}

.theme-2 .org-node .list-group .title {
    background: #000000;
    border: 1px solid;
    color: #fecb00;
}

.theme-2 .org-node .list-group .list {
    color: #fecb00;
}

.theme-2 .org-node .list-group .list .dot {
    background: #fecb00;
}

.theme-2 .org-popup-content {
    background: #000000;
    border: 1px solid;
}

.theme-2 .org-popup-details .dept-block {
    border-bottom: 1px solid #fecb00;
}

.theme-2 .org-popup-details .icon {
    color: #fecb00;
}

.theme-2 .org-popup-details .icon .dot {
    background: #fecb00;
}

.theme-2 .org-popup-content .close {
    color: #fecb00;
}

.theme-2 .org-node.top::before,
.theme-2 .org-node::before,
.theme-2 .org-node.right::before {
    background: #fecb00;
}

.theme-2 .org-chart .line {
    border-left: 2px solid #fecb00;
    border-top: 2px solid #fecb00;
    border-right: none;
}

@media screen and (max-width: 991.98px) {
    .theme-2 .org-chart .line {
        background: #fecb00;
    }
}

.theme-2 .org-node.right .line {
    border-right: 2px solid #fecb00;
    border-left: none;
}

.theme-2 .org-node.center .line {
    border: none;
}


.theme-1 .banner-03 .swiper .arrows .arrow {
    filter: grayscale(1);
}

.theme-1 .banner-03 .swiper-pagination-bullets {
    filter: grayscale(1);
}

.theme-1 .ss-card-09 .text-container {
    filter: grayscale(1);
}

.theme-1 .section-10 .swiper-pagination-bullet {
    filter: grayscale(1);
}

.theme-1 .icon-water path {
    fill: #000000;
}


.theme-2 .banner-03 .swiper .arrows .arrow {
    background: rgb(0 0 0 / 50%);
    color: #fecb00;
}

.theme-2 .banner-03 .swiper-pagination-bullets {
    background: rgb(0 0 0 / 50%);
}

.theme-2 .banner-03 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    border: 1px solid #fecb00;
}

.theme-2 .banner-03 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #fecb00;
}

.theme-2 .ss-card-09 .text-container {
    background: rgb(0 0 0 / 57%);
}

.theme-2 .section-10 .swiper-pagination-bullet svg path {
    stroke: #fecb00;
}

.theme-2 .section-10 .swiper-pagination-bullet-active svg path {
    fill: #fecb00;
}

.theme-2 .icon-water path {
    fill: #fecb00;
}

.cursor-pointer {
  cursor: pointer;
}

.footer-wrapper .footer-top .logo .img-container img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
}

nav.topnav .logo img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
}

nav.topnav .menu.mega-menu .submenu-container {
  min-height: 23vh;
}