/* First section container */
.help_with_products_container{
    padding: 80px 100px;
    display: flex;
    gap: 80px;
}

/* Section title */
.help_with_products_title{
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 35px;
}

/* Section title text beneath */
.help_with_products_title .body1{
    color: var(--grey1);
}

/* Explanatory text */
.help_with_products_explanation{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
    width: inherit;
}

/* Specifc explanatory div */
.product_help_div{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Explanation text */
.product_help_div > span{
    text-wrap: balance;
}

/* Purple circle */
.product_help_purple_circle{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--purple1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white1);
    font-size: 16px;
    font-weight: 500;
}

/* Slider */
.help_slider_informational{
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 660px;
    justify-content: center;
}

/* Slider title */
.help_slider_title{
    color: var(--grey1);
}

/* Slider images */
.shop_items_slider img{
    max-height: 50px;
    width: auto;
}

/* Slider div */
.help_slider{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Slider */
.help_slider .slick-slide{
    margin: 0px 40px;
}

/* Shop logo div */
.help_shops_mobile{
    display: none;
}

/* Button */
#send-form-btn{
    width: 100%;
}

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

    /* Slider + explanation container */
    .help_slider_informational{
        width: 560px;
    }
}

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

    /* Slider + explanation container */
    .help_slider_informational{
        width: 480px;
    }
}

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

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

    /* Slider + explanation container */
    .help_slider_informational{
        gap: 0px;
    }
}

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

    /* Slider + explanation container */
    .help_slider_informational{
        width: 380px;
    }

    /* Main section container */
    .help_with_products_container{
        gap: 40px;
    }
}

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

    /* Slider + explanation container */
    .help_slider_informational{
        width: 300px;
    }
}

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

    /* Explanation container */
    .help_with_products_title{
        margin-bottom: 30px;
    }

    /* Explanation container title*/
    .help_with_products_title .h2{
        font-size: 18px;
        line-height: 20px;
    }

    /*  Explanation container text */
    .help_with_products_title .body1{
        font-size: 14px;
    }

    /* Explanation text */
    .help_with_products_explanation{
        gap: 20px;
        width: 100%;
        margin-bottom: 0px;
    }

    /* Specific explanation */
    .product_help_div{
        gap: 10px;
        align-items: start;
    }

    /* Explanation text */
    .product_help_div span{
        font-size: 14px;
        text-wrap: unset;
    }

    /* Purple circle */
    .product_help_purple_circle{
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    /* Main section container */
    .help_with_products_container{
        padding: 30px 20px;
        flex-direction: column;
        gap: 35px;
    }

    /* Slider */
    .help_slider{
        display: none;
    }

    /* Explanation container */
    .help_slider_informational{
        order: 1;
        width: 100%;
    }

    /* Form container */
    .help_with_products_container .form_container{
        order: 2;
    }

    /* Shop logo container */
    .help_shops_mobile{
        order: 3;
    }

    /* Shop logo container */
    .help_shops_mobile{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* Shop logo title */
    .help_slider_title{
        text-align: center;
        font-size: 12px;
    }

}

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

    /* Explanation text */
    .help_with_products_explanation{
        width: 100%;
    }
}