* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
}

img {
    width: 100%;
    height: 100%;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    background-color: #FFF;
    color: #000;
}

.logo {
    width: 159px;
    height: 65px;
}

nav {
    width: 30%;
    max-width: 500px;
    margin-right: 80px;
}

nav ul {
    display: flex;
    justify-content: space-between;
}

nav ul li a {
    color: #000;
    font-size: 14px;
}

nav .logo {
    display: none;
}

.navbar h2 {
    display: none;
}

.desktop-nav-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    height: 100vh;
    padding: 25px;
    background-color: #fff;
    color: #000;
    z-index: 100;
    transform: translateX(-400px);
    width: 400px;
    transition: .20s ease-in-out;
}

.desktop-nav-container .logo {
    margin-top: 30px;
    height: 50px;
}

.desktop-nav-content {
    margin-top: -20px;
}

.desktop-nav-content p {
    line-height: 30px;
    margin-top: 15px;
}

.desktop-nav-content h1 {
    font-size: 22px;
    margin-top: 20px;
    color: #f3800b;
}

.desktop-nav-container h2 {
    font-size: 12px;
    font-weight: 500;
}

.desktop-nav-content a {
    color: #000;
    text-decoration: underline;
    font-size: 18px;
}

.handle {
    display: flex;
    justify-content: space-between;
    width: 150px;
}

.handle a {
    border: 1px solid #000;
    width: 8px;
    height: 8px;
    margin-top: 20px;
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    align-items: center;
    flex-direction: row-reverse;
}

.desktop-nav .track-button {
    width: 70%;
    background-color: #f3800b;
    padding: 20px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: none;
}

.mobile-hamburger {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border: none;
    width: 30px;
    position: relative;
    background-color: transparent;
    transition: .25s ease-in-out;
    cursor: pointer;
}

.mobile-hamburger div {
    width: 100%;
    background-color: #000;
    height: 2px;
    cursor: pointer;
}

.mobile-hamburger div:nth-child(1) {
    position: absolute;
    top: 0px;
    width: 40%;
    right: 0;
    background-color:#000; 
    cursor: pointer;
    transition: .25s ease-in-out;
}

.mobile-hamburger:hover div:nth-child(1) {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border: none;
    width: 30px;
    position: relative;
    background-color: transparent;
    transition: .25s ease-in-out;
    cursor: pointer;
}

.hamburger div {
    width: 100%;
    background-color: #000;
    height: 2px;
    cursor: pointer;
}

.hamburger div:nth-child(1) {
    position: absolute;
    top: 0px;
    width: 40%;
    right: 0;
    background-color: #000;
    cursor: pointer;
    transition: .25s ease-in-out;
}

.hamburger:hover div:nth-child(1) {
    width: 100%;
}

.desktopNavEnable {
    transform: translateX(0);
    position: fixed;
}

/* ------------------------------------------------------------------------------------------------------
ABOUT PAGE
------------------------------------------------------------------------------------------------------ */
.about-hero {
    width: 100%;
    height: 75vh;
    background-repeat: no-repeat;
    display: flex;
    background-image: linear-gradient(180deg, rgba(55, 55, 55, 0.298), rgba(55, 55, 55, 0.298)), url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTOn2p_7z0vzZYDz7rPeyYZNWT4dIjHd9-e8MkRsdQRmjeU0uZIk-GCTfIvMYmmlUa4lJ0&usqp=CAU);
    /* background-color: rgb(254, 211, 0); */
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-hero-content {
    margin-left: 30px;
    width: 45%;
    margin-top: -50px;
}

.about-hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
    font-weight: 900;
    color: #ffffff;
}

.about-hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    width: 80%;
    font-weight: 400;
}

.about-everyone {
    padding: 100px 20px;
    width: 100%;
}

.about-everyone h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
}

.about-everyone p {
    font-size: 20px;
    text-align: center;
}

.about-everyone-img {
    width: 87%;
    margin-left: 13%;
    height: 130vh;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(./assets/about-asset/about-everyone-bck.jpg);
    margin-top: 150px;
    position: relative;
}

.about-everyone-content {
    width: 500px;
    background-color: #212223;
    margin-top: -50px;
    padding: 85px 65px;
    margin-left: 40px;
    position: absolute;
}

.about-everyone-content h1 {
    margin-bottom: 30px;
    color: #f3800b;
    font-size: 22px;
    text-align: left;
    line-height: 35px;
}

.about-everyone-content p {
    margin: 0;
    color: #cfcfcf;
    line-height: 25px;
    font-size: 19px;
    text-align: left;
}

.about-value {
    padding: 50px 100px;
    display: flex;
    justify-content: space-between;
}

.about-title {
    width: 50%;
}

.about-title p {
    color: #212223;
    font-size: 18px;
}

.about-title h1 {
    font-size: 50px;
    font-weight: 600;
}

.about-content {
    width: 40%;
    min-width: 400px;
}

.accordion {
    width: 100%;
    transition: all .20s ease-in-out;
}

.accordion-header {
    color: #333;
    padding: 20px;
    background-color: transparent;
    width: 100%;
    border: none;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: 0.25s ease-in-out;
}

.accordion-header:hover {
    color: #f3800b;
}

.accordion-header::before {
    content: '+';
    font-size: 18px;
    padding-top: 3px;
    background-color: #ededed;
    display: flex;
    align-content: center;
    color: #212223;
    padding: 6px 12px;
    justify-content: center;
}

.accordion-item.active .accordion-header::before {
    content: '-';
    background-color: #212223;
    color: #ffffff;
}

.accordion-content {
    background-color: #fff;
    width: 90%;
    margin-left: 10%;
    height: 0px;
    transform: scaleY(0);
    /* border: 1px solid red; */
    transition: .3s ease-in-out;
}
.flexcounter {
    display: flex;
    align-items: normal;
    gap: 2rem;
    width: 80%;
    margin: auto;
    padding: 100px 0;
}
.cnbox {
    width: 25%;
}
.counter-box {
    width: 100%;
    border: 1px solid #cecece;
    padding: 40px;
    /* margin: 15px 0; */
    position: relative;
    margin-bottom: 1rem;
}
.counter-box .odometer {
    display: inline-block;
    font-size: 70px;
    font-weight: 800;
}
.counter-box h6 {
    width: 100%;
    display: block;
    margin: 0;
    color: #999;
    font-weight: 400;
    font-size: 18px;
}

.accordion-content p {
    font-size: 20px;
}

.accordion-item.active .accordion-content {
    transform: scaleY(1);
    padding: 10px;
    height: auto;
}

.about-crew {
    width: 100%;
}

.about-crew-img {
    width: 100%;
    height: 95vh;
}

.about-crew-content {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.about-crew-box {
    width: 49%;
    background-color: #f3800b;
    padding: 0 70px 70px 70px;
}

.icon-img {
    width: 110px;
    height: 110px;
    margin-bottom: 60px;
}

.about-crew-box h2 {
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 30px;
}

.about-crew-box h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-accreditation-head {
    width: 100%;
    text-align: center;
    margin: auto;
}

.about-accreditation-head .head-img {
    width: 4%;
    min-width: 40px;
    margin: auto;
    margin-bottom: 10px;
}

.about-accreditation-head h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.about-accreditation-head p {
    width: 50%;
    margin: auto;
    color: #212223;
    font-size: 18px;
    margin-bottom: 100px;
}

.about-accreditation-container {
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 110px;
}

.about-accreditation-box {
    width: 24%;
    height: 180px;
    padding: 30px;
    border: 1px solid gray;
    cursor: pointer;
}

.about-accreditation-box img {
    transition: all 0.5s ease-in-out;
}

.about-accreditation-box:hover img {
    opacity: 0.4;
}

.about-accreditation-bottom {
    padding: 0 20px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    color: #212223;
    margin-bottom: 40px;
}

/* ---------------------------------------------------------------------------------------------------------------
CONTACT PAGE
--------------------------------------------------------------------------------------------------------------- */
.contact-hero {
    width: 100%;
    height: 75vh;
    background-image: linear-gradient(180deg, rgba(57, 56, 56, 0.366), rgba(55, 4, 4, 0.541)), url(./assets/contact-asset/image.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    margin-left: 30px;
    width: 45%;
}

.contact-hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-findus {
    width: 100%;
    padding: 100px 20px;
}

.contact-findus-head {
    width: 100%;
    text-align: center;
    margin: auto;
}

.contact-findus-head .head-img {
    width: 4%;
    min-width: 40px;
    margin: auto;
    margin-bottom: 10px;
}

.contact-findus h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.contact-findus p {
    width: 50%;
    margin: auto;
    color: #212223;
    font-size: 18px;
    margin-bottom: 100px;
}

.contact-findus-content {
    text-align: center;
    width: 100%;
    border: 1px solid #cecece;
    padding: 50px;
}

.contact-findus-content h1 {
    font-size: 20px;
    font-weight: 600;
}

.contact-findus-content p {
    width: 100%;
    margin: auto;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: #212223;
}

.contact-findus-content p span {
    display: block;
}

.contact-findus-content button {
    width: 200px;
    margin-top: 20px;
    border: none;
    font-weight: 500;
    padding: 20px;
    background-color: #f3800b;
    font-size: 15px;
}

.contact-form {
    padding: 100px 20px;
    width: 100%;
    background-color: #f9f7ef;
}

.contact-form h1 {
    font-size: 50px;
    font-weight: 900;
}

.contact-form form {
    width: 35%;
    margin-top: 80px;
}

.contact-form .form-group label {
    font-size: 17px;
    color: #212223;
}

.contact-form .form-group input {
    display: block;
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
}

.contact-form .form-group textarea {
    display: block;
    width: 520px;
    height: 50vh;
    padding: 20px;
    margin-bottom: 30px;
}

.contact-form form input[type="submit"] {
    background-color: black;
    width: 130px;
    padding: 20px 0;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

/* ---------------------------------------------------------------------------------------------------------------
LOGISTICS HERO
--------------------------------------------------------------------------------------------------------------- */

.logistics-hero {
    width: 100%;
    height: 95vh;
    background-image: linear-gradient(180deg, rgba(57, 56, 56, 0.366), rgba(55, 4, 4, 0.541)), url(./assets/logistics-asset/hero-back.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-position: 0px -94.5px;
}

.logistics-hero-content {
    margin-top: -150px;
    margin-left: 30px;
    width: 45%;
}

.logistics-hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
    color: #ffffff;
}

.logistics-hero-content p {
    color: #fff;
    line-height: 30px;
    font-weight: 400;
}

.logistics-services {
    display: flex;
    align-items: center;
    margin-top: -94.5px;
}

.logistics-services-content {
    width: 50%;
    padding: 50px 30px 20px 30px;
    background-color: #f9f7ef;
}

.logistics-services-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

.logistics-services-content li {
    font-size: 16px;
    margin-bottom: 20px;
}

.logistics-services-content li::marker {
    color: #f3800b;
    font-size: 20px;
}

.logistics-services-img {
    width: 50%;
    height: auto;
}

.logistics-get {
    width: 100%;
    background-clip: content-box;
    background-color: #f3800b;
    padding: 100px 20px;
}

.logistics-get-content {
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logistics-get-info h1 {
    font-size: 45px;
    margin-bottom: 50px;
    font-weight: 100px;
}

.logistics-get-info p {
    font-weight: 400;
}

.logistics-get-content button {
    width: 300px;
    padding: 5px;
    height: 80px;
    margin-top: 90px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    border: none;
    background-color: black;
    display: block;
}

footer {
    background-color: #212223;
    color: #ffffff;
    padding: 100px 20px 0px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-content {
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.footer-content .contact {
    width: 62%;
}

.footer-content .contact h2 {
    font-size: 18px;
    font-weight: 500;
}

.footer-content .contact a {
    color: #ffffff;
    text-decoration: underline;
    display: block;
    margin-top: 10px;
}

.footer-content .contact address {
    margin-top: 30px;
    font-size: 15px;
    line-height: 25px;
    font-style: normal;
}

.footer-content .contact address span {
    display: block;
}

.footer-content .contact h1,
.footer-content .quick-link h1,
.email-form h1 {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer-content .quick-link {
    width: 35%;
}

.footer-content .quick-link ul {
    margin-top: 15px;
}

.footer-content .quick-link {
    position: relative;
}

.footer-content .quick-link li a {
    font-size: 15px;
    color: #ffffff;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-content .quick-link li::before {
    content: ">";
    position: absolute;
    left: -15px;
}

.email-form {
    width: 33%;
}

.email-form form input:nth-child(1) {
    display: block;
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
}

.email-form form input:nth-child(2) {
    display: block;
    width: 150px;
    padding: 20px;
    background-color: #f3800b;
    border: none;
    margin-bottom: 10px;
}

.email-form form input:nth-child(1)::placeholder {
    font-size: 15px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid gray;
    padding: 30px 0;
}

.copyright h1 {
    font-size: 15px;
    font-weight: 400;
}

@media screen and (max-width:1200px) {
    .track-button {
        display: none;
    }

    .desktop-nav {
        width: 50px;
    }
}

@media screen and (max-width:990px) {
    /* section 7 query */
    .flexcounter {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cnbox {
        width: 100%;
    }
    header {
        padding: 20px 40px;
    }

    .desktop-nav {
        width: 250px;
    }

    .track-button {
        display: block;
        width: 100%;
    }

    .mobile-hamburger {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 12px;
        border: none;
        width: 30px;
        margin-left: calc(100% - 600px);
        position: relative;
        background-color: transparent;
        transition: .25s ease-in-out;
        cursor: pointer;
    }

    .hamburger {
        display: none;
    }

    .navbar.mobileNavEnable {
        display: flex;
        transform: translateX(0);
    }

    .navbar {
        position: fixed;
        width: 400px;
        flex-direction: column;
        justify-content: space-between;
        height: 100vh;
        top: 0;
        left: 0;
        padding: 30px;
        background-color: #fff;
        color: #000;
        transform: translateX(-600px);
        transition: .20s ease-in-out;
    }

    .navbar .logo {
        display: block;
        height: 44px;
        width: 220px;
    }

    .navbar ul {
        flex-direction: column;
        /* margin-top: 70px; */
        gap: 10px;
    }

    .navbar ul li a {
        font-size: 20px;
    }

    .navbar h2 {
        display: block;
        font-size: 12px;
        color:#000;
    }

    /* --------------------------------------------------------------------------------------------------
    ABOUT SECTION
    -------------------------------------------------------------------------------------------------- */
    .about-hero-content {
        margin-left: 150px !important;
        width: 70% !important;
    }

    .about-everyone {
        padding: 100px 0 !important;
    }

    .about-everyone p {
        width: 80%;
        margin: auto;
        text-align: center;
    }

    .about-everyone-content p {
        width: initial;
        text-align: inherit;
    }

    .about-everyone-img {
        height: 100vh;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .about-everyone-content h1 {
        font-weight: 400;
    }

    .about-everyone-content p {
        font-weight: 400;
    }

    .about-value {
        flex-direction: column;
        gap: 100px;
    }

    .about-title {
        width: 100% !important;
    }

    .about-title h1 {
        font-size: 43px !important;
    }

    .about-content {
        width: 100% !important;
    }

    .about-crew-content {
        padding: 0 100px !important;
    }

    .about-crew-box {
        padding: 50px !important;
    }

    .about-accreditation {
        padding: 0 100px !important;
    }

    .about-accreditation-head p {
        width: 100% !important;
    }

    .about-accreditation-container {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .about-accreditation-box {
        width: 48% !important;

    }

    /* --------------------------------------------------------------------------------------------------
    CONTACT SECTION
    -------------------------------------------------------------------------------------------------- */
    .contact-hero-content {
        margin-left: 150px;
        width: 45%;
    }

    .contact-findus h1 {
        font-size: 40px;
    }

    .contact-findus p {
        width: 73%;
    }

    .contact-findus {
        padding: 100px;
    }

    .contact-findus h1 {
        font-size: 22px;
    }

    .contact-findus p {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 0px 100px 100px 100px;
    }

    .contact-form h1 {
        font-size: 39px;
        font-weight: 900;
    }

    .contact-form .form-group input {
        width: 420px;
        margin-top: 5px;
    }

    .contact-form .form-group textarea {
        display: block;
        width: 520px;
        height: 50vh;
        padding: 20px;
        margin-bottom: 30px;
    }

    /* ------------------------------------------------------------------------------------------------------
     LOGISTICS SECTION
------------------------------------------------------------------------------------------------------ */
    .logistics-hero-content {
        margin-left: 150px !important;
        width: 70% !important;
    }

    .logistics-services {
        padding: 100px;
        background-color: #f9f7ef;
    }

    .logistics-services-img {
        width: 50%;
        height: 60vh;
    }

    .logistics-get {
        padding: 100px;
    }

    .logistics-get-content {
        flex-direction: column;
        padding: 20px;
        align-items: start;
    }

    .logistics-get-info h1 {
        font-size: 44px;
        margin-bottom: 36px;
    }

    .logistics-get-content button {
        width: 248px;
        padding: 5px;
        height: 80px;
        margin-top: 35px;
        font-size: 13px;
    }

    footer {
        padding: 100px 100px 0 100px !important;
    }

    .footer-container {
        flex-direction: column;
        row-gap: 50px;
    }

    .footer-content {
        width: 100% !important;
    }

    .footer-content .contact {
        width: 43% !important;
    }

    .footer-content .quick-link {
        width: 52% !important;
    }

    .email-form {
        width: 100% !important;
    }
}

@media screen and (max-width:769px) {
    .copyright h1 {
        font-size: 13px;
        font-weight: 400;
    }
    .desktop-nav {
        display: none;
    }

    .mobile-hamburger {
        margin-left: 0;
    }

    .navbar {
        width: calc(100% -100px);
        transform: translateX(-1000px);
    }
    .flexcounter {
        display: grid;
        grid-template-columns: 1fr;
    }
    .cta-box h2 {
        width: 100%;
        display: block;
        font-size: 29px;
        font-weight: 800;
        margin-bottom: 20px;
    }
    /* -------------------------------------------------------------------------------------------------
    ABOUT SECTION
    ------------------------------------------------------------------------------------------------ */
    .about-hero-content {
        margin-left: 70px !important;
    }

    .about-hero-content h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .about-everyone h1 {
        width: 80%;
        margin: auto;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .about-everyone p {
        font-size: 19px;
    }

    .about-everyone-img {
        margin-top: 60px;
    }

    .about-everyone-content {
        margin-top: 0;
        width: 100%;
        margin-left: 0;
        padding: 30px;
    }

    .about-everyone h1 {
        width: 100%;
        margin: auto;
        font-size: 23px;
        margin-bottom: 25px;
    }

    .about-everyone p {
        font-size: 18px;
    }

    .about-title h1 {
        font-size: 32px !important;
        margin-top: 10px;
    }

    .about-value {
        gap: 70px;
    }

    .accordion-content p {
        font-size: 18px;
    }

    .about-crew-content {
        flex-direction: column;
        margin-top: 20px;
        row-gap: 30px !important;
    }

    .about-crew-box {
        width: 100%;
    }

    .about-crew-box h2 {
        line-height: 33px;
        font-size: 19px;
    }

    .about-accreditation-head h1 {
        font-size: 35px;
    }

    .about-accreditation-box {
        padding: 10px;
    }

    .accreditation-bottom {
        font-size: 18px;
    }

    /* --------------------------------------------------------------------------------------------------
    CONTACT SECTION
    -------------------------------------------------------------------------------------------------- */
    .contact-hero-content {
        margin-left: 70px !important;
    }

    .contact-hero-content h1 {
        font-size: 50px;
    }

    .contact-form h1 {
        font-size: 35px;
    }

    .contact-form .form-group textarea {
        width: 100%;
        display: block;
    }
    .contact-form form  {
        width: 100%;
    }
    /* ------------------------------------------------------------------------------------------------------
LOGISTICS SECTION
------------------------------------------------------------------------------------------------------ */
    .logistics-hero-content {
        margin-left: 70px !important;
    }

    .logistics-hero-content h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .logistics-services {
        padding: 100px 100px 0px 100px;
        flex-direction: column;
        align-items: initial;
        gap: 80px;
    }

    .logistics-services-content {
        width: 100%;
    }

    .logistics-services-content h1 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .logistics-services-img {
        width: 100%;
        height: auto;
    }

    .logistics-get-info h1 {
        font-size: 42px;
        margin-bottom: 33px;
    }

    .logistics-get-content button {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        row-gap: 30px;
    }

    .footer-content .contact {
        width: 100% !important;
    }

    .footer-content .quick-link {
        width: 100% !important;
    }
}

@media screen and (max-width:600px) {
    .about-hero-content {
        margin-left: 25px !important;
        width: 100% !important;
    }

    .about-value {
        padding: 25px;
    }

    .about-crew-content {
        padding: 0px 25px !important;
    }

    .about-accreditation-head h1 {
        font-size: 30px;
    }

    .about-accreditation-head {
        width: 100% !important;
    }

    .about-accreditation {
        padding: 0px 25px !important;
    }

    /* --------------------------------------------------------------------------------------------------
    CONTACT SECTION
    -------------------------------------------------------------------------------------------------- */
    .contact-hero-content {
        margin-left: 25px !important;
    }

    .contact-findus {
        padding: 100px 25px;
    }

    .text-area {
        width: 100% !important;
    }

    .text-area label {
        width: 100%;
        display: block;
    }

    .text-area {
        width: 100% !important;
    }

    .contact-form {
        padding: 0px 25px 100px 25px;
    }

    /* ------------------------------------------------------------------------------------------------------
FOOTER SECTION
------------------------------------------------------------------------------------------------------ */
    .logistics-hero-content {
        margin-left: 25px !important;
        width: 100% !important;
    }
    .logistics-services {
        padding: 100px 25px 0px 25px;
    }
    .logistics-services-content{
        padding: 0;
    }
    .logistics-get {
        padding: 100px 25px 100px 25px;
    }
    footer {
        padding: 100px 25px 0 25px !important;
    }
}