:root {
    /*--font-family: "Inter";*/
    --font-family: 'Inter';
    --main-font-color: #474747;
    --main-font-color-white: white;
    --weak-grey: #A4A4A4;
    --footer-grey: #565656;
    overflow-x:hidden;
}
/*p {
    font-family: var(--font-family);
    color: #464646;
}*/

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #D3D3D3;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #D3D3D3;
    }
    

a:hover {
    color: unset;
    text-decoration: none;
}
#HlArabic {
    font-family: 'Cairo' !important;
}

@font-face {
    font-family: "Inter-Light";
    src: url("CSS/font/Inter-VariableFont_slnt,wght.ttf") format("truetype");
}

@font-face {
    font-family: 'Inter';
    src: url('font/Inter-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Cairo';
    src: url('font/Cairo-Regular.ttf') format('truetype');
}

body {
    /* background-color: #272727;
    color: white; */
}

a {
    text-decoration: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.EnDisplay {
    display: block !important;
}

.ArDisplay {
    display: none !important;
}
.ArrowAr {
    transform: unset;
}
.modal-open {
    overflow: hidden;
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 40px); /* Adjust the value (40px) to fit your modal header and footer heights */
    overflow-y: auto;
}

.header {
    /* background:
        url("../Images/website/hero-section.png") no-repeat center bottom / cover; */
    /*height: 100vh;*/
    overflow: hidden;
}

    .header .bg-light {
        background-color: transparent !important;
        padding-top: 26px;
        transition: .5s;
        z-index: 554;
    }

.bg-light.solid {
    background-color: #fff !important;
    padding-top: 15px !important;
    transition: .5s;
}

.header .navbar-brand img {
    width: 500px;
}

.info {
    padding-top: 120px;
}

.navbar {
    /*overflow: hidden;*/
    background-color: transparent;
    position: fixed;
    /* Set the navbar to fixed position */
    top: 0;
    /* Position the navbar at the top of the page */
    width: 100%;
    /* Full width */
}
.solid {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


.header .navbar-light .navbar-nav .nav-link {
    font-style: normal;
    font-weight: lighter;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    color: #373737;
    transition: .3s;
}

    .header .navbar-light .navbar-nav .nav-link:hover {
        color: #373737 !important;
    }

.header .navbar-light .dropdown-item {
    color: #000 !important;
}

.header .solid .navbar-nav .nav-link {
    color: #000 !important;
}

    .header .solid .navbar-nav .nav-link:hover {
        color: #000 !important;
    }



.header .navbar-light .dropdown-menu {
    background: #fff;
}
.header .navbar-light .dropdown-item:active {
    background-color: var(--bs-dropdown-link-hover-bg);
}
.header .navbar-light .navbar-nav .nav-link.active {
    font-weight: 700;
    /*color: white;*/
}

.header .navbar-light .navbar-nav .nav-item:hover {
    /*color: unset;*/
}

.header .navbar > .container {
    gap: 60px;
}

.header .navbar-nav {
    gap: 12px;
}

/* Start Burger */

/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
    display: block;
    background-color: white;
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center left;
}

    /* top line needs a little padding */
    .navbar-toggler span:nth-child(1) {
        margin-top: 0.3em;
    }

/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
}

/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translate(15%, 33%) rotate(-45deg);
}

/**
 * Animate collapse open into hamburger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
}

/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
    opacity: 1;
}

/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggle .icon-bar {
    transition: 300ms ease-in-out;
    background-color: #fff;
    position: relative;
    width: 24px;
    height: 3px;
}

    .navbar-toggle .icon-bar:last-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: -7px;
    }

    .navbar-toggle .icon-bar:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0px;
    }

    .navbar-toggle .icon-bar:nth-child(3) {
        opacity: 0;
    }

.navbar-toggle.collapsed .icon-bar {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 0;
    opacity: 1;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* End Burger*/

#hero {
    height: 89vh;
    width: 100%;
}

.container-custom {
    width: 90%;
    height: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: left;
    /*   text-align: center; */
}

#hero .info h1 {
    font-style: normal;
    font-weight: lighter;
    font-size: 56px;
    width: 87%;
    line-height: 78px;
    text-transform: uppercase;
    color: var(--main-font-color-white);
    margin-bottom: 12px;
}

#hero .info p {
    font-style: normal;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 28px;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    max-width: 70%;
}

#hero .info a,
.project-card-btn-container a {
    text-decoration: none;
    display: inline-block;
    padding: 13px 29px;
    margin-top: 2rem;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 2px;
    transition: .3s;
    text-transform: uppercase;
}
.home-swiper {
    width:50% !important;
}

a.second-btn {
    border: 1px solid white;
    color: white;
    margin-left: 18px;
}

a.white-btn {
    background: white;
    border: 1px solid white;
    color: #474747;
}

    a.second-btn:hover,
    a.white-btn:hover {
        background-color: var(--main-font-color);
        border-color: var(--main-font-color);
        transition: .3s;
        color: white;
    }

.hero-section-img-container {
    position: relative;
}

    .hero-section-img-container img {
        position: absolute;
        width: 703px;
        right: -470px;
        top: -250px;
    }


.home-des {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #464646;
}
.Figuredetails {
    color: #A8A8A8;
}

/*****************************************************************************/
.slider__slide-heading {
    font-size: 50px !important;
    font-weight: 300 !important;
}

.slider__slide-heading {
    gap: 12px;
}

.navbar-light .nav-item:hover .nav-link {
    /*    color: white !important;
    transition: .3s;*/
}

.navbar-expand-xl .navbar-collapse {
    justify-content: flex-end;
}

.search-icon {
    width: 20px;
    padding-bottom: 2px;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: var(--main-font-color);
}

::selection {
    color: white;
    background: var(--main-font-color);
}

.home-title {
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--main-font-color);
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.title-line {
    width: 80px;
}

.home-des {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #464646;
}

/* -------------- Start accomplished-projects -------------- */
.accomplished-projects {
    background-image: url('../NewImages/website/accomplished-projects.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow:hidden;
    padding-bottom: 60px;
}

.accomplished-projects-content {
    padding-top: 80px
}

.project-card {
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.project-card-container {
    position:relative;
    padding-top: 40px;
}

.inner-overlay {
    height: 0px;
    opacity: 0;
    width: 100%;
    background-color: #000000a3;
    transition: .7s;
    bottom: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 17px;
    letter-spacing: 0.1em;
    /* text-transform: uppercase; */
    color: #FFFFFF;
    padding-bottom: 15px;
    flex-direction: column;
    gap: 15px;
}

.project-card:hover .inner-overlay {
    height: 100%;
    transition: .7s;
    opacity: 1;
    /* transform: scale(1.1); */
}

.project-image {
    width: 100%;
    height:350px;
    object-fit:cover;
    transition: .7s;
}

.project-card-content {
    position: relative;
}

.project-card .overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.81) 43%, rgba(0, 0, 0, 0) 100%);
    height: 40%;
    width: 100%;
    transition: .7s;
    display: flex;
    align-items: flex-end;
}

.project-card:hover .overlay {
    opacity: 0;
    transition: .7s;
}

.project-card:hover .project-image {
    /* transform: scale(1.1); */
    transition: .7s;
}

.project-card .project-text {
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
}

.project-card .project-category {
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding-bottom: 15px;
}

.project-card .project-name {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    align-items: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.project-card-btn-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .project-card-btn-container .second-btn.project-card-btn {
        background: transparent;
        border: 1px solid #474747;
        color: #474747;
        width: 260px;
        display: flex;
        justify-content: center;
    }

        .project-card-btn-container .second-btn.project-card-btn:hover {
            background: #474747;
            color: white;
        }

.project-content {
    display: none;
}
.image-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 75%; /* Adjust the aspect ratio according to your image dimensions */
}
.loader {
    height:100vh;
    width:100vw;
    overflow:hidden;
    
}

.loading-spinner {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #373737;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* HTML: <div class="loader"></div> */
/*.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
}

    .loader::before,
    .loader::after {
        content: "";
        grid-area: 1/1;
        --c: no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
        background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
        background-size: 12px 12px;
        animation: l12 1s infinite;
    }

    .loader::before {
        margin: 4px;
        filter: hue-rotate(45deg);
        background-size: 8px 8px;
        animation-timing-function: linear
    }

@keyframes l12 {
    100% {
        transform: rotate(.5turn)
    }
}*/
/* -------------- End accomplished-projects -------------- */

/* -------------- Start techno-figures -------------- */
.techno-figures {
    height: 100%;
    background-image: url('../NewImages/website/techno-figures.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.techno-figures-content {
    padding-top: 70px;
}

.counter-up {
    min-height: 50vh;
    background-size: cover;
    background-attachment: fixed;
    /* padding: 0 50px; */
    position: relative;
    display: flex;
    align-items: center;
}

    .counter-up .content {
        z-index: 1;
        position: relative;
        display: flex;
        width: 100%;
        height: 100%;
        flex-wrap: wrap;
        /* align-items: center; */
        justify-content: space-between;
        align-items: flex-start;
    }

        .counter-up .content .box {
            width: calc(20% - 30px);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-direction: column;
            padding: 20px;
        }

.content .box .counter {
    font-weight: lighter;
    font-size: 52px;
    text-align: center;
    color: #FFFFFF;
}

.content .box .text {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1.5px;
    color: #A8A8A8;
    min-width: 125%;
}

#app {
    background-color: #000;
    height: 100vh;
}

.vision-container {
    padding-top: 50px;
}

.vision-title {
    flex-direction: row;
}

.vision-row {
    padding-bottom: 50px;
    align-items: center;
}

@media (max-width: 1200px) {
    .content .box .text {
        font-size: 13px;
        min-width: 130%;
    }

    .content .box .counter {
        font-size: 48px;
    }

    .plus-counter p {
        font-size: 40px;
    }
    .home-swiper {
        width: 60% !important;
    }
}

@media screen and (max-width: 1036px) {
    .counter-up {
        padding: 50px 50px 0 50px;
    }

        .counter-up .content .box {
            width: calc(50% - 30px);
            margin-bottom: 50px;
        }
    .home-swiper {
        width: 50% !important;
    }
    .slider-hero-Appreciation .slick-dots {
        margin-top: 20px;
    }
}

@media screen and (max-width: 580px) {
    .counter-up .content .box {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {

    .counter-up {
        padding: 30px 20px 0 20px;
    }
}
/* -------------- End techno-figures -------------- */

/* -------------- Start Vision -------------- */

.vision .home-des {
    color: #000000;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.07em;
}

.vision-img-div {
    background: rgba(120, 120, 120, 0.31);
    bottom: -25px;
    position: absolute;
    right: 75px;
    height: 475px;
    width: 275px;
    z-index: 1;
}

.vision-img {
    width: max(80%,300px);
    z-index: 10;
    position: relative;
    height: 500px;
    object-fit: cover;
}

.vision-img-div-parent {
    overflow: hidden;
}

/* -------------- End Vision -------------- */
/* -------------- Start News -------------- */
.news-content {
    padding-top: 80px;
}

.news-card-content {
    background: #FFFFFF;
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.07);
}

.news-image-container {
    height: 150px;
    overflow: hidden;
}

    .news-image-container img {
        width: 100%;
    }

.news-title {
    font-weight: 500;
    font-size: 20px;
    color: #787878;
}

.news-des {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #787878;
}

.news-readMore {
    display: flex;
    gap: 8px;
}

    .news-readMore img {
        padding-top: 4px;
    }

.news-txt {
    display: flex;
    gap: 11px;
    flex-direction: column;
    padding-left: 17px;
    padding-right: 17px;
    padding-top: 15px;
    padding-bottom: 27px
}

.news-cards-container {
    padding-top: 50px;
}
/* the slides */
.news .slick-slide {
    margin: 0 18px;
}
/* the parent */
.news .slick-list {
    margin: 0 -18px;
}

.news .slick-track {
    padding-bottom: 25px;
}

.news .slick-dots li button:before {
    font-size: 25px;
}

.news-card-container {
    cursor: pointer;
}

.news-container {
    padding-bottom: 50px;
}
/* -------------- End News -------------- */


/* -------------- Start partner -------------- */
.partner-card-container {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 13%);
    border-radius: 5px;
}

.partner-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    height: 100px;
    justify-content: center;
}

.partner-txt {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}

.partner-des {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #787878;
    text-align: center;
}

.partner-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-image-container img {
        width: 60px;
    }

.partner .slick-list {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* the slides */
.partner .slick-slide {
    margin: 0 15px;
}
/* the parent */
.partner .slick-list {
    margin: 0 -15px;
}

.partner .slick-track {
    padding-bottom: 10px;
}

.partner .slick-dots li button:before {
    font-size: 13px;
}

.partner-card-container {
    cursor: pointer;
}

.partner-container {
    padding-bottom: 50px;
}
/* -------------- End partner -------------- */

/* -------------- Start CERTIFICATES OF APPRECIATION -------------- */
.certificate-appreciation {
    display: flex !important;
    border-right: solid 1px #A7A7A7;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.certificate-appreciation .slick-dots li button:before {
    font-size:16px;
}
.slider-hero-Appreciation .slick-slide {
    width:350px;
}
.certificate-appreciation-info {
    color: #000;
    font-weight: 300;
    font-family: "Inter-Light";
}
.certificate-title {
    font-size:15px;
}
.certificate-client {
    font-size:13px;
}
.show-details-text {
    font-size: 10px;
    text-decoration:underline;
    color:#000 !important;
}
/* -------------- End CERTIFICATES OF APPRECIATION -------------- */
/* -------------- Start footer -------------- */
.footer {
    padding: 7rem 30px;
    background: #000;
    color: #777;
}

    .footer .footer-site-logo {
        color: #fff;
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 30px;
        display: block;
    }

        .footer .footer-site-logo img {
            width: 140px;
        }

    .footer h3 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer .links li {
        margin-bottom: 10px;
    }

        .footer .links li a {
            color: #999;
        }

            .footer .links li a:hover {
                color: #fff;
            }

    .footer .link-menu li {
        display: inline-block;
    }

        .footer .link-menu li a {
            color: #fff;
            display: inline-block;
            padding: 10px;
        }

    .footer .link-menu.nav-left li:first-child a {
        padding-left: 0;
    }

    .footer .link-menu.nav-right li:last-child a {
        padding-left: 0;
    }

    .footer .social li {
        display: inline-block;
    }

        .footer .social li a {
            display: inline-block;
            padding: 10px;
            color: #ccc;
        }

        .footer .social li:last-child a {
            padding-right: 0;
        }

    .footer .line {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }



    .footer a {
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
    }

        .footer a,
        .footer a:hover {
            text-decoration: none !important;
        }

    .footer .links li {
        font-size: 14px;
    }

.policy {
    display: flex;
}

.social-icon {
    display: flex;
    justify-content: flex-end;
}
/* -------------- End footer -------------- */

/* -------------- Start our projects -------------- */
.inner-page {
    padding-top: 75px;
}

.inner-page-img-1 {
    height: 216px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../NewImages/website/projects-image.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}

    .inner-page-img-1 img {
        width: 100%;
        z-index: 2;
        position: absolute;
    }

.inner-page-overlay {
    background: rgba(0, 0, 0, 0.62);
    left: 0px;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 10;
}

.breadcrumbs {
    z-index: 10;
    position: absolute;
    color: white;
    font-family: var(--font-family);
    top: 50%;
    transform: translateY(-50%);
}

.page-title {
    padding-top: 15px;
}

.breadcrumbs .col-12 {
    padding-bottom: 15px;
}

.BcTitle {
    color: #FFFFFF !important;
    letter-spacing: 0.07em ;
    text-transform: uppercase;
    font-size: 28px;
}

.LaSource, .LaPage, .service-name {
    letter-spacing: 0.16em ;
    text-transform: uppercase;
    color: #FFFFFF !important;
}
/*************Services****************/
.services-container {
    margin: 60px 0px;
}

.col-border {
    border: 1px solid #9D9D9D;
}

.col-margin {
    margin-top: 20px;
}

.service-col {
    font-family: var(--font-family);
    border: 1px solid #9D9D9D;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
    position: relative;
}

.service-img {
    position: relative;
}

.service-icon {
    position: absolute;
    bottom: -12px;
    left: 25px;
}

.link-div {
    position: absolute;
    bottom: 20px;
}

.img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    color: #000;
    font-family:var(--font-family);
    font-size: 22px;
    font-weight: 400;
    margin-top: 30px;
}

.service-description {
    color: #5C5C5C;
    font-family: var(--font-family) !important;
    font-weight: 300;
    font-size: 16px;
}
    .service-description p,
    .service-description span {
        color: #5C5C5C !important;
        font-family: var(--font-family) !important;
        font-weight: 300 !important;
        font-size: 16px !important;
    }



.service-link {
    color: #3D3D3D;
    font-size: 16px;
}

@media screen and (max-width: 1200px) {
    .service-col {
        gap: 15px;
        height: 550px;
    }

    .service-title {
        font-size: 21px;
    }
}

@media screen and (max-width: 992px) {
    .service-col {
        gap: 10px;
        height: 480px;
        padding: 10px;
    }

    .service-title {
        font-size: 16px;
        margin-top: 10px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-link {
        font-size: 14px;
    }

    .services-container {
        margin: 40px 0px;
    }
}

@media screen and (max-width: 768px) {
    .service-col {
        gap: 15px;
        height: 490px;
    }
    .home-swiper {
        width: 100% !important;
    }
}

@media screen and (max-width: 576px) {
    .service-col {
        gap: 15px;
        height: 650px;
    }

}

@media screen and (max-width: 480px) {
    .service-col {
        gap: 15px;
        height: 550px;
    }
}

/* End Services */


/* Service Details */
.service-details-container {
    padding: 50px 0px;
    color: #5C5C5C;
    font-family: var(--font-family);
}

.service-details {
    margin: 20px 0px;
}

.service-text {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin: 20px 0px;
    line-height: 35px;
    max-width: 90%;
}

    .service-text p,
    .service-text span {
        font-family: var(--font-family) !important;
        color: #000 !important;
        font-weight: 600 !important;
        font-size: 18px !important;
        margin: 20px 0px !important;
        line-height: 35px !important;
        max-width: 90% !important;
    }

.link-service {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
}

    .link-service a {
        color: #5C5C5C;
    }

.service-ul {
    font-weight: 400;
    font-size: 15px;
    line-height: 34px;
    max-width: 94%;
}

    .service-ul li {
        font-family: var(--font-family);
        color: #5C5C5C;
        font-weight: 400;
        font-size: 15px;
        line-height: 34px;
        max-width: 94%;
    }

    .service-ul ul {
        padding-left: 1rem;
    }

.carousel-item-img {
    width: 100%;
    height: 420px;
    border-radius: 5px;
    object-fit: cover;
}

.service-slider-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
    .service-text {
        margin: 10px 0px;
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
    .service-details-container {
        padding: 20px 10px;
    }

    .service-text {
        font-size: 16px;
        margin: 10px 0px;
        line-height: 35px;
        max-width: 100%;
    }

    .service-ul {
        font-size: 14px;
        line-height: 30px;
        padding-left: 1rem;
        max-width: 100%;
    }

    .carousel-item-img {
        height: 340px;
    }
}

@media screen and (max-width: 480px) {
}



/* Start Get in Touch */
#location-select {
    padding: 12px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
}
.title-touch {
    font-family: var( --font-family);
    color: #211E1F;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 26px;
}

.email {
    font-family: var( --font-family);
    color: #848484;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D3D3D3;
}

    .email a {
        color: unset;
    }

.address-div {
    padding:  0px;
}
.contact-col-scroll {
    max-height: 900px;
    overflow-y: scroll;
    padding-right: 30px;
}

    .address-div p,
    .address-div span {
        color: #848484 !important;
        font-family: var( --font-family) !important;
        font-size: 16px;
        font-weight: 400;
    }

    .address-div b {
        font-family: var( --font-family) !important;
        font-weight: 700;
    }

.address {
    font-family: var( --font-family);
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 7px;
}

.address-text {
    font-family: var( --font-family);
    color: #848484;
    font-weight: 400;
    line-height: 30px;
}
.scroll-col {
    max-height: 550px;
    overflow-y: scroll;
}

.contact-details {
    font-family: var( --font-family);
    border-top: 1px solid #D3D3D3;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #848484;
    font-weight: 400;
    font-size: 18px;
    padding: 0px;
}

.text-weight {
    font-weight: 700;
}

.contact-page-img {
    height: 216px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../NewImages/website/contact-hero.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-text {
    font-family: var( --font-family);
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 159.5%;
    color: #525252;
}


.line-touchwhat {
    height: 0px;
    width: 100%;
    background: #004439;
    border: 1px solid #004439;
}

.line-what-con {
    margin: 20px 40px;
}

.get-in-touch {
    padding-top: 20px;
}

.line-touch {
    width: 0px;
    height: 500px;
    border-right: 1px solid #e6e6e6;
}

.label-contact {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
    color: #525252;
}

input::placeholder {
    font-family: 'Roboto';
    color: #C8C8C8;
    font-size: 12px;
    font-weight: 400;
}

input[type="text"],
input[type="tel"],
select,
textarea {
    font-family: 'Roboto';
    width: 100%;
    padding: 22px;
    border: 2px solid #E6E6E6;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 16px;
    resize: vertical;
}
#DDLMpCountry {
    padding: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.country-select {
    font-family: 'Roboto';
    color: #525252;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 22px;
}


input[type="text"],
select,
textarea :focus-visible {
    outline-color: #0a4c40;
}

.textarea-height {
    height: 100px;
}

input[type="submit"] {
    font-family: var( --font-family);
    background: #fff;
    border-radius: 4px;
    border: 1px solid #000;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.container-contact {
    border-radius: 5px;
    padding: 0px 80px;
}

.star-contact {
    color: #d93f48;
}

.iti {
    width: 100%;
}

    .iti :focus-visible {
        outline: unset !important;
    }

input[type="tel"] {
    padding: 12px;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: unset !important;
}

    .iti--separate-dial-code .iti__selected-flag:hover {
        background-color: unset !important;
    }



@media screen and (max-width: 1200px) {
    .container-contact {
        padding: 0px 40px;
    }
}

@media screen and (max-width: 992px) {
    .container-contact {
        padding: 20px 0px;
    }
}
@media screen and (max-width: 567px) {
    .contact-col-scroll {
        overflow-y:unset;
        max-height:100%;
    }
    .scroll-col {
        overflow-y: unset;
        max-height: 100%;
    }
}

/* End Get in Touch */
/*Certificates*/
.certificates-page-img {
    height: 216px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../NewImages/website/about-img.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.certificates-div {
    margin: 40px 0px;
}

.wrapper {
    padding: 0;
    overflow-x: hidden;
}

.certificate-img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    margin-bottom:20px;
}

.certificate {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    justify-content: flex-end;
    align-items: center;
}

.certificate-name {
    color: #000;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}




.slick-initialized .slick-slide {
    color: #000;
    font-weight: 300;
    font-size: 15px;
    height: 200px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-slider .slick-slide {
    height: 330px;
}
.certificates-slider .slick-slide {
    height: 400px;
}




.slick-next, .slick-prev {
    z-index: 5;
}

.slick-next {
    right: 15px;
}

.slick-prev {
    left: 15px;
}

    .slick-next:before, .slick-prev:before {
        color: #000;
        font-size: 26px;
    }
@media screen and (max-width: 1200px) {
    .certificate-img {
        width: 150px;
    }
    .certificate-name {
        font-size: 14px;
    }
  }
@media screen and (max-width: 992px) {
    .certificate-img {
        width: 130px;
    }

}

    @media screen and (max-width: 768px) {
        .slick-initialized .slick-slide {
            height: 150px;
        }

        .my-slider .slick-slide {
            height: 280px;
        }

        .certificates-slider .slick-slide {
            height: 300px;
        }

        .certificate-img {
            margin-bottom: 10px;
            width: 150px;
        }
    }



    /*      About us       */
    .about-page {
        background-image: url();
    }

    .about-container {
        padding: 80px 100px;
        position: relative;
    }

    .about-btn-div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding-top: 60px;
    }

    .about-btn {
        border: 1.6px solid #474747;
        background: rgba(217, 217, 217, 0.00);
        color: #474747;
        font-family: var(--font-family);
        text-transform: uppercase;
        font-weight: 300;
        padding: 13px 29px;
        font-style: normal;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 2px;
        transition: .3s;
    }

        .about-btn:hover {
            background: #474747;
            color: white;
        }

    .box-left {
        position: relative;
        display: flex;
        justify-content: flex-start;
    }

    .box-right {
        position: relative;
        display: flex;
        justify-content: flex-end;
    }

    .box-now {
        width: 50%;
        text-align: center !important;
    }

    .about-box {
        background-color: rgba(255, 255, 255, 1);
        fill: #FFF;
        filter: drop-shadow(0px 3px 40px rgba(0, 0, 0, 0.07));
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        width: 470px;
        z-index: 10;
        font-family: var( --font-family);
        text-align: justify;
    }

    .about-box-shadow {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(0, 0, 0, 0.07);
        height: 176px;
        width: 232px;
        position: absolute;
        bottom: -21px;
        left: -23px;
        border-radius: 0px 0px 0px 29px;
    }

    .about-box-shadow-right {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(0, 0, 0, 0.07);
        height: 176px;
        width: 232px;
        position: absolute;
        bottom: -24px;
        right: -23px;
        border-radius: 0px 0px 29px 0px;
    }

    .now-row {
        padding-top: 150px;
    }

    .now-box-shadow {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(0, 0, 0, 0.07);
        height: 176px;
        width: 232px;
        position: absolute;
        bottom: -21px;
        right: 305px;
        border-radius: 0px 0px 29px 0px;
    }

    .company-name {
        font-weight: 600;
    }

    .about-year {
        color: #000;
        font-size: 38px;
        font-weight: 300;
        margin-bottom: 7px;
    }

    .about-text {
        color: #656565;
        font-weight: 400;
        font-size: 15px;
        line-height: 27px;
    }

    .about-line {
        background-color: rgba(209, 209, 209, 0.3);
        height: 730px;
        width: 5px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .about-section {
        background-color: rgba(255, 255, 255, 1);
        fill: #FFF;
        filter: drop-shadow(0px 3px 40px rgba(0, 0, 0, 0.07));
        border-radius: 10px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .about-button {
        background: transparent;
        border: 1px solid #474747;
        color: #474747;
        width: 100%;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        font-size: 17px;
        font-family: var(--font-family);
    }

    @media screen and (max-width: 1400px) {
        .about-container {
            padding: 60px 40px;
        }

        .now-box-shadow {
            right: 275px;
        }
    }

    @media screen and (max-width: 1200px) {
        .about-container {
            padding: 60px 0px;
        }

        .about-box {
            padding: 20px;
            width: 420px;
        }

        .now-box-shadow {
            right: 250px;
        }
    }

    @media screen and (max-width: 992px) {
        .about-box {
            padding: 15px;
            width: 317px;
        }

        .about-year {
            font-size: 36px;
            margin-bottom: 0px;
        }

        .about-text {
            font-size: 13px;
            line-height: 25px;
        }

        .about-box-shadow {
            left: -14px;
            bottom: -20px;
        }

        .about-box-shadow-right {
            right: -14px;
            bottom: -20px;
        }

        .now-box-shadow {
            right: 181px;
        }

        .about-button {
            font-size: 14px;
        }
    }

    @media screen and (max-width: 768px) {
        .about-box {
            padding: 25px;
            width: 400px;
            margin-bottom: 50px;
        }

        .box-left {
            justify-content: center;
        }

        .box-right {
            justify-content: center;
        }

        .about-box-shadow {
            left: 48px;
            bottom: 28px;
        }

        .about-box-shadow-right {
            right: 48px;
            bottom: 28px;
        }

        .about-line {
            display: none;
        }

        .now-row {
            padding-top: 0px;
        }

        .now-box-shadow {
            right: 51px;
            bottom: 29px;
        }

        .about-button {
            font-size: 15px;
        }
        .about-btn {
            font-size: 12px;

        }
    }

    @media screen and (max-width: 567px) {
        .about-box-shadow {
            display: none;
        }

        .about-box-shadow-right {
            display: none;
        }

        .now-box-shadow {
            display: none;
        }

        .accomplished-projects {
            padding-bottom: 0px;
        }

        .about-box {
            margin-bottom: 25px;
        }

        .about-btn-div {
            margin: 30px 5px 30px 5px;
            grid-gap: 10px;
            padding-top: 0px;
            flex-direction: column;
        }

        .about-btn {
            padding: 13px 10px;
            font-size: 9px;
            width: 50%;
            text-align: center;
        }
    }

    /** Message Ceo  **/
    .message-container {
        padding: 60px 0px;
    }

    .message-p {
        color: #656565;
        font-weight: 400;
        font-size: 17px;
        font-family: var(--font-family);
        line-height: 27px;
        text-align: justify;
        max-width: 90%;
    }

    .message-title {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .message-text {
        font-size: 15px;
    }

    .m-text-bold {
        font-weight: 700;
    }

    .message-top {
        padding-top: 15px;
    }

    /**   Our Staff  **/
    .staff-container {
        padding: 60px 0px;
    }

    .staff-intro {
        text-align: center;
        margin-bottom: 20px;
        color: #656565;
        font-weight: 400;
        font-size: 17px;
        font-family: var( --font-family);
        line-height: 27px;
        padding: 0px 374px;
    }

    .staff-div {
        position: relative;
    }

    .staff-box {
        background-color: rgba(255, 255, 255, 1);
        fill: #FFF;
        filter: drop-shadow(0px 3px 40px rgba(0, 0, 0, 0.07));
        border-radius: 10px;
        padding: 34px 15px;
        height: 140px;
        width: 276px;
        z-index: 10;
        font-family: var( --font-family);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .staff-box-shadow {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(187, 187, 187, 0.27);
        height: 131px;
        width: 176px;
        position: absolute;
        bottom: -21px;
        left: -23px;
        border-radius: 0px 0px 0px 29px;
        z-index: -1;
    }

    .staff-shadow-right {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(187, 187, 187, 0.27);
        height: 131px;
        width: 176px;
        position: absolute;
        bottom: -21px;
        right: 15px;
        border-radius: 0px 0px 29px 0px;
        z-index: -1;
    }

    .staff-number {
        color: #656565;
        font-size: 32px;
        font-weight: 600;
        line-height: 27px;
        font-family: var(--font-family);
    }

    .staff-text {
        color: #000;
        font-size: 14px;
        font-weight: 300;
        line-height: 25px;
        font-family: var(--font-family);
        margin-top: 20px;
    }

    .staff-start {
        display: flex;
        justify-content: flex-start;
    }

    .staff-end {
        display: flex;
        justify-content: flex-end;
    }

    .staff-center {
        display: flex;
        justify-content: center;
    }

    .total-shadow {
        box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.07);
        background-color: rgba(187, 187, 187, 0.27);
        height: 131px;
        width: 321px;
        position: absolute;
        bottom: -21px;
        left: -23px;
        border-radius: 0px 0px 28px 23px;
        z-index: -1;
    }

    .staff-row {
        padding-top: 50px;
        justify-content: center
    }

    .total {
        font-weight: 600;
        margin-bottom: 10px;
        letter-spacing: 2.68px;
        text-transform: uppercase;
        margin-top: unset !important;
    }

    @media screen and (max-width: 1400px) {
        .staff-intro {
            padding: 0px 300px;
        }

        .staff-box {
            width: 255px;
        }

        .staff-box-shadow {
            bottom: -19px;
            left: -16px;
        }

        .staff-shadow-right {
            bottom: -19px;
            right: -2px;
        }


        .total-shadow {
            width: 299px;
        }
    }

    @media screen and (max-width: 1200px) {
        .staff-intro {
            padding: 0px 200px;
        }

        .staff-box {
            width: 220px;
            height: 120px;
            margin-bottom: 40px;
        }

        .staff-text {
            font-size: 13px;
            margin-top: 15px;
        }

        .staff-box-shadow {
            height: 120px;
            width: 170px;
            bottom: -12px;
            left: -12px;
        }

        .staff-shadow-right {
            height: 120px;
            width: 170px;
            bottom: -12px;
            right: -9px;
        }

        .staff-row {
            padding-top: 0px;
        }


        .total-shadow {
            height: 117px;
            width: 259px;
            bottom: -18px;
            left: -20px;
        }
    }

    @media screen and (max-width: 992px) {
        .staff-intro {
            padding: 20px 85px;
        }

        .staff-box {
            width: 323px;
            margin-bottom: 40px;
        }

        .staff-box-shadow {
            left: -16px;
            bottom: -15px;
        }

        .staff-shadow-right {
            right: 10px;
            bottom: -15px;
        }

        .staff-row {
            padding-top: 0px;
        }

        .total-shadow {
            height: 117px;
            width: 365px;
            bottom: -17px;
            left: -23px;
        }
    }

    @media screen and (max-width: 768px) {
        .staff-intro {
            padding: 20px 20px;
        }

        .staff-box {
            height: 140px;
        }

        .staff-div {
            display: flex;
            justify-content: center;
        }

        .staff-text {
            font-size: 15px;
            margin-top: 20px;
        }

        .staff-box-shadow {
            display: none;
        }

        .staff-shadow-right {
            display: none;
        }

        .staff-row {
            padding-top: 0px;
        }

        .total-shadow {
            height: 125px;
            width: 360px;
            bottom: 20px;
            left: 89px;
        }
    }

    @media screen and (max-width: 576px) {
        .total-shadow {
            display: none;
        }
    }



    /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
    .portfolio #portfolio-flters {
        padding: 0;
        margin: 50px auto 0px auto;
        list-style: none;
        text-align: center;
        background: white;
        border-radius: 50px;
        padding: 2px 15px;
    }

        .portfolio #portfolio-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            color: #444444;
            margin: 0 4px 8px 4px;
            transition: 0.3s;
            /*border-radius: 50px;*/
            border: 1px solid #fff;
            font-family: var( --font-family);
        }

            .portfolio #portfolio-flters li:hover,
            .portfolio #portfolio-flters li.filter-active {
                color: white;
                background-color: #373737;
                /*border-color: #474747;*/
            }

            .portfolio #portfolio-flters li:last-child {
                margin-right: 0;
            }

    .portfolio .portfolio-wrap {
        transition: 0.3s;
        position: relative;
        overflow: hidden;
        z-index: 1;
        background: rgba(255, 255, 255, 0.75);
    }

        .portfolio .portfolio-wrap::before {
            content: "";
            background: rgba(255, 255, 255, 0.75);
            position: absolute;
            left: 30px;
            right: 30px;
            top: 30px;
            bottom: 30px;
            transition: all ease-in-out 0.3s;
            z-index: 2;
            opacity: 0;
        }

        .portfolio .portfolio-wrap img {
            transition: 1s;
        }

        .portfolio .portfolio-wrap .portfolio-info {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            text-align: center;
            z-index: 3;
            transition: all ease-in-out 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .portfolio .portfolio-wrap .portfolio-info::before {
                display: block;
                content: "";
                width: 48px;
                height: 48px;
                position: absolute;
                top: 35px;
                left: 35px;
                border-top: 3px solid rgba(1, 41, 112, 0.2);
                border-left: 3px solid rgba(1, 41, 112, 0.2);
                transition: all 0.5s ease 0s;
                z-index: 9994;
            }

            .portfolio .portfolio-wrap .portfolio-info::after {
                display: block;
                content: "";
                width: 48px;
                height: 48px;
                position: absolute;
                bottom: 35px;
                right: 35px;
                border-bottom: 3px solid rgba(1, 41, 112, 0.2);
                border-right: 3px solid rgba(1, 41, 112, 0.2);
                transition: all 0.5s ease 0s;
                z-index: 9994;
            }

            .portfolio .portfolio-wrap .portfolio-info h4 {
                font-size: 20px;
                color: #012970;
                font-weight: 700;
            }

            .portfolio .portfolio-wrap .portfolio-info p {
                color: #012970;
                font-weight: 600;
                font-size: 14px;
                text-transform: uppercase;
                padding: 0;
                margin: 0;
            }

        .portfolio .portfolio-wrap .portfolio-links {
            text-align: center;
            z-index: 4;
        }

            .portfolio .portfolio-wrap .portfolio-links a {
                color: #fff;
                background: #4154f1;
                margin: 10px 2px;
                width: 36px;
                height: 36px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
            }

                .portfolio .portfolio-wrap .portfolio-links a i {
                    font-size: 24px;
                    line-height: 0;
                }

                .portfolio .portfolio-wrap .portfolio-links a:hover {
                    background: #5969f3;
                }

        .portfolio .portfolio-wrap:hover img {
            transform: scale(1.1);
        }

        .portfolio .portfolio-wrap:hover::before {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 1;
        }

        .portfolio .portfolio-wrap:hover .portfolio-info {
            opacity: 1;
        }

            .portfolio .portfolio-wrap:hover .portfolio-info::before {
                top: 15px;
                left: 15px;
            }

            .portfolio .portfolio-wrap:hover .portfolio-info::after {
                bottom: 15px;
                right: 15px;
            }


    /* -------------- End our projects -------------- */

    /* -------------- Start project Details -------------- */
    .project-details-content {
        padding-top: 50px;
        padding-bottom: 25px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

   /* .project-details-content a {
        color: blue !important;
        text-decoration: underline;
    }*/

    .project-details-slick .slick-slide {
        height: 500px;
    }

    .project-details-content .home-des {
        text-transform: uppercase;
        letter-spacing: 0.16em;
    }

    .hr-project-details {
        color: rgb(217, 217, 217);
    }

    .project-img {
        width: 100%;
        /*max-width:600px;*/
    }

    .project-details-content-2 {
        padding-top: 30px;
        z-index: -1;
    }

    .ProjectDetails_TeableTitle {
        color: #474747;
        /*text-align: justify;*/
        font-family: var(--font-family);
        font-size: 14px;
    }


    .project-details a {
        color: #474747;
    }

    .Bolddetailpro {
        font-weight: 600;
        text-transform: uppercase;
    }

    .project-details {
        padding-top: 15px;
        padding-bottom: 30px;
        margin: 50px 0;
    }

    .project-details-content {
        padding: 15px;
    }

    .project-details-description {
        padding-top: 30px;
    }

    .ProjectDetails_description {
        color: #474747;
        font-family: var(--font-family);
    }

    .ProjectDetails_Title {
        font-weight: 600;
        font-size: 18px;
        text-transform: uppercase;
    }


    .ProjectDetails_TeableTitle {
        /*display:flex;*/
        padding-bottom: 15px;
    }

    .project-details-content .HLConsultant {
        text-transform: none;
        display: inline-block;
    }

    /*.project-details-description .HLConsultant {
        letter-spacing: 0;
    }*/

    .ProjectDetails_TeableTitle p {
        margin-bottom: 0px;
    }

    .slick-prev:before, .slick-next:before {
        color: black;
        opacity: 0.36;
        font-size: 30px;
    }

    .slick-next {
        right: 15px;
    }

    .slick-prev {
        left: 15px;
        z-index: 10;
    }

    .custom-arrows {
        position: absolute;
        top: 0;
        z-index: 10;
        display: flex;
    }

    .custom-arrow {
        position: absolute;
        width: 40px;
    }

        .custom-arrow:hover {
            cursor: pointer;
        }

    .view-all-btn-div {
        position: absolute;
    }

        .view-all-btn-div input {
            background: url(.png), radial-gradient(251.08% 516.33% at -145.6% 89.7%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
            background-blend-mode: overlay, normal;
            backdrop-filter: blur(40px);
            /* Note: backdrop-filter has minimal browser support */
            border-radius: 31px;
            color: white;
            padding: 10px 25px;
            border: none;
        }
    /* -------------- End project Details -------------- */
    /*****************************************************************************/
    @media screen and (max-width: 4000px) {
        .vision-img-div {
            right: 88px;
        }
    }

    @media screen and (max-width: 1523px) {
        .vision-img-div {
            right: 88px;
        }
    }

    @media screen and (max-width: 1399px) {
        .vision-img-div {
            right: 74px;
        }
    }

    @media screen and (max-width: 1200px) {
        .navbar-nav .dropdown-menu {
            /*        background: transparent !important;*/
        }

        .dropdown-item {
            color: white;
            font-weight: lighter;
        }

        #hero .info h1 {
            width: 100%;
            font-size: 29px;
            line-height: 45px;
        }

        .navbar-brand {
            margin: 12px;
        }

        .header .navbar > .container {
            gap: 0;
        }

        .header .navbar-nav {
            padding: 17px;
            backdrop-filter: blur(10px);
        }
        .blur-hero-title {
            filter: blur(10px);
        }

        .header .bg-light {
            padding: 0;
        }

        .bg-light.solid {
            padding-top: 0px !important;
            transition: .5s;
        }

        #hero .info p {
            font-style: normal;
            font-weight: 300;
            letter-spacing: 2px;
            line-height: 21px;
            font-size: 11px;
            text-transform: uppercase;
            color: #FFFFFF;
            max-width: 100%;
        }

        #hero .info a {
            padding: 10px 29px;
        }

        .container-custom {
            width: 100%;
        }
    }

    @media screen and (max-width: 992px) {
        .vision-img-div {
            display: none;
        }
    }

    @media screen and (max-width: 768px) {
        .policy {
            justify-content: center;
        }

        .social-icon {
            justify-content: center;
        }

        .vision-img-div {
            display: none;
        }

        .vision-img {
            width: 100%;
        }

        .vision-img-div-parent {
            padding-bottom: 50px;
        }

        .project-card-btn-container {
            margin-bottom: 30px;
        }
    }

    @media screen and (max-width: 576px) {
        .accomplished-projects-content {
            padding-top: 50px;
        }

        .slider__slide-subheading {
            font-size: 16px !important;
            text-align: center !important;
        }

        .project-card-btn-container .second-btn.project-card-btn {
            width: 270px;
            margin-left: 0;
        }

        .project-card-btn-container {
            margin-bottom: 30px;
        }

        .slider__slide {
            height: 80% !important;
        }

        .slider__slide-content {
            height: 65% !important;
        }

        .slider__slide-parts {
            height: 60% !important;
        }

        .header-app {
            height: 48vh;
            overflow: hidden;
        }

        .slider__slide-heading {
            font-size: 14px !important;
            font-weight: 300 !important;
        }

        .slider__control:before {
            top: -120% !important;
            width: 18px;
            height: 18px;
        }

        .header .navbar-brand img {
            width: 270px;
        }

        .news-cards-container {
            overflow: auto;
        }

        ::-webkit-scrollbar {
            height: 0px;
            background: transparent;
            /* make scrollbar transparent */
        }

        .news-cards-container {
            padding-top: 25px;
        }

        .inner-page {
            padding-top: 64px;
        }
        /* the slides */
        .partner .slick-slide {
            margin: 0 0px;
            padding: 12px;
        }
        /* the parent */
        .partner .slick-list {
            margin: 0 -0px;
        }
    }





    @media screen and (min-width: 1200px) {
    }

    .inner-page-img-2 {
        margin-top: -1px;
        position: relative;
        z-index: 10;
    }

    .vision-title img {
        width: 45px;
    }




    .vision-container {
        padding: 50px 30px 0;
    }

    .partner-container {
        padding: 0 30px 50px;
    }

    .techno-figures-container {
        padding: 0 30px;
    }

    @media (max-width: 576px) {
        .home-title {
            font-size: 22px;
        }

        .vision-title img {
            width: 35px;
        }

        .vision .home-des {
            font-size: 13px;
            text-align: unset;
        }

        .BcTitle {
            padding: 0;
            font-size: 28px;
        }

        .LaSource {
            padding-left: 0px;
            font-size: 17px;
        }

        .LaPage {
            padding-right: 0px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .BcTitle {
            padding: 0 ;
            font-size: 28px;
        }
    }


    .plus-counter {
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

        .plus-counter p {
            color: #fff;
            font-size: 44px;
            margin-left: 10px;
        }

    @media (max-width: 1199px) {
        .vision-img-div {
            right: 13%;
        }
    }


    .techno-figures-content .home-title span {
        position: relative;
    }

        .techno-figures-content .home-title span::before {
            content: '';
            width: 80px;
            position: absolute;
            bottom: 118%;
            background: #fff;
            height: 4px;
        }

    .fontTahoma span {
        font-size: 14px;
    }

    .ProjectDetails_Title span {
        font-size: 18px;
    }


    .accomplished-projects-container {
        padding: 0 30px;
    }

    .project-details-content {
        padding: 0 12px;
    }

    @media (max-width: 992px) {
        .project-details-content {
            padding-top: 30px;
        }
    }

    @media (max-width: 567px) {
        .project-details-container {
            padding: 0 10px;
        }

        .project-details-slick .slick-slide {
            height: 280px;
        }
    }



    .hero-logo {
        width: 300px;
    }

    .hero-title h1 {
        font-size: 34px;
        font-weight: 400;
        letter-spacing: 1px;
        text-transform: uppercase;
        line-height: 1.7;
    }

    .hero-title p {
        margin: 20px 0 40px;
        font-size: 17px;
        word-spacing: 3px;
        max-width: 80%;
    }

    .hero-title a {
        color: #373737;
        background: none;
        border: 1px solid #373737;
        padding: 10px 30px;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: .4s ease-in-out;
        cursor: pointer;
    }

        .hero-title a:hover {
            background: #373737;
            color: #fff !important;
        }

    @media (max-width: 776px) {
        .hero-title {
            padding-top: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

            .hero-title h1 {
                text-align: center;
            }

            .hero-title p {
                text-align: center;
            }
    }

    .navbar-toggler {
        background-color: #373737 !important;
        margin-right: 10px;
    }


    @media (max-width: 992px) {
        .header .navbar-brand img {
            width: 430px;
        }
    }

    @media (max-width: 576px) {
        .header .navbar-brand img {
            width: 300px;
        }
        .navbar-brand {
            margin: 12px 0px 12px 12px;
        }
    }


    /* Certificate Details*/
    .valuedCust-container_who {
        background-color: #F2F2F2;
        border-radius: 10px;
        border: 1px solid #505050;
        padding-top: 20px;
        padding-bottom: 100px;
        max-width: 90%;
        position: relative;
        top: -120px;
    }

    .ProHYP {
        text-decoration: none !important;
        color: black;
        height: 100%;
        display: block;
        margin-top: 20px;
    }

        .ProHYP:hover {
            text-decoration: none !important;
            color: black;
            height: 100%;
            display: block;
        }

    .cartificate_de_coldiv {
        border: 1px solid #d4d4d4;
        background: #e8e7e7;
        height: 100%;
        position: relative;
    }

    .cartificatediv {
        width: 200px;
        height: 200px;
        margin-left: 10%;
    }

    .textover {
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        padding-top: 5px;
    }

    .PRoDetail_supTitle {
        padding: 25px;
        position: relative;
        background-color: #e8e7e7;
        text-align: center;
    }

    .PRoDetail_img:hover img {
        transition: filter 0.5s ease-in-out;
        filter: blur(0);
    }

    .PRoDetail_img:hover img {
        filter: blur(2px);
    }

    .avia-arrow {
        height: 30px;
        width: 30px;
        position: absolute;
        top: -6px;
        left: 47%;
        margin-left: -5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-width: 1px;
        border-style: solid;
        visibility: hidden\9;
    }

    .PRoDetail_supTitle .avia-arrow {
        border: none;
        top: -4px;
        background-color: #e8e7e7;
        color: #55606e;
    }

    .Projects_Inner {
        background-color: #DEDDDD;
        padding-top: 65px;
        padding-bottom: 0px;
        position: relative;
    }

    .Top3 {
        background-image: url(../../images/slider/top3.jpg);
    }

    .AboutUSHeaderimg {
        background-image: url(../../images/slider/5d93ba75-ebeb-474d-8249-3a6a40c953d8.jpg);
        background-size: cover;
        height: 250px;
        position: relative;
    }

    .back_adminis_Path {
        position: absolute;
        top: 0;
        background-color: #00000094;
        width: 100%;
        height: 75px;
    }

    .adminis_Path {
        position: absolute;
        top: 33px;
        color: white;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
