@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;900&family=Barlow:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');



*,
*::after,
*::before {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    background: #fff;
    color: #030E2C;
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    margin: 0;
    color: #333E38;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 40px;
}

h6 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    color: #0a6735;
    letter-spacing: 1px;
}


a {
    text-decoration: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    color: #333E36;
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    color: #777;
}


button,
input,
textarea,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
    outline-width: 0 !important;
}

    input:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder {
        color: transparent;
    }

img {
    display: inline-block;
    max-width: 100%;
}

i,
span,
a {
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

li {
    display: inline-block;
}

table,
th,
tr,
td {
    border: 1px solid #ddd;
}

th,
tr,
td {
    padding: 10px;
}

hr {
    border-top: 1px solid #eee;
}


/*Section Padding CSS*/

.section-padding {
    padding: 120px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-padding {
        padding: 80px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding: 60px 60px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-padding {
        padding: 50px 35px;
    }
}

@media (max-width: 575px) {
    .section-padding {
        padding: 50px 20px;
    }
}

/*Margin & Padding */

.pad-top-0 {
    padding-top: 0;
}

.pad-bot-0 {
    padding-bottom: 0;
}

.pad-top-20 {
    padding-top: 20px;
}

.pad-bot-20 {
    padding-bottom: 20px;
}

.pad-top-30 {
    padding-top: 30px;
}

.pad-bot-30 {
    padding-bottom: 30px;
}

.pad-top-40 {
    padding-top: 40px;
}

.pad-bot-40 {
    padding-bottom: 40px;
}

.pad-top-50 {
    padding-top: 50px;
}

.pad-bot-50 {
    padding-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

/*Section Title */


.section-title {
    position: relative;
}

    .section-title h2 {
        font-size: 54px;
        font-weight: 700;
        line-height: 60px;
        letter-spacing: -1px;
        margin: 20px 0;
    }

        .section-title h2 b {
            font-weight: 700;
            color: #0a6735;
        }


/*Button Style */

.main-btn {
    display: inline-block;
    background: #0554a3;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 1px;
    padding: 13px 35px;
    border-radius: 5px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}

    .main-btn.btn-white {
        background: #fff;
        color: #333E38;
    }

    .main-btn:hover {
        background-color: #0a6735;
        color: #fff;
    }

/*Form Style CSS */

input,
textarea,
select {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-transition: .3s;
    transition: .3s;
    margin-bottom: 20px;
}

textarea {
    height: 150px;
    resize: none;
}

input[type="submit"],
button[type="submit"] {
    border: none;
    border-radius: 5px;
    display: inline-block;
    background: #333E38;
    color: #fff;
    padding: 12px 20px;
    margin: 20px 0;
    width: auto;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #fff;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

.service-icon img {
    width: 60px !important;
    margin-top: -20px;
}
/*Bootstrap CSS*/
.container-fluid {
    padding: 0;
}

.container {
    max-width: 1200px;
}

/* Bacground Color CSS 
============== */

.gray-bg {
    background: #f6f6f6;
}

.white-bg {
    background: #fff;
}

.green-bg {
    background: #0a6735;
}

.deep-green-bg {
    background: #333E38;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.overlay {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #022b0b6b;
    z-index: -1;
}

/* Background Image
============== */



.hero-area-bg-2 {
    background-image: url(../img/slider/slide-2.jpeg);
}

.hero-area-bg-3 {
    background-image: url(../img/slider/slide-3.jpg);
}

.hero-area-bg-4 {
    background-image: url(../img/slider/slide-4.jpg);
}

/* Pre-Loader CSS 
============== */
#loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0554a3;
    z-index: 999999;
}

    #loader .loading,
    #loader .loading > div {
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    #loader .loading {
        display: block;
        font-size: 0;
        color: #abd044;
        width: 40px;
        height: 40px;
    }

        #loader .loading > div {
            display: inline-block;
            float: none;
            border: 3px solid;
            width: 40px;
            height: 40px;
            background: transparent;
            border-bottom-color: transparent;
            border-radius: 100%;
            -webkit-animation: loading .75s linear infinite;
            -moz-animation: loading .75s linear infinite;
            -o-animation: loading .75s linear infinite;
            animation: loading .75s linear infinite;
        }

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Scroll Top 
============== */
.go-top {
    background-color: #0a6735;
    color: #0554a3;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    bottom: 6em;
    right: 2em;
    font-size: 18px;
    line-height: 43px;
    text-align: center;
    text-decoration: none;
    display: none;
    position: fixed;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .go-top {
        width: 35px;
        height: 35px;
        bottom: 5em;
        right: 2em;
        font-size: 15px;
        line-height: 33px;
    }
}

@media (max-width: 575px) {
    .go-top i:before {
        font-size: 14px;
    }

    .go-top {
        right: 1em;
        bottom: 6em;
        z-index: 1;
    }
}

.go-top:hover {
    background-color: #0554a3;
    color: #0a6735;
}

/* Sticky CSS 
============== */

.header-area .is-sticky .sticky-area {
    background: #fff;
    box-shadow: 0 3px 16px -2px #d0cece;
    z-index: 999 !important;
    -webkit-animation: slideInDown .6s forwards;
    animation: slideInDown .6s forwards;
    margin-top: 0;
}

.header-area .is-sticky .navigation {
    margin-top: 0;
}

.header-area .is-sticky .main-menu .navbar-nav .nav-link {
    padding: 35px 0;
}

.header-area .is-sticky .main-menu li:hover .sub-menu {
    top: 90px;
}

.header-area.absolute-header .is-sticky .navigation {
    background: #333E38;
}

.header-area.absolute-header .is-sticky .sticky-area {
    box-shadow: 0 3px 16px -2px #484e4b;
}


/* Header Top Area
============== */

.header-top {
    background: #f9f9f9;
    font-size: 14px;
    font-weight: 500;
    color: #878986;
    padding: 12px 0;
}

.contact-info i {
    color: #0a6735;
    font-size: 22px;
    margin-right: 5px;
    margin-left: 8px;
    position: relative;
    top: 3px;
}

.site-info .social-area {
    display: inline-block;
    margin-left: 10px;
}

    .site-info .social-area i {
        font-size: 22px;
        color: #0554a3;
        padding-left: 12px;
    }

/* Header Area 
============== */

.header-area .header-btn.main-btn {
    text-transform: uppercase;
}

.header-area.absolute-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
    padding: 20px 0;
    -webkit-transition: .3s;
    transition: .3s;
}

    .header-area.absolute-header .navigation {
        background: transparent;
    }

    .header-area.absolute-header .main-menu .navbar-nav .nav-link {
        color: #fff;
    }

    .header-area.absolute-header .search-trigger i {
        color: #fff;
    }


/* Main Menu 
============== */

.header-area .navigation {
    padding: 0px 30px;
    background: #fff;
    height: 90px;
    position: relative;
    z-index: 9;
}

.main-menu .navbar {
    padding: 0;
}

.main-menu li.nav-item {
    position: relative;
    margin-right: 23px;
}

/*
.main-menu li.nav-item:last-child {
	margin-right: 0;
}
*/

.main-menu .navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 35px 0;
    letter-spacing: 1px;
}


.main-menu .navbar-nav .nav-item .nav-link.active {
    color: #87C03D;
}

.main-menu li.nav-item:hover > a {
    color: #87C03D;
}


/*Dropdown Menu */

.sub-menu {
    position: absolute;
    left: 0;
    top: 120px;
    width: 180px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 99;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

    .sub-menu::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        background: #0554a3;
        visibility: hidden;
        opacity: 0;
    }

.main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 90px;
}

    .main-menu li:hover .sub-menu::after {
        opacity: 1;
        visibility: visible;
    }

.main-menu ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .sub-menu li {
    display: block;
    border-bottom: 1px solid #eee;
}

    .main-menu .sub-menu li:last-child {
        border-bottom: none;
    }

    .main-menu .sub-menu li a {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
        display: block;
        padding: 12px;
        color: #777;
        -webkit-transition: .3s;
        transition: .3s;
    }

    .main-menu .sub-menu li:hover > a {
        background: #0554a3;
        color: #333E38;
    }

.dropdown-toggle::after {
    display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: none;
}

.header-right-content {
    display: flex;
    align-items: center;
    justify-content: end;
}

    .header-right-content .search-trigger i {
        font-size: 20px;
        margin-right: 40px;
        position: relative;
        top: 2px;
    }

    .header-right-content .search-trigger:hover {
        cursor: pointer;
    }


/* Slider CSS 
==================*/

.single-slide-item {
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    color: #fff;
    width: 100%;
    height: 850px;
    display: table;
    position: relative;
    z-index: 1;
}

    .single-slide-item h1 {
        color: #fff;
        font-size: 80px;
        font-weight: 700;
        line-height: 90px;
        letter-spacing: 1px;
        margin: 30px 0;
    }

    .single-slide-item p {
        color: #ccc7c7;
        font-size: 18px;
        line-height: 30px;
    }

.homepage-slides .owl-nav button.owl-prev,
.homepage-slides .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 2px solid;
    font-size: 20px;
    font-weight: 100;
    line-height: 16px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -25px;
    color: #0554a3;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

.homepage-slides .owl-nav button.owl-next {
    left: auto;
    right: 15px;
}

.homepage-slides:hover .owl-nav button.owl-prev,
.homepage-slides:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: .3;
}

.homepage-slides .owl-nav button.owl-prev:hover,
.homepage-slides .owl-nav button.owl-next:hover {
    background: #0554a3;
    color: #fff;
    border-color: #0554a3;
    opacity: 1;
}

.hero-area-content {
    display: table-cell;
    vertical-align: middle;
}

    .hero-area-content .main-btn {
        margin: 25px 0;
    }

/*Info Section */

.info-area {
    position: relative;
    margin-top: -100px;
    z-index: 9;
}

.info-bg {
    background-image: url(../img/info-bg.jpg);
}

    .info-bg.bg-cover {
        height: 282px;
        background-position: top center;
        border-radius: 5px 0 0 5px;
    }

.info-content {
    padding: 35px;
    border-left: 10px solid #0554a3;
    height: 100%;
}

    .info-content h5 {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .info-content a {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 20px;
        letter-spacing: 1px;
        color: #87C03D;
        margin: 15px 0;
    }

.info-inner {
    background: #fff;
    box-shadow: 0 1px 4px -2px #6e7b71;
    border-radius: 5px;
}

.info-founder {
    background: #0554a3;
    height: 100%;
    text-align: center;
    padding: 33px 50px;
    border-radius: 5px;
}

    .info-founder i:before {
        font-size: 50px;
    }

    .info-founder p.highlight {
        font-size: 60px;
        font-weight: 600;
        font-family: 'Barlow Condensed', sans-serif;
        color: #333E38;
        margin: 30px 0;
    }

    .info-founder p {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #333E38;
    }

/* About Section
============== */

.about-img-wrap {
    max-width: calc(100% - 60px);
}

    .about-img-wrap img {
        border-radius: 8px;
    }

.about-feature-list ul li {
    position: relative;
    padding-left: 30px;
    color: #777;
    margin-bottom: 20px;
}

    .about-feature-list ul li i {
        position: absolute;
        top: 0;
        left: 0;
        color: #0a6735;
        font-size: 18px;
        font-weight: 600;
    }

.about-feature-list {
    margin-top: 20px;
}


/* Service Section 
============== */

.services-area {
    background-image: url(../img/service/service-bg.jpg);
}

.single-service-area {
    background: #fff;
    padding: 50px 40px;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid #fff;
    border-radius: 5px;
    box-shadow: 0 3px 9px -2px #d0cece;
    transition: .3s;
    min-height: 535px;
}

.service-icon i:before {
    font-size: 55px;
    color: #0a6735;
}

.single-service-area .num {
    font-size: 60px;
    font-weight: 600;
    color: #eee;
    position: absolute;
    top: 50px;
    right: 35px;
    transition: .4s;
}

.single-service-area h5 {
    font-size: 24px;
    margin: 40px 0px 20px;
}

single-service-area.active {
    border-bottom: 4px solid #0554a3;
    border-radius: 5px;
}

    single-service-area.active .num {
        color: #0554a3;
    }

.single-service-area:hover {
    border-bottom: 4px solid #0554a3;
    border-radius: 5px;
}

    .single-service-area:hover .num {
        color: #0554a3;
    }

.service-slider .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #0554a3;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 20px;
}

.service-slider .owl-dots button.owl-dot.active span {
    width: 35px;
    height: 10px;
    border-radius: 7px;
    background: #0a6735;
}

.service-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.single-service-area .link_icon i {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

    .single-service-area .link_icon i:hover {
        color: #0554a3;
    }

/* CTA Section 
============== */

.cta-area {
    background-image: url(../img/cta-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 600px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .cta-area::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #021d05;
        opacity: .7;
    }

    .cta-area h2 {
        color: #FFF;
        font-size: 60px;
        font-weight: 700;
        text-align: center;
        z-index: 999;
        bottom: -70px;
        letter-spacing: 1px;
    }

/*Pop up Video */

.pop-up-video {
    position: relative;
    z-index: 1;
}

    .pop-up-video a.video-play-btn {
        font-size: 20px;
        color: #fff;
        border: 2px solid #10CC75;
        border-radius: 50%;
        padding: 15px;
        width: 70px;
        height: 70px;
        line-height: 38px;
        text-align: center;
        position: absolute;
        top: 10%;
        left: 50%;
        margin-left: -35px;
        margin-top: -35px;
        background: #10CC75;
        cursor: pointer;
        z-index: 9;
    }

@keyframes btnIconRipple {
    0% {
        border-width: 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    80% {
        border-width: 1px;
        -webkit-transform: scale(1.35);
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
    }
}

.pop-up-video a::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: inherit;
    border: 1px solid #0554a3;
    -webkit-animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
    animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}

.pop-up-video i:before {
    margin-left: 5px;
}

/* Feature Section 
============== */

.single-feature-item .feature-icon {
    background: #0554a3;
    display: inline-block;
    padding: 30px 0;
    width: 80px;
    height: 80px;
    text-align: center;
    float: left;
    border-radius: 5px;
}

.feature-icon i:before {
    font-size: 50px;
}

.feature-image {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

    .feature-image:after {
        position: absolute;
        content: " ";
        width: 100%;
        height: 100%;
        top: -40px;
        left: -40px;
        border: 10px solid #0554a3;
        z-index: -1;
        border-radius: 5px;
    }

    .feature-image img {
        border-radius: 10px;
    }

.feature-content {
    margin: 40px 0;
}

    .feature-content h5 {
        font-size: 20px;
        padding-left: 100px;
        margin-bottom: 5px;
    }

    .feature-content p {
        padding-left: 100px;
    }

.key-feature {
    padding: 20px;
    border-radius: 7px;
    margin-top: 30px;
}

    .key-feature h6 {
        padding-left: 100px;
        font-size: 60px;
        letter-spacing: 2px;
    }

    .key-feature p {
        padding-left: 100px;
        margin: 0;
        color: #fff;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .key-feature .feature-icon {
        color: #fff;
        font-size: 60px;
        float: left;
        margin-top: 25px;
    }

/* Project Section 
============== */

.project-bg {
    background-image: url(../img/project/project-1-1.jpg);
}

.project-bg-2 {
    background-image: url(../img/project/project-1-2.jpg);
}

.project-bg-3 {
    background-image: url(../img/project/project-1-3.jpg);
}

.project-bg-4 {
    background-image: url(../img/project/project-1-4.jpg);
}

.project-bg-5 {
    background-image: url(../img/project/project-1-5.jpg);
}

.project-bg-6 {
    background-image: url(../img/project/project-1-6.jpg);
}


.single-project-item.bg-cover {
    height: 450px;
}

.single-project-item {
    position: relative;
    z-index: 1;
    border-bottom: 4px solid #0a6735;
}

    .single-project-item:after {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #222;
        opacity: .3;
        z-index: -1;
        content: "";
    }

    .single-project-item:hover {
        border-bottom: 4px solid #0554a3;
    }

.project-inner .hover-info {
    position: absolute;
    left: 0;
    bottom: 20px;
    transform: translateY(50px);
    width: 100%;
    z-index: 2;
    padding: 35px 40px 35px 38px;
    max-width: 500px;
    transition: all ease 0.3s;
    transition-delay: 0.07s;
}

.single-project-item:hover .hover-info {
    opacity: 1;
    transform: translateY(0);
}

.project-inner:after {
    content: " ";
    width: 100%;
    height: 100%;
    background-color: #0c3e25d1;
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0px;
    transition: all ease 0.3s;
}

.single-project-item:hover .project-inner:after {
    opacity: 1;
}

.hover-info h4 {
    color: #fff;
    margin-bottom: 15px;
}

.hover-info a {
    color: #0554a3;
    font-size: 16px;
}

.project-inner .project-icon {
    position: absolute;
    right: 35px;
    top: 30px;
    opacity: 0;
    z-index: 2;
    transition: all ease 0.3s;
    font-size: 30px;
    cursor: pointer;
}

.single-project-item:hover .project-icon {
    opacity: 1;
    color: #0554a3;
}

.single-project-item:hover .hover-info h4 {
    color: #0554a3;
}

.project-area .section-title {
    margin-bottom: 50px;
}


/* Testimonial Section 
============== */

.single-testimonial-item img {
    max-width: 55px;
    height: auto;
    float: left;
}

.author-desc {
    margin-top: 30px;
}

    .author-desc h5 {
        font-size: 18px;
        padding-left: 80px;
    }

    .author-desc span {
        font-size: 90%;
        opacity: .5;
        padding-left: 10px;
    }

.single-testimonial-item {
    background: #fff;
    padding: 50px 50px 70px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    border-radius: 5px;
    box-shadow: 0 3px 9px -2px #d0cece;
}

.testimonial-icon i {
    font-size: 25px;
    background: #0554a3;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    top: -20px;
    color: #fff;
    z-index: 9;
}

.single-testimonial-item:hover .testimonial-icon i {
    background: #0a6735;
}

.testimonial-area .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #0554a3;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 20px;
}

.testimonial-area .owl-dots button.owl-dot.active span {
    width: 35px;
    height: 10px;
    border-radius: 7px;
    background: #0a6735;
}

.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section 
============== */

.contact-section {
    background-image: url(../img/contact-bg.jpg);
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

    .contact-section .overlay {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-color: #024021f2;
        top: 0;
        left: 0;
        z-index: -1;
    }


.contact-content {
    margin-top: 50px;
}

.contact-section .contact-info i {
    font-size: 30px;
    margin-left: 0;
    background: #87C03D;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    float: left;
}

.contact-inner {
    margin-bottom: 30px;
}

    .contact-inner h6 {
        padding-left: 100px;
        padding-top: 5px;
    }

    .contact-inner p {
        padding-left: 100px;
    }

.contact-section .section-title h2 {
    color: #fff;
}

    .contact-section .section-title h2 b {
        color: #0a6735;
    }

.contact-section p {
    color: #fff;
}

.contact-section input,
.contact-section textarea {
    border-color: #5a8e5a;
}

.contact-section button.main-btn {
    border: none;
}

    .contact-section button.main-btn:hover {
        background: #fff;
        color: #0a6735;
    }

.contact-form {
    margin-top: 80px;
}

/* Blog Section 
============== */

.single-blog-item {
    background: #fff;
    box-shadow: 0 3px 9px -2px #d0cece;
    border-radius: 5px;
}

    .single-blog-item.large {
        width: 100%;
    }

    .single-blog-item.small .blog-bg img {
        height: 150px;
    }

    .single-blog-item.large .blog-content {
        padding: 30px 30px 40px;
    }

    .single-blog-item.small .blog-content {
        padding: 20px 5px;
    }

.blog-bg img {
    border-radius: 5px 5px 0px 0px;
}

.single-blog-item.small .blog-bg img {
    border-radius: 5px 0px 0px 5px;
}

.blog-meta p i {
    color: #0a6735;
    font-size: 25px;
    margin-right: 10px;
}

.blog-meta p {
    font-size: 14px;
    color: #333E38;
}

.single-blog-item.large .blog-content a {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #0a6735;
}

    .single-blog-item.large .blog-content a:hover {
        color: #87C03D;
    }

.single-blog-item.small .blog-content a {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #0a6735;
}

    .single-blog-item.small .blog-content a:hover {
        color: #87C03D;
    }

.pagination {
    margin-top: 60px;
}

.page-link {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a6735;
    border-color: #0a6735;
    color: #fff;
}

.page-item:first-child .page-link {
    display: inline-flex;
    background: #0a6735;
    border-color: #0a6735;
    border-radius: 0;
}

.page-link,
.page-link.active {
    border-radius: 0;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-color: #ddd;
    color: #0B0D26;
}

    .page-link:hover,
    .page-link.active:hover {
        background: #0a6735;
        border-color: #0a6735;
        color: #fff;
    }

.blog-content .link_icon i {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

/* Footer Area
============== */

.footer-area {
    background: #0554a3;
    color: #fff;
}

    .footer-area h6 {
        color: #fff;
        margin: 20px 0;
    }

    .footer-area p {
        margin-top: 16px;
    }

.contact-info p {
    margin-bottom: 10px;
}

.footer-area ul li a {
    display: block;
    color: #cfd9d3;
    padding: 7px 0;
}

    .footer-area ul li a:hover {
        color: #fff;
    }

.subscribe-form button {
    padding: 18px 50px;
    font-size: 18px;
    line-height: 13px;
    background: rgb(252, 219, 90);
    color: rgb(255, 255, 255);
    transition: all 0.3s ease-out 0s;
    border: 0px;
    cursor: pointer;
    letter-spacing: 1px;
}

.subscribe-form {
    position: relative;
}

    .subscribe-form input {
        border: 0;
        background: #fff;
    }

        .subscribe-form input::placeholder {
            color: #797A7E;
            font-size: 14px;
        }

.footer-up {
    padding: 60px 0;
}

    .footer-up p {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        color: #cfd9d3;
    }


    .footer-up .social-area i {
        color: #cfd9d3;
        font-size: 21px;
        margin-right: 10px;
        margin-top: 20px;
    }

.footer-bottom {
    padding: 15px 0;
    background: #004385;
}

    .footer-bottom p {
        color: #cfd9d3;
        font-size: 14px;
        margin: 0;
    }

p.privacy {
    text-align: right;
}

/* Feature Section # 02
============== */

.feature-area.theme-2 .single-feature-item {
    box-shadow: 0 0 10px -2px #6b7d6f;
    border-radius: 5px;
    margin-top: -50px;
    transform: translateY(0);
    transition: .5s;
}

    .feature-area.theme-2 .single-feature-item:hover {
        transform: translateY(-20px);
    }

.feat-icon i:before {
    font-size: 55px;
    color: #0554a3;
}

.feat-icon {
    background: #0a6735;
    padding: 75px 30px 50px;
    height: 100%;
    border-radius: 5px 0 0 5px;
}

.feat-content {
    background: #fff;
    padding: 30px;
    border-radius: 0px 5px 5px 0;
}

    .feat-content h5 {
        font-size: 24px;
        font-weight: 500;
    }

    .feat-content p {
        margin: 15px 0;
    }

    .feat-content a {
        font-size: 20px;
        color: #87C03D;
    }

.feature-area.theme-2 {
    margin-top: -50px;
    position: relative;
    z-index: 9;
}

/* About Section # 02
============== */

.about-certify {
    background: #0554a3;
    padding: 25px;
    border-radius: 5px;
}

    .about-certify p {
        color: #333E38;
    }

.about-icon img {
    width: 55px;
}

.about-certify h5 {
    font-size: 22px;
    margin: 20px 0;
}

/* Service Section # 02
============== */

.service-bg {
    background-image: url(../img/service/service-img.jpg);
}

.service-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    border-radius: 10px;
    position: relative;
}

.service-area.theme-2 .pop-up-video {
    position: absolute;
    top: 50%;
    left: 50%;
}

.single-service-area.active .num {
    color: #0554a3;
}

.single-service-area.active {
    border-bottom: 4px solid #0554a3;
}

/* CTA Section # 02
============== */

.cta-area-2 {
    background-image: url(../img/cta-bg-2.jpg);
    /* background: #0a6735; */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

    .cta-area-2:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #014824;
        opacity: .9;
        z-index: -1;
    }

    .cta-area-2 h2 {
        font-size: 50px;
        font-weight: 600;
        color: #fff;
    }

    .cta-area-2 .main-btn {
        margin-top: 28px;
    }

        .cta-area-2 .main-btn:hover {
            background: #fff;
            color: #333E38;
        }

/* Skill Section  
============== */

.skill-bg {
    background-image: url(../img/skill-bg.jpg);
}

.skill-bg {
    width: 50%;
    position: relative;
    background-size: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .skill-bg {
        display: none;
    }
}

@media (max-width: 767px) {
    .skill-bg {
        display: none;
    }
}

.skill-content {
    width: 50%;
    padding: 75px;
    background: #0a6735;
}

.skill-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

    .skill-area .section-title h2 {
        color: #fff;
    }

.single-bar-item h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

.progress-bar-area {
    margin-top: 40px;
}

.barfiller .fill {
    background: #0554a3 !important;
}

.skill-area .section-title h2 b {
    color: #0554a3;
}

.skill-area p {
    color: #fff;
}

/* Process Section
============== */

.process-item-wrap {
    margin-top: 50px;
}

.single-process-item {
    text-align: center;
    position: relative;
}

.process-num {
    position: absolute;
    right: 70px;
    top: 0;
    z-index: 9;
    background: #0554a3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 7px;
}

    .process-num p {
        font-size: 16px;
        color: #fff;
    }

.process-icon {
    border: 7px solid #f6f6f6;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 35px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: .3s;
}

    .process-icon img {
        width: 55px;
        height: auto;
    }

.single-process-item h5 {
    font-size: 22px;
    margin: 25px 25px;
    line-height: 30px;
}

.single-process-item:hover .process-icon {
    border-color: #87C03D;
}

/* Team Section 
============== */

.team-member-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

.single-team-member {
    position: relative;
    margin-top: 25px;
    margin-bottom: 50px;
}

    .single-team-member .team-content {
        position: absolute;
        bottom: -31px;
        left: 0;
        right: 0;
        background: #fff;
        text-align: center;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
        border-radius: 0 0 5px 5px;
    }

.team-content .team-title {
    font-weight: 500;
    margin-bottom: -3px;
}

    .team-content .team-title a {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #191919;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
        margin: 20px 0 10px;
    }

.team-content .team-subtitle p {
    font-size: 16px;
    margin: 0;
    color: #333E38;
}

ul.team-social {
    list-style: none;
    margin: 0;
    padding-bottom: 20px;
}

    ul.team-social li {
        display: inline-block;
    }

        ul.team-social li a {
            font-size: 18px;
            padding: 10px;
            transition: all .3s ease-out;
        }

.single-team-member:hover .team-content {
    background: #0554a3;
}

    .single-team-member:hover .team-content .team-title a {
        color: #fff;
    }


/* Client Section
============== */

.item-clients-img img {
    opacity: .3;
}

    .item-clients-img img:hover {
        opacity: .7;
    }

/* Breadcrumb Area 
============== */

.breadcroumb-area {
    background-image: url(../img/bread-bg.jpg);
}

.breadcroumb-area {
    height: 400px;
    background-size: cover;
    background-position: center center;
    background-color: #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .breadcroumb-area:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #0554a3;
        opacity: .5;
        z-index: -1;
    }

    .breadcroumb-area .breadcroumb-title h1 {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 70px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .breadcroumb-area h5 a {
        font-size: 20px;
        color: #fff;
    }

    .breadcroumb-area h5 {
        color: #fff;
        font-size: 20px;
        margin-top: 25px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .breadcroumb-area .breadcroumb-title h1 {
        font-size: 35px;
    }
}

/* Portfolio Page
============== */

ul.port-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    ul.port-menu {
        float: left;
    }
}

@media (max-width: 575px) {
    ul.port-menu {
        float: left;
    }
}

ul.port-menu.recent {
    float: none;
}

ul.port-menu li {
    display: inline-block;
    padding: 20px;
    color: #777;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    ul.port-menu li {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    ul.port-menu li {
        padding: 10px;
    }
}

.port-menu li.active {
    color: #00B965;
}

.port-menu li:hover {
    color: #0554a3;
}

.portfolio-list {
    overflow: hidden;
    margin-left: -1%;
    margin-top: 20px;
}

.single-portfolio-item {
    float: left;
    width: 32.33%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #191919;
    position: relative;
    margin-left: 1%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item {
        width: 100%;
    }
}

.single-portfolio-item.large {
    height: 610px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item.large {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item.large {
        height: 300px;
    }
}

.single-portfolio-item.wide {
    width: 65.55%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-portfolio-item.wide {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-portfolio-item.wide {
        width: 100%;
    }
}

.single-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-portfolio-item .details {
    background: #0a6735;
    width: 100%;
    height: 100%;
    padding: 50px 35px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.single-portfolio-item .info {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    margin-top: -20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    .single-portfolio-item .info a i {
        height: 50px;
        width: 50px;
        line-height: 48px;
        text-align: center;
        border-radius: 50%;
        border: 2px solid #eee;
        font-size: 20px;
        color: #fff;
        display: inline-block;
    }

        .single-portfolio-item .info a i:hover {
            background: #0554a3;
            border-color: #0554a3;
            color: #fff;
        }

.portfolio-list .details i {
    font-size: 25px;
}

.single-portfolio-item .info a:hover {
    color: #FFD857;
}

.single-portfolio-item .info a {
    font-size: 24px;
    letter-spacing: 1px;
    color: #FFF;
    margin-bottom: 20px;
}

.single-portfolio-item h5 {
    margin-bottom: 10px;
}

.single-portfolio-item:hover .details {
    opacity: .9;
    visibility: visible;
    top: 0;
}

    .single-portfolio-item:hover .details .info {
        opacity: 1;
        margin-top: 0;
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

.portfolio-list.recent {
    margin-top: 0;
}

ul.port-menu.recent {
    list-style: none;
    padding: 0;
    bottom: 0;
    text-align: center;
    position: inherit;
}

.load-more-btn {
    text-align: center;
}

    .load-more-btn .main-btn {
        padding: 10px 20px;
        margin-top: 60px;
    }

.portfolio-single-section h3 {
    margin: 30px 0;
}

.project-info {
    border: 1px solid #ddd;
    padding: 30px;
}

    .project-info h5 {
        margin-bottom: 40px;
    }

    .project-info p {
        margin: 25px 0;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }


    .project-info span {
        float: right;
    }

    .project-info .main-btn {
        padding: 12px 18px;
        font-size: 15px;
        margin: 20px 0;
        width: 60%;
        margin-left: 20%;
    }

.project-overview h5 {
    margin: 30px 0;
}

.project-overview p:last-child {
    margin-bottom: 40px;
}

.port-img img {
    min-width: 540px;
    min-height: 540px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .port-img img {
        min-width: 300px;
        min-height: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .port-img img {
        min-width: 200px;
        min-height: 200px;
        margin-bottom: 30px;
    }
}

/* Single Service Page 
============== */

.service-list {
    background: #F6F6F6;
    padding: 30px;
    margin-bottom: 30px;
}

    .service-list h5 {
        margin: 30px 0;
    }

    .service-list a {
        display: block;
        color: #b3abab;
        padding: 15px;
        margin-bottom: 20px;
        background: #fff;
    }

        .service-list a.active {
            background: #87C03D;
            color: #fff;
        }

        .service-list a span {
            float: right;
        }

.single-service h2 {
    margin: 30px 0;
}

.single-service h5 {
    font-size: 24px;
    margin: 20px 0;
}

.single-service p {
    font-size: 16px;
    line-height: 28px;
}

.single-service-bg img {
    width: 100%;
}

.helpline-section {
    background: #0554a3;
    color: #fff;
    padding: 20px;
    margin-top: 35px;
    height: 272px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .helpline-section h4 {
        color: #fff;
        margin-top: 15px;
    }

    .helpline-section p {
        color: #333E38;
        margin: 20px 0;
    }

    .helpline-section button {
        margin-top: 15px;
    }

.question-section h5 {
    margin: 30px 0;
}

/* Single Project Page 
============== */

.project-single-section h3 {
    font-size: 35px;
    margin-bottom: 30px;
}

.project-info {
    border: 1px solid #ddd;
    padding: 30px;
}

    .project-info h5 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .project-info p {
        margin: 25px 0;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .project-info span {
        float: right;
    }

    .project-info .main-btn {
        padding: 14px 28px;
        font-size: 18px;
        margin: 20px 0px 20px 20%;
        width: 60%;
    }

.project-overview h5 {
    font-size: 24px;
    margin: 30px 0;
}

.project-overview p:last-child {
    margin-bottom: 40px;
}

.project-overview p {
    text-align: justify;
    font-size: 15px;
}

/* Blog Page 
============== */

.blog-search input {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
    padding-bottom: 10px;
}

.blog-search button {
    background: none;
    margin: 0;
    padding: 0;
}

    .blog-search button i {
        color: #191919;
        font-size: 20px;
        opacity: .5;
        position: absolute;
        top: 18px;
        right: 28px;
    }

.blog-category h5,
.archive h5 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0;
}

.blog-category a,
.archive a {
    display: block;
    color: #191919;
    font-size: 20px;
    margin-bottom: 20px;
}

    .blog-category a:hover,
    .archive a:hover {
        color: #87C03D;
    }

    .blog-category a.active,
    .archive a.active {
        color: #87C03D;
    }

.recent-post h5 {
    margin: 30px 0;
    margin-top: 50px;
    font-weight: 600;
}

.single-recent-post {
    display: flex;
    gap: 20px;
}

.blog-thumb {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
}

    .blog-thumb img {
        border-radius: 4px;
    }



.single-recent-post h6 {
    font-family: 'Barlow Condensed';
    font-size: 18px;
    margin: 0;
    color: #0a6735;
    text-transform: capitalize;
}

p.blog-date {
    font-size: 90%;
}

.single-recent-post {
    padding-bottom: 25px;
}

    .single-recent-post .recent-post-content {
        display: block;
        padding-left: 110px;
    }

    .single-recent-post h6 a {
        color: #00B965;
        line-height: 1.5;
    }

.popular-tag h5 {
    margin: 30px 0;
    margin-top: 50px;
    font-weight: 600;
}

.popular-tag span {
    padding: 8px 15px;
    background: #0a6735;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 15px;
    border-radius: 4px;
}

.popular-tag a {
    color: #fff;
    padding: 5px;
}

.popular-tag span.active {
    background: #0554a3;
}

.popular-tag span:hover {
    background: #0554a3;
}

    .popular-tag span:hover a {
        color: #fff;
    }

.author-profile img {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 4px;
}

.comments-section h5 {
    font-size: 22px;
    margin: 40px 0;
}

.comments-section img {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 4px;
}

.single-comments-section p {
    padding-left: 120px;
}

a.reply-btn {
    font-size: 18px;
    color: #0a6735;
    border: 1px solid #ddd;
    padding: 4px 18px;
}

.comments-form h3 {
    margin: 50px 0;
}

.author-info {
    padding-left: 120px;
}

.single-comments-section p span {
    padding-left: 50px;
    font-size: 15px;
    float: right;
}

.blog-search {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
}

.blog-category,
.recent-post,
.archive,
.popular-tag {
    border: 1px solid #ddd;
    padding: 10px 30px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.helpline-section {
    background-size: cover;
    background-position: center center;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    border-radius: 4px;
}

.helpline-content h4 {
    color: #ffff;
}

.helpline-content p {
    color: #fff;
    margin-top: 20px;
}

.helpline-content button {
    z-index: 9;
    position: relative;
}

#blog-page .blog-content {
    padding: 25px;
}

    #blog-page .blog-content p.blog-meta {
        font-size: 16px;
    }

    #blog-page .blog-content a {
        font-size: 24px;
        font-weight: 500;
        line-height: 34px;
        color: #0a6735;
        margin: 20px 0;
    }

#blog-page .single-blog-item {
    margin-bottom: 50px;
}

#blog-page .blog-content a.read-more {
    font-size: 18px;
    color: #777;
}

    #blog-page .blog-content a.read-more:hover {
        color: #0554a3;
    }



/* Single Blog Page 
============== */

#blog-page .blog-meta {
    margin: 10px 0;
}

.blog-meta span i {
    color: #87C03D;
    font-size: 20px;
    margin-right: 10px;
}

.single-blog-wrap img {
    border-radius: 4px;
}

.single-blog-wrap h3 {
    font-size: 35px;
    margin: 20px 0;
}

.single-blog-wrap h5 {
    margin: 20px 0;
}

img.blog-inside {
    border-radius: 4px;
}

/*Contact Page */

#contact .contact-info i {
    font-size: 30px;
    margin-left: 0;
    background: #87C03D;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    float: left;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #9A9A9A;
}

#contact button.main-btn {
    border: none;
    width: 200px;
}

/* Shop Page 
============== */

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background: #0554a3;
    color: #333E38;
    border: none;
    outline: none;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
}

.sidebar-search-box button {
    position: absolute;
    top: -10px;
    right: 0;
    background: none;
}

    .sidebar-search-box button i:before {
        font-size: 22px;
        padding-right: 15px;
    }

.single-sidebar h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

.categories-box {
    border: 1px solid #ddd;
    padding: 25px;
}

    .categories-box ul li {
        display: block;
        position: relative;
        padding: 15px 0;
    }

        .categories-box ul li a {
            font-size: 20px;
            font-weight: 400;
            color: #9A9A9A;
        }

            .categories-box ul li a:hover {
                color: #0a6735;
            }

select.selectpicker {
    width: 250px;
    float: right;
}

    select.selectpicker option {
        color: #333E38;
    }

.bootstrap-select .dropdown-menu > li.selected > a {
    background: #87C03D;
    color: #fff;
}

.all_product_item_image {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: block;
}

    .all_product_item_image img {
        width: 100%;
        border-radius: 5px;
    }

.all_product_hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    z-index: 1;
}

    .all_product_hover:before {
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(91, 140, 81, 0.5);
        content: "";
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        transform: translate3d(-100%, 0px, 0px);
        z-index: -1;
    }

.all_product_icon i {
    height: 70px;
    width: 70px;
    background: #0a6735;
    color: #0554a3;
    font-size: 30px;
    display: inline-block;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .all_product_icon i:hover {
        background: #0554a3;
        color: #ffffff;
    }

.all_products_single h4 {
    font-size: 24px;
    color: #333E38;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    line-height: 30px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .all_products_single h4 a {
        color: #87C03D;
        transition: 500ms;
    }

        .all_products_single h4 a:hover {
            color: #0a6735;
        }

.all_products_single p {
    font-size: 18px;
    color: #878986;
    margin-bottom: 10px;
    line-height: 28px;
}

.all_products_single:hover .all_product_hover:before {
    transform: translate3d(0px, 0px, 0px);
}

.all_products_single:hover .all_product_icon i {
    transform: scale(1);
}

/* Cart Page 
============== */


.table-content table {
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    width: 100%;
    color: #444;
}

    .table-content table th {
        font-weight: 600;
        padding: 20px 10px;
        text-align: center;
        text-transform: uppercase;
        vertical-align: middle;
        white-space: nowrap;
        font-size: 15px;
    }

    .table-content table th,
    .table-content table td {
        border-bottom: 1px solid #e5e5e5;
        border-right: 1px solid #e5e5e5;
    }

    .table-content table td {
        padding: 35px 10px;
        vertical-align: middle;
        font-size: 14px;
    }

.prod_thum {
    display: table-cell;
}

.prod_title {
    display: table-cell;
    padding-left: 20px;
}


.table-content table td.product-name a,
.product-stock-status span {
    font-size: 20px;
    font-weight: 500;
    margin-left: 10px;
    text-transform: capitalize;
    color: green;
}

.product-stock-status span {
    color: #21b3fa;
    font-weight: 500;
}

.table-content table td.product-name {
    width: 270px;
}

.table-content table td.product-remove a {
    display: inline-block;
    font-size: 18px;
    color: #444;
    text-align: center;
    transition: all 0.3s ease-in;
}


.table-content table .product-price .amount {
    font-size: 15px;
    font-weight: 600;
}

.table-content table td.product-remove i:hover,
.table-content table td.product-remove a:hover i {
    color: #FF6900;
}

.table-content table td.product-name a:hover,
.buttons-cart a:hover {
    color: #444;
}

.table-content table td.product-quantity {
    width: 180px;
}

.table-content table td.product-remove {
    width: 150px;
}

.table-content table td.product-price {
    width: 130px;
}

.proceed-to-checkout {
    display: block;
    float: right;
    margin-top: 40px;
}

.mini-shop-cart {
    border: 1px solid #ddd;
}

.single-cart-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

    .single-cart-item h6 {
        color: green;
        position: relative;
    }

    .single-cart-item i {
        float: right;
        color: #444;
    }

    .single-cart-item p {
        margin: 0;
    }

        .single-cart-item p.price b {
            font-size: 17px;
            color: #444;
            margin-right: 30px;
        }

.calculation-area span {
    float: right;
}

.calculation-area {
    padding: 20px;
}

span.blu-color {
    color: #47D194;
}

.calculation-area b p {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    color: #444;
    font-size: 16px;
}

/* Checkout Page
========================*/


.order-form {
    border: 1px solid #ddd;
}

    .order-form h5 {
        padding: 30px;
        border-bottom: 1px solid #ddd;
        border-top: 1px solid #ddd;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: green;
    }

        .order-form h5:nth-child(1) {
            border-top: none;
        }

    .order-form form {
        padding: 30px;
    }

.mini-shop-cart {
    border: 1px solid #ddd;
}

.single-cart-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

    .single-cart-item h5 {
        font-size: 18px;
        margin-bottom: 10px;
        color: green;
    }

    .single-cart-item i {
        float: right;
        color: #444;
    }

    .single-cart-item p {
        margin: 0;
    }

        .single-cart-item p.price b {
            font-size: 16px;
            color: #333;
            margin-right: 30px;
        }

.calculation-area span {
    float: right;
}

.calculation-area {
    padding: 20px;
}

span.blu-color {
    color: #47D194;
}

.calculation-area b p {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    color: #444;
    font-size: 16px;
}

/* Search Form  */

/*-- Search Form --*/
.search-box button {
    text-decoration: none;
    outline: none;
    outline-width: 0 !important;
    border: none;
    background: none;
    position: absolute;
    top: 32px;
    right: 10px;
    font-size: 20px;
}

    .search-box button:before {
        position: absolute;
        content: "";
        top: 50%;
        left: -40px;
        height: 40px;
        border-left: 2px solid #eee;
        margin-top: -20px;
    }

    .search-box button:hover {
        cursor: pointer;
    }

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

    .search-popup .search-back-drop {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

.search-active .search-popup {
    opacity: 1;
    visibility: visible;
}

.search-popup .search-inner {
    position: relative;
    background: #262E2A;
    padding: 45px 0 30px;
    z-index: 1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 400px;
}

.search-active .search-popup .search-inner {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.search-popup .upper-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .search-popup .upper-text .text {
        font-size: 18px;
        letter-spacing: 1px;
    }

.search-popup .close-search {
    position: absolute;
    right: 80px;
    top: 60px;
    font-size: 30px;
    line-height: 27px;
    z-index: 3;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
    background: none;
    color: #fff;
}

.search-popup .form-group form {
    position: relative;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
    border-bottom: 1px solid #888E9B;
    width: 100%;
    padding-top: 140px;
}

    .search-popup .form-group input[type=text],
    .search-popup .form-group input[type=search] {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 25px;
        color: #fff;
        padding: 10px 14px;
        height: 45px;
        width: 100%;
        background-color: transparent;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        border: none;
        margin-bottom: 5px;
    }

    .search-popup .form-group input[type=submit],
    .search-popup .form-group button {
        position: absolute;
        right: -140px;
        bottom: 5px;
        background: transparent !important;
        text-align: center;
        font-size: 24px;
        line-height: 45px;
        color: #888E9B;
        padding: 0;
        background: none;
        border: none;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.form-group input::placeholder {
    font-size: 30px;
    color: #888E9B;
}

/* FAQ Page */

.faq-bg {
    background-image: url(../img/faq.jpg);
    height: 650px;
    max-width: calc(100% - 40px);
}

@media (max-width: 767px) {
    .faq-bg {
        display: none;
    }
}

.cp-custom-accordion .accordion-items {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .cp-custom-accordion .accordion-items {
        margin-top: 30px;
    }
}

.cp-custom-accordion .accordion-buttons {
    position: relative;
    width: 100%;
    padding: 20px 0px 30px 20px;
    background-color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #171717;
    border: none;
    border-bottom: 1px solid #eee;
}

    .cp-custom-accordion .accordion-buttons span {
        font-size: 15px;
        margin-right: 15px;
    }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cp-custom-accordion .accordion-buttons {
        padding: 20px 28px;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .cp-custom-accordion .accordion-buttons {
        padding-left: 0;
        padding-right: 30px;
        line-height: 25px;
    }
}

.cp-custom-accordion .accordion-buttons::after {
    position: absolute;
    content: '\f061';
    font-family: 'Line Awesome Free';
    top: 35%;
    transform: rotate(-90deg);
    right: 30px;
    font-size: 24px;
    font-weight: 500;
    opacity: 1;
    color: #333;
}

@media (max-width: 767px) {
    .cp-custom-accordion .accordion-buttons::after {
        top: 20px;
        right: 25px;
        font-size: 16px;
    }
}

.cp-custom-accordion .accordion-buttons.collapsed::after {
    content: '\f061';
    transform: rotate(90deg);
}

.cp-custom-accordion .collapsed {
    position: relative;
    z-index: 9;
}

.cp-custom-accordion .accordion-body {
    background-color: #fff;
    color: #878787;
    padding: 20px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .cp-custom-accordion .accordion-body {
        padding-right: 25px;
        padding-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cp-custom-accordion .accordion-body {
        padding-right: 30px;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .cp-custom-accordion .accordion-body {
        padding-right: 0;
        padding-left: 0;
    }
}

.faq-section-bg {
    max-width: calc(100% - 40px);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-section-bg {
        max-width: calc(100% - 60px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-content-wrapper {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .faq-content-wrapper {
        margin-top: 60px;
    }
}


.testimonial-slider .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    background: #0554a3;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 20px;
}

.testimonial-slider .owl-dots button.owl-dot.active span {
    width: 35px;
    height: 10px;
    border-radius: 7px;
    background: #0a6735;
}

.testimonial-slider .owl-dots {
    text-align: center;
    margin-top: 50px;
}

.single-testimonial-item img {
    border-radius: 4px;
}
