/*================================== INFO-X Ai ================================*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

body {

    font-family: "Space Grotesk", Sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h1,
h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-family: "Space Grotesk", Sans-serif;
    margin: 0;
}

p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: #111111;
    text-decoration: none;
}

.color-text-black {
    color: #333 !important;
}

.color-text-red {
    color: #DA0D20;
}

.border-text {
    border: 1px solid #fff !important;
    color: #fff !important;
}
/*.border-text
{
    color: #fff !important;
    border: 0 !important;
    border-radius: 0px !important;
    border-bottom: 1.5px solid #fff !important;
}*/
.arrow-icon {
    font-size: 21px;
    line-height: 8px;
    vertical-align: middle;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

    .active {
        color: #000000 !important;
    }

/***Text Animation CSS**/
.animate-charcter {
    background-image: linear-gradient( -225deg, #DA0D20 0%, #000000 29%, #303030 67%, #161616 100% ); /*    background-image: linear-gradient( -225deg, #e7f1f3 0%, #26b7e3 29%, #41afe3 67%, #32AEEA 100% );*/
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 3s linear infinite;
}

.animate-charcter-footer {
    background-image: linear-gradient( -225deg, #DA0D20 0%, #d5d5d5 29%, #e3e3e3 67%, #b9b9b9 100% ); /*    background-image: linear-gradient( -225deg, #e7f1f3 0%, #26b7e3 29%, #41afe3 67%, #32AEEA 100% );*/
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 3s linear infinite;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-square-blue { /*background-color: #2261eb;*/
    background: var(--primary);
    color: #fff;
    padding: 7px 18px;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    font-weight: 300;
}

    .btn-square-blue:hover { /*background-color: #0a4ad5;*/
        color: #fff;
        background: var(--red);
    }

.pulse-effects {
    width: 104px;
    height: 30px;
    background-color: #2E61E8;
    font-size: 20px;
    position: relative;
    top: 34px; /* left: 39px; */
    border-radius: 1px;
    animation: animate-btn 3s linear infinite;
}

@keyframes animate-btn {
    0% {
        box-shadow: 0 0 0 0 rgb(46 97 232), 0 0 0 0 rgb(46 97 232);
    }

    40% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 0 rgb(46 97 232);
    }

    80% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0);
    }
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
/*.navbar .navbar-brand {
    height: 75px;
}*/
.navbar .navbar-brand {
    height: 17px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 24px; /*color: var(--dark);*/
    font-weight: 400;
    outline: none;
    color: #fff;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #000000;
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* .navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--red) !important;
} */

.shadow-sm { /* box-shadow: 0 0.125rem 0.25rem rgb(18 18 18 / 10%) !important; */ /*    border-bottom: 1px solid #efefef;*/
    box-shadow: 0 15px 35px rgba(20,28,52,.14);
}

.bg-light-blue {
    background-color: #f8f9fd;
}

.bg-white-light {
    background-color: #ffffff; /*    border-bottom: 1px solid #ebebeb;*/
}
/*** Header ***/
.hero-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary);
}

.hero-header-new {
    background-image: url(../img/hader-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 258px;
}

.head-title {
    font-family: 'IBM Plex Sans', sans-serif; /* letter-spacing: 3.5px; */ /*font-size: 69px;*/
    font-size: 65px;
    margin-top: -95px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}

.hightlight-text {
    color: var(--red);
}

.text-subtitle {
    color: #333;
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
}

.logo-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
}

    .logo-text span {
        font-size: 15px;
        color: #DA0D20;
        font-weight: 500;
        text-transform: lowercase;
    }

.logo-slogan {
    margin: 0;
    text-transform: uppercase;
    font-size: 11px;
    margin-left: 3px;
    font-weight: 600;
    letter-spacing: 3.8px; /* letter-spacing: 4.56px;*/
    margin-top: 5px;
    line-height: 15px;
}

.logo-slogan2 {
    margin: 0;
    font-size: 11px;
    margin-left: 3px;
    font-weight: 600;
    letter-spacing: 0.2px; /* letter-spacing: 4.56px;*/
    margin-top: 5px;
    line-height: 15px;
}

.ratesearch-box {
    background-color: #f8f9fd;
    padding-top: 10px;
}

.video-intro {
    position: relative;
}

.introvid {
    position: absolute;
    top: 16%;
    right: 10%;
    width: 78%;
    border: 1px solid #eceaea;
    outline: none;
}
/**Animation Text Wrap**/
.animation-wrap {
    height: 50px;
    overflow: hidden; /*  margin-left: 1rem;*/
    height: 69px;
    display: inline-block;
}
    /*.animation-wrap > div > div {
  padding: 0.25rem 0.75rem;
  height:2.81rem;
  margin-bottom: 2.81rem;
  display:inline-block;
}*/
    .animation-wrap > div > div {
        padding: 0.18rem 0.75rem;
        height: 3.1rem;
        margin-bottom: 2.81rem;
        margin-top: 2rem;
        display: inline-block;
    }

    .animation-wrap div:last-child {
        height: 2.7rem;
    }

    .animation-wrap div:first-child {
        animation: text-animation 8s infinite;
    }

.first div { /* background-color:#fff;*/
}

.second div { /* background-color:#fff;*/
}

.third div { /*background-color:#fff;*/
}

@keyframes text-animation {
    0% {
        margin-top: 0;
    }

    10% {
        margin-top: 0;
    }

    20% {
        margin-top: -5.62rem;
    }

    30% {
        margin-top: -5.62rem;
    }

    40% {
        margin-top: -11.24rem;
    }

    60% {
        margin-top: -11.24rem;
    }

    70% {
        margin-top: -5.62rem;
    }

    80% {
        margin-top: -5.62rem;
    }

    90% {
        margin-top: 0;
    }

    100% {
        margin-top: 0;
    }
}
/**END**/
/*** Hot Searches Styles ***/
.hot-searches-sec {
    padding: 100px 0;
    background-color: #ffffff;
}

.map-outer-wrap {
    position: relative;
}

.search-wrapper {
    background-image: url(../img/world-map.png);
    height: 650px;
    background-repeat: no-repeat;
    background-position: center;
}

.sub-head-title {
    text-align: center; /* font-family: 'IBM Plex Sans', sans-serif; */
    font-family: 'Work Sans', sans-serif; /* letter-spacing: 3.2px; */ /*  font-size: 46px;*/
    font-size: 49px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.sub-head-desc { /*font-size: 16px;*/
    font-size: 18px;
    text-align: center;
    font-weight: 400; /* color: #8a8a8a; */
    color: #999999;
    color: #333333;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.pos-abs {
    position: absolute;
    top: 44%;
    left: 39%;
}

.searches-route .box-1 {
    position: absolute;
    left: 18%;
}

.box-1 .route-name {
    position: absolute;
    top: 106px;
    font-size: 17px;
    left: 89px;
    font-family: "Open Sans",sans-serif;
}

.searches-route .box-2 {
    position: absolute;
    right: 13%;
    top: 0%;
}

.box-2 .route-name {
    position: absolute;
    top: 106px;
    font-size: 17px;
    left: 89px;
    font-weight: bold;
    font-family: "Open Sans",sans-serif;
}
/**Styling Our Carrier **/
.our-carrier-sec {
    padding: 60px 0;
    background-color: #f6f9fd;
}

.carrier-lclfcl h4 {
    font-size: 50px;
    color: #DA0D20;
}

.carrier-lclfcl h6 {
    font-size: 25px;
    font-family: "Open Sans",sans-serif;
    line-height: 38px;
}

.our-carrier-sec .carrier-logopart {
    padding: 45px 0;
}

.our-carrier-sec .carrier-logo ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .our-carrier-sec .carrier-logo ul li {
        display: inline-block;
        padding: 10px;
    }
/*.our-carrier-sec .carrier-logo ul li img
{
   width: 120px;
}*/
.carriers-logos {
    display: grid;
    width: 100%;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.carrier-logo-card {
    display: flex;
    height: 63px;
    padding: 12px 12px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.carrier-logo {
    max-height: 23px;
    flex: 0 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
}
/*.carriers-wp {
    display: -ms-grid;
    display: grid;
    width: 80%;
    grid-auto-columns: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}*/
/** Trust Pilot Section **/
.trust-pilot-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.trustpilot-overall {
    margin: 0 auto;
    text-align: center;
}

    .trustpilot-overall h4 {
        font-size: 30px;
        font-family: "Open Sans",sans-serif;
    }

    .trustpilot-overall h5 {
        font-size: 15px;
        margin: 0; /* padding: 10px 0; */
        color: #959595;
        font-family: 'Work Sans', sans-serif;
        padding: 5px 0 11px 0;
    }

.ratings-box {
    padding: 0 30px;
}

.ratings-box-new {
    padding: 20px;
    background-color: #fff; /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    min-height: 330px;
    margin: 5px; /* border: 1px solid #eee; */ /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ratings-box h3 {
    font-size: 15px;
    font-family: "Open Sans",sans-serif;
    margin: 8px 0;
    font-weight: 600;
    color: #191919;
    line-height: 23px;
}

.ratings-box h5 {
    font-size: 13px;
    font-family: "Open Sans",sans-serif;
    margin: 8px 0;
    font-weight: 400;
    color: #424242;
    line-height: 20px;
}

.ratings-box-new h5 {
    font-size: 14px;
    font-family: "Open Sans",sans-serif;
    margin: 8px 0;
    font-weight: 400;
    color: #424242;
    line-height: 23px;
}

.ratings-box-new h3 {
    margin-bottom: 20px;
}

.ratings-box-new i {
    text-align: right;
    display: block;
}

.rating-contents-text {
    min-height: 260px;
}

.ratings-box h6 {
    font-size: 12px;
    font-family: "Open Sans",sans-serif;
    margin: 8px 0;
    font-weight: 300;
    color: rgba(0,0,0,.6);
    line-height: 20px;
}

.ratings-box p {
    font-size: 12px;
    font-family: "Open Sans",sans-serif;
    margin: 8px 0;
    font-weight: 300;
    color: #191919;
}

.trust-pilot-sec .owl-carousel .owl-dots.disabled, .trust-pilot-sec .owl-carousel .owl-nav.disabled {
    display: block;
}

.trust-pilot-sec .owl-prev {
    position: absolute;
    top: 140px;
    left: -45px;
    background: #eee;
    padding: 6px;
    border-radius: 23px;
    height: 30px;
    width: 30px;
    line-height: 18px;
    text-align: center;
}

    .trust-pilot-sec .owl-prev:hover {
        background-color: #D80328;
        color: #fff;
    }

.trust-pilot-sec .owl-next {
    position: absolute;
    top: 140px;
    right: -45px;
    background: #eee;
    padding: 6px;
    border-radius: 23px;
    height: 30px;
    width: 30px;
    line-height: 18px;
    text-align: center;
}

    .trust-pilot-sec .owl-next:hover {
        background-color: #D80328;
        color: #fff;
    }

.digital-platform-sec {
    padding: 80px 0;
}

    .digital-platform-sec .owl-carousel .owl-dots {
        text-align: center;
        position: relative;
        top: -52px;
    }

        .digital-platform-sec .owl-carousel .owl-dots .active span {
            background-color: #fff;
        }

    .digital-platform-sec .owl-carousel .owl-dot {
        text-align: center;
        display: inline-block;
        margin: 20px 5px;
    }

        .digital-platform-sec .owl-carousel .owl-dot span {
            display: inline-block;
            color: #181818;
            width: 16px;
            height: 16px;
            border: 2px solid #fff;
            border-radius: 12px; /*    background-color: #C2CBC8;*/
        }

    .digital-platform-sec .owl-carousel .owl-dots.disabled {
        display: block;
    }

    .digital-platform-sec .container-box { /*  background-color: #010827;
    padding: 25px 35px;
    border-radius: 10px;*/
        background-color: #010827;
        padding: 100px 50px;
        border-radius: 10px;
        width: 80%;
        margin: 0 auto;
    }

    .digital-platform-sec .contents-Description h4 {
        color: #fff;
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .digital-platform-sec .contents-Description p {
        color: #c9cfdb;
        font-size: 15px;
        margin-bottom: 40px;
        line-height: 25px;
    }
/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}
/**STYLE Credibility**/
.credibility-patrons-sec { /*background-color: #ffffff;*/ /*padding: 10px 0 80px 0;*/
    padding: 80px 0 80px 0;
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url(../img/tech-ptn.png); /* background-image: url(../img/tech-ptn.png); */ /*background-size: contain;*/
    background-size: 100%;
    background-repeat: 'no-repeat';
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: -65px;
}

    .credibility-patrons-sec .logo-box {
        padding: 80px;
        display: table;
        margin: 0 auto;
    }

        .credibility-patrons-sec .logo-box ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

            .credibility-patrons-sec .logo-box ul li {
                display: inline-flex;
                margin: 10px;
            }

                .credibility-patrons-sec .logo-box ul li img {
                    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                }
/**Solution Section Styles**/
.solutions-section {
    padding: 80px 0 80px 0;
}

    .solutions-section .solution-keypoints { /* margin-top: 80px;*/ /*margin-top: 95px;*/
        margin-top: 105px;
    }

.solutions-Head-box {
    padding: 22px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 20px;
    border: 1px solid #bdbdbd;
    background-color: #ffffff;
}

    .solutions-Head-box h5 {
        font-weight: 500;
    }

.solutions-section .img-present {
    padding: 75px;
    margin-top: 85px;
}

    .solutions-section .img-present img {
        position: absolute;
    }

.solution-wrapper-box { /* background-image: url(../img/line-border.png);*/ /* background-image: url(../img/line-border-red.png);*/ /*background-repeat: no-repeat;
    background-position: 45%;*/
}
/**Styling New Solutions**/
.new-solution-wrapper {
    position: relative;
}

.border-line-box {
    position: absolute;
    left: 109px;
    top: 70px;
}

.border-line {
    border-left: 3px solid #DA0D20;
    height: 1310px;
}
/**Service Styles CSS**/
.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}
/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

    .roadmap-carousel::before {
        position: absolute;
        content: "";
        height: 0;
        width: 100%;
        top: 20px;
        left: 0;
        border-top: 2px dashed var(--secondary);
    }

    .roadmap-carousel .roadmap-item .roadmap-point {
        position: absolute;
        width: 30px;
        height: 30px;
        top: 6px;
        left: 50%;
        margin-left: -15px;
        background: #FFFFFF;
        border: 2px solid var(--primary);
        transform: rotate(45deg);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .roadmap-carousel .roadmap-item .roadmap-point span {
            display: block;
            width: 18px;
            height: 18px;
            background: var(--primary);
        }

    .roadmap-carousel .roadmap-item {
        position: relative;
        padding-top: 150px;
        text-align: center;
    }

        .roadmap-carousel .roadmap-item::before {
            position: absolute;
            content: "";
            width: 0;
            height: 115px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            border-right: 2px dashed var(--secondary);
        }

        .roadmap-carousel .roadmap-item::after {
            position: absolute;
            content: "";
            width: 14px;
            height: 14px;
            top: 111px;
            left: 50%;
            margin-left: -7px;
            transform: rotate(45deg);
            background: var(--primary);
        }

    .roadmap-carousel .owl-nav {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

        .roadmap-carousel .owl-nav .owl-prev,
        .roadmap-carousel .owl-nav .owl-next {
            margin: 0 12px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            font-size: 22px;
            color: var(--light);
            background: var(--primary);
            transition: .5s;
        }

            .roadmap-carousel .owl-nav .owl-prev:hover,
            .roadmap-carousel .owl-nav .owl-next:hover {
                color: var(--primary);
                background: var(--dark);
            }
/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button { /*background: var(--light);*/
    border-radius: 2px;
    background-color: #eaeaea;
    border: 1px solid #bdbdbd;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
    color: #333333;
    font-weight: 400;
    padding: 13px 15px 13px 30px;
    line-height: 21px;
}

.accordion .accordion-button {
    box-shadow: none;
}

    .accordion .accordion-button:not(.collapsed) {
        color: #FFFFFF; /* background: var(--primary);*/
        background-color: #333333;
        box-shadow: none;
    }

        .accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

.accordion .accordion-body {
    padding: 25px 23px 25px 31px;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #333333;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--secondary);
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--light);
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .btn.btn-square {
    color: var(--light);
    border: 1px solid var(--light);
}

    .footer .btn.btn-square:hover {
        color: var(--light);
        background: var(--red);
        border: 1px solid var(--red);
    }

.footer .copyright {
    padding: 25px 0; /*border-top: 1px solid rgba(17, 17, 17, .1);*/
    border-top: 1px solid rgb(173 173 173 / 10%);
}

    .footer .copyright a {
        color: var(--primary);
    }

        .footer .copyright a:hover {
            color: var(--dark);
        }

.schedule-btn-new {
    background-color: transparent;
    color: #333;
    border: 1px solid #111111;
    font-weight: 400;
    border-radius: 0px;
}

    .schedule-btn-new:hover {
        border-color: #DA0D20 !important;
    }
/**Features Style Table Design**/
.features-section {
    padding: 100px 0; /*background-image: url(../img/ptn-1.png);*/
    padding: 100px 0;
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url("../img/tech-ptn.png"); /*background-image: url(../img/tech-ptn.png);*/
    background-size: 100%;
    background-repeat: 'no-repeat';
    background-repeat: no-repeat;
    background-position: bottom;
    padding-top: 50px;
}
/*
.features-section table tr:nth-child(odd)
{
    background-color: #f9f9f9;
}
.features-section table tr td:nth-child(odd)
{
    background-color: #f9f9f9;
}
*/
.features {
    border-collapse: collapse;
    font-family: sans-serif;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 19px 14px -23px;
}

.features__cell {
    max-width: 250px;
    font-size: 0.9em;
    font-weight: normal;
    padding: 0.5em 1em;
    color: #333333;
    border: 1px solid #dddddd;
    line-height: 1.4;
}

.features__cell--bold {
    font-weight: bold;
}

.features__cell--shaded {
    background: #eeeeee;
}
/*.features__cell--large {
  font-size: 18px;
    font-weight: 400;
    font-family: 'Work Sans', sans-serif;
}*/
.features__cell--large {
    font-size: 15px;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    background-color: #333333;
    color: #ffffff;
    border-color: #505050;
}

.features__cell--center {
    text-align: center;
}
/*.features__tick::after {
  content: "\2714";
  font-size: 1.5em;
  color: green;
}*/
.features-right {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #22B67C;
    border-radius: 20px;
    color: #fff;
}

    .features-right i {
        font-size: 16px;
    }

.features-nope {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #c9c9c9;
    border-radius: 20px;
    color: #fff;
}

    .features-nope i {
        font-size: 16px;
    }

.features-table-wrapper {
    margin: 40px auto;
    display: table;
}

    .features-table-wrapper .features tr td {
        font-family: 'Work Sans', sans-serif;
    }

        .features-table-wrapper .features tr td:first-child {
            font-weight: 600;
            font-family: 'Work Sans', sans-serif;
        }
/**Styling Other page**/
.other-page-header {
    background: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)), url(../img/gray-pattern.png);
    background-repeat-x: repeat;
    background-repeat-y: no-repeat;
}

.sub-page-title {
    font-weight: 400;
    font-size: 34px;
}

.about-section {
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.8)), url(../img/tech-ptn.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.lappy-img {
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.video-position {
    position: relative;
}

.introvideo-about {
    position: absolute;
    top: 15%;
    right: 11%;
    width: 78%;
    border: 1px solid #eceaea;
    outline: none;
}

.contents-part {
    padding: 40px 0;
}

    .contents-part h5 {
        font-size: 30px;
        font-weight: 400;
        padding-bottom: 10px;
    }

.sub-page-title-box {
    padding-top: 40px;
    padding-bottom: 60px;
}

.title-box-2 {
    text-align: center;
}

    .title-box-2 h1 {
        color: #fff; /*background: linear-gradient(to right,#095fab 10%, #25abe8 50%, #57d75b 60%);*/
        background: linear-gradient(to right,#282828 10%, #787878 50%, #DA0D20 60%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: #fff;
        background-clip: text;
        text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 2.5s linear infinite;
        display: inline-block;
    }

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.animate-subhead h4 {
    color: #fff; /*background: linear-gradient(to right,#095fab 10%, #25abe8 50%, #57d75b 60%);*/ /* background: linear-gradient(to right,#333333 10%, #DA0D20 50%, #111111 60%);*/
    background: linear-gradient(to right,#dbdbdb 10%, #DA0D20 50%, #dfdfdf 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 3.5s linear infinite;
    display: inline-block;
}

.world-section {
    padding: 50px 0;
}

.color-red {
    color: #DA0D20 !important;
}

.color-white {
    color: #ffffff !important;
}

.form-control:focus {
    outline: 0;
    border: 1px solid #eeeeee;
    box-shadow: none;
}

.signup-btn {
    background-color: #fff;
    color: #111;
    font-weight: 400;
}

.video-animate-slide {
    position: relative;
    width: 100%; /* bottom: -95px; */
    top: 42px;
}

/*.introvid-2 {
    position: absolute;
    top: 16%; 
    width: 100%; 
    outline: none;
    opacity: 0.9;
}*/

.introvid-2 {
    position: absolute;
    /*top: 16%; */
    top: 106px;
    width: 100%;
    outline: none;
    opacity: 0.9;
}


.head-punchline {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    margin-top: -63px;
}
/** Slide Up Text**/
.heading-new {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 69px;
    margin-right: 20px;
    line-height: 50px;
}

.nvcc-main {
    background-color: transparent;
    color: #000;
    display: flex;
    padding-bottom: 36px;
}

.v-slider-frame {
    height: 60px;
    overflow: hidden; /* text-align: center;*/
}

.v-slide {
    font-size: 57px;
    line-height: 60px;
    font-weight: 300;
    color: #DA0D20;
}

ul.v-slides {
    list-style-type: none;
    transform: translateY(50px);
    padding: 0;
}
/**Styling Cursor Pointer**/
.cursor {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #919191;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 9999;
}

.cursor2 {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #DA0D20;
    opacity: .8;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 9999;
}

.hover {
    background-color: rgb(255,255,255,0.7);
    opacity: 0.5;
    width: 80px;
    height: 80px;
}

.cursorinnerhover {
    width: 90px;
    height: 90px;
    opacity: .5;
}
/**STYLING NEW BUTTON**/
.cta-btn-new {
    position: relative;
    margin: auto;
    padding: 13px 20px;
    transition: all .2s ease;
}

    .cta-btn-new:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 5px;
        background: rgba(218, 013, 032, 0.9);
        width: 56px;
        height: 46px;
        transition: all .3s ease;
    }

    .cta-btn-new span {
        position: relative;
        font-size: 16px;
        line-height: 18px;
        font-weight: 400;
        letter-spacing: 0.5px;
        vertical-align: middle;
    }

    .cta-btn-new svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #111;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all .3s ease;
    }

    .cta-btn-new:hover:before {
        width: 100%;
        background: #DA0D20;
        color: #ffffff !important;
    }

    .cta-btn-new:hover {
        color: #ffffff !important;
    }

        .cta-btn-new:hover svg {
            transform: translateX(0);
        }

    .cta-btn-new:active {
        transform: scale(0.96);
    }
/* .border-black-bottom
    {
        border: none;
    background-color: transparent;
    color: #111;
    font-weight: 400;
    border-bottom: 1.5px solid #111;
    border-radius: 0;
    }*/
.border-black-bottom {
    border: none; /*background-color: #ffffff;*/
    background-color: #DA0D20;
    color: #ffffff;
    font-weight: 400;
    border: 1.5px solid #DA0D20;
    border-radius: 0;
    box-shadow: none; /*border-radius: 5px;*/
}

    .border-black-bottom:hover {
        border: 1.5px solid #ffffff;
        background-color: transparent;
    }
/**Solution Wrapper New Style**/
.solution-outer-box {
    position: relative;
}

    .solution-outer-box section {
        width: 60%;
        height: 100vh;
        background-color: #efefef;
        border-bottom: 5px solid #444;
        margin: 40px auto;
    }

        .solution-outer-box section:nth-child(1) {
            background-color: #55efc4
        }

        .solution-outer-box section:nth-child(2) {
            background-color: #81ecec
        }

        .solution-outer-box section:nth-child(3) {
            background-color: #74b9ff
        }

progress {
    -webkit-appearance: none;
    appearance: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(calc(-50% + 3px), calc(50vh - 50%)) rotate(90deg);
    width: 100vh;
    height: 6px;
}

    progress::-webkit-progress-bar {
        background-color: #f5f5f5;
    }

    progress[value="100"]::-webkit-progress-bar {
        background-color: #fd79a8;
    }

    progress::-webkit-progress-value {
        background-color: #fd79a8;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
    }
/**New Progress**/
.header-progress {
    position: fixed;
    top: 250px;
    z-index: 1;
    right: 280px;
    width: 100%;
    background-color: #f1f1f1;
    transform: rotate(90deg);
}

    .header-progress h2 {
        text-align: center;
    }

.progress-container {
    width: 100%;
    height: 8px;
    background: #ccc;
}

.progress-bar {
    height: 8px;
    background: #04AA6D;
    width: 0%;
}

.content-abc {
    padding: 100px 0;
    margin: 50px auto 0 auto;
    width: 80%;
}

.title-name-new { /* font-family: 'IBM Plex Sans', sans-serif; */
    font-family: 'Work Sans', sans-serif; /* letter-spacing: 3.2px; */ /* font-size: 46px; */
    font-size: 49px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.solution-text-div {
    padding-bottom: 60px;
}

    .solution-text-div h1 {
        background: linear-gradient(to right,#282828 10%, #787878 50%, #DA0D20 60%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: #fff;
        background-clip: text;
        text-fill-color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 2.5s linear infinite;
        display: inline-block;
    }

    .solution-text-div h4 {
        margin-bottom: 22px;
        margin-top: 5px;
        line-height: 34px;
    }
/**NEW FEATURES SECTION**/
.new-featues-section {
    padding: 130px 0; /*background: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url(../img/tech-ptn.png);*/ /* background-image: url(../img/tech-ptn.png); */
    background-size: 100%;
    background-repeat: 'no-repeat';
    background-repeat: no-repeat;
    background-position: bottom; /*margin-bottom: 75px;*/
    margin-bottom: 30px;
}

.features-wrapper {
    padding: 40px;
}

    .features-wrapper .nav-pills .nav-link {
        width: 270px;
        padding: 12px 15px;
    }

    .features-wrapper .feat-btn {
        background-color: #ededed;
        margin-bottom: 12px;
        color: #101010;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        text-align: left;
    }

    .features-wrapper .nav-pills .nav-link.active {
        color: #fff !important;
        background-color: #DA0D20;
    }

    .features-wrapper .features-right2 {
        width: 22px;
        height: 22px;
        display: inline-block;
        background-color: #e9e9e9;
        border-radius: 20px;
        color: #3a3a3a;
        line-height: 24px;
        text-align: center;
        margin-right: 5px;
        font-size: 18px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

        .features-wrapper .features-right2:active {
            background-color: #a3021e;
        }

    .features-wrapper .contents-part-div {
        padding: 10px 50px 50px 50px; /*background-color: #ffffff;*/
        border-radius: 5px; /* background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)), url(../img/gray-pattern.png);*/
    }

.contents-part-div h1 {
    font-size: 36px;
    font-weight: 300;
}

.contents-part-div p {
    text-align: left;
}

.features-img-box img {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 80%;
    display: table;
    margin: 30px auto;
}
/**Features Section No-Fuss**/
.features-nofusss-sec {
}

.features-point-div {
    padding: 50px 0;
}

    .features-point-div ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .features-point-div ul li {
            display: inline-block;
        }

    .features-point-div .feat-btn { /*background-color: #ededed;*/ /* background-color: #ffffff;*/
        background-color: #373737;
        margin: 10px;
        color: #ffffff; /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
        text-align: left;
        border: 0;
        border: 1px solid #f3f3f3;
    }
    /*.features-point-div .activeFeatures
{
    background-color: #DA0D20;
}*/
    .features-point-div .features-right2 {
        width: 22px;
        height: 22px;
        display: inline-block;
        background-color: #e9e9e9;
        border-radius: 20px;
        color: #3a3a3a;
        line-height: 24px;
        text-align: center;
        margin-right: 5px;
        font-size: 18px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }

    .features-point-div .nav-link {
        width: 243px;
        padding: 14px 15px;
        border-radius: 0;
    }

    .features-point-div .arrow-icon {
        display: none;
    }

    .features-point-div .nav-link:hover {
        color: #fff !important;
        background-color: #DA0D20;
        transition: 0.5s;
    }

    .features-point-div .nav-pills .nav-link.active {
        color: #fff !important;
        background-color: #DA0D20;
    }
/**Login Page Design**/
.login-section { /*  padding: 135px 240px;*/ /* background: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2)), url(../img/gray-pattern.png);*/
    background: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,.5)), url(../img/tech-ptn.png);
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat; /*    background-color: #eee;*/
    height: 100vh;
}

.login-wrapper {
    background-color: #fff; /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
    margin: 120px 200px; /*  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;*/ /*box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    position: relative;
}

    .login-wrapper .aero-freight {
        position: absolute;
        right: -129px;
        top: -21px;
    }

    .login-wrapper .truck-freight {
        position: absolute;
        bottom: -4px;
        left: -172px;
    }

    .login-wrapper .ship-freight {
        position: absolute;
        bottom: -23px;
        right: -159px;
    }

        .login-wrapper .ship-freight img {
            width: 158px;
        }

.login-inner-div {
}

.login-section .login-img-part { /*background-color: #f1f1f1;*/
    background-color: #484848;
    height: 500px;
    padding: 45px;
}

    .login-section .login-img-part img {
        margin-top: 30px;
    }

.login-section .login-form-part {
    padding: 30px 50px;
}

.login-form-part .top-link {
    text-align: right;
}
    /*.login-form-part .top-link .new-reg-btn
{
   padding: 10px;
    background-color: #DA0D20;
    border-radius: 3px;
    color: #fff;
    margin-left: 15px;
}*/
    .login-form-part .top-link .new-reg-btn {
        padding: 6px 8px;
        background-color: #DA0D20;
        border-radius: 3px;
        color: #fff;
        margin-left: 15px;
    }

        .login-form-part .top-link .new-reg-btn:hover {
            background-color: #333333;
        }

.login-form-part .intro-title {
    padding: 50px 0 0 0;
}

    .login-form-part .intro-title h4 {
        color: #111;
        font-size: 21px;
        font-weight: 500;
        margin: 0;
    }

    .login-form-part .intro-title p {
        padding: 12px 0;
        margin: 0;
    }

.animate-text-red {
    background: linear-gradient(to right,#282828 10%, #787878 50%, #DA0D20 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2.5s linear infinite;
    display: inline-block;
}

.login-form-part .form-box {
    padding: 20px 0;
}

    .login-form-part .form-box .input-box {
        margin-bottom: 15px;
    }

        .login-form-part .form-box .input-box label {
            display: block;
            font-size: 14px;
            color: #838383;
        }

        .login-form-part .form-box .input-box input[type='text'], input[type='password'], textarea, select {
            padding: 8px 10px;
            width: 100%;
            margin: 6px 0;
            border: 1px solid #d7d7d7;
            border-radius: 3px;
        }

            .login-form-part .form-box .input-box input[type='text']:focus, input[type='password']:focus, textarea:focus, select:focus {
                outline: 0;
                border-color: #898989;
            }

        .login-form-part .form-box .input-box .forgot-pass a {
            text-align: right;
            display: inline-block;
            float: right;
            font-size: 13px;
            text-decoration: underline;
            color: #d80328;
        }
    /*.login-form-part .form-box .login-submit-btn
{
    padding: 7px 10px;
    background-color: #DA0D20;
    border-radius: 3px;
    color: #fff;
    border: 0;
    font-size: 16px;
    width: 160px;
    margin: 0 auto;
    display: table;
    line-height: 27px;
}*/
    .login-form-part .form-box .login-submit-btn {
        padding: 6px 8px;
        background-color: #DA0D20;
        border-radius: 3px;
        color: #fff;
        border: 0;
        font-size: 14px; /* width: 100%; */ /* width: 74px; */
        margin: 0 auto;
        display: table;
        line-height: 21px;
    }

        .login-form-part .form-box .login-submit-btn i {
            font-size: 19px;
            vertical-align: middle;
        }

        .login-form-part .form-box .login-submit-btn:focus {
            outline: 0;
            background-color: #333333;
        }

        .login-form-part .form-box .login-submit-btn:hover {
            outline: 0;
            background-color: #333333;
        }

    .login-form-part .form-box .input-box ::placeholder {
        color: #c7c7c7;
        opacity: 1;
        font-size: 12px;
    }

.login-videos {
    width: 75%;
    margin-top: -18px;
    margin-left: 74px;
}

.login-modal-popup .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 2.5rem;
}

.dismiss-close-btn button {
   position: absolute;
    top: -7px;
    right: -10px;
    border: none;
    background-color: transparent;
}

    .dismiss-close-btn button i {
        color: #DA0D20;
    }

        .dismiss-close-btn button i:hover {
            color: #ffffff;
        }
/*.login-form-part .form-box .input-box :-ms-input-placeholder { 
  color: red;
}
.login-form-part .form-box .input-box ::-ms-input-placeholder {
  color: red;
}*/
.form-part-contact {
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 50px;
    background-color: #ffffff;
}
/**Styling Services Section**/
.box-outwrapper {
    padding: 25px;
    color: #111111;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

    .box-outwrapper:hover {
        box-shadow: none;
        border: 1px dotted #D80328;
        background-color: #ffffff;
        transition: border 1s ease, background-color 0.5s linear, width 10px 1s ease-out;
    }

.services-box {
    margin-bottom: 30px;
    min-height: 405px;
}

.resources-box {
    margin-bottom: 30px;
    min-height: 450px;
}

.resources-innerdiv {
    padding: 25px;
    border: 1px dashed #e9e9e9;
    min-height: 400px;
}

.box-outwrapper .title-div-new {
    padding: 0 10px 30px 0;
    margin: 0 auto;
    display: table;
}

    .box-outwrapper .title-div-new h4 {
        color: #111; /*font-size: 28px;*/
        font-size: 26px;
        font-weight: 400;
        margin: 0;
        text-align: center;
        line-height: 35px;
    }

.services-innerdiv {
    padding: 25px;
    border: 1px dashed #e9e9e9;
    min-height: 355px;
}

.services-img-motion {
    position: relative;
}

    .services-img-motion .logo-center-part {
        background-color: #ffffff;
        padding: 20px;
        position: absolute;
        top: 287px;
        left: 63px;
    }
/** New Solution Design CSS**/
.solution-pointer-box .nav-pills .nav-link {
    background: #ffffff;
    border: 0;
    border-radius: 0px;
    text-align: left; /* display: block; */
    width: 100%;
    margin-bottom: 11px;
    width: 100%;
    color: #333;
    padding: 12px 15px;
    border: 1px solid #eee;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    font-weight: 600;
}

    .solution-pointer-box .nav-pills .nav-link:hover .features-right4 {
        background-color: #DA0D20;
        color: #fff;
    }

    .solution-pointer-box .nav-pills .nav-link:hover {
        color: #DA0D20;
    }

    .solution-pointer-box .nav-pills .nav-link.active {
        background-color: #373737;
        color: #fff !important;
        font-weight: 400;
    }

.solution-pointer-box .features-right4 {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: #e9e9e9;
    border-radius: 20px;
    color: #3a3a3a;
    line-height: 24px;
    text-align: center;
    margin-right: 10px;
    font-size: 18px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

    .solution-pointer-box .features-right4 i { /*color: #DA0D20;*/
    }

.solution-subhead h4 {
    color: #fff; /* background: linear-gradient(to right,#095fab 10%, #25abe8 50%, #57d75b 60%); */ /* background: linear-gradient(to right,#333333 10%, #DA0D20 50%, #111111 60%); */
    background: linear-gradient(to right,#3c3c3c 10%, #DA0D20 50%, #858585 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 3.5s linear infinite;
    display: inline-block;
}

.head-title-sol {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 400;
}

.ocean-graphics-img
{
    width: 39%;
}

.domestic-graphics-img
{
    width: 39%;
}

.air-graphics-img
{
    width: 39%;
}

/*NEW DEMO PAGE CSS*/

.logistics-focused
{
   margin-bottom: 40px;
}

.logistics-focused img
{
    /*filter: grayscale(1);*/
    width: 80%;
    margin: 0 auto;
    display: table;
    padding: 0px 0 50px 0;
}

.major-customer-points {
    padding: 40px 0;
}

.major-customer-points {
    padding: 40px 0;
}

.major-customer-points h5 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 25px;
    line-height: 25px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}

.c-points-icons
{
    margin-left: 60px;
}

.c-points-icons img
{
    width: 80px;
    background-color: #ffffff;
    padding: 12px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border: 1px solid #ededed;
}

.c-points-title
{

}

.c-points-title h4
{
    font-size: 19px;
    line-height: 25px;
    margin: 0;
    margin-top: 11px;
    font-weight: 400;
}

.benefits-cpoints-box
{
   padding: 10px 70px;
}

.call-to-action
{
    margin: 0 auto;
    display: table;
    margin-top: 40px;
}

.center-div-align
{
    margin: 0 auto;
    display: table;
}


.form-check-input:checked {
    background-color: #da0d20;
    border-color: #da0d20;
}

.form-check-input:focus {
    border-color: #da0d20;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(181 181 181 / 25%);
}
