* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "roboto_slab_light";
    src: url(../font/Roboto_Slab/RobotoSlab-Light.ttf);
}

@font-face {
    font-family: "roboto_slab_regular";
    src: url(../font/Roboto_Slab/RobotoSlab-Regular.ttf);
}

@font-face {
    font-family: "roboto_slab_medium";
    src: url(../font/Roboto_Slab/RobotoSlab-Medium.ttf);
}

@font-face {
    font-family: "roboto_slab_semibold";
    src: url(../font/Roboto_Slab/RobotoSlab-SemiBold.ttf);
}

@font-face {
    font-family: "roboto_slab_bold";
    src: url(../font/Roboto_Slab/RobotoSlab-Bold.ttf);
}

@font-face {
    font-family: "gotham_regular";
    src: url(../font/gotham/GOTHAM-REGULAR.ttf);
}

@font-face {
    font-family: "gotham_medium";
    src: url(../font/gotham/GOTHAM-MEDIUM.TTF);
}

@font-face {
    font-family: "gotham_bold";
    src: url(../font/gotham/GOTHAM-BOLD.TTF);
}

@font-face {
    font-family: "gotham_rounded_regular";
    src: url(../font/Gotham_Rounded/gothamrnd_regular.otf);
}

@font-face {
    font-family: "gotham_rounded_medium";
    src: url(../font/Gotham_Rounded/gothamrnd_medium.otf);
}

@font-face {
    font-family: "rubik_regular";
    src: url(../font/Rubik/Rubik-Regular.ttf);
}

@font-face {
    font-family: "rubik_medium";
    src: url(../font/Rubik/Rubik-Medium.ttf);
}

@font-face {
    font-family: "rubik_semibold";
    src: url(../font/Rubik/Rubik-SemiBold.ttf);
}

@font-face {
    font-family: "rubik_bold";
    src: url(../font/Rubik/Rubik-Bold.ttf);
}

@font-face {
    font-family: "roboto_reular";
    src: url(../font/Roboto/Roboto-Regular.ttf);
}

@font-face {
    font-family: "roboto_semibold";
    src: url(../font/Roboto/Roboto-SemiBold.ttf);
}

@font-face {
    font-family: "roboto_medium";
    src: url(../font/Roboto/Roboto-Medium.ttf);
}

:root {
    --roboto_slab_light: "roboto_slab_light";
    --roboto_slab_regular: "roboto_slab_regular";
    --roboto_slab_medium: "roboto_slab_medium";
    --roboto_slab_semibold: "roboto_slab_semibold";
    --roboto_slab_bold: "roboto_slab_bold";
    --gotham_regular: "gotham_regular";
    --gotham_medium: "gotham_medium";
    --gotham_bold: "gotham_bold";
    --gotham_rounded_regular: "gotham_rounded_regular";
    --gotham_rounded_medium: "gotham_rounded_medium";
    --rubik_regular: "rubik_regular";
    --rubik_medium: "rubik_medium";
    --rubik_semibold: "rubik_semibold";
    --rubik_bold: "rubik_bold";
    --roboto_regular: "roboto_regular";
    --roboto_semibold: "roboto_semibold";
    --roboto_medium: "roboto_medium";

    --fs_12: 12px;
    --fs_13: 13px;
    --fs_14: 14px;
    --fs_15: 15px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_28: 28px;
    --fs_32: 32px;
    --fs_34: 34px;
    --fs_36: 36px;
    --fs_40: 40px;
    --fs_42: 42px;
    --fs_48: 48px;
    --fs_50: 50px;
    --fs_52: 52px;
    --fs_54: 54px;
    --fs_60: 60px;

    --bg_color_1: #000000;
    --bg_color_2: #F58220;
    --bg_color_3: #3C3C3C;
    --bg_color_4: #F0F0F0;
    --bg_color_5: #FFFFFF;
    --bg_color_6: #F1F1F1;
    --bg_color_7: #333333;
    --bg_color_8: #F8F8F8;
    --bg_color_9: #4D4D4D;


    --text_color_1: #000000;
    --text_color_2: #F58220;
    --text_color_3: #3C3C3C;
    --text_color_4: #F0F0F0;
    --text_color_5: #FFFFFF;
    --text_color_6: #4D4D4D;
    --text_color_7: #F1F1F1;
    --text_color_8: #333333;
    --text_color_9: #C1C1C1;
    --text_color_10: #828282;

}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

.topbar {
    background: var(--bg_color_2);
    color: var(--text_color_4);
    font-size: var(--fs_14);
    padding: 10px 0;
}

.topbar .top_info_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .top_info_line .item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar .top_info_line .item a {
    text-decoration: none;
    color: var(--text_color_4);
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
}

.topbar .top_info_line .right_side_detail_part {
    display: flex;
    gap: 20px;
}

.mainnav {
    background: var(--bg_color_5);
}

.mainnav .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mainnav .brand-logo img {
    height: 100%;
    width: auto;
}

.mainnav .navbar-nav {
    align-items: center;
}

.mainnav .navbar-nav .nav-link {
    font-family: var(--gotham_rounded_regular);
    font-size: var(--fs_14);
    text-transform: uppercase;
    color: var(--text_color_1);
    padding: 18px 14px;
    position: relative;
    letter-spacing: 1px;
    text-wrap-mode: nowrap;
}

.mainnav .navbar-nav .nav-link.active {
    color: var(--text_color_2);
}

.mainnav .contactus_btn_part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainnav .contactus_btn_part .btn-contact {
    background: var(--bg_color_1);
    color: var(--text_color_5);
    font-family: var(--gotham_regular);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: var(--fs_14);
    text-transform: uppercase;
    border: none;
    width: fit-content;
}

.btn-contact:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .btn-contact {
        width: 100%;
        margin-top: 12px;
    }

    .topbar {
        font-size: 12px;
    }
}




.hero-swiper-wrap {
    width: 100%;
    background: var(--bg_color_5);
    position: relative;
}

.hero-swiper-wrap .heroSwiper {
    width: 100%;
    position: relative;
}

.hero-swiper-wrap .heroSwiper .hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-swiper-wrap .heroSwiper .hero-slide .hero-title {
    font-size: var(--fs_60);
    color: var(--text_color_3);
    font-family: var(--gotham_medium);
}

.hero-swiper-wrap .heroSwiper .hero-slide .hero-title .hero-accent {
    color: var(--bg_color_2);
}

.hero-swiper-wrap .heroSwiper .hero-controls {
    position: absolute;
    right: 200px;
    bottom: 22px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-progress {
    position: relative;
    width: 250px;
    height: 3px;
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-progress .track {
    position: absolute;
    inset: 0;
    background: var(--bg_color_4);
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-progress .fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0%;
    background: var(--bg_color_2);
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-arrows {
    display: flex;
    gap: 10px;
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-arrows .hero-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--bg_color_2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--bg_color_2);
    transition: all 0.2s ease;
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-arrows .hero-btn i {
    font-size: var(--fs_14);
}

.hero-swiper-wrap .heroSwiper .hero-controls .hero-arrows .hero-btn:hover {
    background: var(--bg_color_2);
    color: var(--bg_color_5);
}

.homepage_aboutus_section {
    background: var(--bg_color_5);
    padding: 100px 0;
}

.homepage_aboutus_section .about-collage {
    position: relative;
    min-height: 620px;
}

.homepage_aboutus_section .about-collage img {
    display: block;
}

.homepage_aboutus_section .about-collage .about-img-1 {
    position: absolute;
    left: 220px;
    top: 145px;
    border: 5px solid var(--bg_color_5);
    border-radius: 8px;
    z-index: 4;
}

.homepage_aboutus_section .about-collage .about-logo-2 {
    position: absolute;
    left: 60px;
    top: 200px;
    z-index: 5;
    opacity: .95;
}

.homepage_aboutus_section .about-collage .about-frame {
    position: absolute;
    left: 200px;
    top: 130px;
    z-index: 1;
}

.homepage_aboutus_section .about-collage .about-img-2 {
    position: absolute;
    left: 40px;
    top: 10px;
    z-index: 3;
    border-radius: 8px;
}

.homepage_aboutus_section .about-collage .about-logo-1 {
    position: absolute;
    left: 245px;
    top: 515px;
    z-index: 5;
}

.homepage_aboutus_section .about-collage .about-tuv {
    position: absolute;
    left: 80px;
    top: 360px;
    z-index: 2;
}

.homepage_aboutus_section .about-collage .about-year {
    position: absolute;
    left: 60%;
    top: 30px;
    z-index: 6;
    text-align: left;
    line-height: 1;
}

.homepage_aboutus_section .about-collage .about-year .year {
    font-family: var(--rubik_bold);
    font-size: var(--fs_60);
    color: var(--text_color_2);
    letter-spacing: 1px;
}

.homepage_aboutus_section .about-collage .about-year .sub {
    margin-top: 6px;
    font-size: var(--fs_24);
    color: var(--text_color_6);
    font-family: var(--rubik_regular);
    text-align: center;
}

.homepage_aboutus_section .about-right {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.homepage_aboutus_section .about-right .about-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.homepage_aboutus_section .about-right .about-head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.homepage_aboutus_section .about-right .about-head .line {
    height: 2px;
    width: 90px;
    background: var(--bg_color_2);
}

.homepage_aboutus_section .about-right .speech-card .speech-text {
    font-family: var(--gotham_medium);
    font-size: var(--fs_28);
    color: var(--text_color_6);
    line-height: 1.2;
}

.homepage_aboutus_section .about-right .speech-card .speech-text .accent {
    color: var(--text_color_2);
}

.homepage_aboutus_section .about-right .speech-card .shape_img {
    margin-top: -80px;
}

.homepage_aboutus_section .about-right .about-btn {
    font-family: var(--gotham_rounded_regular);
    margin-top: 70px;
    background: var(--bg_color_2);
    color: var(--text_color_5);
    border-radius: 4px;
    padding: 10px 18px;
    font-size: var(--fs_16);
    border: none;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    width: fit-content;
}

.homepage_aboutus_section .about-right .speech-bubble {
    position: relative;
    width: 100%;
    border: 2px solid #111;
    border-left: none;
    border-top: none;
    border-radius: 20px 0 20px 0;
    padding: 40px 0 40px 0;
    background: var(--bg_color_5);
}

.homepage_aboutus_section .about-right .speech-bubble:before {
    content: "";
    position: absolute;
    left: 70px;
    bottom: -42px;
    width: 90px;
    height: 42px;
    background: #111;
    clip-path: polygon(0 0, 0 100%, 85% 0);
}

.homepage_aboutus_section .about-right .speech-bubble:after {
    content: "";
    position: absolute;
    left: 72px;
    bottom: -37px;
    width: 86px;
    height: 38px;
    background: var(--bg_color_5);
    clip-path: polygon(0 0, 0 100%, 85% 0);
}

.homepage_aboutus_section .speech-text {
    margin: 0;
    position: relative;
    z-index: 2;
}

.homepage_vertical_slider_section .scroll-section {
    position: relative;
    padding-left: 20px;
}

.homepage_vertical_slider_section .scroll-section .scroll-progress-container {
    position: absolute;
    left: 5px;
    top: 40px;
    width: 8px;
    height: 97%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.homepage_vertical_slider_section .scroll-section .scroll-progress-container .scroll-progress-bar {
    width: 100%;
    height: 0%;
    background-color: var(--bg_color_2);
    border-radius: 10px;
    transition: height 0.2s ease-out;
}

.homepage_vertical_slider_section .scroll-section .rcm-cards .rcm-solution-card {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.homepage_vertical_slider_section .scroll-section .rcm-cards .rcm-solution-card .card__inner {
    will-change: transform;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: block;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    overflow: hidden;
    -webkit-transform-origin: center top;
    -moz-transform-origin: center top;
    -o-transform-origin: center top;
    transform-origin: center top;
    background-color: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    padding: 40px 0px 0px 40px;
}

.homepage_vertical_slider_section .scroll-section .rcm-solution-card .card__inner .rcm-service-card-content .title {
    font-size: var(--fs_32);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
}

.homepage_vertical_slider_section .scroll-section .rcm-solution-card .card__inner .rcm-service-card-content .desc {
    background-color: var(--bg_color_4);
    padding: 15px 20px;
    font-family: var(--roboto_slab_light);
    color: var(--text_color_1);
    border-radius: 8px;
    margin-top: 30px;
}

.homepage_vertical_slider_section .scroll-section .rcm-cards .rcm-solution-card .card__inner .rcm-service-card-img {
    display: flex;
    justify-content: flex-end;
}

.homepage_vertical_slider_section .scroll-section .rcm-cards .rcm-solution-card .card__inner .rcm-service-card-img .main_img {
    height: auto;
    width: 100%;
}

.homepage_vertical_slider_section .scroll-section .rcm-cards .rcm-solution-card .card__inner .rcm-service-card-img .logo_white {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

@media only screen and (max-width: 576px) {

    .homepage_vertical_slider_section .scroll-section .scroll-progress-container {
        background-color: transparent;
    }

    .homepage_vertical_slider_section .scroll-section .scroll-progress-container .scroll-progress-bar {
        background-color: transparent;
    }

}

.homepage_achievements_section {
    padding: 100px 0;
    position: relative;
}

.homepage_achievements_section .shape_imge {
    position: absolute;
    right: 0;
}

.homepage_achievements_section .right_side_content_part .achievements-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.homepage_achievements_section .right_side_content_part .achievements-head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.homepage_achievements_section .right_side_content_part .achievements-head .line {
    height: 2px;
    width: 90px;
    background: var(--bg_color_2);
}

.homepage_achievements_section .right_side_content_part .desc_part p {
    margin-bottom: 0;
    font-size: var(--fs_32);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
}

.homepage_achievements_section .right_side_content_part .card {
    border: none;
    background-color: var(--bg_color_6);
    padding: 20px;
}

.homepage_achievements_section .right_side_content_part .card_row .card {
    margin-top: 30px;
}

.homepage_achievements_section .right_side_content_part .card_row .card .card-title {
    font-family: var(--roboto_slab_semibold);
    font-size: var(--fs_32);
    color: var(--text_color_2);
    padding-bottom: 20px;
    border-bottom: 1px solid #D7D7D7;
}

.homepage_achievements_section .right_side_content_part .card_row .card .card-text {
    font-family: var(--roboto_slab_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    padding-top: 15px;
}

.homepage_achievements_section .right_side_content_part .knowmore-btn {
    font-family: var(--gotham_rounded_regular);
    margin-top: 35px;
    background: var(--bg_color_2);
    color: var(--text_color_5);
    border-radius: 4px;
    padding: 10px 18px;
    font-size: var(--fs_16);
    border: none;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    width: fit-content;
    margin-left: 12px;
}

.homepage_innovation_section {
    background: var(--bg_color_5);
    padding: 0 0 100px 0;
}

.homepage_innovation_section .innovation_row {
    margin: 0 auto 0 380px;
    background: var(--bg_color_7);
}

.homepage_innovation_section .innovation_row .innovation_card {
    position: relative;
    min-height: 450px;
    padding: 28px;
    background: var(--bg_color_7);
    border-right: 1px solid #979797;
}

.homepage_innovation_section .innovation_row .innovation_card .innovation_content h3 {
    color: var(--text_color_5);
    font-size: var(--fs_32);
    font-family: var(--gotham_medium);
    margin-bottom: 15px;
}

.homepage_innovation_section .innovation_row .innovation_card .innovation_content p {
    color: var(--text_color_9);
    font-size: var(--fs_16);
    font-family: var(--roboto_slab_regular);
}

.homepage_innovation_section .innovation_row .innovation_card .innovation_icon {
    position: absolute;
    left: 24px;
    bottom: 24px;
}

.homepage_innovation_section .innovation_row .innovation_card .innovation_icon img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.homepage_innovation_section .innovation_row .third_card {
    position: relative;
    overflow: hidden;
}

.homepage_innovation_section .innovation_row .third_card .orangeshape {
    position: absolute;
    top: 0;
    right: 0;
    width: 260px;
    max-width: none;
    pointer-events: none;
    z-index: 1;
}

@media only screen and (min-width: 992px) {
    .homepage_innovation_section .col-lg-4:last-child .innovation_card {
        border-right: 0;
    }
}

@media only screen and (max-width: 992px) {
    .innovation_card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        min-height: 220px;
    }

    .col-lg-4:last-child .innovation_card {
        border-bottom: 0;
    }
}

.homepage_ourclient_section {
    padding: 0 0 100px 0;
    background: var(--bg_color_5);
}

.homepage_ourclient_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homepage_ourclient_section .heading_part .ourclients-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.homepage_ourclient_section .heading_part .ourclients-head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.homepage_ourclient_section .heading_part .ourclients-head .line {
    height: 2px;
    width: 40px;
    background: var(--bg_color_2);
}

.homepage_ourclient_section .heading_part h3 {
    margin-bottom: 20px;
    font-size: var(--fs_50);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
}

.homepage_ourclient_section .software-slider-wrap {
    padding: 0 30px;
}

.homepage_ourclient_section .software-slider-wrap .software-row {
    margin: 14px 0;
}

.homepage_ourclient_section .software-slider-wrap .slick::before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/software-shadow.png");
    background-repeat: no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    z-index: 11;
}

.homepage_ourclient_section .software-slider-wrap .slick-track {
    display: flex !important;
    align-items: center;
}

.homepage_ourclient_section .software-slider-wrap .slick-slide {
    height: auto;
}

.homepage_ourclient_section .software-slider-wrap .slick-slide .inner {
    margin: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homepage_ourclient_section .software-slider-wrap .slick-slide .inner img {
    width: auto;
    object-fit: contain;
}

@media only screen and (max-width: 768px) {
    .homepage_ourclient_section .software-slider-wrap {
        padding: 0 10px;
    }
}

.homepage_clientfeedback_section {
    padding: 80px 0;
    background: #f5f6f7;
}

.homepage_clientfeedback_section .feedback_wrapper {
    background: #2f2f2f;
    border-radius: 10px;
    padding: 60px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback_label .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_5);
    font-family: var(--roboto_slab_regular);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback_label .line {
    height: 2px;
    width: 40px;
    background: var(--bg_color_2);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left h3 {
    margin-bottom: 20px;
    font-size: var(--fs_50);
    font-family: var(--gotham_medium);
    color: var(--text_color_5);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left p {
    font-size: var(--fs_18);
    color: var(--text_color_5);
    font-family: var(--rubik_regular);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback_nav {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback-prev,
.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--text_color_5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_color_5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_left .feedback-next {
    border-color: var(--text_color_2);
    color: var(--text_color_2);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right {
    height: 100%;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .stars {
    color: var(--text_color_2);
    font-size: 24px;
    margin-bottom: 14px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .review {
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin-bottom: 40px;
    font-family: var(--roboto_slab_medium);
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .client_info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .client_info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .client_info h5 {
    font-size: var(--fs_20);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
    margin-bottom: 5px;
}

.homepage_clientfeedback_section .feedback_wrapper .feedback_right .testimonial_card .client_info span {
    font-size: var(--fs_18);
    font-family: var(--gotham_rounded_medium);
    color: var(--text_color_6);
}

.homepage_clientfeedback_section .testimonialSwiper {
    height: 100%;
}

.homepage_clientfeedback_section .testimonialSwiper .swiper-wrapper {
    align-items: stretch;
}

.homepage_clientfeedback_section .testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.homepage_clientfeedback_section .testimonialSwiper .swiper-slide .testimonial_card {
    height: 100%;
    width: 100%;
}

footer {
    background-image: url(../images/footer_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 50px 0;
}

footer .left_side_main_part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .left_side_main_part .tag_line_part p {
    margin-bottom: 0;
    font-size: var(--fs_32);
    font-family: var(--gotham_medium);
    font-style: italic;
    color: var(--text_color_2);
    line-height: 1.2;
}

footer .first_part h4,
footer .second_part h4,
footer .third_part h4,
footer .fourth_part h4 {
    font-family: var(--roboto_slab_medium);
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin-bottom: 20px;
}

footer .first_part p,
footer .second_part p,
footer .third_part p,
footer .fourth_part p {
    color: var(--text_color_6);
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
    font-weight: 600;
    margin-bottom: 5px;
}

footer .first_part p a,
footer .second_part p a,
footer .third_part p a,
footer .fourth_part p a {
    text-decoration: none;
    color: var(--text_color_6);
}

footer .third_part .add {
    font-weight: 500;
}

footer .third_part .social_media_icon_part img {
    margin-right: 10px;
}

footer .bottom_main_part {
    margin-top: 30px;
}

footer .bottom_main_part .left_side_part p {
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
    color: var(--text_color_6);
    margin-bottom: 0;
    font-weight: 600;
}

footer .bottom_main_part .right_side_part {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

footer .bottom_main_part .right_side_part span {
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
    color: var(--text_color_6);
    font-weight: 600;
    margin-bottom: 0;
}

footer .bottom_main_part .right_side_part span a {
    text-decoration: none;
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
    color: var(--text_color_6);
    font-weight: 600;
    margin-bottom: 0;
}

footer .footer_logo_part {
    margin: 90px 0 20px 0;
}

footer .right_side_form_part {
    background-color: var(--text_color_4);
    padding: 40px;
    border-radius: 8px;
}

footer .right_side_form_part .heading_part h3 {
    font-family: var(--gotham_regular);
    font-weight: 600;
    font-size: var(--fs_50);
    color: var(--text_color_1);
}

footer .right_side_form_part .heading_part .mail_part p {
    color: var(--text_color_2);
    font-family: var(--roboto_slab_regular);
    font-size: var(--fs_14);
    margin-bottom: 40px;
}

footer .right_side_form_part .fields_part {
    display: flex;
    flex-direction: column;
}

footer .right_side_form_part .fields_part label {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    font-weight: 600;
    margin-bottom: 5px;
}

footer .right_side_form_part .fields_part input,
footer .right_side_form_part .fields_part textarea {
    border: none;
    background: var(--bg_color_5);
    border-radius: 4px;
    padding: 15px 15px;
}

footer .right_side_form_part .fields_part input:focus,
footer .right_side_form_part .fields_part input:focus-visible,
footer .right_side_form_part .fields_part textarea:focus,
footer .right_side_form_part .fields_part textarea:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

footer .right_side_form_part button {
    color: var(--text_color_4);
    background: var(--bg_color_2);
    font-size: 16px;
    font-family: var(--gotham_regular);
    border: none;
    border-radius: 4px;
    padding: 10px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}


.breadcrumb_section {
    width: 100%;
}

.breadcrumb_wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.breadcrumb_wrap .breadcrumb_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.breadcrumb_wrap .breadcrumb_content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb_wrap .breadcrumb_title {
    color: var(--text_color_5);
    font-size: var(--fs_40);
    letter-spacing: 1px;
    font-family: var(--gotham_medium);
    text-transform: uppercase;
    margin: 0;
}

.aboutus_first_section {
    padding: 100px 0;
}

.aboutus_first_section .left_side_content_part .whoweare_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.aboutus_first_section .left_side_content_part .whoweare_head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.aboutus_first_section .left_side_content_part .whoweare_head .line {
    height: 2px;
    width: 90px;
    background: var(--bg_color_2);
}

.aboutus_first_section .heading_part p {
    font-family: var(--gotham_medium);
    font-size: var(--fs_40);
    line-height: 1;
    margin: 0;
    background: linear-gradient(90deg,
            #F58220 0%,
            #F58220 25%,
            #000000 75%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 15px;
}

.aboutus_first_section .right_side_content_part {
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutus_first_section .right_side_content_part p {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_10);
}

.aboutus_first_section .right_side_content_part p:nth-last-of-type(1) {
    margin-bottom: 0;
}

.aboutus_second_section .row>div:nth-child(1) .card {
    background-image: url(../images/our_vision_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 40px 30px;
    border: none;
    border-radius: 10px;
}

.aboutus_second_section .card .our_vision_part .content_part h3 {
    font-family: var(--gotham_medium);
    font-size: var(--fs_24);
    color: var(--text_color_1);
    margin: 30px 0 20px 0;
}

.aboutus_second_section .card .our_vision_part .content_part p {
    font-family: var(--gotham_regular);
    color: var(--text_color_6);
    font-size: var(--fs_20);
    line-height: 1.3;
}

.aboutus_second_section .card .our_vision_part .content_part p:nth-last-of-type(1) {
    margin-bottom: 0;
}

.aboutus_second_section .row>div:nth-child(2) .card {
    background-image: url(../images/our_mission_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 40px 30px;
    border: none;
    border-radius: 10px;
}

.aboutus_second_section .card .our_mission_part .content_part h3 {
    font-family: var(--gotham_medium);
    font-size: var(--fs_24);
    color: var(--text_color_1);
    margin: 30px 0 20px 0;
}

.aboutus_second_section .card .our_mission_part .content_part p {
    font-family: var(--gotham_regular);
    color: var(--text_color_6);
    font-size: var(--fs_20);
    line-height: 1.3;
}

.aboutus_second_section .card .our_mission_part .content_part p:nth-last-of-type(1) {
    margin-bottom: 0;
}

.aboutus_second_section .card .our_mission_part .content_part ul li {
    font-family: var(--gotham_regular);
    color: var(--text_color_6);
    font-size: var(--fs_20);
    line-height: 1.3;
}

.aboutus_second_section .card .our_mission_part .content_part ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

.aboutus_third_section {
    padding: 100px 0;
}

.aboutus_third_section .left_side_content_part .values_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.aboutus_third_section .left_side_content_part .values_head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
    margin-bottom: 0;
}

.aboutus_third_section .left_side_content_part .values_head .line {
    height: 2px;
    width: 90px;
    background: var(--bg_color_2);
}

.aboutus_third_section .heading_part .title {
    font-family: var(--gotham_medium);
    font-size: var(--fs_50);
    color: var(--text_color_1);
    line-height: 1;
}

.aboutus_third_section .heading_part .desc {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_10);
    margin-top: 30px;
}

.aboutus_third_section .right_side_content_part {
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutus_third_section .right_side_content_part {
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}

.aboutus_third_section .right_side_content_part .strength_item {
    display: flex;
    gap: 16px;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.aboutus_third_section .right_side_content_part .strength_item.last {
    border-bottom: none;
    padding-bottom: 0;
}

.aboutus_third_section .right_side_content_part .strength_item .num {
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: var(--bg_color_2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--roboto_slab_bold);
    font-size: var(--fs_16);
    flex: 0 0 26px;
    margin-top: 2px;
}

.aboutus_third_section .right_side_content_part .strength_item .info h4 {
    margin: 0 0 8px 0;
    font-family: var(--gotham_medium);
    font-size: var(--fs_24);
    color: var(--text_color_1);
    line-height: 1.2;
}

.aboutus_third_section .right_side_content_part .strength_item .info p {
    margin: 0;
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_10);
    line-height: 1.45;
}

.about_fourth_section {
    padding: 0 0 100px 0;
    background: var(--bg_color_5);
}

.about_fourth_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about_fourth_section .heading_part .journey_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.about_fourth_section .heading_part .journey_head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.about_fourth_section .heading_part .journey_head .line {
    height: 2px;
    width: 40px;
    background: var(--bg_color_2);
}

.about_fourth_section .heading_part h3 {
    margin-bottom: 20px;
    font-size: var(--fs_50);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
}

.about_fourth_section .timeline-wrapper {
    margin-top: 50px;
}

.about_fourth_section .timeline-wrapper *,
.about_fourth_section .timeline-wrapper *::before,
.about_fourth_section .timeline-wrapper *::after {
    box-sizing: border-box;
}

.about_fourth_section .timeline-wrapper .timeline {
    position: relative;
    padding: 0 24px 50px;
    list-style: none;
}

.about_fourth_section .timeline-wrapper .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-left: 2px dashed var(--bg_color_3);
}

.about_fourth_section .timeline-wrapper .event {
    position: relative;
    margin-bottom: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 110px;
}

.about_fourth_section .timeline-wrapper .event::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg_color_2);
    border-radius: 50%;
    background: #fff;
    z-index: 2;
}

.about_fourth_section .timeline-wrapper .event::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--bg_color_2);
    border-radius: 50%;
    z-index: 3;
}

.about_fourth_section .timeline-wrapper .event-date,
.about_fourth_section .timeline-wrapper .event-desc {
    width: 46%;
}

.about_fourth_section .timeline-wrapper .event-date {
    font-size: var(--fs_48);
    color: var(--text_color_2);
    font-family: var(--gotham_medium);
    line-height: 1;
}

.about_fourth_section .timeline-wrapper .event-desc {
    padding: 24px 24px;
    background-color: var(--text_color_6);
    color: var(--text_color_5);
    font-family: var(--gotham_regular);
    font-size: var(--fs_24);
    line-height: 1.4;
    position: relative;
    transform: translateX(0);
    will-change: transform;
    transition: transform 650ms cubic-bezier(.2, .8, .2, 1);
    border-radius: 4px;
}

.about_fourth_section .timeline-wrapper .event-desc p {
    margin-bottom: 0;
}

.about_fourth_section .timeline-wrapper .event:nth-child(odd) .event-desc {
    order: 1;
}

.about_fourth_section .timeline-wrapper .event:nth-child(odd) .event-date {
    order: 2;
    text-align: left;
}

.about_fourth_section .timeline-wrapper .event:nth-child(even) .event-date {
    order: 1;
    text-align: right;
}

.about_fourth_section .timeline-wrapper .event:nth-child(even) .event-desc {
    order: 2;
}

.about_fourth_section .timeline-wrapper .event-desc.from-left {
    transform: translateX(-120px);
}

.about_fourth_section .timeline-wrapper .event-desc.from-right {
    transform: translateX(120px);
}


.about_fourth_section .timeline-wrapper .event-desc.in-view {
    transform: translateX(0);
}

@media only screen and (max-width:992px) {
    .about_fourth_section .timeline-wrapper .timeline {
        padding: 0 18px 40px;
    }

    .about_fourth_section .timeline-wrapper .timeline::before {
        left: 24px;
        transform: none;
    }

    .about_fourth_section .timeline-wrapper .event {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
        min-height: auto;
    }

    .about_fourth_section .timeline-wrapper .event::before {
        left: 24px;
        transform: translate(-50%, -50%);
    }

    .about_fourth_section .timeline-wrapper .event-date,
    .about_fourth_section .timeline-wrapper .event-desc {
        width: 100%;
        order: unset;
        text-align: left !important;
    }

    .about_fourth_section .timeline-wrapper .event-date {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .about_fourth_section .timeline-wrapper .event:nth-child(odd) .event-date {
        order: 1;
    }

    .about_fourth_section .timeline-wrapper .event::before {
        top: 9%;
        left: 1%;
    }

    .about_fourth_section .timeline-wrapper .event::after {
        top: 9%;
        left: 1%;
    }
}

@media only screen and (max-width:768px) {
    .about_fourth_section .timeline-wrapper .event::before {
        top: 9%;
        left: 1.5%;
    }

    .about_fourth_section .timeline-wrapper .event::after {
        top: 9%;
        left: 1.5%;
    }
}

@media only screen and (max-width:576px) {
    .about_fourth_section .timeline-wrapper .event::before {
        top: 9%;
        left: 1.5%;
    }

    .about_fourth_section .timeline-wrapper .event::after {
        top: 9%;
        left: 1.5%;
    }
}

.about_fourth_section .bottom_text_part {
    margin-top: 30px;
}

.about_fourth_section .bottom_text_part p {
    margin-bottom: 0;
    font-size: var(--fs_24);
    font-family: var(--gotham_rounded_regular);
    text-align: center;
    color: var(--text_color_3);
}

.about_fourth_section .bottom_text_part p span {
    color: var(--text_color_2);
    font-weight: 600;
}

.capabilities_first_section {
    background-color: var(--bg_color_5);
    overflow-x: clip;
    padding: 100px 0 100px 0;
}

.capabilities_first_section .capabilities-item-wrap {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item {
    width: 100%;
    min-height: 500px;
    position: sticky;
    top: 20px;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg_color_9);
    will-change: transform;
}

.capabilities_first_section .capabilities-item {
    display: grid;
    grid-template-columns: 660px 1fr;
    align-items: center;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item:not(:last-of-type) {
    margin-bottom: 24px;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content {
    background: var(--bg_color_9);
    padding: 70px 30px;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .number {
    font-family: var(--roboto_slab_medium);
    font-size: 98px;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--text_color_2);
    text-stroke: 2px var(--text_color_2);
    letter-spacing: 1px;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .title {
    font-family: var(--gotham_rounded_medium);
    font-size: var(--fs_32);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text_color_2);
    margin: 0 0 22px 0;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .desc {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    line-height: 1.3;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--text_color_7);
    margin: 0 0 28px 0;
    max-width: 520px;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .infotitle {
    font-family: var(--gotham_rounded_medium);
    font-size: var(--fs_16);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text_color_5);
    margin: 0 0 0 0;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .info {
    font-family: var(--gotham_rounded_medium);
    font-size: var(--fs_16);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text_color_5);
    margin: 0;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content ul {
    margin: 14px 0 0 18px;
    padding: 0;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content ul li {
    font-family: var(--gotham_regular);
    font-size: var(--fs_14);
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--text_color_7);
    margin-bottom: 8px;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-img {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1399px) {
    .capabilities_first_section .capabilities-item-wrap .capabilities-item {
        grid-template-columns: 50% 1fr;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content p br {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content {
        order: 1;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-img {
        order: 2;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .number {
        font-size: 72px;
        -webkit-text-stroke: 1.5px var(--text_color_2);
        text-stroke: 1.5px var(--text_color_2);
        margin-bottom: 18px;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .title {
        font-size: var(--fs_24);
        margin-bottom: 18px;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .desc {
        font-size: var(--fs_13);
        margin-bottom: 22px;
        max-width: 100%;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item {
        grid-template-columns: 1fr;
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .title {
        font-size: var(--fs_36);
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content p {
        font-size: var(--fs_16);
    }
}

@media only screen and (max-width: 768px) {
    .capabilities_first_section .capabilities-item-wrap .capabilities-item {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 480px) {
    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .number {
        font-size: var(--fs_60);
    }

    .capabilities_first_section .capabilities-item-wrap .capabilities-item .capabilities-content .title {
        font-size: var(--fs_20);
    }
}

.industries_first_section {
    padding: 100px 0;
}

.industries_first_section .left_side_content_part .whoweare_head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.industries_first_section .heading_part p {
    font-family: var(--gotham_medium);
    font-size: var(--fs_40);
    line-height: 1;
    margin: 0;
    background: linear-gradient(90deg,
            #F58220 0%,
            #F58220 25%,
            #000000 75%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.industries_first_section .right_side_content_part {
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industries_first_section .right_side_content_part p {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_10);
}

.industries_first_section .card_part {
    margin-top: 100px;
}

.industries_first_section .card_part .card {
    border: 1.5px solid var(--bg_color_2);
    border-radius: 8px;
    overflow: hidden;
    background-color: #FFFAF6;
    box-shadow: 0px 1px 14px rgba(244, 129, 32, 0.25);
    height: 100%;
}

.industries_first_section .card_part .card .image_part {
    position: relative;
    padding: 18px 18px 0 18px;
}

.industries_first_section .card_part .card .image_part .industries_img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.industries_first_section .card_part .card .image_part .icon_part {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.industries_first_section .card_part .card .image_part .icon_part img {
    width: auto;
    height: 40px;
}

.industries_first_section .card_part .card .card-body {
    padding: 20px 20px 20px 20px;
    text-align: left;
}

.industries_first_section .card_part .card .card-title {
    font-family: var(--gotham_bold);
    font-size: var(--fs_24);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text_color_2);
    font-family: var(--roboto_slab_medium);
    margin-bottom: 12px;
}

.industries_first_section .card_part .card .card-text {
    font-family: var(--gotham_rounded_regular);
    font-size: var(--fs_16);
    line-height: 1.3;
    color: var(--text_color_6);
    margin: 0;
    letter-spacing: 0.8px;
}

.contact_first_section {
    padding: 100px 0;
}

.contact_first_section .heading_part .heading p {
    font-family: var(--gotham_medium);
    font-size: var(--fs_40);
    line-height: 1;
    margin: 0;
    background: linear-gradient(90deg,
            #F58220 0%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-top: 50px;
    text-align: center;
}

.contact_first_section .card_part {
    margin-top: 50px;
}

.contact_first_section .card_part .card {
    border-radius: 10px;
    box-shadow: 0px 1px 14px rgba(244, 129, 32, 0.25);
    background-color: var(--bg_color_5);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    cursor: pointer;
    border: none;
}

.contact_first_section .card_part .card .icon_wrap {
    width: 90px;
    height: 90px;
    background-color: #f5832045;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.contact_first_section .card_part .card .icon_wrap i {
    font-size: var(--fs_36);
    color: var(--text_color_2);
    transition: color 0.4s ease;
}

.contact_first_section .card_part .card:hover .icon_wrap i {
    color: var(--text_color_5);
}

.contact_first_section .card_part .card:hover .icon_wrap {
    background-color: var(--bg_color_2);
}

.contact_first_section .card_part .card .title {
    font-family: var(--gotham_rounded_medium);
    font-size: var(--fs_24);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text_color_1);
    margin-top: 30px;
}

.contact_first_section .card_part .card .detail {
    font-family: var(--gotham_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    margin-bottom: 0;
}

.contact_second_section {
    padding: 0 0 100px 0;
}

.contact_second_section .card {
    border-radius: 10px;
    box-shadow: 0px 1px 14px rgba(244, 129, 32, 0.25);
    border: none;
    padding: 40px;
    height: 100%;
}

.contact_second_section .card .enquiry_form .enquiry_title {
    margin-bottom: 0;
    font-size: var(--fs_40);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
    margin-bottom: 50px;

}

.contact_second_section .card .enquiry_form .input_box {
    margin-bottom: 40px;
}

.contact_second_section .card .enquiry_form .input_box input,
.contact_second_section .card .enquiry_form .input_box textarea {
    border-bottom: 1px dashed var(--bg_color_9);
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--gotham_regular);
    width: 100%;
    padding: 0 0 8px 0;
    font-size: var(--fs_18);
}

.contact_second_section .card .enquiry_form .input_box input:focus,
.contact_second_section .card .enquiry_form .input_box textarea:focus {
    outline: none;
}

.contact_second_section .card .enquiry_form .send_btn_wrapper .send_btn {
    color: var(--text_color_4);
    background: var(--bg_color_2);
    font-size: 16px;
    font-family: var(--gotham_regular);
    border: none;
    border-radius: 4px;
    padding: 10px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.career_first_section {
    background-color: var(--bg_color_5);
    padding: 100px 0 100px 0;
}

.career_first_section .card {
    border-radius: 10px;
    box-shadow: 0px 1px 14px rgba(244, 129, 32, 0.25);
    border: none;
    padding: 40px;
    height: 100%;
}

.career_first_section .card .enquiry_form .enquiry_title {
    margin-bottom: 0;
    font-size: var(--fs_40);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
    margin-bottom: 50px;
}

.career_first_section .card .enquiry_form .input_box {
    margin-bottom: 40px;
}

.career_first_section .card .enquiry_form .input_box input,
.career_first_section .card .enquiry_form .input_box textarea,
.career_first_section .card .enquiry_form .input_box select {
    border-bottom: 1px dashed var(--bg_color_9);
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--gotham_regular);
    width: 100%;
    padding: 0 0 8px 0;
    font-size: var(--fs_18);
}

.career_first_section .card .enquiry_form .input_box select {
    color: var(--text_color_6);
}

.career_first_section .card .enquiry_form .input_box input:focus,
.career_first_section .card .enquiry_form .input_box textarea:focus,
.career_first_section .card .enquiry_form .input_box select:focus {
    outline: none;
}

.career_first_section .card .enquiry_form .send_btn_wrapper .send_btn {
    color: var(--text_color_4);
    background: var(--bg_color_2);
    font-size: 16px;
    font-family: var(--gotham_regular);
    border: none;
    border-radius: 4px;
    padding: 10px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.career_first_section .card .job_openings_part .job_opening_title {
    margin-bottom: 0;
    font-size: var(--fs_28);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
    margin-bottom: 50px;
}

.career_first_section .card .job_openings_part .job_list_part p {
    font-family: var(--gotham_regular);
    font-size: var(--fs_20);
    width: 100%;
    margin-bottom: 5px;
}

.homepage_keyindustries_section {
    padding: 0 0 100px 0;
    background: var(--bg_color_5);
}

.homepage_keyindustries_section .heading_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.homepage_keyindustries_section .heading_part .keyindustries-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.homepage_keyindustries_section .heading_part .keyindustries-head .label {
    font-size: var(--fs_16);
    letter-spacing: 1.5px;
    color: var(--text_color_6);
    font-family: var(--roboto_slab_regular);
}

.homepage_keyindustries_section .heading_part .keyindustries-head .line {
    height: 2px;
    width: 40px;
    background: var(--bg_color_2);
}

.homepage_keyindustries_section .heading_part h3 {
    margin-bottom: 20px;
    font-size: var(--fs_50);
    font-family: var(--gotham_medium);
    color: var(--text_color_1);
}

.homepage_keyindustries_section .chef_image_part {
    margin-top: 50px;
}

.homepage_keyindustries_section .chef_image_part .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.homepage_keyindustries_section .chef_image_part .menu li {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 30px 0;
    position: relative;
    border-bottom: 0.5px solid #D4D4D4;
    cursor: pointer;
}

.homepage_keyindustries_section .chef_image_part .menu li:hover .left,
.homepage_keyindustries_section .chef_image_part .menu li:hover .right {
    color: var(--text_color_2);
}

.homepage_keyindustries_section .chef_image_part .menu .left,
.homepage_keyindustries_section .chef_image_part .menu .right {
    text-align: center;
}

.homepage_keyindustries_section .chef_image_part .menu .left {
    margin-right: 60px;
    font-size: var(--fs_24);
    color: var(--text_color_10);
    font-family: var(--roboto_slab_semibold);
}

.homepage_keyindustries_section .chef_image_part .menu .right {
    font-size: var(--fs_40);
    color: var(--text_color_10);
    font-family: var(--rubik_semibold);
}

.homepage_keyindustries_section .chef_image_part .menu .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 240px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    transform: translate3d(0, 0, 0) scale(0.9);
}

.homepage_keyindustries_section .chef_image_part .menu .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.new_header_part {
    background-color: var(--bg_color_5) !important;
    background-image: url(../images/herobg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100px;
    width: 100%;
    position: relative;
    z-index: 999;
    /* box-shadow: 0 1px 0 0 #E8E8E8; */
    transition: background-color 250ms ease, box-shadow 250ms ease, height 250ms ease;
}

.new_header_part.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    box-shadow: 0 1px 0 0 #E8E8E8;
    height: 100px;
}

.new_header_part [type="checkbox"]:checked,
.new_header_part [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.new_header_part .menu-icon:checked+label,
.new_header_part .menu-icon:not(:checked)+label {
    position: fixed;
    top: 45px;
    right: 68px;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 10;
}

.new_header_part .menu-icon:checked+label:before,
.new_header_part .menu-icon:not(:checked)+label:before {
    position: absolute;
    content: '';
    display: block;
    width: 25px;
    height: 20px;
    z-index: 20;
    top: 0;
    left: 0;
    border-top: 2px solid #ececee;
    border-bottom: 2px solid #ececee;
    transition: border-width 100ms 1500ms ease,
        top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
        height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 200ms ease,
        transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.new_header_part .menu-icon:checked+label:after,
.new_header_part .menu-icon:not(:checked)+label:after {
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    z-index: 20;
    top: 10px;
    right: 4px;
    background-color: #ececee;
    margin-top: -1px;
    transition: width 100ms 1750ms ease,
        right 100ms 1750ms ease,
        margin-top 100ms ease,
        transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.new_header_part .menu-icon:checked+label:before {
    top: 10px;
    transform: rotate(45deg);
    height: 2px;
    background-color: #ececee;
    border-width: 0;
    transition: border-width 100ms 340ms ease,
        top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
        background-color 200ms 500ms ease,
        transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.new_header_part .menu-icon:checked+label:after {
    width: 30px;
    margin-top: 0;
    right: 0;
    transform: rotate(-45deg);
    transition: width 100ms ease,
        right 100ms ease,
        margin-top 100ms 500ms ease,
        transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.new_header_part .nav {
    position: fixed;
    top: 18px;
    right: 50px;
    display: block;
    width: 70px;
    height: 70px;
    padding: 0;
    margin: 0;
    z-index: 9;
    overflow: hidden;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
    background-color: #4D4D4D;
    animation: border-transform 7s linear infinite;
    transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
        right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 250ms 1100ms ease,
        width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
        height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes border-transform {

    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

.new_header_part .menu-icon:checked~.nav {
    animation-play-state: paused;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 200%;
    height: 200%;
    transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
        right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
        transform 250ms 700ms ease,
        width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
        height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.new_header_part .nav ul {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 6;
    text-align: center;
    transform: translateY(-50%);
    list-style: none;
}

.new_header_part .nav ul li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    text-align: center;
    list-style: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    /* transform: translateY(30px); */
    /* transition: all 250ms linear; */
}

/* .new_header_part .nav ul li {
    transition-delay: 200ms;
} */

.new_header_part .nav ul li a {
    font-family: var(--roboto_slab_bold);
    font-size: var(--fs_50);
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    color: var(--text_color_5);
    transition: all 250ms linear;
    text-decoration: none;
}

.new_header_part .nav ul li a:hover {
    text-decoration: none;
    color: var(--text_color_2);
}

.new_header_part .menu-icon:checked~.nav ul li {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 350ms ease,
        transform 250ms ease;
}

.new_header_part .menu-icon:checked~.nav ul li {
    transition-delay: 1000ms;
}

.new_header_part .logo {
    position: fixed;
    left: 60px;
    z-index: 20;
    transition: all 250ms ease;
}

.new_header_part .menu-icon:checked~.logo {
    z-index: 1;
}

.new_header_part .logo img {
    width: auto;
    display: block;
    height: 90px;
}

@media screen and (max-width: 992px) {

    .new_header_part .menu-icon:checked+label,
    .new_header_part .menu-icon:not(:checked)+label {
        right: 48px;
    }

    .new_header_part .logo {
        left: 30px;
    }

    .new_header_part .nav {
        right: 30px;
    }

    .new_header_part h1 {
        font-size: var(--fs_32);
        -webkit-text-stroke: 2px transparent;
        text-stroke: 2px transparent;
        -webkit-text-fill-color: var(--text_color_2);
        text-fill-color: var(--text_color_2);
        color: var(--text_color_2);
    }

    .new_header_part .nav ul li a {
        font-size: var(--fs_32);
    }

}

.hero-style2 {
    padding: 100px 0 100px 0;
    /* margin: 0 300px; */
    position: relative;
    background-image: url(../images/herobg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-style2 .caption h2 {
    font-family: var(--gotham_medium);
    font-size: 66px;
    line-height: 1.1;
    color: var(--text_color_6);
    text-align: center;
}

.hero-style2 .caption h2 span {
    color: var(--text_color_2);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.main_banner_image_section.banner_part {
    margin-top: 50px;
}

.intro-style1 .container-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.intro-style1 .rectangle {
    background-color: #d2d7d3;
    height: 500px;
    width: 25%;
    border-radius: 15px;
    margin: 0 5px;
}