.index_insights {
    padding: 40px 0;
}

.index_insights_bg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -40%);
    width: 100%;
    height: 500px;
    background-color: #d8d8d8;
}

.index_insights_item {
    position: relative;
    cursor: pointer;
}

.index_insights_item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 300ms;
}

.insights_main_content {
    display: flex;
    justify-content: center;
}

.insights_flex_center_column_box {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    padding: 40px 0 20px 0;
}

.index_about {
    padding: 50px 0;
}

.index_about_left {
    width: 50%;
    padding-right: 40px;
    box-sizing: border-box;
}

.index_about_right {
    width: 50%;
}

.index_about_right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.index_about_left h2 {
    font-size: 36px;
    color: #B9153D;
    font-weight: normal;
    margin-top: 20px;
}

.index_about_left p {
    font-size: 18px;
    color: #4c4c4e;
    line-height: 32px;
    margin-top: 15px;
}

.index_skilled {
    padding: 50px 0;
    background-color: #eee;
}

.index_skilled_left {
    width: 50%;
}

.index_skilled_right {
    width: 50%;
    padding-left: 40px;
    box-sizing: border-box;

}

.index_skilled_left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.index_skilled_right h2 {
    font-size: 36px;
    color: #B9153D;
    font-weight: normal;
    margin-top: 20px;
}

.index_skilled_right p {
    font-size: 18px;
    color: #4c4c4e;
    line-height: 32px;
    margin-top: 15px;
}

.index_banner_container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index_banner_container h1 {
    letter-spacing: 4px;
}

.index_banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.down-icon {
    position: absolute;
    bottom: 160px;
    opacity: 0;
    animation: moveDown 3s infinite ease-in-out;
    width: 25px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes moveDown {
    0% {
        bottom: 160px;
        opacity: 0;
    }

    50% {
        bottom: 100px;
        opacity: 1;
    }

    100% {
        bottom: 40px;
        opacity: 0;
    }
}

.career_title {
    color: #fff;
}

.career_button {
    background-color: #B9153D !important;
    color: #fff !important;
}

.index_title_box {
    /* margin: 30px 0; */
}

.index_title_box h2 {
    font-size: 36px;
    color: #B9153D;
    font-weight: normal;
}

.index_service {
    padding: 40px 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.service_container h3 {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1.5);
    width: 100%;
    text-align: center;
}

.swiper-pagination {
    bottom: 0px !important;
}

.service_card {
    perspective: 1000px;
    position: relative;
    margin: 30px 0;
    cursor: pointer;
    width: 23%;
    height: 300px;
    border-radius: 30px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service_card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.card-back {
    background-color: #ebebeb;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: rotateY(180deg);
    padding: 20px;
    box-sizing: border-box;
}

.card-back h2 {
    color: #3a424a;
    font-size: 28px;
}

.card-back p {
    color: #818d9a;
    line-height: 30px;
    margin-top: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #B9153D !important;
}

.swiper-pagination-bullet-active {
    background-color: #B9153D !important;
}

.index_insights_item {
    border: 1px solid #eee;
}

.insights_item_content {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

.index_insights_item {
    margin: 30px 0;
}
.index_button_box{
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .index_skilled {
        padding: 15px;
    }

    .service_container {
        flex-wrap: wrap;
    }

    .index_skilled_left {
        width: 100%;
        order: 1;
        margin-top: 10px;
    }

    .service_container h3 {
        font-size: 34px;
    }

    .index_banner_container {
        padding: 15px;
        box-sizing: border-box;
        width: 90%;
        margin: 0 auto;
    }

    .index_skilled_left img {
        height: 300px;
    }

    .service_card {
        perspective: 1000px;
        position: relative;
        margin: 10px 0;
        cursor: pointer;
        width: 100%;
        height: 250px;
        border-radius: 30px;
    }

    .index_skilled_right {
        width: 100%;
        padding-left: 0px;
        box-sizing: border-box;
    }

    .index_skilled_right h2 {
        font-size: 28px;
        margin-top: 0px;
    }

    .index_skilled_right p {
        font-size: 18px;
        line-height: 28px;
        margin-top: 10px;
    }

    .index_service {
        padding: 15px;
    }

    .index_about {
        padding: 15px;
    }

    .index_title_box h2 {
        font-size: 28px;
    }

    .index_about_left {
        width: 100%;
        padding-right: 0px;
        box-sizing: border-box;
    }

    .index_insights {
        padding: 15px;
    }

    .index_about_left h2 {
        font-size: 28px;
        margin-top: 0px;
    }

    .index_insights_item {
        margin: 10px 0 25px 0;
    }

    .index_about_left p {
        font-size: 18px;
        color: #4c4c4e;
        line-height: 28px;
        margin-top: 10px;
    }

    .index_banner h1 {
        font-size: 40px;
    }

    .index_about_right img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .insights_item_p {
        font-size: 14px;
        line-height: 24px;
    }

    .index_about_right {
        width: 100%;
        margin-top: 10px;
    }

    .index_banner {
        height: 450px;
        margin-top: 0px;
        font-size: 0;
    }

    .insights_flex_center_column_box {
        padding: 15px 0 30px 0;
    }


    .index_insights_bg {
        height: 700px;
    }

}