/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }

    #colecao-exclusiva .each {
        max-width: 160px;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }

    .clube-faixa img {
        max-width: 90%;
    }

    .clube-faixa .title-main {
        font-size: 22px;
    }

    #clube-curadoria .curadoria img {
        height: 350px;
    }

    #colecao-exclusiva .custom-container {
        padding: 0 1rem;
    }

    #colecao-exclusiva .each {
        max-width: 24%;
    }

    #colecao-exclusiva .each:nth-child(odd) {
        top: 20px;
    }
}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }

    .clube-text .image {
        max-width: 400px;
    }

    .clube-video .detail {
        width: 35px;
    }

    .clube-video .detail.left {
        left: -65px
    }

    .clube-video .detail.right {
        right: -65px
    }

    .clube-faixa .title-main {
        font-size: 26px;
    }

    #clube-porque-participar .background {
        left: calc(-575px + 30%);
    }

    #clube-curadoria .curadoria img {
        height: 375px;
    }

    #colecao-exclusiva .each {
        max-width: 16%;
    }

    .mitologia-video .detail.left {
        left: -45px
    }

    .mitologia-video .detail.right {
        right: -45px
    }

    .detail-bar-i {
        width: 40px;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }

    #clube-porque-participar .background {
        left: calc(-575px + 40%);
    }

    #clube-curadoria .curadoria img {
        height: 400px;
    }

    #colecao-exclusiva .custom-container {
        max-width: 1440px;
        margin: 0 auto;
    }

    .detail-bar-i {
        width: 50px;
    }
}

@media (min-width: 1460px) {
    #clube-porque-participar .background {
        left: 0;
    }
}

/*******************************************************************************
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) {}

/* 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) {}