/* Shop logos container */
.where_to_buy_shops_container{
    padding: 80px 100px 0px 100px;
}

/* Shop logo title text + logos */
.where_to_buy_shops{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Shop logo  */
.shops_title_text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

/* Shop logo title black text */
.shops_title_text .h2{
    text-align: center;
}

/* Shop logo title gray text */
.shops_title_text .body1{
    max-width: 650px;
    width: 100%;
    text-align: center;
    color: var(--grey1);
}

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

    /* Shop logos container */
    .where_to_buy_shops_container{
        padding: 80px 50px 0px 50px;
    }
}

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

    /* Shop logos container */
    .where_to_buy_shops_container{
        padding: 30px 15px 0px 15px;
    }

    /* Shop logo title text + logos */
    .where_to_buy_shops{
        gap: 40px;
    }

    /* Shop logo  */
    .shops_title_text{
        gap: 7px;
    }

    /* Shop logo title black text */
    .shops_title_text .h2{
        font-size: 18px;
        line-height: 20px;
    }

    /* Shop logo title gray text */
    .shops_title_text .body1{
        font-size: 14px;
        line-height: 21px;
    }
}