/*1.0 General*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #a0a0a0;
    text-decoration: none;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
    text-decoration: none;
    color: #8dc73f;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mpl-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .mpl-container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .mpl-container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .mpl-container {
        width: 1170px;
    }
}

.mpl-container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.mpl-container:before,
.mpl-container:after,
.mpl-container-fluid:before,
.mpl-container-fluid:after,
.mpl-container-fullwidth:before,
.mpl-container-fullwidth:after {
    display: table;
    content: " ";
}

.mpl-container:after,
.mpl-container-fluid:after,
.mpl-container-fullwidth:after {
    clear: both;
}

.mpl-box-shadow {
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
}

.mpl-section-inner.mpl-section {
    position: relative;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    max-width: 100%;
    overflow: hidden;
}

.mpl-fullheight {
    min-height: 100vh;
    display:table;
    width: 100%;
    table-layout:fixed;
}

.mpl-verticalmiddle,
.mpl-verticalbottom {
    display:table;
    width: 100%;
    height: 100%;
    table-layout:fixed;
}

.mpl-fullheight > .mpl-section-content {
    display: table-cell;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mpl-verticalmiddle > .mpl-section-content {
    display: table-cell;
    width: 100%;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.mpl-verticalbottom > .mpl-section-content {
    display: table-cell;
    width: 100%;
    position: relative;
    overflow: hidden;
    vertical-align: bottom;
}

.mpl-section .mpl-background-media,
.mpl-section .mpl-background-overlay {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.mpl-section .mpl-section-content, {
    position: relative;
}

.mpl-slider-item *,
.mpl-section {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.mpl-slider-item .verticalmiddle,
.mpl-slider-item .verticalbottom {
    height: 100%;
}

@media screen and (min-width: 920px) {
    .sm-wrap {
        width: 720px;
        max-width: 100%;
        margin: 0 auto;
    }
}

/*Buttons*/
.btn-normal:hover,
.mpl-btn-normal:hover {
    text-decoration: none;
}

.btn-normal,
.mpl-btn-normal {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
    padding: .9em 2.5em;
    border-radius: 5px;
    border-width: 0;
    border-style: solid;
}

.mpl-btn-normal {
    color: #fff;
    background-color: #8dc73f;
}

.mpl-btn-normal:hover,
.mpl-btn-normal:active,
.mpl-btn-normal:focus {
    background-color: #7DB531;
    color: #fff;
}

.mpl-btn-normal.grey {
    background-color: #d7d7d7!important;
    color: #333!important;
}

.mpl-btn-normal.grey:hover,
.mpl-btn-normal.grey:active,
.mpl-btn-normal.grey:focus, {
    background-color: #d1d1d1!important;
    color: #333!important;
}

.mpl-btn-normal.dark {
    background-color: #333!important;
}

.mpl-btn-normal.dark:hover,
.mpl-btn-normal.dark:active,
.mpl-btn-normal.dark:focus {
    background-color: #222!important;
}

.mpl-btn-normal.light {
    color: #fff;
    background-color: transparent!important;;
    box-shadow: 0 0 0 2px currentColor inset;
}

.btn-md,
.mpl-btn-md {
    font-size: 1em;
}

.btn-lg,
.mpl-btn-lg {
    font-size: 1.2em;
}

.btn-sm,
.mpl-btn-sm {
    font-size: .8em;
}

.btn-xl,
.mpl-btn-xl {
    font-size: 1.5em;
}

.btn-square,
.mpl-btn-square {
    border-radius: 0;
}

.btn-rounded,
.mpl-btn-rounded {
    border-radius: 5px;
}

.btn-full-rounded,
.mpl-btn-full-rounded {
    border-radius: 50px;
}

.btn-text-shadow,
.mpl-btn-text-shadow {
    text-shadow: 0 1px rgba(0,0,0,.4);
}

.btn-block,
.mpl-btn-block {
    display: block;
}

/*Img Box*/
.img-box {
    position: relative;
    max-width: 100%;
    display: inline-block;
    margin-bottom: -.5em;
}

.img-box img {
    max-width: 100%;
}

.img-box > p {
    display: none;
}

.img-box > a {
    display:block;
}

.img-box .img-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.1s ease;
    -webkit-transition: all .1s ease;
    background-color: rgba(51,51,51,.7);
}

.img-box .img-overlay.primary {
    background-color: rgba(253,210,0,.7);
}

.img-box .img-overlay.dark {
    background-color: rgba(0,0,0,.35);
}

.img-box .img-overlay.light {
    background-color: rgba(255,255,255,.85);
}

.img-box .img-overlay.blank {
    background-color: transparent;
}

.img-box:hover .img-overlay {
    transition: all 0.1s ease;
    -webkit-transition: all .5s ease;
}

.img-overlay-container {
    display: table;
    height: 100%;
    width: 100%;
}

.img-box .img-overlay-content {
    display: table-cell;
    padding: 5px;
    position: relative;
}

.img-overlay-total-link {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.img-overlay-content .entry-category {
    position: relative;
    z-index: 3;
}

.img-box.figcaption-middle .img-overlay-content {
    vertical-align: middle;
}

.img-box.figcaption-top .img-overlay-content {
    vertical-align: top;
}

.img-box.figcaption-bottom .img-overlay-content {
    vertical-align: bottom;
}

.img-box.fade-in .img-overlay {
    opacity: 0;
}

.img-box.fade-in:hover .img-overlay {
    opacity: 1;
}

.img-box.from-left .img-overlay {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.img-box.from-left:hover .img-overlay {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.img-box.from-right .img-overlay {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.img-box.from-right:hover .img-overlay {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.img-box.from-top .img-overlay {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.img-box.from-top:hover .img-overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.img-box.from-bottom .img-overlay {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.img-box.from-bottom:hover .img-overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.img-box img {
    transition: all 0.1s ease;
    -webkit-transition: all .5s ease;
}

.img-box:hover img {
    transition: all 0.1s ease;
    -webkit-transition: all .5s ease;
}

.img-box.img-zoom-in:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.img-box.img-zoom-out img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.img-box.img-zoom-out:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.img-box.img-scroll-left img,
.img-box.img-scroll-right img {
    width: calc(105%);
    max-width: none;
}

.img-box.img-scroll-left img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.img-box.img-scroll-left:hover img {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
}

.img-box.img-scroll-right img {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
}

.img-box.img-scroll-right:hover img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.img-box .img-overlay-icons i {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    width: 2em;
    height: 2em;    
    line-height: 2em;
    background-color: #8dc73f;
    border-radius: 100%;
}

.img-box h3.img-overlay-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.portfolio-img-box {
    text-align: center;
}

.img-box p.img-overlay-desc {
    color: #fff;
    margin-bottom: 0;
}

.img-box.circle {
    border-radius: 1000px;
    overflow: hidden;
}

.mpl-section .portfolio-img-box {
    background: none;
}

.mpl-section .portfolio-img-box:hover img {
    opacity: 1;
}

/*Columns*/
ul[class*="mpl-list"] {
    padding: 0;
    margin: -15px;
    list-style-type: none;
    display: block;
}

ul[class*="mpl-list"]:before,
ul[class*="mpl-list"]:after {
    display: table;
    content: " ";
}

ul[class*="mpl-list"]:after {
    clear: both;
}

ul[class*="mpl-list"] > li {
    float: left;
    position: relative;
    min-height: 1px;
    padding: 15px;
    width: 100%;
    display: block;
}

ul[class*="mpl-list"].full {
    margin: 0;
}

ul[class*="mpl-list"].full > li {
    padding: 0;
}

ul.mpl-list-xs-1 > li {
    width: 100%;
}

ul.mpl-list-xs-2 > li {
    width: 50%;
}

ul.mpl-list-xs-2 > li.mpl-2x {
    width: 100%;
}

ul.mpl-list-xs-3 > li {
    width: 33.333333%;
}

ul.mpl-list-xs-3 > li.mpl-2x {
    width: 66.666666%;
}

ul.mpl-list-xs-3 > li.mpl-3x {
    width: 100%;
}

ul.mpl-list-xs-4 > li {
    width: 25%;
}

ul.mpl-list-xs-4 > li.mpl-2x {
    width: 50%;
}

ul.mpl-list-xs-4 > li.mpl-3x {
    width: 75%;
}

ul.mpl-list-xs-4 > li.mpl-4x {
    width: 100%;
}

ul.mpl-col-xs-5 > li {
    width: 20%;
}

ul.mpl-list-xs-5 > li.mpl-2x {
    width: 40%;
}

ul.mpl-list-xs-5 > li.mpl-3x {
    width: 60%;
}

ul.mpl-list-xs-5 > li.mpl-4x {
    width: 80%;
}

ul.mpl-list-xs-5 > li.mpl-5x {
    width: 100%;
}

ul.mpl-list-xs-6 > li {
    width: 16.666666%;
}

ul.mpl-list-xs-6 > li.mpl-2x {
    width: 33.333333%;
}

ul.mpl-list-xs-6 > li.mpl-3x {
    width: 50%;
}

ul.mpl-list-xs-6 > li.mpl-4x {
    width: 66.666666%;
}

ul.mpl-list-xs-6 > li.mpl-5x {
    width: 83.333333%;
}

ul.mpl-list-xs-6 > li.mpl-6x {
    width: 100%;
}

ul.mpl-list-xs-2 > li:nth-of-type(2n+3) {
    clear: both;
}

ul.mpl-list-xs-3 > li:nth-of-type(3n+4) {
    clear: both;
}

ul.mpl-list-xs-4 > li:nth-of-type(4n+5) {
    clear: both;
}

ul.mpl-list-xs-5 > li:nth-of-type(5n+6) {
    clear: both;
}

ul.mpl-list-xs-6 > li:nth-of-type(6n+7) {
    clear: both;
}

@media screen and (min-width: 768px) {
    ul.mpl-list-sm-1 > li {
        width: 100%;
    }    
    ul.mpl-list-sm-2 > li {
        width: 50%;
    }
    ul.mpl-list-sm-2 > li.mpl-2x {
        width: 100%;
    }
    ul.mpl-list-sm-3 > li {
        width: 33.333333%;
    }
    ul.mpl-list-sm-3 > li.mpl-2x {
        width: 66.666666%;
    }
    ul.mpl-list-sm-3 > li.mpl-3x {
        width: 100%;
    }
    ul.mpl-list-sm-4 > li {
        width: 25%;
    }
    ul.mpl-list-sm-4 > li.mpl-2x {
        width: 50%;
    }
    ul.mpl-list-sm-4 > li.mpl-3x {
        width: 75%;
    }
    ul.mpl-list-sm-4 > li.mpl-4x {
        width: 100%;
    }
    ul.mpl-list-sm-5 > li {
        width: 20%;
    }
    ul.mpl-list-sm-5 > li.mpl-2x {
        width: 40%;
    }
    ul.mpl-list-sm-5 > li.mpl-3x {
        width: 60%;
    }
    ul.mpl-list-sm-5 > li.mpl-4x {
        width: 80%;
    }
    ul.mpl-list-sm-5 > li.mpl-5x {
        width: 100%;
    }
    ul.mpl-list-sm-6 > li {
        width: 16.666666%;
    }
    ul.mpl-list-sm-6 > li.mpl-2x {
        width: 33.333333%;
    }
    ul.mpl-list-sm-6 > li.mpl-3x {
        width: 50%;
    }
    ul.mpl-list-sm-6 > li.mpl-4x {
        width: 66.666666%;
    }
    ul.mpl-list-sm-6 > li.mpl-5x {
        width: 83.333333%;
    }
    ul.mpl-list-sm-6 > li.mpl-6x {
        width: 100%;
    }


    ul[class*="mpl-list-sm"] > li:nth-of-type(n) {
        clear: none;
    }

    ul.mpl-list-sm-2 > li:nth-of-type(2n+3) {
        clear: both;
    }

    ul.mpl-list-sm-3 > li:nth-of-type(3n+4) {
        clear: both;
    }

    ul.mpl-list-sm-4 > li:nth-of-type(4n+5) {
        clear: both;
    }

    ul.mpl-list-sm-5 > li:nth-of-type(5n+6) {
        clear: both;
    }

    ul.mpl-list-sm-6 > li:nth-of-type(6n+7) {
        clear: both;
    }
}

@media screen and (min-width: 992px) {
    ul.mpl-list-md-1 > li {
        width: 100%;
    }    
    ul.mpl-list-md-2 > li {
        width: 50%;
    }
    ul.mpl-list-md-2 > li.mpl-2x {
        width: 100%;
    }
    ul.mpl-list-md-3 > li {
        width: 33.333333%;
    }
    ul.mpl-list-md-3 > li.mpl-2x {
        width: 66.666666%;
    }
    ul.mpl-list-md-3 > li.mpl-3x {
        width: 100%;
    }
    ul.mpl-list-md-4 > li {
        width: 25%;
    }
    ul.mpl-list-md-4 > li.mpl-2x {
        width: 50%;
    }
    ul.mpl-list-md-4 > li.mpl-3x {
        width: 75%;
    }
    ul.mpl-list-md-4 > li.mpl-4x {
        width: 100%;
    }
    ul.mpl-list-md-5 > li {
        width: 20%;
    }
    ul.mpl-list-md-5 > li.mpl-2x {
        width: 40%;
    }
    ul.mpl-list-md-5 > li.mpl-3x {
        width: 60%;
    }
    ul.mpl-list-md-5 > li.mpl-4x {
        width: 80%;
    }
    ul.mpl-list-md-5 > li.mpl-5x {
        width: 100%;
    }
    ul.mpl-list-md-6 > li {
        width: 16.666666%;
    }
    ul.mpl-list-md-6 > li.mpl-2x {
        width: 33.333333%;
    }
    ul.mpl-list-md-6 > li.mpl-3x {
        width: 50%;
    }
    ul.mpl-list-md-6 > li.mpl-4x {
        width: 66.666666%;
    }
    ul.mpl-list-md-6 > li.mpl-5x {
        width: 83.333333%;
    }
    ul.mpl-list-md-6 > li.mpl-6x {
        width: 100%;
    }

    ul[class*="mpl-list-md"] > li:nth-of-type(n) {
        clear: none;
    }

    ul.mpl-list-md-2 > li:nth-of-type(2n+3) {
        clear: both;
    }

    ul.mpl-list-md-3 > li:nth-of-type(3n+4) {
        clear: both;
    }

    ul.mpl-list-md-4 > li:nth-of-type(4n+5) {
        clear: both;
    }

    ul.mpl-list-md-5 > li:nth-of-type(5n+6) {
        clear: both;
    }

    ul.mpl-list-md-6 > li:nth-of-type(6n+7) {
        clear: both;
    }
}

@media screen and (min-width: 1200px) {
    ul.mpl-list-lg-1 > li {
        width: 100%;
    }    
    ul.mpl-list-lg-2 > li {
        width: 50%;
    }
    ul.mpl-list-lg-2 > li.mpl-2x {
        width: 100%;
    }
    ul.mpl-list-lg-3 > li {
        width: 33.333333%;
    }
    ul.mpl-list-lg-3 > li.mpl-2x {
        width: 66.666666%;
    }
    ul.mpl-list-lg-3 > li.mpl-3x {
        width: 100%;
    }
    ul.mpl-list-lg-4 > li {
        width: 25%;
    }
    ul.mpl-list-lg-4 > li.mpl-2x {
        width: 50%;
    }
    ul.mpl-list-lg-4 > li.mpl-3x {
        width: 75%;
    }
    ul.mpl-list-lg-4 > li.mpl-4x {
        width: 100%;
    }
    ul.mpl-list-lg-5 > li {
        width: 20%;
    }
    ul.mpl-list-lg-5 > li.mpl-2x {
        width: 40%;
    }
    ul.mpl-list-lg-5 > li.mpl-3x {
        width: 60%;
    }
    ul.mpl-list-lg-5 > li.mpl-4x {
        width: 80%;
    }
    ul.mpl-list-lg-5 > li.mpl-5x {
        width: 100%;
    }
    ul.mpl-list-lg-6 > li {
        width: 16.666666%;
    }
    ul.mpl-list-lg-6 > li.mpl-2x {
        width: 33.333333%;
    }
    ul.mpl-list-lg-6 > li.mpl-3x {
        width: 50%;
    }
    ul.mpl-list-lg-6 > li.mpl-4x {
        width: 66.666666%;
    }
    ul.mpl-list-lg-6 > li.mpl-5x {
        width: 83.333333%;
    }
    ul.mpl-list-lg-6 > li.mpl-6x {
        width: 100%;
    }
    
    ul[class*="mpl-list-lg"] > li:nth-of-type(n) {
        clear: none;
    }

    ul.mpl-list-lg-2 > li:nth-of-type(2n+3) {
        clear: both;
    }

    ul.mpl-list-lg-3 > li:nth-of-type(3n+4) {
        clear: both;
    }

    ul.mpl-list-lg-4 > li:nth-of-type(4n+5) {
        clear: both;
    }

    ul.mpl-list-lg-5 > li:nth-of-type(5n+6) {
        clear: both;
    }

    ul.mpl-list-lg-6 > li:nth-of-type(6n+7) {
        clear: both;
    }
}


/*2.0 Section Title*/
.section-title-wrap,
.mpl-section-title-wrap {
    margin-bottom: 50px;
}

h2.section-title,
h2.mpl-section-title {
    font-size: 50px;
    margin: 0 0 10px;
    color: inherit;
}

p.section-subtitle,
p.mpl-section-subtitle {
    margin: 0;
    color: inherit;
}

h3.section-subtitle,
h3.mpl-section-subtitle {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 32px;
    color: inherit;
}

.mpl-section-title.style1 span {
    display: inline-block;
    border: 0 solid currentColor;
    border-width: 2px 0;
}

/* 3.0 Carousel-Slider Style*/
.mpl-carousel-wrap {
    margin: 0 -15px;
}

.mpl-carousel .owl-item {
    padding: 0 15px;
}

.mpl-carousel-wrap.full {
    margin: 0;
}

.mpl-carousel-wrap.full .owl-item {
    padding: 0;
}

.mpl-carousel .owl-dots {
    text-align: center;
}

.mpl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
}

.mpl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 14px;
    height: 14px;
    margin: 25px 7px 0;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
}

.mpl-carousel .owl-dots .owl-dot.active span,
.mpl-carousel .owl-dots.clickable .owl-page:hover span{
    filter: Alpha(Opacity=100);/*IE7 fix*/
    opacity: 1;
}

.mpl-carousel .owl-prev,
.mpl-carousel .owl-next {
    color: #333;
    border: 0 none !important;
    font-size: 0;
    height: 20px;
    left: -30px;
    line-height: 20px;
    margin-top: -10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
    vertical-align: top;
    width: 20px;
}

.mpl-carousel .owl-prev:before,
.mpl-carousel .owl-next:before {
    content: "\f104";
    display: block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 26px;
    line-height: 20px;
    left: 11px;
    position: absolute;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: left 0.2s ease-in-out;
    transition: left 0.2s ease-in-out;
}

.mpl-carousel .owl-prev:after,
.mpl-carousel .owl-next:after {
    background: currentColor;
    content: "";
    display: block;
    height: 1px;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 10px;
    -webkit-transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
    width: 10px;
}

.mpl-carousel .owl-prev:hover:after,
.mpl-carousel .owl-next:hover:after {
    opacity: 1;
    width: 16px;
}

.mpl-carousel .owl-prev:hover:before,
.mpl-carousel .owl-next:hover:before {
    left: 0;
}

.mpl-carousel .owl-next {
    left: auto;
    right: -30px;
}

.mpl-carousel .owl-next:before {
    content: "\f105";
    left: auto;
    right: 11px;
    -webkit-transition: right 0.2s ease-in-out;
    transition: right 0.2s ease-in-out;
}

.carousel .owl-next:after,
.owl-carousel .owl-next:after {
    left: 0;
    right: auto;
}

.mpl-carousel .owl-next:hover:before {
    left: auto;
    right: 0;
}

/*Slider Fix*/
.mpl-slider {
    position: relative;
}

@media screen and (max-width: 400px) {
    .mpl-slider-item .btn-normal {
        margin-bottom: 10px;
    }
}

.mpl-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
}

.mpl-slider .owl-nav {
    opacity: 0;
}

.mpl-slider:hover .owl-nav {
    opacity:1;
}

.mpl-slider.mpl-carousel .owl-prev,
.mpl-slider.mpl-carousel .owl-next {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-top: -40px;
    color: #fff;
    left: 30px;
}

.mpl-slider.mpl-carousel .owl-next {
    left: auto;
    right: 30px;
}

.mpl-slider.mpl-carousel .owl-prev:before,
.mpl-slider.mpl-carousel .owl-next:before {
    font-size: 70px;
    line-height: 80px;
}

.mpl-slider.mpl-carousel .owl-prev:after,
.mpl-slider.mpl-carousel .owl-next:after {
    height: 4px;
    right: 30px;
    top: 40px;
}

.mpl-slider.mpl-carousel .owl-next:after {
    left: 30px;
    right: auto;
}

.mpl-slider.mpl-carousel .owl-prev:hover:after,
.mpl-slider.mpl-carousel .owl-next:hover:after {
    opacity: 1;
    width: 40px;
}

.mpl-slider .owl-nav {
    opacity: 0;
}

.mpl-slider:hover .owl-nav {
    opacity: 1;
}

/* 3.1 Section Banner*/
.mpl-section-inner.mpl-section-banner {
    padding: 0;
}
.mpl-section-inner.mpl-section-slider {
    padding: 0;
}
.mpl-section-inner.mpl-section-video {
    padding: 0;
}

.mpl-section-banner h2.mpl-section-title {
    font-size: 70px;
}

.mpl-section-banner .mpl-section-subtitle {
    font-size: 2em;
}

.mpl-button-group a + a .mpl-btn-normal{
    margin-left: 10px;
}

.mpl-social-icons {
    margin: 30px 0 0;
    list-style-type: none;
    font-size: 2em;
}

.mpl-social-icons li {
    display: inline-block;
    margin: 0 10px;
}

/* 3.2 Section Testimonials*/
.mpl-section-testimonials {
    padding: 100px 0;
}

.mpl-carousel-testimonials .owl-item img {
    display: inline;
    width: auto;
}

.mpl-testimonial .img-box {
    margin-bottom: 10px;
}

.mpl-testimonial.style1 {
    background-color: #fff;
    padding: 20px;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,.1);
}

.mpl-testimonial.style2 {
    text-align: left;
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,.1);
    position: relative;
}

.mpl-testimonial.style2:after {
    position: absolute;
    top: 20px;
    left: 30px;
    content: "\f10d";
    font: normal normal normal 36px/1 FontAwesome;
    opacity: .9;
}

.mpl-testimonial.style2 .img-box {
    width: 80px;
    height: 80px;
    float: left;
}

.mpl-testimonial.style2 .img-box img {
    border-radius: 100%;
    width: 80px;
    height: 80px;
}

.mpl-testimonial.style2 .person-vcard {
    height: 80px;
}

.mpl-testimonial.style2 .person-desc {
    clear: both;
    padding-left: 50px;
}

.mpl-testimonial.style2 h3.person-name {
    clear: none;
    margin-top: 0;
    margin-left: 100px;
    padding-top: 20px;
}

.mpl-testimonial.style2 h4.person-title {
    clear: none;
    margin-left: 100px;
}

.mpl-carousel-testimonials .owl-stage-outer {
    padding: 2px 0;
}

.mpl-testimonial.style3 {
    text-align: left;
    background-color: #fff;
    padding: 40px 30px 60px;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,.1);
    position: relative;
}

.mpl-testimonial.style3:after {
    position: absolute;
    bottom: 20px;
    right: 30px;
    content: "\f10e";
    font: normal normal normal 36px/1 FontAwesome;
    opacity: .7;
}

.mpl-testimonial.style3 .img-box {
    width: 80px;
    height: 80px;
    float: left;
}

.mpl-testimonial.style3 .img-box img {
    border-radius: 100%;
    width: 80px;
    height: 80px;
}

.mpl-testimonial.style3 .person-vcard {
    height: 80px;
}

.mpl-testimonial.style3 .person-desc {
    clear: both;
}

.mpl-testimonial.style3 h3.person-name {
    clear: none;
    margin-top: 0;
    margin-left: 100px;
    padding-top: 20px;
}

.mpl-testimonial.style3 h4.person-title {
    clear: none;
    margin-left: 100px;
}

.mpl-carousel-testimonials .owl-stage-outer {
    padding: 2px 0;
}

.mpl-testimonial .person-vcard .person-title:after {
    display: none;
}

.mpl-testimonial.notboxed {
    background-color: transparent;
    box-shadow: none;
}

.mpl-testimonial.style1 {
    background-color: #fff;
    padding: 20px;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,.1);
}

.mpl-testimonial.notboxed.style1 {
    padding: 0;
}

.mpl-testimonial.notboxed.style2 {
    padding: 20px 0 0 0; 
}

.mpl-testimonial.notboxed.style2:after {
    left: 0;
    top: 0;
}

.mpl-testimonial.notboxed.style3 {
    padding: 0 0 40px;
}

.mpl-testimonial.notboxed.style3:after {
    bottom: 0;
}

/* 3.3 Section Clients*/
.mpl-section-clients {
    padding: 50px 0;
}

/* 3.5 Section Services*/
.mpl-feature-box i {
    font-size: 80px;
}

.mpl-feature-box i.square,
.mpl-feature-box i.circle {
    font-size: 40px;
    width: 2em;
    height: 2em;
    line-height: 2em;
    text-align: center;
    color: #fff;
    background-color: #595959;
}

.mpl-feature-box i.circle {
    border-radius: 100%;
}

.mpl-services.style2 .mpl-feature-box {
    position: relative;
}

.mpl-services.style2 .mpl-feature-box img,
.mpl-services.style2 .mpl-feature-box i {
    position: absolute;
    left: 0;
    top: 0;
}

.mpl-services.style2 .mpl-feature-box h3 {
    margin: 0 0 5px 100px;
}

.mpl-services.style2 .mpl-feature-box p.desc {
    margin-left: 100px;
}

.mpl-services.style2.text-right .mpl-feature-box img,
.mpl-services.style2.text-right .mpl-feature-box i {
    left: auto;
    right: 0;
} 

.mpl-services.style2.text-right .mpl-feature-box h3,
.mpl-services.style2.text-right .mpl-feature-box p.desc {
    margin-left: 0;
    margin-right: 100px;
}


.mpl-services.style3 .mpl-feature-box {
    background-color: #eee;
    padding: 40px;
    border-bottom: 12px solid #8dc73f;
}

.mpl-services.style3 > ul > li:nth-child(1) .mpl-feature-box {
    border-color: #fe3d50;
}

.mpl-services.style3 > ul > li:nth-child(1) .mpl-feature-box i {
    color: #fe3d50;
}

.mpl-services.style3 > ul > li:nth-child(3) .mpl-feature-box {
    border-color: #2283f6;
}

.mpl-services.style3 > ul > li:nth-child(3) .mpl-feature-box i {
    color: #2283f6;
}

.mpl-services.style3 .mpl-feature-box i {
    font-size: 80px;
    color: #8dc73f;
}

.mpl-services.style4 li {
    position: relative;
}

.mpl-services.style4 li:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 90px;
    left: 50%;
    border-top: 1px dashed #aaa;
}

.mpl-services.style4 li:last-child:before {
    display: none;
}

.mpl-services.style4 .mpl-feature-box {
    position: relative;
}

.mpl-services.style4 .mpl-feature-box img {
    height: 150px;
    width: auto;
}

.mpl-services.style4 .mpl-feature-box i {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    text-align: center;
    line-height: 150px;
    background-color: #eee;
    font-size: 50px;
}

.mpl-services.style4 .mpl-feature-box i:hover {
    color: #fff;
    background-color: #8dc73f;
}

.mpl-services.style5 .mpl-feature-box i {
    float: left;
    font-size: 50px;
    margin-right: 20px;
}

.mpl-services.style5 .mpl-feature-box i.square,
.mpl-services.style5 .mpl-feature-box i.circle {
    font-size: 25px;
}

.mpl-services.style5 .mpl-feature-box img {
    float: left;
    margin-right: 20px;
}

.mpl-services.style5 .mpl-feature-box h3 {
    clear: none;
    margin-left: 70px;
    margin-top: 0;
    padding-top: 20px;
}

.mpl-services.style5 .mpl-feature-box p {
    clear: left;
}

.mpl-services.style6 .mpl-feature-box i {
    font-size: 36px;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    border-radius: 100%;
    color: #8dc73f;
    border: 2px solid #8dc73f;
    float: left;
    margin-right: 20px;
}

.mpl-services.style6 .mpl-feature-box h3 {
    clear: none;
}

.mpl-services.style6 li:before {
    content: "";
    display: block;
    position: absolute;
    height: calc(100% - 90px);
    left: 60px;
    top: 125px;
    border-left: 2px solid #8dc73f;
}

.mpl-services.style6 li:last-child:before {
    display: none;
}

.mpl-services.style7 {
    padding-top: 40px;
}

.mpl-services.style7 .mpl-feature-box {
    background-color: #fff;
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
    padding: 50px 20px 20px;
    position: relative;
    margin-top: 40px;
}

.mpl-services.style7 .mpl-feature-box i {
    position: absolute;
    top: -1em;
    left: 50%;
    margin-left: -1em;
}

/*Section Tabs*/
.mpl-tabs.style1 .mpl-tabs-control i {
    font-size: 60px;
}

.mpl-tabs.style1 .mpl-tabs-control {
    border-bottom: 1px solid #eee;
}

.mpl-tabs.style1 .mpl-tabs-control li {
    position: relative;
    cursor: pointer;
}

.mpl-tabs.style1 .mpl-tabs-control li.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0;
    bottom: -3px;
    background-color: #8dc73f;
}

.mpl-tabs.style1 .mpl-tabs-control h3 {
    font-size: 18px;
    margin: 20px 0;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(1) i,
.mpl-tabs.style1 .mpl-tabs-control li:nth-child(1) h3 {
    color: #fe3d50;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(1).active:after {
    background-color: #fe3d50;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(2) i,
.mpl-tabs.style1 .mpl-tabs-control li:nth-child(2) h3 {
    color: #8dc73f;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(2).active:after {
    background-color: #8dc73f;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(3) i,
.mpl-tabs.style1 .mpl-tabs-control li:nth-child(3) h3 {
    color: #2283f6;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(3).active:after {
    background-color: #2283f6;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(4) i,
.mpl-tabs.style1 .mpl-tabs-control li:nth-child(4) h3 {
    color: #f8e71c;
}

.mpl-tabs.style1 .mpl-tabs-control li:nth-child(4).active:after {
    background-color: #f8e71c;
}

.mpl-tabs-contents {
    padding-top: 20px;
}

.mpl-tabs.style2 .mpl-tabs-control a h3 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    margin: 0;
}

.mpl-tabs.style2 .mpl-tabs-control li.active h3,
.mpl-tabs.style2 .mpl-tabs-control a:hover h3 {
    background-color: #8dc73f;
}

.mpl-tabs.style2 .mpl-tabs-contents {
    border-bottom: 2px solid #8dc73f;
}

/* 3.6 Section Contact*/
.mpl-form-control,
select.mpl-form-control,
textarea.mpl-form-control,
input[type="text"].mpl-form-control,
input[type="password"].mpl-form-control,
input[type="datetime"].mpl-form-control,
input[type="datetime-local"].mpl-form-control,
input[type="date"].mpl-form-control,
input[type="month"].mpl-form-control,
input[type="time"].mpl-form-control,
input[type="week"].mpl-form-control,
input[type="number"].mpl-form-control,
input[type="email"].mpl-form-control,
input[type="url"].mpl-form-control,
input[type="search"].mpl-form-control,
input[type="tel"].mpl-form-control,
input[type="color"] {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: inherit;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    color: inherit;
    border-width: 1px;
    border-style: solid;
    border-color: currentColor;
}

.mpl-form-control:focus {
    border-color: #66afe9;
    outline: 0;
}

.mpl-form-control::-moz-placeholder {
    color: inherit;
    opacity: .5;
}

.mpl-form-control:-ms-input-placeholder {
    color: inherit;
    opacity: .5;
}

.mpl-form-control::-webkit-input-placeholder {
    color: inherit;
    opacity: .5;
}

.mpl-form-control[disabled],
.mpl-form-control[readonly],
fieldset[disabled] .mpl-form-control {
    background-color: #eee;
    opacity: 1;
}

.mpl-form-control[disabled],
fieldset[disabled] .mpl-form-control {
    cursor: not-allowed;
}

textarea.mpl-form-control {
    height: auto;
}

.mpl-form-group {
    margin-bottom: 15px;
}

.mpl-control-label {
    display: none;
}

ul.mpl-contact-info {
    margin: 0;
    list-style-type: none;
}

.mpl-contact-info li {
    margin-bottom: 20px;
}

.mpl-contact-info a {
    color: inherit;
}

.mpl-contact-info address {
    display: inline;
    margin: 0;
}

.mpl-contact-info .mpl-feature-box i {
    float: left;
    margin-right: 10px;
    font-size: 24px;
}

.mpl-contact-info .mpl-feature-box h4 {
    clear: none;
    margin-bottom: 5px;
}

.mpl-contact-form .form-control {
    border: 1px solid #e5e5e5;
    padding: 5px 10px;
    margin-bottom: 20px; 
}

.mpl-contact-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #8dc73f;
    color: #fff;
    border: 0;
    border-radius: 5px;
}

.mpl-contact.style1 .mpl-contact-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    text-align: center;
    overflow: hidden;
}

.mpl-contact.style1 .mpl-contact-form input[type="submit"] {
    background-color: transparent;
    color: inherit;
    border: 1px solid currentColor;
}

.mpl-contact.style1 .mpl-form-group + .mpl-form-group {
    margin-top: 20px;
}

.mpl-contact.style2 .mpl-contact-info {
    margin-bottom: 20px;
}

.mpl-contact.style2 .form-group {
    margin-bottom: 0;
}

.mpl-contact.style2 input[type="submit"] {
    width: auto;
}

.mpl-contact.style3 input[type="submit"] {
    width: auto;
}

.mpl-contact.style3 .form-group,
.mpl-contact.style3 .form-control {
    margin-bottom: 0;
}

.mpl-contact.style3 .mpl-contact-form .form-control {
    border: 0;
    background-color: #eee;
    padding: 24px 10px;
}

.mpl-contact.style4 .mpl-control-label {
    display: none;
}

.mpl-contact.style4 .mpl-form-group,
.mpl-contact.style4 .mpl-form-control {
    color: inherit;
    margin-bottom: 0;
}

.mpl-contact.style4 .mpl-form-group + .mpl-form-group {
    margin-top: 30px;
}

.mpl-contact.style4 .mpl-form-control {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border-width: 0;
    padding: 10px 0;
    border-bottom-width: 3px;
    border-bottom-color: currentColor;
}

.mpl-contact.style4 textarea.mpl-form-control {
    height: 114px;
}

.mpl-contact.style4 [type="submit"] {
    margin-top: 7px;
}

.mpl-contact.style4 .mpl-contact-info i {
    background-color: #8bc03c;
    color: #fff;
    font-size: 20px;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 100%;
    text-align: center;
    margin-right: 10px;
}

.mpl-contact.style5 {
    background-color: #fff;
}

.mpl-contact.style5 .mpl-contact-info {
    background-color: #8bc03c;
    padding: 30px;
    color: #fff;
    height:inherit;
}

.mpl-contact.style5 .mpl-contact-info li {
    margin-top: 10px;
}

.mpl-contact.style5 .mpl-contact-info i {
    font-size: 1.5em;
    line-height: 1em;
    margin-right: 1em;
}

.mpl-contact.style5 .mpl-contact-info h3.title {
    color: inherit;
    margin-bottom: 30px;
}

.mpl-contact.style5 .mpl-contact-form {
    padding: 30px;
}

.mpl-contact.style5 .mpl-contact-form .mpl-form-group,
.mpl-contact.style5 .mpl-contact-form .mpl-form-control {
    margin-bottom: 0;
}

.mpl-contact.style5 .mpl-contact-form input[type="submit"] {
    width: auto;
}

.mpl-contact.style5 .mpl-form-control {
    border: 0;
    border-bottom: 2px solid #959595;
    padding: 5px 0;
    box-shadow: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
}

.mpl-subscribe-form .mpl-form-control {
    padding: 1.5em 1em;
    border: 2px solid #eee;
    border-radius: 5px;
}

.mpl-subscribe-form input[type="submit"] {
    width: 100%;
    padding: 1em;
    background-color: #8dc73f;
    color: #fff;
    border: 0;
    border-radius: 5px;
}

.mpl-contact.style5 .mpl-contact-form .form-group {
    margin: -2px 0;
}

.mpl-contact.style5 .mpl-contact-form .form-control {
    border: 0;
    border-bottom: 2px solid #959595;
    padding: 5px 0;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
}

.mpl-contact.style5 .mpl-contact-form .form-control:focus {
    border-color: #8bc03c;
}

.mpl-contact.style5 .mpl-contact-form input[type="submit"] {
    border-radius: 0;
}

.mpl-contact.style5 .mpl-contact-form input[type="submit"]:hover {
    background-color: #333;
}
/* 3.7 Section Team*/
.mpl-team.style1 .mpl-person .img-box,
.mpl-team.style1 .mpl-testimonial .img-box {
    border-radius: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}

.mpl-team.style1 .mpl-person .img-overlay {
    border-radius: 500px;
}

.mpl-person .person-name,
.mpl-testimonial .person-name {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.mpl-person .person-title,
.mpl-testimonial .person-title {
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.mpl-person .person-desc,
.mpl-testimonial .person-desc {
    margin-bottom: 10px;
}

.mpl-person .person-social {
    text-align: center;
    margin: 0;
    font-size: 20px;
}

.mpl-person .person-social li {
    display: inline-block;
}

.mpl-person .person-social li a {
    display: block;
}

.mpl-person {
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 1px 1px 5px 2px rgba(0,0,0,.1);
}

/*.mpl-person .img-box {
    border: 2px solid #fff;
}*/

.mpl-person .person-vcard {
    background-color: #fff;
    padding: 15px;
}

.mpl-person .person-name {
    margin-top: 0;
}

/*.mpl-person:hover .img-box {
    border-color: #8bc03c;
    color: #fff;
}

.mpl-person:hover .person-vcard {
    background-color: #8bc03c;
}

.mpl-person:hover,
.mpl-person:hover .person-name,
.mpl-person:hover .person-title,
.mpl-person:hover .person-social li a {
    color: #fff;
}*/

.mpl-person .person-social li a {
    /*border: 1px solid #666;*/
    border-radius: 100%;
    font-size: 16px;
    color: #595959;
    width: 30px;
    height: 30px;
    line-height: 28px;
    display: inline-block;
}

/*.mpl-person:hover .person-social li a {
    border-color: #fff;
}*/

.mpl-person:hover .img-overlay {
    opacity: 1;
}

.mpl-team.style2 .mpl-person .person-vcard {
    background-color: #fff;
    padding: 20px 0;
}

.mpl-team.style2 .mpl-person {
    box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1);
}

.mpl-team.style2 .mpl-person:hover {
    box-shadow: 1px 1px 10px 5px rgba(0,0,0,.1);
}

.mpl-team.style2 .mpl-person:hover .img-overlay {
    opacity: 1;
}

.mpl-team.style2 .img-box .img-overlay-icons i {
    font-size: 22px;
    margin: 0 8px;
    color: #fff;
    background-color: rgba(150,150,150,.75);
}

.mpl-team.style2 .img-overlay-icons {
    margin-bottom: 25px;
}

.mpl-team.style3 .mpl-person .person-name {
    color: #fff;
}

.mpl-team.style3 .mpl-person .person-social {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
}

.mpl-team.style3 .mpl-person .person-social i {
    font-size: 16px;
    color: #333;
}

.mpl-team.style3 .img-box .img-overlay {
    width: 90%;
    height: 90%;
    top:5%;
    left: 5%;
}

.mpl-team.style4 .mpl-person .person-social {
    margin-bottom: 10px;
}

.mpl-team.style4 .mpl-person .person-social i {
    font-size: 20px;
    color: #8dc73f;
}

.mpl-team.style5 .img-box {
    margin-bottom: 20px;
}

.mpl-team.style5 .person-social li {
    display: block;
    margin: 10px 0;
}

.mpl-person.notboxed {
    box-shadow: none;
}

.mpl-person.notboxed .person-vcard {
    background-color: transparent;
    padding: 15px 0 0;
}

/* 3.8 Section Skills*/
.mpl-skill {
    margin-top: 10px;
}

h3.mpl-progress-title {
    margin-top: 0;
    margin-bottom: 5px;
}

.mpl-progress-num {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 2.5em;
    text-align: center;
    margin-bottom: 15px;
    margin-right: -1.25em;
    padding: 2px 0;
    color: #fff;
    background-color: #8dc73f;
    font-size: 1rem;
}

.mpl-progress-num:after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: inherit;
    position: absolute;
    top: 100%;
    margin-top: -2px;
    margin-left: -2px;
    left: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mpl-skill .progress {
    padding: 4px;
    height: 26px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 0;
    overflow: initial;
}

.mpl-skill .progress-bar {
    background-color: #8dc73f;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
}

.mpl-skill-list.style2 .mpl-skill {
    margin-top: 30px;
}

.mpl-skill-list.style2 .progress {
    height: 8px;
    border: none;
    border-radius: 100px;
    background-color: rgba(0,0,0,.1);
    padding: 0;
}

.mpl-skill-list.style2 .progress-bar {
    border-radius: 100px;
}

.mpl-skill-list.style2 h3.mpl-progress-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.mpl-skill-list.style2 .mpl-progress-num {
    background-color: transparent;
    color: #333;
    margin-bottom: 10px;
}

.mpl-skill-list.style2 .mpl-progress-num:after {
    display: none;
}

.mpl-skill-list.style3 .mpl-skill {
    margin-top: 30px;
}

.mpl-skill-list.style3 .progress {
    height: 32px;
    border: none;
    background-color: rgba(0,0,0,.1);
    padding: 0;
}

.mpl-skill-list.style3 .progress-bar {
    
}

.mpl-skill-list.style3 h3.mpl-progress-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.mpl-skill-list.style3 .mpl-progress-num {
    background-color: transparent;
    color: #333;
    margin-bottom: 10px;
}

.mpl-skill-list.style3 .mpl-progress-num:after {
    display: none;
}

.mpl-skill-circle-list .mpl-skill {
    text-align: center;
    margin-top: 0;
}

.mpl-skill-circle-list .skill-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.mpl-skill-circle-list .percent {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 110px;
    font-size: 20px;
    font-weight: bold;
}

.mpl-skill-circle-list .title {
    color: inherit;
}

/* 3.9 Section Gmap*/
.mpl-section-gmap {
    padding: 0;
}

.mpl-gmap-control {
    padding: 10px 0;
    cursor: pointer;
}

.mpl-gmap {
    display: none;
}

.owl-carousel .owl-item .mpl-client img {
    width: auto;
    display: inline;
}


/* 3.10 Section Portfolios*/
.mpl-portfolio-list.style3 .img-overlay {
    height: 80px;
    bottom: 0;
    top: auto;
}

.mpl-portfolio-list.style3 .img-overlay-icons {
    position: absolute;
    width: 100%;
    top: -20px;
}

.mpl-portfolio-list.style3 .img-overlay-icons i {
    border-radius: 100%;
    color: #fff;
    font-size: 22px;
}

.mpl-portfolio-list.style3 .img-overlay-title {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.mpl-portfolio-list.style4 .img-overlay {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.mpl-portfolio-list.style4 .img-overlay-title {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 10px;
}

/* 3.11 Section Blog*/
.mpl-blog-grid .feature-img-box .img-box,
.mpl-blog-grid .feature-img-box .img-box img {
    width: 100%;
}

.mpl-blog-grid .entry-box {
    margin: 0;
}

.mpl-blog-grid h3.entry-title a {
    font-size: 18px;
    color: #333;
}

.mpl-section .entry-title a {
    color: inherit;
}

.mpl-section .entry-meta a {
    color: inherit;
}

.mpl-blog-grid.style1 .entry-box {
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.mpl-blog-grid.style1 .entry-main {
    padding: 20px;
}

.mpl-blog-grid.style1 .entry-footer {
    border-top: 1px solid #e5e5e5;
    padding: 10px 20px;
    margin: 0;
}

.mpl-blog-grid.style1 .entry-meta {
    font-size: .8em;
    margin: 0;
    padding: 0;
}

.mpl-blog-grid.style1 .entry-meta li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}

.mpl-blog-grid.style1 .entry-meta i {
    margin-right: 5px;
}

.mpl-blog-grid.style1 .entry-title {
    margin: 0 0 10px;
}

.mpl-blog-grid.style1 .entry-box.notboxed {
    background-color: transparent;
    box-shadow: none;
}

.mpl-blog-grid.style1 .entry-box.notboxed .entry-main {
    padding-left: 0;
    padding-right: 0;
}

.mpl-blog-grid.style1 .entry-box.notboxed .entry-footer {
    padding-left: 0;
    padding-right: 0;
}

.mpl-blog-grid .entry-header,
.mpl-section-post .entry-header {
    text-align: inherit;
}

.mpl-blog-grid.style2 .entry-header {
    padding-left: 70px;
    position: relative;
}

.mpl-blog-grid.style2 .entry-meta {
    position: absolute;
    top: 0;
    left: 0;
}

.mpl-blog-grid.style2 .entry-meta {
    width: 68px;
    height: 90px;
    background-color: #8dc73f;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    line-height: 36px;
    padding: 10px 5px;
}

.mpl-blog-grid.style2 .entry-comments {
    top: 92px;
}

.mpl-blog-grid.style2 .entry-meta span {
    display: block;
}

.mpl-blog-grid.style2 .entry-meta span + span {
    border-top: 1px solid #fff;
}

.mpl-blog-grid.style2 .entry-meta i {
    margin: 0;
    font-size: 30px;
    line-height: 30px;
}

.mpl-blog-grid.style2 .entry-main {
    padding-left: 70px;
    padding-top: 30px;
}

.mpl-blog-grid.style2 h3.entry-title {
    font-size: 18px;
}

.mpl-blog-grid.style2 .entry-more {
    margin-top: 10px;
}

.mpl-blog-grid.style3 .entry-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mpl-blog-grid.style3 .entry-box .entry-main {
    position: absolute;
    left: 0;
    bottom: -800px;
    width: 100%;
    background-color: rgba(0,0,0,.7);
    color: #fff;
    padding: 30px;
    transition: .3s;
}

.mpl-blog-grid.style3 .entry-box:hover .entry-main {
    bottom: 0;
}

.mpl-blog-grid.style3 .entry-main a {
    color: #fff;
}

.mpl-blog-grid.style3 .entry-title a {
    color: #8dc73f;
}

.mpl-blog-grid.style3 .entry-footer {
    border: none;
    padding: 0;
}

.mpl-blog-grid.style3 .entry-meta i {
    font-size: 1.5em;
}

.mpl-blog-grid.style3 .entry-meta + .entry-meta {
    margin-left: 20px;
}

.mpl-blog-grid.style3 h3.entry-title {
    font-size: 18px;
}

/*.mpl-blog-grid.style3 .entry-control {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: url(images/zoomout.png) #8dc73f no-repeat center center;
}*/

.mpl-blog-grid.style4 {
    /*background-color: #fff;*/
}

.mpl-blog-grid.style4 .entry-box {
    background-color: #fff;
    box-shadow: 1px 1px 5px rgba(0,0,0,.1);
}

.mpl-blog-grid.style4 .entry-main {
    padding: 50px;
    position: relative;
}

.mpl-blog-grid.style4 .entry-footer {
    border: none;
    padding: 10px 0 0;
}

.mpl-blog-grid.style4 .entry-meta i {
    font-size: 1.5em;
}

.mpl-blog-grid.style4 .entry-meta + .entry-meta {
    margin-left: 20px;
}

.mpl-blog-grid.style4 h3.entry-title {
    font-size: 18px;
}

.mpl-blog-grid.style4 .entry-main:after {
    position:absolute;
    content: "";
    display: block;
    right: 100%;
    top: 30%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: #fff;
}

/*
.mpl-blog-grid.style4 > li:nth-child(2) .entry-main:after {
    right: auto;
    left: 100%;
    z-index: 999;
    border-right-color: transparent;
    border-left-color: #fff;
}*/

.mpl-blog-grid.style4 .feature-img-box {
    margin-bottom: 0;
}

.mpl-blog-grid.style5 .entry-meta {
    font-size: 13px;
    text-transform: uppercase;
}

.mpl-blog-grid.style5 .entry-author {
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 30px;
    margin-bottom: 8px;
}

.mpl-blog-grid.style5 .entry-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 120px;
    background-color: #8dc73f;
    color: #fff;
    text-align: center;
}

.mpl-blog-grid.style5 .entry-date span:first-child {
    display: block;
    font-size: 54px;
}

.mpl-blog-grid.style5 .entry-main {
    background-color: #eee;
    padding: 20px 20px 20px 150px;
    padding-top: 20px;
    overflow: hidden;
    position: relative;
    height: 120px;
}

.mpl-blog-grid.style5 .entry-summary {
    font-size: 14px;
    height: 48px;
    overflow: hidden;
}

.mpl-blog-grid.style5 > li + li {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.mpl-section-promo .col-md-4 {
    padding-top: 50px;
}

.mpl-section-promo .col-md-8 {
    border-left: 3px solid #ddd;
}

.mpl-carousel-team .owl-item img {
    display: inline;
    width: auto;
    height: auto;
}

/* 3.12 Section Pricing*/
.mpl-pricing-table {
    /*padding-top: 30px;*/
}

.mpl-pricing-box {
    border: none;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0;
}

@media screen and (min-width: 992px) {
    .mpl-pricing-box.standout {
        transform: translateY(-30px);
    }   
}

.mpl-pricing-title {
    background-color: #333;
    padding: 30px 0;
    font-size: 18px;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.mpl-pricing-box.mpl-featured .mpl-pricing-title {
    color: #8bc03c;
}

.mpl-pricing-box .mpl-pricing-tag {
    color: #fff;
    padding: 20px 0;
    font-size: 32px;
    background-color: #555;
}

.mpl-pricing-box.mpl-featured .mpl-pricing-tag {
    color: #8bc03c;
}

.mpl-pricing-unit {
    font-size: .5em;
    position: relative;
    bottom: 0;
    left: .5em;
}

.mpl-pricing-unit:before {
    content: "\/";
    margin-right: .5em;
}

.mpl-pricing-list {
    list-style-type: none;
    margin: 0;
    padding: 30px 20px 0;
}

.mpl-pricing-list li {
    padding: 10px 0;
}

.mpl-pricing-list li + li {
    border-top: 2px solid #e5e5e5;
}

.mpl-pricing-action {
    border-top: 0;
    padding: 30px 10px;
    background-color: transparent;
}

.mpl-pricing-table.style2 {
    border: 0 solid #ddd;
    border-width: 1px 0 0 1px;
}

.mpl-pricing-table.style2 .mpl-pricing-box {
    background-color: #fff;
    border: 0 solid #ddd;
    border-width: 0 1px 1px 0;
}

.mpl-pricing-table.style2 .mpl-pricing-title {
    background-color: #fff;
    font-size: 24px;
    line-height: 1;
    color: #555;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.mpl-pricing-table.style2 .mpl-pricing-top-icon {
    font-size: 72px;
    color: #8dc73f;
    line-height: 1;
    margin-bottom: 10px;
}

.mpl-pricing-table.style2 .mpl-pricing-tag {
    background-color: #f5f5f5;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.mpl-pricing-table.style2 .mpl-pricing-tag .currency {
    font-size: 21px;
    position: relative;
    top: -20px;
    color: #8dc73f;
}

.mpl-pricing-table.style2 .mpl-pricing-tag .price {
    font-size: 40px;
    color: #8dc73f;
}

.mpl-pricing-table.style2 .mpl-pricing-tag .unit {
    font-size: 14px;
}

.mpl-pricing-table.style2 .mpl-pricing-list {
    padding: 0;
}

.mpl-pricing-table.style2 .mpl-pricing-list li {
    padding: 20px 10px; 
    border-bottom: 1px solid #ddd;
}

.mpl-pricing-table.style2 .mpl-pricing-list li + li {
    border-top: 0;
}

.mpl-pricing-table.style2 .mpl-pricing-action {
    padding: 20px 10px;
    background-color: #f5f5f5;
}

.mpl-pricing-table.style2 .mpl-pricing-box.mpl-featured .mpl-pricing-title {
    background-color: #8dc73f;
    color: #fff;
}

.mpl-pricing-table.style2 .mpl-pricing-box.mpl-featured .mpl-pricing-top-icon {
    color: #fff;
}

/* 3.13 Section Countdown*/
.mpl-countdown h3 {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.mpl-countdown h3:after {
    content: "";
    display: block;
    margin: 20px auto 0;
    width: 50px;
    height: 0;
    border-bottom: 1px solid #8dc73f;
}

.mpl-countdown .mpl-time-counter-wrap {
    background-color: rgba(0,0,0,.05);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    text-align: center;
    padding-top: 60px;
}

.mpl-countdown .mpl-time-counter {
    font-size: 36px;
    line-height: 1;
}


.mpl-counter {
    position: relative;
    text-align: center;
}

.mpl-counter-icon {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 120px;
    line-height: 1;
    color: #8dc73f;
    opacity: .4;
}

.mpl-counter-info {
    position: relative;
}

.mpl-counter-info h3 {
    margin: 0;
}

.mpl-counter-num {
    font-size: 54px;
    line-height: 1.5;
}

.mpl-counter-list.style2 li + li {
    border-left: 1px solid currentColor;
}

.mpl-counter-list.style2 .mpl-counter-num {
    font-weight: 700;
}

.mpl-counter-list.style2 .mpl-counter-icon {
    display: none;
}

.mpl-counter-list.style3 .mpl-counter-icon {
    width: auto;
    font-size: 36px;
    line-height: 1.5;
    color: inherit;
    opacity: 1;
}

.mpl-counter-list.style3 .mpl-counter-info {
    text-align: left;
    padding-left: 54px;
}

.mpl-counter-list.style3 .mpl-counter-num {
    font-size: 24px;
}

.mpl-counter-list.style3 .mpl-counter-info h3 {
    font-size: 16px;
}

/* 3.14 Timeline */
.mpl-timeline.style1 {
    position: relative;
    padding: 30px 0;
}

.mpl-timeline.style1:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    border: 1px solid #ddd;
}

.mpl-timeline.style1 .mpl-timeline-item {
    position: relative;
    margin: 0 -60px;
}

.mpl-timeline.style1 .mpl-timeline-item + .mpl-timeline-item {
    margin-top: 60px;
}

.mpl-timeline.style1 .mpl-timeline-item:before,
.mpl-timeline.style1 .mpl-timeline-item:after {
    display: table;
    content: " ";
}

.mpl-timeline.style1 .mpl-timeline-item:after {
    clear: both;
}

.mpl-timeline.style1 .mpl-timeline-info {
    float: left;
    width: 50%;
    position: relative;
    min-height: 1px;
    padding: 0 60px;
}

.mpl-timeline.style1 .mpl-timeline-time {
    float: left;
    width: 50%;
    position: relative;
    min-height: 1px;
    padding: 0 60px;
    font-weight: 700;
    line-height: 48px;
}

.mpl-timeline.style1 .mpl-timeline-info-inner {
    background-color: #5d5d5d;
    color: #fff;
    padding: 20px;
    position: relative;
    border-radius: 10px 0 10px 10px;
}

.mpl-timeline.style1 .mpl-timeline-item:nth-child(2n+1) .mpl-timeline-info-inner {
    border-radius: 0 10px 10px 10px;
}

.mpl-timeline.style1 .mpl-timeline-info-inner:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-top-color: #5d5d5d;
    position: absolute;
    left: 100%;
    margin-left: -20px;
    top: 0;
}

.mpl-timeline.style1 .mpl-timeline-item:nth-child(2n+1) .mpl-timeline-info-inner:before {
    right: 100%;
    margin-right: -20px;
    left: auto;
    margin-left: 0;
}

.mpl-timeline.style1 .mpl-timeline-title {
    color: #fff;
    margin-top: 0;
}

.mpl-timeline.style1 .mpl-timeline-item:nth-child(2n+1) .mpl-timeline-info {
    left: 50%;  
}

.mpl-timeline.style1 .mpl-timeline-item:nth-child(2n+1) .mpl-timeline-time {
    right: 50%;
    text-align: right;  
}

.mpl-timeline.style1 .mpl-timeline-control {
    display: block;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -24px;
    background-color: #8dc73f;
    color: #fff!important;
    font: normal normal normal 24px/2 FontAwesome;
    cursor: pointer;
}

.mpl-timeline.style1 .mpl-timeline-control:before {
    content: "\f067";
}

.mpl-timeline.style1 .mpl-timeline-item.expand .mpl-timeline-control:before {
    content: "\f068";
}

.mpl-timeline.style2 .mpl-timeline-item {
    position: relative;
}

.mpl-timeline.style2 .mpl-timeline-item + .mpl-timeline-item {
    margin-top: 20px;
}

.mpl-timeline.style2 .mpl-timeline-time {
    position: absolute;
    top: 0; left: 0;
    background-color: #eee;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    text-align: center;
    font-size: 12px;
    padding-top: 5px;
}

.mpl-timeline.style2 .mpl-timeline-info {
    position: relative;
    padding-left: 70px;
}

.mpl-timeline.style2 .mpl-timeline-title {
    font-size: 18px;
    margin: 0;
    line-height: 48px;
}

.mpl-timeline.style2 .mpl-timeline-item.expand .mpl-timeline-time {
    color: #fff;
    background-color: #8dc73f;
}

/*Showcase*/
.mpl-section-showcase {
    padding: 0;
}

.mpl-section-showcase .mpl-gallery-item {
    height: 100vh;
    background-size: cover;
    position: relative;
}

.mpl-gallery-main {
    padding: 50% 20px;
}

.mpl-gallery-item .mpl-gallery-item-overlay {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    background-color: rgba(51,51,51,.7);
    color: #fff;
    padding: 20px 20px 40px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease; 
    transition: all .5s ease;
}

.mpl-gallery-item:hover .mpl-gallery-item-overlay {
    bottom: 0;
}

.mpl-gallery-item-overlay .title {
    color: #fff;
    font-size: 30px;
}

.mpl-gallery-item-overlay a {
    color: #8bc03c;
}

.mpl-promofull {
    margin-right: -15px;
    margin-left: -15px;
}

.mpl-promofull:before,
.mpl-promofull:after {
    display: table;
    content: " ";
}

.mpl-promofull:after {
    clear: both;
}

.mpl-promofull-content {
    padding: 100px 15px;
}

@media screen and (min-width: 768px) {
    .mpl-promofull-img {
        width: 50%;
        float: left;
        bottom: 0;
        left: 0;
        overflow: hidden;
        padding: 0;
        position: absolute;
        top: 0;
        right: 50%;
    }
    .mpl-promofull.left .mpl-promofull-img {
        float: right;
        left: 50%;
        right: 0;
    }
    .mpl-promofull-img img {
        height: 100%;
        max-width: inherit;
        text-align: center;
        width: auto;
    }
    .mpl-promofull-content {
        position: relative;
        min-height: 1px;
        padding: 0 15px;
        float: left;
        width: 41.66666667%;
        left: 58.33333333%;
    }
    .mpl-promofull.left .mpl-promofull-content {
        float: right;
        left: auto;
        right: 58.33333333%;

    }
}

.mpl-promo + .mpl-promo-img {
    margin-top: 30px;
}

.mpl-promo > div {
    margin-bottom: 20px;
}

.mpl-container {
    max-width: 100%!important;
}

.mpl-owl-post-carousel {
    height:auto !important;
}

.contact-failed {
    float:left;
}

.mpl-section-promo .mpl-section-content {
    position:static;
}


.mpl-mff-item + .mpl-mff-item {
    margin-top: 20px;
}

.mpl-fb-author {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.mpl-fb-author-img {
    position: absolute;
    top: 0;
    left: 0;
}

.mpl-fb-page-name {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #8dc73f;
}

.mpl-fb-date {
    margin: 0;
    font-size: 12px;
    line-height: 1;
}

.mpl-fb-post-links {
    font-size: 12px;
}

.mpl-fb-share-container {
    display: inline-block;
    position: relative;
}

.mpl-fb-share-tooltip {
    display: none;
    position: absolute;
    right: 0;
    bottom: 100%;
    margin-bottom: 25px;
    background-color: #333;
    color: #fff;
    width: 125px;
    margin: 0;
    padding: 5px;
}

.mpl-fb-share-container:hover .mpl-fb-share-tooltip {
    display: block;
}

.mpl-fb-share-tooltip a {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 5px;
    color: #fff!important;
}

.mpl-fb-share-tooltip a:hover {
    background-color: rgba(255,255,255,.1);
}

.mpl-fb-share-tooltip i.fa-play {
    position: absolute;
    top: 100%;
    margin-top: -1px;
    right: 15px;
    font-size: 8px;
    color: #333;
}

.mpl-fb-post-text {
    margin-bottom: 15px;
}

.mpl-fb-shared-link {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 12px;
}

.mpl-fb-post-text a,
.mpl-fb-text-link a,
.mpl-fb-post-links a {
    color: #8dc73f;
}

.mpl-fb-link-title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
}

.mpl-fb-link-caption {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px;
}

.mpl-fb-post-desc {
    margin-bottom: 0;
}

.mpl-action-box .mpl-section-title-wrap {
    margin-bottom: 10px;
}

.mpl-action-box-inner {
    width: 100%;
    word-wrap: break-word;
}

.mpl-action-box.mpl-btn-left .mpl-action-content,
.mpl-action-box.mpl-btn-left .mpl-action-button,
.mpl-action-box.mpl-btn-right .mpl-action-content,
.mpl-action-box.mpl-btn-right .mpl-action-button {
    display: table-cell;
}

.mpl-action-box.mpl-btn-left .mpl-action-content {
    vertical-align: top;
    padding-right: 30px;
}

.mpl-action-button {
    vertical-align: middle;
}

.mpl-action-box.mpl-btn-right .mpl-action-content {
    vertical-align: top;
    padding-left: 30px;
}

.mpl-action-box.mpl-btn-top .mpl-action-button {
    margin-bottom: 20px;
}

.mpl-action-box.mpl-btn-bottom .mpl-action-button {
    margin-top: 20px;
}


#wpadminbar #wp-admin-bar-mpl_inline-admin-bar-link>.ab-item:before{
    content: "\f464";
    top: 2px;
}

.mpl-section-video .mpl-section-title-wrap .mpl-section-title, 
.mpl-section-video .mpl-section-title-wrap .mpl-section-subtitle,
.mpl-section-slider .mpl-section-title-wrap .mpl-section-title, 
.mpl-section-slider .mpl-section-title-wrap .mpl-section-subtitle{
   color: #fff; 
}
.mpl-parallax-scrolling{
    background-attachment:fixed !important;
}
.mpl-slider .mpl-slider-item + .mpl-slider-item {
	display: none;
}