/*=====================================================
 Leadership Section
=====================================================*/

.leadership-section{

    background:#e9ebf0;
    padding:110px 0;

}

.leadership-container{

    width:min(1200px,92%);
    margin:auto;

}

/*=========================================
 Section Heading
=========================================*/


.section-tag{

    display:inline-block;
    color:#b18024;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:16px;

}


/*=========================================
 Founders
=========================================*/

.founders-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    max-width:900px;
    margin:0 auto;

}

.founder{

    text-align:center;

}

.founder img{

    width:240px;
    height:240px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #ffffff;

    box-shadow:0 12px 35px rgba(5,31,69,.12);

    margin-bottom:30px;

    transition:.3s;

}

.founder h3{

    color:#051f45;
    font-size:1.55rem;
    margin-bottom:10px;

}

.title{

    display:block;

    color:#b18024;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.9rem;

}

/*=========================================
 Divider
=========================================*/

.leadership-divider{

    width:90px;

    height:3px;

    background:#b18024;

    margin:70px auto 40px;

}

/*=========================================
 Summary
=========================================*/

.leadership-summary{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.leadership-summary p{

    color:#5a6178;

    font-size:1.1rem;

    line-height:1.9;

}

/*=========================================
 Button
=========================================*/

.leadership-button{

    text-align:center;

    margin-top:50px;

}

.btn-primary{

    display:inline-block;

    background:#051f45;

    color:#fff;

    padding:16px 36px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#b18024;

}

/* Tablet Landscape */
@media (max-width: 992px) {

    .leadership-section .leadership-button,
    .leadership-section .btn-primary {
        display: block;
        width: fit-content;
        min-width: 320px;
        max-width: 420px;
        margin: 0 auto;
        padding: 16px 32px;

        font-size: 1rem;
    }
}