@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.top-header {
    position: relative;
    padding: 10px 0;
}

.topnav {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

.topnav li {
    display: inline-block;
    color: #222;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 5px 8px;
    border-radius: 5px;
}

.topnav a {
    color: #222;
    padding: 5px;
}

.topnav a:hover {
    text-decoration: none;
    color: #00bbb5;
}

.topnav i {
    font-size: 13px;
    padding-right: 5px;
    color: #e52e2d;
}

.menu-btn {
    background: linear-gradient(90deg, #ff9000, #ff3200);
}

.menu-btn a,
.menu-btn a i {
    color: #fff;
}

.menu-btn a:hover {
    color: #fff;
}

/* Bottom-Header */
.bottom-header {
    padding: 20px 0;
    z-index: 1;
}

.bottom-header .navbar-logo {
    position: absolute;
    top: -57px;
}

.bottom-header .bottom-header-list {
    padding: 0;
    margin: 0;
    justify-content: end;
}

.bottom-header-list li {
    list-style-type: none;
}

.bottom-header-list li a {
    text-decoration: none;
    padding: 10px !important;
    position: relative;
    color: #5b5b5b;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.bottom-header-list li.active a,
.bottom-header-list li a:hover,
.bottom-header-list i {
    color: #d1293c;
}

/* Slider Section */
.slider-section {
    padding: 60px 0 0;
    background: url(../images/slider.png) no-repeat;
    background-size: 100% 100%;
}

.slider-title {
    font-weight: normal;
}

/* Booking Section */

.booking-panel {
    position: relative;
}

.book-height {
    padding: 14px 20px 0px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f70;
}

.slider-truck {
    text-align: center;
    margin-top: 20px;
}

/* booking-panel */
.book-form {
    padding: 10px 0;
    border-radius: 20px;
    position: relative;
}

.book-form .book-group {
    margin-bottom: .8rem;
}

.book-form .book-control {
    background-color: #fff !important;
    width: 100%;
    min-height: 40px !important;
    font-size: 15px;
    border: 2px solid #d3d3d5 !important;
    border-radius: 8px;
}

.book-form .book-button {
    background: #ff7f00;
    border-color: #ff7f00;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.8px;
    min-height: 40px !important;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: bold;
}

.book-form .book-control::-webkit-input-placeholder {
    color: #acacac;
}

.book-form .book-control::-moz-placeholder {
    color: #acacac;
}

.book-form .book-control:-ms-input-placeholder {
    color: #acacac;
}

.book-form .book-control::-ms-input-placeholder {
    color: #acacac;
}

.book-form .book-control::placeholder {
    color: #acacac;
}

/* Title-section */
.section-space {
    padding: 50px 0;
}

.section-title {
    font-weight: 300;
    color: #222;
    line-height: 1.7;
}

.section-title span {
    color: #ff9e22;
    font-weight: bold;
}

.section-subtitle {
    color: #7c7c7c;
}

.section-text {
    color: #525252;
    text-align: justify;
}

/* Routes */
.route-section {
    background: url(../images/route-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 100px 0 50px;
}

.route-title {
    font-size: 28px;
}

.route-slider img {
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.route-inner {
    position: relative;
    margin: 0 10px;
    border-radius: 10px;
}

.route-inner h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #222;
    font-size: 16px;
    background-color: #c3c3c333;
    padding: 10px 0;
    width: 100%;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    transition: .5s linear;
}

.route-section .slick-current h4 {
    background-color: #ff9900bd;
    color: #fff;
}

/* Divider-Section */
.divider-section {
    position: relative;
    padding: 50px 0;
}

.divider-section::before {
    content: '';
    background: url(../images/about-truck.png) no-repeat left;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
}

.divider-section .section-text {
    color: #222;
    font-size: 15px;
}

/* Features */
.feature-section {
    padding: 50px 0;
}

.feature-card {
    background-color: #f7fbf9;
    padding: 10px 30px;
    text-align: center;
    margin: 15px 30px;
    border-radius: 8px;
    box-shadow: 1px 3px 6px #c1c1c185;
}

.feature-icon img {
    width: 61%;
}

.feature-title {
    padding: 15px 0;
    font-size: 18px;
    color: #747474;
}

.feature-card p {
    color: #747474;
    line-height: 1.6;
}

.feature-card:hover {
    box-shadow: 0px 0px 25px #b9b9b985;
    transition: all .5s ease-in;
}

.feature-card:hover .feature-title {
    color: #ff8600;
}

.feature-card:hover p {
    color: #222;
}

/* Facilities */
.facility-section {
    padding: 50px 0;
}

.facility-section .section-title1 {
    font-size: 18px;
    color: #6e6e6e;
}

.facility-section .section-text {
    margin: 0;
}

.facility-section .clr1 {
    color: #ffb800;
}

.facility-division-1,
.facility-division-2,
.facility-division-3,
.facility-division-4 {
    position: relative;
    padding: 10px 0;
}

.facility-division-1::before,
.facility-division-3::before {
    content: "";
    background: #f0f0ef;
    width: 32%;
    height: 80%;
    position: absolute;
    top: 16px;
    left: 0;
}

.facility-division-2::before,
.facility-division-4::before {
    content: "";
    background: #f0f0ef;
    width: 25%;
    height: 58%;
    position: absolute;
    top: 60px;
    right: 0;
}

.facility-division-3::before {
    background: #f0f0ef;
    width: 42%;
    height: 85%;
}

.facility-division-4::before {
    width: 35%;
    height: 74%;
    top: 40px;
}

/* Services */
.service-section {
    padding: 50px 0;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 5px 10px 5px 90px;
    margin: 30px 0;
    position: relative;
    transition: 1s ease;
}

.service-icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    display: inline-block;
    position: absolute;
    top: -10px;
    left: 5px;
    transition: box-shadow .5s linear;
}

.service-icon img {
    width: 100%;
}

.service-card:hover {
    background-color: #f9fcfb;
}

.service-card:hover .service-icon {
    background-color: #f9fcfb;
    box-shadow: 0px 0px 12px #adadad;
}

/* Footer Section */
.footer-section {
    background-color: #ffffff;
    border-top: 13px solid #e94d11;
    margin-top: 50px;
}

.footer-top {
    padding: 50px 0px;
    background: url(../images/footer-bg.png) no-repeat;
    background-size: 100% 100%;
}

.footer-section h2 {
    color: #ff8c00;
    margin: 20px 0;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section p a {
    color: #6c6c6c;
    line-height: 2;
    letter-spacing: 0.5px;
    font-size: 15px;
    position: relative;
    margin: 0;
    font-weight: 500;
}

.footer-top p {
    padding-left: 10px;
}

.footer-section i {
    position: absolute;
    left: -10px;
    top: 8px;
    color: #ff8c00;
}

.footer-bottom {
    background-color: #fff;
}

.footer-bottom p {
    margin: 10px 0;
    color: #222;
}

.footer-bottom p>a {
    color: #222;
}

@media(max-width:992px) {
    .bottom-header .navbar-logo {
        position: relative;
        top: 0;
    }

    .bottom-header .bottom-header-list {
        display: block;
    }

    .slider-section {
        padding: 50px 0 100px;
    }

    .slider-title {
        font-size: 28px;
    }

    .route-slider {
        padding-top: 30px;
    }

    .feature-card {
        margin: 15px 0;
    }

    .footer-logo img {
        width: 100%;
    }
}

@media(max-width:564px) {
    .menu-panel {
        padding: 10px;
    }

    .topnav {
        display: block;
    }

    .slider-section {
        padding: 50px 0 100px;
    }

    .section-title {
        font-size: 24px;
    }

    .route-title {
        font-size: 18px;
        line-height: 24px;
    }

    .facility-division-1::before,
    .facility-division-2::before,
    .facility-division-3::before,
    .facility-division-4::before {
        display: none;
    }

    .service-card {
        margin: 10px 0;
    }

    .service-icon {
        top: 10px;
    }

    .contact-section::after {
        height: 12%;
    }

    .footer-top {
        background-attachment: fixed;
        background-size: cover;
        padding: 50px 5px;
    }

    .footer-bottom p {
        margin: 0;
    }
}

/* End Footer */

/* track */
.track-main {
    /*background: transparent linear-gradient(244deg, #FFFFFF 0%, #DCDCFF 100%) 0% 0% no-repeat padding-box;*/
    width: 100%;
    height: auto;
}

.track-main h1 {
    top: 102px;
    left: 98px;
    width: 892px;
    height: 82px;
    text-align: left;
    font: 100px;
    font-family: roboto;
    letter-spacing: 0px;
    color: #707070;
    opacity: 1;
}

.track-main #track-vector {
    height: 500px;
    margin-top: 8em;
}

.track-main .form {
    margin-left: 5em;
    margin-top: 0em;
}

#track-submit {
    background: transparent linear-gradient(113deg, #be73de 0%, #514eb7 100%) 0% 0% no-repeat padding-box;
    border-radius: 39px;
    opacity: 1;
    margin-left: 13em;
    width: 119px;
    height: 43px;
    color: white;
    top: -1em;
    position: relative;
}

.track-div {
    left: 14em;
    top: 7em;
}

.track-div-history {
    left: 6em;
    margin-top: 10em;
    position: relative;
}

@media only screen and (min-width: 1170px) {
    .center-orientation .vertical-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

    .center-orientation .vertical-timeline-content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: white;
    }

    .center-orientation .vertical-timeline-content .btn {
        float: left;
    }

    .center-orientation .vertical-timeline-content .vertical-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 2px;
        font-size: 14px;
    }

    .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {
        float: right;
    }

    .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: white;
    }

    .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {
        float: right;
    }

    .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {
        left: auto;
        right: 122%;
        text-align: right;
    }

    .center-orientation .cssanimations .vertical-timeline-content.is-hidden {
        visibility: hidden;
    }
}