body {
    font-family: 'Work Sans', sans-serif;
    color: #101010;
    background-color: #FFF;
    overflow-x: hidden;
}

.lateef {
    font-family: 'Lateef', cursive;
}

.header {
    background: transparent;
    transition: all 0.4s;
    height: 120px;
}

.header.scroll {
    height: 80px;
    background: rgba(255, 255, 255, 0.51);
}

.header .navbar-toggle {
    background: none;
    height: 40px;
    width: 40px;
    border: none;
}

.header .navbar-toggle img {
    background: none;
    height: 38px;
    width: 38px;
    border: none;
    transition: all 0.4s;
}

.header.scroll .navbar-toggle img {
    height: 34px;
    width: 34px;
}

.header .logo {
    height: 60px;
    opacity: 1;
    transition: all 0.4s;
    position: absolute;
    display: inline;
    left: 1.5rem;
    top: 1.8rem;
}

.header.scroll .logo {
    opacity: 0;
    height: 40px;
}

.header .icon {
    opacity: 0;
    position: absolute;
    display: inline;
    transition: all 0.6s;
    left: 1.5rem;
    height: 50px;
    top: 1rem;
}
.header.scroll .icon {
    opacity: 1;
}

.section-banner-rotate {
    height: 100vh;
    background-position: center;
    background-size: 110%;
    transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 5s;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

.section-banner-rotate .banner {
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    background-image: url('../img/overlay.svg');
    background-position: center;
    background-size: cover;
    transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 5s;
}

.section-banner-rotate:hover .banner {
    background-image: url('../img/overlay.svg');
    opacity: 0;
}

.section-banner-rotate.about:hover {
    background-size: 120%;
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.section-banner-rotate.fleet:hover {
    background-size: 120%;
    background-image: url('../img/bannerfleets.png') !important;
}

.section-banner-rotate.services:hover {
    background-size: 120%;
    background-image: url('../img/bannerservices.png') !important;
}

.section-banner-rotate .content h1 {
    color: #FFF;
    position: absolute;
    float: left;
    z-index: 999;
    font-size: 3rem;
    -ms-transform: rotate(16deg); /* IE 9 */
    transform: rotate(16deg);
    margin-left: 14%;
    margin-top: 55vh;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 5s;
    text-shadow: 0px 0px 0px rgba(0,0,0,0.72);
}

.section-banner-rotate:hover .content h1 {
    text-shadow: 0px 0px 9px rgba(0,0,0,0.35);
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg);
    margin-top: 65vh;
}

.section-banner-rotate .content img.arrow-down {
    color: #FFF;
    display: inline-block;
    background-size: 112px 9px;
    background-position: right center;
    margin-left: 30px;
    position: relative;
    z-index: 99;
    height: 130px;
    transition: all 550ms cubic-bezier(0.17, 0.96, 0.27, 1);
    margin-top: 83vh;
}

.section-banner-rotate img.arrow-down:hover {
    height: 100px;
    margin-top: 85vh;
}

.bounce2 {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}


.section-banner {
    margin-top: 140px;
}

.section-banner .banner {
    height: 80vh;
    width: 95%;
    background-position: bottom;
    background-size: cover;
    position: absolute;
    z-index: -99;
    margin-top: 60px;
    left: 2rem;
    background-size: cover;
    transition: all cubic-bezier(0.165, 0.84, 0.44, 1) 5s ;
}

.section-banner:hover .banner {
    background-size: cover;
    background-image: url('../img/bg.gif') !important;
}

.section-banner .content h1 {
    font-size: 5.4rem;
    font-weight: 700 !important;
    color: #FF7800;
    opacity: 0.8;
    display: block;
    position: relative;
    padding-top: 80px;
    margin-bottom: 15vh !important;
    height: 76vh;
}

.lang {
    color: #101010;
    font-weight: 600 !important;
    margin-right: 20px;
    z-index: 9999;
    position: relative;
}

.lang a {
    text-decoration: none;
    color: #101010;
}

.lang a.active {
    color: #FF7800
}

.lang a:hover {
    color: #FF7800
}

.section-text .content {
    background-color: #FFF;
    padding: 120px 0px;
}

.title-blue {
    color: #FF7800;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3rem;
}

.title-orange {
    color: #FF7800;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
}

.link-right {
    color: #101010;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.link-right .arrow {
    position: relative;
    height: 9px;
    width: 112px;
    background: url('../img/right.svg');
    display: inline-block;
    background-size: 112px 9px;
    background-position: right center;
    margin-left: 30px;
    transition: all 550ms cubic-bezier(0.17, 0.96, 0.27, 1);
}

.link-right:hover {
    color: #FF7800;
}

.link-right:hover .arrow {
    width: 50px;
    margin-left: 15px;
}

p {
    font-size: 1rem;
}

.section-image .image {
    background-size: cover !important;
    background-position: center;
    height: 400px;
    transition: all 0.4s;
    background-size: 100% 100%;
}

.section-image .image h3 {
    color: #FFF;
    position: absolute;
    float: left;
    z-index: 999;
    -ms-transform: rotate(16deg); /* IE 9 */
    transform: rotate(16deg);
    margin-left: 3%;
    margin-top: 140px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    transition: all 0.4s;
}

.section-image .image .overlay {
    background-image: url('../img/overlay.svg');
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    transition: all 0.4s;
}

.section-image .image:hover h3 {
    margin-top: 140px;
}

.section-image .image:hover .overlay {
    background-position: top;
}

.section-image .image:hover {
    background-position: top;
    background-size: 120% 120%;
}

.section-footnote {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 !important;
}

.section-footnote .orange {
    background-image: url('../img/orange.svg');
    background-position: left center;
    z-index: -1;
}

.section-footnote .content {
    height: 400px;
    color: #FFF;
}

.section-footnote .image h3 {
    color: #FFF;
    position: absolute;
    float: left;
    z-index: 999;
    font-size: 3.8rem;
    -ms-transform: rotate(16deg); /* IE 9 */
    transform: rotate(16deg);
    margin-left: 3%;
    margin-top: 140px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    transition: all 0.4s;
}

.footer .tiny {
    font-size: 12px;
}

.offcanvas {
    height: 100vh;
    background-image: url('../img/orangebg.svg');
    background-position: top center;
    background-size: cover;
}

.header.no-bg {
    background-color: transparent;
}

.truck .carousel-indicators {
    margin-top: 40px;
    margin-bottom: 0;
}

.truck .carousel-indicators button {
    background-color: #FF7800;
    margin-top: 40px;
}

.truck .slider {
    height: 280px;
    width: 100%;
    text-align: center;
}

.truck .slider img {
    height: auto;
    width: 80%;
    margin: 0 auto;
    object-fit: cover;
}

.menu .image h3 {
    color: #FFF;
    position: absolute;
    float: left;
    z-index: 999;
    font-size: 1.8rem;
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg);
    margin-left: 0%;
    margin-top: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    transition: all 0.4s;
}

.menu .list-unstyled {
    color: #FFF;
    position: absolute;
    float: left;
    z-index: 999;
    font-size: 1rem;
    -ms-transform: rotate(0deg); /* IE 9 */
    transform: rotate(0deg);
    margin-top: 130px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    transition: all 0.4s;
}

.menu .list-unstyled li a {
    color: #FFF;
    font-size: 1.7rem;
    text-transform: uppercase;
    text-align: right;
    transition: all 0.4s;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 2rem;
}

.menu .list-unstyled li:hover a {
    color: #FF7800;
}

.menu .list-unstyled li a.active {
    color: #FF7800;
    font-weight: 600;
}

.footer .list-inline li {
    display: inline;
    color: #101010;
    transition: all 0.4s;
}

.footer .list-inline li a {
    text-decoration: none;
    background: none;
    border-radius: 4px;
    padding: 8px;
    color: #101010;
}

.footer .list-inline li a:hover {
    text-decoration: none;
    color: #FFF;
    background: #FF7800;
}

.border-bottom {
    border-bottom: 1px solid #101010;
    padding-bottom: 0px !important;
}

ul.menu-section li {
    display: inline;
    margin-right: 28px;
}

ul.menu-section li a {
    text-decoration: none;
    color: #101010;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

ul.menu-section li:hover a, ul.menu-section li a.active , ul.menu-section li a.nav-link.active {
    color: #FF7800;
}

.menubar ul.menu-section li a {
    font-size: 12px;
}

.section-client .content {
    padding: 80px 0px;
}

.header .menubar {    
    margin-left: 7.5rem;
    margin-top: 1rem;
}

h4.title-orange {
    color: #FF7800;
    font-weight: 700;
    text-transform: none;
}

.image-coverage {
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    border-right: 1px solid #DDD;
    margin-top: 20px;
    margin-bottom: 20px;
}

.coverage {
    margin-top: 4rem;
}

.coverage li {
    color: #101010;
    font-weight: 700;
    padding: 20px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #DDD;
}

.coverage li:last-child {
    border-bottom: 0px solid #DDD;
}

.coverage li a {
    color: #FF7800;
    font-weight: 700;
    text-decoration: none;
}

.coverage li .float-end {
    color: #FF7800;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
}

.services .col {
    aspect-ratio: 1 / 1;
    text-align: center;
    vertical-align: middle;
}

.services.no-aspect .col {
    aspect-ratio: 0;
    text-align: center;
    vertical-align: middle;
}

.services .col .card {
    border-color: #DDD;
    border-radius: 0px !important;
}

.services .col.blue .card {
    background-color: #FFF;
    border-color: #FFF;
}

.services .col .card .card-title {
    color: #FF7800;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
}

.services .col .card .card-caption {
    margin-top: 0px;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 0.8rem;
    text-align: left;
}

.services .col .card-body{
    border-color: #DDD;
}

.title-specifications {
    color: #FF7800;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.specifications ul {
    margin-top: 12px;
}

.specifications li {
    color: #FF7800;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.specifications li:nth-child(odd) {
    background-color: #ff770056;
}

.specifications li div {
    color: #FF7800;
    font-weight: 600;
    text-decoration: none;
}

.menubar.fixed-bottom {
    background-color: #FFF;
}

.menubar.fixed-bottom ul {
    display: block;
    padding: 0rem;
    padding-top: 1rem;
    overflow-x: scroll;
    border-top: 1px solid #ddd;
}

.menubar.fixed-bottom ul li {
    display: inline;
    font-size: 14px;
    margin-right: 8px;
}

.icons li a {
    font-size: 24px;
}

.icons li a i.bi.bi-facebook {
    color: #4267B2 !important;
}

.icons li a i.bi.bi-linkedin {
    color: #0e76a8 !important;
}

.icons li a i.bi.bi-instagram {
    color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.icons li a:hover i.bi {
    color: #FFF !important;
}

.float {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
    padding: 8px;
	background-color:#128C7E;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 3px 0px 36px 3px rgba(0,0,0,0.14);
    -webkit-box-shadow: 3px 0px 36px 3px rgba(0,0,0,0.14);
    -moz-box-shadow: 3px 0px 36px 3px rgba(0,0,0,0.14);
    z-index:100;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.float:hover {
	bottom: 50px;
    color: #FFF;
    background: #075E54;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted #FF7800;
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted #FF7800;
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF7800
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: #ff7700b9;
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5;
    animation: zoom 2s ease infinite;
}


@keyframes zoom {
    0%, 20%, 50%, 80%, 100% {transform: scale(0.4);}
    40% {transform: scale(0.7);}
    60% {transform: scale(0.9);}
}

.menufooter li {
    margin-left: -10px;
}

.menufooter li a {
    color: #2a2a2a !important;
    font-size: 0.8rem;
}

.menufooter li a.bold {
    font-weight: 500;
    color: #000 !important;
    font-size: 0.9rem;
}

.menufooter li a:hover {
    color: #FFF !important;
}

.form-control, .form-select {
    border: 2px solid #101010;
    border-radius: 4px;
    background: #fff;
    color: #101010;
    padding-top: 32px;
}

.form-file .form-control {
    padding-top: 6px !important;
}

.btn.btn-primary {
    background: #FF7800;
    color: #FFF !important;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    display: block;
    height: 50px;
    width: 100%;
}

@media (max-width: 576px) { 

    .section-banner-rotate {
        height: 60vh;
        background-size: cover;
        background-position: left;
    }

    .section-banner-rotate:hover {
        height: 60vh;
        background-size: cover !important;
        background-position: right;
    }

    .section-banner-rotate .banner {
        height: 60vh;
        width: 100%;
    }

    .section-banner-rotate .content h1 {
        color: #FFF;
        position: absolute;
        float: left;
        z-index: 999;
        font-size: 1.7rem;
        -ms-transform: rotate(16deg); /* IE 9 */
        transform: rotate(16deg);
        margin-left: -2vh;
        margin-top: 35vh;
        font-weight: 700;
        text-transform: uppercase;
        text-align: right;
    }

    .section-banner-rotate:hover .content h1 {
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg);
        margin-top: 40vh;
    }

    .section-footnote .image h3 {
        color: #FFF;
        position: absolute;
        float: left;
        z-index: 999;
        font-size: 2.4rem;
        -ms-transform: rotate(15deg); /* IE 9 */
        transform: rotate(15deg);
        margin-left: 3%;
        margin-top: 140px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: right;
        transition: all 0.4s;
    }

    .footer {
        padding-bottom: 4rem;
    }

    .section-banner .content .lang {
        padding-top: 20px;
    }

    .section-banner .content h1 {
        font-size: 2rem;
        height: 36vh;
        margin-bottom: -40px;
        padding-top: 40px;
        margin-left: -1rem;
    }

    .section-banner .banner {
        height: 36vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        position: absolute;
        z-index: -99;
        margin-top: 20px;
        left: 0;
    }

    .section-banner-rotate .content img.arrow-down {
        color: #FFF;
        display: inline-block;
        background-size: 112px 9px;
        background-position: right center;
        margin-left: -2vh;
        position: relative;
        z-index: 99;
        height: 130px;
        transition: all 550ms cubic-bezier(0.17, 0.96, 0.27, 1);
        margin-top: 20vh;
    }

    .section-text .content {
        background-color: #FFF;
        padding: 20px 0 80px 0px;
    }
    

    .section-image .image h3 {
        color: #FFF;        
        z-index: 999;
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg);
        margin-left: 6%;
        margin-top: 160px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
        transition: all 0.4s;
    }

    .image-coverage {
        height: 250px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        border-left: 0px solid #DDD;
        margin-top: 0px;
        margin-bottom: -60px;
    }
    
    .truck .slider img {
        height: 280px;
        width: 120%;
        margin: 0 auto;
        margin-left: -24px;
        object-fit: scale-down;
    }
}

.gallerys {
    border-bottom: 1px solid #f2f2f2;
}

.gallery .foto {
    aspect-ratio: 1 / 1;
    text-align: center;
    vertical-align: middle;
    background-position: center;
    background-size: cover;
}

.gallery .foto a.photo {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.gallery .col .card {
    background-color: #FFF;
    border-color: #DDD;
    border-radius: 0px !important;
}

.gallery .carousel {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
}

.gallery .carousel .carousel-inner, .gallery .carousel .carousel-item {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
}

.gallery .carousel .carousel-item div {
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery .carousel .carousel-caption {
    background-color: rgba(15, 15, 15, 0.203);  
    height: 100px; 
    width: 100%; 
    left: 0;
    right: 0;
}


.gallery .col .card:hover .card-body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 200%;
}

.gallery .col .card .card-title {
    color: #FFF;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.gallery .col .card .card-caption {
    margin-top: 0px;
    color: #DDD;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}

.gallery .col .card-body{
    border-color: #DDD;
}

.carousel-border {
    border: 1px solid #DDD;
    padding: 1rem;
}

.carousel-border img {
    height: 100%;
}

.only-2 p {
    display: none;
}

.only-2 p:first-child, .only-2 p:nth-child(2) {
    display: block;
}

.only-1 p {
    display: none;
}

.only-1 p:nth-child(2) {
    display: block;
}

.card-title.accordion-header {
    width: 100%;
    color: #FF7800;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    padding: 0 !important;
}

.card-title.accordion-header button {
    width: 100%;
    color: #FF7800;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
}

.accordion-flush .accordion-item {
    border-bottom: 0px;
    margin-bottom: 0.4rem;
}

.job .card .card-body {
    padding: 0;
}

.pswp__img {
    object-fit: contain !important
}