.free-delivery-banner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #6200a8;
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 15px;
    box-sizing: border-box;
}

.delivery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

/* Left text */
.delivery-subtitle {
    flex: 0 0 auto;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    margin-right: 15px;
}

.delivery-subtitle span {
    display: block;
}

/* FREE DELIVERY */
.delivery-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: Arial, sans-serif;
    font-style: italic;
    font-weight: 900;
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1;
    margin-right: 5px;
}

.delivery-truck img {
    width: 80px;
    height: auto;
}

.delivery-title .free {
    color: #ffd500;
    margin-right: 12px;
}

.delivery-title .delivery {
    color: #fff;
}

/* Truck */
.delivery-truck {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}




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

@media (max-width: 992px) {}


/* =========================================
   MOBILE
========================================= */
@media only screen and (min-width: 1132px) {
    .delivery-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-right: 5px;
    }

    .delivery-subtitle{
        font-size:14px;
    }


}

@media only screen and (min-width: 1378px) {


      .delivery-title {
        font-size: clamp(22px, 6vw, 34px);
        margin-right: 5px;
    }

     .delivery-subtitle{
        font-size:15px;
    }

}


@media only screen and (max-width: 667px) {
    .delivery-subtitle {
        font-size: 12px;
        margin-right: 8px;
        font-weight:600;
    }

    .free-delivery-banner{
        border-radius: 8px;
    }

    .delivery-title .free {
        color: #ffd500;
        margin-right: 5px;
    }

    .delivery-title {
        font-size: clamp(26px, 4vw, 32px);
    }

    .delivery-truck img {
        width: 58px;
        height: auto;
    }

}

@media (max-width: 400px) {

    .delivery-subtitle {
        font-size: 11px;
    }

    .delivery-title .free {
        color: #ffd500;
        margin-right: 5px;
    }

    .delivery-title {
        font-size: clamp(20px, 4vw, 32px);
    }

    .delivery-truck img {
        width: 54px;
        height: auto;
    }

}