/* Main container */
.product_delivery_container{
    padding: 80px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Product delivery step image (Because of plugin) */
.product_delivery_step > picture{
    width: 51%;
    height: auto;
    border-radius: 10px;
}

/* Image */
.product_delivery_image{
    width: 100%;
    height: auto;
}

/* Specific step */
.product_delivery_step{
    display: flex;
    gap: 100px;
    justify-content: center;
}

/* Purple line */
.purple_line_border{
    content: "";
    border: 1px solid var(--purple2);
    width: 209px;
}

/* Step title */
.product_delivery_title .h3{
    padding: 10px 0px 0px 20px;
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
}

/* Step informational text */
.product_delivery_title .body1{
    padding-left: 20px;
    padding-top: 5px;
    color: var(--grey1);
    width: 295px;
    display: inline-block;
}

@media screen and (max-width:1050px) {

    /* Main container */
    .product_delivery_container{
        padding: 80px 50px;
    }

    /* Specific step */
    .product_delivery_step{
        gap: 50px;
    }
}

@media screen and (max-width:767px) {

    /* Specific step */
    .product_delivery_step{
        flex-direction: column;
        gap:25px;
    }

    /* Main container */
    .product_delivery_container{
        padding: 50px 15px;
        align-items: start;
        gap: 40px;
    }

    /* Product delivery step image (Because of plugin) */
    .product_delivery_step > picture{
        width: 100%;
    }

    /* Specific step title */
    .product_delivery_title .h3{
        padding-left: 10px;
        padding-top: 10px;
        font-size: 16px;
        height: auto;
        width: 100%;
    }

    /* Specific step informational text */
    .product_delivery_title .body1{
        padding-left: 10px;
        font-size: 14px;
        width: 100%;
    }

    /* Purple line */
    .purple_line_border{
        width: 150px;
    }
}