.numberQuarterly {
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 600;
    line-height: 33.66px;
    color: var(--main-yellow);
    margin-bottom: 0;
    display: none;
    flex: 1;
}

.groupYear {
    justify-content: center;
    gap: 40px;

    @media (max-width:1200px) {
        & {
            gap: 10px;
            justify-content: space-between;

        }
    }

    @media (max-width:1024px) {
        & {
            gap: 40px;
            justify-content: center;

        }
    }

    .yearBox {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        left: -150px;
        font-size: clamp(16px, 1.6vw, 18px);
        font-weight: 600;
        line-height: 33.66px;
        color: var(--main-yellow);
        display: flex;
    }

    @media (max-width:1700px) {
        .yearBox {
            display: none;
        }
    }

    @media (max-width:778px) {
        & {
            padding-top: 20px;
        }
    }



}

.card_report {
    max-width: 331px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;

    @media (max-width:1250px) {
        & {
            width: calc(100% / 2 - 40px);

        }
    }

    @media (max-width:558px) {
        & {
            width: 100%;

        }
    }

    .imageHeaderContainer {
        border-radius: 24px;
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        -ms-border-radius: 24px;
        -o-border-radius: 24px;
        overflow: hidden;
        flex: 1 1 100%;

        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }

    .title_card {
        font-size: clamp(20px, 1.6vw, 24px);
        font-weight: 700;
        line-height: 36px;
        color: var(--main-blue);
        margin-bottom: 0;
    }

    .description_card {
        font-size: clamp(16px, 1.6vw, 20px);
        font-weight: 400;
        line-height: 33px;
    }

    a {
        color: var(--main-yellow);
        font-size: clamp(16px, 1.6vw, 24px);
        font-weight: 500;
        line-height: 36.75px;
        text-decoration: none;

    }
}

html[dir="rtl"] .card_report a img {
    rotate: 180deg;
}

.date_report {
    font-size: clamp(17px, 1.6vw, 24px);
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.01em;
    color: var(--main-yellow);
}

.years {
    position: absolute;
    top: 30%;
    color: var(--main-yellow);
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 500;
    line-height: 33.66px;

}

html[dir="ltr"] .years {
    left: -150px;
}

html[dir="rtl"] .years {
    right: -150px;
}

@media (max-width:1700px) {
    .years {
        display: none !important;
    }
}

.btnResource {
    display: flex;
    align-items: center;
    gap: 30px;
    text-wrap: nowrap;

    .button_download {
        padding: 0;
        width: fit-content;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        color: var(--main-yellow);
        background-color: transparent;
        font-size: clamp(16px, 1.6vw, 22px);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        border: none;
        transition: .5s all ease;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        -ms-transition: .5s all ease;
        -o-transition: .5s all ease;
    }

    .button_download:hover {
        text-decoration: underline;
    }

    .button_viewMore {
        padding: 0;
        width: fit-content;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        color: var(--main-blue);
        background-color: transparent;
        font-size: clamp(16px, 2.4vw, 22px);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        border: none;
        transition: .5s all ease;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        -ms-transition: .5s all ease;
        -o-transition: .5s all ease;
    }

    .button_viewMore:hover {
        text-decoration: underline;
    }
}

html[dir="rtl"] .yearBox {
    left: initial;
    right: -150px;

    @media (max-width:1700px) {
        & {
            right: 50%;
            transform: translateX(50%);
            -webkit-transform: translateX(50%);
            -moz-transform: translateX(50%);
            -ms-transform: translateX(50%);
            -o-transform: translateX(50%);
        }

    }
}

@media (max-width:778px) {
    .card_report {
        div:last-child {
            align-items: center;
            text-align: center;
        }
    }
}

.quartersContent {
    display: flex;
    flex-direction: column;

    .containerSelect {
        .nice-select {
            width: 200px;
        }
    }
}

html[dir='rtl'] .containerSelect {
    .nice-select {
        padding-inline: 18px 30px;
    }

    .nice-select:after {
        right: initial;
        left: 12px;
    }
}

.card_report {
    max-width: 350px;
    flex: 1;

    .btnResource {
        margin-top: auto;
    }
}

.groupYear {
    .card_report {

        .numberQuarterly {
            display: none;

            margin-bottom: 0;

            @media (max-width:1250px) {
                display: flex !important;
            }
        }

        &:first-child {
            .numberQuarterly {
                display: flex !important;
            }
        }
    }
}

.quartersContent {

    &>.container:not(:has(.slider-quarter)) {
        display: flex;

        @media (max-width:1700px) {
            display: none !important;
        }
    }

    &>.container:has(.slider-quarter) {
        display: none;

        @media (max-width:1700px) {
            display: flex;
            flex-direction: column;
        }

        .prev-year {
            scale: -1;
        }

        .container-slider-years {
            display: flex;
            width: 393px;
            max-width: 100%;
            margin-inline: auto;
            gap: 10px;
            border-bottom: 1px solid #8c8c8c;
            margin-bottom: 40px;
            text-align: center;




            .swiper-years {
                .swiper-slide {

                    &.swiper-slide-active {
                        border-bottom: 1px solid #AB972C;
                        color: #AB972C;
                    }
                }
            }
        }

        .swiper-quarter {
            width: 100%;
            height: 100%;
        }

    }
}

@media(max-width:558px) {
    .groupYear {
        flex-direction: column;
        align-items: center;

        .card_report {
            max-width: 400px;
            align-items: center;

            .numberQuarterly {
                align-self: flex-start;
            }

            .content-card {
                display: flex;
                justify-content: center;
                gap: 20px;

                .imageHeaderContainer {
                    width: 100%;
                    height: 100%;
                    max-height: 120px;

                    img {
                        height: 100%;
                        width: 100%;
                        object-fit: cover;
                    }
                }

                div:has(.btnResource) {
                    align-items: flex-start;
                    flex: 1 1 100%;
                }

                .btnResource {
                    flex-direction: column;
                    gap: 12px;
                    align-items: flex-start;
                }
            }
        }
    }
}

html[dir="rtl"] .container-slider-years {
    .prev-slide ,
    
    .next-slide {
        scale: -1
    }
}