.leadership-box .leadership-title {
    margin-top: 12px;
}
.leadership-image {
    position: relative;
}
.leadership-image a {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #3a95fc;
    backdrop-filter: blur(10px);
}
.leadership-box {
    cursor: pointer;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.leadership-box .leadership-title .btn-secondary {
    background: linear-gradient(42deg, #A65F5D -12.23%, #1D4A7E 105.52%);
    border: none;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leadership-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: scale(0);
    background-color: rgba(0, 0, 0, 0.70);
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
}
.leadership-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.leadership-popup-inner {
    max-width: 1024px;
    margin: auto;
    display: flex;
    padding: 35px;
    border-radius: 30px;
    backdrop-filter: blur(3px);
    background-color: #000000d1;
    border: 1px solid #2F2D43;
    column-gap: 40px;
}
.leadership-popup-inner .leadership-popup-image {
    width: 30%;
    flex-shrink: 0;
}
.leadership-popup-inner .leadership-details {
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    background: no-repeat;
    height: auto;
    border: none;
}
.leadership-popup-inner .leadership-details .leadership-title {
    margin-top: 0;
    margin-bottom: 20px;
}
.leadership-popup-inner .leadership-details p {
    margin-bottom: 0;
}
.leadership-popup-togelar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.leadership-popup-inner .leadership-details a{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #3a95fc;
    backdrop-filter: blur(10px);
}
.leadership-popup-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.leadership-popup-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}
.leadership-popup-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}