/* Import Basic Files
-------------------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url('../fonts/fontawesome/css/font-awesome.min.css');
@import url('../js/plugins/animate/animate.min.css');
@import url('../js/plugins/owl-carousel/assets/owl.carousel.css');
@import url('../js/plugins/owl-carousel/assets/owl.theme.css');
@import url('../js/plugins/fancybox/jquery.fancybox.css');
@import url(../js/plugins/ion-rangeSlider/css/ion.rangeSlider.css);
@import url(../js/plugins/ion-rangeSlider/css/ion.rangeSlider.skinFlat.css);
@import url(../js/plugins/rs-plugin/css/settings.css);


/* ==========================================================================
   1. General Styles
========================================================================== */
/* 1.1 Main Styles
-------------------------------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    color: #3b4045;
    overflow-x: hidden;
    font-weight: normal;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font: 14px/22px 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* 1.2 Anchor
-------------------------------------------------------------------------- */
a {
    color: #5e9832;
    cursor: pointer;
    text-decoration: none;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    -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;
}
a:focus,
a:hover {
    outline: none;
    color: #282828;
    text-decoration: none;
}

/* 1.3 Placeholder
-------------------------------------------------------------------------- */
input,
textarea {
    color: #282828;
}
.placeholder { color: #282828; }

/* 1.4 Selection Color
-------------------------------------------------------------------------- */
::selection {
    color: #ffffff;
    text-shadow: none;
    background-color: #282828;
}
::-webkit-selection {
    color: #ffffff;
    text-shadow: none;
    background-color: #282828;
}
::-moz-selection {
    color: #ffffff;
    text-shadow: none;
    background-color: #282828;
}

/* 1.5 Scrollbar
-------------------------------------------------------------------------- */
::-webkit-scrollbar {
    background-color: #ffffff;

    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
       -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
        -ms-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
         -o-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb { background-color: #5e9832; }
::-webkit-scrollbar-thumb:hover{
    -webkit-box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.3);
        -ms-box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.3);
         -o-box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.3);
            box-shadow: inset 1px 1px 8px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:active{ background-color: rgba(94, 152, 50, 0.8); } /* custom #282828 */

/* 1.6 To Top
-------------------------------------------------------------------------- */
/* 1.6.1 Wrapper
-------------------------------------------------------------------------- */
#to-top {
    width: 40px;
    height: 40px;
    z-index: 999;
    right: -50px;
    bottom: 16px;
    position: fixed;
    font-size: 24px;
    overflow: hidden;
    line-height: 34px;
    border-radius: 50%; /* 4px custom */
    text-align: center;
    background-color: transparent;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;

    -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;
}

/* 1.6.2 Anchor
-------------------------------------------------------------------------- */
#to-top a {
    width: 100%;
    height: 100%;
    display: block;
    color: #ffffff;
    overflow: hidden;
    line-height: 34px;
    border-radius: 4px;
    text-align: center;
    background-color: #5e9832;
}
#to-top.topdisplay { right: 13px; }

/* 1.6.3 Hover
-------------------------------------------------------------------------- */
#to-top a:hover { background-color: rgba(94, 152, 50, 0.6); /* custom #*/}

/* 1.7 Loader
-------------------------------------------------------------------------- */
/* 1.7.1 Wrapper
-------------------------------------------------------------------------- */
#loader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 999999;
    position: fixed;
    background: #ffffff;
}

.bounce-ball-wrapper {
    top: 50%;
    left: 50%;
    margin-left: -39px;
    position: absolute;
}

/* 1.7.2 Ball
-------------------------------------------------------------------------- */
.ball-bounce {
    float:left;
    width: 16px;
    height: 16px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #5e9832;

    -webkit-box-shadow: inset 0 -10px rgba(0, 0, 0, 0.1);
       -moz-box-shadow: inset 0 -10px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: inset 0 -10px rgba(0, 0, 0, 0.1);
         -o-box-shadow: inset 0 -10px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 -10px rgba(0, 0, 0, 0.1);

    -webkit-animation: ballbounce 0.75s infinite linear;
       -moz-animation: ballbounce 0.75s infinite linear;
        -ms-animation: ballbounce 0.75s infinite linear;
         -o-animation: ballbounce 0.75s infinite linear;
            animation: ballbounce 0.75s infinite linear;
}
.ball1 {
    -webkit-animation-delay: -1.1s;
       -moz-animation-delay: -1.1s;
        -ms-animation-delay: -1.1s;
         -o-animation-delay: -1.1s;
            animation-delay: -1.1s;
}
.ball2 {
    -webkit-animation-delay: -1.2s;
       -moz-animation-delay: -1.2s;
        -ms-animation-delay: -1.2s;
         -o-animation-delay: -1.2s;
            animation-delay: -1.2s;
}
.ball3 {
    -webkit-animation-delay: -1.3s;
       -moz-animation-delay: -1.3s;
        -ms-animation-delay: -1.3s;
         -o-animation-delay: -1.3s;
            animation-delay: -1.3s;
}

/* 1.7.3 Animation
-------------------------------------------------------------------------- */
@-webkit-keyframes ballbounce {
    0% { -webkit-transform: translate(0, -50%) scale(1, 0.8); }
    30% { -webkit-transform: translate(0, -150%) scale(0.8, 0.8); }
    60% { -webkit-transform: translate(0, -200%) scale(0.8, 1); }
    85% { -webkit-transform: translate(0, -50%) scale(0.8, 1); }
    90% { -webkit-transform: translate(0, -50%) scale(0.8, 1); }
    100% { -webkit-transform: translate(0, -50%) scale(1, 0.8); }
}
@-moz-keyframes ballbounce {
    0% { -moz-transform: translate(0, -50%) scale(1, 0.8); }
    30% { -moz-transform: translate(0, -150%) scale(0.8, 0.8); }
    60% { -moz-transform: translate(0, -200%) scale(0.8, 1); }
    85% { -moz-transform: translate(0, -50%) scale(0.8, 1); }
    90% { -moz-transform: translate(0, -50%) scale(0.8, 1); }
    100% { -moz-transform: translate(0, -50%) scale(1, 0.8); }
}
@-ms-keyframes ballbounce {
    0% { -ms-transform: translate(0, -50%) scale(1, 0.8); }
    30% { -ms-transform: translate(0, -150%) scale(0.8, 0.8); }
    60% { -ms-transform: translate(0, -200%) scale(0.8, 1); }
    85% { -ms-transform: translate(0, -50%) scale(0.8, 1); }
    90% { -ms-transform: translate(0, -50%) scale(0.8, 1); }
    100% { -ms-transform: translate(0, -50%) scale(1, 0.8); }
}
@-o-keyframes ballbounce {
    0% { -o-transform: translate(0, -50%) scale(1, 0.8); }
    30% { -o-transform: translate(0, -150%) scale(0.8, 0.8); }
    60% { -o-transform: translate(0, -200%) scale(0.8, 1); }
    85% { -o-transform: translate(0, -50%) scale(0.8, 1); }
    90% { -o-transform: translate(0, -50%) scale(0.8, 1); }
    100% { -o-transform: translate(0, -50%) scale(1, 0.8); }
}
@keyframes ballbounce {
    0% { transform: translate(0, -50%) scale(1, 0.8); }
    30% { transform: translate(0, -150%) scale(0.8, 0.8); }
    60% { transform: translate(0, -200%) scale(0.8, 1); }
    85% { transform: translate(0, -50%) scale(0.8, 1); }
    90% { transform: translate(0, -50%) scale(0.8, 1); }
    100% { transform: translate(0, -50%) scale(1, 0.8); }
}

/* 1.8 Buttons
-------------------------------------------------------------------------- */
/* 1.8.1 Button
-------------------------------------------------------------------------- */
button {
    border: 0;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    -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;
}
button:focus,
button:hover {
    outline: none !important;
}

/* 1.8.2 Nesto Button
-------------------------------------------------------------------------- */
.btn-nesto,
.btn.btn-nesto {
    color: #ffffff;
    overflow: hidden;
    font-weight: 700;
    border-radius: 4px;
    position: relative;
    border: 2px solid #5e9832;
    background-color: #5e9832;
    text-transform: capitalize;
}
.btn.btn-nesto:hover {
    color: #ffffff;
    border-color: rgba(94, 152, 50, 0.8); /* 282828 custom */
    background-color: rgba(94, 152, 50, 0.8); /* 282828 custom */
}
.btn:focus { outline: none; }

/* 1.8.3 Nesto Main Button
-------------------------------------------------------------------------- */
.btn-nesto-main {
    color: #ffffff;
    overflow: hidden;
    font-weight: 700;
    padding: 9px 27px;
    border-radius: 4px;
    position: relative;
    border: 2px solid #5e9832;
    background-color: #5e9832;
    text-transform: capitalize;

    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
         -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-nesto-main:hover {
    color: #5e9832;
    border-color: #5e9832;
    background-color: transparent;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

/* 1.8.4 Nesto Alternative Main Button
-------------------------------------------------------------------------- */
.btn-nesto-main-o {
    color: #5e9832;
    overflow: hidden;
    font-weight: 700;
    padding: 9px 27px;
    border-radius: 4px;
    position: relative;
    border: 2px solid #5e9832;
    text-transform: capitalize;
    background-color: transparent;
}
.btn-nesto-main-o:hover {
    color: #ffffff;
    border-color: #5e9832;
    background-color: #5e9832;

    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
         -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}

/* 1.8.5 Nesto White Button
-------------------------------------------------------------------------- */
.btn-nesto-white {
    overflow: hidden;
    font-weight: 700;
    padding: 9px 27px;
    border-radius: 4px;
    position: relative;
    color: #5e9832 !important;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    text-transform: capitalize;

    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
         -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-nesto-white:hover {
    border-color: #ffffff;
    color: #ffffff !important;
    background-color: transparent;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

/* 1.8.6 Nesto Alternative White Button
-------------------------------------------------------------------------- */
.btn-nesto-white-o {
    overflow: hidden;
    font-weight: 700;
    padding: 9px 27px;
    border-radius: 4px;
    position: relative;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    background-color: transparent;
    text-transform: capitalize;
}
.btn-nesto-white-o:hover {
    border-color: #ffffff;
    color: #5e9832 !important;
    background-color: #ffffff;

    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
         -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}

/* 1.8.7 Nesto Purple Button
-------------------------------------------------------------------------- */
.btn-nesto-purple {
    overflow: hidden;
    font-weight: 700;
    padding: 9px 27px;
    border-radius: 4px;
    position: relative;
    color: #ffffff !important;
    border: 2px solid #88ABC2;
    background-color: #88ABC2;
    text-transform: capitalize;

    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
       -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
         -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}
.btn-nesto-purple:hover {
    border-color: #ffffff;
    background-color: transparent;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

/* 1.8.8 Nesto Alternative Button
-------------------------------------------------------------------------- */
.btn-nesto-o,
.btn.btn-nesto-o {
    border: 0;
    color: #ffffff;
    overflow: hidden;
    font-weight: 700;
    border-radius: 4px;
    position: relative;
    background-color: #282828;
    text-transform: capitalize;
}
.btn.btn-nesto-o:hover {
    color: #ffffff;
    background-color: #5e9832;
}
.btn:focus { outline: none; }

/* 1.9 Spinner Loader
-------------------------------------------------------------------------- */
.spinner-loader {
    width: 100%;
    display: none;
    color: #282828;
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

/* 1.10 FitVid Frame
-------------------------------------------------------------------------- */
.fitvid-iframe {
    width: 100%;
    display: block;
    overflow: hidden;
}
.fitvid-iframe iframe {
    border: 0;
    margin: 0;
    padding: 0;
}
.fullscreenvideo iframe {
    border: 0;
    margin: 0;
    padding: 0;
}




/* ==========================================================================
   2. Typography
========================================================================== */
/* 2.1 Heading
-------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    color: #282828;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0 auto 10px;
}
h1 { font-size: 36px; line-height: 40px; }
h2 { font-size: 30px; line-height: 35px; }
h3 { font-size: 24px; line-height: 27px; }
h4 { font-size: 20px; line-height: 24px; font-weight: 400; }
h5 { font-size: 18px; line-height: 22px; font-weight: 400; }
h6 { font-size: 16px; line-height: 18px; font-weight: 400; }

/* 2.2 Main Color
-------------------------------------------------------------------------- */
.main-color { color: #5e9832; }




/* ==========================================================================
   3. Main Wrapper
========================================================================== */
#main-wrapper {
    padding: 0;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;

    -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;
}




/* ==========================================================================
   4. Shortcodes
========================================================================== */
/* 4.1 Form / Input Group
-------------------------------------------------------------------------- */
.form-group,
.input-group {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 4.2 Form Control
-------------------------------------------------------------------------- */
.form-control {
    height: 50px;
    outline: none;
    padding: 15px;
    color: #282828;
    margin: 0 auto;
    font-size: 13px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 1px solid #ebebeb;
    background-color: #ffffff;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;

    -webkit-appearance: none;
       -moz-appearance: none;
        -ms-appearance: none;
         -o-appearance: none;
            appearance: none;

    -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;
}
.form-control:hover,
.form-control:focus {
    border-color: #5e9832;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

/* 4.3 Grids
-------------------------------------------------------------------------- */
/* 4.3.1 4 Columns
-------------------------------------------------------------------------- */
body.grid-4-columns .main-content {
    padding: 0;
    width: 100%;
}
body.grid-4-columns .sidebar { display: none; }

/* 4.4 Social Icons
-------------------------------------------------------------------------- */
/* 4.4.1 Wrapper
-------------------------------------------------------------------------- */
.social-icons {
    width: 100%;
    overflow: hidden;
}

/* 4.4.2 List
-------------------------------------------------------------------------- */
.social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 4.4.3 Items
-------------------------------------------------------------------------- */
.social-icons ul li {
    margin: 0 5px 10px;
    display: inline-block;
}

/* 4.4.4 Anchor
-------------------------------------------------------------------------- */
.social-icons ul li a {
    display: block;
    font-size: 16px;
}

/* 4.5 Feature Box
-------------------------------------------------------------------------- */
/* 4.5.1 Wrapper
-------------------------------------------------------------------------- */
.feature-box {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 20px;
}

/* 4.5.2 Image
-------------------------------------------------------------------------- */
.feature-box-image {
    width: 100%;
    display: block;
    margin: 0 auto 10px;
}
.feature-box img {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-width: 555px;
}

/* 4.5.3 Title
-------------------------------------------------------------------------- */
.feature-box-title {
    width: 100%;
    display: block;
    margin: 0 auto 30px;
    text-transform: uppercase;
}
/* custom */
.instruction-manual li {
    list-style-type: none;
    background-size: 50px;
    background-image: url(../img/icons/pdf.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 55px;
    padding-top: 15px;
    padding-bottom: 15px;
}
/* custom */
.letters-list li {
    list-style-type: upper-latin;

}
/* custom */
@media screen and (min-width: 992px) {
    .feature-box img {
        padding-top: 60px;
    }
}

/* 4.5.4 Content
-------------------------------------------------------------------------- */
.feature-box-content { margin-bottom: 10px; }
.feature-box-content p { margin-bottom: 20px; }
.feature-box-content p:last-child { margin-bottom: 0; }

/* 4.6 Client Logos
-------------------------------------------------------------------------- */
/* 4.6.1 Wrapper
-------------------------------------------------------------------------- */
.client-logo {
    width: 100%;
    max-width: 260px;
    overflow: hidden;
    margin: 0 auto 30px;
    background-color: #f2f2f2;
}

/* 4.6.2 Anchor
-------------------------------------------------------------------------- */
.client-logo a {
    width: 100%;
    padding: 15px;
    display: block;
    border: 1px solid #dfdfdf;
}

/* 4.6.3 Image
-------------------------------------------------------------------------- */
.client-logo img {
    width: 100%;
    opacity: 0.5;
    display: block;
    margin: 0 auto;
    max-width: 225px;

    -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;
}

/* 4.6.4 Style 2
-------------------------------------------------------------------------- */
.client-logo-style-2 { background-color: #ffffff; }

/* 4.6.5 Style 3
-------------------------------------------------------------------------- */
.client-logo-style-3 { background-color: #232323; }
.client-logo-style-3 a { border-color: #191919; }
.client-logo-style-3 img { opacity: 1; }

/* 4.6.6 Style 4
-------------------------------------------------------------------------- */
.client-logo-style-4 { background-color: #5e9832; }
.client-logo-style-4 a { border-color: #5e9832; }

/* 4.6.7 Hover
-------------------------------------------------------------------------- */
.client-logo:hover a { background-color: #ffffff; }
.client-logo-style-2:hover img { opacity: 1; }
.client-logo-style-3:hover a {
    border-color: #5e9832;
    background-color: #5e9832;
}
.client-logo-style-4:hover a {
    border-color: #5e9832;
    background-color: #5e9832;
}
.client-logo-style-4:hover img { opacity: 1; }

/* 4.7 Progress Bar
-------------------------------------------------------------------------- */
/* 4.7.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-progress-bar {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 30px;
}

/* 4.7.2 Title
-------------------------------------------------------------------------- */
.nesto-progress-bar h6 {
    color: #5e9832;
    margin-bottom: 20px;
}

/* 4.7.3 Process
-------------------------------------------------------------------------- */
/* 4.7.3.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-progress-bar .progress {
    margin: 0;
    padding: 4px;
    height: 30px;
    overflow: visible;
    position: relative;
    border-radius: 100px;
    background-color: #ffffff;
    border: 1px solid #e5e7f0;

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

/* 4.7.3.2 Bar
-------------------------------------------------------------------------- */
.nesto-progress-bar .progress-bar {
    border-radius: 100px;
    background-image: -webkit-linear-gradient(90deg, #5e9832, #ccd4ff);
    background-image: -o-linear-gradient(90deg, #5e9832, #ccd4ff);
    background-image: linear-gradient(90deg, #5e9832, #ccd4ff);

    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;

    -webkit-transition: width 2s ease;
       -moz-transition: width 2s ease;
        -ms-transition: width 2s ease;
         -o-transition: width 2s ease;
            transition: width 2s ease;
}

/* 4.7.3.3 Percent
-------------------------------------------------------------------------- */
.nesto-progress-bar .progress-percent {
    right: 0;
    top: -38px;
    position: absolute;
}

/* 4.7.4 Striped
-------------------------------------------------------------------------- */
.nesto-progress-bar .progress-bar.progress-bar-striped {
    background-color: #5e9832;
    background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    -webkit-background-size: 40px 40px;
            background-size: 40px 40px;
}

/* 4.8 Call to action
-------------------------------------------------------------------------- */
/* 4.8.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-cta {
    width: 100%;
    padding: 0 15px;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto 20px;
}

/* 4.8.2 Content
-------------------------------------------------------------------------- */
.nesto-cta .cta-content {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

/* 4.8.3 Buttons
-------------------------------------------------------------------------- */
.cta-buttons a { margin: 0 15px 10px; }

/* 4.9 Counters
-------------------------------------------------------------------------- */
/* 4.9.1 Wrapper
-------------------------------------------------------------------------- */
.counters-item {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 20px;
}

/* 4.9.2 icon
-------------------------------------------------------------------------- */
.counters-item-icon {
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 25px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background-color: #181818;
}

/* 4.9.3 Digit
-------------------------------------------------------------------------- */
.counters-item-digit {
    width: 100%;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
    overflow: hidden;
    font-weight: 300;
    padding: 0 0 20px;
    position: relative;
    margin: 0 auto 20px;
}
.counters-item-digit::after {
    left: 50%;
    bottom: 0;
    content: '';
    width: 46px;
    height: 1px;
    position: absolute;
    margin-left: -23px;
    background-color: #181818;

    -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;
}

/* 4.9.4 Title
-------------------------------------------------------------------------- */
.counters-item-title h5 {
    color: #ffffff;
    text-transform: capitalize;
}

/* 4.9.5 Hover
-------------------------------------------------------------------------- */
.counters-item:hover .counters-item-icon {
    color: #5e9832;
    background-color: #ffffff;

    -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;
}
.counters-item:hover .counters-item-digit::after { background-color: #ffffff; }

/* 4.10 Tabs
-------------------------------------------------------------------------- */
/* 4.10.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-tabs {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 30px;
}

/* 4.10.2 Tabs
-------------------------------------------------------------------------- */
/* 4.10.2.1 Anchor
-------------------------------------------------------------------------- */
.nesto-tabs .nav-tabs a {
    margin: 0;
    color: #282828;
    font-size: 15px;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0;
    text-transform: capitalize;
    border-top: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}

/* 4.10.2.2 Active / Hover
-------------------------------------------------------------------------- */
.nesto-tabs .nav-tabs a:hover {
    color: #5e9832;
    border-color: #dddddd;
    background-color: transparent;
}
.nesto-tabs .nav-tabs > li.active > a,
.nesto-tabs .nav-tabs > li.active > a:focus,
.nesto-tabs .nav-tabs > li.active > a:hover {
    border: 0;
    color: #5e9832;
    background-color: #ffffff;
    border-top: 2px solid #5e9832;
    border-right: 1px solid #dddddd;
}
.nesto-tabs .nav-tabs li:first-child a,
.nesto-tabs .nav-tabs > li.active:first-child > a,
.nesto-tabs .nav-tabs > li.active:first-child > a:focus,
.nesto-tabs .nav-tabs > li.active:first-child > a:hover {
    border-left: 1px solid #dddddd;
}

/* 4.10.3 Content
-------------------------------------------------------------------------- */
.nesto-tabs .tab-content {
    padding: 30px 30px 20px;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-top: 0;
}
.nesto-tabs .tab-content img {
    float: left;
    border-radius: 5px;
    margin: 0 20px 10px 0;
}

/* 4.10.4 Dark
-------------------------------------------------------------------------- */
.nesto-dark-tabs .nav-tabs { border-bottom: 1px solid #171717; }
.nesto-dark-tabs .nav-tabs a {
    color: #5b5b5b;
    background-color: #1f1f1f;
    border-top: 1px solid #171717;
    border-right: 1px solid #171717;
}
.nesto-dark-tabs .nav-tabs a:hover {
    border-color: #171717;
    background-color: #1f1f1f;
}

.nesto-dark-tabs .nav-tabs > li.active > a,
.nesto-dark-tabs .nav-tabs > li.active > a:focus,
.nesto-dark-tabs .nav-tabs > li.active > a:hover {
    color: #5e9832;
    background-color: #282828;
    border-right: 1px solid #171717;
}
.nesto-dark-tabs .nav-tabs li:first-child a,
.nesto-dark-tabs .nav-tabs > li.active:first-child > a,
.nesto-dark-tabs .nav-tabs > li.active:first-child > a:focus,
.nesto-dark-tabs .nav-tabs > li.active:first-child > a:hover {
    border-left: 1px solid #171717;
}

.nesto-dark-tabs .tab-content {
    color: #5b5b5b;
    background-color: #282828;
    border: 1px solid #171717;
    border-top: 0;
}

/* 4.11 Accordion
-------------------------------------------------------------------------- */
/* 4.11.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-accordion {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 30px;
}

/* 4.11.2 Panel
-------------------------------------------------------------------------- */
.nesto-accordion .panel {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

.nesto-accordion .panel-default,
.nesto-accordion .panel-heading + .panel-collapse > .list-group,
.nesto-accordion .panel-heading + .panel-collapse > .panel-body {
    border-color: #eceef0;
}

/* 4.11.3 Heading
-------------------------------------------------------------------------- */
.nesto-accordion .panel-default > .panel-heading {
    padding: 0;
    border-color: #eceef0;
    background-color: #ffffff;
}

/* 4.11.4 Title
-------------------------------------------------------------------------- */
.nesto-accordion .panel-title a {
    width: 100%;
    display: block;
    font-weight: 700;
    position: relative;
    /*text-transform: capitalize;*/
    padding: 10px 45px 10px 15px;
}

/* 4.11.5 Arrow
-------------------------------------------------------------------------- */
.nesto-accordion .panel-title a::after {
    top: 0;
    right: 0;
    width: 44px;
    color: #a1b1bc;
    font-size: 16px;
    content: '\f106';
    line-height: 44px;
    position: absolute;
    text-align: center;
    font-family: 'FontAwesome';
    border-left: 1px solid #eceef0;

    -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;
}
.nesto-accordion a.collapsed::after { content: '\f107'; }

/* 4.11.6 Image
-------------------------------------------------------------------------- */
.nesto-accordion .panel-body img {
    float: left;
    margin: 0 15px 10px 0;
}

/* 4.11.7 Hover
-------------------------------------------------------------------------- */
.nesto-accordion .panel-title a:hover,
.nesto-accordion .panel-title a:hover::after {
    color: #5e9832;
}

/* 4.11.8 Style 2
-------------------------------------------------------------------------- */
.nesto-accordion-style-2 .panel-default,
.nesto-accordion-style-2 .panel-heading + .panel-collapse > .list-group,
.nesto-accordion-style-2 .panel-heading + .panel-collapse > .panel-body {
    background-color: #fafbfc;
}
.nesto-accordion-style-2 .panel-title a { background-color: #f7f8f9; }
.nesto-accordion-style-2 a.collapsed { background-color: #ffffff; }

/* 4.12 Tooltip
-------------------------------------------------------------------------- */
.main-tooltip + .tooltip.top .tooltip-arrow { border-top-color: #5e9832; }
.main-tooltip + .tooltip.left .tooltip-arrow { border-left-color: #5e9832; }
.main-tooltip + .tooltip.right .tooltip-arrow { border-right-color: #5e9832; }
.main-tooltip + .tooltip.bottom .tooltip-arrow { border-bottom-color: #5e9832; }
.main-tooltip + .tooltip .tooltip-inner { background-color: #5e9832; }

/* 4.13 Owl Slider
-------------------------------------------------------------------------- */
.owl-slider-wrapper {
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* 4.13.1 Wrapper
-------------------------------------------------------------------------- */
.owl-slider {
    padding: 0;
    width: 100%;
    list-style: none;
    overflow: hidden;
    position: relative;
    margin: 0 auto 30px;
}

/* 4.13.2 Item
-------------------------------------------------------------------------- */
.owl-slider li {
    width: 100%;
    display: block;
}

/* 4.13.3 controls
-------------------------------------------------------------------------- */
.owl-theme .owl-controls { margin: 0; }

/* 4.13.4 Arrows
-------------------------------------------------------------------------- */
.owl-theme .owl-controls .owl-buttons div {
    top: 50%;
    padding: 0;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 20px;
    border-radius: 0;
    line-height: 40px;
    margin: -20px 0 0;
    position: absolute;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);

    -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;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev { left: 0; }
.owl-theme .owl-controls .owl-buttons div.owl-next { right: 0; }

.owl-theme .owl-controls .owl-buttons div:hover { background-color: #5e9832; }

/* 4.13.5 Dots
-------------------------------------------------------------------------- */
.owl-pagination {
    left: 0;
    width: 100%;
    bottom: 10px;
    line-height: 12px;
    position: absolute;
}
.owl-theme .owl-controls .owl-page span {
    margin: 0 5px;
    background-color: rgba(0, 0, 0, 0.5);
}

.owl-theme .owl-controls .owl-page:hover span,
.owl-theme .owl-controls .owl-page span:hover,
.owl-theme .owl-controls .owl-page.active span {
    background-color: #5e9832;
}

/* 4.14 Sidebars
-------------------------------------------------------------------------- */
body.without-sidebar .main-content {
    padding: 0;
    width: 100%;
}
body.without-sidebar .sidebar { display: none; }
body.without-sidebar.blog-page .main-content { padding: 0 15px; }

body.left-sidebar .main-content { float: right; }
body.left-sidebar .sidebar { float: left; }

/* 4.15 Blockquote
-------------------------------------------------------------------------- */
.nesto-blockquote {
    margin: 30px auto;
    line-height: 26px;
    background-color: #f7f7f7;
}
.nesto-blockquote footer { color: #5e9832; }

/* 4.16 Left Image
-------------------------------------------------------------------------- */
.left-image {
    float: left;
    display: inline-block;
    margin: 0 25px 15px 0;
}

/* 4.17 Right Image
-------------------------------------------------------------------------- */
.right-image {
    float: right;
    display: inline-block;
    margin: 0 0 25px 15px;
}

/* 4.18 Countdown Timer
-------------------------------------------------------------------------- */
/* 4.18.1 Wrapper
-------------------------------------------------------------------------- */
#countdown-dashboard {
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 0 auto 20px;
}

/* 4.18.2 Block
-------------------------------------------------------------------------- */
/* 4.18.2.1 Wrapper
-------------------------------------------------------------------------- */
#countdown-dashboard .dash {
    width: 100%;
    display: block;
    padding-top: 0;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
#countdown-dashboard .dash::after {
    top: 30%;
    right: -20px;
    content: ':';
    color: #ffffff;
    font-size: 50px;
    position: absolute;
}
#countdown-dashboard .col-md-3:last-child .dash::after { display: none; }

/* 4.18.2.2 Digit
-------------------------------------------------------------------------- */
#countdown-dashboard .dash .digit {
    height: 75px;
    color: #ffffff;
    font-size: 65px;
    line-height: 75px;
    text-align: center;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

/* 4.18.3 Title
-------------------------------------------------------------------------- */
#countdown-dashboard .dash-title {
    color: #ffffff;
    display: block;
    font-size: 15px;
    padding-top: 7px;
    position: relative;
    text-transform: capitalize;
}

/* 4.19 Alert
-------------------------------------------------------------------------- */
/* 4.19.1 Wrapper
-------------------------------------------------------------------------- */
.alert-nesto {
    height: 50px;
    padding-top: 0;
    color: #232323;
    font-weight: 700;
    line-height: 50px;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 30px;
    border-color: #e5e5e5;
    background-color: #ffffff;
}
.alert-nesto .close { line-height: 45px; }

.alert-nesto-info,
.alert-nesto-danger,
.alert-nesto-sucess,
.alert-nesto-warning {
    padding-left: 65px;
}

.alert-nesto-info::before,
.alert-nesto-danger::before,
.alert-nesto-sucess::before,
.alert-nesto-warning::before {
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    position: absolute;
    border-radius: 4px 0 0 4px;
    font-family: 'FontAwesome';
}

/* 4.19.2 Danger
-------------------------------------------------------------------------- */
.alert-nesto-danger::before {
    content: '\f00d';
    background-color: rgba(231, 72, 72, 1);
}

/* 4.19.3 Sucess
-------------------------------------------------------------------------- */
.alert-nesto-sucess::before {
    content: '\f00c';
    background-color: rgba(124, 188, 60, 1);    
}

/* 4.19.4 Info
-------------------------------------------------------------------------- */
.alert-nesto-info::before {
    content: '\f129';
    background-color: rgba(20, 170, 220, 1);
}

/* 4.19.5 Warning
-------------------------------------------------------------------------- */
.alert-nesto-warning::before {
    content: '\f071';
    background-color: rgba(255, 178, 90, 1);
}

/* 4.20 Misc
-------------------------------------------------------------------------- */
.margin-bottom-10 { margin-bottom: 10px !important; }
.margin40 {
    width: 100%;
    height: 40px;
    overflow: hidden;
}
.margin100 {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.center-text { text-align: center !important; }

.white-text { color: #ffffff; }
.white-text h3 { color: #ffffff; }

.dark-text { color: #282828; }

.uppercase { text-transform: uppercase !important; }
.capitalize { text-transform: capitalize !important; }
.normal-headding { text-transform: none !important; }

.light-text { font-weight: 300; }

.main-heighlight {
    color: #ffffff;
    padding: 3px 6px;
    background-color: #5e9832;
}
.dark-heighlight {
    color: #ffffff;
    padding: 3px 6px;
    background-color: #282828;
}

.col-nesto-5 {
    width: 20%;
    float: left;
    padding: 0 15px;
}

.err0r404 {
    line-height: 1;
    font-size: 200px;
    text-align: center;
    margin-bottom: 100px;
}

.err0r404-box {
    position: relative;
    margin-bottom: 30px;
}
.err0r404-box i {
    top: 0;
    z-index: 2;
    right: 10px;
    line-height: 50px;
    position: absolute;
}




/* ==========================================================================
   5. Header
========================================================================== */
/* 5.1 Wrapper
-------------------------------------------------------------------------- */
.header {
    width: 100%;
    display: block;
}

/* Header Style 2 -------------------------------------------------------- */
@media (min-width: 992px) {    
    .header-style-2 .header-menu .container {
        padding: 0;
        width: 100%;
    }

    .header-style-2 .navbar-header {
        width: 100%;
        float: none;
        display: block;
        line-height: 0;
        padding: 0 15px;
        overflow: hidden;
        text-align: center;
        border-bottom: 1px solid transparent;
    }
    .header-style-2 .navbar-brand {
        float: none;
        margin: 40px auto;
        display: inline-block;
    }
    .header-style-2 .collapse.navbar-collapse {
        line-height: 0;
        text-align: center;
    }
    .header-style-2 .navbar-nav.navbar-right {
        width: 100%;
        padding: 0 15px;
        max-width: 1170px;
        display: inline-block;
        float: none !important;
    }
    .header-style-2 .navbar-nav > li {
        float: none;
        display: inline-block;
    }
    .header-style-2 .navbar-nav > li > a { line-height: 70px }
    .header-style-2 .menu-arrow { line-height: 68px; }

    .header-style-2.header-menu-light .navbar-header { border-color: #ebebeb; }
    .header-style-2.header-menu-dark .navbar-header { border-color: #161616; }
    .header-style-2.header-menu-main-color .navbar-header { border-color: #4c5bae; }

    .header-style-2.menu-light .navbar-collapse { background-color: #ffffff; }
    .header-style-2.menu-dark .navbar-collapse { background-color: #282828; }
    .header-style-2.menu-main-color .navbar-collapse { background-color: #5e9832; }

    .header-style-2.menu-dark .navbar-nav > li > a { color: #ffffff; }
    .header-style-2.menu-dark .navbar-nav > li > a:hover,
    .header-style-2.menu-dark .navbar-nav > li.current_page_item > a {
        color: #5e9832;
    }

    .header-style-2.menu-main-color .navbar-nav > li > a { color: #ffffff; }
    .header-style-2.menu-main-color .navbar-nav > li > a:hover,
    .header-style-2.menu-main-color .navbar-nav > li.current_page_item > a {
        color: #282828;
    }

    .header-style-2.brand-dark .navbar-header { background-color: #282828; }
    .header-style-2.brand-main-color .navbar-header { background-color: #5e9832; }

    .header-style-2.brand-dark .navbar-brand,
    .header-style-2.brand-main-color .navbar-brand {
        color: #ffffff;
    }
    .header-style-2.brand-dark .navbar-brand:hover { color: #5e9832; }
    .header-style-2.brand-main-color .navbar-brand:hover { color: #282828; }
}

/* 5.2 Top Header
-------------------------------------------------------------------------- */
/* 5.2.1 Wrapper
-------------------------------------------------------------------------- */
.top-header {
    width: 100%;
    z-index: 999;
    display: block;
    font-size: 13px;
    position: relative;
    border-bottom: 1px solid transparent;
}

.top-header .col-md-12 { /* custom
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;*/
}

/* 5.2.2 Latest News Tricker
-------------------------------------------------------------------------- */
/* 5.2.2.1 Wrapper
-------------------------------------------------------------------------- */
.latest-news-ticker {
    width: 43%;
    float: left;
    overflow: hidden;
    padding: 13px 15px 13px 0;
}
#latest-news-ticker {
    line-height: 0;
    max-width: 550px;
    position: relative;
}

/* 5.2.2.2 Word and icon
-------------------------------------------------------------------------- */
.latest-news-ticker span {
    float: left;
    color: #282828;
    font-weight: 700;
    margin-right: 5px;
    text-transform: capitalize;
}
.latest-news-ticker span i { margin-right: 5px; }

/* 5.2.2.3 List
-------------------------------------------------------------------------- */
/* 5.2.2.3.1 Wrapper
-------------------------------------------------------------------------- */
.latest-news-ticker ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    line-height: 22px;
    width: auto !important;
}

/* 5.2.2.3.2 Items
-------------------------------------------------------------------------- */
.latest-news-ticker ul li {
    width: 100%;
    display: block;
    white-space: nowrap;
}

/* 5.2.2.3.3 Anchor
-------------------------------------------------------------------------- */
.latest-news-ticker ul li a { color: #999999; }
.latest-news-ticker ul li a:hover { color: #5e9832; }

/* 5.2.3 Language Box
-------------------------------------------------------------------------- */
/* 5.2.3.1 Wrapper
-------------------------------------------------------------------------- */
.top-header .language-box {
    width: 15%;
    float: left;
    color: #282828;
    padding: 0 15px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
    border-left: 1px solid transparent;
}

/* 5.2.3.2 List
-------------------------------------------------------------------------- */
/* 5.2.3.2.1 Wrapper
-------------------------------------------------------------------------- */
.top-header .language-box nav {
    cursor: pointer;
}
.top-header .language-box nav::after {
    top: 13px;
    right: 15px;
    color: #999999;
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
}

.top-header .language-box ul {
    margin: 0;
    width: 100%;
    display: block;
    padding: 13px 0;
    list-style: none;
}

/* 5.2.3.2.2 Items
-------------------------------------------------------------------------- */
.top-header .language-box ul li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
}

/* 5.2.3.3 Flag Image
-------------------------------------------------------------------------- */
.top-header .language-box img {
    width: 16px;
    height: 11px;
    margin-top: -3px;
    margin-right: 10px;
}

/* 5.2.3.4 Sub Menu
-------------------------------------------------------------------------- */
/* 5.2.3.4.1 Wrapper
-------------------------------------------------------------------------- */
.top-header .language-box ul ul {  
    left: 0;
    top: 100%;
    z-index: 4;
    padding: 0;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    position: absolute;
    border: 1px solid transparent;

    -webkit-animation-duration: 0.4s;
       -moz-animation-duration: 0.4s;
        -ms-animation-duration: 0.4s;
         -o-animation-duration: 0.4s;
            animation-duration: 0.4s;
}

/* 5.2.3.4.2 List
-------------------------------------------------------------------------- */
.top-header .language-box ul ul li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid transparent;
}
.top-header .language-box ul ul li:last-child { border: 0; }

/* 5.2.3.4.3 Anchor
-------------------------------------------------------------------------- */
.top-header .language-box ul ul li a {
    width: 100%;
    display: block;
    padding: 13px 15px;
}

/* 5.2.3.5 Hover
-------------------------------------------------------------------------- */
.top-header .language-box:hover ul ul {
    opacity: 1;
    visibility: visible;
}

/* 5.2.4 Sign in/up Box
-------------------------------------------------------------------------- */
/* 5.2.4.1 Wrapper
-------------------------------------------------------------------------- */
.top-header .sign-in-up-box {
    width: 26%; /* 17% custom */
    float: right; /* left custom */
    line-height: 0;
    text-align: center;
    padding: 10px 15px;
    /*border-left: 1px solid transparent; custom */
}

/* 5.2.4.2 Span
-------------------------------------------------------------------------- */
.sign-in-up-box span {
    margin-right: 5px;
    line-height: 22px;
    display: inline-block;
    vertical-align: middle;
}
.sign-in-up-box span:last-child { margin-right: 0; }
.sign-in-up-box span:first-child { font-weight: 700; }

/* 5.2.4.3 Anchor
-------------------------------------------------------------------------- */
.sign-in-up-box span:first-child a { color: #282828; }
.sign-in-up-box span:first-child a:hover { color: #5e9832; }

/* 5.2.4.4 Button
-------------------------------------------------------------------------- */
.sign-in-up-box span:last-child a.btn {
    border: 0;
    font-size: 13px;
    padding: 5px 12px;
    text-transform: none;
}

/* 5.2.5 Search Box
-------------------------------------------------------------------------- */
/* 5.2.5.1 Wrapper
-------------------------------------------------------------------------- */
.top-header .search-box {
    width: 25%;
    float: right;
    padding: 15px 0 15px 15px;
    border-left: 1px solid transparent;
}

/* 5.2.5.2 Input
-------------------------------------------------------------------------- */
.top-header .search-box input {    
    border: 0;
    z-index: 1;
    height: auto;
    position: relative;
    padding: 0 20px 0 0;
    background-color: transparent;
}

/* 5.2.5.3 Icon
-------------------------------------------------------------------------- */
.top-header .search-box i {
    top: 2px;
    right: 0;
    z-index: 2;
    color: #999999;
    position: absolute;
}

/* 5.2.6 Variations
-------------------------------------------------------------------------- */
/* 5.2.6.1 Light
-------------------------------------------------------------------------- */
.top-header-light .top-header {
    border-color: #ebebeb;
    background-color: #ffffff;
}

.top-header-light .top-header .col-md-12,
.top-header-light .top-header .search-box,
.top-header-light .top-header .language-box,
.top-header-light .top-header .sign-in-up-box,
.top-header-light .top-header .language-box ul ul,
.top-header-light .top-header .language-box ul ul li {
    border-color: #ebebeb;
}

.top-header-light .top-header .language-box ul ul { background-color: #ffffff; }

/* 5.2.6.2 Dark
-------------------------------------------------------------------------- */
.top-header-dark .top-header {
    color: #ffffff;
    border-color: #161616;
    background-color: #282828;
}

.top-header-dark .top-header .col-md-12,
.top-header-dark .top-header .search-box,
.top-header-dark .top-header .language-box,
.top-header-dark .top-header .sign-in-up-box,
.top-header-dark .top-header .language-box ul ul,
.top-header-dark .top-header .language-box ul ul li {
    border-color: #161616;
}

.top-header-dark .top-header .language-box ul ul { background-color: #282828; }

.top-header-dark .top-header .search-box i,
.top-header-dark .top-header .language-box,
.top-header-dark .top-header .search-box input,
.top-header-dark .top-header .language-box nav::after,
.top-header-dark .top-header .latest-news-ticker span,
.top-header-dark .top-header .latest-news-ticker ul li a,
.top-header-dark .top-header .language-box ul ul a:hover,
.top-header-dark .top-header .sign-in-up-box span:first-child a {
    color: #ffffff;
}


.top-header-dark .top-header .btn.btn-nesto:hover,
.top-header-dark .top-header .latest-news-ticker ul li a:hover,
.top-header-dark .top-header .sign-in-up-box span:first-child a:hover {
    color: #5e9832;
}

.top-header-dark .top-header .btn.btn-nesto:hover { background-color: #ffffff; }

.top-header-dark .top-header ::-webkit-input-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-dark .top-header :-moz-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-dark .top-header ::-moz-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-dark .top-header :-ms-input-placeholder {
    opacity: 1;
    color: #ffffff;
}

/* 5.2.6.3 Main Color
-------------------------------------------------------------------------- */
.top-header-main-color .top-header {
    color: #ffffff;
    border-color: #4c5bae;
    background-color: #5e9832;
}

.top-header-main-color .top-header .col-md-12,
.top-header-main-color .top-header .search-box,
.top-header-main-color .top-header .language-box,
.top-header-main-color .top-header .sign-in-up-box,
.top-header-main-color .top-header .language-box ul ul,
.top-header-main-color .top-header .language-box ul ul li {
    border-color: #4c5bae;
}

.top-header-main-color .top-header .language-box ul ul { background-color: #5e9832; }

.top-header-main-color .top-header .search-box i,
.top-header-main-color .top-header .language-box,
.top-header-main-color .top-header .search-box input,
.top-header-main-color .top-header .btn.btn-nesto:hover,
.top-header-main-color .top-header .language-box ul ul a,
.top-header-main-color .top-header .language-box nav::after,
.top-header-main-color .top-header .latest-news-ticker span,
.top-header-main-color .top-header .latest-news-ticker ul li a,
.top-header-main-color .top-header .sign-in-up-box span:first-child a {
    color: #ffffff;
}

.top-header-main-color .top-header .btn.btn-nesto,
.top-header-main-color .top-header .language-box ul ul a:hover,
.top-header-main-color .top-header .latest-news-ticker ul li a:hover,
.top-header-main-color .top-header .sign-in-up-box span:first-child a:hover {
    color: #282828;
}

.top-header-main-color .top-header .btn.btn-nesto { background-color: #ffffff; }
.top-header-main-color .top-header .btn.btn-nesto:hover { background-color: #282828; }

.top-header-main-color .top-header ::-webkit-input-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-main-color .top-header :-moz-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-main-color .top-header ::-moz-placeholder {
    opacity: 1;
    color: #ffffff;
}
.top-header-main-color .top-header :-ms-input-placeholder {
    opacity: 1;
    color: #ffffff;
}




/* ==========================================================================
   6. Main Menu
========================================================================== */
/* 6.1 Wrapper
-------------------------------------------------------------------------- */
.header-menu-wrapper {
    width: 100%;
    z-index: 998;
    position: relative;
    border-bottom: 1px solid transparent;
}
.header-menu {
    z-index: 1;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    position: relative;

    -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;

    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
       -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
        -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
         -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}

/* 6.2 Navbar
-------------------------------------------------------------------------- */
/* 6.2.1 Wrapper
-------------------------------------------------------------------------- */
.navbar {
    margin: 0;
    border: 0;
    border-radius: 0;
}

/* 6.2.2 Logo
-------------------------------------------------------------------------- */
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    padding: 0;
    margin: 20px 0;
    font-size: 35px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar-brand img {
    max-width: 100%;
    max-height: 69px; /* 50 custom */
    margin-top: -12px; /* custom */
    vertical-align: middle;
}

/* 6.2.3 Menu
-------------------------------------------------------------------------- */
/* 6.2.3.1 Items
-------------------------------------------------------------------------- */
/* 6.2.3.1.1 Wrapper
-------------------------------------------------------------------------- */
.navbar-nav > li {
    padding: 0;
    margin-left: 30px;
    position: relative;
}
.navbar-nav > li:first-child { margin-left: 0; }

.parent-list {
    overflow: visible;
    position: relative;
}

li.parent-list ul.animated {
    -webkit-animation-duration: 0.4s;
       -moz-animation-duration: 0.4s;
        -ms-animation-duration: 0.4s;
         -o-animation-duration: 0.4s;
            animation-duration: 0.4s;
}
li.mega-menu ul li ul.animated {
    -webkit-animation-duration: 0.0s;
       -moz-animation-duration: 0.0s;
        -ms-animation-duration: 0.0s;
         -o-animation-duration: 0.0s;
            animation-duration: 0.0s;
}

/* 6.2.3.1.2 Arrow
-------------------------------------------------------------------------- */
.menu-arrow {
    font-size: 15px;
    margin-left: 5px;
    line-height: 88px;

    -webkit-transition: line-height 0.3s ease-in-out;
       -moz-transition: line-height 0.3s ease-in-out;
        -ms-transition: line-height 0.3s ease-in-out;
         -o-transition: line-height 0.3s ease-in-out;
            transition: line-height 0.3s ease-in-out;
}

/* 6.2.3.1.3 Anchor
-------------------------------------------------------------------------- */
.navbar-nav > li > a {
    padding: 0;
    font-size: 16px;
    overflow: hidden;
    line-height: 90px;
    position: relative;
    text-transform: capitalize;
}

/* 6.2.3.2 Variations
-------------------------------------------------------------------------- */
.header-menu-light .header-menu,
.header-menu-light .header-menu-wrapper {
    background-color: #ffffff;
}
.header-menu-light .navbar-nav > li > a { color: #282828; }
.header-menu-light .header-menu-wrapper { border-bottom-color: #ebebeb; }


.header-menu-dark .header-menu,
.header-menu-dark .header-menu-wrapper {
    background-color: #282828;
}
.header-menu-dark .navbar-nav > li > a { color: #ffffff; }
.header-menu-dark .navbar-nav > li > a:hover,
.header-menu-dark .navbar-nav > li.current_page_item > a {
    color: #5e9832;
}
.header-menu-dark .header-menu-wrapper { border-bottom-color: #161616; }


.header-menu-main-color .header-menu,
.header-menu-main-color .header-menu-wrapper {
    background-color: #5e9832;
}
.header-menu-main-color .navbar-nav > li > a { color: #ffffff; }
.header-menu-main-color .navbar-nav > li > a:hover,
.header-menu-main-color .navbar-nav > li.current_page_item > a {
    color: #282828;
}
.header-menu-main-color .header-menu-wrapper { border-bottom-color: #4c5bae; }

/* 6.2.4 Sub Menu
-------------------------------------------------------------------------- */
/* 6.2.4.1 Wrapper
-------------------------------------------------------------------------- */
.navbar-nav > li > ul,
.navbar-nav > li ul > li ul {
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    width: 230px;
    display: none;
    z-index: 99991;
    list-style: none;
    text-align: left;
    position: absolute;
    background-color: transparent;
    border-top: 2px solid transparent;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;

    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);
       -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);
        -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);
         -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.10);

}

.navbar-nav li.mega-menu ul ul {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
        -ms-box-shadow: none;
         -o-box-shadow: none;
            box-shadow: none;
}

.navbar-nav > li ul > li ul {
    top: -2px;
    left: 100%;
}
.navbar-nav > li:nth-last-child(1) ul > li ul,
.navbar-nav > li:nth-last-child(2) ul > li ul,
.navbar-nav > li:nth-last-child(3) ul > li ul,
.navbar-nav > li:nth-last-child(4) ul > li ul {
    left: auto;
    right: 100%;
}
.navbar-nav > li:nth-last-child(1) ul,
.navbar-nav > li:nth-last-child(2) ul {
    right: 0;
    left: auto;
}

/* 6.2.4.2 List
-------------------------------------------------------------------------- */
/* 6.2.4.2.1 Wrapper
-------------------------------------------------------------------------- */
.navbar-nav li ul li { border-bottom: 1px solid transparent; }
.navbar-nav li ul li:last-child,
.navbar-nav > li.mega-menu > ul > li {
    border-bottom: 0;
}

/* 6.2.4.2.2 Arrow
-------------------------------------------------------------------------- */
.parent-list .parent-list .menu-arrow {
    float: right;
    line-height: 13px;

    -webkit-transform: rotate(-90deg);
       -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
}

/* 6.2.4.2.3 Anchor
-------------------------------------------------------------------------- */
.navbar-nav li ul li a {
    margin: 0;
    width: 100%;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    position: relative;
    padding: 13px 15px;
    text-transform: capitalize;
}
.navbar-nav li ul li a:hover { padding-left: 20px; }
.navbar-nav li ul li a::after {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.10;
    position: absolute;

    -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;
}

/* 6.2.4.3 Variations
-------------------------------------------------------------------------- */
.sub-menu-light .navbar-nav > li > ul,
.sub-menu-light .navbar-nav > li ul > li ul {
    border-color: #5e9832;
    background-color: #ffffff;
}
.sub-menu-light .navbar-nav li ul li { border-color: #ebebeb; }
.sub-menu-light .navbar-nav li ul li a { color: #999999; }

.sub-menu-dark .navbar-nav > li > ul,
.sub-menu-dark .navbar-nav > li ul > li ul {
    border-color: #5e9832;
    background-color: #282828;
}
.sub-menu-dark .navbar-nav li ul li { border-color: #161616; }
.sub-menu-dark .navbar-nav li ul li a { color: #ffffff; }
.sub-menu-dark .navbar-nav li ul li a:hover,
.sub-menu-dark .navbar-nav li ul li.current_page_item a {
    color: #5e9832;
    background-color: #161616;
}

.sub-menu-main-color .navbar-nav > li > ul,
.sub-menu-main-color .navbar-nav > li ul > li ul {
    border-color: #ffffff;
    background-color: #5e9832;
}
.sub-menu-main-color .navbar-nav li ul li { border-color: #4c5bae; }
.sub-menu-main-color .navbar-nav li ul li a { color: #ffffff; }
.sub-menu-main-color .navbar-nav li ul li a:hover,
.sub-menu-main-color .navbar-nav li ul li.current_page_item a {
    color: #ffffff;
    background-color: #4c5bae;
}

/* 6.2.5 Mega Menu
-------------------------------------------------------------------------- */
/* 6.2.5.1 Wrapper
-------------------------------------------------------------------------- */
.navbar-nav > li.mega-menu { position: static; }

/* 6.2.5.2 List ( Wrapper )
-------------------------------------------------------------------------- */
.navbar-nav > li.mega-menu > ul {
    left: 0;
    right: 0;
    width: auto;
    margin: 0 15px;
    overflow: hidden;
    padding: 5px 10px;
}

/* 6.2.5.3 Items ( Wrapper )
-------------------------------------------------------------------------- */
.navbar-nav > li.mega-menu > ul > li,
.navbar-nav > li.mega-menu > ul > li > a {
    border: 0;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 15px;
    text-transform: uppercase;
}

/* 6.2.5.4 List ( Child )
-------------------------------------------------------------------------- */
.navbar-nav > li.mega-menu ul li ul {
    border: 0;
    width: 100%;
    position: static;
    height: auto !important;
    overflow: hidden !important;
}

/* 6.2.5.5 Anchor
-------------------------------------------------------------------------- */
li.mega-menu > ul > li > a {
    font-size: 15px;
    margin: 5px 0 15px;
    padding: 0 !important;
    line-height: 1 !important;
    background-color: transparent !important;
}

li.mega-menu ul li a .menu-arrow,
li.mega-menu > ul > li > a .mega-menu-dash {
    display: none;
}

li.mega-menu ul li a .mega-menu-dash {
    float: left;
    margin-right: 10px;
}

li.mega-menu ul li a { padding-left: 0; }

li.mega-menu ul li a:hover,
li.mega-menu ul li.current_page_item a {
    padding-left: 10px;
}

/* 6.2.6 Current / Hover
-------------------------------------------------------------------------- */
.navbar-nav > li:hover > ul,
.navbar-nav > li > ul > li:hover > ul,
.navbar-nav > li.mega-menu:hover ul > li ul {
    display: block;
}

.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover {
    background-color: transparent;
}

.header-menu-light .navbar-nav > li:hover > a,
.header-menu-light .navbar-nav > li.current_page_item > a {
    color: #5e9832;
}

.sub-menu-light .navbar-nav li ul li a:hover,
.sub-menu-light .navbar-nav > li > ul > li:hover > a,
.sub-menu-light .navbar-nav li ul li.current_page_item > a {
    color: #5e9832;
}
.sub-menu-light .navbar-nav li ul li a:hover::after,
.sub-menu-light .navbar-nav > li > ul > li:hover > a::after,
.sub-menu-light .navbar-nav li ul li.current_page_item > a::after {
    background-color: #a1b1bc;
}

/* 6.3 Menu Button
-------------------------------------------------------------------------- */
.navbar-toggle {
    padding: 0;
    width: 90px;
    height: 36px;
    float: right;
    font-size: 14px;
    font-weight: 500;
    margin: 27px 0 0;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}
.navbar-toggle i { margin-left: 10px; }

.header-menu-light .navbar-toggle {
    color: #282828;
    border-color: #ebebeb;
}
.header-menu-dark .navbar-toggle,
.header-menu-main-color .navbar-toggle {
    color: #ffffff;
    border-color: #ffffff;
}




/* ==========================================================================
   7. Sections
========================================================================== */
/* 7.1 Breadcrumb Section
-------------------------------------------------------------------------- */
/* 7.1.1 Wrapper
-------------------------------------------------------------------------- */
.breadcrumb-section {
    width: 100%;
    font-size: 13px;
    position: relative;
    background-repeat: repeat;
    background: #639b38 url('../img/breadcrumb_pattern.png') top left scroll;
}
.breadcrumb-section .section-container { padding: 65px 0 50px; }

/* 7.1.2 Head
-------------------------------------------------------------------------- */
/* 7.1.2.1 Wrapper
-------------------------------------------------------------------------- */
.breadcrumb-head {
    float: left;
    overflow: hidden;
    position: relative;
}

/* 7.1.2.2 Title
-------------------------------------------------------------------------- */
.breadcrumb-title {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-bottom: 3px;
    text-transform: capitalize;
}
.breadcrumb-title h4 { color: #ffffff; }

/* 7.1.3 Breadcrumb
-------------------------------------------------------------------------- */
.breadcrumb {
    padding: 0;
    float: right;
    overflow: hidden;
    margin-bottom: 15px;
    text-transform: capitalize;
    background-color: transparent;
}

.breadcrumb a,
.breadcrumb > .active,
.breadcrumb > li+li:before {
    color: #ffffff;
}
.breadcrumb a:hover { color: #5e9832; }

/* 7.2 Ligght Section
-------------------------------------------------------------------------- */
.light-section {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f1f1;
}

/* 7.3 Grey Section
-------------------------------------------------------------------------- */
.grey-section {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    background-color: #f7f7f7;
    border-bottom: 1px solid #f1f1f1;
}

/* 7.4 Image Section
-------------------------------------------------------------------------- */
.image-section {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    background-repeat: repeat;
    background-color: #ffffff;
    background-attachment: scroll;
    background-position: top center;
}

/* 7.5 Parallax Section
-------------------------------------------------------------------------- */
.parallax-section {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: 50% 50%;

    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}

/* 7.6 Main
-------------------------------------------------------------------------- */
.main-section {
    z-index: 1;
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

/* 7.7 Container
-------------------------------------------------------------------------- */
.section-container {
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 90px 0 60px;
}

/* 7.8 Section Title
-------------------------------------------------------------------------- */
.section-title-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 60px;
}
.section-title,
.section-desc {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 10px;
}
.section-title-style-2 { text-align: center; }




/* ==========================================================================
   8. Shop
========================================================================== */
article.shop-block {
    width: 25%;
    float: left;
    padding: 0 15px;
}
body.without-sidebar article.shop-block { width: 25%; }
.shop-page .main-content { padding: 0; }
.shop-page article.shop-block { width: 33.33333333%; }

/* 8.1 Shop Item
-------------------------------------------------------------------------- */
/* 8.1.1 Wrapper
-------------------------------------------------------------------------- */
.shop-item {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 1px solid #e6e6e6;
    background-color: #f7f7f7;
}
.grey-section .shop-item { background-color: #ffffff; }

/* 8.1.2 Header
-------------------------------------------------------------------------- */
.shop-item-header {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e6e6e6;
}
.shop-item-header img {
    width: 100%;
    display: block;

    -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;
}

/* 8.1.3 Content
-------------------------------------------------------------------------- */
/* 8.1.3.1 Wrapper
-------------------------------------------------------------------------- */
.shop-item-content {
    width: 100%;
    overflow: hidden;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e6e6e6;
}

/* 8.1.3.2 Title
-------------------------------------------------------------------------- */
.shop-item-content h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* 8.1.3.3 Rate
-------------------------------------------------------------------------- */
.shop-item-rate {
    width: 100%;
    height: 22px;
    font-size: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.rate1::after,
.rate2::after,
.rate3::after,
.rate4::after,
.rate5::after {
    top: 0;
    left: 0;
    color: #5e9832;
    position: absolute;
    font-family: 'FontAwesome';
}

.rate1::after { content: '\f005 \f006 \f006 \f006 \f006'; }
.rate2::after { content: '\f005 \f005 \f006 \f006 \f006'; }
.rate3::after { content: '\f005 \f005 \f005 \f006 \f006'; }
.rate4::after { content: '\f005 \f005 \f005 \f005 \f006'; }
.rate5::after { content: '\f005 \f005 \f005 \f005 \f005'; }

/* 8.1.3.4 Price
-------------------------------------------------------------------------- */
.shop-item-price {
    width: 100%;
    overflow: hidden;
}

.shop-item-price h4 { float: left; }
.shop-item-price h4 + h4 { margin-left: 10px; }

.shop-item-price h4.shop-new-price { color: #5e9832; }
.shop-item-price h4.shop-old-price {
    color: #999999;
    font-style: italic;
    text-decoration: line-through;
}

/* 8.1.4 Footer
-------------------------------------------------------------------------- */
.shop-item-footer {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.shop-item-footer a {
    width: 50%;
    float: left;
    color: #282828;
    padding: 15px 10px;
}
.shop-item-footer a:first-child { border-right: 1px solid #e6e6e6; }

.shop-item-footer a i {
    color: #5e9832;
    margin-right: 5px;
}
.shop-item-footer a:hover { color: #5e9832; }

/* 8.1.5 Hover
-------------------------------------------------------------------------- */
.shop-item:hover .shop-item-header img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}

/* 8.2 Shop items Wrapper
-------------------------------------------------------------------------- */
.shop-items-wrapper {
    opacity: 0;
    width: 100%;
}
.shop-page .spinner-loader { display: block;  }




/* ==========================================================================
   9. Widget
========================================================================== */
/* 9.1 Wrapper
-------------------------------------------------------------------------- */
.widget {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 40px;
}

/* 9.2 Widget Title
-------------------------------------------------------------------------- */
.widget-title {
    position: relative;
    margin: 18px auto 34px;
    text-transform: uppercase;
}

.widget-title::before {
    top: 0;
    left: 0;
    width: 5px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: #5e9832;
}

#footer .widget-title { padding-left: 25px; }
#footer .widget-title h5 {
    color: #ffffff;
    font-weight: 900;
}

/* 9.3 Text Widget
-------------------------------------------------------------------------- */
.text-widget img { margin-bottom: 20px; }

/* 9.4 Recent Posts Widget
-------------------------------------------------------------------------- */
/* 9.4.1 List
-------------------------------------------------------------------------- */
.recent-posts-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    text-transform: capitalize;
}

/* 9.4.2 Items
-------------------------------------------------------------------------- */
.recent-posts-widget ul li {
    width: 100%;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #292929;
}
.recent-posts-widget ul li:last-child {
    border: 0;
    padding: 0;
    margin-bottom: 10px;
}

/* 9.4.3 Anchor
-------------------------------------------------------------------------- */
.recent-posts-widget a {
    float: left;
    color: #ffffff;
}
.recent-posts-widget a:hover { color: #5e9832; }

/* 9.4.4 Span
-------------------------------------------------------------------------- */
.recent-posts-widget span {
    float: right;
    color: #b8b8b8;
}

/* 9.5 Twitter Widget
-------------------------------------------------------------------------- */
/* 9.5.1 List
-------------------------------------------------------------------------- */
.twitter-widget ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    list-style: none;
}

/* 9.5.2 Items
-------------------------------------------------------------------------- */
.twitter-widget ul li {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #292929;
}
.twitter-widget ul li:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
}

/* 9.5.3 Anchor
-------------------------------------------------------------------------- */
.twitter-widget ul li a { color: #b8b8b8; }
.twitter-widget ul li a:hover { color: #5e9832; }

/* 9.5.4 Username
-------------------------------------------------------------------------- */
.twitter-widget ul li .twitter-username {    
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    color: #282828;
    line-height: 25px;
    position: absolute;
    border-radius: 50%;
    text-align: center;
    background-color: #ffffff;
}
.twitter-widget ul li .twitter-username:hover {
    color: #ffffff;
    background-color: #5e9832;
}

/* 9.6 Feature Work Widget
-------------------------------------------------------------------------- */
/* 9.6.1 Content
-------------------------------------------------------------------------- */
.feature-work-widget .widget-content { margin: 0 -4px -4px -4px; }

/* 9.6.2 List
-------------------------------------------------------------------------- */
.feature-work-widget ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    list-style: none;
}

/* 9.5.3 Items
-------------------------------------------------------------------------- */
.feature-work-widget ul li {
    float: left;
    padding: 4px;
    overflow: hidden;
    width: 33.33333333%;
}

/* 9.5.4 Image
-------------------------------------------------------------------------- */
.feature-work-widget ul li img {
    width: 100%;
    display: block;
}

/* 9.5.5 Anchor
-------------------------------------------------------------------------- */
.feature-work-widget a {
    width: 100%;
    display: block;
}
.feature-work-widget a:hover { opacity: 0.8; }




/* ==========================================================================
   10. Portfolio
========================================================================== */
/* 10.1 Portfolio items Wrapper
-------------------------------------------------------------------------- */
.portfolio-items-wrapper {
    opacity: 0;
    width: 100%;
}
.portfolio-page .spinner-loader { display: block;  }

.portfolio-block {
    float: left;
    padding: 0 15px;
}

.grid-4-columns .portfolio-block { width: 25%; }
.grid-3-columns .portfolio-block { width: 33.33333333%; }
.grid-2-columns .portfolio-block { width: 50%; }
.grid-5-columns .portfolio-block { width: 20%; }

.grid-4-columns .portfolio-block-x2,
.grid-3-columns .portfolio-block-x2,
.grid-2-columns .portfolio-block-x2,
.grid-5-columns .portfolio-block-x2 {
    width: 50%;
}

/* 10.2 Portfolio Item
-------------------------------------------------------------------------- */
/* 10.2.1 Wrapper
-------------------------------------------------------------------------- */
.portfolio-item {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #ffffff;
}

/* 10.2.2 Content
-------------------------------------------------------------------------- */
/* 10.2.2.1 Wrapper
-------------------------------------------------------------------------- */
.portfolio-item-content {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 10.2.2.2 Image
-------------------------------------------------------------------------- */
.portfolio-item img {
    width: 100%;
    display: block;
}

/* 10.2.2.3 OverLayer
-------------------------------------------------------------------------- */
.portfolio-item .portfolio-overlayer {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    background-color: #5e9832;
}
.portfolio-item .portfolio-overlayer h2 {
    left: 0;
    top: 50%;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #ffffff;
    line-height: 1;
    font-size: 80px;
    font-weight: 300;
    margin-top: -40px;
    position: absolute;
}

/* 10.2.3 Style 2
-------------------------------------------------------------------------- */
.portfolio-item-style-2 {
    padding: 8px;
    border: 1px solid #e7e9f1;
}

/* 10.2.4 Filter
-------------------------------------------------------------------------- */
.filter-section {
    width: 100%;
    font-size: 20px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 40px;
    text-transform: uppercase;
}

.filter-section a {
    color: #282828;
    margin: 0 10px 10px;
    display: inline-block;
}
.filter-section a:hover,
.filter-section a.selected {
    color: #5e9832;
}

/* 10.2.5 Portfolio Wide Item
-------------------------------------------------------------------------- */
.light-section.no-padding .section-container { padding-bottom: 0; }
.light-section.no-padding { border-bottom: 0; }

.portfolio-block.no-padding { padding: 0; }
.portfolio-block.no-padding .portfolio-item { margin-bottom: -1px; }

.container.full-width { width: 100%; }

/* 10.2.6 Hover
-------------------------------------------------------------------------- */
.portfolio-item:hover .portfolio-overlayer { opacity: 1; }

/* 10.3 Project Description
-------------------------------------------------------------------------- */
/* 10.3.1 Wrapper
-------------------------------------------------------------------------- */
.project-desc {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e3e3e3;
}
.project-desc:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/* 10.3.2 Image
-------------------------------------------------------------------------- */
.project-desc img {
    width: 100%;
    display: block;
}

/* 10.3.3 H3
-------------------------------------------------------------------------- */
.project-desc h3 {
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* 10.3.4 P
-------------------------------------------------------------------------- */
.project-desc p:last-of-type { margin-bottom: 20px; }

/* 10.3.5 List
-------------------------------------------------------------------------- */
.project-desc ul {
    padding: 0;
    list-style: none;
    margin: 0 auto 20px;
}
.project-desc ul li { margin-bottom: 5px; }
.project-desc ul strong { text-transform: capitalize; }




/* ==========================================================================
   11. Team Item
========================================================================== */
/* 11.1 Wrapper
-------------------------------------------------------------------------- */
.team-item {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 30px;
    background-color: #ffffff;
}

/* 11.2 Header
-------------------------------------------------------------------------- */
/* 11.2.1 Wrapper
-------------------------------------------------------------------------- */
.team-item-header {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 11.2.2 Image
-------------------------------------------------------------------------- */
.team-item-header img {
    width: 100%;
    display: block;
}

/* 11.2.3 Social Icons
-------------------------------------------------------------------------- */
/* 11.2.3.1 Wrapper
-------------------------------------------------------------------------- */
.team-item-header .social-icons {
    left: 0;
    width: 100%;
    bottom: -100%;
    overflow: hidden;
    position: absolute;
    padding: 20px 0 10px;

    -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;
}
.team-item-header .social-icons::after {
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.39;
    position: absolute;
    background-image: linear-gradient(0deg, #d7d7d7, #ffffff);
}

/* 11.2.3.2 List
-------------------------------------------------------------------------- */
.team-item-header .social-icons ul {
    z-index: 2;
    position: relative;
}

/* 11.2.3.3 Anchor
-------------------------------------------------------------------------- */
.team-item-header .social-icons a {
    color: #282828;
    font-size: 18px;
}
.team-item-header .social-icons a:hover { color: #5e9832; }

/* 11.3 Footer
-------------------------------------------------------------------------- */
/* 11.3.1 Wrapper
-------------------------------------------------------------------------- */
.team-item-footer {
    width: 100%;
    overflow: hidden;
    padding: 30px 15px 20px;
    border: 1px solid #eceffc;
}

/* 11.3.2 Title
-------------------------------------------------------------------------- */
.team-item-footer h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
}
.team-item-footer h6 { color: #5e9832; }

/* 11.4 Overlayer
-------------------------------------------------------------------------- */
.team-item .team-item-overlayer {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    background-color: #5e9832;

    -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;
}
.team-item .team-item-overlayer a {
    width: 100%;
    height: 100%;
    display: block;
}
.team-item .team-item-overlayer h2 {
    left: 0;
    top: 50%;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #ffffff;
    line-height: 1;
    font-size: 80px;
    font-weight: 300;
    margin-top: -40px;
    position: absolute;
}

/* 11.5 Hover
-------------------------------------------------------------------------- */
.team-item:hover .team-item-header .social-icons { bottom: 0; }
.team-item:hover .team-item-overlayer { opacity: 1; }




/* ==========================================================================
   12. Service Item
========================================================================== */
/* 12.1 Wrapper
-------------------------------------------------------------------------- */
.service-item {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 30px;
}

/* 12.2 Icon
-------------------------------------------------------------------------- */
.service-item .service-item-icon {
    width: 130px;
    height: 130px;
    color: #fff; /* 5e9832 custom */
    font-size: 37px;
    text-align: center;
    position: relative;
    line-height: 128px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 1px solid #5e9832; /* d4d8e9 custom */
    background-color: #5e9832;  /* fff custom */ 

    -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;
}
.service-item .service-item-icon i {
    z-index: 2;
    position: relative;
}

/* 12.3 Title
-------------------------------------------------------------------------- */
.service-item .service-item-title {
    overflow: hidden;
    margin-bottom: 5px;
    text-transform: capitalize;
}

/* 12.4 Content
-------------------------------------------------------------------------- */
.service-item .service-item-content {
    width: 100%;
    overflow: hidden;
}

/* 12.5 Style 3
-------------------------------------------------------------------------- */
.service-item-style-3 .service-item-icon:after {
    z-index: 1;
    top: 19px;
    left: 19px;
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    background-color: #e8eaf3;

    -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;
}

/* 12.7 Style 4
-------------------------------------------------------------------------- */
.service-item-style-4 { text-align: left; }
.service-item-style-4 .service-item-icon {
    float: left;
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 68px;
    margin: 0 20px 20px 0;
}
.service-item-style-4 .service-item-title {margin-top: 20px; }

/* 12.8 Style 5
-------------------------------------------------------------------------- */
.service-item-style-5 { text-align: left; }
.service-item-style-5 .service-item-icon {
    border: 0;
    float: left;
    width: auto;
    height: auto;
    font-size: 25px;
    line-height: normal;
    margin: 0 20px 20px 0;
    background-color: transparent;
}

/* 12.9 Style 6
-------------------------------------------------------------------------- */
.service-item-style-6 { text-align: left; }
.service-item-style-6 .service-item-icon {
    float: left;
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 68px;
    margin: 0 20px 20px 0;
}
.service-item-style-6 .service-item-title {margin-top: 20px; }
.service-item-style-6 .service-item-content { width: auto; }

/* 12.10 Style 7
-------------------------------------------------------------------------- */
.service-item-style-7 { text-align: left; }
.service-item-style-7 .service-item-icon {
    float: left;
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 68px;
    border-radius: 25px;
    margin: 0 20px 20px 0;
}
.service-item-style-7 .service-item-title {margin-top: 20px; }
.service-item-style-7 .service-item-content { width: auto; }

/* 12.11 Hover
-------------------------------------------------------------------------- */
.service-item:hover .service-item-icon {
    color: #5e9832;
    border-color: #5e9832;
    background-color: #fff;
}

.service-item-style-2:hover .service-item-icon {
    border: 0;
    line-height: 130px;

    -webkit-box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
       -moz-box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
        -ms-box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
         -o-box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.3);
}

.service-item-style-3:hover .service-item-icon {
    color: #5e9832;
    border-color: #e8eaf3;
    background-color: #ffffff;
}
.service-item-style-3:hover .service-item-icon:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-item-style-5:hover .service-item-icon {
    color: #5e9832;
    background-color: transparent;
}




/* ==========================================================================
   13. Testimonials Item
========================================================================== */
/* 13.1 Wrapper
-------------------------------------------------------------------------- */
.testimonials-item {
    width: 100%;
    display: block;
    overflow: hidden;
    text-align: center;
    margin: 0 auto 30px;
}

/* 13.2 Header
-------------------------------------------------------------------------- */
.testimonials-item .testimonials-item-header {
    width: 100%;
    display: block;
    position: relative;
    border-radius: 4px;
    margin-bottom: 50px;
    padding: 30px 30px 25px;
    border: 1px solid #cfdce5;
    background-color: #ffffff;
}
.testimonials-item .testimonials-item-header p {
    z-index: 3;
    position: relative;
}

.testimonials-item .testimonials-item-header::after,
.testimonials-item .testimonials-item-header::before {
    left: 50%;
    bottom: 0;
    content: '';
    width: 30px;
    height: 30px;
    margin-left: -15px;
    position: absolute;

    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
.testimonials-item .testimonials-item-header::after {
    z-index: 2;
    margin-bottom: -14px;
    background-color: #ffffff;
}
.testimonials-item .testimonials-item-header::before {
    z-index: 1;
    margin-bottom: -15px;
    background-color: #cfdce5;
}

/* 13.3 Footer
-------------------------------------------------------------------------- */
.testimonials-item .testimonials-item-footer img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
}

/* 13.4 Left
-------------------------------------------------------------------------- */
.testimonials-item-left { text-align: left; }

.testimonials-item-left .testimonials-item-header::after,
.testimonials-item-left .testimonials-item-header::before {
    left: 80px;
}

.testimonials-item-left .testimonials-item-footer img { margin: 0 0 0 30px; }

/* 13.5 Right
-------------------------------------------------------------------------- */
.testimonials-item-right { text-align: right; }

.testimonials-item-right .testimonials-item-header::after,
.testimonials-item-right .testimonials-item-header::before {
    left: auto;
    right: 65px;
}

.testimonials-item-right .testimonials-item-footer img { margin: 0 30px 0 auto; }

/* 13.6 Thumbs
-------------------------------------------------------------------------- */
.testimonials-owlCarousel {
    z-index: 1;
    position: relative;
}
.testimonials-owlCarousel .testimonials-item,
.testimonials-owlCarousel .testimonials-item .testimonials-item-header {
    margin-bottom: 0;
}

.testimonials-owlCarousel .testimonials-item .testimonials-item-header::after,
.testimonials-owlCarousel .testimonials-item .testimonials-item-header::before {
    display: none;
}

.owl-item.synced { position: relative; }
.testimonials-owlCarousel-thumb .owl-item.synced::after,
.testimonials-owlCarousel-thumb .owl-item.synced::before {
    left: 50%;
    top: -15px;
    content: '';
    width: 30px;
    height: 30px;
    margin-left: -15px;
    position: absolute;

    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
.testimonials-owlCarousel-thumb .owl-item.synced::after {
    z-index: 2;
    margin-top: -1px;
    background-color: #ffffff;
}
.testimonials-owlCarousel-thumb .owl-item.synced::before {
    z-index: 1;
    background-color: #cfdce5;
}
.testimonials-item-thumb { padding-top: 50px; }

.testimonials-owlCarousel-thumb {
    z-index: 2;
    width: 100%;
    max-width: 620px;
    position: relative;
    margin: -1px auto 30px;
}
.testimonials-owlCarousel-thumb img {
    opacity: 0.5;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    border-radius: 50%;

    -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;
}
.testimonials-owlCarousel-thumb img:hover,
.testimonials-owlCarousel-thumb .synced img {
    opacity: 1;
}

/* 13.7 Style 2
-------------------------------------------------------------------------- */
/* 13.7.1 Wrapper
-------------------------------------------------------------------------- */
.testimonials-item-style-2 {
    font-size: 25px;
    max-width: 780px;
    font-style: italic;
    line-height: 35px;
}

/* 13.7.2 Header
-------------------------------------------------------------------------- */
.testimonials-item-style-2 .testimonials-item-header {
    border: 0;
    padding: 0;
    border-radius: 0;
    margin-bottom: 30px;
    background-color: transparent;
}

.testimonials-item-style-2 .testimonials-item-header::after,
.testimonials-item-style-2 .testimonials-item-header::before {
    display: none;
}

.testimonials-item-style-2 .testimonials-item-header img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
}

/* 13.7.3 Footer
-------------------------------------------------------------------------- */
.testimonials-item-style-2 .testimonials-item-footer p { margin-bottom: 20px; }
.testimonials-item-style-2 .testimonials-item-footer h3 {
    font-weight: 400;
    margin-bottom: 0;
    position: relative;
    font-style: normal;
    padding-left: 15px;
    display: inline-block;
}
.testimonials-item-style-2 .testimonials-item-footer h3::before {
    top: 0;
    left: 0;
    content: '-';
    position: absolute;
}




/* ==========================================================================
   14. Blog
========================================================================== */
/* 14.1 Post Items Wrapper
-------------------------------------------------------------------------- */
.blog-items-wrapper-masonry {
    opacity: 0;
    width: 100%;
}
.blog-page .spinner-loader { display: block;  }

/* 14.2 Post Item
-------------------------------------------------------------------------- */
/* 14.2.1 Wrapper
-------------------------------------------------------------------------- */
.post-item {
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 0 auto 80px;
}
.post-block {
    width: 100%;
    float: left;
}

body.blog-page.grid-2-columns .main-content { padding: 0; }
body.blog-page.grid-3-columns .main-content { padding: 0; }

body.grid-2-columns .post-block {
    width: 50%;
    padding: 0 15px;
}
body.grid-3-columns .post-block {
    padding: 0 15px;
    width: 33.33333333%;
}

body.blog-page.grid-2-columns .post-item { margin-bottom: 50px; }
body.blog-page.grid-3-columns .post-item { margin-bottom: 50px; }

.blog-items-wrapper .post-block:last-child .post-item { margin-bottom: 25px; }

/* 14.2.2 Header
-------------------------------------------------------------------------- */
/* 14.2.2.1 Wrapper
-------------------------------------------------------------------------- */
.post-item-header {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 20px;
}

/* 14.2.2.2 Anchor
-------------------------------------------------------------------------- */
.post-item-header a {
    width: 100%;
    display: block;
}
.post-item-header a:hover { opacity: 0.7; }

/* 14.2.2.3 Image
-------------------------------------------------------------------------- */
.post-item-header img {
    width: 100%;
    display: block;
}

/* 14.2.2.4 Slider
-------------------------------------------------------------------------- */
.post-slider .post-item-header .owl-slider { margin-bottom: 0; }

/* 14.2.2.5 Quote
-------------------------------------------------------------------------- */
.post-quote .post-item-header { display: none; }
.post-quote .post-item-footer .post-item-excerpt {
    padding: 20px;
    color: #ffffff;
    position: relative;
    font-style: italic;
    background-color: #5e9832;
}
.post-quote .post-item-footer .post-item-excerpt::before {
    top: 15px;
    left: 10px;
    z-index: 1;
    opacity: 0.2;
    font-size: 40px;
    content: '\f10d';
    position: absolute;
    font-style: normal;
    font-family: 'FontAwesome';
}
.post-quote .post-item-footer .post-item-excerpt p {
    z-index: 2;
    position: relative;
}

/* 14.2.3 Footer
-------------------------------------------------------------------------- */
/* 14.2.3.1 Wrapper
-------------------------------------------------------------------------- */
.post-item-footer {
    width: 100%;
    overflow: hidden;
}

/* 14.2.3.2 Title
-------------------------------------------------------------------------- */
.post-item-title {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 5px;
}

.post-item-title h4 { font-weight: 700; }
.post-item-title a { color: #282828; }
.post-item-title a:hover { color: #5e9832; }

/* 14.2.3.3 Meta
-------------------------------------------------------------------------- */
.post-item-meta {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 10px;
    text-transform: capitalize;
}
.post-item-meta div {
    float: left;
    margin: 0 15px 5px 0;
}
.post-item-meta a { color: #3b4045; }
.post-item-meta a:hover { color: #5e9832; }

/* 14.2.3.4 Excerpt
-------------------------------------------------------------------------- */
.post-item-excerpt {
    width: 100$;
    overflow: hidden;
}
.post-item-excerpt p:last-child { margin-bottom: 0; }




/* ==========================================================================
   15. Sidebar
========================================================================== */
/* 15.1 Widget
-------------------------------------------------------------------------- */
/* 15.1.1 Wrapper
-------------------------------------------------------------------------- */
.sidebar .widget { margin-bottom: 60px; }
.sidebar .widget:last-child { margin-bottom: 30px; }

/* 15.1.2 Title
-------------------------------------------------------------------------- */
.sidebar .widget-title {
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.sidebar .widget-title::before {
    top: auto;
    bottom: 0;
    height: 1px;
    width: 100px;
    opacity: 0.5;
    background-color: #acacac;
}
.sidebar .widget-title h5 {
    font-size: 22px;
    font-weight: 700;
}

/* 15.2 Category Widget
-------------------------------------------------------------------------- */
/* 15.2.1 List
-------------------------------------------------------------------------- */
.category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 15.2.2 Items
-------------------------------------------------------------------------- */
.category-widget ul li {
    width: 100%;
    margin: 0 auto 10px;
    position: relative;
    text-transform: capitalize;
}
.category-widget ul li:last-child { margin-bottom: 0; }

/* 15.2.3 Anchor
-------------------------------------------------------------------------- */
.category-widget ul li a {
    color: #3b4045;
    position: relative;
    padding-left: 15px;
}
.category-widget ul li a:hover { color: #5e9832; }

.category-widget ul li a::before {
    top: 0;
    left: 0;
    line-height: 19px;
    content: '\f105';
    position: absolute;
    font-family: 'FontAwesome';
}

.category-widget ul li a span:first-child { margin-right: 5px; }

/* 15.3 Popular Post Widget
-------------------------------------------------------------------------- */
.popular-post-widget .post-block {
    padding: 0 !important;
    width: 100% !important;
}
.popular-post-widget .post-item { margin-bottom: 25px; }
.popular-post-widget li:last-child .post-item { margin-bottom: 0; }

/* 15.3.1 List
-------------------------------------------------------------------------- */
.popular-post-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 15.3.2 Items
-------------------------------------------------------------------------- */
.popular-post-widget ul li {
    width: 100%;
    display: block;
    margin: 0 auto 15px;
}
.popular-post-widget ul li:last-child { margin-bottom: 0; }

/* 15.3.3 Header
-------------------------------------------------------------------------- */
/* 15.3.3.1 Wrapper
-------------------------------------------------------------------------- */
.popular-post-widget ul li .post-item-header {
    float: left;
    width: auto;
    margin: 0 20px 0 0;
}

/* 15.3.3.2 Image
-------------------------------------------------------------------------- */
.popular-post-widget ul li img {
    width: 100px;
    height: 85px;
}

/* 15.3.4 Footer
-------------------------------------------------------------------------- */
/* 15.3.4.1 Wrapper
-------------------------------------------------------------------------- */
.popular-post-widget ul li .post-item-footer { width: auto; }

/* 15.3.4.2 Title
-------------------------------------------------------------------------- */
.popular-post-widget ul li .post-item-title { margin-bottom: 0; }
.popular-post-widget ul li .post-item-title h4 { font-size: 16px; }

/* 15.3.4.3 Meta
-------------------------------------------------------------------------- */
.popular-post-widget ul li .post-item-meta { margin-bottom: 0; }

/* 15.4 Flickr Widget
-------------------------------------------------------------------------- */
/* 15.4.1 Content
-------------------------------------------------------------------------- */
.flickr-widget .widget-content {
    margin: -5px;
    overflow: hidden;
}

/* 15.4.2 List
-------------------------------------------------------------------------- */
.flickr-widget .flickr-feed {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

/* 15.4.3 Items
-------------------------------------------------------------------------- */
.flickr-widget .flickr-feed li {
    margin: 0;
    float: left;
    padding: 5px;
    overflow: hidden;
    text-align: center;
    width: 33.33333333%;
}

/* 15.4.4 Anchor
-------------------------------------------------------------------------- */
.flickr-widget .flickr-feed li a {
    width: 100%;
    display: block;
    position: relative;
}

/* 15.4.5 Image
-------------------------------------------------------------------------- */
.flickr-widget .flickr-feed li img {
    width: 100%;
    display: block;
}

/* 15.4.6 Hover
-------------------------------------------------------------------------- */
.flickr-widget .flickr-feed li a:hover { opacity: 0.8; }

/* 15.5 Twitter Widget
-------------------------------------------------------------------------- */
.sidebar .twitter-widget ul li {
    padding-left: 50px;
    border-bottom-color: #eeeeee;
}
.sidebar .twitter-widget ul li a { color: #5e9832; }
.sidebar .twitter-widget ul li a:hover { color: #282828; }
.sidebar .twitter-widget ul li .twitter-username {
    width: 35px;
    height: 35px;
    color: #ffffff;
    line-height: 35px;
    border-radius: 4px;
    background-color: #cccccc;
}
.sidebar .twitter-widget ul li .twitter-username:hover {
    color: #ffffff;
    background-color: #5e9832;
}

/* 15.6 Tags Widget
-------------------------------------------------------------------------- */
.tags-widget .widget-content {
    overflow: hidden;
    margin: 0 -5px -10px;
}
.tags-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.tags-widget ul li {
    float: left;
    margin: 0 5px 10px;
}

/* 15.7 Top Rating Widget
-------------------------------------------------------------------------- */
.top-rating-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.top-rating-widget ul li {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}
.top-rating-widget ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.top-rating-widget .shop-item {
    border: 0;
    margin-bottom: 0;
    background-color: transparent;
}

.top-rating-widget .shop-item-header {
    float: left;
    width: 85px;
    height: 85px;
    margin-right: 15px;
    border: 1px solid #e6e6e6;
}

.top-rating-widget .shop-item-content {
    border: 0;
    padding: 0;
    width: auto;
}

.top-rating-widget .shop-item-footer { display: none; }




/* ==========================================================================
   16. Single Post
========================================================================== */
/* 16.1 Wrapper
-------------------------------------------------------------------------- */
.post-single-item {
    width: 100%;
    display: block;
    overflow: hidden;
    margin: 0 auto 20px;
}
.post-single-item p { margin-bottom: 20px; }
.post-single-item .row { float: left; }

/* 16.2 Bio
-------------------------------------------------------------------------- */
/* 16.2.1 Wrapper
-------------------------------------------------------------------------- */
.author-bio-wrapper {
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    padding: 50px 0 0;
    border-top: 1px solid #eeeeee;
}
.author-bio {
    width: 100%;
    padding: 30px;
    overflow: hidden;
    border-radius: 4px;
    margin: 0 auto 30px;
    background-color: #f7f7f7;
}

/* 16.2.2 Image
-------------------------------------------------------------------------- */
.author-bio img {
    float: left;
    width: 90px;
    height: 90px;
    border-radius: 4px;
    margin-right: 15px;
}

/* 16.2.3 Content
-------------------------------------------------------------------------- */
/* 16.2.3.1 Wrapper
-------------------------------------------------------------------------- */
.bio-content { overflow: hidden; }

/* 16.2.3.2 Title
-------------------------------------------------------------------------- */
.bio-title h6 { font-weight: 700; }

/* 16.2.3.3 P
-------------------------------------------------------------------------- */
.bio-content p:last-child { margin-bottom: 0; }

/* 16.3 Related Posts
-------------------------------------------------------------------------- */
.related-posts {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 35px 0 0;
    margin-top: 20px;
    border-top: 1px solid #eeeeee;
}
.related-posts h3 {
    margin-bottom: 30px;
    text-transform: uppercase;
}
.related-posts .post-item { margin-bottom: 30px; }

/* 16.4 Comments
-------------------------------------------------------------------------- */
/* 16.4.1 Wrapper
-------------------------------------------------------------------------- */
.post-comments {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 35px 0 0;
    margin-top: 20px;
    border-top: 1px solid #eeeeee;
}
.post-comments h3 {
    margin-bottom: 30px;
    text-transform: capitalize;
}

/* 16.4.2 List
-------------------------------------------------------------------------- */
.post-comments ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 16.4.3 Items
-------------------------------------------------------------------------- */
.post-comments ul li {
    width: 100%;
    padding: 30px;
    display: block;
    border-radius: 4px;
    margin: 0 auto 30px;
    border: 1px solid #eeeeee;
}

/* 16.4.4 Avatar
-------------------------------------------------------------------------- */
.post-comments ul li img {
    float: left;
    width: 90px;
    height: 90px;
    border-radius: 4px;
    margin: 0 20px 0 0;
}

/* 16.4.5 Content
-------------------------------------------------------------------------- */
.comment-content { overflow: hidden; }
.comment-content p:last-child { margin-bottom: 0; }
.comment-content h6 {
    margin-right: 10px;
    display: inline-block;
}
.comment-content span { display: inline-block; }

/* 16.4.6 Inner Replay
-------------------------------------------------------------------------- */
.post-comments ul li li {
    margin-top: 30px;
    margin-bottom: 0;
}

/* 16.5 Replay
-------------------------------------------------------------------------- */
/* 16.5.1 Wrapper
-------------------------------------------------------------------------- */
.leave-replay {
    width: 100%;
    display: block;
    overflow: hidden;
    padding: 35px 0 0;
    margin-top: 20px;
    border-top: 1px solid #eeeeee;
}
.leave-replay h3 {
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* 16.5.2 Form
-------------------------------------------------------------------------- */
.leave-replay .form-control { margin-bottom: 30px; }
.leave-replay textarea { height: 130px; }
.leave-replay button.btn {
    width: 100%;
    height: 50px;
    margin: 0 auto 30px;
}




/* ==========================================================================
   17. Google Maps
========================================================================== */
#gmap,
.google-map {
    width: 100%;
    height: 445px;
    overflow: hidden;
    border-bottom: 1px solid #5e9832;/* custom */
}
.google-map { margin: 0 auto 30px; }




/* ==========================================================================
   18. Contact Form
========================================================================== */
/* 18.1 Wrapper
-------------------------------------------------------------------------- */
.contactform {
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
}

/* 18.2 Form Group
-------------------------------------------------------------------------- */
.contactform .form-group { margin-bottom: 30px; }

/* 18.3 Textarea
-------------------------------------------------------------------------- */
.contactform textarea {
    resize: none;
    height: 120px !important;
    padding: 12px 15px !important;
}

/* 18.4 Button
-------------------------------------------------------------------------- */
.contactform .btn {
    padding: 0;
    width: 100%;
    display: block;
    font-size: 15px;
    line-height: 45px;
}

/* 18.5 Error
-------------------------------------------------------------------------- */
#contact-name.form-error,
#contact-email.form-error,
#contact-subject.form-error,
#contact-message.form-error {
    border-color: #5e9832;
    background-color: #ffffff;
}




/* ==========================================================================
   19. Price Filter
========================================================================== */
.price-filter-widget { overflow: visible; }
.irs-to:after,
.irs-from:after,
.irs-single:after {
    border-top-color: #5e9832;
}

.irs-to,
.irs-bar,
.irs-from,
.irs-single,
.irs-bar-edge {
    background-color: #5e9832;
}

.irs-to,
.irs-from,
.irs-single {
    padding: 2px 5px;
}

.irs-to,
.irs-from,
.irs-single,
.irs-slider {
    cursor: pointer;
    border-radius: 2px;
}


/* ==========================================================================
   20. Slider Revolution
========================================================================== */
/* 20.1 Small Title
-------------------------------------------------------------------------- */
.nesto-rs-small-title {
    line-height: 1;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.2 Big Title
-------------------------------------------------------------------------- */
.nesto-rs-big-title {
    line-height: 1;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.3 Content
-------------------------------------------------------------------------- */
.nesto-rs-content {
    line-height: 1;
    font-size: 16px;
}

/* 20.4 Buttons
-------------------------------------------------------------------------- */
.nesto-rs-buttons a.btn { margin-right: 15px; }
.nesto-rs-buttons a.btn:last-child { margin-right: 0; }
#slider-section a.btn { padding: 9px 27px; }

/* 20.5 Meduim Title
-------------------------------------------------------------------------- */
.nesto-rs-meduim-title {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.6 Dark Label
-------------------------------------------------------------------------- */
.nesto-rs-dark-label {
    display: inline-block;
    color: #ffffff !important;
    padding: 16px 20px !important;
    background-color: #282828 !important;
}

/* 20.7 White Label
-------------------------------------------------------------------------- */
.nesto-rs-white-label {
    display: inline-block;
    color: #282828 !important;
    padding: 6px 12px !important;
    background-color: #ffffff !important;
}

/* 20.6 Hero
-------------------------------------------------------------------------- */
/* 20.6.1 Wrapper
-------------------------------------------------------------------------- */
.nesto-hero {
    width: 100%;
    text-align: center;
    padding: 200px 0;
}

/* 20.6.2 Big Title
-------------------------------------------------------------------------- */
.nesto-hero-big-title {
    color: #ffffff;
    line-height: 1;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.6.3 Small Title
-------------------------------------------------------------------------- */
.nesto-hero-small-title {
    color: #ffffff;
    line-height: 1;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.6.4 Buttons
-------------------------------------------------------------------------- */
.nesto-hero-buttons { padding-top: 30px; }
.nesto-hero-buttons a.btn { margin-right: 15px; }
.nesto-hero-buttons a.btn:last-child { margin-right: 0; }

/* 20.6.5 Meduim Title
-------------------------------------------------------------------------- */
.nesto-hero-meduim-title {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 20.6 Owl Slider
-------------------------------------------------------------------------- */
#slider-section .owl-slider { margin-bottom: 0; }
#slider-section .owl-slider .nesto-hero { padding: 175px 0; }
#slider-section .owl-slider li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: 50% 50%;

    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}




/* ==========================================================================
   21. Footer
========================================================================== */
/* 21.1 Wrapper
-------------------------------------------------------------------------- */
#footer {
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #88ABC2;  /* 202020 custom */
    /*border-top: 1px solid #0c0c0c; custom */
}

/* custom block */
.footer-links a {
    color: black !important;

}

.footer-links a:hover {
    color: white !important;
}

.footer-volusion-cc {
    padding-top: 45px;
}

/* 21.2 Top Footer
-------------------------------------------------------------------------- */
#top-footer {
    width: 100%;
    overflow: hidden;
    padding: 80px 0 30px;
    /*border-bottom: 1px solid #0c0c0c;*/
}

/* 21.3 Copyright
-------------------------------------------------------------------------- */
#copyright {
    margin: 0;
    overflow: hidden;
    padding: 25px 0 15px;
    background-color: #49708A; /* 161616 custom */
}

#copyright .social-icons {
    width: auto;
    float: right;
}

#copyright a:hover,
#copyright .social-icons a {
    color: #ffffff;
}
#copyright .social-icons a:hover { color: #5e9832; }




/* ==========================================================================
   22. Responsive
========================================================================== */
@media (max-width: 1199px) {

    .top-header .sign-in-up-box { width: 21%; }
    .top-header .latest-news-ticker { width: 39%; }

    .service-item-style-4 .service-item-icon,
    .service-item-style-6 .service-item-icon,
    .service-item-style-7 .service-item-icon {
        float: none;
    }
    .service-item-style-5 .service-item-icon {
        float: none;
        width: 70px;
        text-align: left;
    }

    .nesto-tabs .nav-tabs > li > a,
    .nesto-tabs .nav-tabs > li.active > a,
    .nesto-tabs .nav-tabs > li.active > a:focus,
    .nesto-tabs .nav-tabs > li.active > a:hover,
    .nesto-tabs .nav-tabs li:first-child a,
    .nesto-tabs .nav-tabs > li.active:first-child > a,
    .nesto-tabs .nav-tabs > li.active:first-child > a:focus,
    .nesto-tabs .nav-tabs > li.active:first-child > a:hover {
        border: 0;
    }
    .nesto-tabs .nav-tabs { background-color: #ffffff; }
    .nesto-dark-tabs .nav-tabs { background-color: #1f1f1f; }
    .nesto-tabs .nav-tabs > li { margin-bottom: 0; }

    .shop-item-footer a i { display: none; }

    .popular-post-widget ul li .post-item-header {
        float: none;
        margin: 0 20px 10px 0;
    }
    .popular-post-widget ul li .post-item-title h4 { margin-bottom: 0; }

}
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
@media (max-width: 991px) {

    .top-header .col-md-12 { padding: 0; }

    .top-header .search-box,
    .top-header .latest-news-ticker {
        border: 0;
        width: 100%;
        float: none;        
        display: block;
        overflow: hidden;
        padding-left: 15px;
        padding-right: 15px;
    }
    .top-header .search-box { border-top: 1px solid transparent; }
    .top-header .latest-news-ticker { border-bottom: 1px solid transparent; }

    .top-header .language-box,
    .top-header .sign-in-up-box {
        width: 50%;
        border: 0;
        border: 0;
    }
    .top-header .language-box { border-right: 1px solid transparent; }

    .top-header-light .top-header .search-box,
    .top-header-light .top-header .language-box,
    .top-header-light .top-header .latest-news-ticker {
        border-color: #ebebeb;
    }
    .top-header-dark .top-header .search-box,
    .top-header-dark .top-header .language-box,
    .top-header-dark .top-header .latest-news-ticker {
        border-color: #161616;
    }
    .top-header-main-color .top-header .search-box,
    .top-header-main-color .top-header .language-box,
    .top-header-main-color .top-header .latest-news-ticker {
        border-color: #4c5bae;
    }

    .navbar-toggle { display: block; }

    .navbar .col-md-12 { position: static; }
    .navbar-collapse {
        padding: 0;
        border-top: 1px solid transparent;
    }
    .navbar-collapse.collapse {
        left: 0;
        top: 100%;
        width: 100%;
        position: absolute;
        display: none !important;
    }
    .navbar-collapse.collapsing {
        left: 0;
        top: 100%;
        width: 100%;
        display: block;
        max-height: 320px;
        position: absolute;
        overflow: hidden !important;
    }
    .navbar-collapse.collapse.in {
        width: 100%;
        max-height: 320px;
        display: block !important;
        overflow: hidden !important;
        overflow-y: scroll !important;
    }

    .sub-menu-light .navbar-collapse { border-color: #ebebeb; }
    .sub-menu-dark .navbar-collapse { border-color: #161616; }
    .sub-menu-main-color .navbar-collapse { border-color: #4c5bae; }
    
    .sub-menu-light .navbar-collapse.collapsing,
    .sub-menu-light .navbar-collapse.collapse.in {
        background-color: #ffffff;
    }
    .sub-menu-dark .navbar-collapse.collapsing,
    .sub-menu-dark .navbar-collapse.collapse.in {
        background-color: #232323;
    }
    .sub-menu-main-color .navbar-collapse.collapsing,
    .sub-menu-main-color .navbar-collapse.collapse.in {
        background-color: #5e9832;
    }

    .navbar-nav {
        margin: 0;
        float: none !important;
    }
    .navbar-header { float: left; }

    .navbar-nav > li {
        padding: 0;
        float: none;
        width: 100%;
        display: block;
        margin-left: 0;
        margin-right: 0;
        border-bottom: 1px solid transparent;
    }
    .sub-menu-light .navbar-nav > li { border-color: #ebebeb; }
    .sub-menu-dark .navbar-nav > li { border-color: #161616; }
    .sub-menu-main-color .navbar-nav > li { border-color: #4c5bae; }

    .navbar-nav > li > a {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-menu .navbar-nav > li > a { line-height: 45px; }
    .header-menu .menu-arrow {
        float: right;
        margin-left: 0;
        line-height: 43px;
    }

    .navbar-nav > li > ul,
    .navbar-nav > li ul > li ul {
        border: 0;
        width: 100%;
        position: relative;
        left: 0 !important;
        right: auto !important;

        -webkit-box-shadow: none;
           -moz-box-shadow: none;
            -ms-box-shadow: none;
             -o-box-shadow: none;
                box-shadow: none;
    }
    .navbar-nav > li > ul.animated,
    .navbar-nav > li ul > li ul.animated {
        -webkit-animation-duration: 0.0s;
           -moz-animation-duration: 0.0s;
            -ms-animation-duration: 0.0s;
             -o-animation-duration: 0.0s;
                animation-duration: 0.0s;
    }

    .mega-menu:hover ul,
    .navbar-nav > li:hover > ul,
    .navbar-nav > li ul > li:hover ul {
        display: none;
    }
    .mega-menu ul.show-sub-menu,
    .navbar-nav > li > ul.show-sub-menu,
    .navbar-nav > li ul > li ul.show-sub-menu {
        display: block !important;
    }

    .navbar-nav > li.mega-menu > ul,
    .navbar-nav > li.mega-menu > ul > li {
        border: 0;
        padding: 0;
    }
    .navbar-nav li ul li {
        border-bottom: 0;
        border-top: 1px solid transparent;
    }
    .sub-menu-light .navbar-nav li ul li { border-color: #ebebeb; }
    .sub-menu-dark .navbar-nav li ul li { border-color: #161616; }
    .sub-menu-main-color .navbar-nav li ul li { border-color: #4c5bae; }

    .contactform { margin-bottom: 20px; }

    .feature-work-widget ul li,
    .flickr-widget .flickr-feed li {
        width: 12.5%;
    }

    #copyright { text-align: center; }
    #copyright .social-icons {
        float: none;
        padding-top: 10px;
    }

    .shop-block,
    .team-block,
    .counters-block,
    .portfolio-block,
    .col-md-6.post-block,
    body.grid-3-columns .post-block {
        float: left;
        width: 50% !important;
    }
    .client-logo-block {
        width: 25%;
        float: left;
    }

    .testimonials-owlCarousel-thumb { max-width: 320px; }

    .sidebar { padding-top: 30px; }
    body.left-sidebar .sidebar,
    body.left-sidebar .main-content {
        float: none;
    }

    .dash.hours_dash::after { display: none; }

}
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
@media (max-width: 568px) {

    .feature-work-widget ul li,
    .flickr-widget .flickr-feed li {
        width: 20%;
    }

}
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- */
@media (max-width: 480px) {

    .shop-block,
    .team-block,
    .counters-block,
    .portfolio-block,
    .col-md-6.post-block,
    body.grid-3-columns .post-block,
    body.grid-2-columns .post-block {
        float: none;
        width: 100% !important;
    }
    .client-logo-block { width: 50%; }

    .nesto-hero-meduim-title { font-size: 22px; }

    #gmap,
    .google-map {
        height: 245px;
    }

    .top-header .language-box,
    .top-header .sign-in-up-box {
        border: 0;
        width: 100%;
        float: none;
        display: block;
    }
    .top-header .language-box { border-bottom: 1px solid transparent; }

}
/* custom font */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,700);

.no-transform {
    text-transform: none;
}
.letter-space {
    letter-spacing: 1.5px;
}
.tgv-font {
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
/* about new */

.about-us-section {
    margin-top: -100px;
}
.logo-about-us {
    max-width: 500px !important;
}
.unit-about-us {
    max-width: 300px !important
}
.solar-about-us {
    float: left;
    max-width: 75px;
}
.award-about-us {
    float: right;
    max-width: 100px;
}
.green-line-about-1 {
    padding-top:15px;
    padding-bottom: 40px;
    width: 100%;
}
.image-bar-about {
    width: 100%;
}
.green-line-about-2 {
    padding-top:40px;
    padding-bottom: 40px;
    width: 100%;
}
.about-title {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 40px;
    font-size: 22px;
}
/* 1 */
.block-1-about {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 45px;
}
.block-1-about img {
    width: 100%;
    max-width: 400px;
}
.green {
    color: #5e9832;
}
.block-1-about p {
    padding-top: 75px;
    font-size: 22px;
}
/* 2 */
.block-2-about {
    /*padding-top: 45px;*/
}
.block-2-about p {
    padding-top: 166px;
    font-size:  22px;
}

.block-2-about img {
    width: 100%;
    max-width: 198px;
}
/* 3 */
.block-3-about {
    /*padding-top: 45px;*/
}
.block-3-about p {
    padding-top: 86px;
    font-size:  22px;
}

.block-3-about img {
    width: 100%;
    max-width: 400px;
}
/* 4 */
.block-4-about {
    /*padding-top: 45px;*/
}
.block-4-about p {
    padding-top: 86px;
    font-size:  22px;
}

.block-4-about img {
    width: 100%;
    max-width: 300px;
}
/* 5 */
.block-5-about {
    /*padding-top: 45px;*/
}
.block-5-about p {
    padding-top: 70px;
    font-size:  22px;
}

.block-5-about img {
    width: 100%;
    max-width: 400px;
}
/* 6 */
.block-6-about {
    /*padding-top: 45px;*/
}
.block-6-about p {
    padding-top: 150px;
    font-size:  22px;
}

.block-6-about img {
    width: 100%;
    max-width: 400px;
}
/* 7 */
.block-7-about {
    padding-top: 45px;
}
.block-7-about p {
    padding-top: 16px;
    font-size:  22px;
}
.block-7-details {
    padding-left: 25px;
    font-size: 18px;
}
.block-7-about img {
    width: 100%;
    max-width: 400px;
}

/* 8 */

.block-8-about {
    /*padding-top: 45px;*/
}
.block-8-about p {
    padding-top: 150px;
    font-size:  22px;
}

.block-8-about img {
    width: 100%;
    max-width: 400px;
}

/* 9 */
.block-9-about {
    padding-bottom: 30px;
    /*padding-top: 45px;*/
}
.block-9-about p {
    padding-top: 150px;
    font-size:  22px;
}

.block-9-about img {
    width: 100%;
    max-width: 400px;
}

/* 10 */
.border-block-10 {
    max-width: 94%;
    margin: 0 auto;
    border-top: 4px solid #5e9832;
}
.block-10-about {

    padding-top: 45px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.block-10-text {
    padding-top: 115px;
}
.block-10-about h3 {
    font-size: 32px;
    padding-bottom: 10px;
}
.block-10-about p {
    font-size: 22px;
}

.block-10-about img {
    padding-top: 15px;
    width: 100%;
    max-width: 400px;
}

.last-block {
    padding-top: 45px;
    font-size: 21px;
    font-style: italic;

}
.block-1-about,
.block-2-about,
.block-3-about,
.block-4-about,
.block-5-about,
.block-6-about,
.block-7-about,
.block-8-about,
.block-9-about,
.block-10-about {
    margin: 0 auto;
    background-color: #e0f2fc;
}

.about-owners-msg {
    font-size: 12px;
}

.white-bg {
    background-color: #fff;
}

.press-release-text {
    font-size: 1.2em;
    position: absolute;
    top: 40%;
    text-align: center;
    padding: 0 25px;
    color: #fff;
}

.no-capitalize {
    text-transform: none;
}
@media (max-width: 991px) {
    .about-us-section {
        margin-top: -50px;
    }
    .about-us-section p {
        padding: 20px 5px;
    }
    .block-10-text {
        padding-top: 0;
    }
    .img-right {
        text-align: right;
    }
    .img-center {
        text-align: center;
    }
    .about-us-section img {
        padding: 20px 0;
    }

}

@media (max-width: 991px) {
    .drain-line-fix-1{
        display: none;

    }
}
@media (min-width: 992px) {
    .drain-line-fix-2{
        display: none;

    }
}