/*==================================================
    OFFICE LOCATIONS
==================================================*/

.office-locations{

    padding:100px 0;

    background:#ffffff;

}

/*==================================================
    SECTION HEADER
==================================================*/

.office-locations .section-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.office-locations .section-badge{

    display:inline-block;

    padding:8px 20px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.office-locations .section-header h2{

    font-size:42px;

    font-weight:800;

    color:#1f2937;

    margin-bottom:18px;

    line-height:1.3;

}

.office-locations .section-header p{

    font-size:17px;

    line-height:1.9;

    color:#6b7280;

}

/*==================================================
    OFFICE GRID
==================================================*/

.office-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==================================================
    OFFICE CARD
==================================================*/

.office-card{

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:35px 30px;

    transition:.35s;

    display:flex;

    flex-direction:column;

    height:100%;

}

.office-card:hover{

    transform:translateY(-6px);

    border-color:#00A651;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/*==================================================
    OFFICE ICON
==================================================*/

.office-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#e8f8ef;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

/*==================================================
    TITLE
==================================================*/

.office-card h3{

    font-size:24px;

    font-weight:700;

    color:#1f2937;

    margin-bottom:25px;

}

/*==================================================
    DETAILS LIST
==================================================*/

.office-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

.office-card ul li{

    font-size:15px;

    line-height:1.8;

    color:#6b7280;

}

.office-card ul li strong{

    display:block;

    color:#1f2937;

    font-size:16px;

    margin-bottom:4px;

}
/*==================================================
    BUTTON
==================================================*/

.office-card .btn{

    margin-top:auto;

    width:100%;

    padding:14px 20px;

    border-radius:10px;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.office-card .btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,166,81,.18);

}

/*==================================================
    LARGE DESKTOP
==================================================*/

@media (min-width:1400px){

    .office-locations{

        padding:120px 0;

    }

}

/*==================================================
    LAPTOP
==================================================*/

@media (max-width:1200px){

    .office-grid{

        gap:25px;

    }

    .office-card{

        padding:30px 25px;

    }

}

/*==================================================
    TABLET
==================================================*/

@media (max-width:992px){

    .office-locations{

        padding:80px 0;

    }

    .office-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
    MOBILE
==================================================*/

@media (max-width:768px){

    .office-grid{

        grid-template-columns:1fr;

    }

    .office-locations .section-header{

        margin-bottom:45px;

    }

    .office-locations .section-header h2{

        font-size:32px;

    }

}

/*==================================================
    SMALL MOBILE
==================================================*/

@media (max-width:576px){

    .office-locations{

        padding:65px 0;

    }

    .office-locations .section-header h2{

        font-size:28px;

    }

    .office-locations .section-header p{

        font-size:15px;

    }

    .office-card{

        padding:22px;

        border-radius:18px;

    }

    .office-icon{

        width:60px;

        height:60px;

        font-size:24px;

        margin-bottom:20px;

    }

    .office-card h3{

        font-size:22px;

        margin-bottom:20px;

    }

    .office-card ul{

        gap:16px;

    }

    .office-card ul li{

        font-size:14px;

    }

    .office-card .btn{

        font-size:14px;

    }

}