body {
    position: relative;
    font-family: "Poppins", sans-serif;
    /*dark blue : #0c2440 -- orange : #d54628*/
}
.form-control.invalid, .form-select.invalid, .form-check-input.invalid {
    border: 1px solid crimson;
    background-color: pink;	
}
.form-control.invalid:focus, .form-select.invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 20, 60, .5);
}
.form-control.valid, .form-select.valid, .form-check-input.valid {
    border: 1px solid green;
    background-color: lightgreen;
}
.form-control.valid:focus, .form-select.valid:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 128, 0, .5);
}
.form-text {
    padding-left: .5rem;
    display: none;
}

/* HOME */

header {
    background-color: #FFF;
    border-bottom: 1px solid #dee2e6;
}
.nav-link {
    font-weight: 500;
    font-size: 18px;
    color: #0c2440;
    line-height: 20px;
    padding: .6rem 1.2rem !important;
}
.nav-link.active, .nav-link:hover {
    color: #d54628 !important;
}
main {
    padding-top: 91px;
}
.hero {
    /*background-image: linear-gradient(to bottom, #0c2440, #ffffff);*/
    background-color: #E5E6E1;
    text-align: center;
    position: relative;
}
.btn-dblue {
    color: #FFF;
    background-color: #0c2440;
    border-color: #0c2440;
}
.btn-dorange {
    color: #FFF;
    background-color: #d54628;
    border-color: #d54628;
}
.btn-dblue:hover, .btn-dblue:focus {
    color: #FFF;
    background-color: #06111e;
    border-color: #06111e;
}
.btn-dorange:hover, .btn-dorange:focus {
    color: #FFF;
    background-color: #be3c22;
    border-color: #be3c22;
}
.hero .cta {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
span.orng {
    color: darkorange;
}
.vid img {
    border-radius: 1.25rem;
}
.delivery-btn {
    position: relative;
}
.delivery {
    position: absolute;
    top: -50%;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.delivery-btn:hover .delivery {
    visibility: visible;
    opacity: 1;
    animation: drive 4s linear infinite;
}
.form_bg {
    background-color: #0c2440;
    color: #FFF;
    padding: 2.5rem;
    border-radius: 20px;
}
.form-titles {
    text-align: center;
}
.form-titles h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.form-titles h5, .form-label {
    font-weight: 600;
}
.form-container {
    border: 2px solid orange;
    border-radius: 20px;
    padding: 1.25rem;
}
.redstar {
    color: crimson;
}
.form-container .form-text {
    color: #FFF;
    font-weight: 600;
}
.introduction {
    padding: 1rem 0 0 2.5rem;
}
.intro-titles h3 {
    text-align: center;
    font-weight: 700;
}
.intro-titles h5 {
    font-weight: 600;
}
.service-text {
    text-align: center;
    padding: 0 4rem 2rem;
}
.service-text h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}
.myrow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-evenly;
    justify-content: center;
    padding: 1rem .5rem;
}
.truck_pic {
    text-align: center;
    border: 1px solid #e5ebe8;
    border-radius: 10px;
    width: 24%;
    height: 400px;
    margin: 0 .5%;
}
.truck_flip {
    background-color: #fcfcfc;
    perspective: 1000px;
    width: 100%;
    height: 85%;
}
.flip_inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}
.truck_pic:hover .flip_inner {
    transform: rotateY(180deg);
}
.flip_front, .flip_back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: grid;
    align-content: center;
    justify-content: center;
}
.flip_front img {
    padding: 2rem;
}
.flip_back {
    background-color: #fcfcfc;
    transform: rotateY(180deg);
}
.flip_back p {
    text-align: justify;
    padding: 1rem;
    margin-bottom: 0;
}
.truck_pic h4 {
    background-color: #FFF;
    padding: .75rem 0;
    border-top: 1px solid #dee2e6;
    margin-bottom: 0;
}
/*.maps_bg {
    background-image: url("../pics/edmap50.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0c2440;
}*/
.works_bg {
    background-color: #f6f8f7bc;
    border-radius: 20px;
    margin-bottom: 3rem;
}
.works_bg .maps-title {
    border-bottom: 1px solid #dee2e6;
}
.maps-title h3, .testimonials h3, .fee-title h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 0;
}
.maps-title h4 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 0;
}
.works {
    text-align: center;
}
.card-icon {
    padding: 1rem;
}
.card-icon img {
    filter: brightness(150%);
}
.card-text {
    padding: 1rem;
}
.card-text h4 {
    margin-bottom: 0;
}
.whyus {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem 2rem;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    transition: transform .5s ease;
}
.whyus:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    transition: transform .5s ease;
}
.whyus-icon {
    text-align: center;
    padding-bottom: 2rem;
}
.whyus-icon img {
    width: 58px;
    transition: transform .5s ease;
}
.whyus:hover .whyus-icon img {
    transform: scale(1.1);
    transition: transform .5s ease;
}
.whyus-title h5 {
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 0;
}
.whyus-text p {
    text-align: justify;
    margin-bottom: 0;
}
.slider-wrapper {
    position: relative;
}
#tst-prev {
    position: absolute;
    top: 55%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 1px solid #dee2e6;
    padding: 0.375rem;
}
#tst-next {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 3;
    border: 1px solid #dee2e6;
    padding: 0.375rem;
}
.tst-card {
    min-height: 386px;
}
.tst-card {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.tst-stars, .fee-nb, .fee-btn, .faq-title {
    text-align: center;
}
.tst-text {
    text-align: justify;
    margin-bottom: 1rem;
}
.tst-user {
    text-align: end;
}
.tst-name {
    font-weight: 600;
}
.pricing_bg {
    background-color: #f6f8f7bc;
}
.fee-title {
    padding: 2rem 0 1rem;
}
.fee-card {
    background-color: #FFF;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    box-shadow: 10px 4px 15px rgba(0, 0, 0, .1);
    padding: 2rem 0;
    width: fit-content;
    transition: all .4s ease;
}
.col-12:nth-child(2) .fee .fee-card {
    background-color: #d54628;
    color: #FFF;
    border-color: #d54628;
}
.fee-card:hover {
    box-shadow: 10px 4px 15px rgba(0, 0, 0, .2);
    transform: scale(1.05);
    transition: all .4s ease;
}
.fee-for {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}
.percentage {
    font-size: 3rem;
    font-weight: 600;
}
.benefits {
    list-style: none;
    padding-right: 2rem;
}
.benefits li {
    padding-bottom: 1rem;
}
.benefits li img {
    margin-right: .25rem;
}
.questions .accordion-item {
    border: 0;
    border-bottom: 1px solid #999;
    border-radius: 0;
    margin-bottom: 1rem;
}
.accordion-button {
    background-color: #f6f8f7;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: #212529;
    background-color: #FFF;
    box-shadow: none;
}
.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}
#faq .row {
    background-color: #f6f8f7bc;/*4d*/
    border-radius: 18px;
}
.qtext img {
    border: 1px solid #d54628;
    border-radius: 50%;
    padding: 20px;
}
.qtext h2 {
    font-size: 2.5rem;
    font-weight: 700;
}
.qtext p {
    font-size: 1.25rem;
    font-weight: 500;
}
.qtext .btn {
    border-radius: 18px;
}
.qtext .btn-white {
    background-color: #FFF;
    border: 1px solid #dee2e6;
}
.qtext .btn-white:hover {
    background-color: #d546282e;
}
.whypic img {
    border-radius: 10px;
}
footer {
    border-top: 1px solid #dee2e6;
}
footer p, footer a {
    color: #878898;
    line-height: 30px;
    text-decoration: none;
    display: block;
    margin-bottom: 0;
}
footer a:hover {
    color: #d54628;
    text-decoration: underline;
}
footer h6 {
    font-weight: 600;
    padding-top: 1.25rem;
}
.copyright {
    margin-bottom: 0;
    color: #878898;
    line-height: 32px;
    text-align: end;
}
@media only screen and (max-width: 1023px) {
    .navbar .col-lg-3 .px-3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .hero .cta {
        bottom: -17%;
    }
    .introduction {
        padding: 1rem 0;
    }
    .service-text {
        padding: 0 2rem 2rem;
    }
    .fee-card {
        margin: auto !important;
    }
}
@media only screen and (max-width: 1199px) {
    .truck_pic {
        width: 100%;
        margin-bottom: 1rem;
    }
}
@keyframes drive {
    0% {
        left: 0;
        transform: rotateY(0);
    }
    50% {
        left: 80%;
        transform: rotateY(0);
    }
    51% {
        transform: rotateY(180deg);
    }
    99% {
        transform: rotateY(180deg);
    }
    100% {
        left: 0;
        transform: rotateY(0);
    }
}
@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}

/* CARRIER SET UP */

.carrier .intro {
    padding: 2rem 0;
}
.carrier .intro h1 {
    font-size: 3rem;
    padding-bottom: 1rem;
}
.carrier .files-list {
    padding: 1rem;
}
.x-mark {
    width: 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

/* ABOUT US */

.story h1 {
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 0;
}
.story-text p {
    font-size: 1.125rem;
    text-align: justify;
    margin-bottom: .5rem;
}
.ours h2, .team h2 {
    font-size: 2.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    margin-bottom: 0;
}
.ours p, .team p {
    font-weight: 500;
    padding-bottom: 1rem;
    margin-bottom: 0;
}
.val-card {
    padding: 1rem .5rem;
    border: 1px solid #dee2e6;
    border-radius: .625rem;
    height: 100%;
}
.val-icon {
    padding-top: .5rem;
    padding-bottom: 1rem;
}
.val-icon img {
    width: 48px;
}
.val-title h5 {
    font-weight: 600;
    padding-bottom: .75rem;
    margin-bottom: 0;
}
.val-text p {
    font-weight: 400;
    padding: 0 1rem .25rem;
    margin-bottom: 0;
}
.team {
    background-color: #f6f8f7bc;
    padding: 3rem 1rem .5rem;
    border-radius: 18px;
}
.team p {
    font-size: 1.25rem;
    padding: 0 1.5rem 1rem;
}
.team .quote {
    background-color: #d546282e;
    border-radius: 18px;
    padding: 1rem 0 0;
    margin: 0 1rem 1rem;
}
.team .btn-white {
    background-color: #FFF;
    border: 1px solid #dee2e6;
}
.team .btn-white:hover {
    background-color: #d546282e;
}

/* CONTACT */

.contactus {
    /*background-image: url("../pics/longshot.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;*/
    background-color: #fdfdfe;
}
.contactus h1 {
    font-size: 3rem;
    font-weight: 900;
}
.info {
    display: flex;
    justify-content: center;
    align-items: center;
}
.info img {
    width: 32px;
}
.info p {
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 1rem;
    margin-bottom: 0;
}