.leadership-section{
    /* background:#f5f5f5; */
}

.leader-card{
    background:#fff;
    border-radius:25px;
    padding:40px 35px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.leader-card:hover{
    transform:translateY(-8px);
}

.leader-img-wrap{
    width:320px;
    height:320px;
    margin:auto;
    position:relative;
}

.leader-img-wrap::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border:4px solid #ff6200;
    border-bottom:none;
    border-radius:50%;
    top:-10px;
    left:0;
}

.blue-ring::before{
    border-color:#082b66;
}

.leader-img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:12px solid #f3f3f3;
}

.profile-icon{
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    width:70px;
    height:70px;
    background:#082b66;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    border:5px solid #fff;
}

.profile-icon.orange{
    background:#ff6200;
}

.leader-card h2{
    margin-top:40px;
    font-size:48px;
    font-weight:800;
    color:#082b66;
}

.designation{
    margin:15px 0;
}

.designation span{
    color:#ff6200;
    font-size:28px;
    font-weight:600;
    position:relative;
}

.designation span::before,
.designation span::after{
    content:'';
    position:absolute;
    width:80px;
    height:2px;
    background:#ff6200;
    top:50%;
}

.designation span::before{
    right:100%;
    margin-right:15px;
}

.designation span::after{
    left:100%;
    margin-left:15px;
}

.dots{
    margin:20px 0;
}

.dots span{
    width:10px;
    height:10px;
    background:#ff6200;
    display:inline-block;
    border-radius:50%;
    margin:0 3px;
}

.leader-card p{
    font-size:22px;
    line-height:1.9;
    color:#555;
}

.bottom-icon{
    margin-top:30px;
    position:relative;
}

.bottom-icon::before,
.bottom-icon::after{
    content:'';
    position:absolute;
    width:110px;
    height:2px;
    background:#082b66;
    top:50%;
}

.bottom-icon::before{
    right:55%;
}

.bottom-icon::after{
    left:55%;
}

.bottom-icon i{
    width:55px;
    height:55px;
    background:#082b66;
    color:#fff;
    border-radius:50%;
    line-height:55px;
}

@media(max-width:991px){

.leader-img-wrap{
    width:240px;
    height:240px;
}

.leader-card h2{
    font-size:34px;
}

.designation span{
    font-size:20px;
}

.leader-card p{
    font-size:17px;
}

}

@media(max-width:576px){

.leader-card{
    padding:25px;
}

.leader-img-wrap{
    width:180px;
    height:180px;
}

.leader-card h2{
    font-size:26px;
}

.designation span{
    font-size:16px;
}

.designation span::before,
.designation span::after{
    width:40px;
}

.leader-card p{
    font-size:15px;
    line-height:1.8;
}

.bottom-icon::before,
.bottom-icon::after{
    width:60px;
}

}