/*=========================================
            SAFETY
=========================================*/

.safety{
    background:#fff;
    padding:120px 0;
}

/*=========================
      SECTION TITLE
=========================*/

.safety .section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.safety .section-tag{
    display:inline-block;
    color:#D4AF37;
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.safety .section-title h2{
    font-size:52px;
    color:#111;
    margin-bottom:20px;
    line-height:1.2;
}

.safety .section-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*=========================
        LAYOUT
=========================*/

.safety-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

/*=========================
        LEFT
=========================*/

.safety-left{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.safety-card{
    display:flex;
    gap:18px;
    padding:28px;
    background:#fff;
    border-radius:18px;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.safety-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 18px 45px rgba(212,175,55,.18);
}

.safety-card i{
    font-size:34px;
    color:#D4AF37;
    margin-top:5px;
    min-width:40px;
}

.safety-card h3{
    color:#111;
    font-size:22px;
    margin-bottom:10px;
}

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

/*=========================
        RIGHT
=========================*/

.safety-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*=========================
      SAFETY BANNER
=========================*/

/*=========================================
          SAFETY BANNER
=========================================*/

.safety-image{

    width:100%;

    border-radius:18px;

    overflow:hidden;

    border:3px solid #D4AF37;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    background:#ffffff;

}

.safety-image img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

    object-position:center;

}


/*=========================
        TABLET
=========================*/

@media(max-width:992px){

    .safety-image{

        width:100%;

    }

    .safety-image img{

        width:100%;

        height:auto;

    }

}


/*=========================
        MOBILE
=========================*/

@media(max-width:768px){

    .safety-image{

        border-radius:15px;

        border-width:2px;

    }

    .safety-image img{

        width:100%;

        height:auto;

    }

}


/*=========================
        SMALL MOBILE
=========================*/

@media(max-width:480px){

    .safety-image{

        border-radius:12px;

    }

}

.commitment-box{
    background:#11161F;
    color:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.commitment-box h3{
    color:#D4AF37;
    font-size:22px;
    margin-bottom:15px;
}

.commitment-box p{
    color:#D6D6D6;
    line-height:1.8;
    font-size:15px;
}

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

@media(max-width:992px){

.safety-container{
    grid-template-columns:1fr;
}

.safety-left{
    grid-template-columns:1fr;
}

.safety-right{
    max-width:350px;
    margin:0 auto;
}

}

@media(max-width:768px){

.safety{
    padding:80px 0;
}

.safety .section-title h2{
    font-size:40px;
}

.safety-card{
    padding:22px;
}

}

@media(max-width:480px){

.safety .section-title h2{
    font-size:32px;
}

.safety-card{
    flex-direction:column;
}

.safety-card i{
    font-size:30px;
}

.commitment-box{
    padding:20px;
}

}
