/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }

    .ruins {
        background-size: 768px;
    }

    .mitologia-video {
        padding-top: 4rem;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }

    .mitologia-text .image {
        max-width: 350px;
    }

    .ruins {
        background-size: 992px;
    }

    .curadoria {
        padding-top: 4rem;
    }

    .curadoria .image .picture {
        max-width: 80%;
    }
}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }

    .title-main {
        font-size: 28px;
    }

    .title-main.title-lg {
        font-size: 36px;
        line-height: 46px;
    }

    .mitologia-text .image .detail,
    .mitologia-text .image .detail.bot,
    .curadoria .image .detail,
    .curadoria .image .detail.bot {
        display: block;
    }

    .ruins {
        background-size: 1200px;
    }

    .mitologia-video {
        padding-top: 6rem;
    }

    .curadoria {
        padding-top: 5rem;
    }

    .curadoria .image .picture {
        max-width: 100%;
    }

    .clube-bait {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .clube-bait img {
        max-width: 550px;
    }

    .clube-bait .title-box {
        margin-top: 5rem;
    }

    .clube-bait .form {
        margin-top: 5rem;
    }

    .mitologia-text .image .detail,
    .mitologia-text .image .detail.bot {
        width: 50px;
    }

}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }

    .ruins {
        background-size: 1500px;
    }

    .mitologia-video .wrapper {
        max-width: 980px;
    }

    .mitologia-video {
        padding-top: 7rem;
    }

    .curadoria {
        padding-top: 7rem;
    }

    #temas {
        margin-top: 7rem;
    }
}

/* xxl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1460px) {
    #media-query {
        /*black*/
        background-color: #000;
    }

    #clube-porque-participar .background {
        left: 0;
    }

    .ruins {
        margin-top: -125px;
        background-size: 1800px;
    }

    .mitologia-video {
        padding-top: 14rem;
    }

    .curadoria {
        padding-top: 10rem;
    }
}

@media (min-width: 1800px) {
    #media-query {
        background-color: #d7d7d7;
    }

    #clube-porque-participar .background {
        left: 0;
    }

    .ruins {
        background-size: 1920px;
    }

    .mitologia-video {
        padding-top: 17rem;
    }
}

@media (min-width: 1920px) {
    #media-query {
        background-color: #fbff17;
    }

    #clube-porque-participar .background {
        left: 0;
    }

    .ruins {
        background-size: cover;
    }

    .mitologia-video {
        padding-top: 17rem;
    }

    .mitologia-video .wrapper {
        max-width: 1120px;
    }
}

/*******************************************************************************
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) {
    .mitologia-text .image {
        width: 85% !important;
    }
}

/* 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) {
    .mitologia-text.container {
        max-width: 900px;
    }
}

/* 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) {
}