/*
----------------------------------
- Hero Section
----------------------------------
*/

.hero-button-area {
    width: 100%;
    height: auto;
    margin-top: 40px;
}
.hero-button-area a {
    display: inline-block;
    margin-right: 30px;
}
.hero-button-area a:last-child {
    margin-right: 0;
}
.hero-title,
.hero-subtitle {
    font-size: 72px;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 75px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.hero-subtitle {
    font-size: 48px;
    margin-bottom: 65px;
}
.text-title {
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/*
- Home-green Page Hero Sedction
--------------------------------- */

.hero-area-green {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(../img/hero-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    overflow: hidden;
}
.hero-area-green .hero-mockup-slider .owl-dot.active {
    background: #42bd41;
}

/* 
----------------------------------
- Navbar Section
----------------------------------
*/

.topbar-area {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
}
.navbar-default {
    min-height: auto;
    background: rgba(50, 211, 255, 0.9);
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
}
.navbar-default .navbar-brand {
    width: 100%;
    height: auto;
    margin-top: 7px;
}
.navbar-default .navbar-brand img {
    max-width: 100%;
}
.navbar-default .navbar-nav li {
    margin: 0 auto;
    padding: 0 5px;
}
.navbar-default .navbar-nav li a {
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 26px 15px;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    background: transparent;
    color: #111;
}
.navbar-default .navbar-nav > .active > a:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background: #111;
    bottom: 25px;
    left: 15px;
}
.dropdown-menu {
    display: none;
    border: 0;
    padding: 0;
    margin-top: 0!important;
    background: rgba(50, 211, 255, 0.9);
    box-shadow: none;
    -webkit-box-shadow: none;
    min-width: auto;
}
.dropdown-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(1, 1, 1, 0.1);
}
.dropdown-menu li a {
    padding: 20px!important;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.dropdown-menu li a:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -o-transform: translateX(10px);
    -moz-transform: translateX(10px);
    transform: translateX(10px);
}
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 0;
    -webkit-animation: menu1 .4s ease-in-out forwards;
    animation: menu1 .4s ease-in-out forwards;
}
@keyframes menu1 {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.nav-social {
    margin: 0;
}
.nav-social li {
    display: inline-block;
}
.nav-social li a {
    display: block;
    padding: 13px 12px 5px;
}
.navbar-default .navbar-toggle {
    border: 2px solid #fff;
    border-radius: 0;
}
.navbar-default .navbar-toggle .icon-bar {
    background: #fff !important;
}
.fixed-topbar {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation: menu 0.3s ease-in;
}
@keyframes menu {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    width: 35px;
    height: 2px;
    margin-bottom: 6px;
    background: #fff !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.navbar-default .navbar-toggle.open span {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.navbar-default .navbar-toggle.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navbar-default .navbar-toggle.open span:nth-child(3) {
    opacity: 0;
}
.navbar-default .navbar-toggle.open span:nth-child(4) {
    -webkit-transform: rotate(45deg) translate(-11px, -11px);
    -o-transform: rotate(45deg) translate(-11px, -11px);
    -moz-transform: rotate(45deg) translate(-11px, -11px);
    -o-transform: rotate(45deg) translate(-11px, -11px);
    -moz-transform: rotate(45deg) translate(-11px, -11px);
    transform: rotate(45deg) translate(-11px, -11px);
}
.navbar-default .navbar-toggle {
    background-color: transparent;
    border: 1px solid transparent;
}
.navbar-default .navbar-collapse {
    max-height: 350px!important;
}

/*
- Home Nav Section
--------------------------------- */

.nav-purple {
    background: #8766FF;
}
.nav-purple .dropdown-menu {
    background: #8766FF;
}


/*
----------------------------------
- About us Section
----------------------------------
*/

.about-area {
    width: 100%;
    height: auto;
    background: #edeeef;
}
.about-mockup-slider {}
.about-caption {
    width: 100%;
    height: auto;
    text-align: right;
    padding-right: 62px;
    padding-top: 70px;
    position: relative;
}
.about-caption-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.slide-counter {
    font-family: 'Open Sans', sans-serif;
    font-size: 68px;
    font-weight: 300;
    color: #00bff3;
    display: inline-block;
    position: absolute;
    width: 80px;
    height: auto;
    top: 110px;
    right: -45px;
    z-index: 1;
}
.about-mockup-navigation {
    width: 100%;
    height: auto;
    bottom: 53px;
    text-align: center;
    z-index: 10;
}
.about-prev,
.about-next {
    background: #fff;
    color: #111;
    box-shadow: none;
    padding: 1px 18px;
    border-radius: 0;
    font-size: 24px;
    box-shadow: -1px 2px 4px 0 #ccc;
    -webkit-box-shadow: -1px 2px 4px 0 #ccc;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.about-prev:hover,
.about-next:hover {
    background: #fff;
    color: #00bff3!important;
    box-shadow: -1px 2px 4px 0 #ccc!important;
    -webkit-box-shadow: -1px 2px 4px 0 #ccc!important;
}

/*
----------------------------------
- Home Green About us Section
----------------------------------
*/

.about-area-green .slide-counter {
    color: #42bd41;
}
.about-area-green .about-prev:hover,
.about-area-green .about-next:hover {
    background: #fff;
    color: #42bd41!important;
    box-shadow: -1px 2px 4px 0 #ccc!important;
    -webkit-box-shadow: -1px 2px 4px 0 #ccc!important;
}

/* 
----------------------------------
- Feature Section
----------------------------------
*/

.feature-area {
    width: 100%;
    height: auto;
    background: #f3f3f3;
}
.tab-total {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 35px;
}
.tab-wrap {
    height: auto;
    width: 100%;
    position: relative;
    margin-top: -15px;
}
.tab-wrap .nav-tabs {
    border: none;
}
.tab-wrap .nav-tabs > ul {
    width: 100%;
    height: auto;
    text-align: left;
}
.tab-wrap .nav-tabs > li {
    width: 100%;
    margin-bottom: 0;
}
.tab-wrap .nav-tabs > li > a {
    letter-spacing: 0;
    border-radius: 0;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #3a3a3a !important;
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
.tab-wrap .nav-tabs > li > a:hover {
    border: none;
    background: none;
}
.tab-wrap .nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    background: transparent;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #3a3a3a !important;
    font-size: 16px;
}
.tab-wrap .nav-tabs > li.active:before {
    content: "";
    position: absolute;
    width: 112px;
    height: 2px;
    top: 22px;
    right: -30px;
    background: #2c3e50;
    opacity: 1;
    z-index: 1;
}
.tab-wrap .nav-tabs > li.active:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 15px;
    right: 80px;
    background: #00ccff;
    opacity: 1;
    z-index: 1;
}
.tab-content-wrap {
    position: relative;
    width: 100%;
    height: auto;
}
.tab-item-wrap {
    width: 100%;
    height: auto;
}
.tab-content-wrap .tab-text {
    width: 100%;
    height: auto;
    text-align: left;
}
.tab-content-wrap .tab-text h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #3a3a3a !important;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding-top: 50px;
    margin-bottom: 10px;
}
.tab-content-wrap .tab-text p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #3a3a3a !important;
    font-size: 14px;
}
.tab-icon-wrap {
    width: 100%;
    height: auto;
    text-align: center;
    padding-top: 60px;
}
.tab-icon {
    width: 100%;
    height: auto;
    margin-bottom: 90px;
}
.tab-icon i {
    color: #ffffff;
    background: #00bff3;
    font-size: 24px;
    padding: 15px;
    border-radius: 0 25px 25px 25px;
}
.tab-number {
    width: 100%;
    height: auto;
    margin-top: 95px;
}
.tab-number span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 72px;
    color: #00bff3;
    line-height: 24px;
}
.tab-content-wrap .feature-tab-img {
    width: 100%;
    height: 350px;
    background-repeat: no-repeat;
    background-position: top;
    -webkit-background-size: cover;
    background-size: cover;
    text-align: center;
}
.feature-tab-img img {
    margin-top: -60px;
}

/*
- Home Green Feature Section
----------------------------------*/

.feature-area-green .tab-wrap .nav-tabs > li.active:after {
    background: #42bd41;
}
.feature-area-green .tab-icon i {
    background: #42bd41;
}
.feature-area-green .tab-number span {
    color: #42bd41;
}

/* 
----------------------------------
- Application Section
----------------------------------
*/

.application-option-area {
    width: 100%;
    height: auto;
    background: #edeeef;
}
.application-info {
    width: 100%;
    height: auto;
    padding-top: 120px;
}
.application-info .icon-box span {
    font-size: 80px;
    color: #00ccff;
    display: block;
    margin-bottom: 13px;
}
.application-info h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}
.vr-carousel {
    width: 100%;
    margin: 0;
    padding-left: 0;
    height: 480px !important;
}
.vr-carousel li {
    background: #d9e3e6;
    color: #d9e3e6;
    overflow: hidden;
    height: 150px;
    padding: 35px 40px;
    line-height: 30px;
    font-size: 24px;
    text-align: left;
}
.vr-carousel li:nth-child(2) {
    background: #fff;
}
.vr-carousel-container {
    text-align: center;
    position: relative;
    z-index: 1;
}
.vr-carousel-container:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 150px;
    background: transparent;
    z-index: -1;
    top: 209px;
    left: 0;
    opacity: 1;
    box-shadow: 1px 1px 40px -10px #666;
}
.vr-carousel-container i {
    font-size: 36px;
    margin: 8px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.vr-carousel li h4 {
    font-size: 18px;
    color: #3a3a3a;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
.vr-carousel li p {
    font-size: 14px;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 10px 0;
}
.app-btn {
    border: none;
    color: #afafaf;
    font-size: 12px;
    text-align: right;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.app-btn:hover {
    color: #00bff3;
}

/*
- Home Green Application Section
--------------------------------- */

.application-area-green .application-info .icon-box span {
    color: #42bd41;
}
.application-area-green .app-btn:hover {
    color: #42bd41;
}

/* 
----------------------------------
- Screenshots Section
----------------------------------
*/
/*
.screenshot-area {
    width: 100%;
    height: auto;
    background: #f3f3f3;
}
.screen-slider {
    width: 100%;
    min-height: 410px;
    position: relative;
}
.screenshot-btn {
    width: 108%;
    top: 47%;
    height: 50px;
    left: -40px;
    position: absolute;
}
.responsiveGallery-btn {
    position: absolute;
    top: 0;
    z-index: 3;
    display: inline-block;
    width: auto;
    height: 100%;
}
.screenshot-btn p {
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #3a3a3a;
    text-transform: capitalize;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.screenshot-btn p:hover {
    color: #00bff3;
}
*/
/* 
----------------------------------
- Home Green Screenshots Section
----------------------------------
*/
/*
.screenshot-area-green {}
.screenshot-area-green .screenshot-btn p:hover,
.screenshot-area-green .responsiveGallery-btn_prev:hover::before,
.screenshot-area-green .responsiveGallery-btn_next:hover::after {
    color: #42bd41;
}
*/
/* 
----------------------------------
- Price Section
----------------------------------
*/
/*
.pricing-area {
    width: 100%;
    height: auto;
    background: #edeeef;
}
.pricing-table {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}
.pricing-table .pricing-head {
    width: 100%;
    height: auto;
}
.pricing-table .pricing-head .price-tag-circle {
    position: relative;
    width: 125px;
    height: 125px;
    margin: 0 auto;
    background: #00bff3;
    text-align: center;
    line-height: 125px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.pricing-table .pricing-head .price-tag-circle span.price {
    font-family: 'Open Sans', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}
.pricing-table .pricing-head .price-tag-circle span.price:after {
    content: "$";
    position: absolute;
    width: 20px;
    height: auto;
    top: -40px;
    right: -15px;
    z-index: 1;
    font-size: 30px;
}
.pricing-table .pricing-body {
    width: 100%;
    height: auto;
    text-align: center;
    background: #fff;
    padding: 100px 15px 50px 15px;
    margin-top: -62.5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.pricing-table .pricing-body .price-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.pricing-table .pricing-body ul {
    margin: 0;
    padding: 0;
}
.pricing-table .pricing-body ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #242424;
    margin-bottom: 15px;
}
.pricing-table .pricing-footer {
    width: 100%;
    height: auto;
    text-align: center;
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -25px;
    left: 0;
}
.pricing-table:hover .btn-pricing {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.pricing-table:hover .pricing-body {
    box-shadow: 1px 1px 20px -10px #666;
}
*/
/*
- Home Green Price Section
---------------------------------- */
/*
.pricing-area-green .pricing-table .pricing-head .price-tag-circle {
    position: relative;
    width: 125px;
    height: 125px;
    margin: 0 auto;
    background: #42bd41;
    text-align: center;
    line-height: 125px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
.pricing-area-green .pricing-table:hover .btn-pricing-green {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
*/
/* 
----------------------------------
- App download Section
----------------------------------
*/

.app-download-area {
    width: 100%;
    height: auto;
    background: #000;
    position: relative;
    z-index: 1;
}
.app-download-area:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-image: url('../img/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}
.download-box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.btn-download {
    position: relative;
    background: #00bff3;
    color: #fff;
    border: 0;
    text-align: left;
    padding-left: 75px;
    margin-right: 70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn-download:hover {
    background: #0d86a7;
    border: 0;
}
.btn-download p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.btn-download span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.btn-download .icon-box {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 30px;
    text-align: center;
    top: 15px;
    left: 25px;
    color: #fff;
}
.download-box .btn-download:last-child {
    margin-right: 0;
}

/*
- App download Section
------------------------------ */

.btn-download-green {
    position: relative;
    background: #42bd41;
    color: #fff;
    border: 0;
    text-align: left;
    padding-left: 75px;
    margin-right: 70px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.btn-download-green .icon-box {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 30px;
    text-align: center;
    top: 15px;
    left: 25px;
    color: #fff;
}
.btn-download-green p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.btn-download-green span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.btn-download-green:hover {
    background: #059e04;
    border: 0;
}


/*
- Home Green Blog Section
-------------------------------------- */

.blog-green .post-title h3:hover {
    color: #42bd41;
}
.blog-green .btn-sm:hover .btn-sm-divider {
    background-color: #42bd41;
}
.blog-green .btn-sm:hover {
    background-color: transparent;
    color: #42bd41!important;
}
.blog-green .post-meta-inner a:hover {
    color: #42bd41!important;
}

/*
----------------------------------
- Copyright Section
----------------------------------
*/

.copyright-area {
    width: 100%;
    height: auto;
    padding: 10px;
    background: #f9f9f9;

    position: fixed;
    bottom: 0;
    left: 0;

}
.copyright-area a {
    color: #111;
    font-size: 12px;
}
.copyright-area a:hover {
    text-decoration: underline;
}

/*
-----------------------------------------
-Blog Masonry Page
-----------------------------------------
*/

.page-hero {
    width: 100%;
    height: 630px;
    position: relative;
}
.masonry-post-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #242424;
    margin-bottom: 25px;
}

.masonry-post-body a {
    color: #111;
}
.masonry-post-body a:hover {
    text-decoration: underline;
}

.masonry-post-footer {
    position: relative;
    margin-bottom: 45px;
}
.post-footer-feature {
    width: 100%;
    text-align: center;
    margin: 30px 0;
}

/*
- Home Green pages
-------------------------------*/

.page-header-green a:hover {
    color: #42bd41!important
}
.blog-green .btn-lg,
.blog-green .btn-subscribe,
.blog-green .btn-send {
    background-color: #42bd41!important;
}
.blog-green .btn-lg:hover,
.blog-green .btn-subscribe:hover,
.blog-green .btn-send:hover,
.blog-green .btn-outline-sm:hover {
    background-color: #059e04!important;
}
.blog-green .post-contant h2:hover,
.blog-green .post-title h3:hover,
.blog-green .cmnt-btn:hover {
    color: #42bd41!important;
}
.blog-green .btn-outline-sm:hover {
    color: #42bd41!important;
    border-color: #42bd41!important;
    background-color: transparent!important;
}
.map-wrap-green .contact-email {
    color: #42bd41!important;
}

.green {
    color: #42bd41;
}
.red {
    color: #d10000;
}

/*.btn-success {
    background: #42bd41;
}*/

/* RUST*/


.ln_solid {
    border-top: 1px solid #e5e5e5;
    color: #ffffff;
    background-color: #ffffff;
    height: 1px;
    margin: 20px 0; }

.search-form-control {
    vertical-align: middle !important;
}

a.btn-success, a.btn-primary, a.btn-warning, a.btn-danger {
    color: #fff; }

.btn-success {
    background: #8766FF;
    border: 1px solid #8E5CF6; }

.btn-success:hover, .btn-success:focus,
.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
    background-color: #8E5CF6;
    border-color: #40308C;
}

.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
    color: #fff;
    background-color: #764cce;
    border-color: #40308C;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
    background-color: #D59CFF;
    border-color: #B8A2D6;
}
