    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
    @import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
    @import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
    body,
    html {
        font-family: 'Poppins', sans-serif !important;
        top: 0 !important;
    }
    /* **********
 
   Top bar

**************/
    .btnPrimary{
        background-color: #C2712B;
        color: #fff;
    }
    #topbar {
        background-color: #000;
        padding: 8px;
        color: #fff;
        width: 100%;
        /* overflow-y: scroll; */
    }
    
    #topbar i {
        color: #fff;
        font-size: 24px;
        margin-right: 10px;
    }
    
    #topbar .spacing {
        margin-left: 30px;
        margin-right: 50px;
    }
    
    #topbar ul {
        margin: 0;
    }
    
    #linebreak {
        display: none;
    }
    
    @media screen and (max-width: 767px) {
        #linebreak {
            display: block;
        }
    }
    
    @media screen and (max-width: 500px) {
        #topbar .spacing {
            margin-left: 1px;
            margin-right: 10px;
        }
    }
    /* ***********************
    
        Navbar
    
    **************************8*/
    
    .navbar {
        /* background-color:#fff !important; */
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 9999;
    }
    
    .navbar.scrolled {
        background-color:#C2712B;
    }
    
    .navbar .dropdown-toggle::after {
        margin-left: -2px;
        margin-top: 5px;
    }
    
    .navbar-collapse ul li a {
        font-size: 16px;
        font-weight: 500;
        color: rgb(0, 0, 0) !important;
        /* text-shadow: 3px 3px 2px #070302; */
        /* margin-top: 10px; */
    }
    
    .navbar-collapse ul li div a {
        font-size: 16px;
        font-weight: 500;
        color: unset !important;
        text-shadow: unset;
        /* margin-top: 10px; */
    }
    
    .navbar .nav-item {
        margin-right: 20px;
    }
    
    .navbar .nav-item:last-child {
        margin-right: 0;
    }
    .navbar-brand img{
        width: 200px;
    }
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        border: 1px solid #333;
    }
    
    @media screen and (max-width: 500px) {
        .navbar img {
            /* width: 90%; */
        }
    }
    /* ****************
    
          Slider

    *********************/
    
    .carousel-item {
        height: 105vh;
        min-height: 350px;
        background-size: cover;
        /* -webkit-animation: image-zoom 15s ease-in both;
        animation: image-zoom 15s ease-in both;
        animation-iteration-count: infinite; */
    }
    
    @-webkit-keyframes image-zoom {
        0% {
            -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
            -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
        }
        100% {
            -webkit-transform: scale(1) translateY(-15px);
            transform: scale(1) translateY(-15px);
            -webkit-transform-origin: top;
            transform-origin: top;
        }
    }
    
    @keyframes image-zoom {
        0% {
            -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
            -webkit-transform-origin: 50% 16%;
            transform-origin: 50% 16%;
        }
        100% {
            -webkit-transform: scale(1.25) translateY(-15px);
            transform: scale(1.25) translateY(-15px);
            -webkit-transform-origin: top;
            transform-origin: top;
        }
    }
    
    .carousel-caption {
        bottom: 45%;
    }
    
    #map .carousel-caption {
        text-shadow: 3px 3px 2px #070302;
    }
    
    #livecar {
        background-image: url("../images/Car-Wallpapers-HD.jpg");
        height: 100vh;
        background-position: center;
        background-size: cover;
    }
    
    .threeCover p {
        font-weight: 300;
    }
    
    .img-cover img {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        cursor: pointer;
    }
    
    .img-cover:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }
    
    #vehciles {
        padding: 100px 0;
        background: linear-gradient( 165deg, #4f1d13 0%, #ffc559 100%);
        color: #fff;
        position: relative;
    }
    
    #vehciles:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        background-image: url("../images/line-bg.png");
        background-size: 80%;
        background-repeat: repeat;
        background-position: left center;
        opacity: 0.3;
    }
    
    @media screen and (max-width: 767px) {
        .threeCover img {
            width: 27%;
        }
        .threeCover p {
            font-size: 13px;
        }
    }
    /* ************************
           
          App mobile

*****************************/
    
    #app {
        /* margin:20px 0; */
        /* background-image: url("../images/app.jpg"); */
        height: 20vh;
        padding: 35px 0;
        display: flex;
        align-items: center;
        background-size: cover;
        background-color: #000;
    }
    
    #app h3 {
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }
    
    #app p {
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }
    
    #app .btn {
        background-color: #fff;
        color: #023054;
        margin-bottom: 0;
        border: 1px solid #000;
    }
    
    #app .btn:hover {
        color: #fff;
        background-color: #C2712B;
        margin-bottom: 0;
        border: 1px solid #C2712B;
    }
    
    #app a {
        text-decoration: none;
    }
    
    #app img {
        height: 100px;
    }
    
    @media screen and (max-width: 1230px) {
        #app {
            height: auto;
        }
    }
    
    @media screen and (max-width: 767px) {
        #app h3 {
            margin-bottom: 20px;
        }
        #app img {
            margin-top: 20px;
        }
    }
    
    @media screen and (max-width: 620px) {
        #app h3 {
            font-size: 20px;
        }
        #app p {
            font-size: 13px;
        }
        #app .btn {
            font-size: 13px;
        }
    }
    /**************

Control

*****************/
    
    #control {
        padding: 5% 0;
    }
    
    #control img {
        width: 100%;
        height: 240px;
    }
    
    #control h4 {
        /* position: relative; */
    }
    
    #control p {
        margin-bottom: 0;
        font-weight: 300;
        text-align: justify;
        font-size: 15px;
    }
    
    @media screen and (max-width: 991px) {
        .controlspace {
            margin: 30px 0;
            ;
        }
    }
    
    @media screen and (max-width: 767px) {
        #control p {
            font-size: 13px;
        }
        #control h4 {
            font-size: 18px;
        }
    }
    /* #control h4:before{
    content:"";
    display:inline-block;
    width:50px;
    height:1px;
    position: absolute;
    background-color: #000;
    top:50%;
} */
    /* *****************

Footer

**********************/
    
    .footerss {
        background-image: url("../images/footer-background-photo.jpg");
        height: auto;
        background-size: cover;
        /* padding: 30px 0; */
    }
    
    .footerss p {
        color: #fff;
        font-size: 12px;
        /* line-height: 1.2; */
        /* margin-bottom: 0; */
        font-weight: 400;
        line-height: 1.3;
    }
    
    .footerss h3 {
        color: #fff;
        margin-bottom: 38px;
        font-size: 22px;
    }
    
    .footerss i {
        color: #fff;
        font-size: 18px;
    }
    
    @media screen and (min-width: 1510px) {
        .footerss p {
            color: #fff;
            font-size: 14px;
            /* line-height: 1.2; */
            /* margin-bottom: 0; */
            font-weight: 400;
            line-height: 1.3;
        }
    }
    /* *****************************************
    
                About US Page
    
    
    ********************************************/
    
    #contentfull>img {
        width: 100%;
        height: 35vh;
    }
    
    #contentfull h1::after {
        content: "";
        position: absolute;
        border-top: 2px solid #C2712B;
        left: 45%;
        top: 60px;
        margin-left: -15px;
        width: 130px;
        height: 0px;
    }
    
    #contentfull h1 {
        position: relative;
    }
    
    #contentfull p {
        text-align: justify;
        font-weight: 300;
    }
    
    @media screen and (max-width: 991px) {
        #contentfull h1::after {
            left: 42%;
        }
    }
    
    @media screen and (max-width: 767px) {
        #contentfull h1::after {
            left: 40%;
        }
    }
    
    @media screen and (max-width: 500px) {
        #contentfull h1::after {
            left: 38%;
        }
    }
    
    @media screen and (max-width: 400px) {
        #contentfull h1::after {
            left: 34%;
        }
    }
    /* ********************************
    

                 Contact Us
    
    
    **************************************/
    
    #contactus {
        padding: 35px 0;
        background-color: #faf9f9;
    }
    
    #contactus h2::after {
        content: "";
        position: absolute;
        border-top: 2px solid #C2712B;
        left: 43%;
        top: 45px;
        margin-left: -15px;
        width: 130px;
        height: 0px;
    }
    
    #contactus .card:hover i,
    #contactus .card:hover h4 {
        color: #C2712B;
    }
    
    #contactus h1 {
        position: relative;
    }
    
    .socialicons {
        margin-top: 30px;
    }
    
    .socialicons i {
        margin-right: 10px;
    }
    
    .socialicons i:nth-last-child() {
        margin-right: 0;
    }
    
    hr {
        background-color: #e4dede !important;
        height: 1px;
        border: none;
    }
    
    @media screen and (max-width: 991px) {
        #contactus h2::after {
            left: 42%;
        }
    }
    
    @media screen and (max-width: 600px) {
        #contactus h2::after {
            left: 38%;
        }
    }
    
    @media screen and (max-width: 380px) {
        #contactus h2::after {
            left: 35%;
        }
    }
    /* **************
Text animate

******************/
    
    .wrapper h1 {
        position: relative;
        float: left;
        color: #fff;
        font-family: 'Inconsolata', Consolas, monospace;
        font-size: 4em;
        margin-left: 60px;
    }
    
    .wrapper h1 span {
        position: absolute;
        top: 0;
        right: 0;
        background: #1d1f20;
        width: 100%;
        border-left: .1em solid transparent;
        -webkit-animation: typing 3s steps(16) forwards, cursor 1s infinite;
        animation: typing 3s steps(16) forwards, cursor 1s infinite;
    }
    /* Animation */
    
    @-webkit-keyframes typing {
        from {
            width: 100%;
        }
        to {
            width: 0;
        }
    }
    
    @-webkit-keyframes cursor {
        50% {
            border-color: white;
        }
    }
    
    @keyframes typing {
        from {
            width: 100%;
        }
        to {
            width: 0;
        }
    }
    
    @keyframes cursor {
        50% {
            border-color: white;
        }
    }
    /*******************/
    
    .yesss {
        /* border-right: solid 3px rgba(0,255,0,.75); */
        white-space: nowrap;
        overflow: hidden;
        font-family: 'Source Code Pro', monospace;
        font-size: 28px;
        color: rgba(255, 255, 255, .70);
    }
    /* Animation */
    
    .yesss {
        animation: animated-text 4s steps(29, end) 1s 1 normal both, animated-cursor 600ms steps(29, end) infinite;
    }
    /* text animation */
    
    @keyframes animated-text {
        from {
            width: 0;
        }
        to {
            width: 592px;
        }
    }
    /* cursor animations */
    
    @keyframes animated-cursor {
        from {
            border-right-color: rgba(0, 255, 0, .75);
        }
        to {
            border-right-color: transparent;
        }
    }
    /* *************************
SLider
****************************/
    
    .slick-slide {
        margin: 0px 20px;
    }
    
    .slick-slide img {
        width: 100%;
    }
    
    .slick-slider {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }
    
    .slick-list {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .slick-list:focus {
        outline: none;
    }
    
    .slick-list.dragging {
        cursor: pointer;
        cursor: hand;
    }
    
    .slick-slider .slick-track,
    .slick-slider .slick-list {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block;
    }
    
    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }
    
    .slick-track:after {
        clear: both;
    }
    
    .slick-loading .slick-track {
        visibility: hidden;
    }
    
    .slick-slide {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }
    
    [dir='rtl'] .slick-slide {
        float: right;
    }
    
    .slick-slide img {
        display: block;
    }
    
    .slick-slide.slick-loading img {
        display: none;
    }
    
    .slick-slide.dragging img {
        pointer-events: none;
    }
    
    .slick-initialized .slick-slide {
        display: block;
    }
    
    .slick-loading .slick-slide {
        visibility: hidden;
    }
    
    .slick-vertical .slick-slide {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }
    
    .slick-arrow.slick-hidden {
        display: none;
    }
    
    #clientslider h3 {
        color: #000;
        font-weight: 600;
        font-size: 40px;
    }
    
    #clientslider h3 {
        /* border-right: solid 3px rgba(0,255,0,.75); */
        white-space: nowrap;
        overflow: hidden;
        font-family: 'Source Code Pro', monospace;
        font-size: 40px;
        color: #000;
        margin: 0 auto;
    }
    /* Animation */
    
    #clientslider h3 {
        animation: animated-text 4s steps(29, end) 1s 1 normal both, animated-cursor 600ms steps(29, end) infinite;
    }
    /* text animation */
    
    @keyframes animated-text {
        from {
            width: 0;
        }
        to {
            width: 472px;
        }
    }
    /* cursor animations */
    
    @keyframes animated-cursor {
        from {
            border-right-color: rgba(0, 255, 0, .75);
        }
        to {
            border-right-color: transparent;
        }
    }
    
    .part {
        position: relative;
    }
    
    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    canvas {
        display: block;
        vertical-align: bottom;
    }
    
    .goog-te-banner-frame.skiptranslate {
        display: none !important;
    }
    
    #google_translate_element {
        color: transparent;
    }
    
    #google_translate_element a {
        display: none !important;
    }
    
    div.goog-te-gadget {
        color: transparent !important;
    }
    
    #goog-gt-tt {
        display: none !important;
        top: 0px !important;
    }
    
    .goog-tooltip skiptranslate {
        display: none !important;
        top: 0px !important;
    }
    
    .activity-root {
        display: hide !important;
    }
    
    .status-message {
        display: hide !important;
    }
    
    .started-activity-container {
        display: hide !important;
    }
    
    .goog-te-gadget .goog-te-combo {
        margin: 4px 0;
        font-size: 15px;
        background: #C2712B;
        color: #fff;
        margin-top: 10px;
    }
    
    .goog-logo-link {
        display: none !important;
    }
    
    .goog-te-gadget {
        color: transparent !important;
    }
    
    #google_translate_element {
        color: transparent !important;
    }
    
    #google_translate_element a {
        display: none !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        z-index: 9999;
    }
    
    #fleet-management {
        padding: 30px 0;
        background-color: #eff8ff;
    }
    
    #fleet-management img {
        margin-bottom: 10px;
    }
    
    .fleet-cover {
        background-color: #fff;
        padding: 10px 20px;
        border: 1px solid brown;
    }
    
    .fleet-cover:hover {
        background: linear-gradient( 165deg, #4f1d13 0%, #ffc559 100%);
        transition: 0.3s;
        color: #fff;
        cursor: pointer;
    }
    
    .fleet-cover p {
        font-size: 12px;
    }
    
    .fleet-cover h6 {
        font-size: 16px;
        font-weight: 400;
    }
    
    .contentfull {
        min-height: 80vh;
        background-color: #f1f1f1;
        padding: 80px 0;
    }
    
    .contentfull .nav-tabs {
        border-bottom: 0;
    }
    
    .contentfull .nav-link {
        background-color: #000;
        color: #fff;
        margin: 0 8px;
    }
    .contentfull i{
        color: #C2712B;
        font-size: 50px;
    }
    .contentfull .nav-link.active {
        background-color: #C2712B;
        color: #fff;
    }
    
    .contentfull .icons-cover {
        border: 1px solid #e4dede;
        border-radius: 3px;
        box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.50);
        -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.50);
        -moz-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.50);
        width: 25%;
    }
    
    .contentfull .icons-cover {
        height: 130px;
    }
    
    .contentfull .icons-cover:hover img {
        /* width: 90px; */
        /* transition: width .3s ease; */
        cursor: pointer;
    }
    
    .contentfull .icons-cover p {
        margin-bottom: 0;
        font-size: 14px;
    }
    .solutionCover {
    position: relative;
    }
    .solutionCover h4{
        position: absolute;
        top: 40%;
        left: 0;
        right: 0;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        color: #fff;
        font-weight: 700;
        text-shadow: 4px 3px 0 #7A7A7A;
        z-index: 99999;
    }
    .solutionCover img{
        height: 400px;
    }
    .solutionCover img:hover{
     cursor: pointer;
     transform: scale(1.05);
     transition:  transform 0.5s ease-in-out;
    }
    /**************************
    
            CEO PAGE
    
    ****************************/
    #ceoPage{
   
    }
    #ceoPage .heading-ceo{
        color: #C2712B;
    }
    #ceo-cover{
        background-image: url("../images/ceo-2.jpg");
        background-size: cover;
        height: 89vh;
       
    }
    #ceoPage p{
        font-weight: 400;
        font-size: 15px;
        text-align: justify;
    }
    #ceoPage p.owner{
    color: #C2712B;
    font-weight: 600;
    }
    #ceoPage .ceo-background{
        position: relative;
        padding: 20px 0 90px 0;
        margin-top: 40px;
    }
    #ceoPage .ceo-background::before{
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: url('../images/Al\ Haram.jpg');
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100%;
    }
#ceoPage .ceomessge_cover{
    position: relative;
}
#career{
    min-height: 100vh;
}

/**************
Fleet MANGAGEMENT
******************/
#fleet{
    height: 100vh;
    background-image: url('../images/fleetinside.jpg');
    background-size: cover;
    background-repeat: no-repeat;

}
 .fleet-management h5{
position: relative;
}
 .fleet-management h5::before{
    position: absolute;
    left: -15px;
    top: 35%;
    background-color: #000;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 5px;
    }
#trailor{
    height: 100vh;
    background-image: url('../images/truck-parking.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #000;
}
#asset{
    height: 100vh;
    background-image: url('../images/bigAsset.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
#container{
    background-image: url('../images/banner-truck.jpg');
    background-repeat: no-repeat;
    height: 90vh;
    align-items: center ;
    display: flex;
}
#bike{
    height: 100vh;
    background-image: url('../images/bigBike.jpg.crdownload');
    background-size: cover;
    background-repeat: no-repeat;
}
#video{
    height: 80vh;
    background-image: url('../images/BigVideo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#coldstorage{
    height: 110vh;
    background-image: url('../images/truck-warehouse.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
}
#text{
display: inline;
background-color: rgba(0,0,0,0.5);
border-radius: 8px;
padding: 20px 40px;
color: #fff;
font-weight: 600;
}
.backizy{
    background-image: url('../images/containerNewPage.webp');
    background-size: cover;
    height: 50vh;
}
#containerNew ul li{
font-size: 14px;
margin: 15px 0;
}