/* sm */
/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    #media-query {
        /*green*/
        background-color: #28a745;
    }
    #text-video .argonalta-1 {
        width: 205px;
        left: -150px;
        bottom: -97px;
    }
    #text-video .argonalta-2 {
        width: 175px;
        right: -145px;
    }

    .title-main {
        font-size: 28px;
    }
    .title-main.title-lg {
        font-size: 32px;
    }
    .title-main.title-xl {
        font-size: 36px;
    }

    #marca-paginas {
        padding-bottom: 180px;
    }
}

/* md */
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    #media-query {
        /*orange*/
        background-color: #fd7e14;
    }

    #text-video .argonalta-1 {
        width: 265px;
        left: -190px;
        bottom: -108px;
    }

    #text-video .argonalta-2 {
        width: 220px;
        right: -180px;
        bottom: -95px;
    }

    .btn-cta {
        font-size: 20px;
    }
    #banner-secondary .joia {
        width: 200px;
    }

    #banner-secondary .text {
        font-size: 28px;
    }
    #modulos .ornamento-1 img,
    #modulos .ornamento-2 img {
        width: 110%;
        transform: translateX(-5%);
    }

    #modulos .ornamento-2 img {
        transform: translateX(-5%) scale(-1);
        bottom: -30px;
    }

    #paper .bg {
        background-image: url('../images/paper.avif');
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    #marca-paginas {
        padding-bottom: 220px;
    }
}

/* lg */
/* Large devices (desktops, 992px and)*/
@media (min-width: 992px) {
    #media-query {
        /*blue*/
        background-color: #007bff;
    }
    .title-main {
        font-size: 32px;
    }
    .title-main.title-lg {
        font-size: 36px;
    }
    .title-main.title-xl {
        font-size: 40px;
    }
    #text-video .argonalta-1 {
        width: 340px;
        left: -239px;
        bottom: -125px;
    }
    #text-video .argonalta-2 {
        width: 288px;
        right: -227px;
        bottom: -112px;
    }
    #lareira .ol {
        background-color: rgba(0, 0, 0, 0.2);
    }
    #marca-paginas {
        padding-bottom: 320px;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    #media-query {
        /*red*/
        background-color: #dc3545;
    }
}

/* xxl */
@media (min-width: 1460px) {
    #media-query {
        /*cyan*/
        background-color: #2aeaff;
    }
    #text-video .argonalta-1 {
        width: 385px;
        left: -260px;
        bottom: -125px;
    }
    #text-video .argonalta-2 {
        width: 320px;
        right: -245px;
        bottom: -112px;
    }
}

/*******************************************************************************
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) {
    #marca-paginas .each:nth-child(3n + 2) {
        position: relative;
        top: 20px;
    }
}

/* sm */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    #marca-paginas .each:nth-child(3n + 2) {
        position: relative;
        top: 20px;
    }
}

/* md */
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #marca-paginas .each:nth-child(2n + 2) {
        position: relative;
        top: 20px;
    }
}

/* lg */
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    #marca-paginas .each {
        width: 20% !important;
        max-width: 20% !important;
    }

    #marca-paginas .each:nth-child(5n + 2),
    #marca-paginas .each:nth-child(5n + 4) {
        position: relative;
        top: 20px;
    }
}

/* xl */
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #marca-paginas .each:nth-child(even) {
        position: relative;
        top: 20px;
    }
}
