/* ===================================
   EXPLORE SHOPPING
=================================== */

.explore-shopping{

    padding:60px 0;

}

.explore-box{

    background:linear-gradient(135deg,#198754,#28a745);

    border-radius:25px;

    padding:60px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    color:#fff;

    overflow:hidden;

}

.explore-content{

    width:50%;

}

.explore-tag{

    display:inline-block;

    background:rgba(255,255,255,.18);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

}

.explore-content h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.explore-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:30px;

}

.explore-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#198754;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.explore-btn:hover{

    background:#111;

    color:#fff;

}

.explore-image{

    width:45%;

    text-align:right;

}

.explore-image img{

    max-width:100%;

    max-height:320px;

}

/* ===========================
   Tablet
=========================== */

@media(max-width:991px){

.explore-box{

    flex-direction:column;

    text-align:center;

    padding:40px 25px;

}

.explore-content{

    width:100%;

}

.explore-image{

    width:100%;

    margin-top:35px;

    text-align:center;

}

}

/* ===========================
   Mobile
=========================== */

@media(max-width:576px){

.explore-shopping{

    padding:35px 0;

}

.explore-box{

    border-radius:18px;

    padding:30px 20px;

}

.explore-content h2{

    font-size:28px;

}

.explore-content p{

    font-size:15px;

}

.explore-image img{

    max-height:220px;

}

}