:root {
    --d: 700ms;
    --e: cubic-bezier(0.19, 1, 0.22, 1);
    --font-sans: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    background-image: url(/componentImage/Transparent.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    font-family: "Poppins", sans-serif;
    background-position: top center;
}


/* Navigation Bar */

.custom-nav {
    width: 100%;
}

#navbarNavDropdown .nav-item .nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 12px;
}

#navbarNavDropdown .nav-item .nav-link:hover {
    color: #bfbfbf;
    transition: all 0.3s ease;
}

#navbarNavDropdown .nav-item.dropdown .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}


/* Styling the menu button */

.navbar-toggler {
    position: absolute;
    z-index: 3;
    right: 3px;
    top: 12px;
    cursor: pointer;
    transition: all 0.5s ease-out;
}


/* Styling the hamburger lines */

.navbar-toggler .btn-line {
    width: 25px;
    height: 3px;
    margin: 0 0 5px 0;
    background: black;
    transition: all 0.5s ease-out;
}


/* Adding transform to the X */

.navbar-toggler.close {
    transform: rotate(180deg);
}


/* Styling the three lines to make it an X */

.navbar-toggler.close .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.close .btn-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.close .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media only screen and (max-width: 990px) {
    .custom-nav {
        background-color: #ffffff;
    }
    .custom-nav .navbar-brand img {
        width: 224px;
        height: 22px;
    }
    #navbarNavDropdown .nav-item .nav-link {
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: #000000;
        text-transform: uppercase;
        font-weight: 600;
        margin-right: 12px;
    }
}

.custom-nav.scrolled {
    background: #ffffff;
    transition: 0.5s ease-in-out;
}


/* Carousel */


/* Carousel base class */

.carousel {
    margin-bottom: 4rem;
}

.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}


/* Since positioning the image, we need to help out the caption */

#carouselExampleSlidesOnly .carousel-inner .carousel-item img {
    width: 100%;
    height: 100vh;
}

@media only screen and (max-width: 992px) {
    #carouselExampleSlidesOnly .carousel-inner .carousel-item img {
        margin-top: 50px;
        height: 60vh;
    }
    .carousel-item .carousel-caption h1 {
        font-size: 20px;
    }
    .carousel-item .carousel-caption p {
        font-size: 10px;
    }
}

@media (min-width: 40em) {
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}


/* Banner */

.jumbotron {
    height: 520px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #22273c;
    border-radius: 0px !important;
}


/* Tagline */

.discover-our-work {
    padding: 45px 0 20px;
}

.global-headline {
    text-align: center;
    margin-top: 3.9rem;
}

.discover-our-work .global-headline {
    margin-top: 6.9rem;
}

.headline-dark {
    color: #000000;
    font-weight: 800;
    margin-right: 0.7rem;
}

.hours-info {
    text-align: center;
}

.service-hours {
    margin-bottom: 3rem;
}

.service-hours p {
    line-height: 1.6rem;
    margin-bottom: 2.4rem;
    font-weight: 600;
    font-family: "Oxygen", sans-serif;
    color: #000000;
}

.body-btn {
    font-size: 1.5rem;
    color: #000000;
    position: relative;
    transition: color 0.5s;
}

.body-btn::before {
    content: "";
    position: relative;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #22273c;
}

.body-btn:hover,
.body-btn:focus {
    color: #2867b2;
}

.body-btn:hover::before,
.body-btn:focus::before {
    background-color: #2867b2;
}

@media screen and (min-width: 900px) {
    .hours-info {
        display: flex;
        align-items: center;
    }
    .hours-info>div {
        flex: 1;
    }
    .padding-right {
        padding-right: 7rem;
    }
}


/* Feature Card */

.page-content {
    display: grid;
    grid-gap: 1rem;
    padding: 1rem;
    max-width: 1024px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 600px) {
    .page-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .page-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    text-align: center;
    color: whitesmoke;
    background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
    .card {
        height: 350px;
    }
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: 0 0;
    transition: transform calc(700ms * 1.5) cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.card:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    pointer-events: none;
    background-image: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
    transform: translateY(-50%);
    transition: transform calc(var(--d) * 2) var(--e);
}

.card:nth-child(1):before {
    background-image: url(/componentImage/truck.jpg);
}

.card:nth-child(2):before {
    background-image: url(/componentImage/airplane.jpg);
}

.card:nth-child(3):before {
    background-image: url(/componentImage/ship.jpg);
}

.card:nth-child(4):before {
    background-image: url(/componentImage/trains.jpg);
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1rem;
    transition: transform var(--d) var(--e);
    z-index: 1;
}

.content>*+* {
    margin-top: 1rem;
}

.title {
    font-size: 10;
    font-weight: bold;
    line-height: 1.2;
}

.copy {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.35;
}

@media (hover: hover) and (min-width: 600px) {
    .card:after {
        transform: translateY(0);
    }
    .content {
        transform: translateY(calc(100% - 4.5rem));
    }
    .content>*:not(.title) {
        opacity: 0;
        transform: translateY(1rem);
        transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    }
    .card:hover,
    .card:focus-within {
        align-items: center;
    }
    .card:hover:before,
    .card:focus-within:before {
        transform: translateY(-4%);
    }
    .card:hover:after,
    .card:focus-within:after {
        transform: translateY(-50%);
    }
    .card:hover .content,
    .card:focus-within .content {
        transform: translateY(0);
    }
    .card:hover .content>*:not(.title),
    .card:focus-within .content>*:not(.title) {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--d) / 8);
    }
    .card:focus-within:before,
    .card:focus-within:after,
    .card:focus-within .content,
    .card:focus-within .content>*:not(.title) {
        transition-duration: 0s;
    }
}


/* About Us */

#about .text-center p {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-right: 350px;
    margin-left: 350px;
    text-align: center;
    padding-bottom: 3rem;
}

@media screen and (max-width: 992px) {
    #about .text-center p {
        max-width: 300px;
        margin-top: 20px;
        font-size: 1rem;
        font-weight: 600;
        margin-right: 50px;
        margin-left: 50px;
        text-align: justify;
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 576px) {
    #about .text-center p {
        max-width: 500px;
        margin-top: 20px;
        font-size: 1rem;
        font-weight: 600;
        margin-right: 50px;
        margin-left: 50px;
        text-align: justify;
        padding-bottom: 3rem;
    }
}


/* Feature Intro */

.text-headers {
    text-align: center;
    color: #000000;
    padding: 1rem;
    position: relative;
}

.text-headers h1 {
    font-size: 32px;
    font-weight: 500;
}

.text-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 100px;
}

.containers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    grid-gap: 1rem;
    padding: 1rem 80px;
    font-size: 1rem;
}

.skill-box {
    padding: 1rem;
    cursor: pointer;
    font-weight: 700;
}

.skill-box:hover>.skill-title:after,
.skill-box:hover>.skill-title:before {
    width: 35px;
}

.skill-box:hover .img {
    transform: translateY(-10px);
}

.skill-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.skill-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 4px;
    border-radius: 2px 0 0 2px;
    background-color: #22273c;
    transition: 0.5s;
}

.skill-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    border-radius: 0 2px 2px 0;
    background-color: #22273c;
    transition: 0.5s;
}

.img {
    position: relative;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 60px;
}

.skill-title h3 {
    color: #000000;
    margin-top: 0.5rem;
    font-size: 18px;
    font-weight: 600;
}

.skill-title p {
    font-size: 15px;
    font-weight: 600;
}

p.justify {
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
}

.skil-icon {
    z-index: 2;
}

@media screen and (max-width: 990px) {
    .containers {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 50px;
    }
}

@media screen and (max-width: 650px) {
    .containers {
        grid-template-columns: 1fr;
    }
    .skill-title p {
        max-width: 300px;
        font-size: 15px;
        font-weight: 600;
    }
}


/* Our Services */

.service {
    padding: 5px 0;
    font-family: "Poppins", sans-serif;
}

.max-width {
    max-width: 1300px;
    padding: 0 45px;
    margin: auto;
}

.max-width h1 {
    text-align: center;
    position: relative;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.max-width h1::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 3px;
    background: #ffffff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cards {
    padding: 50px 25px;
    width: calc(26% - 20px);
    border-radius: 6px;
    background: #222222;
    text-align: center;
    user-select: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.box i {
    margin-bottom: 30px;
    font-size: 20px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.box h3 {
    font-weight: 600;
    font-size: 18px;
    padding: 10px 0px 0px;
}

.cards:hover {
    background-color: #dc143c;
}

.cards:hover .box {
    transform: scale(1.05);
}

.cards:hover .box i {
    color: #22273c;
}

@media screen and (max-width: 1190px) {
    .max-width {
        padding: 0 25px;
    }
    .cards {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 700px) {
    .cards {
        width: 100%;
    }
}


/* Our Client */

.services-section {
    background-image: url(/componentImage/icon1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 30rem;
    padding-top: 70px;
}

.services-section {
    margin-top: 40px;
    width: 100%;
    max-height: 500px;
}

.inner-width {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.services-section h1 {
    margin-top: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
}

.service {
    text-align: center;
    margin: 20px 0;
}

.service-icon1 img,
.service-icon2 img,
.service-icon3 img,
.service-icon4 img,
.service-icon5 img,
.service-icon6 img,
.service-icon7 img,
.service-icon8 img,
.service-icon9 img,
.service-icon10 img,
.service-icon11 img,
.service-icon12 img {
    display: block;
    max-width: 500px;
    padding: 10px 20px 10px 20px;
}

.service-icon1 img {
    margin-top: 90px;
}

.service-icon2 img {
    margin-top: 90px;
}

.service-icon3 img {
    margin-top: 100px;
}

.service-icon4 img {
    margin-top: 50px;
}

.service-icon5 img {
    margin-top: 70px;
}

.service-icon6 img {
    margin-top: 115px;
}

.service-icon7 img {
    margin-top: 115px;
}

.service-icon8 img {
    margin-top: 115px;
}

.service-icon9 img {
    margin-top: 95px;
}

.service-icon10 img {
    margin-top: 110px;
}

.service-icon11 img {
    margin-top: 110px;
}

.service-icon12 img {
    margin-top: 80px;
}

@media (max-width: 990px) {
    .services-section {
        margin-top: 20px;
        width: 100%;
        max-height: 500px;
    }
    .service-icon1 img,
    .service-icon2 img,
    .service-icon3 img,
    .service-icon4 img,
    .service-icon5 img,
    .service-icon6 img,
    .service-icon7 img,
    .service-icon8 img,
    .service-icon9 img,
    .service-icon10 img,
    .service-icon11 img,
    .service-icon12 img {
        display: block;
        max-width: 250px;
        padding: 10px 20px 10px 20px;
        margin: auto;
    }
    .service-icon1 img {
        margin-top: 80px;
    }
    .service-icon2 img {
        margin-top: 70px;
    }
    .service-icon3 img {
        margin-top: 80px;
    }
    .service-icon5 img {
        margin-top: 40px;
    }
    .service-icon6 img {
        margin-top: 95px;
    }
    .service-icon7 img {
        margin-top: 95px;
    }
    .service-icon8 img {
        margin-top: 95px;
    }
    .service-icon9 img {
        margin-top: 65px;
    }
    .service-icon10 img {
        margin-top: 90px;
    }
    .service-icon11 img {
        margin-top: 110px;
    }
    .service-icon12 img {
        margin-top: 50px;
    }
}


/* Wait No More */

.landing {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15vw 0 15vw;
    height: 100vh;
}

.landingText h1 {
    font-size: 30px;
    margin: 0 !important;
    font-weight: bold;
}

.landingText h3 {
    margin: 6px !important;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    font-weight: bold;
}

.landingText .btn {
    width: 180px;
    margin-top: 30px;
    padding: 10px 20px 10px 20px;
    background-color: #22273c;
    border-radius: 45px;
    text-align: center;
}

.landingText .btn a {
    font-size: 1.2vw;
    color: #ffffff;
    text-decoration: none;
}

.landingImage img {
    width: 28vw;
}


/*.landingImage img {*/


/*    width: 100%;*/


/*    animation: landingImage 4s linear infinite;*/


/*}*/


/*@keyframes landingImage {*/


/*    0%,*/


/*    100% {*/


/*        transform: scale(0.9);*/


/*        border-radius: 4% 95% 6% 95%/95% 4% 92% 5%;*/


/*    }*/


/*    50% {*/


/*        transform: scale(0.8);*/


/*        border-radius: 95% 4% 97% 5%/4% 94% 3% 95%;*/


/*    }*/


/*}*/

@media screen and (max-width: 600px) {
    .landing {
        flex-direction: column-reverse;
        height: 750px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .landingText h1 {
        font-size: 6vw;
        margin: 0 !important;
    }
    .landingText h3 {
        font-size: 12px;
        font-weight: bold;
    }
    .landingText .btn {
        margin: 0 auto;
        margin-top: 30px;
    }
    .landingText .btn a {
        font-size: 3vw;
    }
    .landingImage img {
        width: 80vw;
        margin-bottom: 50px;
    }
}


/* Footer */

.site-footer {
    background-color: #22273c;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
}

.site-footer hr {
    border-top-color: #ffffff;
    opacity: 0.5;
}

.site-footer hr.small {
    margin: 20px 0;
}

.site-footer h6 {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.site-footer a {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none;
    text-align: center;
}

.footer-links li {
    display: block;
}

.footer-links a li {
    color: #ffffff;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a li:hover {
    color: #000000;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block;
}

.site-footer .social-icons {
    text-align: right;
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d;
}

.copyright-text {
    margin: 0;
}

@media (max-width: 990px) {
    .site-footer [class^="col-"] {
        margin-bottom: 30px;
    }
    .site-footer {
        text-align: center;
    }
    .site-footer h6,
    .footer-links {
        text-align: center !important;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 0;
    }
    .site-footer h6,
    .footer-links {
        text-align: center !important;
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #343a40;
    font-weight: 700;
    font-size: 13px;
}

.social-icons a {
    background-color: #ffffff !important;
    color: #343a40;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #ffffff;
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}

.social-icons a.facebook:hover {
    background-color: #3b5999 !important;
}

.social-icons a.twitter:hover {
    background-color: #00aced !important;
}

.social-icons a.instagram:hover {
    background-color: #c32aa3 !important;
}

.social-icons a.linkedin:hover {
    background-color: #2867b2 !important;
}

@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600;
    }
    .copyright-text {
        margin: 0 auto;
        font-size: 15px;
        max-width: 320px !important;
    }
}


/* Whatsapp Chat */


/* for desktop */

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999999;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 16px;
}


/* for mobile */

@media screen and (max-width: 767px) {
    .whatsapp-icon {
        margin-top: 10px;
    }
    .whatsapp_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 22px;
        z-index: 100;
    }
}