@media only screen and (max-width: 768px) {

    .mobile-color-black{
        color: black;    
    }

    .mobile-view,
    .mobile-d-block,
    .mobile-grid-1.mobile-d-block {
        display: block !important;
    }
    .mobile-view.grid-12 {
        display: grid !important;
    }

    .flex.mobile-view,
    .mobile-flex {
        display: flex !important;
    }
    .desktop-view {
        display: none !important;
    }

    .mobile-align-left {
        text-align: left;
    }
    .mobile-align-center {
        text-align: center;
    }
    .mobile-align-right {
        text-align: right;
    }
    

    .mobile-column_count-2 {
        column-count: 2;
    }
    .mobile-column_count-1 {
        column-count: 1;
    }

    .mobile-grid-12 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    .mobile-grid-9 {
        display: grid;
        grid-template-columns: repeat(9, 1fr);
    }
    .mobile-grid-8 {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
    }
    .mobile-grid-7 {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }
    .mobile-grid-6 {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }
    .mobile-grid-5 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
    .mobile-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .mobile-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .mobile-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-grid-1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .mobile-grid-span-1 {
        grid-column: span 1;
    }

    .mobile-grid-span-2 {
        grid-column: span 2;
    }
    
    .mobile-grid-span-3 {
        grid-column: span 3;
    }

    .mobile-grid-span-4 {
        grid-column: span 4;
    }

    .mobile-grid-span-5 {
        grid-column: span 5;
    }

    .mobile-grid-span-6 {
        grid-column: span 6;
    }

    .mobile-grid-span-7 {
        grid-column: span 7;
    }

    .mobile-grid-span-8 {
        grid-column: span 8;
    }

    .mobile-grid-span-9 {
        grid-column: span 9;
    }

    .mobile-grid-span-10 {
        grid-column: span 10;
    }

    .mobile-grid-span-11 {
        grid-column: span 11;
    }

    .mobile-grid-span-12 {
        grid-column: span 12;
    }

    .mobile-p-absolute {
        position: absolute;
    }
    .mobile-p-relative {
        position: relative;
    }

    /* MARGINS - PADDINGS */
    
    .mobile-gap-0 {
        gap: 0;
    }
    .mobile-gap-0_3em {
        gap: 0.3em;
    }
    .mobile-gap-0_5em {
        gap: 0.5rem;
    }
    .mobile-gap-0_8em {
        gap: 0.8rem;
    }
    .mobile-gap-1em {
        gap: 1em;
    }
    .mobile-gap-2em {
        gap: 2em;
    }
    .mobile-gap-3em {
        gap: 3em;
    }
    .mobile-gap-4em {
        gap: 4em;
    }
    .mobile-gap-5em {
        gap: 5em;
    }

    .mobile-gap-10 {
        gap: 2.4vw;
    }
    .mobile-gap-15 {
        gap: 3.6vw;
    }
    .mobile-gap-20 {
        gap: 4.8vw;
    }
    .mobile-gap-30 {
        gap: 7.2vw;
    }
    .mobile-gap-40 {
        gap: 9.7vw;
    }
    .mobile-gap-50 {
        gap: 12vw;
    }
    .mobile-gap-100 {
        gap: 24vw;
    }

    .mobile-w-fit-content {
        width: fit-content;
    }

    .mobile-w-25 {
        width: 25%;
    }
    .mobile-w-30 {
        width: 30%;
    }
    .mobile-w-33 {
        width: 33.33%;
    }
    .mobile-w-40 {
        width: 50%;
    }
    .mobile-w-45 {
        width: 45%;
    }
    .mobile-w-50 {
        width: 50%;
    }
    .mobile-w-55 {
        width: 55%;
    }
    .mobile-w-60 {
        width: 60%;
    }
    .mobile-w-66 {
        width: 66.66%;
    }
    .mobile-w-70 {
        width: 70%;
    }
    .mobile-w-75 {
        width: 75%;
    }
    .mobile-w-80 {
        width: 80%;
    }
    .mobile-w-85 {
        width: 85%;
    }
    .mobile-w-90 {
        width: 90%;
    }
    .mobile-w-95 {
        width: 95%;
    }
    .mobile-w-100 {
        width: 100%;
    }
    .mobile-w-max-content {
        width: max-content;
    }

    .mobile-m-auto {
        margin: auto;
    }
    .mobile-ml-auto {
        margin-left: auto;
    }

    .mobile-mb-0 {
        margin-bottom: 0;
    }
    .mobile-mb-0_2em {
        margin-bottom: 0.2em;
    }
    .mobile-mb-0_3em {
        margin-bottom: 0.3em;
    }
    .mobile-mb-0_5em {
        margin-bottom: 0.5em;
    }
    .mobile-mb-0_8em {
        margin-bottom: 0.8em;
    }
    .mobile-mb-1em {
        margin-bottom: 1em;
    }

    .mobile-mb-1_5em {
        margin-bottom: 1.5em;
    }
    .mobile-mb-2em {
        margin-bottom: 2em;
    }
    .mobile-mb-3em {
        margin-bottom: 3em;
    }
    .mobile-mb-4em {
        margin-bottom: 4em;
    }

    .mobile-mb-5 {
        margin-bottom: 1.2vw;
    }
    .mobile-mb-10 {
        margin-bottom: 2.4vw;
    }
    .mobile-mb-15 {
        margin-bottom: 3.6vw;
    }
    .mobile-mb-20 {
        margin-bottom: 4.8vw;
    }
    .mobile-mb-30 {
        margin-bottom: 7.2vw;
    }
    .mobile-mb-40 {
        margin-bottom: 9.7vw;
    }
    .mobile-mb-50 {
        margin-bottom: 12vw;
    }
    .mobile-mb-60 {
        margin-bottom: 14.5vw;
    }
    .mobile-mb-70 {
        margin-bottom: 16.9vw;
    }
    .mobile-mb-80 {
        margin-bottom: 19.3vw;
    }
    .mobile-mb-90 {
        margin-bottom: 21.7vw;
    }
    .mobile-mb-100 {
        margin-bottom: 24.2vw;
    }

    .mobile-mt-0 {
        margin-top: 0;
    }
    .mobile-mt-0_5em {
        margin-top: 0.5em;
    }
    .mobile-mt-1em {
        margin-top: 1em;
    }
    .mobile-mt-1_5em {
        margin-top: 1.5em;
    }
    .mobile-mt-2em {
        margin-top: 2em;
    }
    .mobile-mt-3em {
        margin-top: 3em;
    }
    .mobile-mt-3_5em {
        margin-top: 3.5em;
    }
    .mobile-mt-4em {
        margin-top: 4em;
    }
    .mobile-mt-5em {
        margin-top: 5em;
    }

    .mobile-mt-5 {
        margin-top: 1.2vw;
    }
    .mobile-mt-10 {
        margin-top: 2.4vw;
    }
    .mobile-mt-15 {
        margin-top: 3.6vw;
    }
    .mobile-mt-20 {
        margin-top: 4.8vw;
    }
    .mobile-mt-30 {
        margin-top: 7.2vw;
    }
    .mobile-mt-40 {
        margin-top: 9.7vw;
    }
    .mobile-mt-50 {
        margin-top: 12vw;
    }
    .mobile-mt-60 {
        margin-top: 14.5vw;
    }
    .mobile-mt-70 {
        margin-top: 16.9vw;
    }
    .mobile-mt-80 {
        margin-top: 19.3vw;
    }
    .mobile-mt-90 {
        margin-top: 21.7vw;
    }
    .mobile-mt-100 {
        margin-top: 24.2vw;
    }

    .mobile-mr-auto {
        margin-right: auto;
    }
    .mobile-mr-0 {
        margin-right: 0;
    }
    .mobile-mr-0_5em {
        margin-right: 0.5em;
    }
    .mobile-mr-1em {
        margin-right: 1em;
    }
    .mobile-mr-2em {
        margin-right: 2em;
    }
    .mobile-mr-3em {
        margin-right: 3em;
    }
    .mobile-mr-4em {
        margin-right: 4em;
    }

    .mobile-mr-5 {
        margin-right: 1.2vw;
    }
    .mobile-mr-10 {
        margin-right: 2.4vw;
    }
    .mobile-mr-15 {
        margin-right: 3.6vw;
    }
    .mobile-mr-20 {
        margin-right: 4.8vw;
    }
    .mobile-mr-30 {
        margin-right: 7.2vw;
    }
    .mobile-mr-40 {
        margin-right: 9.7vw;
    }
    .mobile-mr-50 {
        margin-right: 12vw;
    }
    .mobile-mr-60 {
        margin-right: 14.5vw;
    }
    .mobile-mr-70 {
        margin-right: 16.9vw;
    }
    .mobile-mr-80 {
        margin-right: 19.3vw;
    }
    .mobile-mr-90 {
        margin-right: 21.7vw;
    }
    .mobile-mr-100 {
        margin-right: 24.2vw;
    }

    .mobile-mt-auto {
        margin-top: auto;
    }
    .mobile-mb-auto {
        margin-bottom: auto;
    }

    .mobile-p-10 {
        padding: 2.4vw;
    }

    .mobile-p-30 {
        padding: 7.2vw;
    }
    .mobile-p-40 {
        padding: 9.7vw;
    }

    .mobile-ml-0 {
        margin-left: 0;
    }
    .mobile-ml-0_5em {
        margin-left: 0.5em;
    }
    .mobile-ml-1em {
        margin-left: 1em;
    }

    .mobile-ml-5 {
        margin-left: 1.2vw;
    }
    .mobile-ml-10 {
        margin-left: 2.4vw;
    }
    .mobile-ml-15 {
        margin-left: 3.6vw;
    }
    .mobile-ml-20 {
        margin-left: 4.8vw;
    }
    .mobile-ml-30 {
        margin-left: 7.2vw;
    }
    .mobile-ml-40 {
        margin-left: 9.7vw;
    }
    .mobile-ml-50 {
        margin-left: 12vw;
    }
    .mobile-ml-60 {
        margin-left: 14.5vw;
    }
    .mobile-ml-70 {
        margin-left: 16.9vw;
    }
    .mobile-ml-80 {
        margin-left: 19.3vw;
    }
    .mobile-ml-90 {
        margin-left: 21.7vw;
    }
    .mobile-ml-100 {
        margin-left: 24.2vw;
    }

    .mobile-pt-0 {
        padding-top: 0;
    }
    .mobile-pt-0_5em {
        padding-top: 0.5em;
    }
    .mobile-pt-1em {
        padding-top: 1em;
    }
    .mobile-pt-1_6em {
        padding-top: 1.6em;
    }
    .mobile-pt-2em {
        padding-top: 2em;
    }
    .mobile-pt-3em {
        padding-top: 3em;
    }
    .mobile-pt-4em {
        padding-top: 4em;
    }
    .mobile-pt-5em {
        padding-top: 5em;
    }

    .mobile-pt-5 {
        padding-top: 1.2vw;
    }
    .mobile-pt-10 {
        padding-top: 2.4vw;
    }
    .mobile-pt-15 {
        padding-top: 3.6vw;
    }
    .mobile-pt-20 {
        padding-top: 4.8vw;
    }
    .mobile-pt-24 {
        padding-top: 5.8vw;
    }
    .mobile-pt-30 {
        padding-top: 7.2vw;
    }
    .mobile-pt-40 {
        padding-top: 9.7vw;
    }
    .mobile-pt-50 {
        padding-top: 12vw;
    }
    .mobile-pt-60 {
        padding-top: 14.5vw;
    }
    .mobile-pt-70 {
        padding-top: 16.9vw;
    }
    .mobile-pt-80 {
        padding-top: 19.3vw;
    }
    .mobile-pt-90 {
        padding-top: 21.7vw;
    }
    .mobile-pt-100 {
        padding-top: 24.2vw;
    }

    .mobile-pt-auto {
        padding-top: auto;
    }
    .mobile-pb-0 {
        padding-bottom: 0;
    }
    .mobile-pb-0_3em {
        padding-bottom: 0.3em;
    }
    .mobile-pb-0_5em {
        padding-bottom: 0.5em;
    }
    .mobile-pb-1em {
        padding-bottom: 1em;
    }
    .mobile-pb-1_5em {
        padding-bottom: 1.5em;
    }
    .mobile-pb-2em {
        padding-bottom: 2em;
    }
    .mobile-pb-3em {
        padding-bottom: 3em;
    }
    .mobile-pb-4em {
        padding-bottom: 4em;
    }
    .mobile-pb-5em {
        padding-bottom: 5em;
    }

    .mobile-pb-5 {
        padding-bottom: 1.2vw;
    }
    .mobile-pb-10 {
        padding-bottom: 2.4vw;
    }
    .mobile-pb-15 {
        padding-bottom: 3.6vw;
    }
    .mobile-pb-20 {
        padding-bottom: 4.8vw;
    }
    .mobile-pb-24 {
        padding-bottom: 5.8vw;
    }
    .mobile-pb-30 {
        padding-bottom: 7.2vw;
    }
    .mobile-pb-40 {
        padding-bottom: 9.7vw;
    }
    .mobile-pb-50 {
        padding-bottom: 12vw;
    }
    .mobile-pb-60 {
        padding-bottom: 14.5vw;
    }
    .mobile-pb-70 {
        padding-bottom: 16.9vw;
    }
    .mobile-pb-80 {
        padding-bottom: 19.3vw;
    }
    .mobile-pb-90 {
        padding-bottom: 21.7vw;
    }
    .mobile-pb-100 {
        padding-bottom: 24.2vw;
    }

    .mobile-pl-0 {
        padding-left: 0;
    }
    .mobile-pl-0_5em {
        padding-left: 0.5em;
    }
    .mobile-pl-1em {
        padding-left: 1em;
    }
    .mobile-pl-2em {
        padding-left: 2em;
    }
    .mobile-pl-3em {
        padding-left: 3em;
    }
    .mobile-pl-4em {
        padding-left: 4em;
    }

    .mobile-pl-5 {
        padding-left: 1.2vw;
    }
    .mobile-pl-10 {
        padding-left: 2.4vw;
    }
    .mobile-pl-15 {
        padding-left: 3.6vw;
    }
    .mobile-pl-20 {
        padding-left: 4.8vw;
    }
    .mobile-pl-24 {
        padding-left: 5.8vw;
    }
    .mobile-pl-30 {
        padding-left: 7.2vw;
    }
    .mobile-pl-40 {
        padding-left: 9.7vw;
    }
    .mobile-pl-50 {
        padding-left: 12vw;
    }
    .mobile-pl-60 {
        padding-left: 14.5vw;
    }
    .mobile-pl-70 {
        padding-left: 16.9vw;
    }
    .mobile-pl-80 {
        padding-left: 19.3vw;
    }
    .mobile-pl-90 {
        padding-left: 21.7vw;
    }
    .mobile-pl-100 {
        padding-left: 24.2vw;
    }

    .mobile-pr-0 {
        padding-right: 0;
    }
    .mobile-pr-0_5em {
        padding-right: 0.5em;
    }
    .mobile-pr-1em {
        padding-right: 1em;
    }
    .mobile-pr-2em {
        padding-right: 2em;
    }
    .mobile-pr-3em {
        padding-right: 3em;
    }
    .mobile-pr-4em {
        padding-right: 4em;
    }

    .mobile-pr-5 {
        padding-right: 1.2vw;
    }
    .mobile-pr-10 {
        padding-right: 2.4vw;
    }
    .mobile-pr-15 {
        padding-right: 3.6vw;
    }
    .mobile-pr-20 {
        padding-right: 4.8vw;
    }
    .mobile-pr-24 {
        padding-right: 5.8vw;
    }
    .mobile-pr-30 {
        padding-right: 7.2vw;
    }
    .mobile-pr-40 {
        padding-right: 9.7vw;
    }
    .mobile-pr-50 {
        padding-right: 12vw;
    }
    .mobile-pr-60 {
        padding-right: 14.5vw;
    }
    .mobile-pr-70 {
        padding-right: 16.9vw;
    }
    .mobile-pr-80 {
        padding-right: 19.3vw;
    }
    .mobile-pr-90 {
        padding-right: 21.7vw;
    }
    .mobile-pr-100 {
        padding-right: 24.2vw;
    }

    .mobile-m-0 {
        margin: 0;
    }
    .mobile-p-0 {
        padding: 0;
    }
    .mobile-p-10 {
        padding: 2.4vw;
    }

    .mobile-r-15 {
        right: 3.6vw;
    }
    .mobile-l-15 {
        left: 3.6vw;
    }
    .mobile-t-15 {
        top: 3.6vw;
    }
    
    .mobile-bb-none {
        border-bottom: none;
    }

    
    .mobile-bb-1px-white {
        border-bottom: 1px solid var(--white);
    }
    .mobile-bb-2px-white {
        border-bottom: 2px solid var(--white);
    }
    .mobile-bb-1px-red {
        border-bottom: 1px solid var(--primary);
    }
    .mobile-bt-1px-red {
        border-top: 1px solid var(--primary);
    }
    .mobile-bt-1px-yellow {
        border-top: 1px solid var(--yellow);
    }
    .mobile-bt-1px-white {
        border-top: 1px solid var(--white);
    }
    .mobile-bt-2px-white {
        border-top: 2px solid var(--white);
    }
    


    /* TYPOGRAPHY */

    html body {
        font-size: 3.86vw;
        line-height: 124%;
    }

    input:-webkit-autofill,
    input:-webkit-autofill::first-line,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        font-size: 1.16vw !important;
        line-height: 1 !important;
    }

    .mobile-font-12 {
        font-size: 2.9vw;
        line-height: 1;
    }
    .mobile-font-14 {
        font-size: 3.3vw;
        line-height: 1;
    }
    .mobile-font-16, p, .mobile-font-16 p {
        font-size: 3.86vw;
        line-height: 1.2;
    }
    .mobile-font-18 {
        font-size: 4.35vw;
        line-height: 1;
    }

    .mobile-font-20 {
        font-size: 4.83vw;
        line-height: 1;
    }
    .mobile-font-24{
        font-size: 5.8vw;
        line-height: 1;
    }
    .mobile-font-32, h3, .menu li a{
        font-size: 7.73vw;
        line-height: 1;
    }
/* 
    
    .mobile-font-48, h3{
        font-size: 32px;
        line-height: 1;
    } */

    .mobile-font-48, h1{
        font-size: 11.59vw;
        line-height: 1;
    }

    

    .mobile-font-light {
        font-weight: 300;
    }
    .mobile-font-regular {
        font-weight: 400;
    }
    .mobile-font-medium {
        font-weight: 500;
    }
    .mobile-font-bold {
        font-weight: 800;
    }
    .mobile-font-heavy {
        font-weight: 900;
    }


    /* FLEX */

    .mobile-flex-column-reverse {
        flex-direction: column-reverse;
    }
    .mobile-flex-wrap {
        flex-wrap: wrap;
    }
    .mobile-flex-column {
        flex-direction: column;
    }
    .mobile-flex-row {
        flex-direction: row;
    }
    .mobile-h-auto {
        height: auto;
    }

    .mobile-flex-start {
        align-items: flex-start;
    }
    .mobile-flex-center {
        align-items: center;
    }
    .mobile-flex-end {
        align-items: flex-end;
    }
    .mobile-justify-start {
        justify-content: flex-start;
    }
    .mobile-justify-center {
        justify-content: center;
    }
    .mobile-justify-end {
        justify-content: flex-end;
    }

    .mobile-overflow-x-scroll {
        overflow-x: scroll;
    }

    .mobile-flex-justify {
        justify-content: space-between;
    }

    /* HEADER */

    .header {
        padding: 4.84vw 5.8vw;
    }
    .header .logo{
        display: flex;        
        align-items: center;
    }
    .header .logo img {
        width: 54.83vw;
    }
    .search .search-icon {
        width: 7.73vw;
        padding: 0.72vw;
    }
    .colecoes {
        margin-top: 0;
        gap: 0;
    }
    .colecao-thumb {
        width: 100%;
        height: 66.67vw;
    }
    .grafismo{
        height: 30.92vw;
        object-fit: cover;
    }
    .saiba-mais{
        width: 35.51vw;
        padding: 1.93vw;
    }
    .itinerancia-wrapper .itinerancia {
        width: 95%;
        height: 93%;
    }
    .logo-footer{
        width: 81.4vw;
    }
    footer .parceria img {
        max-height: 7.07vw;
    }
    footer .parceria{
        gap: 3vw;
    }
    footer .menu li a{
        font-size: 3.86vw;
        line-height: 124%;
    }

    .menu-mobile{
        position: fixed;
        top: 17vw;
        width: 100vw;
        background-color: white;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding: 0 5.8vw;
        height: calc(100vh - 300vw);
        transition: .3s ease-in-out;
        z-index: 2;
    }
    .menu-mobile.active{
        height: calc(100vh - 17vw);
        padding: 5.8vw 5.8vw;
        transition: .3s ease-in-out;
    }
    #menu-menu-2{
        margin-top: -22vw;
    }
    .menu-btn.active{
        color: var(--vermelho);
    }
    .menu-item {
        padding-bottom: 3vw;
    }
    .menu-btn.active {
        color: var(--primary);
    }

    /* SINGLE */

    .titulo-header{
        order: 1;
    }
    .imagem-header{
        order: 2;
    }
    .texto-header{
        order: 3;
    }
    .coleta-header{
        order: 4;
    }
    .info-header{
        order: 5;
    }
    .link-repositorio svg {
       width: 3.14vw;
        margin-bottom: 0.8vw;
    }
    .link-repositorio {
        gap: 1.55vw;
    }
    .single-header{
        gap: 0;
    }
    .single-header .titulo-header img{
        top: 0;
        right: 0;
        width: 52vw;
        z-index: -1;
    }
    .single-header .grid-2 {
        gap: 5.64vw;
    }
    .info-header br{
        display: none;
    }
    .video-wrapper{
        width: 100%;
        height: 50vw;
    }
    .video-wrapper iframe {
        width: 100%;
        height: auto;
    }
    .outras-colecoes .grid-2 {
        gap: 0;
    }
    .infos > .flex-column {
        gap: 1.16vw;
        column-gap: 4vw;
    }
    .slick-slide.slick-current {
        /* width: 35.43vw !important; */
        padding: 3.71vw;
    }
    .linha-do-tempo-wrapper .arrow-right {
        width: 6.71vw;
    }
    .linha-do-tempo-wrapper .arrow-left {
        width: 6.71vw;     
        margin-right: auto;
    }
    .slick-slide .image-wrapper img {
        height: 41.11vw;
    }
    .depoimento-wrapper .depoimento-item {
        box-shadow: -4px 8px 16px 0px rgba(0, 0, 0, 0.1);
        background-color: black;
        color: white;
        width: 100%;
        padding: 3.86vw;
    }
    .wrapper-varal .video-content {
       position: sticky;
        pointer-events: auto;
        top: 30vw;
    }
    .depoimentos-content {
        gap: 100vw;
    }
    .postagens-content .idioma {
        width: 14vw;
    }
    .postagens-content .idioma {
        width: 10vw;
        margin-top: 4vw;
        padding-bottom: 2vw;
    }
    .audio-item-1, 
    .audio-item-2, 
    .audio-item-3, 
    .audio-item-4{
        width: 41.3vw;
        height: 41.3vw;
    }
    .circle-player{
        overflow: inherit;
    }    
    .circle-player .player-expanded {
        clip-path: inherit;
    }
    .circle-player.active .player-expanded {
        clip-path: inherit;
    }
    .player-expanded {
        transform: translateX(50vw);
        background: inherit;
    }
    
    .circle-player.active .wave{
        clip-path: circle(50% at 50% 50%);
        transition: clip-path .5s ease;
    }
    .wave {        
        clip-path: circle(0% at 50% 50%);
        transform: translateX(-50vw);
        background-color: black;
        opacity: 1;
        background-repeat: no-repeat;
        transition: clip-path .5s ease;
    }
    .relatos-content .grid-span-5 {
        gap: 14vw;
    }
    .audio-progress {
        width: 30.73vw;
        height: 3px;        
        background: black;
        margin: 2.5vw 0 3vw;
    }
    .player-content {
        margin-top: 5.8vw;
    }
    .video-libras-wrapper{
        position: fixed;
        bottom: -38vw;
        z-index: 9;
    }
    .video-libras{
        width: 90.4vw;
        opacity: 0;
        visibility: hidden;
        transition: .4s ease;
        position: fixed;
        bottom: 4vw;
        height: 50vw;
        top: inherit;
        z-index: -1;
    }
    .video-libras .video-wrapper, .video-libras .video-wrapper iframe {
        width: 100%;
        height: 50vw;
    }
    .video-libras.active{
        z-index: 10;
    }
    .grid-container {
        display: flex;
    }
    .grid-item.grafismo{            
        height: 21.92vw;
        object-fit: cover !important;
    }
    .grafico-wrapper {
        width: 16.63vw;
    }


    .page-sobre .texto-esquerda .grafismo {
        width: 100%;
    }
    .page-sobre .imagem-direita img {
        height: auto;
    }


}

@media only screen and (max-width: 414px) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/

    
}

@media only screen and (max-width: 376px) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/

    
}

@media only screen and (max-width: 321px) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/

    
}