/* ===========================
   OFFER BANNER
=========================== */

.offer-banner{
    padding:90px 0;
    background:#0B2A6B;
    overflow:hidden;
}

.offer-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.offer-left{
    width:50%;
}

.offer-tag{
    display:inline-block;
    background:#ffffff20;
    color:#FFD54A;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:25px;
}

.offer-left h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

.offer-left h2 span{
    color:#FFD54A;
}

.offer-left p{
    font-size:18px;
    color:#d8dff3;
    line-height:1.8;
    margin-bottom:30px;
}

.offer-left ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.offer-left ul li{
    color:#fff;
    font-size:18px;
    margin-bottom:15px;
    font-weight:500;
}

.offer-btn{
    display:inline-block;
    padding:18px 42px;
    background:#E0A800;
    color:#fff;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}

.offer-btn:hover{
    background:#fff;
    color:#0B2A6B;
    transform:translateY(-3px);
}

.offer-right{
    width:50%;
    position:relative;
    text-align:center;
}

.offer-right img{
    width:100%;
    max-width:650px;
    display:block;
    margin:auto;
}

.discount-badge{
    position:absolute;
    top:10px;
    right:30px;
    width:130px;
    height:130px;
    border-radius:50%;
    background:#FFD54A;
    color:#0B2A6B;
    font-size:34px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    line-height:1.1;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.offer-wrapper{
    flex-direction:column;
    gap:50px;
}

.offer-left,
.offer-right{
    width:100%;
}

.offer-left{
    text-align:center;
}

.offer-left h2{
    font-size:40px;
}

.offer-left ul{
    display:inline-block;
    text-align:left;
}

.offer-right img{
    max-width:500px;
}

.discount-badge{
    display:none;
}

}

@media(max-width:576px){

.offer-banner{
    padding:70px 0;
}

.offer-left h2{
    font-size:32px;
}

.offer-left p{
    font-size:16px;
}

.offer-left ul li{
    font-size:16px;
}

.offer-btn{
    width:100%;
    text-align:center;
}

.discount-badge{
    width:85px;
    height:85px;
    font-size:22px;
}

}