/*

[Table of Contents]

X. General Styles
    X.X. Animations
    X.X. Headings
    X.X. Links
    X.X. Section

X. Helper Classes
    X.X. Spacing
    X.X. Background
    X.X. Text
    X.X. Gutter

X. Components
    X.X. Buttons
    X.X. Breadcrumbs
    X.X. Forms
    X.X. Navs
    X.X. Owl Nav
    X.X. Section Title
    X.X. Pager
    X.X. Pagination
    X.X. Parallax
    X.X. Preloader
    X.X. Tables
    X.X. Back To Top Button

X. Modules
    X.X. Header
    X.X. Topbar
    X.X. Navbar
    X.X. Page Header
    X.X. Banner
    X.X. Ambassador
    X.X. Author Bio
    X.X. Brands
    X.X. Comments
    X.X. Contact Info
    X.X. Contact Form
    X.X. CSR Activity Details
    X.X. Document Item
    X.X. Entry Content
    X.X. FAQ Item
    X.X. Features
    X.X. Image Block
    X.X. Image Gallery
    X.X. Job List
    X.X. Job Pagination
    X.X. Job Details
    X.X. Job Application Form
    X.X. Map
    X.X. Text Box
    X.X. Timeline
    X.X. Post
    X.X. Product
    X.X. Product Banner
    X.X. Project
    X.X. Project Details
    X.X. Projects Nav
    X.X. Quantity Calculator
    X.X. Share Buttons
    X.X. Footer

X. Widgets
    X.X. Widget Title
    X.X. Sidebar Widget
    X.X. Exchange Widget
    X.X. Gallery Widget
    X.X. Latest News Widget
    X.X. Links Widget
    X.X. Location Widget
    X.X. Nav Widget
    X.X. Newsletter Widget
    X.X. Search Widget
    X.X. Social Counter Widget

*/

/*------------------------------------*\
    X. General Styles
\*------------------------------------*/
body {
    color: #959595;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    word-wrap: break-word;
}

p:last-child,
ul:last-child,
table:last-child,
dl:last-child {
    margin-bottom: 0;
}

img,
.nav > li > a > img {
    max-width: 100%;
    height: auto;
}

.no-outlines :focus {
    outline: 0;
}

.owl-carousel .owl-item img {
    width: auto;
}

::-moz-selection {
    color: #fff;
    background-color: #009053;
}

::selection {
    color: #fff;
    background-color: #009053;
}

/* X.X. Animations */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0, 30px, 0);
                transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0, 30px, 0);
                transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

/* X.X. Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #252525;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
}

/* X.X. Links */
a, .btn-link {
    -webkit-transition-property: color, border-color, background-color, box-shadow;
            transition-property: color, border-color, background-color, box-shadow;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease, ease, ease-in-out, ease-in-out;
            transition-timing-function: ease, ease, ease-in-out, ease-in-out;
}

a {
    color: #009053;
}

.btn-link {
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}

a:hover,
.btn-link:hover {
    color: #009053;
    text-decoration: none;
}

.show > .btn-link,
.dropdown:hover > .btn-link {
    color: #009053;
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: none;
}

button.btn-link {
    padding: 0;
    border-width: 0;
}

/* X.X. Section */
.section {
    position: relative;
}

/*------------------------------------*\
    X. Helper Classes
\*------------------------------------*/
/* X.X. Spacing */
.pt\:10 { padding-top: 10px; }
.pt\:15 { padding-top: 15px; }
.pt\:20 { padding-top: 20px; }
.pt\:30 { padding-top: 30px; }
.pt\:40 { padding-top: 40px; }
.pt\:50 { padding-top: 50px; }
.pt\:60 { padding-top: 60px; }
.pt\:70 { padding-top: 70px; }
.pt\:80 { padding-top: 80px; }
.pt\:90 { padding-top: 90px; }
.pt\:100 { padding-top: 100px; }

.pb\:10 { padding-bottom: 10px; }
.pb\:15 { padding-bottom: 15px; }
.pb\:20 { padding-bottom: 20px; }
.pb\:30 { padding-bottom: 30px; }
.pb\:40 { padding-bottom: 40px; }
.pb\:50 { padding-bottom: 50px; }
.pb\:60 { padding-bottom: 60px; }
.pb\:70 { padding-bottom: 70px; }
.pb\:80 { padding-bottom: 80px; }
.pb\:90 { padding-bottom: 90px; }
.pb\:100 { padding-bottom: 100px; }

/* X.X. Background */
.bg-primary { background-color: #009053 !important; }
.bg-dark { background-color: #151515 !important; }
.bg-light { background-color: #e5e5e5 !important; }
.bg-lighter { background-color: #f7f8f9 !important; }

[data-bg-img] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg--video {
    position: relative;
    z-index: 0;
}

.bg--video .inline-YTPlayer {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.bg--video .inline-YTPlayer [data-bg-video] {
    height: 100% !important;
}

.bg--video .inline-YTPlayer [data-overlay]:before {
    z-index: 1;
}

[data-overlay] {
    position: relative;
    z-index: 0;
}
[data-overlay]:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: -1;
}
[data-overlay~="0"]:before { opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
[data-overlay~="0.5"]:before { opacity: 0.05; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=5)"; }
[data-overlay~="0.1"]:before { opacity: 0.1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; }
[data-overlay~="0.15"]:before { opacity: 0.15; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)"; }
[data-overlay~="0.2"]:before { opacity: 0.2; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; }
[data-overlay~="0.25"]:before { opacity: 0.25; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)"; }
[data-overlay~="0.3"]:before { opacity: 0.3; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; }
[data-overlay~="0.35"]:before { opacity: 0.35; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)"; }
[data-overlay~="0.4"]:before { opacity: 0.4; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; }
[data-overlay~="0.45"]:before { opacity: 0.45; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=45)"; }
[data-overlay~="0.5"]:before { opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
[data-overlay~="0.55"]:before { opacity: 0.55; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=55)"; }
[data-overlay~="0.6"]:before { opacity: 0.6; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; }
[data-overlay~="0.65"]:before { opacity: 0.65; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)"; }
[data-overlay~="0.7"]:before {opacity: 0.7;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";}
[data-overlay~="0.75"]:before { opacity: 0.75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; }
[data-overlay~="0.8"]:before { opacity: 0.8; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }
[data-overlay~="0.85"]:before { opacity: 0.85; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)"; }
[data-overlay~="0.9"]:before { opacity: 0.9; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; }
[data-overlay~="0.95"]:before { opacity: 0.95; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)"; }
[data-overlay~="1"]:before { opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; }

[data-overlay~="gradient-lightgreen"]:before {
    background: #8cc63f;
    background: -webkit-radial-gradient(center, ellipse cover, #8cc63f 0%, #009053 100%);
    background: -webkit-radial-gradient(center ellipse, #8cc63f 0%, #009053 100%);
    background: radial-gradient(ellipse at center, #8cc63f 0%, #009053 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cc63f', endColorstr='#009053', GradientType=1 );
}

/* X.X. Text */
.text-primary { color: #009053 !important; }
.text-light { color: #e5e5e5 !important; }
.text-lighter { color: #f7f8f9 !important; }

/* X.X. Gutter */
.gutter\:10 {
    margin-left: -5px;
    margin-right: -5px;
}

.gutter\:10 > .col,
.gutter\:10 > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.gutter\:15 {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.gutter\:15 > .col,
.gutter\:15 > [class*="col-"] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

/*------------------------------------*\
    X. Components
\*------------------------------------*/
/* X.X. Buttons */
.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.show > .btn.dropdown-toggle:focus {
    box-shadow: none;
}

.btn {
    position: relative;
    padding: 7px 30px;
    background-color: transparent;
    border-color: #009053;
    border-radius: 20px;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    -webkit-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #009053;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
    z-index: -1;
}

.btn:hover,
.btn.active {
    color: #fff;
}

.btn:hover:before,
.btn.active:before,
.btn:active:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
}

.btn.disabled,
.btn[disabled] {
    opacity: 0.65;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
    cursor: default !important;
}

.btn-square {
    border-radius: 0;
}

.btn-primary {
    background-color: #009053;
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #009053;
    background-color: #009053;
    border-color: #009053;
}
.btn-primary:before {
    background-color: #fff;
}

.btn-white {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}
.btn-white:hover,
.btn-white:not(:disabled):not(.disabled).active,
.btn-white:not(:disabled):not(.disabled):active {
    background-color: #009053;
    border-color: #009053;
}

.btn-dark {
    background-color: #212121;
    border-color: #212121;
}
.btn-dark:hover,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active {
    color: #009053;
    background-color: #212121;
    border-color: #212121;
}
.btn-dark:before {
    background-color: transparent;
}

/* X.X. Breadcrumbs */
.breadcrumb {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
}

.breadcrumb > li {
    position: relative;
    z-index: 0;
}

.breadcrumb > li.active {
    color: inherit;
    font-weight: 700;
}

.breadcrumb > li + li {
    padding-left: 25px;
}

.breadcrumb > li + li:before {
    content: "\f101";
    position: absolute;
    top: 2px;
    left: 10px;
    padding-left: 0;
    padding-right: 0;
    color: inherit;
    font-family: "FontAwesome";
    font-weight: 400;
    font-size: 10px;
    line-height: 20px;
}

.breadcrumb a:not(:hover) {
    color: inherit;
}

/* X.X. Forms */
label {
    display: block;
    margin-bottom: 0;
}

label > span:first-child {
    display: inline-block;
    margin-bottom: 4px;
    color: #252525;
}

.form-control {
    padding: 8px 15px 6px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 0;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
}

.form-control:focus {
    border-color: #009053;
    box-shadow: none;
}

.form-control-dark {
    color: #fff;
    background-color: #151515;
    border-color: #151515;
}

.form-control-dark:focus {
    color: #fff;
    background-color: #151515;
    border-color: #151515;
}

.form-control-dark::-webkit-input-placeholder { color: #a5a5a5; }
.form-control-dark::-moz-placeholder { color: #a5a5a5; }
.form-control-dark:-ms-input-placeholder { color: #a5a5a5; }
.form-control-dark:-moz-placeholder { color: #a5a5a5; }

textarea.form-control {
    min-height: 120px;
}

.form-control[type="file"] {
    display: none;
}

.form-control-file {
    display: block;
    position: relative;
    font-size: 12px;
    z-index: 0;
}

.form-control-file:before {
    content: attr(data-title);
    display: block;
    margin-bottom: 3px;
    padding: 8px 0 6px 25px;
    border: 1px solid rgba(21, 21, 21, 0.15);
    font-size: 14px;
    -webkit-transition: border-color .25s;
    transition: border-color .25s;
    cursor: pointer;
}

.form-control-file:hover:before {
    border-color: #009053;
}

.form-control-file:after {
    content: "\f0c6";
    position: absolute;
    top: 9px;
    left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

/* X.X. Navs */
.nav-link {
    color: inherit;
}

.active > .nav-link,
.show > .nav-link,
.dropdown:hover > .nav-link {
    color: #009053;
}

/* X.X. Owl Nav */
.owl-nav > div {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 30px 0;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    font-size: 0;
    line-height: 0;
    z-index: 0;
}

.owl-nav > .owl-prev {
    left: 0;
}

.owl-nav > .owl-next {
    right: 0;
}

.owl-nav > div:before {
    content: " ";
    position: absolute;
    top: 18px;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 0 0 1px 1px;
    border-color: #fff;
    z-index: 0;
}

.owl-nav > .owl-prev:before {
    left: 20px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.owl-nav > .owl-next:before {
    left: 13px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}

.owl-nav > div:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #009053;
    border-radius: 50%;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: -1;
}

.owl-nav > div:hover:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* X.X. Section Title */
.section--title {
    text-align: center;
}
.section--title .h2 {
    position: relative;
    margin-top: -8px;
    margin-bottom: 10px;
    padding-bottom: 1px;
    font-size: 30px;
    line-height: 40px;
    z-index: 0;
}
.section--title--borderless .h2 {
    margin-bottom: 0;
    padding-bottom: 0;
}
.section--title .h2:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    margin: 0 auto;
    border-bottom: 1px solid #009053;
}
.section--title--borderless .h2:before {
    display: none;
}
.section--title h3.h2 {
    padding-bottom: 2px;
    font-size: 24px;
    line-height: 34px;
}
.section--title--borderless h3.h2 {
    padding-bottom: 1px;
}
.section--title p {
    display: inline-block;
    max-width: 650px;
    margin-top: -4px;
    margin-bottom: 2px;
}

.section--title.text-left .h2:before {
    right: auto;
    margin-left: 0;
    margin-right: 0;
}
.section--title.text-right .h2:before {
    left: auto;
    margin-left: 0;
    margin-right: 0;
}

.section--title.text-light h2 {
    color: #fff;
}
.section--title.text-light h2:before {
    border-color: #fff;
}

/* X.X. Pager */
.pager {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 24px;
}

.pager a:not(:hover) {
    color: inherit;
}

.pager .prev i {
    margin-right: 6px;
}

.pager .next i {
    margin-left: 6px;
}

.pager .divider {
    margin-left: 5px;
    margin-right: 5px;
    color: #252525;
}

/* X.X. Pagination */
.pagination {
    margin-top: -10px;
    color: #555;
    border-radius: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.pagination li {
    padding-top: 10px;
}

.pagination li:not(:last-child) {
    margin-right: 10px;
}

.pagination a:not(.btn) {
    display: block;
    min-width: 40px;
    padding: 7px 0;
    border: 1px solid rgba(21, 21, 21, 0.1);
    text-align: center;
}

.pagination a:not(:hover):not(.btn) {
    color: inherit;
}

.pagination a:not(.btn):hover {
    color: #151515;
    border-color: #151515;
}

.pagination .active > a:not(.btn) {
    color: #fff;
    background-color: #151515;
    border-color: #151515;
}

.pagination .btn {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

/* X.X. Parallax */
[data-trigger="parallax_layers"] {
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
    z-index: 0;
}

[data-trigger="parallax_layers"] [data-bg-img] {
    position: absolute !important;
    top: -5% !important;
    left: -5% !important;
    width: 110%;
    height: 110%;
    z-index: -1;
}

/* X.X. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #009053;
    z-index: 99999;
}

#preloader img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -14px auto 0;
    z-index: -1;
}

#preloader:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    margin: -30px auto;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-left-color: #fff;
    border-radius: 50%;
    -webkit-animation: rotate 1.35s infinite linear;
            animation: rotate 1.35s infinite linear;
}

/* X.X. Tables */
.table-responsive:not(:last-child) {
    margin-bottom: 10px;
}

.table--attributes {
    width: 100%;
    color: #535353;
}

.table--attributes:not(:last-child) {
    margin-bottom: 10px;
}

.table--attributes + h5 {
    margin-top: 20px;
}

.table--attributes thead {
    color: #fff;
    background-color: #009053;
}

.table--attributes th {
    padding: 6px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 400;
    text-align: center;
}

.table--attributes td {
    padding: 23px 25px;
    border: 1px solid rgba(21, 21, 21, 0.15);
    text-align: center;
}

.table--attributes td:nth-child(2) {
    text-align: left;
}

.table--attributes td:nth-child(4) {
    max-width: 250px;
}

.table--attributes td p:not(:last-child) {
    margin-bottom: 0;
}

.table--attributes p + ul.fa-ul {
    margin-top: 6px;
}

.table--attributes ul.fa-ul > li + li {
    margin-top: 0;
}

/* X.X. Back To Top Button */
#backToTop {
    position: fixed;
    right: 30px;
    bottom: 33px;
    min-width: 50px;
    padding: 0 15px;
    border-width: 0;
    font-size: 26px;
    line-height: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition-property: color, background-color, opacity, visibility, bottom;
    transition-property: color, background-color, opacity, visibility, bottom;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 999;
}

body.isScrolling #backToTop {
    bottom: 53px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
}

/*------------------------------------*\
    X. Modules
\*------------------------------------*/
/* X.X. Header */
.header--section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

/* X.X. Topbar */
.topbar {
    color: #fff;
}

.topbar__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar__links {
    display: none;
}
.topbar__links .nav-link {
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
}
.topbar__links .nav-link:hover {
    color: #e9e9e9;
}
.topbar__links .nav-item + li:before {
    content: "|";
    margin-left: 11px;
    margin-right: 15px;
}
.topbar__links .nav-item:last-child {
    display: none;
}
.topbar__links .nav-icon {
    margin-right: 7px;
    font-size: 12px;
}
.topbar__links .nav-text {
    font-size: 13px;
    line-height: 23px;
}

.topbar__social {
    margin-left: auto;
    margin-right: auto;
}
.topbar__social .nav {
    margin-left: -13px;
    margin-right: -13px;
}
.topbar__social .nav-link {
    padding-left: 13px;
    padding-right: 13px;
}
.topbar__social .nav-link:hover {
    color: #e9e9e9;
}

.topbar__btn {
    display: none;
    margin-left: 30px;
}

@media (min-width: 992px) {
    .topbar__links .nav-item:last-child {
        display: block;
    }

    .topbar__btn {
        display: block;
    }
}

@media (min-width: 768px) {
    .topbar__btn {
        display: block;
    }
}

@media (min-width: 481px) {
    .topbar__links {
        display: block;
    }

    .topbar__social {
        margin-left: auto;
        margin-right: 0;
    }
}

/* X.X. Navbar */
.navbar {
    position: relative;
    padding: 20px 0;
    color: #fff;
    -webkit-transition: background-color, box-shadow;
    transition: background-color, box-shadow;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out, ease-in-out;
            transition-timing-function: ease-in-out, ease-in-out;
    z-index: 999;
}

.is-sticky > .navbar {
    color: #151515;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar > .container {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand {
    margin-right: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img + img,
.is-sticky .navbar-brand img:not(:last-child) {
    display: none;
}

.is-sticky .navbar-brand img {
    max-height: 40px;
}

.is-sticky .navbar-brand img:not(:last-child) {
    display: none;
}

.is-sticky .navbar-brand img:not(:last-child) + img {
    display: block;
}

.navbar-toggler {
    margin-left: auto;
    padding: 4px 9px;
    border-color: #fff;
    border-radius: 2px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='#fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.is-sticky .navbar-toggler {
    border-color: inherit;
}

.is-sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='#000' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.navbar-nav {
    margin-left: auto;
    margin-right: -15px;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar-nav > li {
    position: relative;
    z-index: 0;
}

.navbar-nav > li:not(:last-child) {
    margin-right: 1px;
}

.navbar-nav > li:not(:last-child):after {
    content: " ";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    border-right: 1px solid;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.navbar-nav > li > a {
    display: inline-block;
    color: inherit;
    padding-top: 0;
    padding-bottom: 0;
    white-space: nowrap;
}

.navbar-expand-lg .navbar-collapse .navbar-nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a,
.navbar-nav > li.dropdown.show > a,
.navbar-nav > li.dropdown:hover > a {
    color: #009053;
}

.navbar-nav > li.dropdown:before {
    content: " ";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.navbar-nav > li.dropdown > a:after {
    content: "\f107";
    margin-left: 4px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.navbar-nav > li > ul {
    width: 200px;
    margin-top: 0;
    margin-left: 15px;
    padding-top: 28px;
    color: #535353;
    background-color: transparent;
    border-width: 0 0 3px;
    border-color: transparent;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: none;
    -webkit-animation-duration: .55s;
            animation-duration: .55s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    z-index: 0;
}

.navbar-nav > li > ul:before {
    content: " ";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: -3px;
    background-color: #fff;
    border-bottom: 3px solid #009053;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.navbar-nav > li > ul:after {
    content: "\f0d8";
    position: absolute;
    top: 5px;
    left: 10px;
    color: #fff;
    font-family: "FontAwesome";
    font-size: 30px;
    font-weight: 700;
    z-index: -1;
}

.navbar-nav > li:hover > ul {
    display: block;
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
}

.navbar-nav > li > ul > li.dropdown > a:after {
    content: "\f105";
    position: absolute;
    top: 5px;
    right: 15px;
    border-width: 0 1px 1px 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.navbar-nav > li > ul > li > a {
    display: block;
    position: relative;
    padding: 5px 20px;
    color: inherit;
    z-index: 0;
}

.navbar-nav > li > ul > li > a:hover,
.navbar-nav > li > ul > li.active > a,
.navbar-nav > li > ul > li.dropdown:hover > a {
    color: #fff;
    background-color: #009053;
}

.navbar-nav > li > ul > li > ul {
    width: 200px;
    top: 0;
    left: 100%;
    margin-top: 0;
    padding-left: 18px;
    color: #535353;
    background-color: transparent;
    border-width: 0 0 3px;
    border-color: transparent;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: none;
    -webkit-animation-duration: .55s;
            animation-duration: .55s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    z-index: 0;
}

.navbar-nav > li > ul > li > ul:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 18px;
    right: 0;
    bottom: -3px;
    background-color: #fff;
    border-bottom: 3px solid #009053;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.navbar-nav > li > ul > li > ul:after {
    content: "\f0d9";
    position: absolute;
    top: 5px;
    left: 8px;
    color: #fff;
    font-family: "FontAwesome";
    font-size: 30px;
    font-weight: 700;
    z-index: -1;
}

.navbar-nav > li > ul > li:hover > ul {
    display: block;
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
}

.navbar-nav > li > ul > li > ul > li > a {
    display: block;
    position: relative;
    padding: 5px 20px;
    color: inherit;
    z-index: 0;
}

.navbar-nav > li > ul > li > ul > li > a:hover,
.navbar-nav > li > ul > li > ul > li.active > a {
    color: #fff;
    background-color: #009053;
}

.navbar--search {
    position: relative;
    margin-left: 17px;
    padding-left: 14px;
    z-index: 0;
}

.navbar--search:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: -1px;
    width: 1px;
    height: 16px;
    margin-top: -8px;
    border-left: 1px solid;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.navbar--search:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.navbar--search .dropdown-menu {
    left: auto;
    right: 0;
    width: 330px;
    margin-top: 19px;
    padding: 0;
    border-width: 0;
    -webkit-animation-duration: .60s;
            animation-duration: .60s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

.navbar--search:hover .dropdown-menu {
    display: block;
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
}

.navbar--search .dropdown-menu .btn {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 991px) {
    .navbar-nav > li > a {
        display: block;
        white-space: normal;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 320px;
        margin: 20px 15px 0;
        padding: 16px 5px 14px;
        color: #151515;
        background-color: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow: auto;
        z-index: 999;
    }

    .navbar-nav {
        margin-right: 0;
    }

    .navbar-nav > li:not(:last-child) {
        margin-right: 0;
    }

    .navbar-nav > li:not(:last-child):after {
        display: none;
    }

    .navbar-nav > li + li {
        margin-top: 7px;
    }

    .navbar-nav > li.show + li {
        margin-top: 18px;
    }

    .navbar-nav > li.dropdown > a:after {
        position: absolute;
        top: 0;
        right: 15px;
        margin-left: 0;
    }

    .navbar-nav > li > ul {
        width: auto;
        margin: 0 2px 0 15px;
        padding-top: 2px;
        border-width: 0;
    }

    .navbar-nav > li > ul:before {
        box-shadow: none;
    }

    .navbar-nav > li:hover > ul {
        display: none;
    }

    .navbar-nav > li.show > ul {
        display: block;
    }

    .navbar-nav > li > ul > li > a {
        padding-left: 15px;
    }

    .navbar-nav > li > ul > li > a:hover,
    .navbar-nav > li > ul > li.active > a,
    .navbar-nav > li > ul > li.dropdown:hover > a {
        color: #009053;
        background-color: transparent;
    }

    .navbar-nav > li > ul > li.dropdown > a:after {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    .navbar-nav > li > ul > li > ul {
        display: block;
        width: auto;
        padding: 0 0 0 15px;
    }

    .navbar-nav > li > ul > li > ul:before {
        display: none;
    }

    .navbar-nav > li > ul > li:hover > ul {
        -webkit-animation-name: none;
                animation-name: none;
    }

    .navbar-nav > li > ul > li > ul > li > a:hover,
    .navbar-nav > li > ul > li > ul > li.active > a {
        color: #009053;
        background-color: transparent;
    }
}

@media (max-width: 480px) {
    .navbar > .container {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }
}

/* X.X. Page Header */
.page--header {
    padding: 130px 0;
    color: #fff;
    background-color: #151515;
    text-align: center;
}

.page--header__title {
    position: relative;
    margin-top: -12px;
    margin-bottom: 0;
    padding-bottom: 5px;
    color: inherit;
    font-size: 48px;
    line-height: 58px;
    z-index: 0;
}

.page--header__title:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px solid;
}

.page--header__breadcrumb {
    margin-top: -6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

ul.page--header__breadcrumb {
    margin-bottom: -8px;
}

.page--header__title + .page--header__breadcrumb {
    padding-top: 20px;
}

/* X.X. Banner */
.banner__item {
    padding-top: 130px;
    padding-bottom: 70px;
}

.banner__content {
    font-size: 16px;
    line-height: 26px;
}

.banner__content h1 {
    margin-bottom: 24px;
    padding-bottom: 4px;
    color: inherit;
    font-size: 48px;
    line-height: 49px;
}

.banner__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 17px;
}

.banner__action .btn {
    margin-top: 20px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .banner__item {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .banner__content {
        font-size: 14px;
        line-height: 24px;
    }

    .banner__content h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .banner__action {
        margin-top: 8px;
    }
}

/* X.X. Ambassador */
.ambassador--slider .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ambassador-info__name {
    margin-bottom: 7px;
    color: #009053;
    font-size: 48px;
    line-height: 58px;
}

.ambassador-info__role {
    margin-bottom: 2px;
    font-size: 24px;
    line-height: 34px;
}

.ambassador-info__refer {
    margin-bottom: 0;
    color: #8cc63f;
    font-size: 72px;
    line-height: 82px;
}

.ambassador-info__quote {
    margin-top: 38px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
}

.ambassador-info__quote p:before {
    content: open-quote;
    margin-right: 5px;
}

.ambassador-info__quote p:after {
    content: close-quote;
    margin-left: 5px;
}

/* X.X. Author Bio */
.author--bio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-top: 60px;
    padding: 30px 0;
    border-style: solid;
    border-width: 1px 0;
    border-color: rgba(21, 21, 21, 0.1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
}

.author--bio__img {
    display: block;
    max-width: 60px;
    margin: 0 30px;
}

.author--bio__info {
    padding-left: 30px;
    border-left: 2px solid rgba(21, 21, 21, 0.1);
}

.author--bio__name {
    margin-bottom: 0;
    color: #252525;
    font-family: inherit;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.author--bio__content, .author--bio__desc {
    margin-top: 2px;
    margin-bottom: 0;
    font-style: italic;
}

.author--bio__social {
    margin-top: 4px;
}

.author--bio__social > li:not(:last-child) {
    margin-right: 12px;
}

.author--bio__social > li > a > i[class*="facebook"] { color: #3b5998; }
.author--bio__social > li > a > i[class*="twitter"] { color: #1da1f2; }
.author--bio__social > li > a > i[class*="google-plus"] { color: #dd4b39; }
.author--bio__social > li > a > i[class*="linkedin"] { color: #0077b5; }

@media (max-width: 767px) {
    .author--bio {
        display: block;
    }

    .author--bio__img {
        padding-left: 30px;
        margin-left: 0;
        border-left: 2px solid rgba(21, 21, 21, 0.1);
    }

    .author--bio__info {
        padding-top: 18px;
    }
}

/* X.X. Brands */
.brand__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 92px;
    margin: 20px 0;
    padding: 0 10px;
    background-color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}

.brand__item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.owl-item .brand__item > img {
    width: auto;
}

/* X.X. Comments */
.comments {
    margin-top: 50px;
}

.comments__title {
    position: relative;
    margin-bottom: 25px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    z-index: 0;
}

.comments__title:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 50px;
    border-style: solid;
    border-width: 0 0 1px;
    border-color: #009053;
}

.comments__list + .comments__title {
    margin-top: 42px;
}

.comments__list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.comments__list > li + li {
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.comments__list .comments__list {
    margin-top: 12px;
    padding-top: 20px;
    margin-left: 30px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.comments__list__avatar {
    float: left;
    display: block;
    max-width: 40px;
    margin-right: 10px;
}

.comments__list__info {
    overflow: hidden;
}

.comments__list__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -6px;
    color: #535353;
    font-size: 12px;
    line-height: 22px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comments__list__header p {
    margin-bottom: 0;
}

.comments__list__reply-btn {
    margin-left: auto;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
}

.comments__list__reply-btn:hover {
    color: #151515;
}

.comments__list__name {
    margin-right: 10px;
    margin-bottom: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.comments__list__content {
    margin-top: 10px;
}

/* X.X. Contact Info */
.contact--info__table {
    width: 100%;
}

.contact--info__table th,
.contact--info__table td {
    padding: 24px 30px 22px;
    border: 1px solid rgba(21, 21, 21, 0.15);
}

.contact--info__table th {
    color: #252525;
    font-weight: 400;
}

.contact--info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.contact--info-list li {
    width: 100%;
    padding-left: 10%;
    border-left: 1px solid #eee;
}

.contact--info-list li:first-child {
    padding-left: 0;
    border-left-width: 0;
}

.contact--info-list li.contact--info-list li {}

.contact--info-list .h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.contact--info-list .h6 + p {
    margin-top: 5px;
}

.contact--info-list p {
    margin-bottom: 0;
}

.contact--info-list p i {
    color: #009053;
    margin-right: 8px;
    font-size: 12px;
}

@media (max-width: 991px) {
    .contact--info__table th,
    .contact--info__table td {
        padding: 14px 15px 12px;
    }
}

@media (max-width: 767px) {
    .contact--info-list {
        display: block;
    }

    .contact--info-list > li + li {
        margin-top: 15px;
        padding-top: 15px;
        padding-left: 0;
        border-top: 1px solid #eee;
        border-left-width: 0;
    }
}

/* X.X. Contact Form */
.contact--form {
    padding: 24px 30px 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact--form__title {
    margin-bottom: 19px;
    color: #009053;
    font-family: inherit;
    font-size: 18px;
    line-height: 28px;
}

.contact--form .form-action {
    margin-top: 30px;
}

/* X.X. CSR Activity Details */
.csr-activity-details .title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 34px;
}

.csr-activity-details .desc {
    line-height: 34px;
}

.csr-activity-details .title + .desc {
    margin-top: 41px;
}

.csr-activity-details .subtitle {
    color: #252525;
    font-weight: 500;
}

.csr-activity-details .desc + .subtitle {
    margin-top: 45px;
    margin-bottom: 0;
}

.csr-activity-details .fa-ul {
    margin-top: 19px;
    margin-left: 0;
}

.csr-activity-details .fa-ul > li {
    position: relative;
    padding-left: 14px;
    z-index: 0;
}

.csr-activity-details .fa-ul > li + li {
    margin-top: 19px;
}

.csr-activity-details .fa-ul > li > .fa {
    position: absolute;
    top: 4px;
    left: 0;
    color: #009053;
}

/* X.X. Document Item */
.document--item {
    display: block;
    min-height: 83px;
    padding: 20px 30px 20px 120px;
    background-size: auto;
    background-position: 30px center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.document--item:not(:hover) {
    color: #252525;
}

.document--item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.document--title {
    display: block;
    margin-bottom: 0;
    padding: 7px 0 6px 30px;
    border-left: 1px solid #e5e5e5;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

/* X.X. Entry Content */
.entry--content:after {
    content: " ";
    display: block;
    clear: both;
}

.entry--content h4,
.entry--content h5,
.entry--content h6 {
    font-weight: normal;
}

.entry--content blockquote {
    position: relative;
    min-height: 30px;
    margin-bottom: 0;
    padding-left: 110px;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    z-index: 0;
}

.entry--content blockquote:before {
    content: "\f10d";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 6px;
    left: 0;
    bottom: 6px;
    min-width: 80px;
    color: #009053;
    border-right: 2px solid rgba(21, 21, 21, 0.1);
    font-family: "FontAwesome";
    font-size: 30px;
    font-style: normal;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.entry--content blockquote:not(:first-child) {
    margin-top: 32px;
}

.entry--content blockquote:not(:last-child) {
    margin-bottom: 30px;
}

.entry--content blockquote p:not(:last-child) {
    margin-bottom: 6px;
}

.entry--content blockquote footer {
    position: relative;
    padding-left: 35px;
    color: #555;
    font-style: normal;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    z-index: 0;
}

.entry--content blockquote footer:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    margin-top: -1px;
    background-color: #009053;
}

.entry--content ul {
    padding-left: 0;
    list-style: none;
}

.entry--content li {
    position: relative;
    padding-left: 13px;
    z-index: 0;
}

.entry--content li + li {
    margin-top: 4px;
}

.entry--content li:before {
    content: "\f0da";
    position: absolute;
    top: -1px;
    left: 0;
    color: #009053;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

/* X.X. FAQ Item */
.faq--item {
    padding: 17px 20px;
    border: 1px solid rgba(21, 21, 21, 0.15);
}

.faq--item + .faq--item {
    margin-top: 30px;
}

.faq--item__title {
    position: relative;
    margin-bottom: 0;
    padding-right: 15px;
    color: #009053;
    font-family: inherit;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    -webkit-transition: color .25s;
    transition: color .25s;
    cursor: pointer;
    z-index: 0;
}

.faq--item__title.collapsed {
    color: #252525;
}

.faq--item__title.collapsed:hover {
    color: #009053;
}

.faq--item__title:before {
    content: "\f107";
    position: absolute;
    top: 0;
    right: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
    -webkit-transition: -webkit-transform .25s linear;
    transition: -webkit-transform .25s linear;
    transition: transform .25s linear;
    transition: transform .25s linear, -webkit-transform .25s linear;
}

.faq--item__title.collapsed:before {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
}

.faq--item__content .entry--content {
    padding-top: 19px;
}

/* X.X. Features */
.feature {
    padding: 23px 10px 22px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    text-align: center;
}

.feature:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.align-items-stretch .feature {
    height: 100%;
}

.feature__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 60px;
    height: 60px;
    margin-top: 7px;
    margin-bottom: 23px;
    background-color: #009053;
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.feature__title {
    margin-bottom: 14px;
    color: #151515;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    -webkit-transition: color .25s;
    transition: color .25s;
}

.feature__desc {
    padding-left: 5px;
    padding-right: 5px;
}

.feature__desc + .feature__desc {
    display: none;
}

.feature__action {
    color: #009053;
    font-size: 11px;
    line-height: 21px;
    text-transform: uppercase;
}

.feature__action i {
    margin-left: 5px;
    margin-right: 5px;
}

.feature--transparent {
    margin-bottom: 2px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.feature--transparent:hover {
    box-shadow: none;
}

.feature--transparent .feature__title {
    margin-top: 3px;
}

/* X.X. Image Block */
.image--block {
    color: #252525;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-align: center;
}

.image--block img {
    width: 100%;
}

.image--block .caption {
    display: inline-block;
    margin-top: 24px;
    margin-bottom: 2px;
}

/* X.X. Image Gallery */
.image--gallery.style--1 {
    position: relative;
    padding-top: 30px;
    overflow: visible;
    z-index: 0;
}

.image--gallery.style--1 img {
    max-width: 80%;
}

.image--gallery.style--1 img + img {
    position: absolute;
    top: 0;
    left: auto !important;
    right: 0;
    max-width: 60%;
}

/* X.X. Job List */
.job--list {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.job--list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 23px 30px 22px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background-color .25s ease-in-out;
    transition: background-color .25s ease-in-out;
}

.job--list__item:hover {
    background-color: #f7f8f9;
}

.job--list__item + .job--list__item {
    border-top: 1px solid #e7e7e7;
}

.job--list__title {
    margin-bottom: 11px;
    color: #009053;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 28px;
}

.job--list__summary th,
.job--list__summary td {
    padding-top: 0;
    padding-bottom: 0;
    vertical-align: top;
}

.job--list__summary tr + tr th,
.job--list__summary tr + tr td {
    padding-top: 7px;
}
.job--list__summary th {
    padding-right: 8px;
    color: #252525;
    font-weight: 400;
}
.job--list__summary td {
    position: relative;
    padding-left: 9px;
    z-index: 0;
}
.job--list__summary td:before {
    content: ":";
    position: absolute;
    top: 0;
    left: 0;
}
.job--list__summary tr + tr td:before {
    top: 7px;
}

.job--list__action {
    margin-left: auto;
}

@media (max-width: 767px) {
    .job--list__item {
        display: block;
    }

    .job--list__action {
        margin-top: 17px;
    }
}

/* X.X. Job Pagination */
.job--pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.job--pagination p {
    margin-top: 24px;
    margin-left: auto;
}

.job--pagination p span {
    color: #009053;
}

/* X.X. Job Details */
.job--details {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.job--details__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 23px 30px 22px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.job--details__title {
    margin-bottom: 10px;
    color: #009053;
    font-size: 18px;
    line-height: 28px;
}

.job--details__positions span {
    color: #252525;
}

.job--details__action {
    margin-left: auto;
}

.job--details__content {
    padding: 24px 30px 22px;
}

.job--details__header + .job--details__content {
    border-top: 1px solid #e7e7e7;
}

.job--details__content dt {
    color: #252525;
    font-weight: 400;
}

.job--details__content dd {
    margin-bottom: 0;
    padding-left: 35px;
}

.job--details__content dt + dd {
    margin-top: 8px;
}

.job--details__content ul {
    padding: 0;
    list-style: none;
}

.job--details__content li {
    position: relative;
    z-index: 0;
}

.job--details__content li:before {
    content: "\f105";
    margin-right: 7px;
    color: #009053;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.job--details__footer {
    padding: 0 30px 30px;
}

@media (max-width: 575px) {
    .job--details__header {
        display: block;
    }

    .job--details__action {
        margin-top: 12px;
    }
}

/* X.X. Job Application Form */
.job--app--form {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.job--app--form {
    padding: 23px 30px 30px;
}

.job--app--form__title {
    margin-bottom: 2px;
    color: #009053;
    font-size: 18px;
    line-height: 28px;
}

.job--app--form__note {
    margin-top: 11px;
    margin-bottom: 19px;
}

.job--app--form textarea {
    min-height: 200px;
}

.job--app--form button[type="submit"] {
    margin-top: 6px;
}

/* X.X. Map */
.map {
    position: relative;
    height: 100%;
    min-height: 400px;
}

/* X.X. Text Box */
.section--title + .text--box {
    margin-top: -7px;
}

.text--box h1,
.text--box h2,
.text--box h3,
.text--box h4,
.text--box h5,
.text--box h6 {
    margin-bottom: 18px;
    margin-bottom: 1.125rem;
    color: #555;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.text--box h5 {
    font-size: 18px;
    line-height: 28px;
}

.text--box h1,
.text--box h2,
.text--box h3,
.text--box h4 {
    margin-bottom: 9px;
    color: #151515;
    font-weight: 700;
}

.text--box p + h1,
.text--box p + h2,
.text--box p + h3,
.text--box p + h4,
.text--box p + h5,
.text--box p + h6 {
    margin-top: 18px;
}

.text--box p:not(:last-child) {
    margin-bottom: 10px;
}

.text--box strong {
    font-weight: 500;
}

.text--box h5 strong {
    color: #151515;
}

.text--box .fa-ul {
    margin-top: -5px;
    margin-left: 0;
}

.text--box .fa-ul > li {
    position: relative;
    padding-left: 14px;
    z-index: 0;
}

.text--box .fa-ul > li + li {
    margin-top: 10px;
}

.text--box .fa-ul > li > .fa {
    position: absolute;
    top: 4px;
    left: 0;
    color: #009053;
}

.text--box .list-inline > li {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 575px) {
    .text--box h5 {
        font-size: 16px;
        line-height: 26px;
    }
}

/* X.X. Timeline */
.timeline {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 0;
}

.timeline__line {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    margin-left: auto;
    margin-right: auto;
    background-color: #eee;
    z-index: -1;
}
.timeline__line:before,
.timeline__line:after {
    content: " ";
    position: absolute;
    width: 8px;
    height: 8px;
    margin-left: -2px;
    background-color: #009053;
    border-radius: 50%;
    z-index: -1;
}
.timeline__line:before {
    top: 0;
}
.timeline__line:after {
    bottom: 0;
}

.timeline__item {
    position: relative;
    margin-left: -30px;
    margin-right: -30px;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center; 
    z-index: 0;
}
.timeline__item:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0;
    background-color: #009053;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: -1;
}
.timeline__item + .timeline__item {
    margin-top: 60px;
}

.timeline__content {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    text-align: right;
    z-index: 0;
}
.timeline__content:before {
    content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 1px;
    margin-top: -1px;
    background-color: #009053;
    z-index: -1;
}
.timeline__content p {
    margin-bottom: 0;
}

.timeline__img {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 0;
}
.timeline__img:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    margin-top: -1px;
    background-color: #009053;
    z-index: -1;
}

.timeline__title {
    margin-bottom: 0;
    color: #151515;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 34px;
}
.timeline__title + .timeline__desc,
.timeline__title + .timeline__desc + .timeline__desc {
    margin-top: 6px;
}
h6.timeline__title {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.timeline__subtitle {
    position: relative;
    padding: 0 15px 3px;
    color: #535353;
    font-size: 12px;
    line-height: 22px;
    z-index: 0;
}
.timeline__subtitle:before {
    content: " ";
    position: absolute;
    top: 10px;
    right: 0;
    width: 10px;
    height: 1px;
    background-color: #959595;
}

.timeline__desc + .timeline__desc {
    display: none;
}
.timeline__content--toggled .timeline__desc {
    display: none;
}
.timeline__content--toggled .timeline__desc + .timeline__desc {
    display: block;
}
.timeline__desc p:not(:last-child) {
    margin-bottom: 9px;
}
.timeline__desc ul,
.timeline__desc ol {
    margin-bottom: 9px;
    padding-left: 0;
    list-style: none;
}
.timeline__desc ol {
    counter-reset: ol;
}
.timeline__desc ul ul,
.timeline__desc ol ol {
    margin-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
}
.timeline__desc li {
    position: relative;
    padding: 0 14px;
    z-index: 0;
}
.timeline__desc li:before {
    content: "\f104";
    position: absolute;
    top: 0;
    right: 0;
    color: #009053;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.timeline--reverse .timeline__item:nth-child(even) .timeline__desc li:before {
    left: auto;
    right: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
.timeline__desc ul li li {
    padding-left: 18px;
    padding-right: 18px;
}
.timeline__desc ul li li:before {
    content: "\f100";
}
.timeline__desc ul li li li:before {
    content: "\f111";
    top: -1px;
    font-size: 11px;
    font-weight: 400;
}
.timeline__desc ol li {
    padding-left: 18px;
    padding-right: 18px;
}
.timeline__desc ol li:before,
.timeline--reverse .timeline__item:nth-child(even) .timeline__desc ol li:before {
    content: '('counter(ol);
    counter-increment: ol;
    font-family: inherit;
    font-weight: 400;
}
.timeline__desc li + li {
    margin-top: 5px;
}
.timeline__item:nth-child(even) .timeline__desc li:before,
.timeline--reverse .timeline__item .timeline__desc li:before {
    left: 0;
    right: auto;
}
.timeline__item:nth-child(even) .timeline__desc ul li:before,
.timeline--reverse .timeline__item .timeline__desc ul li:before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}
.timeline__item:nth-child(even) .timeline__desc ol li:before,
.timeline--reverse .timeline__item .timeline__desc ol li:before {
    content: counter(ol)')';
}
.timeline__item .timeline__desc li p {
    margin-bottom: 0;
}
.timeline__desc__action {
    display: inline-block;
    margin-top: 15px;
    font-size: 11px;
    text-transform: uppercase;
}
.timeline__desc__action .fa {
    margin-left: 5px;
}

.timeline__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.timeline__item:nth-child(2n) .timeline__content {
    text-align: left;
}
.timeline__item:nth-child(2n) .timeline__content:before {
    left: 0;
    right: auto;
}
.timeline__item:nth-child(2n) .timeline__subtitle:before {
    left: 0;
    right: auto;
}
.timeline__item:nth-child(2n) .timeline__img {
    text-align: right;
}
.timeline__item:nth-child(2n) .timeline__img:before {
    left: auto;
    right: 0;
}

.timeline--reverse .timeline__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.timeline--reverse .timeline__content {
    text-align: left;
}
.timeline--reverse .timeline__content:before {
    left: 0;
    right: auto;
}
.timeline--reverse .timeline__subtitle:before {
    left: 0;
    right: auto;
}
.timeline--reverse .timeline__img {
    text-align: right;
}
.timeline--reverse .timeline__img:before {
    left: auto;
    right: 0;
}
.timeline--reverse .timeline__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.timeline--reverse .timeline__item:nth-child(2n) .timeline__content {
    text-align: right;
}
.timeline--reverse .timeline__item:nth-child(2n) .timeline__content:before {
    left: auto;
    right: 0;
}
.timeline--reverse .timeline__item:nth-child(2n) .timeline__subtitle:before {
    left: auto;
    right: 0;
}
.timeline--reverse .timeline__item:nth-child(2n) .timeline__img {
    text-align: left;
}
.timeline--reverse .timeline__item:nth-child(2n) .timeline__img:before {
    left: 0;
    right: auto;
}

.timeline--img-bordered .timeline__img img {
    padding: 25px;
    border: 1px solid #eee;
}

.timeline__item.align-items-stretch:before {
    top: 145px;
}
.timeline__item.align-items-stretch .timeline__content:before,
.timeline__item.align-items-stretch .timeline__img:before {
    top: 145px;
}

@media (max-width: 991px) {
    .timeline__item {
        margin-left: 0;
        margin-right: 0;
    }

    .timeline__item:before {
        display: none;
    }

    .timeline__content {
        padding-right: 0;
    }

    .timeline__content,
    .timeline--reverse .timeline__item:nth-child(2n) .timeline__content {
        text-align: left;
    }

    .timeline__content:before,
    .timeline__subtitle:before,
    .timeline--reverse .timeline__item:nth-child(2n) .timeline__content:before,
    .timeline--reverse .timeline__item:nth-child(2n) .timeline__subtitle:before {
        left: 0;
        right: auto;
    }

    .timeline__content:after {
        content: " ";
        position: absolute;
        top: 50%;
        left: -8px;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        background-color: #009053;
        border: 4px solid #fff;
        border-radius: 50%;
        z-index: -1;
    }

    .timeline__item.align-items-stretch .timeline__content:after {
        top: 145px;
    }

    .timeline__desc li:before {
        content: "\f105";
        left: 0;
        right: auto;
    }

    .timeline__item:nth-child(even) .timeline__desc ul li:before,
    .timeline--reverse .timeline__item .timeline__desc ul li:before {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    .timeline__desc ul li li:before,
    .timeline__item:nth-child(even) .timeline__desc ul li li:before,
    .timeline--reverse .timeline__item .timeline__desc ul li li:before,
    .timeline--reverse .timeline__item:nth-child(even) .timeline__desc li li:before {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .timeline--reverse .timeline__item:nth-child(even) .timeline__desc li:before,
    .timeline--reverse .timeline__item:nth-child(even) .timeline__desc li:before {
        left: 0;
        right: auto;
    }

    .timeline__desc ol li:before,
    .timeline--reverse .timeline__item:nth-child(even) .timeline__desc ol li:before {
        content: counter(ol)')';
    }

    .timeline__img {
        padding-right: 0;
    }

    .timeline__img:before {
        display: none;
    }

    .timeline__content + .timeline__img {
        margin-top: 22px;
    }

    .timeline--reverse .timeline__img,
    .timeline__item:nth-child(2n) .timeline__img {
        text-align: left;
    }

    .timeline__line {
        margin-left: 0;
    }
}

/* X.X. Post */
.post--item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}

.post--item:hover,
.post--item.sticky {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.post__info {
    padding: 9px 20px 7px;
}

.post__meta > li:not(:last-child):after {
    content: "/";
    margin-left: 4px;
    margin-right: 4px;
}

.post__meta__cat a {
    display: block;
    margin-right: 10px;
    padding: 0 5px;
    color: #fff;
    background-color: #009053;
    font-size: 12px;
    line-height: 18px;
}

.post__meta__cat:after {
    display: none;
}

.post__title {
    margin-bottom: 0;
    padding-top: 4px;
    padding-bottom: 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 24px;
}

.post__summary {
    padding: 8px 20px 6px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.post__excerpt {
    margin-top: 2px;
}

.post__content {
    padding-top: 24px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.post__action {
    padding: 15px 0;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.post__action a {
    border-style: solid;
    border-width: 0 0 1px;
    border-color: transparent;
}

.post__action a:hover {
    border-color: #009053;
}

.post__action i {
    margin-left: 5px;
}

.post__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post__tags {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post__tags > li {
    margin-top: 5px;
}

.post__tags > li:not(:last-child) {
    margin-right: 10px;
}

.post__tags > li > span {
    color: #252525;
}

.post__tags > li > a {
    color: #959595;
    border-bottom: 1px solid transparent;
}

.post__tags > li > a:hover {
    color: #555;
    border-color: #555;
}

.post__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
}

.post__nav__link {
    display: -ms-inline-flexbox!;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    width: 50%;
    padding-right: 10px;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    z-index: 0;
}

.post__nav__link:not(:hover) {
    color: #555;
}

.post__nav__link span {
    display: block;
}

.post__nav__link:after {
    content: " ";
    display: block;
    clear: both;
}

.post__nav__link--prev img {
    max-width: 70px;
    margin-right: 10px;
}

.post__nav__link--next {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
    padding-left: 10px;
    padding-right: 0;
    text-align: right;
}

.post__nav__link--prev + .post__nav__link--next:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: -1px;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 40px;
    margin-top: -20px;
    background-color: rgba(21, 21, 21, 0.1);
}

.post__nav__link--next img {
    margin-left: 10px;
}

.post__nav__caption {
    color: #009053;
    font-size: 12px;
    text-transform: uppercase;
}

.post__nav__link--prev .fa {
    margin-right: 5px;
}

.post__nav__link--next .fa {
    margin-left: 5px;
}

.post--single {
    padding: 20px 20px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post--single .post__img {
    margin-bottom: 22px;
}

.post--single .post__info {
    padding: 0;
}

.post--single .post__title {
    padding-top: 14px;
    padding-bottom: 21px;
    font-size: 24px;
    line-height: 34px;
}

@media (max-width: 767px) {
    .post__footer {
        display: block;
    }

    .post__nav {
        display: block;
    }

    .post__nav__link {
        width: 100%;
    }

    .post__nav__link--next {
        margin-top: 15px;
        padding-left: 0;
        text-align: left;
        -ms-flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
                flex-direction: row;
    }

    .post__nav__link--prev + .post__nav__link--next:before {
        display: none;
    }

    .post__nav__link--next img {
        margin-left: 0;
        margin-right: 10px;
    }
}

/* X.X. Product */
.product {
    padding-top: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
}

.product:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.product__img {
    position: relative;
    margin: 0 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    z-index: 0;
}

.product__img figcaption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    z-index: 1;
}

.product__img figcaption .btn {
    border-radius: 30px !important;
}

.product__img figcaption .btn + .btn {
    margin-top: 20px;
}

.product__img figcaption .btn i {
    margin-right: 6px;
}

.product:hover .product__img figcaption {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
}

.product__title {
    margin-bottom: 0;
    padding: 21px 10px;
    font-size: 16px;
    line-height: 26px;
}

.product--slider .owl-nav > div {
    margin-left: -25px;
    margin-right: -25px;
}

@media (max-width: 575px) {
    .product--slider .owl-nav > div {
        margin-left: 0;
        margin-right: 0;
    }
}

/* X.X. Product Banner */
.product--banner {
    padding: 150px 0 139px;
    color: #fff;
    background-color: #151515;
    text-align: center;
}

.product--banner__title {
    margin-top: 19px;
    margin-bottom: 0;
    color: inherit;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 15px;
}

.product--banner__img {
    position: relative;
    z-index: 0;
}

.product--banner__img img {
    margin-left: auto;
    margin-right: auto;
}

.product--banner__img img + img {
    left: 18% !important;
    margin-top: 8%;
    margin-left: 0;
    margin-right: 0;
    z-index: -1;
}

.product--banner__img img + img + img {
    left: auto !important;
    right: 18%;
}

@media (max-width: 767px) {
    .product--banner__img img + img {
        left: 5% !important;
    }
    
    .product--banner__img img + img + img {
        right: 5%;
    }
}

/* X.X. Project */
.project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-height: 300px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 0;
}

.project:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    background: -webkit-linear-gradient(bottom, #000, #fff);
    background: linear-gradient(to top, #000, #fff);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .35s ease-in-out;
    transition: opacity .35s ease-in-out;
    z-index: -1;
}

.project:hover:before {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
}

.project__info {
    width: 100%;
    padding: 20px 20px 5px;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .35s ease-in-out, padding .35s ease-in-out;
    transition: opacity .35s ease-in-out, padding .35s ease-in-out;
    z-index: 1;
}

.project:hover .project__info {
    padding-bottom: 20px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.project__info p {
    margin-bottom: 0;
}

.project__info .btn {
    margin-top: 10px;
}

.project--slider .owl-item {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .85s;
            transition-duration: .85s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}

.project--slider .owl-item.__loading {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
}

/* X.X. Project Details */
.project--details__content .entry--title {
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 30px;
    line-height: 40px;
}

.project--details__info table {
    margin-bottom: 0;
}

.project--details__info table th {
    padding: 10px 0 0;
    color: #252525;
    border-width: 0;
    font-weight: 500;
}

.project--details__info table td {
    padding: 10px 0 0;
    border-width: 0;
}

.project--details__info table td:before {
    content: ":";
    margin-right: 8px;
}

.project--details__share:before {
    display: none;
}

.project--details__info .nav {
    font-size: 12px;
    line-height: 22px;
}

.project--details__info .nav li:not(:last-child) {
    margin-right: 15px;
}

.project--details__info .nav a:not(:hover) {
    color: inherit;
}


.project--details__info .pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 14px;
}

/* X.X. Projects Nav */
.projects-nav {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.projects-nav > li {
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.projects-nav > li:hover,
.projects-nav > li.active {
    color: #151515;
    border-color: #009053;
}

.projects-nav > li:not(:last-child) {
    margin-right: 30px;
}

/* X.X. Quantity Calculator */
.quantity--calculator {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.quantity--calculator__form {
    padding: 23px 30px 30px;
}

.quantity--calculator__form .title {
    margin-bottom: 10px;
    color: #009053;
    font-family: inherit;
    font-size: 18px;
    line-height: 28px;
}

.quantity--calculator__form .note {
    margin-bottom: 19px;
}

.quantity--calculator__form .submit-btn {
    margin-top: 14px;
}

.quantity--calculator__result {
    display: none;
    padding: 24px 30px 22px;
    border-top: 1px solid rgba(21, 21, 21, 0.15);
}

.quantity--calculator__result .table {
    margin-bottom: 0;
}

.quantity--calculator__result th,
.quantity--calculator__result td {
    padding: 0;
    border-width: 0;
}

.quantity--calculator__result th {
    color: #252525;
    font-weight: 400;
}

.quantity--calculator__result td:before {
    content: ":";
    margin-right: 8px;
}

.quantity--calculator__result tr + tr th,
.quantity--calculator__result tr + tr td {
    padding-top: 11px;
}

.quantity--calculator__result .total {
    margin-top: 15px;
    color: #151515;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.quantity--calculator__result .total strong {
    color: #009053;
    font-weight: inherit;
}

/* X.X. Share Buttons */
.share--buttons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 7px 0 0 auto;
    padding: 0;
    list-style: none;
}

.share--buttons > li {
    margin-top: 5px;
}

.share--buttons > li:not(:last-child) {
    margin-right: 5px;
}

.share--buttons > li > a > i {
    min-width: 40px;
    border: 1px solid rgba(21, 21, 21, 0.1);
    font-size: 12px;
    line-height: 40px;
    -webkit-transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    transition: color .25s, border-color .25s, background-color .25s ease-in-out;
    text-align: center;
}

.share--buttons > li > a > i[class*="facebook"] { color: #3b5998; }
.share--buttons > li > a > i[class*="twitter"] { color: #1da1f2; }
.share--buttons > li > a > i[class*="google-plus"] { color: #dd4b39; }
.share--buttons > li > a > i[class*="linkedin"] { color: #0077b5; }
.share--buttons > li > a > i[class*="rss"] { color: #f26522; }

.share--buttons > li > a:hover > i {
    color: #fff;
}

.share--buttons > li > a:hover > i[class*="facebook"] { background-color: #3b5998; border-color: #3b5998; }
.share--buttons > li > a:hover > i[class*="twitter"] { background-color: #1da1f2; border-color: #1da1f2; }
.share--buttons > li > a:hover > i[class*="google-plus"] { background-color: #dd4b39; border-color: #dd4b39; }
.share--buttons > li > a:hover > i[class*="linkedin"] { background-color: #0077b5; border-color: #0077b5; }
.share--buttons > li > a:hover > i[class*="rss"] { background-color: #f26522; border-color: #f26522; }

/* X.X. Footer */
.footer--section {
    color: #fff;
    background-color: #151515;
}

.footer__social {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer__social .nav {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__social .nav-item.fb { background-color: #3b5998; }
.footer__social .nav-item.tt { background-color: #1da1f2; }
.footer__social .nav-item.gp { background-color: #dd4b39; }
.footer__social .nav-item.li { background-color: #0077b5; }
.footer__social .nav-item.yt { background-color: #ff0000; }
.footer__social .nav-item.sk { background-color: #00aff0; }

.footer__social .nav-link {
    padding: 13px 10px 11px;
    color: #fff;
}

.footer__social .nav-link i {
    margin-right: 10px;
    font-size: 14px;
    line-height: 24px;
}

.footer__widgets {
    padding-top: 60px;
    color: #929292;
}

.footer__copyright {
    padding: 27px 0;
    color: #fff;
    background-color: #009053;
    text-align: center;
}

/*------------------------------------*\
    X. Widgets
\*------------------------------------*/
.widget + .widget {
    margin-top: 24px;
}

/* X.X. Widget Title */
.widget__title {
    margin-top: -7px;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.footer__widgets .widget__title {
    color: #fff;
}

/* X.X. Sidebar Widget */
.sidebar--widget {
    padding: 20px;
    color: #555;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar--widget + .sidebar--widget {
    margin-top: 30px;
}

.sidebar--widget__title {
    position: relative;
    margin-top: 3px;
    margin-bottom: 20px;
    padding-bottom: 3px;
    color: #151515;
    font-size: 18px;
    line-height: 28px;
    z-index: 0;
}

.sidebar--widget__title:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    background-color: #009053;
}

.sidebar--widget > ul {
    padding: 4px 0 2px;
    list-style: none;
}

.sidebar--widget > ul a:not(:hover) {
    color: inherit;
    padding-right: 5px;
}

/* X.X. Exchange Widget */
.exchange--widget {
    position: relative;
    max-width: 280px;
    margin-left: auto;
    text-align: center;
    z-index: 0;
}

.exchange__content {
    padding: 27px 25px 22px;
    background-color: #fff;
}

.exchange__title {
    margin-bottom: 0;
    color: #555;
    font-size: 12px;
    line-height: 16px;
}

.exchange__subtitle {
    margin-bottom: 0;
    padding-bottom: 3px;
    color: #009053;
    border-bottom: 1px solid rgba(21, 21, 21, 0.30);
    font-size: 38px;
    line-height: 40px;
}

.exchange__name {
    margin-top: 22px;
    margin-bottom: 13px;
    font-size: 26px;
    line-height: 36px;
}

.exchange__rates {
    min-height: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #252525;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
}

.exchange__rates > li {
    display: inline-block;
    position: relative;
}

.exchange__rates > li.up,
.exchange__rates > li.down {
    margin-right: 7px;
    padding-right: 25px;
    color: #009053;
    font-size: 18px;
    line-height: 28px;
}

.exchange__rates > li.down {
    color: #ff0000;
}

.exchange__rates > li.up:after,
.exchange__rates > li.down:after {
    content: " ";
    position: absolute;
    right: 0;
    border-style: solid;
    border-width: 8px;
    border-left-color: transparent;
    border-right-color: transparent;
}

.exchange__rates > li.up:after {
    bottom: 8px;
    border-top-color: transparent;
}

.exchange__rates > li.down:after {
    bottom: 1px;
    border-bottom-color: transparent;
}

.exchange__rates > li + li:not(:last-child):after {
    content: "|";
    margin-left: 10px;
    margin-right: 6px;
    color: #000;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

.exchange__action {
    font-size: 12px;
    line-height: 24px;
}

@media (max-width: 767px) {
    .exchange--widget {
        margin-right: auto;
    }
}

/* X.X. Gallery Widget */
.gallery--widget {
    padding-top: 3px;
}

.gallery--widget li {
    width: 33.333%;
    padding-top: 5px;
    padding-right: 5px;
}

.gallery--widget a {
    display: block;
    position: relative;
    z-index: 0;
}
.gallery--widget a:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #009053;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 1;
}
.gallery--widget a:hover:before {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-transform: scale(1);
            transform: scale(1);
}
.gallery--widget a:after {
    content: "\f067";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -12px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    text-align: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 1;
}
.gallery--widget a:hover:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
            transform: scale(1);
}
.gallery--widget img {
    width: 100%;
}

/* X.X. Latest News Widget */
.latest-news--widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.latest-news--widget li {
    width: 100%;
}

.latest-news--widget li:after {
    content: " ";
    display: block;
    clear: both;
}

.latest-news--widget li + li {
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.latest-news--widget__img {
    display: block;
    float: left;
    position: relative;
    max-width: 70px;
    margin-right: 15px;
    z-index: 0;
}

.latest-news--widget__img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #009053;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    z-index: 1;
}

.latest-news--widget__img:hover:before {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.latest-news--widget__info {
    overflow: hidden;
}

.latest-news--widget__date {
    display: block;
    color: #e2e2e2;
    margin-top: -6px;
    font-size: 10px;
    line-height: 20px;
}

.latest-news--widget__title {
    margin-bottom: 0;
    color: inherit;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.sidebar--widget .latest-news--widget li + li {
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

.sidebar--widget .latest-news--widget__title {
    margin-top: -4px;
    font-family: 'Roboto', sans-serif;
}

.footer__widgets .latest-news--widget__img {
    max-width: 50px;
}

/* X.X. Links Widget */
.links--widget > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 0;
}

.links--widget > ul > li:before {
    content: "\f105";
    margin-right: 7px;
    color: #009053;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.links--widget > ul > li > a {
    margin-right: auto;
}

.links--widget > ul > li > a:not(:hover) {
    color: inherit;
}

.links--widget > ul > li + li {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(21, 21, 21, 0.1);
}

/* X.X. Location Widget */
.location--widget .fa {
    margin-right: 8px;
}

.footer__widgets .location--widget a:hover {
    color: #fff;
}

/* X.X. Nav Widget */
.nav--widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav--widget ul:first-child {
    padding-right: 8px;
}

.nav--widget ul ul {
    width: 100%;
    margin-top: 12px;
    padding-left: 10px;
}

.nav--widget li {
    width: 100%;
    font-size: 0;
    line-height: 0;
}

.nav--widget li + li {
    margin-top: 15px;
}

.nav--widget ul ul li + li {
    margin-top: 9px;
}

.nav--widget a {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 17px;
    z-index: 0;
}

.nav--widget a:after {
    content: "\f107";
    margin-left: 6px;
    font-family: "FontAwesome";
}

.nav--widget ul ul a {
    padding-left: 8px;
    color: inherit;
    font-size: 12px;
    line-height: 15px;
}

.nav--widget ul ul a:hover {
    color: #fff;
}

.nav--widget ul ul a:before {
    content: "\f105";
    position: absolute;
    top: -1px;
    left: 0;
    color: #fff;
    font-family: "FontAwesome";
    font-size: 8px;
}

.nav--widget ul ul a:after {
    display: none;
}

/* X.X. Newsletter Widget */
.newsletter--widget__title {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.newsletter--widget .input-group {
    margin-bottom: 10px;
}

.newsletter--widget .input-group-prepend {
    margin-right: 0;
    padding-left: 10px;
    background-color: #f7f8f9;
    font-size: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.newsletter--widget .form-control {
    background-color: #f7f8f9;
    border-color: #f7f8f9;
}

.footer__widgets .newsletter--widget {
    padding: 14px 20px 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer__widgets .newsletter--widget__title {
    color: #fff;
}

.footer__widgets .newsletter--widget .input-group-prepend {
    background-color: rgba(255, 255, 255, 0.10);
}

.footer__widgets .newsletter--widget .form-control {
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.10);
}

.footer__widgets .newsletter--widget .form-control::-webkit-input-placeholder { color: #a5a5a5; }
.footer__widgets .newsletter--widget .form-control::-moz-placeholder { color: #a5a5a5; }
.footer__widgets .newsletter--widget .form-control:-ms-input-placeholder { color: #a5a5a5; }
.footer__widgets .newsletter--widget .form-control:-moz-placeholder { color: #a5a5a5; }

/* X.X. Search Widget */
.search--widget {
    padding: 10px 0;
}

.search--widget .form-control {
    background-color: #f7f8f9;
}

.search--widget .form-control:not(:focus) {
    border-color: #f7f8f9;
}

.search--widget .btn {
    min-width: 40px;
    padding-left: 0;
    padding-right: 0;
}

/* X.X. Social Counter Widget */
.social-counter--widget > ul > li + li {
    margin-top: 10px;
}

.social-counter--widget__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 10px 0;
    color: inherit;
    background-color: #f7f8f9;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
    z-index: 0;
}

.social-counter--widget__link:hover {
    color: #fff;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
}

.social-counter--widget__icon {
    min-width: 51px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 30px;
    text-align: center;
}

.social-counter--widget__icon:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background-color: #ccc;
    -webkit-transition: width .55s ease-in-out;
    transition: width .55s ease-in-out;
    z-index: -1;
}

.social-counter--widget__link:hover .social-counter--widget__icon:after {
    width: 100%;
}

.social-counter--widget__icon[class*="facebook"]:after { background-color: #3b5998; }
.social-counter--widget__icon[class*="twitter"]:after { background-color: #1da1f2; }
.social-counter--widget__icon[class*="google-plus"]:after { background-color: #dd4b39; }
.social-counter--widget__icon[class*="linkedin"]:after { background-color: #0077b5; }
.social-counter--widget__icon[class*="rss"]:after { background-color: #f26522; }

.social-counter--widget__text {
    padding: 0 20px;
}
