/*==================================================
HOME DIFFERENCE
==================================================*/

.home-difference{
    padding:100px 0;
    background:#F7F3ED;
}

.home-difference .container{
    width:min(1400px,92%);
    margin:auto;
}

/*==================================================
SECTION HEADER
==================================================*/

.home-difference .section-header{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.home-difference .section-subtitle{
    display:inline-block;
    margin-bottom:18px;
    color:#B18E49;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.home-difference h2{
    font-family:"Newsreader",serif;
    font-size:52px;
    color:#12266B;
    margin-bottom:20px;
}

.home-difference .section-header p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/*==================================================
GRID
==================================================*/

.difference-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*==================================================
CARD
==================================================*/

.difference-card{
    /* background:#fff; */
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    /* box-shadow:0 12px 35px rgba(0,0,0,.05); */
}

.difference-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.difference-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#12266B;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}
.difference-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F2EFE9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.difference-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.difference-card h3{
    font-family:"Newsreader",serif;
    font-size:30px;
    color:#12266B;
    margin-bottom:18px;
}

.difference-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.difference-grid{
    grid-template-columns:1fr;
}

.home-difference h2{
    font-size:42px;
}

}

@media(max-width:768px){

.home-difference{
    padding:70px 0;
}

.home-difference h2{
    font-size:34px;
}

.home-difference .section-header p{
    font-size:16px;
}

.difference-card{
    padding:35px 25px;
}

.difference-card h3{
    font-size:26px;
}

.difference-icon{
    width:70px;
    height:70px;
    font-size:30px;
}

}