/* =========================================
   FACULTY SECTION START
========================================= */

.faculty-section .container{

    max-width:1050px;

}

/* =========================================
   FACULTY SECTION
========================================= */

.faculty-section{

    padding:100px 0;

    background:#002147;

    position:relative;

    overflow:hidden;

}

/* =========================================
   LEFT DOTS
========================================= */

.faculty-section::before{

    content:"";

    position:absolute;

    left:40px;

    top:100px;

    width:90px;

    height:120px;

    background-image:radial-gradient(
        rgba(255,255,255,.25) 2px,
        transparent 2px
    );

    background-size:16px 16px;

}

/* =========================================
   RIGHT DOTS
========================================= */

.faculty-section::after{

    content:"";

    position:absolute;

    right:40px;

    top:100px;

    width:90px;

    height:120px;

    background-image:radial-gradient(
        rgba(255,255,255,.25) 2px,
        transparent 2px
    );

    background-size:16px 16px;

}

/* =========================================
   HEADING
========================================= */

.faculty-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px;

    position:relative;

    z-index:2;

}

.faculty-heading span{

    display:inline-block;

    background:rgba(255,180,0,.15);

    color:#ffb400;

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.faculty-heading h2{

    font-family:'Manrope',sans-serif;

    font-size:42px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:15px;

}

.faculty-heading p{

    font-size:17px;

    line-height:1.8;

    color:rgba(255,255,255,.80);

    max-width:700px;

    margin:auto;

}

/* =========================================
   GRID
========================================= */

.faculty-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    column-gap:15px;

    row-gap:15px;

    justify-items:center;

}