@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;
    }

    body {
        padding-top: 86px;
    }

    #header #logo {
        width: 350px;
    }
}

/* 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;
    }

    body {
        padding-top: 107px;
    }
}

/* 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) {
}