:root {
    --blue-color: #080DCC;
    --orange-color: #F9922E;
}

a {
    transition: .3s !important;
    text-decoration: none;
}

.btn {
    font-weight: 600;
}

body {
    font-family: 'KoHo', sans-serif;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 99999999999;
}

.fancybox__container {
    z-index: 9999999999;
}

.main_menu {
    background: linear-gradient(180deg, rgba(240, 240, 240, 0.7) 100%, rgba(255, 255, 255, 0) 100%);
    position: fixed;
    width: 100%;
    top: -10%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999999;
    transition: all 0.3s ease-in;
}

.menu_align {
    display: flex !important;
    align-items: center !important;
    padding: 0 30px !important;
}


.menu_align .navbar-collapse {
    flex-grow: 0 !important;
}

.menu_list li a {
    border-right: 1px solid #A6A6A6;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.hero_banner {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.video_banner {
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}


.active__menu {
    top: 0%;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    z-index: 99999999;
}

.home_hero_video {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* position: absolute;
    top: 0; */
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.6);
}

.banner_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50%;
    margin-left: -35px;
}

.btn_orange {
    background: #F9922E;
    color: #fff;
}

.btn_white {
    background: #fff;
    color: #000;
}

.btn_blue {
    background: #080DCC;
    color: #fff;
}

.btn_blue:hover {
    background: #F9922E;
    color: #fff;
}

.btn_orange:hover {
    background: #080DCC;
    color: #fff;
}

.btn_white:hover {
    background: #080DCC;
    color: #fff;
}

.btn_transparent {
    background: #4F92B1;
    border-color: #4F92B1;
    color: #fff;
    padding: 10px;
}

.btn_transparent:hover {
    background: #080DCC;
    border-color: #080DCC;
    color: #fff;
}

.extra_padding_left {
    padding-left: 50px;
}

.extra_margin_left {
    margin-left: 50px;
}

.banner_text h3 {
    font-size: 40px;
}

.banner_socialMedia {
    position: absolute;
    left: 20px;
    bottom: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    z-index: 99999999999999;
}

.social_text {
    color: #fff;
    transform: rotate(90deg);
}

.social_text::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 108%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: #fff;
}

.social_links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social_links a {
    color: #fff;
    font-size: 18px;
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.social_links a:hover {
    background: var(--blue-color);
    border-color: var(--blue-color);
}

.arrow_down {
    position: absolute;
    bottom: -85px;
    left: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: all .3s linear;
    animation: bounce 3s infinite;
}

.section_category {
    color: var(--orange-color);
    text-transform: uppercase;
    position: relative;
    font-size: 18px;
    font-family: 'KoHo', sans-serif;
}

.section_category:after {
    content: "";
    position: absolute;
    top: 13px;
    left: 113%;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(249, 146, 46, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.section_category.text-white:after {
    content: "";
    position: absolute;
    top: 13px;
    left: 113%;
    transform: translateY(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.text_blue {
    color: var(--blue-color);
}

.section_catMessage {
    color: #393838;
    font-size: 32px;
    font-weight: 700;
    font-family: 'KoHo', sans-serif;
}

.section_pading {
    padding-top: 50px;
    padding-bottom: 50px;
}

.about_bg {
    background: url("../images/shapes/service_bg.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
}

.join_bg {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/join_bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 350px;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact_bg {
    background: #080DCC;
    background-position: center right 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 200px;
}

.contact_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_color {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.contact_links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.contact_links a {
    color: #fff;
    font-size: 18px;
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.contact_links a:hover {
    background: var(--blue-color);
    border-color: var(--blue-color);
}

.footer {
    background: #000364;
}

.footer_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}


.services_slider {
    background: url("../images/shapes/service_bg.png");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
    position: relative;
    padding-bottom: 75px;
}

.service_sliders_align {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 0;
}

.service_main {
    width: 40%;
    margin-right: -50px;
    z-index: 999999;
    border-radius: 20px;
}

.service_video {
    width: 50%;
    border-radius: 20px;
}

.service_imgs {
    width: 50%;
    border-radius: 20px;
}

.service_main .slick-prev {
    left: unset !important;
    right: 70px;
    top: 35px;
}

.service_main .slick-next {
    right: 35px;
    top: 35px;
}

.service_main .slick-arrow {
    z-index: 999999999;
}

.service_main .slick-arrow::before {
    color: #F9922E;
    font-size: 30px;
}

.service_content {
    background: url("../images/services/service_bg.png");
    background-position: bottom right !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 320px;
    border-radius: 20px;
    display: flex;
}

/* .serv_single_1{
    background: url("../images/shapes/service_1.png");
}

.serv_single_2{
    background: url("../images/shapes/service_2.png");
}

.serv_single_3{
    background: url("../images/shapes/service_3.png");
}

.serv_single_4{
    background: url("../images/shapes/service_4.png");
} */

.section_service {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
}

.section_service p {
    margin-bottom: 0;
    font-size: 14px;
}

.btn_orange_stroke {
    background: transparent;
    color: #F9922E;
    border-color: #F9922E;
}

.btn_orange_stroke:hover {
    background: #080DCC;
    border-color: #080DCC;
    color: #fff;
}

.floating_service_square {
    position: absolute;
    left: 47%;
    bottom: 0px;
    width: 150px;
}

.company_info {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-bottom: 0 !important;
}

.company_info .nav-link {
    color: #393838 !important;
    background: transparent !important;
    padding: 0;
    font-size: 30px;
    font-family: 'KoHo', sans-serif;
    font-weight: 700;
    width: 100%;
    box-shadow: inset 0px 0px 5px 0px #c3c3c3;
}

.company_info li.nav-item {
    width: 25%;
    text-align: center;
}

.company_info .nav-link.active {
    color: #080DCC !important;
    border-bottom: 5px solid #080DCC !important;
}

.info_bg {
    transition: .1s;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info_bg.active {
    display: flex !important;
}

.highlight_bg {
    background: url("../images/col_highlights.png");
}

.accrediations_bg {
    background: url("../images/col_accreditations.png");
}

.partners_bg {
    background: url("../images/col_partners.png");
}

.customers_bg {
    background: url("../images/col_customers.png");
}

.highlights_cont {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.single_highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.single_highlight .counter-count {
    color: #F9922E;
    margin: 0;
    font-size: 55px;
    font-family: 'Irish Grover', system-ui;
}

.single_highlight h4 {
    font-family: 'KoHo', sans-serif;
    font-weight: 600;
}

.v_hidden {
    visibility: hidden;
}

.v_visible {
    visibility: visible;
}

.products_title {
    font-size: 70px;
}

.products_container {
    box-shadow: 0 0 10px #dedede;
}

.products_image {
    background: url(../images/products/products.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 550px;
    height: 100%;
}

.products_bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 100%, rgba(255, 255, 255, 0) 100%), url(../images/products/products.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 20px;

}

.products_height {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0 20px;
}

/* width */
.products_height::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.products_height::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.products_height::-webkit-scrollbar-thumb {
    background: #080DCC;
    border-radius: 10px;
}

/* Handle on hover */
.products_height::-webkit-scrollbar-thumb:hover {
    background: #000470;
}

.single_product {
    display: flex;
    align-items: center;
    gap: 20px;
}


.btn_blue_border {
    background: transparent;
    border-color: transparent;
    color: #080DCC;
}

.btn_blue_border:hover {
    background: #080DCC;
    border-color: #080DCC;
    color: #fff;
}

@-moz-keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-150px);
        transform: translateY(-150px);
        opacity: 0;
    }
}

@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0);

    }

    40% {
        -webkit-transform: translateY(-150px);
        transform: translateY(-150px);
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-150px);
        -ms-transform: translateY(-150px);
        -webkit-transform: translateY(-150px);
        transform: translateY(-150px);
        opacity: 0;
    }
}

.bounce {
    -moz-animation: bounce 5s infinite;
    -webkit-animation: bounce 5s infinite;
    animation: bounce 3s infinite
}

.single_award {
    padding: 15px;
}

.single_award h5 {
    color: #080DCC;
    font-size: 11px;
    margin: 0;
}

.single_award strong {
    color: #F9922E;
}

.clientsSlider .slick-prev:before,
.clientsSlider .slick-next:before {
    color: #080DCC !important;
}

.awardsSlider .slick-prev:before,
.awardsSlider .slick-next:before {
    color: #080DCC !important;
}

.partners_align {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.topPaddingSection {
    padding-top: 100px;
    padding-bottom: 50px;
}

.policyHead {
    color: #080DCC;
    font-size: 45px;
    font-weight: 900;
}

.privacyLink {
    color: #080DCC;
    transition: .3s;
}

.privacyLink:hover {
    text-decoration: underline;
}

.privacy_section_title {
    color: #F9922E;
}

.inner_padding {
    padding: 20px;
}

.join_bg_color {
    background: #080DCC;
    min-height: 250px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join_bg_color h1 {
    color: #fff;
    font-size: 50px;
    font-family: 'KoHo', sans-serif;
}

.join_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    gap: 10px;
}

.joinUs_inner {
    margin-top: 50px;
    margin-bottom: 50px;
}

.floating_join_square {
    position: absolute;
    right: 0;
    top: -13px;
    width: 127px;
    z-index: -1;
}

.text_justify {
    text-align: justify;
}

.gallerySlider .slick-track {
    display: flex;
    align-items: center;
}

.gallerySlider .slick-slide {
    margin: 5px;
}

.gallerySlider .slick-slide img {
    border-radius: 20px;
}

.gallerySlider .slick-prev:before,
.gallerySlider .slick-next:before {
    color: #080DCC !important;
}

.galleryContent {
    margin-bottom: 50px;
}

.service_single_inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.service_text_inner {
    width: 50%;
    z-index: 999999;
    border-radius: 20px;
    background: #ffffffeb;
    box-shadow: 0px 0px 6px #d0d0d0;
}

.service_img_inner {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.service_single_inner:nth-child(odd) .service_text_inner {
    margin-right: -50px;
}

.service_single_inner:nth-child(even) .service_text_inner {
    margin-left: -50px;
}


.scroll {
    transform: translateY(-10px);
    opacity: 0;
    transition: 0.5s;
}

.scroll--show {
    transform: translateY(0px);
    opacity: 1;
}


.overlay {
    width: 100%;
    height: 0;
    position: fixed;
    z-index: 9999999999;
    left: 0%;
    right: 0%;
    bottom: 0;
    overflow: hidden;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay_content {
    width: 40%;
    background: linear-gradient(#080ecccb, #080ecccb), url("../images/cf.jpg");
    background-position: center;
    background-size: cover;
    height: 100%;
    padding: 25px;
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact_btn {
    position: fixed;
    bottom: 50px;
    right: -3px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #080DCC;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999999;
}


.contact_btn:hover {
    background-color: #F9922E;
    color: white;
}

.closebtn {
    position: absolute;
    right: 20px;
    top: 5px;
    color: #fff;
    font-size: 35px;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_form .form-control {
    border-color: #fff;
    background: #fff;
    color: #292929;
    padding: 15px;
}


.contact_form .form-control::placeholder {
    color: #c0c0c0;
}

.contact_page_form {
    background: #4f92b19c;
    padding: 40px;
    border-radius: 6px;
    color: #fff;
}

.contact_screenBg {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #ffffffdf, #ffffffdf), url("../images/contact.jpg");
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
}

.c_link {
    color: #080DCC;
    font-weight: 600;
}


.c_link a {
    color: #080DCC;
    border-color: #080DCC;
}

.c_link a:hover {
    color: #fff;
    border-color: #080DCC;
    background: #080DCC;
}

.office_details {
    display: flex;
    flex-direction: column;
    gap: 5px;

    .office_name {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;

        h3 {
            color: #4F92B1;
            font-size: 22px;
            margin: 0;
        }

        img {
            width: 25px;
        }
    }

    .office_contacts {
        display: flex;
        flex-direction: column;
        gap: 10px;

        .c_link {
            color: #7D7D7D;

            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        svg {
            width: 25px;
        }
    }
}

.prod_features li {
    font-size: 13px;
}

.prod_features strong {
    color: #080DCC;
}

.single_heroSlide {
    display: flex !important;
    align-items: center;
    gap: 20px;
    height: 100vh;
    padding: 50px 120px;
}

.slick-dots {
    bottom: 35px;
}

.slide_locations {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/ksa_uae.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide_services {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/slider_services.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide_products {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/slider_products.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.single_heroSlide p {
    margin-bottom: 0;
}

.heroSlider {
    width: 100%;
    margin: 0 !important;
}

.heroSlider .slick-dots li button:before {
    font-size: 16px;
    color: white;
}

.slider_logo {
    background: rgba(255, 255, 255, 0.753);
    border-radius: 10px;
    padding: 5px;
    min-width: 260px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide_details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;

    h3 {
        font-size: 125px;
    }

    p {
        text-align: center;
    }
}

.successMessage {
    display: none;
    padding: 10px;
    border-radius: 6px;
    background: #b4ffc4;
    color: #043300;
    margin-top: 15px;
    text-align: center;
}

.errorMessage {
    display: none;
    padding: 10px;
    border-radius: 6px;
    background: #ffcbcb;
    color: #330000;
    margin-top: 15px;
    text-align: center;
}