h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
}

p, a {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    text-decoration: none;
    outline: none;
}

.img-responsive {
    width: 100%;
}

main {
    overflow: hidden;
}

.pageInner-banner {
    min-height: 414px;
    display: flex;
    align-items: center;
}

    .pageInner-banner h1 {
        text-transform: uppercase;
        font-weight: 600;
    }

.btn-green {
    max-width: 204px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px;
    background-color: #8dc13e;
    color: #fff;
    border: 3px solid #8dc13e;
}

    .btn-green:hover {
        color: #8dc13e;
        background-color: rgba(0,0,0,0.1);
    }

.btn-transparent {
    max-width: 204px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px;
    background-color: rgba(255,255,255,0);
    color: #fff;
    border: 3px solid #ffffff;
}

    .btn-transparent:hover {
        color: #8dc13e;
        background-color: rgba(255,255,255,1);
    }

#site-logo-cont img,
footer .f-logo {
    max-width: 500px;
    width: 100%;
}

#site-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    #site-main-nav .hnav {
        display: inline-block;
        vertical-align: middle;
        text-transform: capitalize;
        color: #000000;
        font-size: 16px;
        line-height: 40px;
        padding: 0 9px;
        transition: all 0.3s ease;
    }

        #site-main-nav .hnav:last-child {
            padding: 0;
        }

        #site-main-nav .hnav.active,
        #site-main-nav .hnav:hover {
            color: #8dc13e;
            text-decoration: underline;
            font-weight: 900;
        }

        #site-main-nav .hnav svg {
            height: auto;
            width: 24px;
        }

        #site-main-nav .hnav .bi-person-fill {
            width: 32px;
        }

/* responsive menu css and button - start */
#responsive-menu-btn {
    background-color: #8dc13e;
    border: none;
    padding: 10px 8px;
    /* display: block; */
    max-width: 50px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 99;
    display: none;
    
}

    #responsive-menu-btn::before, #responsive-menu-btn::after {
        content: "";
        display: block;
        width: 100%;
        border: 2px solid #ffffff;
        margin: 0 auto;
        max-width: 25px;
        border-radius: 50px;
        position: relative;
        transition: all 0.3s ease;
    }

    #responsive-menu-btn::before {
        top: 0;
        transform: rotate(0deg);
    }

    #responsive-menu-btn::after {
        bottom: 0;
        transform: rotate(0deg);
    }

    #responsive-menu-btn span {
        content: "";
        width: 100%;
        display: block;
        margin: 5px auto;
        border: 2px solid #ffffff;
        max-width: 29px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    #responsive-menu-btn.rs-menu-close span {
        max-width: 0;
    }

    #responsive-menu-btn.rs-menu-close::before {
        transform: rotate(45deg);
        position: relative;
        top: 8px;
    }

    #responsive-menu-btn.rs-menu-close::after {
        transform: rotate(-45deg);
        position: relative;
        bottom: 9px;
    }

#mobile-main-nav {
    float: none;
    max-width: 500px;
    width: 90%;
    text-align: left;
    padding: 24px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    height: 100vh;
    left: -500px;
    z-index: 99;
    transition: all 0.3s ease;
}

    #mobile-main-nav .hnav {
        display: block;
        color: #333333;
        padding: 12px;
        border-bottom: 2px solid rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

        #mobile-main-nav .hnav:hover {
            background-color: rgba(0,0,0,0.1);
        }

    #mobile-main-nav.mobile-nav-show {
        left: 0;
    }
/* responsive menu css - end */

header {
    position: relative;
}

.site-banner {
    background-image: url('./images/NZPostVehicle.jpg');
    background-size: cover;
    background-position: top center;
    padding: 100px 0;
    min-height: 780px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity to control the dimming */
    background-blend-mode: darken; 
}

    .site-banner .title-area p {
        text-transform: uppercase;
        font-size: 20px;
    }

    .site-banner .title-area h1 {
        text-transform: uppercase;
    }

        .site-banner .title-area h1 span {
            color: #8dc13e;
        }

    .site-banner .description {
        padding-right: 24px;
    }

    .site-banner .btn-green {
        margin-right: 16px;
    }

.h-form {
    max-width: 469px;
    width: 100%;
    display: block;
    margin: 0 33px 0 auto;
    background-color: rgba(255,255,255,0.8);
}

    .h-form form, .loginsection {
        padding: 50px 50px 30px;
        border-bottom: 3px solid #cdccca;
    }

    .h-form h2 {
        font-weight: 400;
    }

#forget-password {
    display: block;
    text-align: center;
    color: #696969;
}

.h-form-bot {
    padding: 20px 50px 40px;
}

    .h-form-bot p {
        text-align: center;
        color: #696969;
    }

        .h-form-bot p a {
            color: #8dc13e;
        }

.form-input-cont {
    position: relative;
    margin-bottom: 24px;
}

    .form-input-cont svg {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 24px;
        width: 24px;
    }

    .form-input-cont input {
        background: none !important;
        border: none;
        width: 100%;
        border-bottom: 1px solid #000000;
        padding: 12px 12px 12px 36px;
        font-family: 'Archivo', sans-serif;
        font-weight: 400;
    }

input::placeholder {
    opacity: 1;
}

.form-input-cont input:focus-visible {
    outline: 3px solid #8dc13e;
}

.h-form button, #btnlogin {
    width: 100%;
    border: none;
    background-color: #000;
    padding: 15px;
}

    .h-form button a, #btnlogin {
        color: #fff;
    }

.icon-text h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.icon-text p {
    margin: 0;
}

.ship-cta {
    background-color: #8dc13e;
    padding: 50px;
}

    .ship-cta h2 {
        font-weight: 400;
        margin-bottom: 32px;
    }

    .ship-cta .row {
        max-width: 670px;
        width: 100%;
        margin: 0 auto;
    }

    .ship-cta input {
        width: 100%;
        padding: 12px 20px;
        border: 1px solid #d8d8d8;
    }

    .ship-cta [type="submit"] {
        border-radius: 0;
        background: #000;
        color: #fff;
        border: 1px solid #000;
    }

.image-text {
    background-size: cover;
    background-position: top center;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-text h4 {
        text-align: center;
        color: #fff;
        font-weight: 400;
        font-size: 20px;
    }

    .image-text.image-text_split {
        min-height: 282px;
    }

.image-text_1 {
    min-height: 572px;
}

#why-choose-us .description {
    max-width: 475px;
}

#why-choose-us ul {
    padding: 0;
    list-style: none;
}

    #why-choose-us ul li {
        position: relative;
        padding-left: 32px;
    }

        #why-choose-us ul li svg {
            position: absolute;
            top: 5px;
            left: 0;
        }

        #why-choose-us ul li p {
            font-weight: 600;
            margin-bottom: 8px;
        }

#why-choose-us img {
    width: auto;
    display: block;
    margin: 0 auto;
}

#testimonials {
    background-color: #ececec;
}

.testimonial-slider .inner-cont {
    max-width: 800px;
    width: 90%;
    display: block;
    margin: 0 auto;
    padding-bottom: 30px;
}

.testimonial-slider .slick-arrow {
    width: 47px;
    height: 47px;
    background-image: url('./images/sliderNavigationIcon.png');
    z-index: 9999;
}

    .testimonial-slider .slick-arrow::before {
        content: '';
    }

    .testimonial-slider .slick-arrow.slick-disabled {
        opacity: 0.5;
    }

.testimonial-slider .slick-prev {
    transform: translate(0, -50%) rotateY(-180deg);
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slick-dots li {
        display: flex;
        width: 18px;
        height: 18px;
        margin: 0 0;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

        .slick-dots li button {
            width: 8px;
            height: 8px;
            background-color: #606060;
            border-radius: 100%;
        }

        .slick-dots li.slick-active button {
            width: 14px;
            height: 14px;
            background-color: #8dc13e;
        }

        .slick-dots li button::before {
            content: '';
        }

.testimonial-content {
    background-image: url('./images/qoute_icon_testimonial_bg.png');
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
}

    .testimonial-content .ratings {
        display: block;
    }

.author-details {
    max-width: max-content;
    margin: 0 auto;
    text-align: left;
}

    .author-details .author-avatar img {
        width: 79px;
        height: 79px;
        border-radius: 100%;
        overflow: hidden;
        object-fit: contain;
        background-color: #fff;
        display: block;
        border: 2px solid #d7d7d7;
        margin-right: 12px;
    }

    .author-details h6,
    .author-details p {
        margin: 0;
    }

    .author-details h6 {
        color: #222222;
    }

    .author-details p {
        color: #767676;
    }

/* about us page*/
#about-us .pageInner-banner {
    background-image: url('./images/DSC01148.jpg');
}

#why-choose-us.about-us img {
    transform: scale(1);
    margin: 0 auto !important;
    display: block;
    max-width: 384px;
    width: 100%;
}

#meet-the-team {
    background-color: #8dc13e;
}

    #meet-the-team h2 {
        text-transform: uppercase;
    }

.team-avatar-cont {
    background-color: #000;
    border: 8px solid #fff;
    max-width: 270px;
    width: 100%;
    height: 313px;
    display: block;
    margin: 0 auto 38px;
    position: relative;
    overflow: hidden;
}

    .team-avatar-cont img {
        position: absolute;
        width: 100%;
        object-fit: cover;
    }

#meet-the-team .c-service-cont {
    max-width: 780px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

#what-we-offer {
    background-color: #f4f4f4;
}

    #what-we-offer .ftr-img {
        max-width: 768px;
        width: 90%;
        display: block;
    }
/* about us page -- end */

/* contact us page  */
#contact-us .pageInner-banner iframe {
    width: 100%;
}

#contact-form-sec p {
    max-width: 960px;
    width: 100%;
    display: block;
    margin: 0 auto 50px;
}

#contact-form-sec .contact-form-container {
    max-width: 1130px;
    width: 90%;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 40px 10px rgba(0,0,0,0.1);
    padding: 73px 32px;
}

#contact-form-sec .forma {
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

    #contact-form-sec .forma label {
        display: block;
        font-family: 'Archivo', sans-serif;
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 12px;
    }

    #contact-form-sec .forma input, #contact-form-sec .forma textarea {
        width: 100%;
        padding: 16px 42px;
        background-color: #f6f6f6;
        border: none;
        font-family: 'Archivo', sans-serif;
        font-weight: 600;
    }

        #contact-form-sec .forma textarea::placeholder {
            opacity: 1;
        }

    #contact-form-sec .forma button {
        width: 100%;
        border: 2px solid #8dc13e;
        background-color: #8dc13e;
        color: #fff;
        padding: 12px;
        font-size: 16px;
        line-height: 17px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        #contact-form-sec .forma button:hover {
            background-color: #ffffff;
            color: #8dc13e;
        }

#contact-info {
    background-color: #8dc13e;
}

    #contact-info a,
    #contact-info p {
        color: #ffffff;
    }
/* contact us page -- end */

/* signup page */
#sign-up .pageInner-banner {
    background-image: url('./images/DSC01148.jpg');
}

#signup-form-sec .contact-form-container {
    max-width: 1130px;
    width: 90%;
    display: block;
    margin: 0 auto 100px;
    box-shadow: 0 0 40px 10px rgba(0,0,0,0.1);
    padding: 73px 32px;
    border: 1px solid #cfcfcf;
}

#signup-form-sec h2 {
    max-width: 460px;
    width: 100%;
    display: block;
    margin: -120px auto 50px !important;
    background-color: #cfcfcf;
    padding: 26px 12px;
    border-radius: 15px;
    position: relative;
}

#signup-form-sec .contact-form-container .info-text,
#contact-form-sec .contact-form-container .info-text {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

#signup-form-sec .row {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
}

    #signup-form-sec .row label {
        display: block;
        font-family: 'Archivo', sans-serif;
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 12px;
    }

    #signup-form-sec .row input[type="text"],
    #signup-form-sec .row input[type="email"],
    #signup-form-sec .row textarea {
        width: 100%;
        padding: 8px 24px;
        background-color: #f6f6f6;
        border: none;
        font-family: 'Archivo', sans-serif;
        font-weight: 600;
    }

        #signup-form-sec .row textarea::placeholder {
            opacity: 1;
        }

#ave_number {
    max-width: 160px;
}

#signup-form-sec .checkBoxes {
    display: flex;
    flex-wrap: wrap;
    max-width: 632px;
    width: 100%;
    margin: 0 auto 50px;
}

    #signup-form-sec .checkBoxes input:checked {
        border-color: #b4b4b4;
        background-color: #dfdfdf;
    }

#signup-form-sec button {
    max-width: 597px;
    width: 100%;
    display: block;
    margin: 0 auto;
    border: 2px solid #8dc13e;
    background-color: #8dc13e;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    line-height: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    #signup-form-sec button:hover {
        background-color: #ffffff;
        color: #8dc13e;
    }
/* signup page -- end */

/* terms and conditions */
#terms-and-condition .pageInner-banner {
    background-image: url('./images/termsAndConditionBanner.png');
}

#tc-sec-1 .btn {
    background-color: #8dc13e;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

    #tc-sec-1 .btn:focus {
        box-shadow: 0 0 0 .25rem rgba(178, 253, 13, 0.25);
    }

#tc-sec-1 ul li {
    margin-bottom: 18px;
    font-family: 'Archivo', sans-serif;
}

    #tc-sec-1 ul li:last-child {
        margin-bottom: 0;
    }

#tc-sec-1 .modal-dialog {
    max-width: 750px;
    margin: 0 auto;
    width: 90%;
}


footer {
    background-color: #e5e5e5;
}

    footer a {
        display: block;
        color: #222;
    }

        footer a:hover {
            color: #8dc13e;
            text-decoration: underline;
        }

.footer-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    max-width: 110px;
}

    .footer-social a {
        background-color: #000;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 100%;
        padding: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.copyright p {
    margin: 0;
    text-align: center;
    padding: 24px 12px;
    color: #989898;
    background-color: #222;
}


@media screen and (max-width:991px) {
    .h-form {
        max-width: 629px;
        margin: 0 auto;
    }

    .icon-text .icon-cont img {
        max-width: 50px;
        width: 100%;
    }

    .icon-text .text-cont {
        padding-left: 10px;
    }

    .icon-text h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .image-text_1 {
        min-height: 282px;
    }
}

@media screen and (max-width:767px) {
    #site-main-nav {
        display: none;
    }

    #responsive-menu-btn {
        display: block;
    }

    #site-logo-cont img, footer .f-logo {
        max-width: 500px;
        width: 70%;
    }

    .icon-text {
        max-width: 360px;
        width: 100%;
        margin: 0 auto 24px;
    }
}
