/*======================================
LEADERSHIP PAGE
======================================*/

:root{

    --primary:#0B2E59;
    --secondary:#E31E24;
    --dark:#1d1d1d;
    --text:#5d6673;
    --white:#ffffff;
    --light:#f8fafc;
    --border:#e8edf3;
    --shadow:0 15px 45px rgba(0,0,0,.08);

}

/*======================================
INTRO
======================================*/

.leadership-intro{

    padding:110px 0 80px;
    background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);

}

.section-title{

    max-width:900px;
    margin:auto;
    text-align:center;

}

.section-title span{

    display:inline-block;
    color:var(--secondary);
    background:rgba(227,30,36,.08);
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:22px;

}

.section-title h2{

    color:var(--primary);
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:24px;

}

.section-title p{

    color:var(--text);
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin:auto;

}

/*======================================
LEADER SECTION
======================================*/

.leader-section{

    padding:90px 0;
    background:#fff;

}

.leader-section:nth-child(even){

    background:#fafbfd;

}

/*======================================
GRID
======================================*/

.leader-grid{

    display:grid;
    grid-template-columns:430px 1fr;
    gap:70px;
    align-items:flex-start;

}

/*======================================
LEFT SIDE
======================================*/

.leader-image{

    width:430px;

}

.leader-image img{

    width:430px;
    height:430px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:14px;
    transition:.45s;

}

.leader-image:hover img{

    transform:scale(1.03);

}

.leader-info{

    padding-top:22px;
    text-align:left;

}

.leader-info h3{

    color:var(--primary);
    font-size:34px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:8px;

}

.leader-info span{

    color:var(--secondary);
    font-size:18px;
    font-weight:600;
    letter-spacing:.3px;

}
/*======================================
RIGHT CONTENT
======================================*/

.leader-content{

    padding-top:15px;

}

/*======================================
TAG
======================================*/

.leader-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 24px;
    background:rgba(227,30,36,.08);
    color:var(--secondary);
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:22px;

}

/*======================================
HEADING
======================================*/

.leader-content h2{

    position:relative;
    color:var(--primary);
    font-size:38px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:28px;
    padding-bottom:18px;

}

.leader-content h2::after{

    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:4px;
    background:var(--secondary);
    border-radius:20px;

}

/*======================================
QUOTE BOX
======================================*/

.leader-content blockquote{

    position:relative;
    margin:0 0 28px;
    padding:28px 35px;
    background:#f7f9fc;
    border-left:5px solid var(--secondary);
    border-radius:12px;
    font-size:19px;
    line-height:1.7;
    color:var(--primary);
    font-style:italic;
    font-weight:600;

}

.leader-content blockquote::before{

    content:"\201C";
    position:absolute;
    left:16px;
    top:-18px;
    font-size:68px;
    color:rgba(227,30,36,.18);
    font-family:Georgia,serif;

}

/*======================================
PARAGRAPH
======================================*/

.leader-content p{

    color:var(--text);
    font-size:17px;
    line-height:2;
    max-width:95%;

}

/*======================================
SPACING
======================================*/

.leader-content>*:last-child{

    margin-bottom:0;

}
/*======================================
HOVER EFFECTS
======================================*/

.leader-section{

    position:relative;
    transition:.45s ease;

}

.leader-section:hover{

    background:#fbfcfe;

}

/*======================================
IMAGE EFFECT
======================================*/

.leader-image{

    overflow:hidden;
    border-radius:14px;

}

.leader-image img{

    transition:transform .6s ease, filter .6s ease;

}

.leader-image:hover img{

    transform:scale(1.05);
    filter:brightness(1.03);

}

/*======================================
NAME EFFECT
======================================*/

.leader-info h3{

    transition:.35s;

}

.leader-section:hover .leader-info h3{

    color:var(--secondary);

}

/*======================================
HEADING EFFECT
======================================*/

.leader-content h2{

    transition:.35s;

}

.leader-section:hover .leader-content h2{

    color:#123d74;

}

/*======================================
QUOTE EFFECT
======================================*/

.leader-content blockquote{

    transition:.35s;

}

.leader-section:hover blockquote{

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

/*======================================
PARAGRAPH
======================================*/

.leader-content p{

    text-align:justify;

}

/*======================================
SECTION DIVIDER
======================================*/

.leader-section:not(:last-child)::after{

    content:"";
    display:block;
    width:100%;
    height:1px;
    background:#eceff4;
    margin-top:90px;

}

/*======================================
SMOOTH ANIMATION
======================================*/

.leader-section{

    animation:fadeLeader .8s ease both;

}

@keyframes fadeLeader{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*======================================
LAST SECTION
======================================*/

.leader-section:last-child{

    padding-bottom:110px;

}

/*======================================
SELECTION
======================================*/

::selection{

    background:var(--secondary);
    color:#fff;

}
/*======================================
RESPONSIVE
======================================*/

/*==============================
1400px
==============================*/

@media (max-width:1400px){

    .leader-grid{

        grid-template-columns:380px 1fr;
        gap:60px;

    }

    .leader-image{

        width:380px;

    }

    .leader-image img{

        width:380px;
        height:380px;

    }

    .leader-content h2{

        font-size:34px;

    }

}

/*==============================
1200px
==============================*/

@media (max-width:1200px){

    .leader-grid{

        grid-template-columns:320px 1fr;
        gap:50px;

    }

    .leader-image{

        width:320px;

    }

    .leader-image img{

        width:320px;
        height:320px;

    }

    .leader-info h3{

        font-size:28px;

    }

    .leader-info span{

        font-size:17px;

    }

    .leader-content h2{

        font-size:32px;

    }

    .leader-content blockquote{

        font-size:18px;
        padding:24px 28px;

    }

}

/*==============================
992px
==============================*/

@media (max-width:992px){

    .leadership-intro{

        padding:90px 0 60px;

    }

    .section-title{

        padding:0 20px;

    }

    .section-title h2{

        font-size:38px;
        line-height:1.25;
        margin-bottom:18px;

    }

    .section-title p{

        font-size:17px;
        line-height:1.8;

    }

    .leader-section{

        padding:70px 0;

    }

    .leader-grid{

        grid-template-columns:1fr;
        gap:40px;
        text-align:center;

    }

    .leader-image{

        width:340px;
        margin:auto;

    }

    .leader-image img{

        width:340px;
        height:340px;
        object-fit:cover;
        object-position:top;
        border-radius:16px;

    }

    .leader-info{

        text-align:center;
        padding-top:18px;

    }

    .leader-info h3{

        font-size:28px;

    }

    .leader-info span{

        font-size:17px;

    }

    .leader-content{

        text-align:center;

    }

    .leader-content h2{

        font-size:32px;
        line-height:1.3;

    }

    .leader-content h2::after{

        left:50%;
        transform:translateX(-50%);

    }

    .leader-content blockquote{

        font-size:18px;
        line-height:1.8;
        padding:24px;
        text-align:left;

    }

    .leader-content p{

        max-width:100%;
        font-size:16px;
        line-height:1.9;
        text-align:justify;

    }

}


/*==============================
576px
==============================*/

@media (max-width:576px){

    .leadership-intro{

        padding:100px 0 45px;

    }

    .section-title{

        padding:0 15px;

    }

    .section-title span{

        font-size:12px;
        padding:8px 18px;

    }

    .section-title h2{

        font-size:34px;
        line-height:1.25;
        margin-bottom:18px;

    }

    .section-title p{

        font-size:15px;
        line-height:1.8;

    }

    .leader-section{

        padding:60px 0;

    }

    .leader-grid{

        gap:30px;

    }

    .leader-image{

        width:300px;
        margin:auto;

    }

    .leader-image img{

        width:300px;
        height:300px;
        object-fit:cover;
        object-position:top;
        border-radius:16px;

    }

    .leader-info{

        text-align:center;
        padding-top:18px;

    }

    .leader-info h3{

        font-size:25px;

    }

    .leader-info span{

        font-size:16px;

    }

    .leader-tag{

        font-size:12px;
        padding:9px 18px;

    }

    .leader-content{

        text-align:center;

    }

    .leader-content h2{

        font-size:28px;
        line-height:1.3;

    }

    .leader-content h2::after{

        left:50%;
        transform:translateX(-50%);

    }

    .leader-content blockquote{

        font-size:17px;
        line-height:1.7;
        padding:22px;
        text-align:left;

    }

    .leader-content blockquote::before{

        font-size:55px;
        top:-14px;

    }

    .leader-content p{

        font-size:15px;
        line-height:1.9;
        max-width:100%;
        text-align:justify;

    }

}

/*==============================
400px
==============================*/

@media (max-width:400px){

    .leadership-intro{

        padding-top:95px;

    }

    .section-title h2{

        font-size:30px;

    }

    .leader-image{

        width:260px;
        margin:auto;

    }

    .leader-image img{

        width:260px;
        height:260px;
        object-fit:cover;
        object-position:top;

    }

    .leader-info h3{

        font-size:22px;

    }

    .leader-info span{

        font-size:15px;

    }

    .leader-content h2{

        font-size:24px;

    }

    .leader-content blockquote{

        font-size:15px;
        padding:20px;

    }

    .leader-content p{

        font-size:14px;

    }

}
/*==============================
360px
==============================*/

@media (max-width:360px){

    .leadership-intro{

        padding:110px 0 40px;

    }

    .section-title{

        padding:0 12px;

    }

    .section-title span{

        font-size:11px;
        padding:8px 16px;

    }

    .section-title h2{

        font-size:26px;
        line-height:1.25;
        margin-bottom:16px;

    }

    .section-title p{

        font-size:14px;
        line-height:1.8;

    }

    .leader-section{

        padding:45px 0;

    }

    .leader-grid{

        gap:28px;

    }

    .leader-image{

        width:240px;
        margin:auto;

    }

    .leader-image img{

        width:240px;
        height:240px;
        object-fit:cover;
        object-position:top;
        border-radius:14px;

    }

    .leader-info{

        text-align:center;
        padding-top:16px;

    }

    .leader-info h3{

        font-size:22px;
        margin-bottom:6px;

    }

    .leader-info span{

        font-size:15px;

    }

    .leader-tag{

        font-size:11px;
        padding:8px 16px;

    }

    .leader-content{

        text-align:center;

    }

    .leader-content h2{

        font-size:24px;
        line-height:1.3;

    }

    .leader-content h2::after{

        left:50%;
        transform:translateX(-50%);

    }

    .leader-content blockquote{

        font-size:15px;
        line-height:1.7;
        padding:18px;
        text-align:left;

    }

    .leader-content p{

        font-size:14px;
        line-height:1.8;
        max-width:100%;
        text-align:justify;

    }

}