.sliderSection {
    .swiper-pagination {
        bottom: 64px;

        .swiper-pagination-bullet {
            background-color: #FFF;
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--main-yellow);
        }
    }

    .swiper-slide {
        overflow: hidden;
        height: 486px;
        width: 100%;

        @media (max-width:778px) {
            & {
                height: 350px;
            }
        }

        .bgSlider {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .container {
            position: relative;
            z-index: 2;
            display: flex;
            flex: 1 1 100%;
            height: 100%;
            align-items: center;

            .titleSlider {
                font-size: clamp(26px, 3vw, 55px);
                font-weight: 700;
                line-height: clamp(44px, 4.6vw, 82.5px);
                color: #FFF;
                max-width: 725px;
                text-wrap: balance;
            }
        }

        &::before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            z-index: 1;
            background: #000000AD;
        }
    }
}

.content_page {
    .container {
        .titleJobOpportunities {
            font-size: clamp(26px, 3vw, 55px);
            font-weight: 700;
            line-height: clamp(36px, 6.4vw, 78px);
            max-width: 767px;
            margin-inline-end: auto;
            color: var(--main-blue);
        }
    }

    .containerSliderJobs {
        padding-bottom: 80px;
        padding-inline: 20px;

        .swiper-wrapper {
            padding-bottom: 60px;
        }

        .swiper-pagination-job {
            display: flex;
            justify-content: center;

            .swiper-pagination-bullet {
                height: 16px;
                width: 16px;
                background-color: var(--main-yellow);
            }
        }

        .swiper-slide {
            max-width: 546px;
            max-height: 475px;

            &:nth-child(odd) {
                .titleJob {
                    background-color: var(--main-yellow);
                }
            }

            &:nth-child(even) {
                .titleJob {
                    background-color: var(--main-blue);
                }
            }

            .card_report {
                width: 100%;
                max-width: 100%;
                box-shadow: 0px 4px 4px 0px #0000001A;

                .titleJob {
                    color: #FFF;
                    display: flex;
                    align-items: color;
                    padding: 18px 24px;



                    h2 {
                        font-size: clamp(16px, 1.6vw, 20px);
                        font-weight: 700;
                        line-height: 30px;
                        margin-bottom: 0;
                    }
                }

                .bodyCard {
                    padding: 18px 24px;
                    flex: 1;
                    display: flex;
                    flex-direction: column;

                    div:not(:last-child) {
                        border-bottom: 1px solid #E5E5E5;
                    }

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

                    .dateJob {
                        padding-block: 18px;

                        p {
                            font-size: clamp(16px, 2.4vw, 20px);
                            font-weight: 400;
                            line-height: 33px;
                            color: var(--secondary-black);
                            margin-bottom: 4px;
                        }

                        h4 {
                            font-size: clamp(18px, 2.4vw, 26px);
                            font-weight: 400;
                            line-height: 42.9px;
                            color: var(--secondary-black);
                            margin-bottom: 0;
                        }

                    }

                    .description_card {
                        margin-block: 20px;
                        font-size: clamp(16px, 1.6vw, 20px);
                        font-weight: 400;
                        line-height: 33px;
                        color: var(--secondary-black);
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        line-clamp: 3;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                    .buttonView {
                        font-size: clamp(16px, 2.4vw, 20px);
                        font-weight: 700;
                        line-height: 24px;
                        background-color: var(--main-blue);
                        color: #FFF;
                        border-radius: 10px;
                        -webkit-border-radius: 10px;
                        -moz-border-radius: 10px;
                        -ms-border-radius: 10px;
                        -o-border-radius: 10px;
                        padding-block: 12px 10px;
                        width: 144px;
                        text-align: center;
                        margin-inline-start: auto;
                        transition: .5s all ease;
                        -webkit-transition: .5s all ease;
                        -moz-transition: .5s all ease;
                        -ms-transition: .5s all ease;
                        -o-transition: .5s all ease;

                        &:hover {
                            scale: 1.05;
                        }
                    }
                }

                border-radius:24px;
                -webkit-border-radius:24px;
                -moz-border-radius:24px;
                -ms-border-radius:24px;
                -o-border-radius:24px;
            }
        }
    }
}