/* =========================================
   FEATURE HIGHLIGHT SECTION
========================================= */

.feature-section{

margin-top:-40px;

position:relative;

z-index:100;
}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

background:#062850;

border-radius:10px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.feature-box{

display:flex;

align-items:center;
gap:18px;


padding:18px 25px;
min-height:110px;

border-right:1px solid rgba(255,255,255,.1);

transition:.3s;
}

.feature-box:last-child{
border-right:none;
}

.feature-box:hover{

background:#00336d;
}

.feature-icon{

font-size:28px;

min-width:40px;

color:#ffb400;

}

.feature-content h3{

color:#ffffff;

font-size:18px;

margin-bottom:5px;
}

.feature-content p{

color:#d9d9d9;

font-size:13px;

line-height:1.5;
}
