b*,
*::before,
*::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*{
    margin:0;
    padding:0;
}
@font-face {
    font-family: "AeonikTRIAL-Regular";
    src: url("font/AeonikTRIAL-Regular.otf");
    src: url("font/AeonikTRIAL-Regular.otf") format("opentype");
}

@font-face {
    font-family: "AeonikTRIAL-Bold";
    src: url("font/AeonikTRIAL-Bold.otf");
    src: url("font/AeonikTRIAL-Bold.otf") format("opentype");
}



body {
    font-family: AeonikTRIAL-Regular;
    margin: 0;
}

.fl-white {
    color: #fff;
}
.footer-power p a
.fl-subtitle {
    font-size: 20px;
    font-weight: 400;
}

.page-width {
    max-width: 1680px;
    padding: 0 20px;
    margin: 0 auto;
}

.width-15 {
    max-width: 15%;
    width: 100%;
}

.width-20 {
    max-width: 20%;
    width: 100%;
}

.width-25 {
    max-width: 25%;
    width: 100%;
}

.width-30 {
    max-width: 30%;
    width: 100%;
}

.width-35 {
    max-width: 35%;
    width: 100%;
}

.width-50 {
    max-width: 50%;
    width: 100%;
}

.width-70 {
    max-width: 70%;
    width: 100%;
}

.fl-heading {
    font-size: 55px;
    font-weight: 400;
}

.padding-top-30 {
    margin-top: 30px;
}

.padding-top-60 {
    margin-top: 60px;
}

.padding-top-100 {
    margin-top: 100px;
}

.fl-menu-home img {
    max-width: 166px;
    width: 100%;
}
@media (max-width: 767px) {
    body:has(.fl-menu-wrapper):has(input:checked) {
        overflow: hidden;
    }
}




.implemented_content a {
  text-decoration: none;
}
.implemented_content {
  z-index: 99999999999999;
  position: relative;
  text-decoration: navajowhite;
}

/* === Menu Wrapper Style === */
.fl-menu-wrapper {
    --menu-bg: hsl(240, 10%, 20%);
    --menu-trsdu: .2s;
    --menu-trstf: cubic-bezier(.4, 0, .2, 1);
    --menu-pb: .9em;
    --menu-pi: 9em;
    align-items: center;
    background: #fff;
    color: var(--menu--c, hsl(240, 0%, 85%));
    display: flex;
    font-size: var(--menu-fz, .75rem);
    justify-content: space-between;
    margin-inline: auto;
    max-width: 1680px;
    padding: 14px 20px;
    position: relative;
    
}
.header_section{
      top: 0;
    z-index: 5;
    max-width: 100%;
    position: sticky;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.fl-menu-wrapper:has(input:checked) .fl-menu-flyout {
    translate: 0;
}

.fl-menu-wrapper a, .has_dropdown {
    align-items: center;
    color: #000;
    display: flex;
    gap: .5ch;
     line-height: var(--menu-a-lh, 2.5); 
/*    line-height: normal;*/
    transition: color var(--menu-trsdu) var(--menu-trstf);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    z-index: 6;
        cursor: pointer;
}
span.has_dropdown.active_mega {
    color: #8C0000;
}
.fl-menu-toggle-label {
    z-index: 6;
}

/*.menu-toggle-label:focus-within { outline: 2px solid; }*/


.fl-menu-flyout {
    background: var(--menu-flyout-bg, inherit);
    color: var(--menu-flyout-c, inherit);
    display: flex;
    flex-direction: column;
    font-size: var(--menu-flyout-fz, 150%);
    inset: 0 var(--menu-flyout-offset, 0) 0 0;
    justify-content: space-between;
    padding: 70px 22px 44px;
    position: fixed;
    transition: translate var(--menu-trsdu) var(--menu-trstf);
    translate: -100vw 0;
    z-index: 5;
}

/* === Menus === */
.fl-menu-cta,
.fl-menu-main {
    display: flex;
    flex: 1;
    flex-direction: var(--menu-flyout-dir, column);
}

.fl-menu-cta {
    gap: clamp(0.5rem, -0.125rem + 2vw, 1rem);
    justify-content: end;
}

.fl-menu-main {
    gap: clamp(-0.5rem, -3.875rem + 14vw, 2rem);
}

@media (min-width: 830px) {

    .fl-menu-cta,
    .fl-menu-main {
        flex: unset;
    }

    .fl-menu-flyout {
        --menu-flyout-dir: row;
        display: contents;
        color: inherit;
        font-size: revert;
    }

    .fl-menu-toggle-label {
        display: none;
    }

    .flmenu__toggle {
        display: none !important;
    }

}

/* === Menu Toggle === */
.fl-menu-toggle {
    --menu-toggle-bdrs: 4px;
    --menu-toggle-gap: 8px;
    --menu-toggle-h: 2px;
    --menu-toggle-w: 24px;

    appearance: none;
    color: inherit;
    display: grid;
    gap: var(--menu-toggle-gap);
    height: var(--menu-toggle-w);
    outline: none;
    place-content: center;
    width: var(--menu-toggle-w);
}

.fl-menu-toggle::before,
.fl-menu-toggle::after {
    background-color: #000;
    border-radius: var(--menu-toggle-bdrs);
    content: "";
    height: var(--menu-toggle-h);
    transform-origin: center center;
    transition: rotate var(--menu-trsdu) var(--menu-trstf);
    width: var(--menu-toggle-w);
}

.fl-menu-toggle:checked {
    gap: 0;
}

.fl-menu-toggle:checked::after {
    rotate: 45deg;
    translate: var(--menu-toggle-h) calc(var(--menu-toggle-h) / -2);
}

.fl-menu-toggle:checked::before {
    rotate: -45deg;
    translate: var(--menu-toggle-h) calc(var(--menu-toggle-h) / 2);
}

.drop_icon {
    max-width: 10px;
    width: 100%;
}


.dropdown_item {
    display: none;
}

.main_dropdown.active_menu .dropdown_item {
    display: block;
}

.dropdown_item_inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.menu_heading {
    color: #000;
    font-size: 30px;
    line-height: normal;
}

.menu_text {
    color: #000;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.btn_menu {
    padding: 16px 24px;
    background: #8C0000;
    display: inline-flex !important;
    color: #fff !important;
    align-items: center !important;
    gap: 5px !important;
}

.drop_item_content {
    margin-bottom: 30px;
}

.content_arrow {
    max-width: 20px;
    object-fit: contain;
    width: 100%;
}



.drop_item_content p {
    font-size: 16px;
    color: #000;
}

.head_bold {
    font-family: "AeonikTRIAL-Bold";
}

.drop_item.width-20:not(:first-child) {
    border-left: 1px solid #434343;
    padding-left: 5px;
}

.fl_flex_menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media(min-width:830px) {
    .dropdown_item {
        display: none;
        position: absolute;
        top: 79%;
        left: 0;
        background-color: #fff;
        /* Adjust as needed */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        /* Optional: Adds shadow for better visibility */
        z-index: 1;
        padding: 20px;
        width: 100%;
        max-width: 100%;
        background-image: url(image/menu_bg.png);
        z-index: 10;
    }
.active_mega .dropdown_item {
    display: block;
}
.has_dropdown.active_mega + .dropdown_item {
    display: block;
}
.has_dropdown:hover .drop_icon {
    transform: rotate(180deg);
}
    .has_dropdown:hover .dropdown_item,
    .main_dropdown:hover .dropdown_item {
        display: block;
    }

    .dropdown_item a {
        line-height: normal;
        margin-bottom: 10px;
    }

}

@media(max-width:830px) {
    .dropdown_item a {
        margin-left: 15px;
    }

    .fl-menu-main {
        gap: clamp(-0.5rem, -3.875rem + 8vw, 2rem);
    }
}



.btn_touch {
     text-decoration: underline !important; 
/*    border-bottom: 2px solid #8C0000;*/
    color: #8C0000 !important;
}

/* === Icons === */
.icon,
.icon-stroke {
    height: var(--icon-sz, 2em);
    width: var(--icon-sz, 2em);
}

.icon-stroke {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1;
    stroke: currentColor;
}


/* === Menu Wrapper Style End === */


/* Banner  */
.banner_slider {
    overflow-x: hidden;
}

.banner_slider .page-width {
    max-width: 1921px;
    margin: 0 auto;
}

.banner_main .slider_item {
    position: relative;
}

.slider_item .banner_image {
    width: 100%;
    height: 100%;
}

.slider_item .banner_image img {
    margin: auto;
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.banner_image img.banner_mobile {
    display: none;
}

.slider_item .content_main {
        display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 22px;
    padding: 0 20px;
    position: absolute;
    bottom: 25%;
    transform: translate(-50%, 28%);
    z-index: 1;
    left: 50%;
    max-width: 1680px;
    width: 100%;
}

.slider_item .banner_heading h2 {
    color: #FFFFFF;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
    /* opacity: 0; */
}

.slick-current.slick-active .slider_item .banner_heading h2 {
    animation: fadeIn 4s;
    opacity: 1;
}

.banner_content .banner_date p {
    color: #FFFFFF;

    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

.slick-current.slick-active .banner_content .banner_date p {
    animation: fadeIn 4s;
    opacity: 1;
}

.banner_content .banner_date span {
    color: #FFFFFF75;
}

.banner_content .banner_description {
    padding: 36px 0;
}

.banner_content .banner_description p {
    color: #FFFFFF;

    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
}

.slick-current.slick-active .banner_content .banner_description p {
    animation: fadeIn 4s;
    opacity: 1;
}

.banner_content .banner_button {
    display: flex;
    gap: 16px;
}

.banner_button .button_list a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #FFFFFF;
    color: #000000;

    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
}

.banner_button .button_list a:hover {
    background-color: #8C0000;
    color: #FFFFFF;
}

.banner_button .button_list.red_bg a {
    background-color: #8C0000;
    color: #FFFFFF;
}

.banner_button .button_list.red_bg a:hover {
    background-color: #fff;
    color: #000;

}

.progress-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.progress-bar {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    position: relative;
}

.progress-bar-inner {
    height: 100%;
    width: 0;
    background: #fff;
    position: absolute;
}

.slick-current.slick-active .progress-container {
    animation: fadeIn 2s;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 1440px) {

    .banner_content .banner_description {
        padding: 24px 0;
    }

    .banner_content .banner_description p {
        font-size: 26px;
    }

    .banner_button .button_list a {
        padding: 18px 32px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .slider_item .content_main {
        grid-template-columns: 1fr;
        gap: 24px;
        bottom: 15%;
        transform: translate(-50%,15%);
    }

    /*.banner_image img.banner_deskstop {*/
    /*        margin: auto;*/
    /*        object-fit: cover;*/
    /*        height: 100vh;*/
    /*        width: 100%;*/
    /*}*/

    /*.banner_image img.banner_mobile {*/
    /*    display: block;*/
    /*}*/

    .slider_item .banner_heading h2 {
        font-size: 48px;
        line-height: 48px;
    }

    .banner_content .banner_date p {
        font-size: 12px;
        line-height: 14.4px;
    }

    .banner_content .banner_description p {
        font-size: 16px;
        line-height: 20px;
    }

    .banner_button .button_list a {
        padding: 12px 24px;
        font-size: 14px;
        line-height: 16.8px;
    }

    .progress-bar {
        width: 50px;
    }
}


/* Animation Images */
/*.animation_images_section {*/
/*    padding: 18px 0;*/
/*}*/

.animation_image_main img {
    object-fit: contain;
        max-width: 200px;
}

.animation_images_section .animation_image_main {
    display: flex;
    position: relative;
    user-select: none;
    overflow: hidden;
}

.animation_image_main .marquee__content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    animation: scroll 30s infinite linear;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.animation_image_main .marquee__content>* {
    flex: 0 0 auto;
    padding: 0 6px;
}

/* Responsive for animation slider */
@media only screen and (max-width: 768px) {
    /*.animation_images_section {*/
    /*    padding: 4px 0;*/
    /*}*/

    .animation_image_main .marquee__content {
        gap: 0px;
    }

    .animation_image_main .marquee__content>* {
        padding: 0 9px;
        width: 87px;
        height: 56px;
        object-fit: contain;
    }
}




/* Featured Services */
/* Featured Services */
.featured_services_inner .featured_services_main {
    background-color: #D9D9D9;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.featured_services_main .featured_services_list:hover {
    background: url(image/bg_texture.png), hsl(0, 0%, 100%);
}

.featured_services_main .featured_services_list a {
    display: block;
    height: 100%;
    padding: 4rem clamp(4rem, 8.929vw - 5.143rem, 12rem);
    color: #000000;
    text-decoration: none;
    transition: all .3s;
}

.featured_services_list .featured_logo svg {
    display: flex;
    stroke: #737373;
    fill-opacity: 0;
    transform: scale(1);
}

.featured_services_list .featured_logo svg path {
    transition: all .5s;
}

.featured_services_list:hover .featured_logo svg path {
    stroke: hsl(0, 100%, 27%);
    transform: scale(.8);
}

.featured_services_list:hover .featured_logo svg path.path_fill {
    fill: hsl(0, 100%, 27%);
    fill-opacity: 1;
}

.featured_services_list .f_services_content {
    position: relative;
}

.f_services_content .heading,
.f_services_content .description {
    transform: translateY(0);
    transition: all .5s;
}

.featured_services_list:hover .heading,
.featured_services_list:hover .description {
    transform: translateY(-4rem);
}

.f_services_content .heading {
    padding-top: 38px;
}

.f_services_content .heading h2 {
    color: #000000;
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
}

.f_services_content .description {
    padding-top: 24px;
}

.f_services_content .description p {
    color: #000000;
    font-size: 24px;
    line-height: 26.5px;
    font-weight: 400;
}

@media screen and (min-width: 1025px) {

    .f_services_content .icon_arrow {
        display: flex;
        position: absolute;
        bottom: -10px;
    }

    .f_services_content .icon_arrow img {
        max-width: 100%;
        transform: translateY(4rem) rotate(45deg);
        opacity: 0;
        transition: all .5s;
    }

    .featured_services_list:hover .icon_arrow img {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1024px) {

    .featured_services_main .featured_services_list a {
        padding: 28px;
        background: url(image/bg_texture.png), hsl(0, 0%, 100%);
    }

    .featured_logo svg path.path_fill {
        fill: hsl(0, 100%, 27%);
        fill-opacity: 1;
    }

    .featured_services_list:hover .featured_logo svg path {
        stroke: hsl(0, 100%, 27%);
        transform: none;
    }

    .featured_services_list:hover .heading,
    .featured_services_list:hover .description {
        transform: none;
    }

    .f_services_content .heading h2 {
        font-size: 24px;
        line-height: normal;
    }

    .f_services_content .description p {
        font-size: 18px;
        line-height: normal;
    }

    .f_services_content .icon_arrow {
        padding-top: 24px;
    }

    .f_services_content .icon_arrow img {
        transform: none;
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {

    .featured_services_inner .featured_services_main {
        grid-template-columns: 1fr;
    }

    .featured_services_main .featured_services_list a {
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: center;
        gap: 10px;
        padding: 20px 40px;
        border-bottom: 1px solid #000;
    }

    .featured_services_list .featured_logo {
        width: 6.3rem;
    }

    .featured_services_list .featured_logo svg {
        width: 100%;
        height: auto;
    }

    .f_services_content .heading {
        padding-top: 0;
    }

    .f_services_content .description {
        display: none;
    }
}
/* Featured Services End*/


/* Implemented Solution */
.implemented_solution_section {
    background: url(images/bg_texture.png), #2F2F2F;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: clamp(2rem, 6.711vw - .886rem, 12rem);
    padding-bottom: clamp(2rem, 6.711vw - .886rem, 12rem);
    position: relative;
}

.implemented_solution_section .implemented_solution_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 98px;
}

.implemented_solution_header .implemented_heading {
    width: 100%;
    max-width: 1280px;
}

.implemented_heading .subheading h4 {
    color: #FFF;
    font-size: 32px;
    line-height: normal;
    font-weight: 400;
}

.implemented_heading .heading {
    padding-top: 24px;
}

.implemented_heading .heading h2 {
    color: #FFF;
    font-size: 64px;
    line-height: normal;
    font-weight: 400;
}

.implemented_solution_header .implemented_button {
    width: 100%;
    max-width: 175px;
}

.implemented_solution_header .implemented_button a {
    display: inline-block;
    padding: 24px 36px;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}

.implemented_solution_inner {
    padding: 93px 0;
    border-top: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
}

.implemented_solution_inner.implemented_last {
    padding: 93px 0 0;
    border-bottom: none;
}

.implemented_solution_inner .implemented_solution_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.implemented_solution_main .implemented_content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.implemented_content .implemented_image {
    width: 200px;
    height: 90px;
}

.implemented_content .implemented_image img {
    display: flex;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.implemented_content .implemented_text {
    width: 100%;
    max-width: 550px;
}

.implemented_content .implemented_text p {
    color: #FFF;
    font-size: 36px;
    line-height: normal;
    font-weight: 400;
}

.implemented_solution_section .implemented_vector {
    position: absolute;
    right: 0;
    bottom: 0;
}

@media only screen and (max-width: 1440px) {

    .implemented_solution_header .implemented_heading {
        max-width: 1100px;
    }

    .implemented_heading .heading h2 {
        font-size: 55px;
    }

}

@media only screen and (max-width: 1024px) {

    .implemented_solution_section .implemented_solution_header {
        padding-bottom: 60px;
    }

    .implemented_heading .subheading h4 {
        font-size: 30px;
    }

    .implemented_heading .heading h2 {
        font-size: 4.5vw;
    }

    .implemented_solution_inner {
        padding: 80px 0;
    }

    .implemented_solution_inner.implemented_last {
        padding: 80px 0 0;
    }

    .implemented_solution_main .implemented_content {
        gap: 16px;
    }

    .implemented_content .implemented_text p {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {

    .implemented_solution_section .implemented_solution_header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding-bottom: 40px;
    }

    .implemented_heading .subheading h4 {
        font-size: 20px;
    }

    .implemented_heading .heading h2 {
        font-size: 32px;
    }

    .implemented_solution_header .implemented_button a {
        padding: 16px 28px;
        font-size: 18px;
    }

    .implemented_solution_inner {
        padding: 36px 0;
    }

    .implemented_solution_inner.implemented_last {
        padding: 36px 0 0;
    }

    .implemented_solution_inner .implemented_solution_main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .implemented_content .implemented_image {
        width: 150px;
    }

    /* .implemented_solution_main .implemented_content {
        align-items: center;
        flex-direction: row;
    } */

    .implemented_content .implemented_text p {
        font-size: 20px;
    }

    .implemented_solution_section .implemented_vector {
        display: none;
    }
}

/*implemented solution end*/


/* Portfollio Section */
.portfollio_slider_inner {
    padding: 89px 0 149px;
    overflow: hidden;
}

.portfollio_slider_inner .portfollio_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 70px;
}

.portfollio_header .port_slider_heading {
    width: 100%;
    max-width: 920px;
}

.port_slider_heading .subheading h4 {
    color: #8C0000;
    font-size: 32px;
    line-height: normal;
    font-weight: 400;
}

.port_slider_heading .heading {
    padding-top: 24px;
}

.port_slider_heading .heading h2 {
    color: #000;
    font-size: 64px;
    line-height: normal;
    font-weight: 400;
}

.portfollio_header .portfollio_btn {
    width: 100%;
    max-width: 223px;
}

.portfollio_header .portfollio_btn a {
    width: 100%;
    display: inline-block;
    padding: 24px 36px;
    background-color: #8C0000;
    border: 1px solid #8C0000;
    color: #FFF;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: 0.2s all;
}

.portfollio_header .portfollio_btn a:hover {
    background-color: transparent;
    color: #000;
}

.portfollio_slider_inner .portfollio_slider_main {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding-top: 70px;
}

.portfollio_slider_main .slick-list {
    overflow: visible;
}

.portfollio_slider_main .slick-slide {
    padding: 0 32px 70px;
}

.portfollio_slider_main .slick-prev,
.portfollio_slider_main  .slick-next {
    width: 72px;
    height: 72px;
    border-radius: 50px;
    opacity: 1;
    z-index: 99;
    top: 55%;
    box-shadow: 0px 4px 71px 0px #0000002B;
    background-color: #FFF;
}

.portfollio_slider_main .slick-prev:before,
.portfollio_slider_main .slick-next:before {
    content: none;
}

.portfollio_slider_main .slick-prev:hover,
.portfollio_slider_main  .slick-prev:focus,
.portfollio_slider_main  .slick-next:hover,
.portfollio_slider_main  .slick-next:focus {
    background-color: #FFF;
}

.portfollio_slider_main .slick-dots li button:before {
    font-size: 17px;
}

.portfollio_slider_main .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #8C0000;
}

.portfollio_slider_main .portfollio_slide {
    padding-top: 51px;
    background-color: #F6F6F6;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.portfollio_slide .portfollio_content {
    width: 100%;
    max-width: 580px;
    padding: 0 0px 0 5.2vw;
}

.portfollio_content .heading h2 {
    color: #000;
    font-size: 48px;
    line-height: normal;
    font-weight: 400;
}

.portfollio_content .description {
    padding-top: 24px;
}

.portfollio_content .description p {
    color: #737373;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.portfollio_content .technology_stack_main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
}

.technology_stack_main .technology_heading h4 {
    color: #000;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
    text-transform: uppercase;
}

.technology_stack_main .technology_button_main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.technology_button_main .technology_button {
    padding: 5.5px 12px;
    background-color: #FFF;
    border-radius: 50px;
    border: 1px solid #E3E3E3;
    display: flex;
    align-items: center;
    gap: 2px;
}

.technology_button .technology_icon img {
    width: 28px;
    display: flex;
}

.portfollio_content .explore_more {
    padding-top: 36px;
}

.portfollio_content .explore_more a {
    border-bottom: 1px solid #8C0000;
    padding-bottom: 3px;
    color: #8C0000;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfollio_slide_image img {
    width: 100%;
}

@media only screen and (max-width: 1440px) {

    .port_slider_heading .heading h2 {
        font-size: 55px;
    }

    .portfollio_slider_main .portfollio_slide {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .portfollio_slider_main .slick-prev,
    .slick-next {
        width: 60px;
        height: 60px;
    }

    .portfollio_slider_main .slick-prev {
        left: 0px;
    }

    .portfollio_slider_main .slick-next {
        right: 0;
    }
}

@media only screen and (max-width: 1024px) {

    .port_slider_heading .subheading h4 {
        font-size: 30px;
    }

    .port_slider_heading .heading h2 {
        font-size: 4.5vw;
    }

    .portfollio_content .heading h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 768px) {

    .portfollio_slider_inner {
        padding: 48px 0;
    }

    .portfollio_slider_inner .portfollio_header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        padding-top: 0;
    }

    .port_slider_heading .subheading h4 {
        font-size: 20px;
    }

    .port_slider_heading .heading h2 {
        font-size: 32px;
    }

    .portfollio_header .portfollio_btn a {
        padding: 16px 28px;
        font-size: 18px;
    }

    .portfollio_slider_inner .portfollio_slider_main {
        padding-top: 48px;
    }

    .portfollio_slider_main .slick-list {
        overflow: hidden;
    }

    .portfollio_slider_main .slick-slide {
        padding: 0px 0px 32px;
    }

    .portfollio_slider_main .slick-dots li button:before {
        font-size: 14px;
    }

    .portfollio_slider_main .portfollio_slide {
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 0 0;
    }

    .portfollio_slide .portfollio_content {
        padding: 0 20px;
    }

    .portfollio_content .heading h2 {
        font-size: 30px;
        line-height: normal;
    }

    .portfollio_content .description {
        padding-top: 16px;
    }

    .portfollio_content .description p {
        font-size: 16px;
    }

    .portfollio_content .technology_stack_main {
        flex-wrap: wrap;
        gap: 6px;
        padding-top: 16px;
    }

    .technology_stack_main .technology_heading h4 {
        font-size: 16px;
        line-height: 28px;
    }

    .portfollio_content .explore_more {
        padding-top: 24px;
    }

    .portfollio_content .explore_more a {
        font-size: 18px;
    }
}

/*portfollio css end*/

/* About us Home */

.about-section {
    background: #931010;
}

.main-about {
    padding-top: 80px;
    padding-bottom: 80px;
}

.heding-section {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}

.inner-heading-about p {
    margin-top: 16px;
    color: #fff;
    opacity: 0.5;
    font-size: 22px;
}

.inner-heading-about.width-30 {
    text-align: end;
}

.about-icon-main {
    display: flex;
    margin-top: 40px;
}

.about-icon-item {
    max-width: 25%;
    width: 100%;
    padding-left: 25px;
    position: relative;
}

.about-icon-item:before {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(to bottom, #000000, #2a0e14, #4e0e1a, #710c19, #931010);
}

.numb_counter {
    font-size: 70px;
    font-weight: 400;
    line-height: normal;
}

.fl-count-text {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.fl-heading-count {
    font-size: 70px;
    font-weight: 400;
    line-height: normal;
}

.btn-about-learn {
    text-decoration: none;
    color: #fff;
    padding: 18px 33px;
    border: 1px solid #fff;
    display: inline-block;
        font-weight: 400;
    font-size: 20px;
}

.btn-about-learn:hover {
    color: #000;
    background: #fff;
}


@media(max-width:830px) {
    .inner-heading-about.width-30 {
        display: none;
    }

    .inner-heading-about p {
        opacity: 1;
    }

    .width-70 {
        max-width: 100%;
        width: 100%;
    }

    .about-icon-main {
        flex-direction: column;
    }

    .about-icon-item:before {
        content: none;
    }

    .about-icon-item {
        display: flex;
        max-width: 100%;
        align-items: center;
        column-gap: 30px;
        padding-left: 0;

    }

    .numb_counter {
        font-size: 45px;
    }

    .fl-heading-count {
        font-size: 45px;
    }

    .about-icon-item:not(:last-child) {
        padding-bottom: 70px;
    }

    .main-about {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .fl-count-text {
        font-size: 20px;
    }

    .padding-top-30 {
        margin-top: 0;
    }

    .padding-top-60 {
        margin-top: 0;
    }

    .padding-top-100 {
        margin-top: 0;
    }

    .fl-heading {
        font-size: 32px;
    }
}

/* About us HOme End */



/* Services  */

/* Our Services */
.our_services_section {
    border-top: 1px solid #D5D5D5;
    overflow: hidden;
}

.our_services_section .services_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 136px; */
}

.content_main .services_content {
    padding: 5rem 0 0 8rem;
    width: 80%;
}

.services_content .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.services_content .heading {
    padding: 10px 0 48px;
}

.services_content .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.services_content .services_button a {
    display: inline-block;
    padding: 17px 24px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    border: 1px solid #8C0000;
}

.services_content .services_button a:hover {
    background-color: transparent;
    color: #000;
}



.content_main .vector_image {
    padding-top: 30px;
    width: 100%;
}

.content_main .vector_image img {
    width: 100%;
    height: 100%;
    display: flex;
}

.services_main .services_card_main {
    height: 100%;
    max-height: 970px;
    border-left: 1px solid #D5D5D5;
    overflow-y: scroll;
}

.services_card_main::-webkit-scrollbar {
    width: 0;
}

.services_card_main .services_card {
    padding: 77px 120px 77px 48px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D5D5D5;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    transition: 0.4s;
}
.services_card_main .services_card:hover{
    cursor: pointer;
}
.services_card_main .services_card:hover {
    background: url(image/services.png);
}

.services_main .content_main {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 60px;
}

.card_content .heading h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
/*    font-family: AeonikTRIAL-Bold;*/
}

.card_content .description {
    padding: 16px 0 24px;
}

.card_content .description p {
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.card_content .card_link a {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    border-bottom: 2px solid #8C0000;
}

.services_card .arrow_icon {
    width: 100%;
    max-width: 55px;
    height: 54px;
    transition: 0.4s;
}

.services_card .arrow_icon img {
    display: flex;
    width: 100%;
    height: 100%;
}

.services_card:hover .arrow_icon {
    transform: rotate(-45deg);
}

/* Responsive for our services */
@media only screen and (min-width: 1640px) {

    .card_content .description {
        width: 68%;
    }
}

@media only screen and (max-width: 1240px) {

.services_content .heading h2 {
    font-size: 40px;
}
    .services_card_main .services_card {
        padding: 65px 58px;
    }
    .content_main .services_content {
    padding: 2rem 0 0 20px;
}
}

@media only screen and (max-width: 990px) {

    .our_services_section {
        padding: 0 20px;
    }

    .our_services_section .services_main {
        grid-template-columns: 1fr;
    }

    .services_content .services_button {
                display: grid;
        grid-template-columns: 150px 1fr;
        align-items: start;
        gap: 20px;
    }

    .content_main .services_content {
        padding: 40px 0;
        width: 100%;
    }

    .services_content .subheading h4 {
        font-size: 14px;
        line-height: 16px;
    }

    .services_content .heading {
        padding: 16px 0;
    }

    .services_content .heading h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .services_content .services_button a {
        padding: 12px 14px;
        font-size: 14px;
    }

    .content_main .vector_image {
        padding: 0;
        width: 50%;
    }

    .content_main .vector_image.deskstop_image {
        display: none;
        padding: 0;
    }

    .services_main .services_card_main {
               max-height: 100%;
        overflow: unset;
    }
    

    .services_main .services_card_main,
    .services_card_main .services_card {
        border: none;
    }

    .services_card_main .services_card {
        gap: 0;
        padding: 24px 0;
    }

    .card_content .heading h2 {
        font-size: 24px;
        line-height: 28.8px;
    }

    .card_content .description {
        width: 100%;
        padding: 16px 0;
    }

    .services_card .arrow_icon {
        display: none;
    }

    .card_content .card_link a {
        font-size: 16px;
        line-height: 19.2px;
    }
.content_main .vector_image{
    display:none;
}
 .hide_mb{
    display:none;
}
.vector_image.mobile_image{
    display:block;
}
}

/* Services End */

/* Industries Section */
.industries_section {
    padding: 90px 0px 18px;
    background: url(image/industries_bg.png);
}

.industries_section .section_heading {
    width: 50%;
}

.industries_section .section_heading .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.industries_section .section_heading .heading {
    padding-top: 24px;
}

.industries_section .section_heading .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.industries_section .industries_main {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
}

.industries_main .industries_tabs {
    width: 32%;
}

.industries_tabs .tab_button span {
    display: inline-block;
    padding: 24px 36px;
    border-radius: 80px;
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    font-family: 'AeonikTRIAL-Regular';
}

.industries_tabs .tab_button.active span {
    background: #8C0000;
    color: #FFFFFF;
}

.industries_main .tabs_content {
    width: 53.3%;
    display: none;
}

.industries_main .tabs_content.active {
    display: block;
}

.tabs_content .heading h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    font-family: AeonikTRIAL-Bold;
}

.tabs_content .description {
    padding-top: 13px;
}

.tabs_content .description p {
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.tabs_content .explore_link {
    padding-top: 36px;
}

.tabs_content .explore_link a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8C0000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid #000;
    display: inline;
    text-decoration: none;
}

.tabs_content .frame_image {
    display: flex;
    justify-content: end;
}

/* Responsive for industries section */
@media only screen and (max-width: 1240px) {
    .industries_section .section_heading {
        width: 100%;
    }

    .industries_tabs .tab_button span {
        font-size: 20px;
    }

}

@media only screen and (max-width: 830px) {
    .industries_section {
        display: none;
    }
}

/* Industries End */


/* Portfollion Section */
/*.portfollio_section {*/
/*    padding: 100px 0px 100px;*/
/*}*/

/*.portfollio_section .portfollio_heading {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*}*/

/*.portfollio_heading .port_content {*/
/*    width: 50%;*/
/*}*/

/*.port_content .subheading h4 {*/
/*    color: #8C0000;*/
/*    font-size: 20px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*}*/

/*.port_content .heading {*/
/*    padding-top: 24px;*/
/*}*/

/*.port_content .heading h2 {*/
/*    color: #000000;*/
/*    font-size: 55px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*}*/

/*.portfollio_heading .view_button a {*/
/*    display: inline-block;*/
/*    padding: 24px 36px;*/
/*    background: #8C0000;*/
/*    color: #FFFFFF;*/
/*    font-size: 20px;*/
/*    font-weight: 500;*/
/*    line-height: 24px;*/
/*    text-align: center;*/
/*    text-decoration: none;*/
/*    border: 1px solid #8C0000;*/
/*}*/

/*.portfollio_heading .view_button a:hover {*/
/*    background: transparent;*/
/*    color: #000;*/
/*}*/

/*.portfollio_section .portfollio_main {*/
/*    padding: 70px 0 100px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 35px;*/
/*}*/

/*.portfollio_main .portfollio_list {*/
/*    display: flex;*/
/*    align-items: center;*/
    /* justify-content: space-between; */
/*    gap: 64px;*/
/*}*/

/*.portfollio_list .image {*/
/*    width: 46.7%;*/
/*}*/

/*.portfollio_list .image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    border-radius: 36px;*/
/*}*/

/*.portfollio_list .content {*/
/*    width: 42%;*/
/*}*/

/*.portfollio_list .content .heading h2 {*/
/*    color: #000000;*/
/*    font-size: 30px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*}*/

/*.portfollio_list .content .description {*/
/*    padding: 24px 0;*/
/*}*/

/*.portfollio_list .content .description p {*/
/*    color: #737373;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*}*/

/*.content .text_icon_main {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 24px;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.text_icon_main .text_techno p {*/
/*    color: #000000;*/
/*    font-size: 20px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    text-transform: uppercase;*/
/*}*/

/*.text_icon_main .icon_button_main {*/
/*    display: flex;*/
/*    gap: 8px;*/
/*}*/

/*.icon_button_main .icon_button {*/
/*    padding: 10px 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 2px;*/
/*    border-radius: 50px;*/
/*    border: 1px solid #E3E3E3;*/
/*}*/

/*.icon_button_main .icon_button img {*/
/*    width: 24px;*/
/*    height: 24px;*/
/*    object-fit: cover;*/
/*    display: flex;*/
/*}*/

/*.icon_button_main .icon_button p {*/
/*    color: #000000;*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*}*/

/*.content .explore_link {*/
/*    padding-top: 36px;*/
/*}*/

/*.content .explore_link a {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    color: #8C0000;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    line-height: normal;*/
/*    text-decoration: none;*/
/*    border-bottom: 1px solid #8C0000;*/
/*    display: inline;*/
/*    padding-bottom: 6px;*/
/*}*/

/*.portfollio_section .bottom_heading {*/
/*    width: 60%;*/
/*    margin: 0 auto;*/
/*}*/

/*.portfollio_section .bottom_heading h2 {*/
/*    color: #737373;*/
/*    font-size: 55px;*/
/*    font-weight: 400;*/
/*    line-height: normal;*/
/*    text-align: center;*/
/*}*/

/*.portfollio_section .bottom_heading span a {*/
/*    color: #8C0000;*/
/*    text-decoration: none;*/
/*}*/

/* Responsive for portfollio section */
/*@media only screen and (max-width: 1240px) {*/
/*    .port_content .heading h2 {*/
/*        font-size: 46px;*/
/*    }*/

/*    .portfollio_heading .view_button a {*/
/*        padding: 20px 32px;*/
/*    }*/

/*    .portfollio_main .portfollio_list {*/
/*        gap: 36px;*/
/*    }*/

/*    .portfollio_list .image {*/
/*        width: 50%;*/
/*    }*/

/*    .portfollio_list .content {*/
/*        width: 50%;*/
/*    }*/

/*    .content .text_icon_main {*/
/*        gap: 16px;*/
/*    }*/

/*    .icon_button_main .icon_button {*/
/*        padding: 10px 8px;*/
/*    }*/

/*    .portfollio_section .bottom_heading h2 {*/
/*        font-size: 46px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width: 830px) {*/
/*    .portfollio_section .bottom_heading {*/
/*        width: 100%;*/
/*    }*/

/*    .portfollio_section {*/
/*        padding: 47px 0px 70px;*/
/*    }*/

/*    .portfollio_section .portfollio_heading {*/
/*        flex-direction: column;*/
/*        gap: 16px;*/
/*        align-items: start;*/
/*    }*/

/*    .portfollio_heading .port_content {*/
/*        width: 100%;*/
/*    }*/

/*    .port_content .subheading h4 {*/
/*        font-size: 16px;*/
/*        line-height: 20px;*/
/*    }*/

/*    .port_content .heading {*/
/*        padding-top: 16px;*/
/*    }*/

/*    .port_content .heading h2 {*/
/*        font-size: 32px;*/
/*        line-height: 36px;*/
/*    }*/

/*    .portfollio_heading .view_button a {*/
/*        padding: 12px 14px;*/
/*        font-size: 14px;*/
/*        line-height: 16.8px;*/

/*    }*/
/*    .portfollio_section .portfollio_main {*/
/*        padding: 50px 0 52px;*/
/*        gap: 32px;*/
/*    }*/

/*    .portfollio_main .portfollio_list {*/
/*        flex-direction: column;*/
/*        gap: 32px;*/
/*    }*/

/*    .portfollio_list .image {*/
/*        width: 100%;*/
/*    }*/

/*    .portfollio_list .content {*/
/*        width: 100%;*/
/*    }*/

/*    .portfollio_list .content .heading h2 {*/
/*        font-size: 24px;*/
/*        line-height: 32px;*/
/*    }*/

/*    .portfollio_list .content .description {*/
/*        padding: 12px 0;*/
/*    }*/

/*    .content .text_icon_main {*/
/*        align-items: start;*/
/*        flex-direction: column;*/
/*        gap: 12px;*/
/*    }*/

/*    .text_icon_main .text_techno p {*/
/*        font-size: 12px;*/
/*        line-height: 16px;*/
/*    }*/

/*    .text_icon_main .icon_button_main {*/
/*        gap: 6px;*/
/*    }*/

/*    .icon_button_main .icon_button p {*/
/*        font-size: 11.08px;*/
/*        line-height: 13.29px;*/
/*    }*/

/*    .content .explore_link a {*/
/*        font-size: 16px;*/
/*        line-height: 19.2px;*/
/*        border: none;*/
/*    }*/

/*    .portfollio_section .bottom_heading h2 {*/
/*        font-size: 24px;*/
/*        line-height: 32px;*/
/*    }*/
/*}*/

/******* portfollio End ******/


/******* testimonials   *******/
.testmonial_section {
    padding: 100px 0 125px;
    background: url(image/tesmonial.png);
    background-position: center;
    background-size: cover;
    overflow-x: hidden;
}

.testmonial_heading .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.testmonial_heading .heading {
    padding-top: 24px;
}

.testmonial_heading .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.testmonial_section .testmonial_main {
    padding-top: 61px;
    margin-bottom: 0;
}

.testmonial_main .testmonial_list {
    padding: 34px 32px;
    box-sizing: border-box;
    background-color: #FFFFFF;
}

.testmonial_list .quotation_mark {
    width: 32px;
}

.testmonial_list .quotation_mark img {
    width: 100%;
    height: 100%;
    display: flex;
}

.testmonial_list .heading {
    padding: 24px 0;
}

.testmonial_list .heading h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.testmonial_list .review_name h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.testmonial_list .text {
    padding-top: 15px;
}

.testmonial_list .text p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: .5;
}


.testmonial_main .slick-dots {
    bottom: -59px;
}

.testmonial_main .slick-dots li {
    margin: 0 8px;
}





.testmonial_section .slick-initialized .slick-slide {
    margin: 0 12px;
}

.testmonial_main .slick-dots li {
    width: 17px;
    height: 17px;
    background: #737373;
    border-radius: 50%;
    opacity: .30;
}

.testmonial_main .slick-dots li button:before {
    content: none;
}

.testmonial_main li.slick-active {
    background: rgba(140, 0, 0, 1);
    opacity: 1;
}


@media only screen and (max-width: 830px) {

    .testmonial_section {
        padding: 24px 20px 70px;
    }

    .testmonial_heading .subheading h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .testmonial_heading .heading {
        padding-top: 16px;
    }

    .testmonial_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .testmonial_section .testmonial_main {
        padding-top: 45px;
    }

    .testmonial_main .testmonial_list {
        padding: 36px 15px 16px;
    }

    .testmonial_list .heading {
        padding: 19px 0;
    }

    .testmonial_list .heading h2 {
        font-size: 16px;
        line-height: 19.62px;
    }

    .testmonial_list .review_name h4 {
        font-size: 14px;
        line-height: 16.8px;
    }

    .testmonial_list .text {
        padding-top: 4px;
    }

    .testmonial_list .text p {
        font-size: 12px;
        line-height: 14.4px;
    }

    .testmonial_main .slick-dots li {
        margin: 0 2.5px;
    }

    .testmonial_main .slick-dots li button:before {
        width: 6px;
        height: 6px;
        font-size: 6px;
    }

    .testmonial_main .slick-dots {
        bottom: -39px;
    }

    .testmonial_section .slick-initialized .slick-slide {
        margin: 0;
    }

}


/******* End Testimonils  *******/


/* services Banner */
.services_banner_section {
    background: url(image/service_dk_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px 150px;
}

@media only screen and (max-width: 830px) {
    .services_banner_section {
        background: url(image/service_mb_bg.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 390px 0px 66px;
        background-position: center;
    }
}

/* Services Banner End */

/* services details Banner */
.services_destails_banner_section {
    background: url(image/servis_d_dk.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px 150px;
}

.margin_bottom {
    margin-bottom: 580px;
}

.services_destails_banner_main {
    position: relative;
}

.case_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 700px;
    width: 100%;
}

.services_destails_banner_main .about_banner_main {
    width: 80%;
}

.services_destails_banner_main .subheading h4 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.6;
}

.services_destails_banner_main .heading {
    padding: 36px 0;
}

.services_destails_banner_main .heading h2 {
    color: #000;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
}

.services_destails_banner_main .description {
    width: 79%;
}

.services_destails_banner_main .description p {
    color: #000;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    opacity: .5;
}

@media(max-width:1025px) {
    .case_inner {
        top: 600px;
    }
}

@media only screen and (max-width: 830px) {
    .case_inner {
        top: 415px;
    }

    .services_destails_banner_section {
        background: url(image/servis_d_mb.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 390px 0px 66px;
        background-position: center;

    }

    .margin_bottom {
        margin-bottom: 65.241vw;
    }

    .services_destails_banner_main .about_banner_main {
        width: 100%;
    }

    .services_destails_banner_main .subheading h4 {
        font-size: 16px;
        line-height: 12px;
    }

    .services_destails_banner_main .heading {
        padding: 16px 0 20px;
    }

    .services_destails_banner_main .heading h2 {
        font-size: 39px;
        line-height: normal;
    }

    .services_destails_banner_main .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .services_destails_banner_main .description {
        width: 100%;
    }
}

@media(max-width:650px) {
    .case_inner {
        top: 425px;
    }
}

/* Services details Banner End */


/* CTA */
.amazing_section {
    padding: 90px 0px;
}

.amazing_section .amazing_main {
    padding: 127px 96px;
    background: url(image/color.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

.amazing_section .amazing_main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.amazing_main .team_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.amazing_main .content_team {
    width: 50%;
}

.content_team .heading h2 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.content_team .description {
    padding-top: 28px;
}

.content_team .description p {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.amazing_main .team_button a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
}

.amazing_main .team_button a:hover {
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 1280px) {

    .amazing_section .amazing_main {
        padding: 120px 40px;
    }

    .amazing_main .content_team {
        width: 70%;
    }
}

@media only screen and (max-width: 830px) {

    .amazing_section {
        padding: 51px 0px;
    }

    .amazing_main .team_main {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .amazing_section .amazing_main {
        padding: 43px 18px 34px;
    }

    .amazing_main .content_team {
        width: 100%;
    }

    .content_team .heading h2 {
        font-size: 28.98px;
        line-height: 34.77px;
    }

    .content_team .description {
        padding-top: 21px;
    }

    .content_team .description p {
        font-size: 14.49px;
        line-height: 18.11px;
    }

    .amazing_main .team_button a {
        padding: 14px 18px;
        font-size: 10.57px;
        line-height: 12.68px;
    }
}


/* CTA End */
/******* Footer Start *******/
/*.footer-section {*/
/*    background: #E3E3E3;*/
/*}*/

/*.footer-main {*/
/*    padding-top: 60px;*/
/*    padding-bottom: 15px;*/
/*}*/

/*.footer-column li {*/
/*    list-style: none;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.footer-heading {*/
/*    margin-bottom: 20px;*/
/*    font-weight: 600;*/
/*    font-size: 24px;*/
/*    line-height: normal;*/
/*        text-transform: uppercase;*/
/*}*/

/*.footer-inner {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    column-gap: 15px;*/
/*}*/

/*.footer-newsletter {*/
/*    background: #870000;*/
/*    background-image: url(image/footer.png);*/
    
/*    padding: 60px 50px;*/
/*}*/

/*.newsletter-inner p {*/
/*    text-align: center;*/
/*    line-height: normal;*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    margin-top: 10px;*/
/*    font-size: 16px;*/
/*    opacity: 0.5;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.newsleter-heading {*/
/*    text-align: center;*/
/*    font-weight: 400;*/
/*    font-size: 30px;*/
/*}*/

/*.news_container {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    border-bottom: 1px solid #fff;*/
/*}*/

/*.news_container input#email {*/
/*    max-width: 100%;*/
/*    width: 100%;*/
/*    background: transparent;*/
/*    border: none;*/
/*    padding: 10px 0 10px 0;*/
/*    color: #fff;*/
/*}*/

/*.news_container input.submit {*/
/*    max-width: 18px;*/
/*    height: 18px;*/
/*    width: 100%;*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: #fff;*/
/*    background-image: url(image/submit.svg);*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    background-position: right;*/
/*    cursor: pointer;*/
/*}*/

/*.footer-column a {*/
/*    text-decoration: none;*/
/*    color: #000;*/
/*}*/
/*.footer-power p a {*/
/*    color: #8C0000;*/
/*        text-decoration: none;*/
/*    border-bottom: 1px solid;*/
/*}*/
/*:focus-visible {*/
/*    outline: none;*/
/*}*/
/*ul.privacy_menu li {*/
/*    list-style: none;*/
/*    margin-bottom: 15px;*/
/*}*/
/*ul.privacy_menu li a {*/
/*    text-decoration: underline;*/
/*}*/
/*.location-item h3 {*/
/*    line-height: normal;*/
/*    margin-bottom: 10px;*/
/*}*/
/*.social_link {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    align-items: flex-end;*/
/*}*/
/*input::placeholder {*/
/*    font-weight: 400;*/
/*    color: #fff;*/
/*}*/

/*.main-location {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    border-top: 1px solid #737373;*/
/*    padding-top: 25px;*/
/*    margin-top: 25px;*/
/*    padding-bottom: 25px;*/
/*    border-bottom: 1px solid #737373;*/
/*    gap: 10px;*/
/*}*/

/*.location-item a {*/
/*    color: #000;*/
/*}*/

/*.copywrite-main {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding-top: 15px;*/
/*    column-gap: 15px;*/
/*}*/

/*.copywrite-text {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/

/*.copywrite-text span,*/
/*.copywrite-text a {*/
/*    font-size: 16px;*/
/*    font-weight: 400;*/
/*    color: #000;*/
/*}*/

/*.copywrite-social {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 7px;*/
/*}*/

/*.copywrite-social a {*/
/*    display: inline-block;*/
/*}*/

/*.copywrite-social .social-icon {*/
/*    max-width: 30px;*/
/*    width: 100%;*/
/*    height: 30px;*/
/*}*/

.bottom-footer {
    background: #434343;
}

.bottom-footer img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

/*.copywrite-text span {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*}*/


/*@media(max-width:990px) {*/
/*    .main-location {*/
/*        flex-wrap: wrap;*/
/*    }*/

/*    .location-item.width-20 {*/
/*        max-width: 30%;*/
/*    }*/

/*    .footer-newsletter {*/
/*        padding: 60px 24px;*/
/*    }*/

/*    .location-item a {*/
/*        word-break: break-all;*/
/*    }*/

/*    .footer-inner {*/
/*        flex-wrap: wrap;*/
/*    }*/

/*    .footer-column.width-35 {*/
/*        max-width: 100%;*/
/*    }*/

/*    .copywrite-main {*/
/*        flex-wrap: wrap;*/
/*        row-gap: 20px;*/
/*        justify-content: center;*/
/*    }*/
/*}*/


/*@media(max-width:700px) {*/
/*    .newsletter-inner p {*/
/*        opacity: .8;*/
/*    }*/

/*    .main-location {*/
/*        flex-direction: column;*/
/*    }*/

/*    .footer-inner {*/
/*        flex-direction: column;*/
/*    }*/

/*    .location-item.width-20 {*/
/*        max-width: 100%;*/
/*    }*/

/*    .footer-column.width-25 {*/
/*        max-width: 100%;*/
/*    }*/

/*    .footer-column.width-15 {*/
/*        max-width: 100%;*/
/*    }*/

/*    .footer-menu {*/
/*        margin-bottom: 20px;*/
/*    }*/

/*    .footer-main {*/
/*        padding-top: 45px;*/
/*        padding-bottom: 40px;*/
/*    }*/

/*    .location-subtitle {*/
/*        margin-bottom: 10px;*/
/*    }*/

/*    .copywrite-main {*/
/*        flex-direction: column;*/
/*    }*/

/*    .copywrite-text {*/
/*        flex-direction: column-reverse;*/
/*        gap: 30px;*/
/*        text-align: center;*/
/*    }*/

/*    .copywrite-main {*/
/*        padding-top: 40px;*/
/*        row-gap: 18px;*/
/*    }*/

/*    .newsleter-heading {*/
/*        font-size: 24px;*/
/*    }*/

/*    .bottom-footer {*/
/*        height: 213px;*/
/*    }*/
/*    .location-item.width-25 {*/
/*    max-width: 100%;*/
/*}*/
/*.social_link {*/
/*    justify-content: flex-start;*/
/*        max-width: 100%;*/
/*}*/
/*}*/
/******* Footer Start *******/
.footer-section {
    background: #E3E3E3;
}

.footer-main {
    padding-top: 60px;
    padding-bottom: 15px;
}

.footer-column li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-heading {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
}

.footer-newsletter {
    /*    background: #870000;*/
    background-image: url(image/footer.png);

    padding: 60px 50px;
}

.newsletter-inner p {
    text-align: center;
    line-height: normal;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.5;
    letter-spacing: 1px;
}

.newsleter-heading {
    text-align: center;
    font-weight: 400;
    font-size: 30px;
}

.news_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}

.news_container input#email {
    max-width: 100%;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0 10px 0;
    color: #fff;
}

.news_container input.submit {
    max-width: 18px;
    height: 18px;
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    background-image: url(image/submit.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    cursor: pointer;
}

.footer-column a {
    text-decoration: none;
    color: #000;
}

.footer-power p a {
    color: #8C0000;
    text-decoration: none;
    border-bottom: 1px solid;
}

:focus-visible {
    outline: none;
}

.copywrite-text ul.privacy_menu {
    display: flex;
    gap: 24px;
}

ul.privacy_menu li {
    list-style: none;
}

ul.privacy_menu li a {
    text-decoration: underline;
}

.footer-power {
    display: flex;
    align-items: center;
    gap: 76px;
}

.social_link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social_link .social_text p {
    color: #000;
    font-size: 20.03px;
    line-height: 18.02px;
    font-weight: 400;
}

input::placeholder {
    font-weight: 400;
    color: #fff;
}

.location-item a {
    color: #000;
}

.copywrite-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    column-gap: 15px;
}

.copywrite-text {
    display: flex;
    align-items: center;
    gap: 24px;
}

.copywrite-text span,
.copywrite-text a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.copywrite-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.copywrite-social a {
    display: inline-block;
}

.copywrite-social .social-icon {
    max-width: 30px;
    width: 100%;
    height: 30px;
}

.bottom-footer {
    background: #434343;
}

.bottom-footer img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

@media (max-width: 1440px) {

    .footer-power {
        gap: 16px;
    }
}

@media(max-width:990px) {

    .location-item.width-20 {
        max-width: 30%;
    }

    .footer-newsletter {
        padding: 60px 24px;
    }

    .location-item a {
        word-break: break-all;
    }

    .footer-inner {
        flex-wrap: wrap;
    }

    .footer-column.width-35 {
        max-width: 100%;
    }

    .copywrite-main {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;
        padding-top: 40px;
    }

}

@media(max-width:700px) {
    .newsletter-inner p {
        opacity: .8;
    }

    .footer-inner {
        flex-direction: column;
    }

    .location-item.width-20 {
        max-width: 100%;
    }

    .footer-column.width-25 {
        max-width: 100%;
    }

    .footer-column.width-15 {
        max-width: 100%;
    }

    .footer-menu {
        margin-bottom: 20px;
    }

    .footer-main {
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .copywrite-main {
        flex-direction: column;
    }

    .copywrite-text {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .copywrite-main {
        padding-top: 40px;
        row-gap: 18px;
    }

    .newsleter-heading {
        font-size: 24px;
    }

    .footer-power {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .bottom-footer {
        height: 213px;
    }

}

/* Footer End */

/* Footer End */



/* About Banner */
.about_banner_section {
    background: url(image/about_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px 150px;
}

.about_banner_section .about_banner_main {
    width: 80%;
}

.about_banner_main .subheading h4 {
    color: #FFFFFF91;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.about_banner_main .heading {
    padding: 36px 0;
}

.about_banner_main .heading h2 {
    color: #FFFFFF;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
}

.about_banner_main .description {
    width: 79%;
}

.about_banner_main .description p {
    color: #FFFFFF91;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 830px) {

    .about_banner_section {
        background: url(image/about_bg_mob.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 390px 0px 66px;
        background-position: center;
    }

    .about_banner_section .about_banner_main {
        width: 100%;
    }

    .about_banner_main .subheading h4 {
        color: #FFFFFF91;
        font-size: 16px;
        line-height: 12px;
    }

    .about_banner_main .heading {
        padding: 16px 0 20px;
    }

    .about_banner_main .heading h2 {
        font-size: 39px;
        line-height: normal;
    }

    .about_banner_main .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .about_banner_main .description {
        width: 100%;
    }
}

/* About Banner End */

/* Sale Solution */
.sale_solution_section {
    padding: 140px 0px 140px;
    background-color: #FFFFFF;
    position: relative;
}

.sale_solution_main .content p {
    color: #737373;
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
}

.sale_solution_main .content strong {
    color: #000000;
}

.sale_solution_main .content span {
    color: #8C0000;
}





@media only screen and (max-width: 1240px) {
    .sale_solution_main .content p {
        font-size: 28px;
    }
}

@media only screen and (max-width: 830px) {
    .sale_solution_section {
        padding: 24px 0px 24px;
    }

    .sale_solution_section .sale_solution_main {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }

    .sale_solution_main .content p {
        font-size: 18px;
        line-height: 20px;
    }

}

/*Sale solution End*/


/* Our Story */
.our_story_section {
    background: url(image/our_story_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 45px 0px 45px;
}

.our_story_section .content .subheading h4 {
    color: #8C0000;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.our_story_section .content .heading {
    width: 76%;
    padding: 24px 0 47px;
}

.content .heading_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content .heading_main .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.heading_main .arrows_main {
    display: flex;
    align-items: center;
    gap: 21px;
}

.arrows_main .arrow_icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.arrows_main .arrow_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
}

.our_story_main .story_tabs_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #BBBBBB;
    padding: 8px 0 47px;
}

.story_tabs_main .tab_list span {
    color: #BBBBBB;
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.story_tabs_main .tab_list.active span {
    color: #000000;
}

.our_story_main .story_tab_content {
    display: none;
    justify-content: space-between;
}

.our_story_main .story_tab_content.active {
    display: flex;
}

.story_tab_content .image {
    width: 44.4%;
    height: 100%;
}

.story_tab_content .image img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

.story_tab_content .content {
    width: 47.5%;
    padding: 48px 0 0;
}

.story_tab_content .content .description p {
    color: #737373;
    font-size: 36px;
    line-height: 46px;
    font-weight: 400;
}

.story_tab_content .content .description strong {
    color: #000000;
}

.story_tab_content .content .description span {
    color: #8C0000;
}

@media only screen and (max-width: 1240px) {

    .our_story_section {
        padding: 176px 0px 41px;
    }

    .our_story_section .content .subheading h4 {
        font-size: 26px;
    }

    .content .heading_main .heading h2 {
        font-size: 46px;
    }

    .story_tabs_main .tab_list span {
        font-size: 36px;
    }

    .story_tab_content .content .description p {
        font-size: 26px;
        line-height: 38px;
    }
}

@media only screen and (max-width: 830px) {

    .our_story_section {
        padding: 24px 0px 0;
        position: relative;
    }

    .our_story_section .content .subheading h4 {
        font-size: 16px;
        line-height: 19.2px;
    }

    .our_story_section .content .heading {
        width: 100%;
        padding: 16px 0 25px;
    }

    .content .heading_main .heading h2 {
        font-size: 32px;
    }

    .heading_main .arrows_main {
        gap: 1.76px;
        position: absolute;
        top: 16px;
        right: 20px;
    }

    .arrows_main .arrow_icon {
        width: 38px;
        height: 38px;
    }

    .our_story_main .story_tabs_main {
        overflow-x: scroll;
        white-space: nowrap;
        gap: 44px;
        padding: 0 0 16px;
        border: none;
    }

    .our_story_main .story_tabs_main::-webkit-scrollbar {
        width: 0;
    }

    .our_story_main .story_tab_content {
        flex-direction: column-reverse;
        gap: 16px;
    }

    .story_tab_content .image {
        width: 100%;
    }

    .story_tab_content .content {
        width: 100%;
        padding: 0;
    }

    .story_tab_content .content .description p {
        font-size: 16px;
        line-height: 20px;
    }
}

/* Our story End */



/* Our Stats */
.our_stats_section {
    padding: 100px 0px 109px;
}

.our_stats_section .our_stats_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our_stats_main .content {
    width: 45%;
}

.our_stats_main .content .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.our_stats_main .content .heading {
    padding: 24px 0 50px;
}

.our_stats_main .content .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.our_stats_main .content .description p {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.our_stats_main .stats_content_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 122px;
    width: 45%;
}

.stats_content_main .stats_list {
    width: 50%;
    position: relative;
    padding-left: 30px;
}

.stats_content_main .stats_list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 0;
    width: 1px;
    background-image: linear-gradient(90deg, #000000 0%, rgba(153, 153, 153, 0) 100%);
}

.stats_content_main .stats_list.padding-top {
    padding-top: 70px;
}

.stats_content_main .stats_list.padding-top::before {
    top: 70px;
}

.stats_list .image {
    width: 50px;
    height: 50px;
}

.stats_list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.content_stats .heading h4 {
    color: #8C0000;
    font-size: 70px;
    font-weight: 400;
    line-height: normal;
}

.content_stats .text p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
}

@media only screen and (max-width: 1240px) {

    .our_stats_main .content .heading {
        padding: 24px 0;
    }

    .our_stats_main .content .heading h2 {
        font-size: 46px;
    }

    .our_stats_main .stats_content_main {
        width: 50%;
    }
}

@media only screen and (max-width: 830px) {

    .our_stats_section {
        background: url(image/about_rectangle.png);
        padding: 24px 0 15px;
    }

    .our_stats_section .page-width {
        padding: 0;
    }

    .our_stats_section .our_stats_main {
        flex-direction: column;
        gap: 24px;
    }

    .our_stats_main .content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }



    .our_stats_main .content .heading {
        padding: 16px 0;
    }

    .our_stats_main .content .heading h2 {
        font-size: 32px;
    }



    .our_stats_main .stats_content_main {
        background-color: #FFFFFF;
        width: 100%;
        row-gap: 52px;
        padding: 24px 20px;
        box-sizing: border-box;
    }

    .stats_content_main .stats_list {
        display: flex;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .stats_content_main .stats_list::before {
        top: unset;
        bottom: -12px;
        width: 100%;
        height: 1px;
        background: linear-gradient(-90deg, #000000 0%, rgba(153, 153, 153, 0) 100%);
    }

    .stats_content_main .stats_list,
    .stats_content_main .stats_list.padding-top {
        padding: 0;
    }

    .stats_content_main .stats_list.padding-top::before {
        top: unset;
    }

    .content_stats .heading h4 {
        font-size: 45px;
        line-height: 44px;
    }


    .content_stats .text p {
        font-size: 20px;
        line-height: 24px;
    }
}

/* End Our Stat */

/* About newsleter */
.about-btn {
    text-decoration: none;
    padding: 24px 36px;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
}

.about_newsletter_inner {
    text-align: center;
    padding: 100px 0;
}

.newsletter-heading {
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.newsletter-text {
    color: #000;
    opacity: .5;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dark_btn {
    background: #8C0000;
    color: #fff;
    border: 1px solid #8C0000;
}

.dark_btn:hover {
    background: transparent;
    color: #000;
}

.light_btn {
    border: 1px solid #6D0101;
    color: #000;
}

.light_btn:hover {
    background: #6D0101;
    border: 1px solid #6D0101;
    color: #fff;
}

.send-btn {
    margin-right: 10px;
}

@media(max-width:830px) {
    .about-btn {
        padding: 20px 20px;
        font-size: 15px;
    }

    .newsletter-heading {
        font-size: 40px;
    }

    .newsletter-text {
        font-size: 18px;
    }
}

@media(max-width:500px) {
    .newsletter-heading {
        font-size: 28px;
    }
}

@media(max-width:375px) {
    .about-btn {
        padding: 20px 15px;
        font-size: 12px;
    }
}


/* About newsletter end */


/* Industry recognized  */
.industry-recognized-section {
    background: #EBEBEB;
}

.logo-industry {
/*    max-width: 250px;*/
    width: 100%;
}

.industry-content {
    display: flex;
    flex-wrap: wrap;
}

.industry-item {
    text-align: center;
    border: 1.35px solid rgba(0, 0, 0, 0.03);
}

.industry-recognized-inner {
    padding: 80px 0;
}

.industry-title {
    font-size: 55px;
    font-weight: 400;
}

.industry-text {
    font-size: 20px;
    color: #000;
    opacity: 0.5;
    max-width: 680px;
    margin-top: 20px;
    margin-bottom: 40px;
}


@media(max-width:830px) {
    .industry-title {
        font-size: 32px;
    }

    .industry-text {
        font-size: 18px;
    }

    .industry-item.width-25 {
        max-width: 50%;
    }

    .industry-recognized-section {
        background: #fff;
    }

    .industry-recognized-inner {
        padding: 50px 0;
    }

}



/* Industry recognized end */



/* Our Mission */
.our_mission_section .our_mission_main {
    display: flex;
    justify-content: space-between;
}

.our_mission_main .content_main {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 121px;
    width: 48.6%;
}

.mission_content ul li {
    margin-top: 10px;
    list-style: none;
}

.content_main .mission_content {
    /*    width: 70%;*/
    padding: 127px 0 0 20px;
}

.content_main .mission_content.deskstop_hide {
    display: none;
}

.mission_content .subheading {
    padding-bottom: 174px;
}

.mission_content .subheading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.mission_content .heading h4 {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}

.mission_content .description {
    padding-top: 24px;
    max-width: 80%;
}

.mission_content .description p {
    color: #737373;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.content_main .vector_image {
    width: 100%;
    /*height: 100%;*/
}

.content_main .vector_image img {
    width: 100%;
    height: 100%;
    object-position: center;
    display: flex;
}

.our_mission_main .image_right {
    width: 52%;
}

.our_mission_main .image_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*display: flex;*/
}

.our_mission_main .image_right img.mobile_image {
    display: none;
}

@media(min-width:830px){
    .second_stage, .third_stage, .first_stage{
    display:none;
}
.stage_1 .first_stage {
    display: block;
}
.stage_2 .second_stage {
    display: block;
}
.stage_3 .third_stage {
    display: block;
}
}
@media only screen and (max-width: 1240px) {

    .our_mission_main .content_main {
        gap: 80px;
    }

    .content_main .mission_content {
        width: auto;
        padding: 127px 20px 0;
    }

    .mission_content .subheading {
        padding-bottom: 120px;
    }

    .mission_content .subheading h2 {
        font-size: 46px;
    }

    .mission_content .heading h4 {
        font-size: 32px;
        line-height: 36px;
    }

    .mission_content .description {
        padding-top: 20px;
    }

    .mission_content .description p {
        font-size: 20px;
        line-height: normal;
    }
}

@media only screen and (max-width: 830px) {

    .our_mission_section .our_mission_main {
        flex-direction: column-reverse;
    }

    .mission_content .description {
        max-width: 100%;
    }

    .content_main .mission_content {
        padding: 16px 20px;
    }

    .our_mission_main .content_main {
        width: 100%;
        gap: 0;
        padding-top: 16px;
    }

    .mission_content .subheading {
        padding-bottom: 24px;
    }

    .mission_content .subheading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .mission_content .heading h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .content_main .mission_content.deskstop_hide {
        display: block;
    }

    .mission_content .description {
        padding-top: 8px;
    }

    .mission_content .description p {
        font-size: 16px;
        line-height: 20px;
    }

    

    .our_mission_main .image_right {
        width: 100%;
    }

    .our_mission_main .image_right img.deskstop_image {
        display: none;
    }

    .our_mission_main .image_right img.mobile_image {
        display: block;
    }
}

/* Our Mission End */

/* Our Commitment */
.our_commitment_section {
    padding: 80px 0px 120px;
}

.our_commitment_section .section_heading {
    width: 80%;
}

.our_commitment_section .section_heading .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
}

.our_commitment_section .section_heading .heading {
    padding-top: 24px;
}

.our_commitment_section .section_heading .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.our_commitment_section .our_commitment_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding-top: 45px;
}

.commitment_card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.commitment_card .title {
    padding-top: 24px;
}

.commitment_card .title h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.commitment_card .description {
    padding: 12px 0;
}

.commitment_card .description p {
    color: #737373;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.commitment_card .social_icon {
    width: 36px;
    height: 36px;
    background-color: #E3E3E3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment_card .social_icon a img {
    width: 20px;
    height: 20px;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .our_commitment_section {
        padding: 95px 0px;
    }

    .our_commitment_section .section_heading {
        width: 100%;
    }

    .our_commitment_section .section_heading .heading {
        padding-top: 20px;
    }

    .our_commitment_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .our_commitment_section .our_commitment_main {
        padding-top: 60px;
    }

    .commitment_card .title {
        padding-top: 20px;
    }

    .commitment_card .title h2 {
        font-size: 30px;
        line-height: 36px;
    }


}

@media only screen and (max-width: 830px) {

    .our_commitment_section {
        padding: 60px 0px 69px;
    }



    .our_commitment_section .section_heading .heading {
        padding-top: 16px;
    }

    .our_commitment_section .section_heading .heading h2 {
        font-size: 32px;
    }

    .our_commitment_section .our_commitment_main {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .commitment_card .title {
        padding-top: 17px;
    }

    .commitment_card .title h2 {
        font-size: 25.73px;
        line-height: 30.88px;
    }

    .commitment_card .description {
        padding: 9px 0;
    }

    .commitment_card .description p {
        font-size: 14.29px;
        line-height: 17.15px;
    }

    .commitment_card .social_icon {
        width: 25px;
        height: 25px;
    }

    .commitment_card .social_icon a img {
        width: 14px;
        height: 14px;
    }
}


/* Our Commitment End */


/* Our Client */
.our_client_section {
    padding: 0 0px 85px;
}

.our_client_section .section_heading {
    width: 68%;
}

.our_client_section .section_heading .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
}

.our_client_section .section_heading .heading {
    padding: 24px 0 36px;
}

.our_client_section .section_heading .heading h2 {
    color: #000000;
    font-size: 45px;
    font-weight: 400;
    line-height: normal;
}

.our_client_section .section_heading .description p {
    color: #737373;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.our_client_section .our_client_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 62px;
}

.our_client_main .image_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .our_client_section .section_heading {
        width: 100%;
    }

    .our_client_section .section_heading .heading {
        padding: 20px 0;
    }

    .our_client_section .section_heading .heading h2 {
        font-size: 46px;
    }


}

@media only screen and (max-width: 830px) {


    .our_client_section {
        padding: 0 0px 35px;
    }

    .our_client_section .section_heading .heading {
        padding: 16px 0;
    }

    .our_client_section .section_heading .heading h2 {
        font-size: 32px;
    }



    .our_client_section .our_client_main {
        grid-template-columns: 1fr 1fr;
        padding-top: 77px;
    }
}

/* Our Client End */


/* Vertex Global */
.vertex_global_section {
    background: url(image/global_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px 85px;
    position: relative;
}

.vertex_global_section .section_heading {
    width: 68%;
}

.vertex_global_section .section_heading .heading h2 {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 400;
    line-height: normal;
}

.vertex_global_section .section_heading .description {
    padding-top: 36px;
}

.vertex_global_section .section_heading .description p {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    opacity: 0.5;
}

.vertex_global_section .country_tabs_main {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
}

.country_tabs_main .tab_main {
    width: 36.5%;
}

.tab_main .tab_list_global {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.tab_main .tab_list_global.active {
    background: rgba(140, 0, 0, 1);
}

.tab_list_global .text span {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.tab_list_global .icon_arrow {
    width: 61px;
    height: 59px;
    transform: rotate(-49deg);
}

.tab_main .tab_list_global.active .icon_arrow {
    transform: unset;
}

.tab_list_global .icon_arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.country_tabs_main .location_content {
    width: 60%;
    display: none;
}

.country_tabs_main .location_content#usa {
    display: block;
}

.location_content .text p {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.location_content .view_map {
    padding-top: 22px;
}

.location_content .view_map a {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    text-decoration: none;
}

.location_content .image {
    width: 59%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.location_content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .vertex_global_section {
        padding: 95px 0px;
    }

    .vertex_global_section .section_heading {
        width: 100%;
    }

    .vertex_global_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .vertex_global_section .section_heading .description p {
        font-size: 20px;
        line-height: 28px;
    }

    .tab_list_global .text span {
        font-size: 36px;
        line-height: 42px;
    }

    .tab_list_global .icon_arrow {
        width: 36px;
        height: 36px;
    }

    .location_content .text p {
        font-size: 28px;
        line-height: 32px;
    }

    .location_content .view_map {
        padding-top: 20px;
    }

    .location_content .view_map a {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 830px) {

    .vertex_global_section {
        padding: 48px 0px 185px;
    }

    .vertex_global_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .vertex_global_section .section_heading .description {
        padding-top: 16px;
    }

    .vertex_global_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .country_tabs_main .tab_main {
        width: 63.6%;
    }

    .vertex_global_section .country_tabs_main {
        align-items: end;
        padding-top: 16px;
    }

    .tab_main .tab_list_global {
        padding: 8px 10px;
    }

    .tab_list_global .text span {
        font-size: 20px;
        line-height: 24px;
    }

    .tab_list_global .icon_arrow {
        width: 25px;
        height: 25px;
    }

    .country_tabs_main .location_content {
        width: 33.4%;
    }

    .location_content .text p {
        font-size: 12px;
        line-height: 14.4px;
    }

    .location_content .view_map a {
        font-size: 12px;
        line-height: 14.4px;
    }

    .location_content .image {
        width: 100%;
        height: 183px;
    }

}

/* Vertex Global End */

.contact_section {
    padding: 97px 0 132px;
}

.contact_main input::placeholder {
    color: #A4A4A4;
    opacity: 1;
    /* Firefox */
}

.contact_main input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #A4A4A4;
}

.contact_section .section_heading {
    width: 80%;
}

.contact_section .section_heading .heading h2 {
    color: #000000;
    font-size: 4vw;
    font-weight: 400;
    line-height: normal;
}

.contact_section .section_heading .description {
    padding-top: 12px;
}

.contact_section .section_heading .description p {
    color: #000000;
    font-size: 36px;
    font-weight: 400;
    line-height: 58px;
}

.contact_section .section_heading .description a {
    color: #8C0000;
    text-decoration: none;
    border-bottom: 1px solid #8C0000;
}

.contact_section .contact_main {
    padding-top: 63px;
}

.contact_main .input_field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000000;
    padding: 31px 0;
    outline: none;
}

.input_field .label label {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.input_field .input {
    width: 60%;
}

.input_field .input input {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    border: none;
    outline: none;
    width: 100%;
}
.input_field select {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}
option:disabled {
    color: #000;
   background: transparent;
}
select option[value=""] {
  color: #A4A4A4; /* Placeholder color */
}
select:invalid {
  color: #A4A4A4; /* Initial placeholder color */
}
select option:not(:disabled) {
  color: #000000; /* Normal color for other options */
}
.contact_main .submit_form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    cursor: pointer;
}

.submit_form input {
    background-color: transparent;
    color: #000000;
    font-size: 4vw;
    font-weight: 400;
    line-height: normal;
    border: none;
    outline: none;
    cursor: pointer;
}

.submit_form img {
    width: 61px;
    height: 59px;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .contact_section .section_heading {
        width: 100%;
    }

    .contact_section .section_heading .description p {
        font-size: 20px;
        line-height: 28px;
    }

    .input_field .label label,
    .input_field .input input,
    .input_field select {
        font-size: 20px;
/*        line-height: normal;*/
    }
}

@media only screen and (max-width: 830px) {

    .contact_section {
        padding: 52px 0 28px;
    }

    .contact_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .contact_section .section_heading .description {
        padding-top: 29px;
    }

    .contact_section .section_heading .description p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact_section .contact_main {
        padding-top: 45px;
    }

    .contact_main .input_field {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        padding: 21px 0;
    }

    .input_field .input {
        width: 100%;
    }

    .input_field .label label {
        font-size: 16px;
        line-height: 20px;
    }

    .input_field .input input,
    .input_field select {
        font-size: 12px;
    }

    .contact_main .submit_form {
        justify-content: flex-end;
    }

    .submit_form input {
        font-size: 36px;
        line-height: 43px;
    }

    .submit_form img {
        width: 32px;
        height: 32px;
    }
}

/* Contact Us End */

/* Performance blance */
.balance_performance_section {
    padding: 95px 0 85px;
}

.balance_performance_section .section_heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.balance_performance_section .balance_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 36px;
    row-gap: 45px;
    padding-top: 115px;
}



.balance_list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.balance_list .heading {
    width: 100%;
    max-width: 353px;
    padding: 30px 0 24px;
}

.balance_list .heading h2 {
    color: #272E34;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
}

.balance_list .description p {
    color: #272E34;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

@media only screen and (max-width: 1240px) {

    .balance_performance_section .section_heading h2 {
        font-size: 46px;
    }

    .balance_performance_section .balance_main {
        row-gap: 52px;
        column-gap: 32px;
    }


}

@media only screen and (max-width: 830px) {

    .balance_performance_section {
        padding: 46px 0 53px;
    }

    .balance_performance_section .section_heading {
        display: none;
    }

    .balance_performance_section .balance_main {
        grid-template-columns: 1fr;
        row-gap: 32px;
        padding-top: 0;
    }

  

    .balance_list .heading {
        max-width: 100%;
        padding: 30px 0 15px;
    }

    .balance_list .heading h2 {
        font-size: 24px;
    }

    .balance_list .description p {
        font-size: 16px;
        line-height: 20px;
    }

}

/* End performance balance */



/* Why Vertex */
.why_vertex_section {
    background: url(image/why_vertex_bg.png);
    background-color: #686868;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
}

.why_vertex_section .section_heading .heading h2 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.why_vertex_section .section_heading .description {
    padding-top: 36px;
}

.why_vertex_section .section_heading .description p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.why_vertex_section .why_vertex_main {
    display: flex;
    padding-top: 92px;
}

.why_vertex_main .why_content {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding: 81px 27px 183px 35px;
    width: 100%;
    max-width: 25%;
    transition: 0.4s all;
}

.why_vertex_main .why_content.active {
    background-color: #424242;
    border-left: 2px solid #424242;
    padding: 81px 27px 183px 100px;
    max-width: 50%;
    width: 100%
}

.why_vertex_main .why_content.active::before {
    height: 3px;
    border-top: 2px solid #8C0000;
}

.why_vertex_main .why_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.why_content .heading h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 400;
    line-height: 43.2px;
    opacity: 0.5;
}

.why_vertex_main .why_content.active .heading h2 {
    opacity: 1;
}

.why_content .description {
    padding-top: 25px;
    display: none;
}

.why_content .description.active {
    display: block;
}

.why_content .description p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

@media only screen and (max-width: 1240px) {

    .why_vertex_section {
        padding: 95px 0 0;
    }

    .why_vertex_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .why_vertex_main .why_content.active {
        padding: 81px 30px 90px 30px;
    }
}

@media(min-width:830px) {
    .why_vertex_section .section_heading .description {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 830px) {

    .why_vertex_section {
        padding: 21px 0 0;
    }

    .why_vertex_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .why_vertex_section .section_heading .description {
        padding-top: 20px;
    }

    .why_vertex_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .why_vertex_section .why_vertex_main {
        flex-direction: column;
        padding-top: 36px;
    }

    .why_vertex_main .why_content {
        padding: 24px 20px;
        max-width: 100%;
        box-sizing: border-box;
        border-left: none;
    }

    .why_vertex_main .why_content.active {
        background-color: transparent;
        padding: 24px 20px;
        border-left: none;
        max-width: 100%;
    }

    .why_vertex_main .why_content::before,
    .why_vertex_main .why_content.active::before {
        height: 1px;
        border-top: 1px solid #8C0000;
    }

    .why_content .heading h2 {
        font-size: 24px;
        line-height: 28.8px;
        opacity: 1;
    }

    .why_content .description {
        display: block;
        padding-top: 10px;
    }

    .why_content .description p {
        font-size: 16px;
        line-height: 20px;
    }

}

/* Why Vertex  end */


/* Our Partnership */
.our_partnership_section {
    padding: 140px 0 50px;
    position: relative;
}

.our_partnership_section .section_heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.our_partnership_section .vector_image {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.our_partnership_section .vector_image img {
    width: 100%;
    height: 100%;
    display: flex;
}

.our_partnership_section .partnership_tab_main {
    padding-top: 12px;
}

.partnership_tab_main .partnership_tab {
    position: relative;
}

.partnership_tab .partnership_tab_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 49px;
    border-bottom: 1px solid #8F8F8F;
    cursor: pointer;
    position: relative;
}

.partnership_tab .heading h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    line-height: 68px;
}

.partnership_tab .icon_arrow {
    width: 61px;
    height: 59px;
    transition: 0.4s;
}
.partnership_tab.active>div>.icon_arrow {
    display: none;
}
.partnership_tab .icon_arrow:hover {
    transform: rotate(45deg);
}
.partnership_tab .icon_arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
.partnership_tab_main .partnership_content {
    max-height: 0;
    background-color: #8C0000;
    position: absolute;
    left: 0;
    top: 0;
    /*top: 15px;*/
    z-index: 2;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: opacity 0.6s ease-in;
}
.partnership_tab_main .partnership_content.active {
    max-height: 100%;
    opacity: 1;
    padding: 52px 36px 71px 50px;
}

.partnership_content .header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 41px;
}

.header_content .heading h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 500;
    line-height: 68px;
}

.header_content .icon_arrow {
    width: 61px;
    height: 59px;
    transition: 0.4s;
}

.header_content .icon_arrow:hover {
    transform: rotate(45deg);
}

.header_content .icon_arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.partnership_content .content {
    width: 82%;
    padding-top: 24px;
}

.partnership_content .content .description p {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
}

.partnership_content .content .text_list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    padding-left: 32px;
}

.partnership_content .content .text_list ul li {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;
}

@media only screen and (max-width: 1240px) {

    .our_partnership_section {
        padding: 95px 0;
    }

    .our_partnership_section .section_heading h2 {
        font-size: 46px;
    }

    .partnership_tab .partnership_tab_header {
        padding: 32px 28px;
    }

    .partnership_tab .heading h2 {
        font-size: 36px;
        line-height: 42px;
    }

    .partnership_tab .icon_arrow {
        width: 46px;
        height: 46px;
    }

    .partnership_content .content .description p {
        font-size: 24px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 830px) {

    .our_partnership_section {
        padding: 24px 0 59px;
    }

    .our_partnership_section .section_heading h2 {
        font-size: 32px;
        line-height: 36px;
    }



    .partnership_tab_main .partnership_content.active {
        padding: 24px 20px;
    }

    .our_partnership_section .partnership_tab_main {
        padding: 0;
    }

    .partnership_tab .partnership_tab_header {
        display: block;
        padding: 24px 20px;
    }

    .partnership_tab .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .partnership_tab .icon_arrow {
        display: none;
    }

    .partnership_content .header_content {
        padding-bottom: 24px;
    }

    .partnership_content .content .text_list ul {
        gap: 6px;
        padding-top: 24px;
    }

    .partnership_content .content .description p,
    .partnership_content .content .text_list ul li {
        font-size: 16px;
        line-height: 20px;
        opacity: 1;
    }

}

/* Our Partnership end */


/* filter */
.filter-container select {
    border-right: 1.12px solid rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 20%;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 0;
    border-left: 0;
    border-top: 0;
}

.filter_section {
    border-bottom: 1.12px solid rgba(0, 0, 0, 0.3);
}

@media(max-width:830px) {
    .filter-container select {
        width: 49%;
    }

    .filter-container select:last-child {
        border-right: 0px
    }
}

/* Filter End */


/* Case Study item */

.case-study-section {
    padding: 60px 0px 60px;
}
.case-study-section .portfollio_main {
    display: flex;
    flex-direction: column; 
    gap:32px; 
}

@media(max-width:830px) {
    .case-study-section .portfollio_main {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 50px 0 52px;
    }
}

/* Case Study Item */

/*  blog tag */
.blog_tag {
    border: 1px solid #8C0001;
    border-radius: 100px;
    display: inline-block;
    padding: 13px 25px;
    cursor: pointer;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.blog_tag span {
    font-size: 16px;
}

.blog_tag.active_tag {
    background: #8C0001;
    color: #fff;
}

.blog_tag_slider {
    display: flex;
    gap: 10px;
    padding: 75px 0;
}

.blog_tag_slider .slick-prev:before,
.blog_tag_slider .slick-next:before {
    content: none;
}

.blog_tag_slider .slick-next {
    right: -15px;
}

.blog_tag_slider .slick-prev {
    left: -10px;
}

.page-width-blog {
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.blog_tag_slider .slick-slider {
    margin: 0 -10px;
}

.blog_tag_slider .slick-slide {
    /*    padding:10px;*/
    margin-right: 10px;
    margin-left: 10px;
}

@media(max-width:830px) {
    .blog_tag_slider {
        padding: 43px 0;
    }
}

/* blog tag end */


/* blog content */
.blog-img img {
    max-width: 100%;
    width: 100%;
}

.blog_content_item {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 60px;
}

.blog_content_title {
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: normal;
}

.blog_tag_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

span.tag {
    font-size: 20px;
    line-height: normal;
    color: #8C0000;
}

span.date {
    font-size: 20px;
    line-height: normal;
    color: #737373;
}

.blog-title {
    font-size: 46px;
    font-weight: 300;
    line-height: normal;
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-title a {
    text-decoration: none;
    color: #000000;
}

.blog-content {
    padding: 0 138px 0 25px;
}

.btn_blog {
    text-decoration: none;
    color: #fff;
    background: #8C0000;
    border: 1px solid #8C0000;
    padding: 20px 25px;
    display: inline-block;
    font-size: 17px;
}

.btn_blog:hover {
    color: #8C0000;
    background: #fff;
}

@media(max-width:1240px) {
    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 0 50px 0 25px;
    }
}


@media(max-width:830px) {
    .blog_content_item {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 25px;
    }

    .blog-img.width-50,
    .blog-content.width-50 {
        max-width: 100%;
    }

    .blog-content {
        padding: 0;
    }

    .btn_blog {
        display: none;
    }

    .blog-title {
        font-size: 23px;
    }

    span.date,
    span.tag {
        font-size: 14px;
    }

    .blog_content_title {
        font-size: 32px;
        margin-bottom: 25px;
        text-align: center;
    }
}

/*  blog content end */



/* Get Touch */
.get_touch_section .get_touch_main {
    display: flex;
    justify-content: space-between;
}
.form_error {
    color: red;
}
.get_touch_main .content {
    width: 50%;
    transition: 0.4s;
}

.get_touch_main:hover .content {
    background-color: #8C0000;
}

.get_touch_main .content a {
    display: flex;
    flex-direction: column;
    padding: 7.3vw 0 0 6.3vw;
    gap: 74px;
    text-decoration: none;
    transition: 0.4s;
}

.get_touch_main:hover .content a {
    padding: 7.3vw 0 0 3.3vw;
}

.content a .heading h2 {
    color: #000000;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
}

.get_touch_main:hover .heading h2 {
    color: #FFFFFF;
}

.get_touch_main .right_image {
    width: 50%;
}

.get_touch_main .right_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}
img.desksop_icon_white{
    display:none !important;  
}
.get_touch_main:hover img.desksop_icon {
    display:none;
}

.content a .icon_arrow {
    width: 65px;
    height: 63px;
}

.content a .icon_arrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.content a .icon_arrow img.mobile_icon {
    display: none;
}
#contact_us_submit:disabled {
            cursor: wait;
            /*background: #dfdfdf;*/
        }

@media(min-width:830px){
    .get_touch_main:hover img.desksop_icon_white {
    display:block !important;
    transform: rotate(45deg);
    transition: 0.4s ease-in-out;
}
}
@media only screen and (max-width: 1240px) {

    .get_touch_main .content a {
        gap: 56px;
    }
}

@media only screen and (max-width: 830px) {

    .get_touch_section .get_touch_main {
        flex-direction: column;
    }

    .get_touch_main .content {
        width: 100%;
        box-sizing: border-box;
        background-color: #8C0000;
    }

    .get_touch_main .content a {
        gap: 39.95px;
        padding: 65.91px 32.72px 152.79px;
    }

    .get_touch_main:hover .content a {
        padding: 65.91px 32.72px 152.79px;
    }

    .content a .heading h2 {
        color: #FFFFFF;
        font-size: 32px;
        line-height: 46.28px;
    }

    .content a .icon_arrow {
        width: 30px;
        height: 29px;
    }

    .content a .icon_arrow img.desksop_icon {
        display: none;
    }

    .content a .icon_arrow img.mobile_icon {
        display: block;
    }

    .get_touch_main .right_image {
        width: 100%;
    }
}


/* end get in touch */



/* Capitalize Efficiency */
.efficiency_section {
    padding: 130px 0 60px;
}

.efficiency_section .section_heading {
    width: 50%;
}

.efficiency_section .section_heading .heading h2 {
    font-size: 55px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -2px;
}

.efficiency_section .section_heading .description {
    padding-top: 32px;
}

.efficiency_section .section_heading .description p {
    color: #202020;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.efficiency_section .efficiency_main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 106px;
    column-gap: 91px;
    padding-top: 92px;
}

.efficiency_main .efficiency_list {
    width: 25%;
}

.efficiency_list .image {
    width: 58px;
    height: 50px;
}

.efficiency_list .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
}

.efficiency_list .heading {
    padding-top: 30px;
}

.efficiency_list .heading h4 {
    color: #202020;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
}

@media only screen and (max-width: 1240px) {

    .efficiency_section .section_heading {
        width: 100%;
    }

    .efficiency_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .efficiency_section .section_heading .description {
        padding-top: 26px;
    }

    .efficiency_section .section_heading .description p {
        font-size: 20px;
        line-height: 28px;
    }

    .efficiency_section .efficiency_main {
        row-gap: 80px;
        column-gap: 40px;
    }

    .efficiency_main .efficiency_list {
        width: 30%;
    }

    .efficiency_list .heading h4 {
        font-size: 26px;
        line-height: 32px;
    }

}

@media only screen and (max-width: 830px) {

    .efficiency_section {
        padding: 50px 0 44px;
    }

    .efficiency_main .efficiency_list {
        width: 100%;
    }

    .efficiency_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .efficiency_section .section_heading .description {
        padding-top: 16px;
    }

    .efficiency_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .efficiency_section .efficiency_main {
        row-gap: 36px;
        padding-top: 40px;
    }

    .efficiency_list .image {
        width: 32px;
        height: 32px;
    }

    .efficiency_list .heading {
        padding-top: 17px;
    }

    .efficiency_list .heading h4 {
        font-size: 20px;
        line-height: 26px;
    }
}

/* Capitalize Efficiency End */



/* What We Offer */
.what_offer_section {
    background: url(image/we_offer_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 82px 0 0;
}

.what_offer_section .section_heading {
    display: flex;
    justify-content: space-between;
}

.what_offer_section .section_heading .heading {
    width: 50%;
}

.what_offer_section .section_heading .heading h2 {
    color: #000000;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
}

.what_offer_section .section_heading .content {
    width: 50%;
}

.what_offer_section .section_heading .content .subheading h4 {
    color: #000000;
    font-size: 38px;
    font-weight: 500;
    line-height: 42px;
}

.what_offer_section .section_heading .content .description {
    padding-top: 29px;
}

.what_offer_section .section_heading .content .description p {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    opacity: 0.5;
}

.what_offer_section .what_offer_main {
    padding-top: 72px;
}

.what_offer_main .offer_accordian {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000000;
    padding: 55px 0 58px;
}

.what_offer_main .offer_accordian:nth-last-child(1) {
    border-bottom: none;
}

.offer_accordian .heading {
    width: 50%;
}

.offer_accordian .heading h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    line-height: 68px;
}

.offer_accordian .content_accordian {
    width: 50%;
}

.content_accordian .description p {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
}

.content_accordian .link_learn {
    padding-top: 16px;
}

.content_accordian .link_learn a {
    display: flex;
    align-items: end;
    gap: 5.5px;
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.link_learn a img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .what_offer_section .section_heading .content .subheading h4 {
        font-size: 32px;
        line-height: 38px;
    }

    .what_offer_section .section_heading .content .description {
        padding-top: 24px;
    }

    .what_offer_section .section_heading .content .description p {
        font-size: 26px;
        line-height: 34px;
    }

    .offer_accordian .heading h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .content_accordian .description p {
        font-size: 18px;
        line-height: 24px;
    }

    .content_accordian .link_learn a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 830px) {

    .what_offer_section {
        background: url(image/we_offer_bg_mob.png);
        padding: 54px 0 0;
    }

    .what_offer_section .section_heading {
        flex-direction: column;
        gap: 16px;
    }

    .what_offer_section .section_heading .heading {
        width: 100%;
    }

    .what_offer_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .what_offer_section .section_heading .content {
        width: 100%;
    }

    .what_offer_section .section_heading .content .subheading h4 {
        font-size: 24px;
        line-height: 28px;
    }

    .what_offer_section .section_heading .content .description {
        padding-top: 16px;
    }

    .what_offer_section .section_heading .content .description p {
        color: #202020;
        font-size: 16px;
        line-height: 20px;
        opacity: 1;
    }

    .what_offer_section .what_offer_main {
        padding-top: 38px;
    }

    .what_offer_main .offer_accordian {
        flex-direction: column;
        padding: 17px 0;
    }

    .offer_accordian .heading {
        width: 100%;
        cursor: pointer;
        position: relative;
    }

    .offer_accordian .heading::before {
        content: "";
        width: 22px;
        height: 22px;
        position: absolute;
        top: 5px;
        right: 0;
        background: url(image/Component\ 80.svg);
        background-position: center;
        background-size: cover;
    }

    .offer_accordian .heading h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .offer_accordian .content_accordian {
        max-height: 0;
        width: 100%;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    .offer_accordian .content_accordian.active {
        max-height: 1000px;
        opacity: 1;
        padding-top: 16px;
    }
}



/* What We Offer End */



/* Technology Stack */
.technology_stack_section {
    background-color: #8C0000;
    padding: 106px 0 62px;
}

.technology_stack_section .section_heading {
    width: 50%;
}

.technology_stack_section .section_heading .heading h2 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 500;
    line-height: normal;
}

.technology_stack_section .section_heading .description {
    padding-top: 23.5px;
}

.technology_stack_section .section_heading .description p {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 36px;
}

.technology_stack_section .tech_tabs_main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
}

.tech_tabs_main .tech_tab {
    width: 50%;
    color: #FFFFFF;
    border-bottom: 4px solid #DBE3EF;
    padding-bottom: 20px;
}

.tech_tabs_main .tech_tab h2 {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: -1px;
}

.technology_stack_section .technology_main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
}

.technology_main .web_main {
    width: 50%;
}

.web_main .web_content {
    display: flex;
    /* gap: 32px; */
}

.web_content .web_first {
    width: 100%;
    max-width: 42%;
}

.web_first .heading h4 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.5px;
}

.web_first .images_main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 20px;
}

.images_main .image {
    width: 90px;
    height: 90px;
}

.images_main .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.image_list .heading {
    padding-top: 5px;
}

.image_list .heading h6 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.5px;
    text-align: center;
}

@media only screen and (max-width: 1240px) {

    .technology_stack_section {
        padding: 95px 0 62px;
    }

    .technology_stack_section .section_heading {
        width: 100%;
    }

    .technology_stack_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .technology_stack_section .section_heading .description {
        padding-top: 20px;
    }

    .technology_stack_section .section_heading .description p {
        font-size: 20px;
        line-height: 28px;
    }

    .technology_stack_section .technology_main {
        padding-top: 42px;
    }

    .web_main .tech_tab h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .web_content .web_first {
        max-width: 50%;
    }

    .web_first .images_main {
        gap: 16px;
    }

    .web_first .heading h4 {
        font-size: 20px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 830px) {

    .technology_stack_section {
        margin: 32px 20px;
        padding: 39px 0 99px;
    }

    .technology_stack_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .technology_stack_section .section_heading .description {
        padding-top: 16px;
    }

    .technology_stack_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .technology_stack_section .tech_tabs_main {
        justify-content: center;
        gap: 20px;
    }

    .tech_tabs_main .tech_tab {
        width: auto;
        border: 1px solid #FFFFFF;
        padding: 16px;
    }

    .tech_tabs_main .tech_tab.active {
        background-color: #FFFFFF;
        border: 1px solid #FFFFFF;
        color: #8C0000;
    }

    .tech_tabs_main .tech_tab h2 {
        text-align: center;
        font-size: 16px;
        line-height: 19.71px;
    }

    .technology_stack_section .technology_main {
        flex-direction: column;
        padding-top: 32px;
    }

    .technology_main>.web_main {
        display: none;
    }

    .technology_main>.web_main.active {
        display: block;
    }

    .web_main .web_content {
        flex-direction: column;
        gap: 47.62px;
    }

    .web_content .web_first {
        max-width: 100%;
    }

    .technology_main .web_main {
        width: 100%;
    }

    .web_first .heading h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .web_first .images_main {
        padding-left: 20px;
    }

    .images_main .image {
        width: 63px;
        height: 63px;
    }

    .image_list .heading h6 {
        font-size: 12px;
        line-height: 21px;
    }
}

/* Technology Stack End  */


/* Industries Tabs */
.industries_tab_section {
    background: url(image/we_offer_bg.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 10px 0 0;
}

.industries_tab_main .tab_header {
    display: flex;
    justify-content: space-between;
        padding-bottom: 71px;
}

.industries_tab_main .industries_tab {
    border-bottom: 1px solid #000000;
    padding: 72px 0 0px;
    cursor: pointer;
}

.industries_tab_main .industries_tab:nth-last-child(1) {
    border-bottom: none;
}

.tab_header .heading {
    width: 30%;
}

.tab_header .heading h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    line-height: 68px;
}

.tab_header .content {
    width: 40%;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.content .description p {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.01em;
}

.content .link_learn {
    padding-top: 16px;
}

.content .link_learn a {
    display: flex;
    align-items: end;
    gap: 5.5px;
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.link_learn a img {
    width: 18px;
    height: 18px;
    object-fit: cover;
    display: flex;
}

.tab_header .content .featured_image_mobile {
    display: none;
}

.content .featured_image_mobile {
    width: 100%;
    height: 100%;
}

.content .featured_image_mobile img {
    width: 100%;
    height: 100%;
    display: flex;
}

.industries_tab .featured_image {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.industries_tab .featured_image.active {
    max-height: 100%;
    opacity: 1;
    /*padding-top: 71px;*/
}

.industries_tab .featured_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

@media only screen and (max-width: 1240px) {

    .industries_tab .heading h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .industries_tab .description p {
        font-size: 18px;
        line-height: 24px;
    }

    .industries_tab .link_learn a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 830px) {

    .industries_tab_section {
        background: url(image/we_offer_bg_mob.png);
        padding: 0;
    }

    .industries_tab_main .industries_tab {
        padding: 17px 0;
    }

    .industries_tab_main .tab_header {
        flex-direction: column;
            padding-bottom: 0;
    }

    .industries_tab .heading {
        width: 100%;
        cursor: pointer;
        position: relative;
    }

    .industries_tab .heading::before {
        content: "";
        width: 22px;
        height: 22px;
        position: absolute;
        top: 5px;
        right: 0;
        background: url(image/Component\ 80.svg);
        background-position: center;
        background-size: cover;
    }

    .industries_tab .heading h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .tab_header .content {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .tab_header .content.active {
        max-height: 100%;
        opacity: 1;
        padding-top: 16px;
    }

    .tab_header .content .featured_image_mobile {
        display: block;
        padding-top: 16px;
    }

    .industries_tab .featured_image {
        display: none;
    }

}


/* industries tab */

/* Blog Inner Banner */
.blog_banner_inner {
    padding: 150px 0 100px;
}

.blog_banner_main .content {
    width: 60%;
}

.blog_banner_main .content .subheading h4 {
    color: #00000091;
    font-size: 24px;
    font-weight: 400;
    line-height: 42px;
}

.blog_banner_main .content .heading {
    padding-top: 24px;
}

.blog_banner_main .content .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.blog_banner_main .banner_image {
    width: 100%;
    height: 100%;
    padding-top: 36px;
}

.blog_banner_main .banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .blog_banner_main .content {
        width: 100%;
    }

    .blog_banner_main .content .subheading h4 {
        font-size: 20px;
        line-height: 26px;
    }

    .blog_banner_main .content .heading {
        padding-top: 20px;
    }

    .blog_banner_main .content .heading h2 {
        font-size: 46px;
    }
}

@media only screen and (max-width: 830px) {

    .blog_banner_inner {
        padding: 105px 0 0;
    }

    .blog_banner_inner .page-width {
        padding: 0;
    }

    .blog_banner_main .content {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .blog_banner_main .content .subheading h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .blog_banner_main .content .heading {
        padding-top: 10px;
    }

    .blog_banner_main .content .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .blog_banner_main .banner_image {
        padding-top: 22px;
    }
}

/* blog inner banner */


/* Introduction Section*/
.introduction_section {
    padding: 0 0 90px;
}

.introduction_section .introduction_main {
    display: flex;
    justify-content: space-between;
}

.introduction_main .content {
    width: 60%;
}

.introduction_main .content .heading h2 {
    color: #000000;
    font-size: 48px;
    font-weight: 500;
    line-height: normal;
}

.introduction_main .content .description p {
    color: #000000;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    padding-top: 24px;
    opacity: 0.8;
}

.introduction_main .find_expert {
    padding: 47px 51px;
    width: 32.45%;
    background: url(image/Untitled-16.png);
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
}

.find_expert .heading h2 {
    color: #FFFFFF;
    font-size: 3.4vw;
    font-weight: 400;
    line-height: normal;
}

.find_expert .call_button {
    padding-top: 84px;
}

.find_expert .call_button a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #FFFFFF;
    color: #8C0000;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border: 1px solid #8C0000;
}

.find_expert .call_button a:hover {
    background-color: #8C0000;
    color: #fff;
    border: 1px solid #fff;
}

.introduction_section .contents_tabs_main {
    padding-top: 40px;
}

.tabs_intro .heading h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
}

html {
    scroll-behavior: smooth;
}

.tabs_intro .tabs_button_main {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 27px;
}

.tabs_button_main .tab_button a {
    color: #4D4D4D;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    cursor: pointer;
    text-decoration: none;
}

.tabs_button_main .tab_button.active span {
    color: #8C0000;
}

.tab_content_main .content_first {
    display: none;
}

.tab_content_main .content_first.active {
    display: block;
}

.tab_content_main .content {
    width: 60%;
    padding-top: 36px;
}

.tab_content_main .content .heading h2 {
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
}

.tab_content_main .content .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    padding: 24px 0;
}

.tab_content_main .image {
    width: 50%;
    height: 100%;
}

.tab_content_main .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .introduction_main .content .heading h2 {
        font-size: 36px;
    }

    .introduction_main .content .description p {
        font-size: 26px;
        line-height: 32px;
        padding-top: 20px;
    }

    .introduction_main .content .heading h2 {
        font-size: 36px;
    }

    .introduction_main .content .description p {
        font-size: 20px;
        line-height: 28px;
        padding-top: 20px;
    }

    .introduction_main .find_expert {
        width: 38%;
    }

    .find_expert .call_button {
        padding-top: 68px;
    }

    .find_expert .call_button a {
        font-size: 18px;
        line-height: 22px;
    }

    .tabs_intro .tabs_button_main {
        width: 40%;
        gap: 36px;
        padding-top: 24px;
    }

    .tab_content_main .content {
        width: 100%;
    }

    .tab_content_main .content .heading h2 {
        font-size: 38px;
        line-height: 46px;
    }

    .tab_content_main .content .description p {
        font-size: 20px;
        line-height: 28px;
        padding: 20px 0;
    }
}

@media only screen and (max-width: 830px) {

    .introduction_section {
        padding: 24px 0 65px;
    }

    .introduction_section .introduction_main {
        flex-direction: column;
        gap: 24px;
    }

    .introduction_main .content {
        width: 100%;
    }

    .introduction_main .find_expert {
        width: 100%;
    }

    .find_expert .heading h2 {
        font-size: 44px;
        line-height: 53.62px;
    }

    .find_expert .call_button {
        padding-top: 64px;
    }

    .find_expert .call_button a {
        font-size: 16px;
        line-height: 17.87px;
        padding: 17px 26px;
    }

    .introduction_section .contents_tabs_main {
        padding-top: 24px;
    }

    .tabs_intro .tabs_button_main {
        width: 80%;
        gap: 24px;
        padding-top: 19px;
    }

    .tabs_intro .heading h4 {
        font-size: 20px;
        line-height: 31px;
    }

    .tabs_button_main .tab_button a {
        font-size: 16px;
        line-height: 19.8px;
    }

    .tab_content_main .content .heading h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .tab_content_main .content .description p {
        font-size: 16px;
        line-height: 20px;
        padding: 16px 0;
    }

    .tab_content_main .image {
        width: 100%;
    }
}

/* Introduction Section end */
/* Latest Blog */
.latest_blog_section {
    padding: 0 0 80px;
}

.latest_blog_section .section_heading h2 {
    color: #000000;
    font-size: 3.8vw;
    font-weight: 400;
    line-height: normal;
}

.latest_blog_section .latest_blog_main {
    padding-top: 48px;
}

.latest_blog_main .slick-slide {
    margin-right: 20px;
}

.blog_list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.blog_list .content {
    padding-top: 24px;
}

.content .latest_date_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.latest_date_main .text p {
    color: #8C0000;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.latest_date_main .blog_date p {
    color: #737373;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
}

.content .title {
    padding: 16px 0;
}

.content .title h4 a {
    color: #000000;
    text-decoration: none;
}

.content .title h4 {
    color: #000000;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
}

.content .readmore a {
    display: inline-block;
    padding: 15px 16px;
    border: 1px solid #737373;
    color: #8C0000;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
}

.latest_blog_main .slick-prev,
.latest_blog_main .slick-next {
    width: 40px;
    height: 60px;
    top: -3%;
}

.latest_blog_main .slick-prev {
    right: 5%;
    left: unset;
}

.latest_blog_main .slick-next:before {
    content: none;
}

.latest_blog_main .slick-prev img,
.latest_blog_main .slick-next img {
    width: 100%;
    height: 100%;
}

.latest_blog_main .slick-next {
    right: 2%;
}

.latest_blog_main .slick-prev:before,

.slick-next:before {
    content: none;
}

@media only screen and (max-width: 830px) {

    .latest_blog_section .section_heading h2 {
        font-size: 26px;
        line-height: 35.39px;
    }

    .latest_blog_main .slick-list.draggable {
        padding: 0 18.072vw 0 0;
    }

    .latest_blog_main .slick-slide {
        margin-right: 10px;
    }

    .latest_date_main .text p,
    .latest_date_main .blog_date p {
        font-size: 12px;
        line-height: 18.35px;
    }

    .content .title h4 {
        font-size: 16px;
    }

    .content .readmore a {
        padding: 12px 18px;
        font-size: 12px;
        line-height: 14.4px;
    }

    .latest_blog_main .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .latest_blog_main .slick-prev {
        right: 10%;
    }
}

@media only screen and (max-width: 1240px) {

    .content .title h4 {
        font-size: 28px;
    }

    .content .readmore a {
        padding: 20px 28px;
        font-size: 18px;
        line-height: 22px;
    }

    .latest_blog_main .slick-prev {
        right: 8%;
    }
}

/* Latest Blog End */


/* Solution Board */
.solution_broad_section {
    background-color: #646464;
    padding: 100px 0 120px;
}

.solution_broad_section .section_heading {
    width: 85%;
}

.solution_broad_section .section_heading .heading h2 {
    color: #FFFFFF;
    font-size: 3.8vw;
    font-weight: 400;
    line-height: normal;
}

.solution_broad_section .section_heading .description {
    padding-top: 36px;
}

.solution_broad_section .section_heading .description p {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    opacity: 0.5;
}

.solution_broad_section .solution_main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-top: 116px;
}

.solution_main .content {
    width: 63%;
}

.solution_main .content .heading h4 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
}

.solution_main .content .list_point {
    padding-top: 36px;
    padding-left: 28px;
}

.solution_main .content .list_point ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.solution_main .content .list_point ul li {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}

.solution_main .content .list_point ul li::marker {
    color: #8C0000;
}

@media only screen and (max-width: 1240px) {

    .solution_broad_section {
        padding: 95px 0;
    }

    .solution_broad_section .section_heading {
        width: 100%;
    }

    .solution_broad_section .section_heading .description {
        padding-top: 26px;
    }

    .solution_broad_section .section_heading .description p {
        font-size: 20px;
    }

    .solution_broad_section .solution_main {
        gap: 76px;
        padding-top: 80px;
    }

    .solution_main .content .heading h4 {
        font-size: 42px;
        line-height: 52px;
    }

    .solution_main .content .list_point ul {
        gap: 20px;
    }

    .solution_main .content .list_point ul li {
        font-size: 20px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 830px) {

    .solution_broad_section {
        padding: 24px 0 47px;
    }

    .solution_broad_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .solution_broad_section .section_heading .description {
        padding-top: 20px;
    }

    .solution_broad_section .section_heading .description p {
        font-size: 18px;
        line-height: 21.6px;
    }

    .solution_broad_section .solution_main {
        gap: 23px;
        padding-top: 30px;
    }

    .solution_main .content .heading h4 {
        font-size: 32px;
    }

    .solution_main .content .list_point {
        padding-top: 16px;
    }

    .solution_main .content .list_point ul li {
        font-size: 16px;
    }
}

/* project goal */
.project_goal_section {
    background-color: #8C0000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
}

.project_goal_section .section_heading .heading h2 {
    color: #FFFFFF;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.project_goal_section .section_heading .description {
    padding-top: 36px;
}

.project_goal_section .section_heading .description p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.project_goal_section .project_goal_main {
    display: flex;
    padding-top: 92px;
}

.project_goal_main .why_content {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding: 81px 27px 183px 35px;
    width: 100%;
    max-width: 25%;
    transition: 0.4s all;
}

.project_goal_main .why_content.active {
    background-color: #8C0000;
    border-left: 2px solid #424242;
    padding: 81px 27px 183px 100px;
    max-width: 50%;
    width: 100%;
    border-top: 3px solid #fff;
}

.project_goal_main .why_content.active::before {
    height: 3px;
    border-top: 2px solid #8C0000;
}

.project_goal_main .why_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.why_content .heading h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 400;
    line-height: 43.2px;
    opacity: 0.5;
}

.project_goal_main .why_content.active .heading h2 {
    opacity: 1;
}

.why_content .description {
    padding-top: 25px;
    display: none;
}

.why_content .description.active {
    display: block;
}

.why_content .description p {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.7;
}

@media only screen and (max-width: 1240px) {

    .project_goal_section {
        padding: 95px 0 0;
    }

    .project_goal_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .project_goal_main .why_content.active {
        padding: 81px 30px 90px 30px;
    }
}

@media(min-width:830px) {
    .project_goal_section .section_heading .description {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 830px) {

    .project_goal_section {
        padding: 21px 0 0;
    }

    .project_goal_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .project_goal_section .section_heading .description {
        padding-top: 20px;
    }

    .project_goal_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .project_goal_section .project_goal_main {
        flex-direction: column;
        padding-top: 36px;
    }

    .project_goal_main .why_content {
        padding: 24px 20px;
        max-width: 100%;
        box-sizing: border-box;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255) !important;
    }

    .project_goal_main .why_content.active {
        background-color: transparent;
        padding: 24px 20px;
        border-left: none;
        max-width: 100%;
    }

    .project_goal_main .why_content::before,
    .project_goal_main .why_content.active::before {
        height: 1px;
        border-top: 1px solid #8C0000;
    }

    .why_content .heading h2 {
        font-size: 24px;
        line-height: 28.8px;
        opacity: 1;
    }

    .why_content .description {
        display: block;
        padding-top: 10px;
    }

    .why_content .description p {
        font-size: 16px;
        line-height: 20px;
    }

}

/* project goal */


/* Ensuring Compliance  */
.ensuring_compliance_section {
    padding: 185px 0 110px;
}

.ensuring_compliance_section .section_heading .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.ensuring_compliance_section .section_heading .description {
    width: 60%;
    padding-top: 120px;
}

.ensuring_compliance_section .section_heading .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    opacity: 0.5;
}

.ensuring_compliance_section .ensuring_main {
    display: flex;
    flex-direction: column;
    gap: 116px;
    padding-top: 129px;
}

.ensuring_main .content_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 186px;
}

.content_main .content {
    width: 50%;
}

.content_main .content .heading h2 {
    color: #000000;
    font-size: 48px;
    font-weight: 400;
    line-height: 57.6px;
}

.content_main .content .description {
    padding-top: 24px;
}

.content_main .content .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
}

.content_main .right_image {
    width: 50%;
}

.content_main .right_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .ensuring_compliance_section {
        padding: 95px 0;
    }

    .ensuring_compliance_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .ensuring_compliance_section .section_heading .description {
        width: 100%;
        padding-top: 65px;
    }

    .ensuring_compliance_section .section_heading .description p {
        font-size: 20px;
        line-height: 32px;
    }

    .ensuring_compliance_section .ensuring_main {
        gap: 80px;
        padding-top: 80px;
    }

    .ensuring_main .content_main {
        gap: 36px;
    }

    .content_main .content .heading h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .content_main .content .description {
        padding-top: 20px;
    }

    .content_main .content .description p {
        font-size: 20px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 830px) {

    .ensuring_compliance_section {
        padding: 36px 0 24px;
    }

    .ensuring_compliance_section .section_heading .heading h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .ensuring_compliance_section .section_heading .description {
        padding-top: 12px;
    }

    .ensuring_compliance_section .section_heading .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .ensuring_compliance_section .ensuring_main {
        gap: 24px;
        padding-top: 24px;
    }

    .ensuring_main .content_main {
        gap: 24px;
        flex-direction: column;
    }

    .content_main .content {
        width: 100%;
    }

    .content_main .content .heading h2 {
        font-size: 24px;
        line-height: 20px;
    }

    .content_main .content .description {
        padding-top: 12px;
    }

    .content_main .content .description p {
        font-size: 16px;
        line-height: 20px;
    }

    .content_main .right_image {
        width: 100%;
    }
}



/* Result Obtained */
.result_obtained_section {
    background-color: #F1F1F1;
    padding: 115px 0 135px;
}

.result_obtained_section .section_heading .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.result_obtained_section .section_heading .description {
    width: 65%;
    padding-top: 36px;
}

.result_obtained_section .section_heading .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    opacity: 0.5;
}

.result_obtained_section .result_main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 81px;
    padding-top: 123px;
}

.result_list .image {
    width: 52px;
    height: 39px;
}

.result_list .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

.result_list .description {
    padding-top: 36px;
}

.result_list .description P {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.02em;
    text-align: left;
    opacity: 0.8;
}

@media only screen and (max-width: 1240px) {

    .result_obtained_section {
        padding: 95px 0;
    }

    .result_obtained_section .section_heading .heading h2 {
        font-size: 46px;
    }

    .result_obtained_section .section_heading .description {
        width: 100%;
        padding-top: 26px;
    }

    .result_obtained_section .section_heading .description p {
        font-size: 20px;
        line-height: 26px;
    }

    .result_obtained_section .result_main {
        padding-top: 80px;
        gap: 32px;
    }

    .result_list .description p {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 830px) {

    .result_obtained_section {
        padding: 24px 0 47px;
    }

    .result_obtained_section .result_main {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .result_list .description {
        padding-top: 10px;
    }

    .result_list .description p {
        font-size: 16px;
        line-height: 20px;
    }

}


/* Thank You */
.thankyou_section .content {
    width: 65%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 81px;
    margin: 0 auto;
}

.thankyou_section .content .heading h2 {
    color: #000000;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.thankyou_section .content .backbutton a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-decoration: none;
}

@media only screen and (max-width: 830px) {

    .thankyou_section .content .heading h2 {
        font-size: 32px;
    }

    .thankyou_section .content {
        width: 100%;
        gap: 24px;
    }

    .thankyou_section .content .backbutton a {
        padding: 20px 18px;
        font-size: 16px;
    }
}


/* Career Why Vertex */
.career_vertex_section {
    padding: 110px 0 50px;
}

.career_vertex_section .career_vertex_main {
    display: flex;
    flex-direction: column;
    gap: 90px;
}



.content_career .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.content_career .heading {
    padding-top: 24px;
}

.content_career .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.career_vertex_main .bottom_image {
    width: 100%;
    height: 100%;
}

.career_vertex_main .bottom_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {

    .career_vertex_section {
        padding: 95px 0;
    }

    .career_vertex_section .career_vertex_main {
        gap: 80px;
    }



    .content_career .heading {
        padding-top: 20px;
    }

    .content_career .heading h2 {
        font-size: 46px;
    }
}

@media only screen and (max-width: 830px) {

    .career_vertex_section {
        padding: 25px 0 0;
    }

    .career_vertex_section .page-width {
        padding: 0;
    }

    .career_vertex_section .career_vertex_main {
        gap: 24px;
    }

    .career_vertex_main .content_career {
        box-sizing: border-box;
        padding: 0 20px;
    }

    .content_career .subheading h4 {
        font-size: 16px;
    }

    .content_career .heading {
        padding-top: 15px;
    }

    .content_career .heading h2 {
        font-size: 32px;
    }

    .career_vertex_main .bottom_image {
        height: 209px;
    }

}

/* Training Program */
.training_program_section {
    padding: 80px 0 0;
}

.training_program_section .training_main {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.training_main .content_training_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_training_main .content_training {
    width: 60%;
}

.content_training .subheading h4 {
    color: #8C0000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.content_training .heading {
    padding-top: 24px;
}

.content_training .heading h2 {
    color: #000000;
    font-size: 55px;
    font-weight: 400;
    line-height: normal;
}

.content_training_main .join_us a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #8C0000;
}

.content_training_main .join_us a:hover {
    background-color: #fff;
    color: #8C0000;

}

.training_main .bottom_image {
    width: 100%;
    height: 100%;
}

.training_main .bottom_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

@media only screen and (max-width: 1240px) {



    .content_training .subheading h4 {
        font-size: 18px;
    }

    .content_training .heading {
        padding-top: 22px;
    }

    .content_training .heading h2 {
        font-size: 46px;
    }

    .training_program_section .training_main {
        gap: 65px;
    }
}

@media only screen and (max-width: 830px) {

    .training_program_section {
        padding: 28px 0 0;
    }

    .training_program_section .page-width {
        padding: 0;
    }

    .training_program_section .training_main {
        gap: 34px;
    }

    .training_main .content_training_main {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .content_training_main .content_training {
        width: 100%;
    }

    .content_training .subheading h4 {
        font-size: 16px;
    }

    .content_training .heading h2 {
        font-size: 24px;
    }

    .content_training_main .join_us a {
        padding: 14px 38px;
        font-size: 14px;
        line-height: 14.4px;
    }

    .training_main .bottom_image {
        height: 167px;
    }
}

/* Desired Vacancy */
.desired_vacanacy_section {
    padding: 121px 0 172px;
}

.desired_vacanacy_section .desired_vavancy_main {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 48px;
    text-align: center;
    margin: 0 auto;
}

.content_desired .heading h2 {
    color: #000000;
    font-size: 3.8vw;
    font-weight: 400;
    line-height: normal;
}

.content_desired .description {
    padding-top: 24px;
}

.content_desired .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.desired_vavancy_main .send_resume a {
    display: inline-block;
    padding: 24px 36px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #8C0000;
}

.desired_vavancy_main .send_resume a:hover {
    background-color: #fff;
    color: #8C0000;
}

@media only screen and (max-width: 1240px) {

    .desired_vacanacy_section {
        padding: 95px 0;
    }

    .desired_vacanacy_section .desired_vavancy_main {
        width: 100%;
        gap: 38px;
    }

    .content_desired .description {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 830px) {

    .desired_vacanacy_section {
        padding: 19px 0 64px;
    }

    .desired_vacanacy_section .desired_vavancy_main {
        gap: 19px;
    }

    .content_desired .heading h2 {
        font-size: 24px;
    }

    .content_desired .description {
        padding-top: 15px;
    }

    .content_desired .description p {
        font-size: 16px;
    }

    .desired_vavancy_main .send_resume a {
        padding: 14px 26px;
        font-size: 12px;
        line-height: 14.4px;
    }
}

/* Job Content */
.job_content_section {
    padding: 100px 0;
}

.job_content_section .job_main {
    display: flex;
    flex-direction: column;
    gap: 60px;
/*        max-width: 1250px;*/
    margin: 0 auto;
}

.content_job .heading h2 {
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    line-height: normal;
}

.content_job .points_list {
    width: 65%;
    padding-top: 24px;
    padding-left: 16px;
}

.content_job .points_list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content_job .points_list ul li {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.content_job .description {
    width: 71%;
}

.content_job .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 24px;
}

.content_job .points_list.point_second {
    width: 100%;
    padding: 0;
}

.content_job .point_second ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 24px;
    padding-left: 46px;
}

@media only screen and (max-width: 1240px) {

    .job_content_section {
        padding: 95px 0;
    }



    .content_job .heading h2 {
        font-size: 46px;
    }

    .content_job .points_list {
        width: 100%;
    }



    .content_job .point_second ul {
        padding-top: 20px;
        padding-left: 38px;
    }

    .content_job .points_list ul li {
        font-size: 20px;
    }

    .content_job .description {
        width: 100%;
    }

    .content_job .description p {
        font-size: 20px;
        line-height: 26px;
    }
}

@media(min-width:830px){
    .job_content_section .job_main {
    padding: 0 100px;
}
}
@media only screen and (max-width: 830px) {

    .job_content_section {
        padding: 24px 0 36px;
    }

    .job_content_section .job_main {
        gap: 24px;
    }

    .content_job .heading h2 {
        font-size: 32px;
    }

    .content_job .points_list {
        padding-left: 28px;
    }



    .content_job .points_list ul li {
        font-size: 16px;
    }

    .content_job .description p {
        font-size: 16px;
        line-height: 20px;
    }
}


.apply_btn {
    display: inline-block;
    padding: 15px 20px;
    background-color: #8C0000;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #8C0000;
    margin-top: 20px;
}

.apply_btn:hover {
    background-color: #fff;
    color: #8C0000;
}


/* Training Inner */
.training_inner_section {
    padding: 100px 0 0px;
}

.training_inner_section .section_heading {
    width: 75%;
}

.training_inner_section .section_heading .heading h2 {
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    line-height: normal;
}

.training_inner_section .section_heading .description {
    padding-top: 24px;
}

.training_inner_section .section_heading .description p {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}

.training_inner_section .training_main {
    padding-top: 16px;
}

.training_main .heading h2 {
    color: #000000;
    font-size: 45px;
    font-weight: 500;
    line-height: normal;
}

.training_main .points_list {
    padding-top: 24px;
    padding-left: 16px;
}

.training_main .points_list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.training_main .points_list ul li {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

@media only screen and (max-width: 1240px) {

    .training_inner_section {
        padding: 95px 0 0;
    }

    .training_inner_section .section_heading {
        width: 100%;
    }

    .training_inner_section .section_heading .heading h2,
    .training_main .heading h2 {
        font-size: 46px;
    }

    .training_inner_section .section_heading .description p,
    .training_main .points_list ul li {
        font-size: 20px;
    }


}


@media only screen and (max-width: 830px) {

    .training_inner_section {
        padding: 24px 0 0px;
    }

    .training_inner_section .section_heading .heading h2,
    .training_main .heading h2 {
        font-size: 32px;
    }

    .training_inner_section .section_heading .description,
    .training_main .points_list {
        padding-top: 20px;
        padding-top: 20px;
    }

    .training_inner_section .section_heading .description p,
    .training_main .points_list ul li {
        font-size: 16px;
    }


}
@media only screen and (min-width: 991px) {
.vector_image.mobile_image { display: none; }
}

.coming_soon_title {
    text-align: center;
    padding: 150px 0;
    font-size: 45px;
}

.amazing_main.top_cta {
    background-image: url(image/color1.png);
}
.amazing_section .amazing_main.top_cta::before{
    content: none;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  white-space:pre-line;  
  
}
::-moz-placeholder { /* Firefox 19+ */
     white-space:pre-line;  
}
:-ms-input-placeholder { /* IE 10+ */
    white-space:pre-line; 
}
:-moz-placeholder { /* Firefox 18- */
     white-space:pre-line;  
}



