@import url('./styles.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./dark-mode.css');


.s-hero-home {
    background-color: var(--orange);
    padding-top: 120px;
    padding-bottom: 54px;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: -10rem;
        background: url('../../img/colina-imgs/frame-hero-orange.svg') no-repeat center/contain;
        width: 100%;
        max-width: 213px;
        height: 152px;
    }

    .container {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: center;

        .left-container {
            width: 100%;
            max-width: 655px;
            position: relative;

            .circle-titles {
                position: absolute;
                right: 0;
                top: 45px;
            }

            h1 {
                color: #fff;
                font-size: 42px;
                font-weight: 600;
                line-height: 140%;
                margin-bottom: 30px;

                span {
                    color: #fff;
                    font-size: 42px;
                    font-weight: 800;
                    line-height: 140%;
                }
            }

            form {
                display: flex;
                width: 100%;
                max-width: 633px;
                margin-bottom: 34px;

                input[type="text"] {
                    width: 100%;
                    max-width: 455px;
                    padding: 15px 24px;
                    border-radius: 56px 0 0 56px;

                    &::placeholder {
                        color: var(--grey-300);
                        text-align: center;
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 140%;
                    }
                }

                input[type="submit"] {
                    background-color: var(--green);
                    color: #fff;
                    padding: 12px 24px;
                    font-size: 20px;
                    font-weight: 500;
                    line-height: 140%;
                    border-radius: 0 56px 56px 0;
                    cursor: pointer;
                    transition: all .3s ease;

                    &:hover {
                        background-color: var(--green-03);
                    }
                }
            }

            .buttons {
                display: flex;
                align-items: center;
                gap: 40px;

                a {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    max-width: fit-content;
                    color: var(--black);
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 140%;
                    padding-block: 8px;
                    border-bottom: 3px solid var(--black);

                    svg {
                        path {
                            transition: all .3s ease;
                        }
                    }

                    &:hover {
                        svg {
                            path {
                                transform: translateX(2px);
                            }
                        }
                    }
                }
            }
        }

        .right-container {
            width: 100%;
            max-width: 560px;
        }
    }

    @media (max-width: 1024px) {

        padding-top: 180px;
        padding-bottom: 94px;

        .container {
            flex-direction: column;

            .right-container {
                display: none;
            }

            .left-container {
                .circle-titles {
                    display: none;
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding-top: 140px;

        .container {
            .left-container {
                h1 {
                    font-size: 25px;

                    span {
                        font-size: 25px;
                    }
                }

                .buttons {
                    flex-direction: column;
                    gap: 24px;
                }

                form {
                    input[type="search"] {
                        padding: 12px;

                        &::placeholder {
                            font-size: 12px;
                            font-weight: 400;
                            line-height: 140%;
                        }
                    }

                    input[type="submit"] {
                        padding: 12px;
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 140%;
                    }
                }
            }
        }
    }

}

.s-numeros {
    background-color: var(--off);
    position: relative;
    z-index: 3;
    padding-bottom: 80px;

    .container {
        position: relative;
        top: -54px;

        .area {

            border-radius: 24px;
            background: rgba(255, 255, 255, 0.80);
            box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.10);
            backdrop-filter: blur(20px);
            padding: 54px 24px;

            .swiper {
                width: 100%;
                max-width: 1082px;

                .swiper-slide {
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    &:nth-child(2) {
                        .item {
                            padding-left: 34px;
                        }
                    }

                    &:nth-child(3) {
                        .item {
                            padding-left: 41px;
                        }
                    }

                    .item {
                        width: 100%;
                        max-width: 309px;
                        position: relative;
                        padding: 26px 0 0 21px;

                        .circle-item {
                            position: absolute;
                            left: 0;
                            top: 0;
                        }

                        h4 {
                            margin-bottom: 24px;
                            color: var(--orange);
                            position: relative;
                            z-index: 2;
                        }

                        p {
                            color: var(--dark-grey);
                        }
                    }
                }
            }
        }
    }

    @media (max-width: 1024px) {
        .container {
            .area {
                padding: 24px;
            }
        }
    }

    @media (max-width: 767px) {
        padding-bottom: 0px;

        .container {
            .area {
                .swiper {
                    .swiper-slide {

                        &:nth-child(2) {
                            .item {
                                padding-left: 0;

                                h4 {
                                    padding-left: 30px;
                                }
                            }
                        }

                        &:nth-child(3) {
                            .item {
                                padding-left: 0;

                                h4 {
                                    padding-left: 30px;
                                }
                            }
                        }

                        .item {
                            p {
                                br {
                                    display: none;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


.s-vagas-destaques {
    padding-bottom: 80px;
    background-color: var(--off);
    position: relative;

    /* &::before {
        content: '';
        width: 100%;
        max-width: 1077px;
        height: 100%;
        max-height: 455px;
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: var(--green-01);
    } */

    .container {
        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 56px;

            a.btn {
                display: block;
            }

            .left {
                width: 100%;
                max-width: 711px;

                h4 {
                    color: var(--orange);
                    margin-bottom: 16px;
                }
            }
        }

        .swiper {
            .swiper-slide {
                display: flex;
                align-items: stretch;
                height: auto !important;
                justify-content: center;

                .card-vaga {
                    padding: 24px 17px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    width: 100%;
                    height: 100%;
                    max-width: 397px;
                    border-radius: 8px;
                    background: #fff;
                    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
                    transition: all .3s ease;

                    &:hover {
                        button {
                            svg {
                                path {
                                    transform: translateX(3px);
                                }
                            }
                        }
                    }

                    h6 {
                        color: var(--dark-grey);
                        margin-bottom: 8px;
                    }

                    .logo {
                        width: 100%;
                        max-width: 88px;
                        height: auto;
                        margin-bottom: 32px;
                    }

                    .local {
                        display: flex;
                        align-items: center;
                        gap: 16px;
                        margin-bottom: 24px;

                        .cidade {
                            display: flex;
                            align-items: center;
                            gap: 16px;

                            p {
                                color: var(--dark-grey);
                            }
                        }

                        span {
                            background-color: var(--orange-02);
                            color: var(--orange-01);
                            display: inline-block;
                            padding: 4px 8px;
                            border-radius: 4px;
                        }
                    }

                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                        margin-bottom: 40px;

                        li {
                            padding: 8px 16px;
                            border-radius: 4px;
                            border: 1px solid var(--green);
                        }
                    }

                    button {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 140%;
                        color: var(--orange);
                        padding-bottom: 8px;
                        border-bottom: 3px solid var(--orange);

                        svg {
                            path {
                                transition: all .3s ease;
                            }
                        }
                    }
                }
            }
        }

        a.btn {
            display: none;
        }
    }

    @media (max-width: 1024px) {

        .container {
            .top {
                flex-direction: column;

                h2,
                h4 {
                    text-align: center;
                }

                a.btn.primary {
                    display: none;
                }
            }

            a.btn.primary {
                display: table;
                margin: 40px auto 0 auto;
            }
        }
    }

    @media (max-width: 767px) {
        padding-bottom: 40px;

        &::before {
            display: none;
        }

        .container {
            .top {
                margin-bottom: 32px;

                .left {
                    h4 {
                        text-align: center;
                    }
                }
            }

            .swiper {
                .swiper-slide {
                    .card-vaga {
                        padding: 16px;

                        ul {
                            margin-bottom: 24px;

                            li {
                                padding: 8px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.s-candidate-se {
    background-color: var(--off);
    padding-bottom: 80px;

    .container {
        h2 {
            text-align: center;
            margin: 0 auto;
            margin-bottom: 80px;
            position: relative;
            width: 100%;
            max-width: fit-content;

            &::after {
                content: '';
                background: url('../../img/colina-imgs/waves-title-orange.svg') no-repeat center/contain;
                width: 100%;
                max-width: 165px;
                height: 17px;
                position: absolute;
                right: 0;
                bottom: -20px;
            }

            span {
                color: var(--orange);
            }
        }

        .swiper {
            .swiper-slide {
                display: flex;
                align-items: center;
                justify-content: center;

                .arrow-01,
                .arrow-02 {
                    position: absolute;
                    right: 0;
                }

                &:nth-child(1) {
                    justify-content: flex-start;

                    .arrow-01 {
                        bottom: 0;
                        right: -30px;
                    }
                }

                &:nth-child(2) {

                    .arrow-02 {
                        top: 0;
                        right: -100px;
                    }

                    .item {
                        img {
                            margin-top: -40px;
                        }
                    }
                }

                &:nth-child(3) {
                    justify-content: flex-end;
                }

                .item {
                    width: 100%;
                    max-width: fit-content;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: flex-start;

                    a {
                        padding-left: 32px;
                        margin-top: -20px;
                        color: var(--orange);
                        font-size: 32px;
                        font-weight: 600;
                        line-height: 120%;
                        text-decoration-line: underline;
                        text-decoration-style: solid;
                        text-decoration-skip-ink: none;
                        text-decoration-thickness: auto;
                        text-underline-offset: auto;
                        text-underline-position: from-font;
                    }

                    h4 {
                        color: var(--black);
                        font-size: 32px;
                        font-weight: 600;
                        line-height: 120%;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding-bottom: 40px;

        .container {
            h2 {
                margin-bottom: 40px;

                &::after {
                    display: none;
                }
            }

            .swiper {
                .swiper-slide {

                    &:nth-child(1),
                    &:nth-child(2) {
                        justify-content: center;

                        .arrow-01,
                        .arrow-02 {
                            display: none;
                        }

                        .item {
                            img {
                                margin-top: 0;
                            }
                        }

                    }

                    &:nth-child(3) {
                        justify-content: center;
                    }

                    .item {
                        a {
                            margin-top: 0;
                            padding-left: 0;
                            text-align: center;
                            font-size: 24px;

                            br {
                                display: none;
                            }
                        }

                        h4 {
                            font-size: 24px;
                            text-align: center;

                            br {
                                display: none;
                            }
                        }

                    }
                }
            }
        }
    }
}

.s-vaga-ideal {
    padding-block: 80px 160px;
    background-color: var(--off);

    .container {
        max-width: 1920px;
        position: relative;

        &::before {
            content: '';
            width: 100%;
            max-width: 1240px;
            height: 413px;
            background-color: white;
            border-radius: 24px;
            position: absolute;
            margin-inline: auto;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .area-top {
            max-width: 1140px;
            margin: 0 auto;
            margin-bottom: 56px;
            padding-top: 80px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;

            h2 {
                max-width: 380px;
            }

            &::after {
                content: '';
                background: url('../../img/colina-imgs/frame-vagas-green.svg') no-repeat center/contain;
                width: 100%;
                max-width: 100px;
                height: 62px;
                position: absolute;
                right: 123px;
                top: -28px
            }

            .buttons {
                width: 100%;
                max-width: 120px;
                display: flex;
                justify-content: space-between;
                gap: 24px;
                align-items: center;

                .swiper-button-prev,
                .swiper-button-next {
                    position: relative;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: 0;
                    width: 48px;
                    height: 48px;
                }
            }
        }

        .swiper-slide {
            display: flex;
            align-items: stretch;
            height: auto !important;
            justify-content: center;

            .card {
                width: 100%;
                max-width: 292px;
                height: 100%;
                border-radius: 8px;
                background-color: var(--black);
                padding: 34px 24px;

                .top {
                    margin-bottom: 8px;
                    display: flex;
                    gap: 16px;
                    align-items: center;
                    justify-content: flex-start;

                    .icon {
                        width: 20px;
                        height: 20px;

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

                    h5 {
                        color: var(--orange);
                    }
                }

                p {
                    color: white;
                }
            }
        }

        .swiper {
            .swiper-wrapper {
                -webkit-transition-timing-function: linear !important;
                transition-timing-function: linear !important;
                transition-duration: 4000ms !important;

            }
        }

    }

    @media (max-width: 1024px) {
        padding-block: 40px 80px;

        .container {
            .area-top {
                padding-top: 40px;
                margin-bottom: 40px;

                h2 {
                    text-align: center;
                    max-width: 100%;
                }

                &::after {
                    display: none;
                }

                flex-direction: column;
            }
        }
    }

    @media (max-width: 767px) {
        padding-top: 0;
    }
}

.s-vagas-por-empresa {
    padding-block: 60px 80px;
    background-color: var(--off);

    .container {
        .top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 74px;

            .left {
                width: 100%;
                max-width: 458px;
                position: relative;
                padding-left: 28px;
                padding-top: 17px;

                img {
                    position: absolute;
                    top: 0;
                    left: 0;
                }

                h2 {
                    position: relative;
                    z-index: 2;
                }
            }

            .right {

                width: 100%;
                max-width: 646px;

                form {
                    display: flex;
                    width: 100%;
                    margin-bottom: 34px;

                    input[type="text"] {
                        width: 100%;
                        max-width: 455px;
                        padding: 15px 24px;
                        border-radius: 56px 0 0 56px;

                        &::placeholder {
                            color: var(--grey-300);
                            text-align: center;
                            font-size: 18px;
                            font-weight: 400;
                            line-height: 140%;
                        }
                    }

                    input[type="submit"] {
                        background-color: var(--orange);
                        color: #fff;
                        padding: 12px 24px;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 140%;
                        border-radius: 0 56px 56px 0;
                        cursor: pointer;
                        transition: all .3s ease;

                        &:hover {
                            background-color: var(--green-03);
                        }
                    }
                }
            }
        }

        .swiper {
            margin-bottom: 40px;

            .swiper-slide {
                display: flex;
                align-items: stretch;
                height: auto !important;
                justify-content: center;
                padding-bottom: 30px;

                .card {
                    width: 100%;
                    max-width: 397px;
                    padding: 24px;
                    background-color: white;
                    border-radius: 8px;
                    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.10);

                    &:hover {
                        button {
                            svg {
                                path {
                                    transform: translateX(3px);
                                }
                            }
                        }
                    }

                    h6 {
                        color: var(--black);
                        font-size: 24px;
                        font-weight: 600;
                        line-height: 130%;
                        margin-bottom: 4px;
                    }

                    .empresa {
                        display: flex;
                        align-items: center;
                        justify-content: flex-start;
                        gap: 12px;
                        padding: 8px;
                        border-radius: 32px;
                        background-color: var(--orange-02);
                        margin-bottom: 16px;

                        img {
                            width: 24px;
                            height: 24px;
                            object-fit: contain;
                        }

                        span {
                            color: var(--orange-01);
                            text-align: center;
                            font-size: 18px;
                            font-weight: 400;
                            line-height: 140%;
                        }
                    }

                    p {
                        color: var(--dark-grey);
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 140%;
                        margin-bottom: 56px;
                        display: -webkit-box;
                        -webkit-line-clamp: 4;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                    }

                    button {
                        display: flex;
                        align-items: center;
                        gap: 12px;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 140%;
                        color: var(--orange);
                        padding-bottom: 8px;
                        border-bottom: 3px solid var(--orange);

                        svg {
                            path {
                                transition: all .3s ease;
                            }
                        }
                    }
                }
            }
        }

        .btn {
            margin: 0 auto;
            display: table;
        }
    }

    @media (max-width: 1024px) {
        .container {
            .top {
                flex-direction: column;
                align-items: center;
                gap: 80px;
                margin-bottom: 40px;
            }
        }
    }

    @media (max-width: 767px) {
        padding-block: 40px;

        .container {
            .top {
                flex-direction: column;
                align-items: center;
                gap: 40px;
                margin-bottom: 40px;

                .left {
                    img {
                        top: -17px;
                    }

                    h2 {
                        padding-left: 10px;
                    }
                }

                .right {
                    form {
                        display: flex;
                        width: 100%;
                        margin-bottom: 24px;

                        input[type="search"] {
                            padding: 12px;

                            &::placeholder {
                                font-size: 14px;
                            }
                        }

                        input[type="submit"] {
                            padding: 12px;
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}

.s-nossos-diferenciais {
    padding-block: 80px;
    background-color: var(--off);

    .container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
    }

    .left-container {
        width: 100%;
        max-width: 564px;

        h2 {
            color: var(--orange);
            margin-bottom: 16px;
        }

        h3 {
            margin-bottom: 32px;
        }

        .images {
            position: relative;
            width: 100%;
            max-width: 564px;

            .card-image {
                position: absolute;
                left: 0;
                top: 102px;
            }
        }
    }

    .right-container {
        width: 100%;
        max-width: 533px;

        ul {

            li {
                display: flex;
                gap: 16px;

                &:not(:last-child) {
                    margin-bottom: 32px;
                }

                .icon {
                    width: 48px;
                    height: 48px;
                    border-radius: 50%;
                    background-color: var(--green-01);
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        width: 32px;
                        height: 32px;
                        object-fit: contain;
                    }
                }

                .title {
                    width: 100%;
                    max-width: 469px;

                    h6 {
                        margin-bottom: 16px;
                    }

                    p {
                        color: var(--dark-grey);
                    }
                }
            }
        }
    }

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

            .left-container {
                max-width: 100%;

                h2,
                h3 {
                    text-align: center;
                }

                .images {
                    margin: 0 auto;
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding-block: 20px 40px;

        .container {
            .left-container {
                .images {
                    display: none;
                }

                h3 {
                    margin-bottom: 0;
                    font-size: 26px;
                }
            }

            .right-container {
                ul {
                    li {
                        flex-direction: column;
                        align-items: center;

                        .title {

                            h6,
                            p {
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }
}

.s-melhores-empresas-estado {
    padding-block: 80px 80px;
    background-color: #fff;

    .container {
        h2 {
            text-align: center;

            span {
                color: var(--orange);
            }
        }

        .title {

            position: relative;
            width: 100%;
            max-width: 647px;
            margin: 0 auto;
            margin-bottom: 60px;

            img {
                position: absolute;
                right: 61px;
                bottom: -10px;
            }
        }

        .swiper {
            margin-bottom: 60px;
        }

        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;

            .logo {
                height: 94px;
                width: 100%;
                max-width: fit-content;
                object-fit: contain;
            }
        }

        a.btn.primary {
            display: table;
            margin: 0 auto;
        }
    }

    @media (max-width: 767px) {
        padding-block: 40px;

        .container {
            .title {
                margin-bottom: 40px;

                img {
                    display: none;
                }

                h2 {
                    br {
                        display: none;
                    }
                }
            }

            .swiper {
                margin-bottom: 32px;
            }
        }
    }
}

.s-depoimentos {

    padding-bottom: 80px;

    .container {
        border-top: 1px solid var(--grey-200);
        padding-top: 58px;
        position: relative;
        z-index: 2;

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 56px;

            .buttons {
                width: 100%;
                max-width: 120px;
                display: flex;
                justify-content: space-between;
                gap: 24px;
                align-items: center;

                .swiper-button-prev,
                .swiper-button-next {
                    position: relative;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: 0;
                    width: 48px;
                    height: 48px;
                }
            }
        }

        .swiper-slide {
            display: flex;
            align-items: stretch;
            height: auto !important;
            justify-content: center;

            .card-depoimento {
                width: 100%;
                height: 100%;
                max-width: 397px;
                border-radius: 8px;
                background: var(--Preto, #272627);
                box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.10);
                overflow: hidden;
                border-top: 8px solid var(--orange);
                padding: 34px 24px 24px 24px;

                p {
                    color: #fff;
                    margin-bottom: 80px;
                    font-size: 24px;
                    transition: all .3s ease;

                    span {
                        color: var(--orange);
                    }
                }

                button {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 140%;
                    color: var(--orange);
                    padding-bottom: 8px;
                    border-bottom: 3px solid var(--orange);
                    transition: all .3s ease;

                    svg {
                        path {
                            transition: all .3s ease;
                        }
                    }
                }

                .author {
                    transform: translateY(100%);
                    pointer-events: none;
                    visibility: hidden;
                    height: 0;
                    width: 0;
                    opacity: 0;
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    justify-content: flex-start;
                    transition: all .3s ease;

                    .image {
                        width: 52px;
                        height: 52px;
                        border-radius: 50%;
                        overflow: hidden;

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

                    .text {
                        width: 100%;
                        max-width: 280px;

                        h6 {
                            color: var(--orange);
                            margin-bottom: 4px;
                        }

                        span {
                            color: #fff;
                        }
                    }

                }
            }

            &:hover {

                .card-depoimento {
                    padding-top: 16px;

                    button {
                        width: 0;
                        height: 0;
                        pointer-events: none;
                        visibility: hidden;
                        opacity: 0;
                    }

                    p {
                        font-size: 18px;

                        span {
                            color: #fff;
                        }
                    }

                    .author {
                        transform: translateY(0);
                        pointer-events: all;
                        visibility: visible;
                        height: auto;
                        width: auto;
                        opacity: 1;
                    }
                }
            }
        }

        .swiper {
            .swiper-wrapper {
                -webkit-transition-timing-function: linear !important;
                transition-timing-function: linear !important;
                transition-duration: 4000ms !important;

            }
        }
    }

    @media (max-width: 767px) {
        padding-bottom: 40px;

        .container {
            .top {
                flex-direction: column;

                h2 {
                    text-align: center;
                }
            }
        }
    }
}

.s-metrolope-parque {
    padding-block: 80px;

    .container {
        background-color: var(--orange-02);
        border-radius: 24px;
        padding-block: 80px;

        .area {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            position: relative;

            .frame-video {
                position: absolute;
                left: 0;
                bottom: -80px;
                right: 100px;
                margin: 0 auto;
                width: 100%;
                max-width: 216px;
                height: 136px;
                object-fit: contain;
            }
        }

        .left-container {
            width: 100%;
            max-width: 442px;
            padding-left: 21px;

            h2 {
                color: var(--orange);
                margin-bottom: 16px;
            }

            .title {
                position: relative;
                margin-bottom: 65px;

                h3 {
                    position: relative;
                    z-index: 2;

                    span {
                        line-height: 160%;
                    }
                }

                img {
                    position: absolute;
                    bottom: -10px;
                    left: -30px;
                    width: 100%;
                }
            }
        }

        .right-container {
            width: 100%;
            max-width: 745px;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            position: relative;
            z-index: 2;

            img,
            video {
                width: 100%;
                max-width: 647px;
                height: 364px;
                border-radius: 8px;
                object-fit: cover;
            }

            a {
                display: none;
            }
        }
    }

    @media (max-width: 1024px) {
        padding-block: 40px;

        .container {
            padding-block: 40px;

            .area {
                flex-direction: column;
                align-items: center;

                .left-container {
                    max-width: 768px;

                    h2 {
                        text-align: center;
                    }

                    h3 {
                        text-align: center;

                        br {
                            display: none;
                        }
                    }

                    .title {
                        img {
                            left: 0;
                        }

                        margin-bottom: 20px;
                    }

                    a {
                        display: none;
                    }
                }

                .right-container {
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;

                    a {
                        display: table;
                        margin: 40px auto 0 auto;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {
        .container {
            .area {
                .left-container {
                    padding-left: 0;

                    .title {
                        img {
                            display: none;
                        }

                        h3 {
                            font-size: 26px;

                            span {
                                line-height: 120%;
                            }
                        }
                    }
                }

                .right-container {

                    img,
                    video {
                        height: auto;
                    }
                }

                .frame-video {
                    display: none;
                }
            }
        }
    }
}

.s-blog {
    padding-block: 80px;
    position: relative;

    .frame-blog {
        position: absolute;
        right: 20px;
        bottom: 0;
    }

    .swiper-slide {
        display: flex;
        align-items: stretch;
        height: auto !important;
        justify-content: center;
        padding-bottom: 32px;

        &:hover {
            .card-blog {
                box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.10);
                background-color: #fff;

                .image {
                    img {
                        transform: scale(1.05);
                    }
                }
            }
        }

        .card-blog {
            width: 100%;
            max-width: 384px;
            background-color: var(--off);
            border-radius: 8px;
            transition: all .3s ease;

            .image {
                width: 100%;
                height: 256px;
                position: relative;
                overflow: hidden;
                border-radius: 8px 8px 0 0;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all .3s ease;
                }

                .tag {
                    position: absolute;
                    left: 24px;
                    top: 24px;
                    z-index: 2;
                    padding: 10px 8px;
                    background-color: var(--orange);
                    border-radius: 48px;
                    color: #fff;
                    text-align: center;
                    font-family: 'Montserrat', sans-serif;
                    font-size: 12px;
                    font-weight: 500;
                    line-height: 140%;
                }
            }

            .text {
                padding: 12px 24px 24px 24px;

                .data {
                    color: var(--grey-300);
                    font-family: Montserrat;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 140%;
                    margin-bottom: 14px;
                    display: inline-block;
                }

                h6 {
                    margin-bottom: 24px;
                }

                p {
                    color: var(--grey-300);
                    font-family: 'Montserrat', sans-serif;
                }
            }
        }
    }

    .container {
        a.btn {
            display: none;
        }

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 56px;

            h2 {
                margin-bottom: 16px;
            }

            p {
                color: var(--dark-grey);
            }

            a.btn {
                display: block;
            }
        }
    }

    @media (max-width: 1024px) {
        .container {

            .top {
                flex-direction: column;
                margin-bottom: 24px;

                h2,
                p {
                    text-align: center;
                }

                a.btn {
                    display: none;
                }
            }

            a.btn {
                display: table;
                margin: 40px auto 0 auto;
            }
        }
    }

    @media (max-width: 767px) {
        padding-block: 20px 40px;

        .frame-blog {
            display: none;
        }
    }
}

.s-faq-home {
    padding-block: 80px;

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;

        .left-container {
            width: 100%;
            max-width: 566px;

            h2 {
                margin-bottom: 40px;
            }

            form {
                display: flex;
                width: 100%;
                margin-bottom: 76px;

                input[type="search"] {
                    width: 100%;
                    max-width: 455px;
                    padding: 14px 24px;
                    border-radius: 56px 0 0 56px;
                    background-color: var(--off);

                    &::placeholder {
                        color: var(--grey-300);
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 140%;
                    }
                }

                input[type="submit"] {
                    background-color: var(--orange);
                    color: #fff;
                    padding: 12px 24px;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 140%;
                    border-radius: 0 56px 56px 0;
                    cursor: pointer;
                    transition: all .3s ease;

                    &:hover {
                        background-color: var(--green-03);
                    }
                }
            }

            .accordion {
                .accordion-item {
                    border-radius: 8px;
                    background-color: var(--off);
                    cursor: pointer;

                    &.active {
                        .accordion-header {
                            margin-bottom: 16px;
                            position: relative;
                            z-index: 3;
                        }

                        .accordion-content {
                            opacity: 1;
                            max-height: fit-content;
                            height: 100%;
                            padding: 0 24px 24px 24px;
                        }
                    }

                    &:not(:last-child) {
                        margin-bottom: 18px;
                    }

                    .accordion-header {
                        .area-title {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 16px;
                            padding: 24px;

                            h4 {
                                width: 100%;
                                max-width: 455px;
                                color: var(--dark-grey);
                                font-size: 18px;
                                font-weight: 500;
                                line-height: 140%;
                            }
                        }
                    }

                    .accordion-content {
                        opacity: 0;
                        height: auto;
                        max-height: 0;
                        transition: all .3s ease;
                        overflow: hidden;
                    }
                }
            }
        }

        .right-container {
            width: 100%;
            max-width: 601px;
            position: relative;

            .card-faq {
                position: absolute;
                right: 0;
                top: 206px;
            }
        }
    }

    @media (max-width: 1024px) {
        padding-block: 40px;

        .container {
            flex-direction: column;

            .left-container {
                h2 {
                    text-align: center;
                }
            }

            .right-container {
                display: none;
            }
        }
    }

    @media (max-width: 767px) {
        padding-top: 20px;

        .container {
            .left-container {
                form {
                    margin-bottom: 32px;
                }
            }
        }
    }
}