@media (min-width: 420px) {
    #media-query {
        background-color: var(--indigo);
    }
}

/* Small devices (landscape phones, 576px and up)*/
/* sm */
@media (min-width: 576px) {
    #media-query {
        background-color: var(--green);
    }

    .section-1 {
        width: 120px;
    }

    .section-2 {
        width: 85px;
    }

    .section-3 {
        width: 120px;
    }

    #text-historia .title {
        font-size: 24px;
        text-align: center;
    }

    #text-historia .text {
        font-size: 18px;
    }
}

/* Medium devices (tablets, 768px and up)*/
/* md */
@media (min-width: 768px) {
    #media-query {
        background-color: var(--orange);
    }

    .box {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-2 {
        width: 95px;
    }

    .section-3 {
        width: 130px;
    }

    #overlay-sobre .title {
        font-size: 30px;
    }

    #overlay-sobre .subtitle {
        font-size: 24px;
    }

    #overlay-sobre .btn {
        font-size: 18px;
    }

    #text-historia {
        text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.75), 0 0 4px rgba(255, 255, 255, 1)
    }

    #processo-criacao .tooltips,
    #processo-criacao .each:nth-child(n+3) .tooltips {
        left: 50%;
        width: 90%;
        transform: translateX(-50%);
    }

    #curadoria .text-1 {
        font-size: 22px;
        text-align: left;
    }

    #curadoria .title-2 {
        font-size: 32px;
    }

    #curadoria .text-2 {
        font-size: 20px;
    }

    .spark-0 {
        top: 7px;
        left: 40%;
        animation: spark 2.4s infinite;
    }

    .spark-1 {
        top: 12px;
        left: 44%;
        animation: spark 2.4s infinite;
    }

    .spark-2 {
        top: 24px;
        left: 41%;
        animation: spark 2.4s 0.3s linear infinite;
    }

    /* style spark animation */
    @keyframes spark {
        15% {
            height: 0px;
            width: 0px;
            transform: scale(0) rotate(0deg);
        }

        30% {
            height: 6px;
            width: 6px;
            transform: scale(0) rotate(45deg);
        }

        45% {
            height: 8px;
            width: 8px;
            transform: scale(0) rotate(67.5deg);
        }

        50% {
            transform: scale(1) rotate(90deg);
            height: 10px;
            width: 10px;
        }

        65% {
            transform: scale(1) rotate(135deg);
        }

        80% {
            transform: scale(1) rotate(157.5deg);
        }

        100% {
            transform: scale(1) rotate(180deg);
        }
    }
}

/* Large devices (desktops, 992px and)*/
/* lg */
@media (min-width: 992px) {
    #media-query {
        background-color: var(--blue);
    }

    #overlay-sobre .title {
        font-size: 40px;
    }

    #overlay-sobre .subtitle {
        font-size: 30px;
    }

    #overlay-sobre .btn {
        font-size: 20px;
    }

    #text-historia .title {
        text-align: left;
        font-size: 24px;
    }

    #text-historia .text {
        font-size: 19px;
    }

    #text-historia .bg {
        background-size: 50%;
    }

    #partner-home .tooltips {
        font-size: 15px;
    }

    #curadoria .title-2 {
        font-size: 34px;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
/* xl */
@media (min-width: 1200px) {
    #media-query {
        background-color: var(--dark);
    }

    .container {
        max-width: 1220px;
    }

    #overlay-sobre .title {
        font-size: 50px;
    }

    #overlay-sobre .subtitle {
        font-size: 40px;
    }
}

@media (min-width: 1500px) {
    #media-query {
        background-color: var(--dark);
    }

    .container {
        max-width: 1220px;
    }

    #overlay-sobre .title {
        font-size: 50px;
    }

    #overlay-sobre .subtitle {
        font-size: 40px;
    }

    #text-historia .title {
        font-size: 26px;
    }

}

/**
Media queries that go in the other direction (the given screen size or smaller)
*/

/* Extra small devices (portrait phones, less than 576px) */
/* xs */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
/* sm */
@media (max-width: 767.98px) {
}

/* Medium devices (tablets, less than 992px) */
/* md */
@media (max-width: 991.98px) {
}

/* Large devices (desktops, less than 1200px) */
/* lg */
@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.
*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    #nav-menu > .nav-item > .nav-link {
        padding: 0.5rem !important;
        text-align: center;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}