body {
    color: #282828;
    background-color: #fff;
    font-family: Delivery, Verdana, sans-serif;
    font-weight: 400;
}

a {
    color: #0C0C0C;
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        text-decoration: none;
        color: #D90810;
    }

.text-underline {
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ol, ul {
    list-style-image: none;
    list-style-position: outside;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-container {
    max-width: 100%;
    padding: 0 15%;
}

.container {
    max-width: 1420px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0C0C0C;
    font-family: Delivery, Verdana, sans-serif;
    font-weight: 400;
}

p {
    color: #282828;
    font-size: 16px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 28px;
}

.btn {
    /*font-size: 20px;*/
    font-family: Delivery, Verdana, sans-serif;
    color: #fff;
    font-weight: 300;
    border-radius: 35px;
    padding: 10px 25px;
}

    .btn.btn-sm {
        padding: 5px 15px;
        font-size: 10px;
        font-weight: 300;
    }

.btn-primary {
    background-color: #D90810;
    border-color: #D90810;
}

    .btn-primary:hover, :not(.btn-check) + .btn:active {
        background-color: #c2080e;
        border-color: #c2080e;
    }

.btn-secondary {
    background-color: #0099E3;
    border-color: #0099E3;
    border-radius: 35px;
    font-weight: 500;
}

    .btn-secondary:hover, :not(.btn-check) + .btn:active, .btn-secondary.focus, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active {
        background-color: #0387c9;
        border-color: #0387c9;
        outline: none;
    }

.form-control {
    border-radius: 15px;
    padding: 20px 25px;
    border: solid 1px #F5F7FE;
    background-color: #F5F7FE;
    color: #0C0C0C;
    height: 40px;
    font-size: 14px;
}

    .form-control:focus {
        border: solid 1px #F5F7FE;
        box-shadow: none;
        background-color: #F5F7FE;
    }

.input-group-text {
    background-color: #F5F7FE;
    border: none;
    border-radius: 15px 0 0 15px;
    padding: 5px 15px;
}

    .input-group-text img {
        height: 20px;
    }

    .input-group .form-control {
        padding-left: 0;
    }

.form-select {
    border: solid 1px #F5F7FE;
    padding: 10px 50px 10px 20px;
    border-radius: 120px;
    background-image: url(../images/dropdown-arrow.svg);
    background-size: 35px;
    margin-right: 20px;
}

label {
    font-size: 14px;
    padding-left: 5px;
    color: #505050;
}

.error_msg {
    font-size: 14px;
}

header {
    padding: 0px 15%;
}

.navbar-brand img {
    margin-right: 20px;
}

.navbar-nav .nav-item.active .nav-link {
    font-weight: 400;
    color: white;
}

.navbar-nav .nav-item.active {
    background-color: #0099E3;
    border-color: #0099E3;
    border-radius: 35px;
}

.navbar-brand {
    width: 15%;
}

.nav-link {
    display: block;
    padding: 15px !important;
    font-family: Delivery, Verdana, sans-serif;
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 10px;
}

.navbar-toggler-icon {
    height: 26px;
    width: auto;
}

.navbar-toggler {
    background-color: #D90810;
    padding: 8px 15px;
}

.navbar-collapse.collapse.show {
    position: absolute;
    top: 100%;
    z-index: 99;
    background-color: #d90810;
    width: 100%;
    left: 0;
    right: 0;
}

    .navbar-collapse.collapse.show .navbar-nav .nav-item.active .nav-link, .navbar-collapse.collapse.show .navbar-nav .nav-item .nav-link {
        color: #fff;
    }

/*.dropdown-menu {
    background-color: #cc0202;
}

    .dropdown-menu a.dropdown-item {
        color: #fff;
        padding: 10px 15px;
    }

        .dropdown-menu a.dropdown-item:hover {
            background: #ab0707;
        }*/

.hero-banner {
    border-radius: 30px;
    overflow: hidden;
    height: 60vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    padding: 140px;
    display: flex;
    align-items: center;
}

    .hero-banner::after {
        background-color: rgba(0, 0, 0, 0.3);
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        content: "";
        z-index: 0;
    }

.home-banner {
    background-image: url(../images/hero-banner1.png);
}

.hero-banner-content {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    min-width: 100%;
    justify-content: space-evenly;
}

    .hero-banner-content h1 {
        color: #fff;
        font-size: 40px;
    }

    .hero-banner-content p {
        color: #fff;
    }

.hero-left {
    max-width: 65%;
}

.hero-form {
    background: #fff;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
    padding: 20px 20px;
    border-radius: 25px;
    min-width: 400px;
}

.hero-form-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
}

    .hero-form-title img {
        margin-right: 10px;
    }

.main-container {
    padding: 0 20px;
}

.section-space-top {
    margin-top: 30px;
}

.section-space-bottom {
    margin-bottom: 130px;
}

.section-space-top-small {
    margin-top: 20px;
}

.section-space-bottom-small {
    margin-bottom: 70px;
}

.small-title {
    font-size: 22px;
    color: #A0A0A0;
    letter-spacing: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-heading h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.rounded-img {
    overflow: hidden;
    border-radius: 24px;
    text-align: center;
}

    .rounded-img img {
        object-fit: cover;
        width: 100%;
        max-height: 640px;
    }

.rounded-video {
    overflow: hidden;
    text-align: center;
    border-radius: 35px;
}

    .rounded-video video {
        height: 500px;
        width: 500px;
    }

.graybg {
    background-color: #FAFAFA;
}

.home-video-bg {
    width: 75%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 25px;
}

.home-video-slider {
    display: flex;
    align-items: center;
    padding: 60px 0 60px 60px;
}

.home-video-content {
    max-width: 70%;
    padding: 60px;
}

.video-slider {
    margin-left: 50px;
}

    .video-slider .video-slider-content {
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .video-slider .video-slider-content::after {
            background-color: rgba(0, 0, 0, 0.3);
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 100%;
            content: "";
            z-index: 0;
            border-radius: 36px;
        }

    .video-slider img {
        border-radius: 35px;
        max-height: 500px;
    }

    .video-slider .play-button-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        z-index: 2;
    }

        .video-slider .play-button-wrapper img {
            max-width: 150px;
            border-radius: 0;
        }

#homeVideoCarousel .carousel-indicators {
    justify-content: flex-start;
    margin-left: 5%;
    display: inline-flex;
    width: auto;
    height: auto;
    right: auto;
    top: 20px;
    z-index: 9;
}

    #homeVideoCarousel .carousel-indicators li {
        width: 15px;
        height: 15px;
        border-radius: 10px;
        border: none;
    }

    #homeVideoCarousel .carousel-indicators .active {
        width: 40px;
        height: 15px;
        border-radius: 10px;
        border: none;
    }

.global-reserch {
    background-image: url(../images/cargo-ship-small.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

.global-reserch-ship {
    margin-bottom: -70px;
}

.global-reserch-content {
    max-width: 650px;
    margin-left: 100px;
    padding: 50px;
}

.footer-top {
    display: flex;
    padding-bottom: 20px;
    border-bottom: solid 1px #C8C8C8;
    font-size: 16px;
}

    .footer-top img {
        max-width: 250px;
        margin-right: 60px;
    }

.footer-middle {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #C8C8C8;
    font-size: 16px;
}

.footer-contact {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .footer-contact img {
        margin-right: 20px;
        max-width: 80px;
    }

.footer-social a {
    display: inline-flex;
    padding: 0 20px;
    border-right: solid 1px #C8C8C8;
    margin: 30px 0;
}

    .footer-social a:first-child {
        padding-left: 0;
    }

.fooer-copywrite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    color: #646464;
    padding-top: 20px;
}

/* About CSS */
.about-banner {
    background-image: url(../images/hero-banner2.png);
}

.see-our-journey::after {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 0;
}

.see-our-journey {
    position: relative;
    overflow: hidden;
}

    .see-our-journey .play-btn {
        position: absolute;
        right: 50px;
        bottom: 70px;
        z-index: 9;
    }

        .see-our-journey .play-btn img {
            width: 80px;
            max-height: 80px;
        }

    .see-our-journey h3 {
        font-size: 40px;
        color: #fff;
        position: absolute;
        z-index: 9;
        max-width: 400px;
        bottom: 50px;
        left: 90px;
        font-weight: 400;
    }

/* Service CSS */

.service-banner {
    background-image: url(../images/hero-banner3.jpg);
    min-height: 950px;
}

.service-zigzag {
    display: flex;
    align-items: center;
}

.service-images {
    width: 35%;
}

.service-content {
    flex: 60%;
    padding: 25px;
}

.service-zigzag div:first-child.service-images, .service-zigzag div:first-child.service-content {
    padding-left: 0;
}

.trackorder-banner {
    background-image: url(../images/hero-banner4.png);
}

.service-shipping {
    display: flex;
    align-items: center;
}

.service-shipping-img img {
    border-radius: 24px;
}

.service-shipping-content {
    max-width: 720px;
    margin-right: 60px;
    padding: 15px;
}

.decimal-ol li {
    font-size: 16px;
    margin-bottom: 30px;
}

/* Contact CSS */

.contact-banner {
    background-image: url(../images/hero-banner5.png);
}

.contactbox {
    background-color: #FCFCFC;
    border: solid 1px #DCDCDC;
    border-radius: 24px;
    padding: 40px;
    font-size: 24px;
    font-weight: 500;
    height: 100%;
    margin-top: 45px;
}

    .contactbox p {
        font-size: 22px;
        margin: 0;
    }

    .contactbox img {
        max-height: 50px;
        max-width: 50px;
        min-width: 100%;
    }

.contact-address {
    font-size: 18px;
}

.contactbox ul li {
    padding: 0 0 0 20px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    word-break: break-all;
}

        .contactbox ul li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: #000;
            border-radius: 50%;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
        }

.contact-form .form-control {
    border: solid 1px #DCDCDC;
}

.contact-form-container {
    display: flex;
}

.contact-form {
    width: 70%;
    margin-right: 40px
}

.contact-location {
    width: 25%;
}

.location-box {
    -webkit-box-shadow: 2px 18px 15px -12px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 18px 15px -12px rgba(0,0,0,0.2);
    box-shadow: 2px 18px 15px -12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 40px 25px;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

    .location-box:last-child {
        margin-top: 20px;
    }

    .location-box img {
        margin-bottom: 20px;
    }

/* Track Order */

.progress-tracker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 25px auto;
    padding: 0;
    list-style: none;
}

.progress-step {
    display: block;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    min-width: 28px;
}

    .progress-step:last-child {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

    .progress-step:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        z-index: -10;
        top: 12px;
        bottom: 12px;
        right: -14px;
        width: 100%;
        height: 4px;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .progress-step.is-active .progress-title {
        font-weight: 400;
        margin-bottom: 0;
    }

    .progress-step > a {
        display: block;
    }

.progress-marker {
    position: relative;
    z-index: 20;
    width: 60px;
    height: 60px;
    padding-bottom: 2px;
    color: #fff;
    font-weight: 400;
    border-radius: 50%;
    background-image: url(../images/trackrder-steps.svg);
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: 2px -65px;
    z-index: 9;
}

.progress-step.is-complete .progress-marker {
    background-position: 2px 0px;
}

.progress-icon2 {
    background-position: -65px -65px;
}

.progress-step.is-complete .progress-icon2 {
    background-position: -65px 0px;
}

.progress-icon3 {
    background-position: -132px -65px;
}

.progress-step.is-complete .progress-icon3 {
    background-position: -132px 0px;
}

.progress-icon4 {
    background-position: -196px -65px;
}

.progress-step.is-complete .progress-icon4 {
    background-position: -196px 0px;
}

.progress-icon5 {
    background-position: -265px -65px;
}

.progress-step.is-complete .progress-icon5 {
    background-position: -265px 0px;
}

.progress-icon6 {
    background-position: -330px -65px;
}

.progress-step.is-complete .progress-icon6 {
    background-position: -330px 0px;
}

.progress-icon7 {
    background-position: -396px -68px;
}

.progress-step.is-complete .progress-icon7 {
    background-position: -396px 0px;
}

.progress-icon8 {
    background-position: -462px -68px;
}

.progress-step.is-complete .progress-icon8 {
    background-position: -462px 0px;
}

.progress-icon9 {
    background-position: -528px -66px;
}

.progress-step.is-complete .progress-icon9 {
    background-position: -528px 0px;
}


.progress-text {
    display: block;
    padding: 14px 9.3333333333px;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .progress-text p {
        margin-bottom: 0;
        color: #505050;
    }

.progress-title {
    margin-top: 0;
    font-size: 20px;
    color: #505050;
}

.progress-step.is-complete .progress-title {
    color: #000;
}

.progress-step .progress-marker {
    color: #fff;
    background-color: #ECECEC;
}

.progress-step::after {
    background-color: #ECECEC;
}

.progress-step .progress-text, .progress-step .progress-step > a .progress-text {
    color: #333333;
}

.progress-step.is-active .progress-marker {
    background-color: #D90810;
}

.progress-step.is-complete .progress-marker {
    background-color: #D90810;
}

.progress-step.is-complete::after {
    background-color: #D90810;
    z-index: 8;
}



.progress-tracker--center .progress-step {
    text-align: center;
}

    .progress-tracker--center .progress-step:last-child {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .progress-tracker--center .progress-step::after {
        right: -50%;
    }

.progress-tracker--center .progress-marker {
    margin-left: auto;
    margin-right: auto;
}

.progress-tracker--right .progress-step {
    text-align: right;
}

    .progress-tracker--right .progress-step:last-child {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .progress-tracker--right .progress-step::after {
        right: calc(-100% + 14px);
    }

.progress-tracker--right .progress-marker {
    margin-left: auto;
}

.progress-tracker--border {
    padding: 5px;
    border: 2px solid #868686;
    border-radius: 38px;
}

.progress-tracker--spaced .progress-step::after {
    width: calc(100% - 48px);
    margin-right: 24px;
}

.progress-tracker--word {
    padding-right: 38.6666666667px;
    overflow: hidden;
}

    .progress-tracker--word .progress-text {
        display: inline-block;
        white-space: nowrap;
    }

    .progress-tracker--word .progress-title {
        margin: 0;
    }

.progress-tracker--word-center {
    padding-right: 38.6666666667px;
    padding-left: 38.6666666667px;
}

    .progress-tracker--word-center .progress-text {
        padding-right: 0;
        padding-left: 0;
        -webkit-transform: translateX(calc(-50% + 14px));
        transform: translateX(calc(-50% + 14px));
    }

.progress-tracker--word-right {
    padding-right: 0;
    padding-left: 38.6666666667px;
}

    .progress-tracker--word-right .progress-text {
        padding-left: 0;
        -webkit-transform: translateX(calc(-100% + 28px));
        transform: translateX(calc(-100% + 28px));
    }

.progress-tracker--text .progress-step:last-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.progress-tracker--text-top .progress-step::after {
    top: auto;
}

.progress-tracker--text-top .progress-text {
    height: 100%;
}

.progress-tracker--text-top .progress-marker {
    bottom: 28px;
}

.progress-tracker--text-inline .progress-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.progress-tracker--text-inline .progress-text {
    position: relative;
    z-index: 30;
    max-width: 70%;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff;
}

.progress-tracker--text-inline .progress-title {
    margin: 0;
}

.progress-tracker--square .progress-step {
    padding-top: 0;
}

.progress-tracker--square .progress-marker {
    -webkit-transform: scaleX(0.33) translateY(-12px);
    transform: scaleX(0.33) translateY(-12px);
    border-radius: 0;
}

@media (max-width: 399px) {
    .progress-tracker-mobile {
        overflow-x: auto;
    }

        .progress-tracker-mobile .progress-tracker {
            min-width: 200%;
        }
}

.progress-tracker--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .progress-tracker--vertical .progress-step {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

        .progress-tracker--vertical .progress-step::after {
            right: auto;
            top: 68px;
            left: 28px;
            width: 3px;
            height: calc(100% - 75px);
            z-index: 5;
            margin: 0;
            border-radius: 10px;
        }

    .progress-tracker--vertical .progress-marker {
        position: absolute;
        left: 0;
    }

    .progress-tracker--vertical .progress-text {
        padding-top: 0;
        padding-left: 85px;
    }

    .progress-tracker--vertical .progress-step:not(:last-child) .progress-text {
        padding-bottom: 50px;
    }

.hide {
    display: none;
}

.show {
    display: block;
}

.modal-content255 {
    background: #324153;
    padding: 14px;
    border-radius: 8px;
    border: 2px solid #00ffff;
}

.fade.in {
    opacity: 1;
}

.contact-iconbox {
    background-color: #fff;
    padding: 5px;
    border-radius: 100px;
    margin: -90px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
}

.main-content {
    padding: 0 15%;
}

.main-contactbox {
    margin-bottom: 90px !important;
}
