/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }

    .title-font {
        font-size: 28px !important;
        line-height: 35px;
    }

    #catalog-category .text {
        font-size: 20px;
    }

    #product-main .slogan {
        max-width: 225px;
        text-align: right;
    }

    #instagram-feed .response > * {
        display: block;
    }

    #instagram-feed .response > *:nth-child(n+10) {
        display: none;
    }

}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }

    body {
        padding-top: 111px;
    }

    #header #logo {
        width: 250px;
    }

    .fixed-menu-scroll #header #logo {
        width: 150px;
        padding: .25rem 0;
    }

    .fixed-menu-scroll #header-top-row {
        display: none !important;
    }

    #product-main .badges {
        position: relative;
        top: 60px;
    }

    #product-main .product-image img {
        max-width: 95%;
    }

    #product-main .main-image {
        position: absolute;
        top: 80px;
        left: 0;
        transform: translateY(-100%);
    }

    #product-highlight #light {
        height: 200px;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }

    #product-main .product-image img {
        max-width: 90%;
    }

}

/*******************************************************************************
Media queries that go in the other direction (the given screen size or smaller)
*******************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* sm */
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    #exportacao {
        background-size: 765px;
        background-position: -250px 0;
    }

    #instagram-feed .response > *:nth-child(n+7) {
        display: none;
    }
}

/* md */
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* lg */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
}

/************************************************************************
There are also media queries and mixins for targeting a single
segment of screen sizes using the minimum and maximum breakpoint widths.
*************************************************************************/

/* xs */
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* sm */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* md */
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* lg */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* xl */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}