body {
    background-color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 14px;
}

* {
    transition: all 0.5s ease;
}

::selection {
    color: #FFF;
    background: #356221;
}

header {
    background: #356221;
    height: 70px;
}

header a {
    color: #FFF;
}

header .navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.error{color:red!important;
    display:block;width:100%;margin-top:5px;}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 0 3px;
    line-height: 22px;
    border-bottom: transparent solid 2px;
    margin: 0 15px;
    text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link::after {
    content: "";
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link.active {
    border-bottom-color: #FFF;
}
.navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
    border-bottom-color: #FFF;
}
.navbar-expand-lg .navbar-nav .nav-btn {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    height: 30px;
    padding: 5px 15px;
    color: #427827;
    margin-left: 15px;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-btn:hover {
    text-decoration: none;
    color: #FFFFFF;
    background: #427827;
}

.menu {
    width: 35px;
    height: 23px;
    position: relative;
    top: 2px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu span:nth-child(1) {
    top: 0px;
}

.menu span:nth-child(2),
.menu span:nth-child(3) {
    top: 10px;
}

.menu span:nth-child(4) {
    top: 20px;
}

.menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}


@media (min-width: 992px) {
    .menu {
        display: none;
    }
}

.banner-section {
    height: 450px;
    background-color: transparent;
    background-image: url("../img/banner-bg.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    position: relative;
    /*
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 90%, 50% 100%, 0 90%);
    clip-path: polygon(0% 0%, 100% 0, 100% 90%, 50% 100%, 0 90%);
*/
}

.banner-grphic {
    position: absolute;
    top: 0;
    right: 0;
}

.banner-grphic img {
    width: 100%;
}

.banner-content {
    margin: 0 auto;
    max-width: 850px;
    padding: 120px 0 0 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 36px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}

.banner-content .btn-link {
    background: #25283B;
    border: #25283B 1px solid;
    border-radius: 23px;
    height: 46px;
    padding: 10px 25px;
    color: #FFF;
    font-size: 16px;
    margin: 0 5px;
}

.banner-content .btn-link:hover {
    background: #468129;
    border-color: #FFF;
    color: #FFF;
    text-decoration: none;
}

.banner-content .btn-link:active {
    text-decoration: none;
}

.banner-content .btn-link.white {
    background: transparent;
    color: #FFF;
    border-color: #FFF;
}

.banner-content .btn-link.white:hover {
    background: #FFF;
    color: #25283B;
}

.about-company {
    background-color: #FFF;
    padding: 50px 0;
}

.about-company figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: #ddd solid 1px;
}

.about-company .about-content {
    padding: 10px 0;
    font-size: 16px;
    color: #6C737A;
    letter-spacing: 0;
    line-height: 26px;
}

.about-company .about-content h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
}

.about-company .about-content h3 span {
    font-weight: 400;
    color: #515A61;
}

.link-read {
    display: inline-block;
    background: #25283B;
    color: #FFF;
    padding: 10px 20px;
    height: 40px;
    line-height: 20px;
    font-size: 14px;
    border-radius: 20px;
}

.link-read:hover {
    text-decoration: none;
    background: #468129;
    color: #FFF;
}

.link-read img {
    max-height: 20px;
    vertical-align: middle;
}

.company-stats {
    height: auto;
    background-color: transparent;
    background-image: url("../img/stats-bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    position: relative;
    padding: 80px 0 50px;
    text-align: center;
    /*
    -webkit-clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
    */
}

.company-stats h3 {
    font-size: 36px;
    font-weight: 600;
    color: #FFF;
    margin: 0 0 50px 0;
}

.company-stats h3 span {
    font-weight: 400;
}

.stats-box {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    position: relative;
}

.stats-box::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    right: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}

.stats-box.last::after {
    display: none;
}

.stats-box img {
    width: auto;
    height: 64px;
    margin-bottom: 20px;
}

.stats-box h3 {
    font-size: 36px;
    font-weight: 600;
    color: #FFF;
    margin: 0 0 20px 0;
}

.services {
    padding: 60px 0;
    background-color: #F6F6F6;
    text-align: center;
}

.services h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
}

.services h3 span {
    font-weight: 400;
    color: #515A61;
}

.services p {
    font-size: 16px;
    color: #6C737A;
    letter-spacing: 0;
    text-align: center;
    line-height: 26px;
}

.services-list {
    padding: 30px 0;
}

.services-list .service-box {
    background: #FFFFFF;
    box-shadow: 0 0 30px 0 rgba(56, 46, 46, 0.10);
    border-radius: 5px;
    padding: 15px;
    font-size: 14px;
    color: #6C737A;
    letter-spacing: 0;
    text-align: center;
    min-height: 370px;
}

.services-list .service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.services-list .service-box .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: #F0F6ED;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services-list .service-box:hover .service-icon {
    background-color: #66A346;
}

.services-list .service-box .service-icon i {
    background-size: 100% 42px;
    background-repeat: no-repeat;
    background-position: center;
    width: 60px;
    height: 60px;
}

.services-list .service-box .service-icon i.estimates {
    background-image: url(../img/icon-estimates.svg);
}

.services-list .service-box:hover .service-icon i.estimates {
    background-image: url(../img/icon-estimates-w.svg);
}

.services-list .service-box .service-icon i.launch {
    background-image: url(../img/icon-launch.svg);
}

.services-list .service-box:hover .service-icon i.launch {
    background-image: url(../img/icon-launch-w.svg);
}

.services-list .service-box .service-icon i.truck {
    background-image: url(../img/icon-truck.svg);
}

.services-list .service-box:hover .service-icon i.truck {
    background-image: url(../img/icon-truck-w.svg);
}

.services-list .service-box .service-icon i.api {
    background-image: url(../img/icon-api.svg);
}

.services-list .service-box:hover .service-icon i.api {
    background-image: url(../img/icon-api-w.svg);
}


.services-list .service-box h4 {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    word-break: break-word;
}

.services-list .service-box p {
    font-size: 14px;
    color: #6C737A;
    letter-spacing: 0;
    text-align: center;
}

.clients {
    background-color: #FFF;
    padding: 60px 0;
}

.clients h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
    text-align: center;
}

.clients h3 span {
    font-weight: 400;
    color: #515A61;
}

.industries {
    background-color: #F6F6F6;
    padding: 60px 0;
}

.industries h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
    text-align: center;
}

.industries h3 span {
    font-weight: 400;
    color: #515A61;
}


.industries ul {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.industries ul li {
    width: 33.3%;
    padding: 15px 15px 15px 30px;
    float: left;
    font-size: 18px;
    line-height: 20px;
    color: #515A61;
    list-style: none;
    position: relative;
}

.industries ul li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("../img/list-bullet.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    left: 0;
    top: 13px;
}

footer {
    background-color: #282828;
    padding: 30px 0;
    font-size: 13px;
    color: #FFF;
}

footer a {
    color: #FFF;
    margin-right: 10px;
}

footer a:hover {
    color: #FFF;
    text-decoration: underline;
}

footer .copy-right {
    text-align: right;
}



.slider {
    width: 100%;
    margin: 0 auto;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 180px;
    height: 90px;
    border: #DFDFDF solid 1px;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}
.slick-slide a:hover, .slick-slide a:focus{
        outline: none;
}

.slick-slide {
    transition: all ease-in-out .3s;

}

.slick-active {}

.slick-current {
    opacity: 1;
}

.slick-prev,
.slick-prev:hover {
    background: url("../img/left_arrow_grey.svg") no-repeat center;
}

.slick-next,
.slick-next:hover {
    background: url("../img/right_arrow_grey.svg") no-repeat center;
}

.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    line-height: 10px;
    display: none;
}

.slick-prev:before {
    content: "\2039";
    /* background: url("../img/left_arrow_grey.svg") no-repeat center; */
}

.slick-next:before {
    content: "\203A";
}


@media (max-width: 1199px) {
    .banner-section {
        height: 360px;
    }

    .company-stats {
        height: auto;
        background-size: cover;
        padding-top: 120px;
    }

    .services-list .service-box {
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .banner-section {
        height: 300px;
    }

    .banner-content {
        padding: 100px 15px 0 15px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .services-list .service-box {
        margin-bottom: 30px;
        min-height: 340px;
    }

    .industries ul li {
        width: 50%;
    }

    .stats-box::after {
        display: none;
    }

    .stats-box {
        margin-bottom: 30px;
        padding: 20px;
        border: rgba(255, 255, 255, .5) solid 1px;

    }

    header.d-flex.align-items-center {
        position: relative;
        z-index: 102;
        width: 100%;
        align-items: start !important;
        height: auto;

    }

    .navbar-collapse {
        padding: 10px 20px 20px 20px;
        border: rgba(255, 255, 255, .5) solid 2px;
        margin: 20px 0;
        background-color: #3D7024;
    }

    .navbar-collapse li {
        width: 100%;
        padding: 5px 0;
    }

    .footer-links,
    .copy-right {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        padding: 10px;
    }

}

@media (max-width: 767px) {
    .banner-section {
        background-size: cover;
        height: 250px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-content {
        padding: 40px 0 0 0;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .company-stats {
        height: auto;
        background-size: cover;
    }


    .services-list .service-box {
        margin-bottom: 30px;
        min-height: auto;
    }


    .about-company .about-content h3,
    .industries h3,
    .services h3,
    .clients h3,
    .company-stats h3 {
        font-size: 26px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .industries ul li {
        width: 100%;
    }

    footer .copy-right {
        text-align: center;
        padding-top: 10px;
    }

    .slick-slide img {
        margin: 0 auto;
    }

    footer {
        text-align: center;
    }



}



.banner-section.inner-page {
    height: 300px
}

.inner-page .page-info {
    padding-top: 80px;
}

.inner-page h3 {
    font-size: 34px;
    color: #FFF;
    text-align: center;
    margin-bottom: 10px;
}

.inner-page .breadcrumb {
    background-color: transparent;
    text-align: center;
    justify-content: center;
    color: #FFF;
}

.inner-page .breadcrumb-item a {
    color: #FFF;
}

.inner-page .breadcrumb-item.active {
    color: #eaffe6;
}


.inner-page .breadcrumb-item+.breadcrumb-item::before {
    color: #FFF;
}

.about-company-stats {
    background-color: #468129;
    background-image: none;
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.about-company-stats .stats-box::after {
    display: none;
}

.testimonials {
    padding: 50px 0;
    text-align: center;
    background-color: #f8f9fb;
}

.testimonials h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 40px 0;
    text-align: center;
}

.testimonials h3 span {
    font-weight: 400;
    color: #515A61;
}


.testimonial-box {
    width: 50%;
    background-color: #fff;
    border: 1px solid #f5f5f5;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 30px;
    border-radius: 6px;
    position: relative;
}

.testimonial-box p {
    color: #6C737A;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-box .quote {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -62px;
    margin-top: -60px;
    opacity: .14;
}

.testimonial-box .quote img {
    width: 100px;
    height: 103px;
}

.testimonial-author h5 {
    margin-bottom: 0;
}

.award-widget {
    background-color: #fff;
    border: 1px solid #f5f5f5;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.award-widget figure img {
    width: 150px;
    border: 0;
}

.award-widget h4 {
    font-size: 30px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 10px 0;
}

.award-widget p {
    font-size: 18px;
    color: #6C737A;
}



.page-content {
    background-color: #FFF;
    padding: 50px 0 0 0;
}

.page-content figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: #ddd solid 1px;
}

.page-content .content-section {
    padding: 10px 0;
    font-size: 16px;
    color: #6C737A;
    letter-spacing: 0;
    line-height: 26px;
    margin-bottom: 30px;
}

.page-content .content-section h3 {
    font-size: 36px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
}

.page-content .content-section h3 span {
    font-weight: 400;
    color: #515A61;
}

.bg-content {
    padding: 60px 0;
    background-color: #F6F6F6;
    text-align: center;
}

.tow-col-content {
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
}
.tow-col-content:last-child, .tow-col-content.last{
    margin-bottom:0;
}
.tow-col-content .col-content {
    flex: 0 0 60%;
    justify-content: left;
    text-align: left;
    font-size: 16px;
    color: #6C737A;
    letter-spacing: 0;
    line-height: 26px;
}

.tow-col-content .col-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #468129;
    margin: 0 0 20px 0;
}

.tow-col-content .col-image {
    flex: 0 0 40%;
}

.tow-col-content .col-image img {
    width: 200px;
}

.tow-col-content.alternate {}

.tow-col-content.alternate .col-content {
    order: 2;
}

.tow-col-content.alternate .col-image {
    order: 1;
}

.services-list .service-row-one .service-box {
    margin-bottom: 30px;
    min-height: 320px;
}

.services-list .service-row-two .service-box {
    min-height: 280px;
}

.content-section .services-list .service-box p {
    font-size: 16px;
}


.content-section .services-list .service-box h4 {
    font-size: 22px;
}


.card_border{
    border:none;
}

.contact-form {
    background-color: #fff;
    border: 1px solid #f5f5f5;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    margin-bottom: 50px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #515A61;
    margin: 0 0 20px 0;
}

.contact-form .form-group {
    padding: 0 0 10px 0;
}

.contact-form .form-group .form-control {
    height: 40px;
    padding: 10px 20px 10px 40px;
    font-size: 14px;
}

.contact-form .form-group .message-control {
    height: 100px;
}

.contact-form .form-group .input {
    position: relative;
}

.contact-form .form-group img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 18px;
    opacity: .5;
}

.btn-submit {
    background: #25283B;
    border: #25283B 1px solid;
    border-radius: 4px;
    height: 40px;
    padding: 10px 25px;
    color: #FFF;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
}

.btn-submit:hover {
    text-decoration: none;
    background: #468129;
    border-color: #468129;
    color: #FFF;
}

.contact-content {
    padding-left: 0;
    font-size: 16px;
    padding-top: 20px;
}

.contact-content .widget-title {
    font-size: 24px;
    font-weight: 600;
    color: #515A61;

}

.contact-content .list-items {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-content .list-items li {
    margin-bottom: 7px;
    text-transform: capitalize;
    color: #6C737A;
}

.contact-content .text-color {
    color: #515A61;
    font-weight: 600;
    display: block;
}