@charset "UTF-8";
/*-------------------------------------------------
=  Table of Css

1.Reset
2.General
3.Main Settings
4.Main Navigation
5.FullPage
6.Main content
7.Blog Page
8.Navigation
9.Page
10.Post
11.Project
12.Contact Form
13.Footer
14.Elements
15.Loader
16.Magnific popup
17.OWL
18.Animations

-------------------------------------------------*/
/*-------------------------------------------------
*/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.ttf') format('ttf'), url('../fonts/Montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-LightItalic.ttf') format('ttf'), url('../fonts/Montserrat/Montserrat-LightItalic.woff') format('woff');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('ttf'), url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Italic.ttf') format('ttf'), url('../fonts/Montserrat/Montserrat-Italic.woff') format('woff');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Light.ttf') format('ttf'), url('../fonts/OpenSans/OpenSans-Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-LightItalic.ttf') format('ttf'), url('../fonts/OpenSans/OpenSans-LightItalic.woff') format('woff');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Regular.ttf') format('ttf'), url('../fonts/OpenSans/OpenSans-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans/OpenSans-Italic.ttf') format('ttf'), url('../fonts/OpenSans/OpenSans-Italic.woff') format('woff');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong/Trirong-Light.ttf') format('ttf'), url('../fonts/Trirong/Trirong-Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong/Trirong-LightItalic.ttf') format('ttf'), url('../fonts/Trirong/Trirong-LightItalic.woff') format('woff');
    font-style: italic;
    font-weight: 300;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong/Trirong-Regular.ttf') format('ttf'), url('../fonts/Trirong/Trirong-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Trirong';
    src: url('../fonts/Trirong/Trirong-Italic.ttf') format('ttf'), url('../fonts/Trirong/Trirong-Italic.woff') format('woff');
    font-style: italic;
    font-weight: 400;
}


/*-------------------------------------------------*/
/*-------------------------------------------------*/
/* =  1.Personal Adjsustments
/*-------------------------------------------------*/
.brown-background {
    background-color: #2F2911 !important;
}

.header-brown-background {
    color: #FFFFFF !important;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
}

ul li {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

div .form-group {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
}
/* Container für horizontale Felder */
.form-fields-horizontal {
    display: flex; /* Aktiviert Flexbox */
    flex-wrap: wrap; /* Erlaubt Umbruch auf die nächste Zeile bei Platzmangel */
    gap: 20px; /* Abstand zwischen den Feldern */
    justify-content: space-between; /* Verteilt die Felder gleichmäßig im verfügbaren Raum */
    margin-bottom: 10px; /* Abstand nach unten zum nächsten Element */
}

.form-fields-horizontal .form-group {
    flex: 1; /* Erlaubt den Feldern, den verfügbaren Platz aufzuteilen */
    min-width: 200px; /* Mindestbreite, bevor ein Umbruch erfolgt */
    margin-bottom: 0; /* Setzt den ursprünglichen unteren Margin der form-group zurück */
}

.form-fields-horizontal .form-group label {
    white-space: nowrap; /* Verhindert, dass der Label-Text umbricht */
    color: #ffffff;
}


/* Bestehendes CSS für form-group anpassen, damit es sich im horizontalen Layout gut einfügt */
.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%; /* Stellt sicher, dass das Input-Feld die volle Breite des Eltern-Containers einnimmt */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Breite enthalten sind */
    color: #2F2911 !important;
}

/* Anpassung für die Checkbox-Gruppe, falls sie immer noch vertikal unter den Feldern bleiben soll */
.form-group.privacy-checkbox {
    display: flex; /* Behält Flexbox bei, falls schon vorhanden, um Checkbox und Label auszurichten */
    align-items: flex-start;
    margin-top: 10px; /* Sorgt für Abstand nach oben */
    margin-bottom: 10px;
    width: 100%; /* Stellt sicher, dass die Checkbox-Gruppe die volle Breite einnimmt */
    background-color: #2f2911;
    color: #CBBD9A;
}

/* Den Honeypot-Container nicht vergessen, der unsichtbar bleiben soll */
.honeypot-field {
    position: absolute;
    left: -9999px;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: -1;
}

/* Optional: Anpassung für den Button, falls er sich an die neue Anordnung anpassen soll */
.newsletter-form button {
    display: block;
    width: 100%; /* Volle Breite */
    padding: 12px 20px;
    background-color: #2F2911;
    color: #ffffff;
    border: 1px solid #CBBD9A;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #2F2911;
}

.newsletter-form a:hover {
    color: #CBBD9A;
}


/*-------------------------------------------------*/
/*-------------------------------------------------*/
/* =  1.Reset
/*-------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a:focus {
    text-decoration: none;
}

/*-------------------------------------------------*/
/* =  2.General
/*-------------------------------------------------*/
body {
    font: 100% "Montserrat", sans-serif;
    color: #2F2911;
    background-color: #EEEEEE;
}

* {
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font: 100% "Montserrat", sans-serif;
    color: #2F2911;
    letter-spacing: 0.5px;
}

h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
    color: #2F2911;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    font-size: 26px;
    line-height: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 40px #888b8d;
    z-index: 1;
}

@media screen and (max-width: 480px) {
    h1.title,
    h2.title,
    h3.title,
    h4.title,
    h5.title,
    h6.title {
        text-shadow: none;
    }
}

h1.title:after,
h2.title:after,
h3.title:after,
h4.title:after,
h5.title:after,
h6.title:after {
    border: 2px solid #CBBD9A;
    border-radius: 2px;
    position: absolute;
    content: "";
    display: block;
    margin: 0 auto;
    top: -26px;
    left: 0;
    right: 0;
    height: 80px;
    width: 80px;
    margin: 18px auto 18px auto;
    z-index: -1;
}

h1.title.line,
h2.title.line,
h3.title.line,
h4.title.line,
h5.title.line,
h6.title.line {
    margin-top: 45px;
}

h1.title.line:after,
h2.title.line:after,
h3.title.line:after,
h4.title.line:after,
h5.title.line:after,
h6.title.line:after {
    height: 40px;
    width: 2px;
    background-color: #CBBD9A;
    border-radius: 0;
    border: none;
    top: -60px;
}

h1.title.left:after,
h2.title.left:after,
h3.title.left:after,
h4.title.left:after,
h5.title.left:after,
h6.title.left:after {
    margin: 18px 0;
}

h1.title.right:after,
h2.title.right:after,
h3.title.right:after,
h4.title.right:after,
h5.title.right:after,
h6.title.right:after {
    margin: 18px 0;
    left: inherit;
}

h1.title.simple:after,
h2.title.simple:after,
h3.title.simple:after,
h4.title.simple:after,
h5.title.simple:after,
h6.title.simple:after {
    display: none;
}

h1.title:not(.line):after,
h2.title:not(.line):after,
h3.title:not(.line):after,
h4.title:not(.line):after,
h5.title:not(.line):after,
h6.title:not(.line):after {
    content: none;
}

h1 {
    font-size: 50px;
}

h1.heading {
    color: #6E6B66;
    font-family: "Montserrat", sans-serif;
    font-size: 18px !important;
    line-height: 40px !important;
    letter-spacing: 0;
    max-width: 800px;
    margin: 0 auto;
}

h1.heading.max {
    max-width: 1000px;
}

h1.heading.left {
    margin-left: 0;
}

h1.heading.right {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    h1.heading {
        font-size: 14px !important;
        line-height: 24px !important;
    }
}

h1.medium {
    font-size: 38px !important;
    line-height: 48px !important;
}

@media screen and (max-width: 480px) {
    h1.medium {
        font-size: 24px;
        line-height: 34px;
    }
}

@media screen and (max-width: 320px) {
    h1.medium {
        font-size: 20px;
        line-height: 30px;
    }
}

h1.big {
    font-size: 60px;
    line-height: 64px;
}

@media screen and (max-width: 480px) {
    h1.big {
        font-size: 40px;
        line-height: 56px;
    }
}

h1.small,
h2.small {
    font-size: 30px;
    line-height: 40px;
    font-family: "Roboto", sans-serif;
    color: #6E6B66;
    font-weight: 100;
}

h1.small strong,
h1.small b,
h2.small strong,
h2.small b {
    color: #CBBD9A;
    font-weight: 400;
}

h1 i,
h2 i {
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    font-weight: 400;
    margin: 0 6px;
    color: white;
    padding: 0 5px;
    position: relative;
    display: inline-block;
}

h1 i:after,
h2 i:after {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 23px;
    background-color: #CBBD9A;
    z-index: -1;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

h1 i:hover:after,
h2 i:hover:after {
    background-color: #6E6B66;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

h1 i.simple,
h2 i.simple {
    padding: 0;
    margin: 0;
}

h1 i.simple:after, h1 i.simple:before,
h2 i.simple:after,
h2 i.simple:before {
    display: none;
}

h1 span.data,
h2 span.data {
    color: #2F2911;
}

h2 {
    font-size: 40px;
}

h2.big {
    font-size: 60px;
    line-height: 64px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 50px;
    font-weight: 100;
}

@media screen and (max-width: 480px) {
    h2.big {
        font-size: 40px;
        line-height: 56px;
    }
}

h2.big span {
    color: #6E6B66;
}

h2.medium {
    font-size: 45px;
}

h2.sm {
    font-size: 35px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h3.big {
    font-size: 38px !important;
    line-height: 48px !important;
}

h3.small {
    font-size: 18px;
    line-height: 28px;
    font-family: "Roboto", sans-serif;
    color: #6E6B66;
    font-weight: 100;
}

h3.small strong,
h3.small b {
    color: #CBBD9A;
    font-weight: 400;
}

h4 {
    font-size: 18px;
}

h4.big {
    color: #6E6B66;
    font-family: "Montserrat", sans-serif;
    font-size: 24px !important;
    line-height: 34px !important;
    letter-spacing: 0;
    margin: 0 auto;
}

h4.big a.btn-pro {
    font-size: 24px;
    line-height: 34px;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

h4.big a.btn-pro:hover {
    color: #6E6B66 !important;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

h4.small {
    color: #6E6B66;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 100;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

h6.medium {
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

h6.small {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
}

h6.heading {
    color: #2F2911;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
}

a {
    color: #CBBD9A;
    text-decoration: none;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

a:focus, a:active, a:visited {
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #2F2911;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

a.simple {
    text-decoration: none;
}

a.simple:hover {
    text-decoration: underline;
}

a.btn {
    padding: 0;
    padding-right: 30px;
    padding-left: 30px;
    height: 55px;
    line-height: 53px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    outline: none;
    border: 2px solid #2F2911;
    border-radius: 0;
    font-weight: bold;
    color: #2F2911;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 35px;
    text-decoration: none !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 991px) {
    a.btn {
        margin-bottom: 0px;
    }
}

a.btn:hover {
    background-color: #CBBD9A;
    color: white !important;
    border-color: transparent;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a.btn-alt {
    padding: 0;
    padding-right: 30px;
    padding-left: 30px;
    height: 55px;
    line-height: 53px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    outline: none;
    border-radius: 2px;
    font-weight: 100;
    color: white;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 35px;
    text-decoration: none !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    background-color: #CBBD9A;
}

@media screen and (max-width: 991px) {
    a.btn-alt {
        margin-bottom: 0px;
    }
}

a.btn-alt:hover {
    background-color: #2F2911;
    color: white !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a.btn-alt.shadow {
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

a.btn-alt.no-margin-bottom {
    margin-bottom: 0;
}

a.btn-alt.small {
    height: 40px;
    line-height: 42px;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 12px;
}

a.btn-alt.small:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transform: all .4s ease;
    -ms-transform: all .4s ease;
    transform: all .4s ease;
}

a.btn-alt.small.white {
    border: 1px solid white;
}

a.btn-alt.small.white:hover {
    background-color: white;
    color: #CBBD9A !important;
}

a.btn-alt.small.white.active {
    background-color: white;
    color: #CBBD9A !important;
}

a.btn-alt.small.white.active:hover {
    background-color: transparent;
    color: white !important;
}

a.btn-alt.small.active {
    background-color: #CBBD9A;
    color: white;
}

a.btn-alt.small.active:hover {
    background-color: transparent;
    color: #CBBD9A !important;
}

a.btn-alt.small.activetwo {
    background-color: #2f2911;
    color: white;
}

a.btn-alt.small.activetwo:hover {
    border-color: white;
    background-color: white;
    color: #CBBD9A !important;
}

a.btn-alt.medium {
    height: 50px;
    line-height: 50px;
    text-transform: none;
    font-weight: 400;
    text-rendering: geometricPrecision;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
}

a.btn-alt.medium:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transform: all .4s ease;
    -ms-transform: all .4s ease;
    transform: all .4s ease;
}

a.btn-alt.medium.white {
    border: 1px solid white;
}

a.btn-alt.medium.white:hover {
    background-color: white;
    color: #CBBD9A !important;
}

a.btn-alt.medium.active {
    background-color: #CBBD9A;
    color: white;
}

a.btn-alt.medium.active:hover {
    background-color: transparent;
    color: #CBBD9A !important;
}

a.btn-alt.medium.activetwo {
    background-color: #CBBD9A;
    color: white;
}

a.btn-alt.medium.activetwo:hover {
    border-color: white;
    background-color: white;
    color: #CBBD9A !important;
}

a.btn-alt i {
    margin-right: 8px;
}

a.btn-pro {
    font-size: 16px;
    line-height: 16px;
    color: #CBBD9A;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

a.btn-pro:after {
    content: "\f30f";
    font-family: "Ionicons";
    position: absolute;
    display: block;
    position: absolute;
    right: -20px;
    top: 0px;
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease;
}

a.btn-pro:hover:after {
    right: -25px;
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease;
}

a.btn-pro.simple {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-decoration: underline;
}

a.btn-pro.simple:after {
    content: none;
}

a.btn-pro.simple:hover {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a.btn-simple {
    font-size: 16px;
    line-height: 16px;
    color: #CBBD9A;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
    z-index: 2;
}

a.btn-simple:before {
    content: '';
    background-color: #CBBD9A;
    border-radius: 2px;
    position: absolute;
    top: -1px;
    bottom: 0;
    left: -5px;
    width: 0%;
    z-index: -1;
    -webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}

a.btn-simple:hover {
    color: white;
    padding-left: 5px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

a.btn-simple:hover:before {
    width: calc(100% + 15px);
    -webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
}

a#open-filters {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-decoration: none;
}

a#open-filters:hover {
    text-decoration: none;
    color: #CBBD9A !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

p {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

p.heading {
    color: #6E6B66;
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 20px;
    max-width: 600px;
    margin: 0 auto;
}

p.heading.full {
    max-width: 1500px;
}

p.heading.max {
    max-width: 1000px;
}

p.heading.left {
    margin-left: 0;
}

p.heading.right {
    margin-right: 0;
}

p b,
p strong {
    font-weight: bold;
    color: #2F2911;
}

p a {
    text-decoration: none;
}

p.light {
    font-weight: 100;
}

.color-dark {
    color: #2F2911;
}

.underline {
    border-bottom: 3px solid #fcfcfc;
    -webkit-box-shadow: inset 0 -3px 0 #fcfcfc;
    box-shadow: inset 0 -3px 0 #fcfcfc;
}

.light-background {
    background-color: #fcfcfc !important;
}

.color-background {
    background-color: #CBBD9A;
}

.color-background p {
    color: #d1d2d3;
}

.dark-background {
    background-color: #444 !important;
}

.black-background {
    background-color: #222;
}

.grey-background {
    background-color: #F6F6F6 !important;
}

.darkgrey-background {
    background-color: #A0A2A4 !important;
}

.body-background {
    background-color: #EEEEEE !important;
}

.section-bordertop {
    border-top: 1px solid #fcfcfc;
}

button {
    background: none;
    border: none;
    outline: inherit;
}

i {
    font-style: italic;
    font-family: "Trirong", serif;
}

i.service {
    display: block;
    font-size: 40px;
    margin-bottom: 18px;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

i.service.big {
    font-size: 50px;
}

i.service.material {
    -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    color: #CBBD9A;
    display: inline-block;
}

i.service.material[class|="pd"] {
    line-height: 70px;
}

i.service.material:hover {
    color: #2F2911;
}

i.service.material.left {
    float: left;
}

i.service.left {
    float: left;
}

i.service:hover {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

b,
strong {
    font-weight: bold;
}

dl {
    margin: 25px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

dl dt {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 22px;
}

dl dd {
    border-left: 2px solid #CBBD9A;
    font-family: "Open Sans", sans-serif;
    padding-left: 20px;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 1px;
}

ol {
    list-style: decimal;
    padding-left: 28px;
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 100;
    margin: 25px 0 25px 15px;
}

ul li.border {
    border-bottom: 1px solid #c2c3c4;
}

mark {
    background: #CBBD9A;
    color: white;
    padding: 0 6px;
}

pre {
    padding: 25px;
    background: #fcfcfc;
    overflow: hidden;
    border-radius: 0;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #2F2911;
    margin: 25px 0;
}

code {
    color: #CBBD9A;
    background-color: #fcfcfc;
}

blockquote,
q {
    display: block;
    quotes: none;
    position: relative;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: white;
    padding: 25px;
    font-family: "Trirong", serif;
    font-style: italic;
    background-color: #2F2911;
    text-rendering: geometricPrecision;
    margin: 25px 0;
    padding-left: 80px;
}

blockquote:before,
q:before {
    content: "“";
    font-size: 80px;
    line-height: 65px;
    position: absolute;
    left: 30px;
    font-style: normal;
    font-family: "Montserrat", sans-serif;
    color: white;
    right: 0;
    display: inline-block;
}

@media screen and (max-width: 480px) {
    blockquote:before,
    q:before {
        top: 90px;
    }
}

blockquote.heading,
q.heading {
    color: #6E6B66;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    background-color: transparent;
    margin: 0;
    padding-left: 80px;
}

@media screen and (max-width: 1199px) {
    blockquote.heading,
    q.heading {
        padding-top: 60px;
    }
}

@media screen and (max-width: 991px) {
    blockquote.heading,
    q.heading {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    blockquote.heading,
    q.heading {
        padding-left: 7px;
        padding-top: 100px;
        font-size: 14px;
        line-height: 24px;
    }
}

blockquote.heading:before,
q.heading:before {
    content: "“";
    font-size: 140px;
    line-height: 57px;
    position: absolute;
    left: 2px;
    color: white;
    right: 0;
    display: inline-block;
}

@media screen and (max-width: 480px) {
    blockquote.heading:before,
    q.heading:before {
        top: 90px;
    }
}

blockquote.heading.post,
q.heading.post {
    background-color: #CBBD9A;
    color: white;
    padding: 75px 50px 50px 120px;
    margin: 36px 0;
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 600px) {
    blockquote.heading.post,
    q.heading.post {
        padding: 100px 50px 50px 60px;
    }
}

@media screen and (max-width: 480px) {
    blockquote.heading.post,
    q.heading.post {
        padding: 75px 25px 25px 30px;
    }
}

blockquote.heading.post:before,
q.heading.post:before {
    line-height: 85px;
    left: 55px;
}

@media screen and (max-width: 600px) {
    blockquote.heading.post:before,
    q.heading.post:before {
        top: 75px;
    }
}

@media screen and (max-width: 480px) {
    blockquote.heading.post:before,
    q.heading.post:before {
        top: 55px;
        left: 25px;
    }
}

textarea {
    resize: none;
}

.popup-youtube,
.popup-vimeo {
    position: relative;
    display: block;
    overflow: hidden;
}

.popup-youtube.simple,
.popup-vimeo.simple {
    padding: 0;
    padding-right: 30px;
    padding-left: 30px;
    height: 55px;
    line-height: 53px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    outline: none;
    border-radius: 0;
    font-weight: bold;
    color: white;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 35px;
    text-decoration: none !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    background-color: #CBBD9A;
}

.popup-youtube.simple:before,
.popup-vimeo.simple:before {
    display: none;
}

@media screen and (max-width: 991px) {
    .popup-youtube.simple,
    .popup-vimeo.simple {
        margin-bottom: 0px;
    }
}

.popup-youtube.simple:hover,
.popup-vimeo.simple:hover {
    background-color: #2F2911;
    color: white !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.popup-youtube.simple.no-margin-bottom,
.popup-vimeo.simple.no-margin-bottom {
    margin-bottom: 0;
}

.popup-youtube.simple.small,
.popup-vimeo.simple.small {
    height: 40px;
    line-height: 38px;
    text-transform: none;
    font-weight: 600;
    text-rendering: geometricPrecision;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 40px;
    font-size: 12px;
}

.popup-youtube.simple.small:hover,
.popup-vimeo.simple.small:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transform: all .4s ease;
    -ms-transform: all .4s ease;
    transform: all .4s ease;
}

.popup-youtube.simple.small.white,
.popup-vimeo.simple.small.white {
    border: 1px solid white;
}

.popup-youtube.simple.small.white:hover,
.popup-vimeo.simple.small.white:hover {
    background-color: white;
    color: #CBBD9A !important;
}

.popup-youtube.simple.small.white.active,
.popup-vimeo.simple.small.white.active {
    background-color: white;
    color: #CBBD9A !important;
}

.popup-youtube.simple.small.white.active:hover,
.popup-vimeo.simple.small.white.active:hover {
    background-color: transparent;
    color: white !important;
}

.popup-youtube.simple.small.active,
.popup-vimeo.simple.small.active {
    background-color: #CBBD9A;
    color: white;
}

.popup-youtube.simple.small.active:hover,
.popup-vimeo.simple.small.active:hover {
    background-color: transparent;
    color: #CBBD9A !important;
}

.popup-youtube.simple.small.activetwo,
.popup-vimeo.simple.small.activetwo {
    background-color: #CBBD9A;
    color: white;
}

.popup-youtube.simple.small.activetwo:hover,
.popup-vimeo.simple.small.activetwo:hover {
    border-color: white;
    background-color: white;
    color: #CBBD9A !important;
}

.popup-youtube.simple.medium,
.popup-vimeo.simple.medium {
    height: 50px;
    line-height: 48px;
    text-transform: none;
    font-weight: 600;
    text-rendering: geometricPrecision;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 50px;
    font-size: 13px;
}

.popup-youtube.simple.medium:hover,
.popup-vimeo.simple.medium:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transform: all .4s ease;
    -ms-transform: all .4s ease;
    transform: all .4s ease;
}

.popup-youtube.simple.medium.white,
.popup-vimeo.simple.medium.white {
    border: 1px solid white;
}

.popup-youtube.simple.medium.white:hover,
.popup-vimeo.simple.medium.white:hover {
    background-color: white;
    color: #CBBD9A !important;
}

.popup-youtube.simple.medium.active,
.popup-vimeo.simple.medium.active {
    background-color: #CBBD9A;
    color: white;
}

.popup-youtube.simple.medium.active:hover,
.popup-vimeo.simple.medium.active:hover {
    background-color: transparent;
    color: #CBBD9A !important;
}

.popup-youtube.simple.medium.activetwo,
.popup-vimeo.simple.medium.activetwo {
    background-color: #CBBD9A;
    color: white;
}

.popup-youtube.simple.medium.activetwo:hover,
.popup-vimeo.simple.medium.activetwo:hover {
    border-color: white;
    background-color: white;
    color: #CBBD9A !important;
}

.popup-youtube.simple i,
.popup-vimeo.simple i {
    margin-right: 8px;
}

.popup-youtube:before,
.popup-vimeo:before {
    content: "\f487";
    font-family: "Ionicons";
    position: absolute;
    display: block;
    color: white;
    font-size: 40px;
    text-align: center;
    line-height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #CBBD9A;
    line-height: 70px;
    padding-left: 5px;
    z-index: 1;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
    border-radius: 50%;
}

@media screen and (max-width: 410px) {
    .popup-youtube:before,
    .popup-vimeo:before {
        font-size: 30px;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}

.popup-youtube:hover:before,
.popup-vimeo:hover:before {
    background-color: #444;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.popup-youtube:focus,
.popup-vimeo:focus {
    outline: none;
}

.popup-youtube.black:before,
.popup-vimeo.black:before {
    background-color: #444;
}

.popup-youtube.black:hover:before,
.popup-vimeo.black:hover:before {
    background-color: #CBBD9A;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.popup-youtube img,
.popup-vimeo img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1199px) {
    .height-auto-lg {
        height: auto !important;
    }
}

.border-right {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 70px;
    height: 100%;
    max-width: 70px;
    background-color: #fcfcfc;
}

@media screen and (max-width: 1350px) {
    .border-right {
        display: none;
    }
}

.border-left {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    width: 70px;
    height: 100%;
    max-width: 70px;
    background-color: #fcfcfc;
}

@media screen and (max-width: 1350px) {
    .border-left {
        display: none;
    }
}

.nav-tabs {
    padding-left: 0 !important;
    border-bottom: none;
}

.nav-tabs li {
    margin-bottom: 0;
}

.nav-tabs li a {
    font-size: 14px;
    line-height: 14px;
    color: #2F2911;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    border-radius: 2px;
    letter-spacing: 0.5px;
    border: none;
    margin-right: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    padding: 0 30px 0 0;
    height: 40px;
    line-height: 40px;
    text-decoration: line-through;
}

.nav-tabs li a:hover, .nav-tabs li a:focus {
    border: none;
    border-radius: 2px;
    color: #CBBD9A;
    background-color: transparent;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.nav-tabs li a:focus {
    outline: none;
}

.nav-tabs li.active a {
    border: none;
    border-radius: 2px;
    text-decoration: none;
    color: #CBBD9A;
}

.nav-tabs li.active a:hover, .nav-tabs li.active a:focus {
    border: none;
    border-radius: 2px;
    color: #CBBD9A;
}

.nav-tabs li.active a:focus {
    outline: none;
}

.nav-tabs.alt {
    text-align: center;
}

.nav-tabs.alt li {
    float: inherit;
    display: inline-block;
}

.nav-tabs.alt li a {
    padding-left: 30px;
    padding-right: 30px;
    opacity: .5;
    border: none;
    height: 40px;
    line-height: 22px;
    border-radius: 0px;
    font-weight: 600;
    text-rendering: geometricPrecision;
    font-size: 12px;
}

.nav-tabs.alt li a:hover, .nav-tabs.alt li a:focus {
    border: none;
    opacity: 1;
}

.nav-tabs.alt li.active a {
    background-color: #CBBD9A;
    color: white;
    opacity: 1;
    border-radius: 40px;
}

.nav-tabs.alt li.active a:hover, .nav-tabs.alt li.active a:focus {
    border: none;
}

.tab-content {
    margin-bottom: 50px;
    margin-top: -1px;
}

.tab-content .tab-pane {
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    font-family: "Trirong", serif;
    letter-spacing: 1px;
    padding-top: 25px;
    font-weight: 100;
}

.tab-content.alt .tab-pane {
    border: none;
}

.panel-group .panel {
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel-group .panel .panel-heading {
    background-color: transparent;
    background-image: none;
    border-bottom: 1px solid #d1d2d3;
    border-radius: 0;
}

.panel-group .panel .panel-heading h4.panel-title {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 12px;
}

.panel-group .panel .panel-heading h4.panel-title a {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    color: #2F2911;
}

.panel-group .panel .panel-body {
    border-top: none !important;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    font-family: "Trirong", serif;
    letter-spacing: 1px;
    font-weight: 300;
    padding: 25px 0;
}

/* core classes */
::-moz-selection {
    background: #CBBD9A;
    color: white;
}

::selection {
    background: #CBBD9A;
    color: white;
}

/* class white: set font color white */
[class~="white"] {
    color: white !important;
}

/* class color: set font with secondary color */
[class~="color"] {
    color: #CBBD9A !important;
}

/* class black: set font with black color */
[class~="black"] {
    color: #2F2911 !important;
}

/* class grey: set font with grey color */
[class~="grey"] {
    color: #6E6B66 !important;
}

/* class grey-light: set font with light grey color */
[class~="grey-light"] {
    color: #d1d2d3 !important;
}

/* class grey-dark: set font with dark grey color */
[class~="grey-dark"] {
    color: #A0A2A4 !important;
}

/* class uppercase: set font uppercase */
[class~="uppercase"] {
    text-transform: uppercase;
}

/* class vertical-align: vertical align */
[class="vertical-align"] {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
}

/* class vertical-align: vertical align over 991px */
@media screen and (min-width: 991px) {
    [class="vertical-align-lg"] {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 3;
    }
}

/* box-shadow */
[class~="box-shadow-inset"] {
    position: relative;
}

[class~="box-shadow-inset"]:before {
    -webkit-box-shadow: inset 0 8px 8px -5px rgba(0, 0, 0, 0.25), inset 0 -8px 8px -5px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 8px 8px -5px rgba(0, 0, 0, 0.25), inset 0 -8px 8px -5px rgba(0, 0, 0, 0.25);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

[class~="box-shadow-inset"] {
    position: relative;
}

[class~="box-shadow-inset"]:before {
    -webkit-box-shadow: inset 0 8px 8px -5px rgba(0, 0, 0, 0.25), inset 0 -8px 8px -5px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 8px 8px -5px rgba(0, 0, 0, 0.25), inset 0 -8px 8px -5px rgba(0, 0, 0, 0.25);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

[class~="box-shadow"] {
    position: relative;
}

[class~="box-shadow"]:before {
    -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

[class~="simple-shadow"] {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

[class*="vertical-align-outer"] {
    display: table;
}

[class*="vertical-align-inner"] {
    display: table-cell;
    vertical-align: middle;
}

[class*="full-height"] {
    height: 100% !important;
}

img[class*="normal"] {
    display: block;
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    img[class*="normal"] {
        display: none;
    }
}

img[class*="retina"] {
    display: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    img[class*="retina"] {
        display: block;
    }
}

img[class~="center"] {
    margin: 0 auto;
}

/* padding shortcodes */
.padding-top-ultra {
    padding-top: 235px !important;
    padding-bottom: 75px !important;
}

@media screen and (max-width: 480px) {
    .padding-top-ultra {
        padding-top: 180px !important;
    }
}

.padding-lg {
    padding: 75px 0 !important;
}

.padding-top-lg {
    padding-top: 75px !important;
    padding-bottom: 50px !important;
}

.padding-onlytop-lg {
    padding-top: 75px !important;
}

.padding-onlybottom-lg {
    padding-bottom: 75px !important;
}

.padding-md {
    padding: 50px 0 !important;
}

.padding-onlytop-md {
    padding-top: 50px !important;
}

.padding-onlybottom-md {
    padding-bottom: 50px !important;
}

.padding-sm {
    padding: 25px 0 !important;
}

.padding-onlytop-sm {
    padding-top: 25px !important;
}

.padding-onlybottom-sm {
    padding-bottom: 25px !important;
}

.padding-xs {
    padding: 18px 0 !important;
}

.padding-onlytop-xs {
    padding-top: 18px !important;
}

.padding-onlybottom-xs {
    padding-bottom: 18px !important;
}

.padding-null {
    padding: 0 !important;
}

.padding-topbottom-null {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.padding-leftright-null {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.padding-top-null {
    padding-top: 0 !important;
}

.padding-left-null {
    padding-left: 0 !important;
}

.padding-right-null {
    padding-right: 0 !important;
}

.padding-bottom-null {
    padding-bottom: 0 !important;
}

@media screen and (max-width: 1199px) {
    .padding-lg-topbottom-null {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 1199px) {
    .padding-lg-top-null {
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 1199px) {
    .padding-lg-bottom-null {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-topbottom-null {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-leftright-null {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-top-null {
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-bottom-null {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-left-null {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-md-right-null {
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-topbottom-null {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-leftright-null {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-top-null {
        padding-top: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-bottom-null {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-left-null {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .padding-sm-right-null {
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .padding-xs-leftright-null {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .responsive-padding-md {
        padding-bottom: 50px;
    }
}

/* fixed padding/margin shortcodes */
.padding-bottom {
    padding-bottom: 36px;
}

@media screen and (max-width: 991px) {
    .padding-md-bottom {
        padding-bottom: 50px !important;
    }
}

@media screen and (max-width: 991px) {
    .padding-sm-bottom {
        padding-bottom: 25px !important;
    }
}

@media screen and (max-width: 1199px) {
    .padding-lg-top-small {
        padding-top: 18px !important;
    }
}

.margin-bottom {
    margin-bottom: 36px !important;
}

@media screen and (max-width: 991px) {
    .margin-md-bottom {
        margin-bottom: 36px !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-bottom {
        margin-bottom: 36px !important;
    }
}

.margin-bottom-small {
    margin-bottom: 18px !important;
}

.margin-bottom-extrasmall {
    margin-bottom: 9px !important;
}

/* margin shortcodes */
.margin-null {
    margin: 0 !important;
}

.margin-leftright-null {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.margin-topbottom-null {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.margin-top-null {
    margin-bottom: 0 !important;
}

.margin-bottom-null {
    margin-bottom: 0 !important;
}

.margin-left-null {
    margin-left: 0 !important;
}

.margin-right-null {
    margin-left: 0 !important;
}

@media screen and (max-width: 991px) {
    .margin-md-topbottom-null {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .margin-md-leftright-null {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .margin-md-top-null {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .margin-md-bottom-null {
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .margin-md-left-null {
        margin-left: 0 !important;
    }
}

@media screen and (max-width: 991px) {
    .margin-md-right-null {
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-topbottom-null {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-leftright-null {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-top-null {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-bottom-null {
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-left-null {
        margin-left: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .margin-sm-right-null {
        margin-right: 0 !important;
    }
}

/* text-align shortcodes */
@media screen and (max-width: 991px) {
    .text-md-left {
        text-align: left;
    }
}

@media screen and (max-width: 767px) {
    .text-sm-left {
        text-align: left;
    }
}

@media screen and (max-width: 991px) {
    .text-md-right {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .text-sm-right {
        text-align: right;
    }
}

@media screen and (max-width: 991px) {
    .text-md-center {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .text-sm-center {
        text-align: center;
    }
}

/* flex order shortcodes */
@media screen and (max-width: 991px) {
    .flex-order-md {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 991px) {
    .flex-column-push-md {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (max-width: 991px) {
    .flex-column-pull-md {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .flex-order-sm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .flex-column-push-sm {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media screen and (max-width: 767px) {
    .flex-column-pull-sm {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

/* other shortcodes */
.z-index {
    position: relative;
    z-index: 10 !important;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-full {
    display: block;
    width: 100%;
    height: auto;
}

.not-visible {
    visibility: hidden;
    max-height: 0px;
}

.visible {
    visibility: visible;
    max-height: auto;
}

.no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .responsive-md-height-auto {
        height: auto !important;
    }
}

/*-------------------------------------------------*/
/* =  3.Main Setting
/*-------------------------------------------------*/
#main-wrap {
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden;
    background: white;
}

#main-wrap.full-width {
    max-width: 1920px;
}

.container {
    padding-left: 0;
    padding-right: 0;
}

@media screen and (min-width: 767px) {
    .container {
        width: 667px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 870px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1070px;
    }
}

.fullpage-wrap {
    margin-left: -50px;
    margin-right: -50px;
    background-color: white;
}

@media screen and (max-width: 991px) {
    .fullpage-md-wrap {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }
}

.row.no-margin {
    margin-left: 0;
    margin-right: 0;
}

.row.first-section {
    margin-top: 80px;
}

@media screen and (max-width: 480px) {
    .row.first-section {
        margin-top: 60px;
    }
}

/*-------------------------------------------------*/
/* =  4.Main Navigation
/*-------------------------------------------------*/
header {
    position: relative;
    z-index: 3;
}

header.fixed .container {
    padding: 0 50px;
}

header.transparent {
    background-color: transparent !important;
    -webkit-transition: background-color .4s ease-in;
    -o-transition: background-color .4s ease-in;
    transition: background-color .4s ease-in;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.transparent.light {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0))) !important;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%) !important;
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%) !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%) !important;
}

header.transparent.fixed-top {
    background: white !important;
    -webkit-transition: background-color .4s ease-out;
    -o-transition: background-color .4s ease-out;
    transition: background-color .4s ease-out;
    -webkit-box-shadow: 0px 2px 4px -2px rgba(156, 156, 156, 0.5);
    box-shadow: 0px 2px 4px -2px rgba(156, 156, 156, 0.5);
}

header.transparent.fixed-top .navbar.white #logo img.white-logo {
    display: none;
}

header.transparent.fixed-top .navbar.white #logo img:not(.white-logo) {
    display: block;
}

header.transparent.fixed-top .navbar.white #logo img:not(.white-logo).normal {
    display: block;
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    header.transparent.fixed-top .navbar.white #logo img:not(.white-logo).normal {
        display: none;
    }
}

header.transparent.fixed-top .navbar.white #logo img:not(.white-logo).retina {
    display: none;
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
    header.transparent.fixed-top .navbar.white #logo img:not(.white-logo).retina {
        display: block;
    }
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul:not(.sub-menu) > li > a, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul:not(.sub-menu) > li > a, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul:not(.sub-menu) > li > a {
    color: #2F2911;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul:not(.sub-menu) > li > a.active-item, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul:not(.sub-menu) > li > a.active-item, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul:not(.sub-menu) > li > a.active-item {
    color: #CBBD9A;
    font-weight: 400;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul:not(.sub-menu) > li.search, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul:not(.sub-menu) > li.search, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul:not(.sub-menu) > li.search {
    color: #2F2911;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul:not(.sub-menu) > li.lang span.current a, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul:not(.sub-menu) > li.lang span.current a, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul:not(.sub-menu) > li.lang span.current a {
    color: #2F2911;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul:not(.sub-menu) > li.lang:hover ul li a, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul:not(.sub-menu) > li.lang:hover ul li a, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul:not(.sub-menu) > li.lang:hover ul li a {
    color: white;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul.mega-sub-menu li a, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul.mega-sub-menu li a, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul.mega-sub-menu li a {
    color: white;
}

header.transparent.fixed-top .navbar.white #menu .menu-holder ul.mega-sub-menu li a:hover, header.transparent.fixed-top .navbar.white #sidemenu .menu-holder ul.mega-sub-menu li a:hover, header.transparent.fixed-top .navbar.white #menu-classic .menu-holder ul.mega-sub-menu li a:hover {
    color: #2F2911;
}

header.transparent.fixed-top .navbar.white #menu-responsive .menu-button .bar, header.transparent.fixed-top .navbar.white #menu-responsive-sidemenu .menu-button .bar, header.transparent.fixed-top .navbar.white #menu-responsive-classic .menu-button .bar {
    background-color: #2F2911;
}

header.fixed {
    height: 80px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 50%;
    margin-left: -750px;
    z-index: 100;
    background-color: white;
}

header.fixed.full-width {
    max-width: 1920px;
    margin-left: 0px;
    left: 0;
    right: 0;
}

@media screen and (min-width: 1920px) {
    header.fixed.full-width {
        margin-left: -960px;
        left: 50%;
        right: inherit;
    }
}

@media screen and (max-width: 1500px) {
    header.fixed {
        max-width: 100%;
        margin: 0;
        left: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    header.fixed {
        height: 60px;
    }
}

header nav.navbar {
    height: 80px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background-image: none;
    background-color: transparent;
    border: none;
    margin-bottom: 0;
}

@media screen and (max-width: 480px) {
    header nav.navbar {
        height: 60px;
    }
}

header nav.navbar #logo {
    width: 150px;
    position: relative;
    float: left;
}

@media screen and (max-width: 480px) {
    header nav.navbar #logo {
        width: 185px;
    }
}

header nav.navbar #logo a.navbar-brand {
    height: 80px;
    line-height: 80px;
    padding: 20px 0;
}

@media screen and (max-width: 480px) {
    header nav.navbar #logo a.navbar-brand {
        height: 60px;
        line-height: 60px;
        padding: 10px 0;
    }
}

header nav.navbar #logo a.navbar-brand img {
    max-height: 40px;
    width: auto;
}

@media screen and (max-width: 480px) {
    header nav.navbar #logo a.navbar-brand img {
        max-width: 180px;
    }
}

header nav.navbar #menu, header nav.navbar #sidemenu, header nav.navbar #menu-classic {
    position: relative;
    float: right;
    margin: 25px 0;
    width: 80%;
    width: calc(100% - 150px);
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu, header nav.navbar #sidemenu, header nav.navbar #menu-classic {
        width: auto;
    }
}

header nav.navbar #menu .menu-holder, header nav.navbar #sidemenu .menu-holder, header nav.navbar #menu-classic .menu-holder {
    text-align: right;
    float: right;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder, header nav.navbar #sidemenu .menu-holder, header nav.navbar #menu-classic .menu-holder {
        display: none;
    }
}

header nav.navbar #menu .menu-holder ul > li:last-of-type.submenu ul.sub-menu, header nav.navbar #sidemenu .menu-holder ul > li:last-of-type.submenu ul.sub-menu, header nav.navbar #menu-classic .menu-holder ul > li:last-of-type.submenu ul.sub-menu {
    left: inherit;
    right: -18px;
}

header nav.navbar #menu .menu-holder ul li, header nav.navbar #sidemenu .menu-holder ul li, header nav.navbar #menu-classic .menu-holder ul li {
    display: inline-block;
}

header nav.navbar #menu .menu-holder ul li a, header nav.navbar #sidemenu .menu-holder ul li a, header nav.navbar #menu-classic .menu-holder ul li a {
    margin-left: 30px;
    font-size: 16px;
    line-height: 26px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #2F2911;
    padding: 10px 0;
    letter-spacing: 0.5px;
}

header nav.navbar #menu .menu-holder ul li a:hover, header nav.navbar #sidemenu .menu-holder ul li a:hover, header nav.navbar #menu-classic .menu-holder ul li a:hover {
    color: #CBBD9A;
}

header nav.navbar #menu .menu-holder ul li a.active, header nav.navbar #menu .menu-holder ul li a.active-item, header nav.navbar #sidemenu .menu-holder ul li a.active, header nav.navbar #sidemenu .menu-holder ul li a.active-item, header nav.navbar #menu-classic .menu-holder ul li a.active, header nav.navbar #menu-classic .menu-holder ul li a.active-item {
    color: #CBBD9A;
}

header nav.navbar #menu .menu-holder ul li.submenu, header nav.navbar #sidemenu .menu-holder ul li.submenu, header nav.navbar #menu-classic .menu-holder ul li.submenu {
    position: relative;
}

header nav.navbar #menu .menu-holder ul li.submenu > a, header nav.navbar #sidemenu .menu-holder ul li.submenu > a, header nav.navbar #menu-classic .menu-holder ul li.submenu > a {
    padding: 27px 0;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu {
    display: block;
    visibility: hidden;
    z-index: 90;
    position: absolute;
    top: 88px;
    opacity: 0;
    left: 18px;
    min-width: 177px;
    width: auto;
    text-align: left;
    background-color: white;
    padding: 16px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-top: 2px solid #CBBD9A;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li {
    display: block;
    text-align: left;
    margin: 10px 0;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li:first-child, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li:first-child, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li:first-child {
    margin: 0 0 5px 0;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li:last-child, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li:last-child, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li:last-child {
    margin: 5px 0 0 0;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li a {
    color: #2F2911;
    margin-left: 0;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: none;
    font-family: "Trirong", serif;
    -webkit-transition: padding-left .4s ease;
    -o-transition: padding-left .4s ease;
    transition: padding-left .4s ease;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li a:hover {
    color: #CBBD9A !important;
}

@media screen and (min-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu li a:hover {
        padding-left: 10px;
        -webkit-transition: padding-left .4s ease;
        -o-transition: padding-left .4s ease;
        transition: padding-left .4s ease;
    }
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg {
    width: 70%;
    right: 0;
    left: inherit;
    top: 59px;
}

@media screen and (max-width: 1450px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg {
        width: 85%;
    }
}

@media screen and (max-width: 1250px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg {
        width: 100%;
    }
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md {
    width: 50%;
    right: 0;
    top: 55px;
    left: inherit;
}

@media screen and (max-width: 1500px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md {
        width: 70%;
    }
}

@media screen and (max-width: 1250px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md {
        width: 100%;
    }
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a {
    color: white;
    margin-left: 0;
    font-size: 14px;
    line-height: 30px;
    text-transform: none;
    font-family: "Montserrat", sans-serif;
    -webkit-transition: padding-left .4s ease;
    -o-transition: padding-left .4s ease;
    transition: padding-left .4s ease;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a i, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a i, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a i {
    color: #6E6B66;
    padding-right: 16px;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

@media screen and (min-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a {
        padding-left: 10px;
        -webkit-transition: padding-left .4s ease;
        -o-transition: padding-left .4s ease;
        transition: padding-left .4s ease;
    }
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a i, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a i, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li:hover a i {
    color: white;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li.icon-list, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li.icon-list, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li.icon-list {
    overflow: hidden;
    margin-top: -10px;
}

header nav.navbar #menu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu span.header, header nav.navbar #sidemenu .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu span.header, header nav.navbar #menu-classic .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu span.header {
    display: block;
    color: #d1d2d3;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

header nav.navbar #menu .menu-holder ul li.submenu:hover ul.sub-menu, header nav.navbar #sidemenu .menu-holder ul li.submenu:hover ul.sub-menu, header nav.navbar #menu-classic .menu-holder ul li.submenu:hover ul.sub-menu {
    visibility: visible;
    top: 55px;
    opacity: 1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

header nav.navbar #menu .menu-holder ul li.submenu.megasubmenu, header nav.navbar #sidemenu .menu-holder ul li.submenu.megasubmenu, header nav.navbar #menu-classic .menu-holder ul li.submenu.megasubmenu {
    position: static;
}

header nav.navbar #menu .menu-holder ul li.search, header nav.navbar #sidemenu .menu-holder ul li.search, header nav.navbar #menu-classic .menu-holder ul li.search {
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.search, header nav.navbar #sidemenu .menu-holder ul li.search, header nav.navbar #menu-classic .menu-holder ul li.search {
        display: none !important;
    }
}

header nav.navbar #menu .menu-holder ul li.search i, header nav.navbar #sidemenu .menu-holder ul li.search i, header nav.navbar #menu-classic .menu-holder ul li.search i {
    margin-left: 30px;
    font-size: 20px;
    line-height: 16px;
    padding: 10px 0;
}

header nav.navbar #menu .menu-holder ul li.lang, header nav.navbar #sidemenu .menu-holder ul li.lang, header nav.navbar #menu-classic .menu-holder ul li.lang {
    cursor: pointer;
    position: relative;
}

header nav.navbar #menu .menu-holder ul li.lang span, header nav.navbar #sidemenu .menu-holder ul li.lang span, header nav.navbar #menu-classic .menu-holder ul li.lang span {
    display: block;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.lang span, header nav.navbar #sidemenu .menu-holder ul li.lang span, header nav.navbar #menu-classic .menu-holder ul li.lang span {
        display: inline-block;
    }
}

header nav.navbar #menu .menu-holder ul li.lang span.current a, header nav.navbar #sidemenu .menu-holder ul li.lang span.current a, header nav.navbar #menu-classic .menu-holder ul li.lang span.current a {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 25px 0;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.lang span.current a, header nav.navbar #sidemenu .menu-holder ul li.lang span.current a, header nav.navbar #menu-classic .menu-holder ul li.lang span.current a {
        padding: 10px 0;
        margin-right: 16px;
        color: #CBBD9A;
    }

    header nav.navbar #menu .menu-holder ul li.lang span.current a:hover, header nav.navbar #sidemenu .menu-holder ul li.lang span.current a:hover, header nav.navbar #menu-classic .menu-holder ul li.lang span.current a:hover {
        color: #CBBD9A;
    }
}

header nav.navbar #menu .menu-holder ul li.lang ul, header nav.navbar #sidemenu .menu-holder ul li.lang ul, header nav.navbar #menu-classic .menu-holder ul li.lang ul {
    display: block;
    visibility: hidden;
    z-index: 90;
    position: absolute;
    top: 88px;
    opacity: 0;
    right: -16px;
    width: 55px;
    text-align: center;
    background-color: #CBBD9A;
    padding: 16px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.lang ul, header nav.navbar #sidemenu .menu-holder ul li.lang ul, header nav.navbar #menu-classic .menu-holder ul li.lang ul {
        visibility: visible;
        position: relative;
        top: inherit;
        opacity: 1;
        right: inherit;
        width: auto;
        text-align: left;
        background-color: transparent;
        display: inline-block;
        padding: 0;
    }
}

header nav.navbar #menu .menu-holder ul li.lang ul li a, header nav.navbar #sidemenu .menu-holder ul li.lang ul li a, header nav.navbar #menu-classic .menu-holder ul li.lang ul li a {
    margin-left: 0;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
}

header nav.navbar #menu .menu-holder ul li.lang ul li a:hover, header nav.navbar #sidemenu .menu-holder ul li.lang ul li a:hover, header nav.navbar #menu-classic .menu-holder ul li.lang ul li a:hover {
    color: #2F2911;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.lang ul li a, header nav.navbar #sidemenu .menu-holder ul li.lang ul li a, header nav.navbar #menu-classic .menu-holder ul li.lang ul li a {
        margin-right: 16px;
    }

    header nav.navbar #menu .menu-holder ul li.lang ul li a:hover, header nav.navbar #sidemenu .menu-holder ul li.lang ul li a:hover, header nav.navbar #menu-classic .menu-holder ul li.lang ul li a:hover {
        color: #6E6B66;
    }
}

header nav.navbar #menu .menu-holder ul li.lang:hover ul, header nav.navbar #sidemenu .menu-holder ul li.lang:hover ul, header nav.navbar #menu-classic .menu-holder ul li.lang:hover ul {
    visibility: visible;
    top: 55px;
    opacity: 1;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu .menu-holder ul li.lang:hover ul, header nav.navbar #sidemenu .menu-holder ul li.lang:hover ul, header nav.navbar #menu-classic .menu-holder ul li.lang:hover ul {
        top: inherit;
    }
}

header nav.navbar #menu .menu-holder#home-menu ul.filters li a.is-checked, header nav.navbar #sidemenu .menu-holder#home-menu ul.filters li a.is-checked, header nav.navbar #menu-classic .menu-holder#home-menu ul.filters li a.is-checked {
    color: #CBBD9A;
}

header nav.navbar #menu .menu-holder#home-menu ul.filters li a:focus, header nav.navbar #sidemenu .menu-holder#home-menu ul.filters li a:focus, header nav.navbar #menu-classic .menu-holder#home-menu ul.filters li a:focus {
    text-decoration: none;
}

header nav.navbar #menu .menu-holder button.close-menu, header nav.navbar #sidemenu .menu-holder button.close-menu, header nav.navbar #menu-classic .menu-holder button.close-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 100px;
    font-weight: 100;
    color: #CBBD9A;
    width: 50px;
    height: 120px;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu.open, header nav.navbar #sidemenu.open, header nav.navbar #menu-classic.open {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        height: 100%;
        z-index: 998;
        visibility: visible;
        opacity: 1;
        margin: 0;
        overflow-y: auto;
    }

    header nav.navbar #menu.open .menu-holder, header nav.navbar #sidemenu.open .menu-holder, header nav.navbar #menu-classic.open .menu-holder {
        padding: 120px 100px 50px 100px;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 991px) and (max-width: 1350px) {
    header nav.navbar #menu.open .menu-holder, header nav.navbar #sidemenu.open .menu-holder, header nav.navbar #menu-classic.open .menu-holder {
        display: block;
    }
}

@media screen and (max-width: 991px) and (max-width: 480px) {
    header nav.navbar #menu.open .menu-holder, header nav.navbar #sidemenu.open .menu-holder, header nav.navbar #menu-classic.open .menu-holder {
        padding: 120px 50px;
    }
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu.open .menu-holder ul li, header nav.navbar #sidemenu.open .menu-holder ul li, header nav.navbar #menu-classic.open .menu-holder ul li {
        display: block;
        padding: 6px 0;
    }

    header nav.navbar #menu.open .menu-holder ul li a, header nav.navbar #sidemenu.open .menu-holder ul li a, header nav.navbar #menu-classic.open .menu-holder ul li a {
        color: #2F2911;
        padding: 0;
        font-size: 35px;
        line-height: 55px;
    }

    header nav.navbar #menu.open .menu-holder ul li a:hover, header nav.navbar #sidemenu.open .menu-holder ul li a:hover, header nav.navbar #menu-classic.open .menu-holder ul li a:hover {
        color: #CBBD9A;
    }

    header nav.navbar #menu.open .menu-holder ul li.submenu, header nav.navbar #sidemenu.open .menu-holder ul li.submenu, header nav.navbar #menu-classic.open .menu-holder ul li.submenu {
        display: block;
    }

    header nav.navbar #menu.open .menu-holder ul li.submenu > a, header nav.navbar #sidemenu.open .menu-holder ul li.submenu > a, header nav.navbar #menu-classic.open .menu-holder ul li.submenu > a {
        padding: 0;
    }

    header nav.navbar #menu.open .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #sidemenu.open .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu {
        position: relative;
        background-color: transparent;
        top: 0;
        left: inherit;
        right: inherit;
        text-align: center;
        max-height: 0;
        -webkit-transition: max-height .8s ease;
        -o-transition: max-height .8s ease;
        transition: max-height .8s ease;
        visibility: hidden;
        display: block;
        padding: 0;
        border: none;
    }

    header nav.navbar #menu.open .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #sidemenu.open .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu li {
        display: inline-block;
        margin: 0 16px;
        text-align: center;
        opacity: 0;
        -webkit-transition: opacity .4s ease;
        -o-transition: opacity .4s ease;
        transition: opacity .4s ease;
    }

    header nav.navbar #menu.open .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #sidemenu.open .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu li a {
        color: #CBBD9A;
        font-size: 12px;
        line-height: 22px;
        text-transform: uppercase;
        font-family: "Montserrat", sans-serif;
    }

    header nav.navbar #menu.open .menu-holder ul li a:focus, header nav.navbar #sidemenu.open .menu-holder ul li a:focus, header nav.navbar #menu-classic.open .menu-holder ul li a:focus {
        text-decoration: none;
        outline: none;
    }

    header nav.navbar #menu.open .menu-holder ul li:hover ul.sub-menu, header nav.navbar #sidemenu.open .menu-holder ul li:hover ul.sub-menu, header nav.navbar #menu-classic.open .menu-holder ul li:hover ul.sub-menu {
        max-height: 800px;
        -webkit-transition: max-height .8s ease;
        -o-transition: max-height .8s ease;
        transition: max-height .8s ease;
        visibility: visible;
    }

    header nav.navbar #menu.open .menu-holder ul li:hover ul.sub-menu li, header nav.navbar #sidemenu.open .menu-holder ul li:hover ul.sub-menu li, header nav.navbar #menu-classic.open .menu-holder ul li:hover ul.sub-menu li {
        opacity: 1;
        -webkit-transition: opacity .4s ease;
        -o-transition: opacity .4s ease;
        transition: opacity .4s ease;
    }

    header nav.navbar #menu.open .menu-holder ul a, header nav.navbar #sidemenu.open .menu-holder ul a, header nav.navbar #menu-classic.open .menu-holder ul a {
        font-size: 20px;
        line-height: 30px;
        font-family: "Roboto", sans-serif;
        color: white;
        margin-left: 0;
    }

    header nav.navbar #menu.open .menu-holder button.close-menu, header nav.navbar #sidemenu.open .menu-holder button.close-menu, header nav.navbar #menu-classic.open .menu-holder button.close-menu {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu.sidemenu, header nav.navbar #sidemenu.sidemenu, header nav.navbar #menu-classic.sidemenu {
        display: block;
        position: fixed;
        width: 320px;
        right: -320px;
        top: 0;
        left: inherit;
        background-color: #444;
        height: 100%;
        z-index: 998;
    }

    header nav.navbar #menu.sidemenu .menu-holder, header nav.navbar #sidemenu.sidemenu .menu-holder, header nav.navbar #menu-classic.sidemenu .menu-holder {
        padding: 0px 50px;
        width: 100%;
        text-align: right;
        position: absolute;
        top: 80px;
        height: 60%;
        height: calc(100% - 80px);
        overflow-y: auto;
    }
}

@media screen and (max-width: 991px) and (max-width: 480px) {
    header nav.navbar #menu.sidemenu .menu-holder, header nav.navbar #sidemenu.sidemenu .menu-holder, header nav.navbar #menu-classic.sidemenu .menu-holder {
        padding: 90px 50px;
    }
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu.sidemenu .menu-holder ul li, header nav.navbar #sidemenu.sidemenu .menu-holder ul li, header nav.navbar #menu-classic.sidemenu .menu-holder ul li {
        margin: 15px 0;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li a, header nav.navbar #sidemenu.sidemenu .menu-holder ul li a, header nav.navbar #menu-classic.sidemenu .menu-holder ul li a {
        color: white;
        font-size: 20px;
        line-height: 30px;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li:hover a, header nav.navbar #sidemenu.sidemenu .menu-holder ul li:hover a, header nav.navbar #menu-classic.sidemenu .menu-holder ul li:hover a {
        color: #6E6B66;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #sidemenu.sidemenu .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #menu-classic.sidemenu .menu-holder ul li.submenu ul.sub-menu {
        text-align: right;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #sidemenu.sidemenu .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #menu-classic.sidemenu .menu-holder ul li.submenu ul.sub-menu li {
        margin: 0 0 0 16px;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #sidemenu.sidemenu .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #menu-classic.sidemenu .menu-holder ul li.submenu ul.sub-menu li a {
        color: #d1d2d3;
    }

    header nav.navbar #menu.sidemenu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #sidemenu.sidemenu .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #menu-classic.sidemenu .menu-holder ul li.submenu ul.sub-menu li a:hover {
        color: #CBBD9A !important;
    }
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu.sidemenu.open, header nav.navbar #sidemenu.sidemenu.open, header nav.navbar #menu-classic.sidemenu.open {
        overflow-y: visible;
        right: 0;
    }
}

header nav.navbar #menu.minimal, header nav.navbar #sidemenu.minimal, header nav.navbar #menu-classic.minimal {
    width: auto;
}

header nav.navbar #menu.minimal .menu-holder, header nav.navbar #sidemenu.minimal .menu-holder, header nav.navbar #menu-classic.minimal .menu-holder {
    display: none;
}

header nav.navbar #menu.minimal.open, header nav.navbar #sidemenu.minimal.open, header nav.navbar #menu-classic.minimal.open {
    width: 100%;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 100%;
    z-index: 998;
    visibility: visible;
    opacity: 1;
    margin: 0;
    overflow-y: auto;
}

header nav.navbar #menu.minimal.open .menu-holder, header nav.navbar #sidemenu.minimal.open .menu-holder, header nav.navbar #menu-classic.minimal.open .menu-holder {
    padding: 120px 20% 50px 20%;
    width: 100%;
    text-align: center;
    display: block;
}

@media screen and (max-width: 1350px) {
    header nav.navbar #menu.minimal.open .menu-holder, header nav.navbar #sidemenu.minimal.open .menu-holder, header nav.navbar #menu-classic.minimal.open .menu-holder {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    header nav.navbar #menu.minimal.open .menu-holder, header nav.navbar #sidemenu.minimal.open .menu-holder, header nav.navbar #menu-classic.minimal.open .menu-holder {
        padding: 120px 50px;
    }
}

header nav.navbar #menu.minimal.open .menu-holder ul li, header nav.navbar #sidemenu.minimal.open .menu-holder ul li, header nav.navbar #menu-classic.minimal.open .menu-holder ul li {
    display: block;
    padding: 6px 0;
}

header nav.navbar #menu.minimal.open .menu-holder ul li a, header nav.navbar #sidemenu.minimal.open .menu-holder ul li a, header nav.navbar #menu-classic.minimal.open .menu-holder ul li a {
    color: #2F2911;
    padding: 0;
    font-size: 35px;
    line-height: 55px;
}

header nav.navbar #menu.minimal.open .menu-holder ul li a:hover, header nav.navbar #sidemenu.minimal.open .menu-holder ul li a:hover, header nav.navbar #menu-classic.minimal.open .menu-holder ul li a:hover {
    color: #CBBD9A;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu {
    display: block;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu > a, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu > a, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu > a {
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu ul.sub-menu, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu ul.sub-menu {
    position: relative;
    background-color: transparent;
    top: 0;
    left: inherit;
    right: inherit;
    text-align: center;
    max-height: 0;
    -webkit-transition: max-height .8s ease;
    -o-transition: max-height .8s ease;
    transition: max-height .8s ease;
    visibility: hidden;
    display: block;
    padding: 0;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu ul.sub-menu li, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu ul.sub-menu li {
    display: inline-block;
    margin: 0 16px;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu ul.sub-menu li a, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu ul.sub-menu li a {
    color: #2F2911;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.submenu ul.sub-menu li a:hover, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.submenu ul.sub-menu li a:hover {
    color: #CBBD9A !important;
    padding-left: 0;
}

header nav.navbar #menu.minimal.open .menu-holder ul li a:focus, header nav.navbar #sidemenu.minimal.open .menu-holder ul li a:focus, header nav.navbar #menu-classic.minimal.open .menu-holder ul li a:focus {
    text-decoration: none;
    outline: none;
}

header nav.navbar #menu.minimal.open .menu-holder ul li:hover ul.sub-menu, header nav.navbar #sidemenu.minimal.open .menu-holder ul li:hover ul.sub-menu, header nav.navbar #menu-classic.minimal.open .menu-holder ul li:hover ul.sub-menu {
    max-height: 800px;
    -webkit-transition: max-height .8s ease;
    -o-transition: max-height .8s ease;
    transition: max-height .8s ease;
    visibility: visible;
}

header nav.navbar #menu.minimal.open .menu-holder ul li:hover ul.sub-menu li, header nav.navbar #sidemenu.minimal.open .menu-holder ul li:hover ul.sub-menu li, header nav.navbar #menu-classic.minimal.open .menu-holder ul li:hover ul.sub-menu li {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.lang span, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.lang span, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.lang span {
    display: inline-block;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.lang span.current a, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.lang span.current a, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.lang span.current a {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 0;
    margin-right: 16px;
    color: #CBBD9A;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.lang ul, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.lang ul, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.lang ul {
    display: block;
    visibility: visible;
    z-index: 90;
    position: relative;
    top: inherit;
    opacity: 1;
    right: inherit;
    width: auto;
    text-align: left;
    background-color: transparent;
    display: inline-block;
    padding: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

header nav.navbar #menu.minimal.open .menu-holder ul li.lang ul li a, header nav.navbar #sidemenu.minimal.open .menu-holder ul li.lang ul li a, header nav.navbar #menu-classic.minimal.open .menu-holder ul li.lang ul li a {
    margin-left: 0;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-right: 16px;
}

header nav.navbar #menu.minimal.open .menu-holder ul a, header nav.navbar #sidemenu.minimal.open .menu-holder ul a, header nav.navbar #menu-classic.minimal.open .menu-holder ul a {
    font-size: 20px;
    line-height: 30px;
    font-family: "Roboto", sans-serif;
    color: white;
    margin-left: 0;
}

header nav.navbar #menu.minimal.open .menu-holder button.close-menu, header nav.navbar #sidemenu.minimal.open .menu-holder button.close-menu, header nav.navbar #menu-classic.minimal.open .menu-holder button.close-menu {
    display: block;
}

header nav.navbar #menu-classic {
    margin: 25px 0;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu-classic.open {
        position: fixed;
        height: auto;
        max-height: 350px;
        top: 78px;
        background-color: white;
    }
}

@media screen and (max-width: 991px) and (max-width: 480px) {
    header nav.navbar #menu-classic.open {
        top: 60px;
    }
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu-classic.open .menu-holder {
        padding: 10px 50px 10px 50px;
        text-align: left;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li a {
        font-size: 18px;
        line-height: 30px;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu {
        position: relative;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu {
        display: none;
        text-align: left;
        padding-left: 15px;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu li {
        margin: 0 16px 0 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu li.icon-list {
        margin-top: 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu {
        background-image: none !important;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-md, header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu.mega-lg {
        top: 0;
        width: 100%;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li a {
        font-size: 12px;
        line-height: 28px;
        text-transform: uppercase;
        font-weight: 300;
        font-family: "Montserrat", sans-serif;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div {
        text-align: left;
        padding-left: 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div span.header {
        margin-top: 16px;
        color: #6E6B66;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div.col-sm-6 {
        width: 100%;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div.col-sm-6 .row {
        padding-left: 15px;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div.col-sm-6 .row .col-md-12, header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div.col-sm-6 .row .col-sm-12 {
        margin-bottom: 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div:first-child span.header {
        margin-top: 0px;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div:last-child {
        margin-bottom: 0px;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul {
        margin-top: 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li {
        padding: 0;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu ul.sub-menu.mega-sub-menu li div ul li a {
        color: #CBBD9A;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu:after {
        content: "\f3d6";
        font-family: "Ionicons";
        position: absolute;
        display: block;
        position: absolute;
        right: 0px;
        top: 6px;
        font-size: 20px;
        line-height: 30px;
        color: #6E6B66;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu.open > a {
        color: #CBBD9A;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu.open:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        color: #CBBD9A;
    }

    header nav.navbar #menu-classic.open .menu-holder ul li.submenu.open ul.sub-menu {
        display: block;
    }
}

header nav.navbar #menu-responsive, header nav.navbar #menu-responsive-sidemenu, header nav.navbar #menu-responsive-classic {
    float: right;
    display: none;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu-responsive, header nav.navbar #menu-responsive-sidemenu, header nav.navbar #menu-responsive-classic {
        display: block;
    }
}

header nav.navbar #menu-responsive .menu-button, header nav.navbar #menu-responsive-sidemenu .menu-button, header nav.navbar #menu-responsive-classic .menu-button {
    float: right;
    display: block;
    width: 30px;
    height: 20px;
    margin: 26px 0;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    header nav.navbar #menu-responsive .menu-button, header nav.navbar #menu-responsive-sidemenu .menu-button, header nav.navbar #menu-responsive-classic .menu-button {
        margin: 16px 0;
    }
}

header nav.navbar #menu-responsive .menu-button .bar, header nav.navbar #menu-responsive-sidemenu .menu-button .bar, header nav.navbar #menu-responsive-classic .menu-button .bar {
    background-color: #2F2911;
    height: 2px;
    width: 30px;
    display: block;
    right: 0;
    margin: 5px 0;
}

header nav.navbar #menu-responsive .menu-button .bar-1, header nav.navbar #menu-responsive-sidemenu .menu-button .bar-1, header nav.navbar #menu-responsive-classic .menu-button .bar-1 {
    -webkit-transition: margin .4s ease;
    -o-transition: margin .4s ease;
    transition: margin .4s ease;
}

header nav.navbar #menu-responsive .menu-button .bar-2, header nav.navbar #menu-responsive-sidemenu .menu-button .bar-2, header nav.navbar #menu-responsive-classic .menu-button .bar-2 {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    width: 24px !important;
    margin-left: 3px !important;
}

header nav.navbar #menu-responsive .menu-button .bar-3, header nav.navbar #menu-responsive-sidemenu .menu-button .bar-3, header nav.navbar #menu-responsive-classic .menu-button .bar-3 {
    -webkit-transition: margin .4s ease;
    -o-transition: margin .4s ease;
    transition: margin .4s ease;
}

header nav.navbar #menu-responsive .menu-button:hover .bar-2, header nav.navbar #menu-responsive-sidemenu .menu-button:hover .bar-2, header nav.navbar #menu-responsive-classic .menu-button:hover .bar-2 {
    width: 30px !important;
    margin-left: 0 !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

header nav.navbar #menu-responsive.minimal, header nav.navbar #menu-responsive-sidemenu.minimal, header nav.navbar #menu-responsive-classic.minimal {
    display: block;
}

@media screen and (max-width: 991px) {
    header nav.navbar #menu-responsive-sidemenu.open .menu-button, header nav.navbar #menu-responsive-classic.open .menu-button {
        position: relative;
        z-index: 998;
    }

    header nav.navbar #menu-responsive-sidemenu.open .menu-button .bar, header nav.navbar #menu-responsive-classic.open .menu-button .bar {
        background-color: #6E6B66;
    }

    header nav.navbar #menu-responsive-sidemenu.open .menu-button .bar-1, header nav.navbar #menu-responsive-classic.open .menu-button .bar-1 {
        margin-top: 10px;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        -webkit-transition: margin .15s ease-out, opacity .15s ease-out, -webkit-transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, -webkit-transform .15s ease-out .25s;
        -o-transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s, -webkit-transform .15s ease-out .25s;
    }

    header nav.navbar #menu-responsive-sidemenu.open .menu-button .bar-2, header nav.navbar #menu-responsive-classic.open .menu-button .bar-2 {
        opacity: 0;
    }

    header nav.navbar #menu-responsive-sidemenu.open .menu-button .bar.bar-3, header nav.navbar #menu-responsive-classic.open .menu-button .bar.bar-3 {
        margin-top: -14px;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        -webkit-transition: margin .15s ease-out, opacity .15s ease-out, -webkit-transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, -webkit-transform .15s ease-out .25s;
        -o-transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s;
        transition: margin .15s ease-out, opacity .15s ease-out, transform .15s ease-out .25s, -webkit-transform .15s ease-out .25s;
    }
}

@media screen and (max-width: 767px) {
    header nav.navbar #menu-responsive-classic.open .menu-button .bar {
        background-color: #2F2911;
    }
}

header nav.navbar #search-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

header nav.navbar #search-box.full-width {
    max-width: inherit;
}

header nav.navbar #search-box.active {
    display: block;
}

header nav.navbar #search-box button.close-search-box {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 100px;
    font-weight: 100;
    color: #CBBD9A;
    width: 50px;
    height: 120px;
}

header nav.navbar #search-box .form-input .form-field {
    border-bottom-color: #2F2911;
}

header nav.navbar.white #logo img:not(.white-logo) {
    display: none;
}

header nav.navbar.white #menu .menu-holder ul li > a, header nav.navbar.white #sidemenu .menu-holder ul li > a, header nav.navbar.white #menu-classic .menu-holder ul li > a {
    color: white;
    font-weight: 400;
}

header nav.navbar.white #menu .menu-holder ul li > a.active-item, header nav.navbar.white #sidemenu .menu-holder ul li > a.active-item, header nav.navbar.white #menu-classic .menu-holder ul li > a.active-item {
    color: #CBBD9A;
    font-weight: 400;
}

header nav.navbar.white #menu .menu-holder ul li.lang span.current a, header nav.navbar.white #sidemenu .menu-holder ul li.lang span.current a, header nav.navbar.white #menu-classic .menu-holder ul li.lang span.current a {
    color: white;
}

@media screen and (max-width: 991px) {
    header nav.navbar.white #menu .menu-holder ul li.lang span.current a, header nav.navbar.white #sidemenu .menu-holder ul li.lang span.current a, header nav.navbar.white #menu-classic .menu-holder ul li.lang span.current a {
        color: #CBBD9A;
    }
}

header nav.navbar.white #menu.open .menu-holder ul li > a, header nav.navbar.white #sidemenu.open .menu-holder ul li > a, header nav.navbar.white #menu-classic.open .menu-holder ul li > a {
    color: #2F2911;
}

header nav.navbar.white #menu.open .menu-holder ul li > a.active-item, header nav.navbar.white #sidemenu.open .menu-holder ul li > a.active-item, header nav.navbar.white #menu-classic.open .menu-holder ul li > a.active-item {
    color: #CBBD9A;
    font-weight: 400;
}

header nav.navbar.white #sidemenu.open .menu-holder ul li > a {
    color: white;
}

header nav.navbar.white #sidemenu.open .menu-holder ul li > a.active-item {
    color: #CBBD9A;
    font-weight: 400;
}

header nav.navbar.white #menu-responsive .menu-button .bar, header nav.navbar.white #menu-responsive-sidemenu .menu-button .bar, header nav.navbar.white #menu-responsive-classic .menu-button .bar {
    background-color: white;
}

header nav.navbar.white #search-box .form-input i {
    color: #2F2911;
}

/*-------------------------------------------------*/
/* =  5.FullPage
/*-------------------------------------------------*/
#fullpage.full-width {
    margin-left: -50px;
    margin-right: -50px;
}

#fullpage .section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 50px;
    z-index: 1;
}

@media screen and (max-width: 480px) {
    #fullpage .section {
        padding-top: 80px !important;
    }
}

#fullpage .section .text {
    z-index: 3;
    position: relative;
}

#fullpage .section .text h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 35px;
    margin-bottom: 36px;
}

@media screen and (max-width: 480px) {
    #fullpage .section .text h3 {
        font-size: 28px;
    }
}

#fullpage .section .text h4 {
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#fullpage .section .text.main {
    padding: 0 25%;
}

@media screen and (max-width: 900px) {
    #fullpage .section .text.main {
        padding: 0;
    }
}

@media screen and (max-width: 900px) {
    #fullpage .section .text.main p:not(.heading) {
        display: none;
    }
}

#fullpage .section .text.main p:last-of-type {
    margin-bottom: 36px;
}

#fullpage .section .text.no-opacity {
    opacity: 0;
}

#fullpage .section .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.65);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 2;
}

#fp-nav {
    max-width: 1920px;
    margin: 0 auto;
    margin-left: -960px;
    left: 50%;
    right: inherit;
    z-index: 98 !important;
}

@media screen and (max-width: 1500px) {
    #fp-nav {
        max-width: 100%;
        margin: 0;
        left: 0;
    }
}

@media screen and (max-width: 480px) {
    #fp-nav {
        left: 15px;
    }
}

#fp-nav ul {
    float: right;
    margin-top: 40px !important;
}

#fp-nav ul li {
    margin: 16px 8px !important;
}

#fp-nav ul li a {
    display: inline !important;
}

#fp-nav ul li a span {
    height: 10px !important;
    width: 10px !important;
    border: 1px solid white !important;
    background-color: transparent !important;
    margin: 0 !important;
}

#fp-nav ul li a.active span {
    background-color: white !important;
}

#fp-nav ul li:last-child {
    display: none;
}

#fp-nav.right {
    right: 8px !important;
}

/*-------------------------------------------------*/
/* =  6.Main content
/*-------------------------------------------------*/
#page-content {
    position: relative;
    z-index: 2;
    background-color: white;
}

#page-content.footer-fixed {
    margin-bottom: 390px;
}

@media screen and (max-width: 1199px) {
    #page-content.footer-fixed {
        margin-bottom: 260px;
    }
}

@media screen and (max-width: 991px) {
    #page-content.footer-fixed {
        margin-bottom: 0;
    }
}

#page-content.header-static {
    margin-top: -80px !important;
}

@media screen and (max-width: 480px) {
    #page-content.header-static {
        margin-top: -60px !important;
    }
}

#page-content.header-static #flexslider,
#page-content.header-static #flexslider-nav {
    height: calc(100vh) !important;
}

#page-content.header-static #flexslider li,
#page-content.header-static #flexslider-nav li {
    height: calc(100vh) !important;
}

#page-content.header-static #slider-video {
    height: calc(100vh) !important;
}

#page-content.header-static #slider-video .local-video {
    height: calc(100vh) !important;
}

#page-content #flexslider,
#page-content #flexslider-nav {
    border: none;
    height: 100vh;
    height: calc(100vh - 80px);
    margin-top: 80px;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider,
    #page-content #flexslider-nav {
        height: calc(100vh - 60px);
        margin-top: 60px;
        -webkit-transition-duration: 600ms;
        -o-transition-duration: 600ms;
        transition-duration: 600ms;
    }
}

#page-content #flexslider ul,
#page-content #flexslider-nav ul {
    position: relative;
    overflow: hidden;
}

#page-content #flexslider ul li,
#page-content #flexslider-nav ul li {
    height: 100vh;
    height: calc(100vh - 80px);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider ul li,
    #page-content #flexslider-nav ul li {
        height: calc(100vh - 60px);
        -webkit-transition-duration: 600ms;
        -o-transition-duration: 600ms;
        transition-duration: 600ms;
    }
}

#page-content #flexslider ul li .text,
#page-content #flexslider-nav ul li .text {
    position: relative;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    padding: 50px;
}

#page-content #flexslider ul li .text.left,
#page-content #flexslider-nav ul li .text.left {
    text-align: left;
}

#page-content #flexslider ul li .text.right,
#page-content #flexslider-nav ul li .text.right {
    text-align: right;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider ul li .text.typed,
    #page-content #flexslider-nav ul li .text.typed {
        padding: 100px 50px 50px 50px;
    }
}

#page-content #flexslider ul li .text h1,
#page-content #flexslider-nav ul li .text h1 {
    font-size: 55px;
    line-height: 60px;
    color: #CBBD9A;
}

@media screen and (max-width: 650px) {
    #page-content #flexslider ul li .text h1,
    #page-content #flexslider-nav ul li .text h1 {
        font-size: 50px;
        line-height: 55px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #flexslider ul li .text h1,
    #page-content #flexslider-nav ul li .text h1 {
        font-size: 40px;
        line-height: 45px;
    }
}

@media screen and (max-width: 400px) {
    #page-content #flexslider ul li .text h1,
    #page-content #flexslider-nav ul li .text h1 {
        font-size: 30px;
        line-height: 35px;
    }
}

#page-content #flexslider ul li .text h2,
#page-content #flexslider-nav ul li .text h2 {
    margin-top: 25px;
    font-size: 16px;
    line-height: 26px;
    font-family: "Trirong", serif;
    color: #CBBD9A;
    font-weight: 300;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider ul li .text h2,
    #page-content #flexslider-nav ul li .text h2 {
        font-size: 14px;
        line-height: 24px;
    }
}

#page-content #flexslider ul li .text h3,
#page-content #flexslider-nav ul li .text h3 {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

#page-content #flexslider ul li .text p.heading,
#page-content #flexslider-nav ul li .text p.heading {
    font-family: "Trirong", serif;
    font-style: normal;
    font-size: 16px;
    line-height: 26px;
}

#page-content #flexslider ul li .text a.btn-alt,
#page-content #flexslider-nav ul li .text a.btn-alt {
    margin-top: 36px;
}

#page-content #flexslider ul li .gradient,
#page-content #flexslider-nav ul li .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(229, 229, 229, 0.8);
    z-index: 2;
}

#page-content #flexslider ul li .gradient.dark,
#page-content #flexslider-nav ul li .gradient.dark {
    background-color: rgba(0, 0, 0, 0.65);
}

#page-content #flexslider.small,
#page-content #flexslider-nav.small {
    height: 650px !important;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider.small,
    #page-content #flexslider-nav.small {
        height: calc(100vh) !important;
    }
}

#page-content #flexslider.small ul li,
#page-content #flexslider-nav.small ul li {
    height: 650px !important;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider.small ul li,
    #page-content #flexslider-nav.small ul li {
        height: calc(100vh) !important;
    }
}

#page-content #flexslider.small .breadcrumb,
#page-content #flexslider-nav.small .breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    background-color: transparent;
}

#page-content #flexslider.small .breadcrumb > .active,
#page-content #flexslider-nav.small .breadcrumb > .active {
    color: white;
}

#page-content #flexslider.small .breadcrumb li,
#page-content #flexslider-nav.small .breadcrumb li {
    height: auto !important;
}

#page-content #flexslider.small .breadcrumb li a:hover,
#page-content #flexslider-nav.small .breadcrumb li a:hover {
    color: #d1d2d3;
}

#page-content #flexslider .slider-navigation,
#page-content #flexslider-nav .slider-navigation {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    z-index: 1;
    right: 0;
    left: 0;
}

#page-content #flexslider .slider-navigation .flex-prev,
#page-content #flexslider-nav .slider-navigation .flex-prev {
    position: absolute;
    left: 30px;
    z-index: 10;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider .slider-navigation .flex-prev,
    #page-content #flexslider-nav .slider-navigation .flex-prev {
        left: 18px;
    }
}

#page-content #flexslider .slider-navigation .flex-prev:hover,
#page-content #flexslider-nav .slider-navigation .flex-prev:hover {
    left: 25px;
    opacity: .6;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider .slider-navigation .flex-prev:hover,
    #page-content #flexslider-nav .slider-navigation .flex-prev:hover {
        left: -5px;
    }
}

#page-content #flexslider .slider-navigation .flex-next,
#page-content #flexslider-nav .slider-navigation .flex-next {
    position: absolute;
    right: 30px;
    z-index: 10;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider .slider-navigation .flex-next,
    #page-content #flexslider-nav .slider-navigation .flex-next {
        right: 18px;
    }
}

#page-content #flexslider .slider-navigation .flex-next:hover,
#page-content #flexslider-nav .slider-navigation .flex-next:hover {
    right: 25px;
    opacity: .6;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider .slider-navigation .flex-next:hover,
    #page-content #flexslider-nav .slider-navigation .flex-next:hover {
        right: -5px;
    }
}

#page-content #flexslider .slider-navigation .flex-prev i,
#page-content #flexslider .slider-navigation .flex-next i,
#page-content #flexslider-nav .slider-navigation .flex-prev i,
#page-content #flexslider-nav .slider-navigation .flex-next i {
    font-size: 60px;
    color: white;
}

#page-content #flexslider-nav {
    position: relative;
}

#page-content #flexslider-nav ul li .text {
    padding: 50px 100px;
}

@media screen and (max-width: 480px) {
    #page-content #flexslider-nav ul li .text {
        padding: 50px 75px;
    }
}

#page-content #flexslider-nav ul li .text .no-opacity {
    opacity: 0;
}

#page-content #slider-video {
    height: 100vh;
    height: calc(100vh - 80px);
    position: relative;
    margin-top: 80px;
}

@media screen and (max-width: 480px) {
    #page-content #slider-video {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }
}

#page-content #slider-video .local-video {
    height: 100vh;
    height: calc(100vh - 80px);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 480px) {
    #page-content #slider-video .local-video {
        height: calc(100vh - 60px);
    }
}

#page-content #slider-video .local-video video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 100%;
}

@media screen and (max-width: 480px) {
    #page-content #slider-video .local-video video {
        height: 100%;
        width: auto;
        left: -50%;
    }
}

#page-content #slider-video .local-video .text {
    position: relative;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    padding: 50px;
}

#page-content #slider-video .local-video .gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.65);
    z-index: 2;
}

#page-content #about .col-md-6 {
    padding-left: 0;
}

@media screen and (max-width: 991px) {
    #page-content #about .col-md-6 {
        padding-left: 15px;
    }
}

#page-content #main-services .title,
#page-content #main-services .service {
    padding: 100px 50px;
    text-align: center;
}

#page-content #main-services .title h2,
#page-content #main-services .service h2 {
    font-size: 70px;
}

@media screen and (max-width: 1450px) {
    #page-content #main-services .title h2,
    #page-content #main-services .service h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 1199px) {
    #page-content #main-services .title h2,
    #page-content #main-services .service h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #main-services .title h2,
    #page-content #main-services .service h2 {
        font-size: 70px;
    }
}

@media screen and (max-width: 600px) {
    #page-content #main-services .title h2,
    #page-content #main-services .service h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #main-services .title h2,
    #page-content #main-services .service h2 {
        font-size: 35px;
    }
}

#page-content #main-services .title .content,
#page-content #main-services .service .content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 50px;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#page-content #main-services .title .content p,
#page-content #main-services .service .content p {
    margin-top: 25px;
}

@media screen and (max-width: 1450px) {
    #page-content #main-services .title .content p,
    #page-content #main-services .service .content p {
        margin-top: 15px;
    }
}

@media screen and (max-width: 1199px) {
    #page-content #main-services .title .content p,
    #page-content #main-services .service .content p {
        margin-top: 0;
    }
}

@media screen and (max-width: 991px) {
    #page-content #main-services .title .content p,
    #page-content #main-services .service .content p {
        margin-top: 25px;
    }
}

@media screen and (max-width: 600px) {
    #page-content #main-services .title .content p,
    #page-content #main-services .service .content p {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    #page-content #main-services .title .content p,
    #page-content #main-services .service .content p {
        margin-top: 0;
    }
}

#page-content #main-services .title.color-background h2 {
    color: white;
}

#page-content #main-services .service {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#page-content #main-services .service h2 {
    color: white;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#page-content #main-services .service:hover h2 {
    -webkit-transform: translate(0px, -50px);
    -ms-transform: translate(0px, -50px);
    transform: translate(0px, -50px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media screen and (max-width: 480px) {
    #page-content #main-services .service:hover h2 {
        -webkit-transform: translate(0px, -65px);
        -ms-transform: translate(0px, -65px);
        transform: translate(0px, -65px);
    }
}

#page-content #main-services .service:hover .content {
    opacity: 1;
    -webkit-transform: translate(0px, 25px);
    -ms-transform: translate(0px, 25px);
    transform: translate(0px, 25px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

@media screen and (max-width: 1199px) {
    #page-content #main-services .service:hover .content {
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
}

@media screen and (max-width: 991px) {
    #page-content #main-services .service:hover .content {
        -webkit-transform: translate(0px, 25px);
        -ms-transform: translate(0px, 25px);
        transform: translate(0px, 25px);
    }
}

@media screen and (max-width: 600px) {
    #page-content #main-services .service:hover .content {
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
}

@media screen and (max-width: 480px) {
    #page-content #main-services .service:hover .content {
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

#page-content #main-services .service:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.8);
}

#page-content #projects.wrap-filters,
#page-content #projects-filters.wrap-filters,
#page-content #masonry-filters.wrap-filters,
#page-content #showcase-treks.wrap-filters,
#page-content #gallery.wrap-filters {
    visibility: hidden;
    max-height: 0px;
    opacity: 0;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

#page-content #projects.wrap-filters.open,
#page-content #projects-filters.wrap-filters.open,
#page-content #masonry-filters.wrap-filters.open,
#page-content #showcase-treks.wrap-filters.open,
#page-content #gallery.wrap-filters.open {
    padding: 60px;
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
    -webkit-transition: all .6s ease-in;
    -o-transition: all .6s ease-in;
    transition: all .6s ease-in;
}

@media screen and (max-width: 767px) {
    #page-content #projects.wrap-filters.open,
    #page-content #projects-filters.wrap-filters.open,
    #page-content #masonry-filters.wrap-filters.open,
    #page-content #showcase-treks.wrap-filters.open,
    #page-content #gallery.wrap-filters.open {
        padding: 25px;
    }
}

#page-content #projects.wrap-filters-minimal,
#page-content #projects-filters.wrap-filters-minimal,
#page-content #masonry-filters.wrap-filters-minimal,
#page-content #showcase-treks.wrap-filters-minimal,
#page-content #gallery.wrap-filters-minimal {
    padding: 50px 50px 25px 50px;
}

#page-content #projects ul.filters li,
#page-content #projects-filters ul.filters li,
#page-content #masonry-filters ul.filters li,
#page-content #showcase-treks ul.filters li,
#page-content #gallery ul.filters li {
    display: inline-block;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    text-transform: none;
    color: #2F2911;
    font-weight: 400;
    margin-bottom: 25px;
    height: 40px;
    line-height: 40px;
    padding: 0px 18px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: line-through;
}

#page-content #projects ul.filters li.is-checked,
#page-content #projects-filters ul.filters li.is-checked,
#page-content #masonry-filters ul.filters li.is-checked,
#page-content #showcase-treks ul.filters li.is-checked,
#page-content #gallery ul.filters li.is-checked {
    text-decoration: none;
    color: #CBBD9A;
}

#page-content #projects ul.filters li:hover,
#page-content #projects-filters ul.filters li:hover,
#page-content #masonry-filters ul.filters li:hover,
#page-content #showcase-treks ul.filters li:hover,
#page-content #gallery ul.filters li:hover {
    color: #CBBD9A;
    text-decoration: none;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #projects ul.filters li sup,
#page-content #projects-filters ul.filters li sup,
#page-content #masonry-filters ul.filters li sup,
#page-content #showcase-treks ul.filters li sup,
#page-content #gallery ul.filters li sup {
    font-size: 12px;
    line-height: 22px;
    top: -8px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

#page-content #projects ul.filters.light li,
#page-content #projects-filters ul.filters.light li,
#page-content #masonry-filters ul.filters.light li,
#page-content #showcase-treks ul.filters.light li,
#page-content #gallery ul.filters.light li {
    width: 50%;
    float: left;
    color: #2F2911;
    margin-left: -15px;
    margin: 16px 0;
    font-weight: 300;
    font-family: "Trirong", serif;
    padding: 0 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

#page-content #projects ul.filters.light li.is-checked,
#page-content #projects-filters ul.filters.light li.is-checked,
#page-content #masonry-filters ul.filters.light li.is-checked,
#page-content #showcase-treks ul.filters.light li.is-checked,
#page-content #gallery ul.filters.light li.is-checked {
    color: #CBBD9A;
    font-weight: 400;
    border: none;
}

#page-content #projects ul.filters.light li:hover,
#page-content #projects-filters ul.filters.light li:hover,
#page-content #masonry-filters ul.filters.light li:hover,
#page-content #showcase-treks ul.filters.light li:hover,
#page-content #gallery ul.filters.light li:hover {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#page-content #projects a:hover,
#page-content #projects-filters a:hover,
#page-content #masonry-filters a:hover,
#page-content #showcase-treks a:hover,
#page-content #gallery a:hover {
    color: #2F2911;
}

#page-content #projects .projects-items .one-item,
#page-content #projects .masonry-items .one-item,
#page-content #projects-filters .projects-items .one-item,
#page-content #projects-filters .masonry-items .one-item,
#page-content #masonry-filters .projects-items .one-item,
#page-content #masonry-filters .masonry-items .one-item,
#page-content #showcase-treks .projects-items .one-item,
#page-content #showcase-treks .masonry-items .one-item,
#page-content #gallery .projects-items .one-item,
#page-content #gallery .masonry-items .one-item {
    width: 50%;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items .one-item,
    #page-content #projects .masonry-items .one-item,
    #page-content #projects-filters .projects-items .one-item,
    #page-content #projects-filters .masonry-items .one-item,
    #page-content #masonry-filters .projects-items .one-item,
    #page-content #masonry-filters .masonry-items .one-item,
    #page-content #showcase-treks .projects-items .one-item,
    #page-content #showcase-treks .masonry-items .one-item,
    #page-content #gallery .projects-items .one-item,
    #page-content #gallery .masonry-items .one-item {
        width: 100%;
    }
}

#page-content #projects .projects-items .one-item img,
#page-content #projects .masonry-items .one-item img,
#page-content #projects-filters .projects-items .one-item img,
#page-content #projects-filters .masonry-items .one-item img,
#page-content #masonry-filters .projects-items .one-item img,
#page-content #masonry-filters .masonry-items .one-item img,
#page-content #showcase-treks .projects-items .one-item img,
#page-content #showcase-treks .masonry-items .one-item img,
#page-content #gallery .projects-items .one-item img,
#page-content #gallery .masonry-items .one-item img {
    width: 100%;
    height: auto;
    display: block;
}

#page-content #projects .projects-items .one-item .content,
#page-content #projects .masonry-items .one-item .content,
#page-content #projects-filters .projects-items .one-item .content,
#page-content #projects-filters .masonry-items .one-item .content,
#page-content #masonry-filters .projects-items .one-item .content,
#page-content #masonry-filters .masonry-items .one-item .content,
#page-content #showcase-treks .projects-items .one-item .content,
#page-content #showcase-treks .masonry-items .one-item .content,
#page-content #gallery .projects-items .one-item .content,
#page-content #gallery .masonry-items .one-item .content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    background: rgba(34, 34, 34, 0.85);
    padding: 50px;
}

#page-content #projects .projects-items .one-item .content span.icon,
#page-content #projects .masonry-items .one-item .content span.icon,
#page-content #projects-filters .projects-items .one-item .content span.icon,
#page-content #projects-filters .masonry-items .one-item .content span.icon,
#page-content #masonry-filters .projects-items .one-item .content span.icon,
#page-content #masonry-filters .masonry-items .one-item .content span.icon,
#page-content #showcase-treks .projects-items .one-item .content span.icon,
#page-content #showcase-treks .masonry-items .one-item .content span.icon,
#page-content #gallery .projects-items .one-item .content span.icon,
#page-content #gallery .masonry-items .one-item .content span.icon {
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: #CBBD9A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.6), 0 1px 1px 0 rgba(0, 0, 0, 0.6);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.6), 0 1px 1px 0 rgba(0, 0, 0, 0.6);
    -webkit-transition: right .3s ease;
    -o-transition: right .3s ease;
    transition: right .3s ease;
}

#page-content #projects .projects-items .one-item .content span.icon i,
#page-content #projects .masonry-items .one-item .content span.icon i,
#page-content #projects-filters .projects-items .one-item .content span.icon i,
#page-content #projects-filters .masonry-items .one-item .content span.icon i,
#page-content #masonry-filters .projects-items .one-item .content span.icon i,
#page-content #masonry-filters .masonry-items .one-item .content span.icon i,
#page-content #showcase-treks .projects-items .one-item .content span.icon i,
#page-content #showcase-treks .masonry-items .one-item .content span.icon i,
#page-content #gallery .projects-items .one-item .content span.icon i,
#page-content #gallery .masonry-items .one-item .content span.icon i {
    line-height: 40px;
    color: white;
}

#page-content #projects .projects-items .one-item .content .text,
#page-content #projects .masonry-items .one-item .content .text,
#page-content #projects-filters .projects-items .one-item .content .text,
#page-content #projects-filters .masonry-items .one-item .content .text,
#page-content #masonry-filters .projects-items .one-item .content .text,
#page-content #masonry-filters .masonry-items .one-item .content .text,
#page-content #showcase-treks .projects-items .one-item .content .text,
#page-content #showcase-treks .masonry-items .one-item .content .text,
#page-content #gallery .projects-items .one-item .content .text,
#page-content #gallery .masonry-items .one-item .content .text {
    text-align: left;
    opacity: 0;
    bottom: 50px;
    left: 50px;
    right: 50px;
    position: absolute;
    padding: 0;
}

#page-content #projects .projects-items .one-item .content .text h4,
#page-content #projects .masonry-items .one-item .content .text h4,
#page-content #projects-filters .projects-items .one-item .content .text h4,
#page-content #projects-filters .masonry-items .one-item .content .text h4,
#page-content #masonry-filters .projects-items .one-item .content .text h4,
#page-content #masonry-filters .masonry-items .one-item .content .text h4,
#page-content #showcase-treks .projects-items .one-item .content .text h4,
#page-content #showcase-treks .masonry-items .one-item .content .text h4,
#page-content #gallery .projects-items .one-item .content .text h4,
#page-content #gallery .masonry-items .one-item .content .text h4 {
    color: #d1d2d3;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 100;
    -webkit-transform: translate(-25px, 0px);
    -ms-transform: translate(-25px, 0px);
    transform: translate(-25px, 0px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    text-transform: uppercase;
}

#page-content #projects .projects-items .one-item .content .text h3,
#page-content #projects .masonry-items .one-item .content .text h3,
#page-content #projects-filters .projects-items .one-item .content .text h3,
#page-content #projects-filters .masonry-items .one-item .content .text h3,
#page-content #masonry-filters .projects-items .one-item .content .text h3,
#page-content #masonry-filters .masonry-items .one-item .content .text h3,
#page-content #showcase-treks .projects-items .one-item .content .text h3,
#page-content #showcase-treks .masonry-items .one-item .content .text h3,
#page-content #gallery .projects-items .one-item .content .text h3,
#page-content #gallery .masonry-items .one-item .content .text h3 {
    color: white;
    -webkit-transform: translate(-50px, 0px);
    -ms-transform: translate(-50px, 0px);
    transform: translate(-50px, 0px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transition-delay: .8s;
    -o-transition-delay: .8s;
    transition-delay: .8s;
}

@media screen and (max-width: 480px) {
    #page-content #projects .projects-items .one-item .content .text h3,
    #page-content #projects .masonry-items .one-item .content .text h3,
    #page-content #projects-filters .projects-items .one-item .content .text h3,
    #page-content #projects-filters .masonry-items .one-item .content .text h3,
    #page-content #masonry-filters .projects-items .one-item .content .text h3,
    #page-content #masonry-filters .masonry-items .one-item .content .text h3,
    #page-content #showcase-treks .projects-items .one-item .content .text h3,
    #page-content #showcase-treks .masonry-items .one-item .content .text h3,
    #page-content #gallery .projects-items .one-item .content .text h3,
    #page-content #gallery .masonry-items .one-item .content .text h3 {
        font-size: 25px;
    }
}

#page-content #projects .projects-items .one-item .content a.link,
#page-content #projects .masonry-items .one-item .content a.link,
#page-content #projects-filters .projects-items .one-item .content a.link,
#page-content #projects-filters .masonry-items .one-item .content a.link,
#page-content #masonry-filters .projects-items .one-item .content a.link,
#page-content #masonry-filters .masonry-items .one-item .content a.link,
#page-content #showcase-treks .projects-items .one-item .content a.link,
#page-content #showcase-treks .masonry-items .one-item .content a.link,
#page-content #gallery .projects-items .one-item .content a.link,
#page-content #gallery .masonry-items .one-item .content a.link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

#page-content #projects .projects-items .one-item .content.figure,
#page-content #projects .masonry-items .one-item .content.figure,
#page-content #projects-filters .projects-items .one-item .content.figure,
#page-content #projects-filters .masonry-items .one-item .content.figure,
#page-content #masonry-filters .projects-items .one-item .content.figure,
#page-content #masonry-filters .masonry-items .one-item .content.figure,
#page-content #showcase-treks .projects-items .one-item .content.figure,
#page-content #showcase-treks .masonry-items .one-item .content.figure,
#page-content #gallery .projects-items .one-item .content.figure,
#page-content #gallery .masonry-items .one-item .content.figure {
    text-align: center;
}

#page-content #projects .projects-items .one-item .content.figure i,
#page-content #projects .masonry-items .one-item .content.figure i,
#page-content #projects-filters .projects-items .one-item .content.figure i,
#page-content #projects-filters .masonry-items .one-item .content.figure i,
#page-content #masonry-filters .projects-items .one-item .content.figure i,
#page-content #masonry-filters .masonry-items .one-item .content.figure i,
#page-content #showcase-treks .projects-items .one-item .content.figure i,
#page-content #showcase-treks .masonry-items .one-item .content.figure i,
#page-content #gallery .projects-items .one-item .content.figure i,
#page-content #gallery .masonry-items .one-item .content.figure i {
    color: white;
    font-size: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 40px;
    margin: 0 auto;
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#page-content #projects .projects-items .one-item .content.figure:hover i,
#page-content #projects .masonry-items .one-item .content.figure:hover i,
#page-content #projects-filters .projects-items .one-item .content.figure:hover i,
#page-content #projects-filters .masonry-items .one-item .content.figure:hover i,
#page-content #masonry-filters .projects-items .one-item .content.figure:hover i,
#page-content #masonry-filters .masonry-items .one-item .content.figure:hover i,
#page-content #showcase-treks .projects-items .one-item .content.figure:hover i,
#page-content #showcase-treks .masonry-items .one-item .content.figure:hover i,
#page-content #gallery .projects-items .one-item .content.figure:hover i,
#page-content #gallery .masonry-items .one-item .content.figure:hover i {
    -webkit-transform: translate(0px, -40px);
    -ms-transform: translate(0px, -40px);
    transform: translate(0px, -40px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#page-content #projects .projects-items .one-item:hover .content,
#page-content #projects .masonry-items .one-item:hover .content,
#page-content #projects-filters .projects-items .one-item:hover .content,
#page-content #projects-filters .masonry-items .one-item:hover .content,
#page-content #masonry-filters .projects-items .one-item:hover .content,
#page-content #masonry-filters .masonry-items .one-item:hover .content,
#page-content #showcase-treks .projects-items .one-item:hover .content,
#page-content #showcase-treks .masonry-items .one-item:hover .content,
#page-content #gallery .projects-items .one-item:hover .content,
#page-content #gallery .masonry-items .one-item:hover .content {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

#page-content #projects .projects-items .one-item:hover .content .text,
#page-content #projects .masonry-items .one-item:hover .content .text,
#page-content #projects-filters .projects-items .one-item:hover .content .text,
#page-content #projects-filters .masonry-items .one-item:hover .content .text,
#page-content #masonry-filters .projects-items .one-item:hover .content .text,
#page-content #masonry-filters .masonry-items .one-item:hover .content .text,
#page-content #showcase-treks .projects-items .one-item:hover .content .text,
#page-content #showcase-treks .masonry-items .one-item:hover .content .text,
#page-content #gallery .projects-items .one-item:hover .content .text,
#page-content #gallery .masonry-items .one-item:hover .content .text {
    opacity: 1;
}

#page-content #projects .projects-items .one-item:hover .content .text h4,
#page-content #projects .masonry-items .one-item:hover .content .text h4,
#page-content #projects-filters .projects-items .one-item:hover .content .text h4,
#page-content #projects-filters .masonry-items .one-item:hover .content .text h4,
#page-content #masonry-filters .projects-items .one-item:hover .content .text h4,
#page-content #masonry-filters .masonry-items .one-item:hover .content .text h4,
#page-content #showcase-treks .projects-items .one-item:hover .content .text h4,
#page-content #showcase-treks .masonry-items .one-item:hover .content .text h4,
#page-content #gallery .projects-items .one-item:hover .content .text h4,
#page-content #gallery .masonry-items .one-item:hover .content .text h4 {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#page-content #projects .projects-items .one-item:hover .content .text h3,
#page-content #projects .masonry-items .one-item:hover .content .text h3,
#page-content #projects-filters .projects-items .one-item:hover .content .text h3,
#page-content #projects-filters .masonry-items .one-item:hover .content .text h3,
#page-content #masonry-filters .projects-items .one-item:hover .content .text h3,
#page-content #masonry-filters .masonry-items .one-item:hover .content .text h3,
#page-content #showcase-treks .projects-items .one-item:hover .content .text h3,
#page-content #showcase-treks .masonry-items .one-item:hover .content .text h3,
#page-content #gallery .projects-items .one-item:hover .content .text h3,
#page-content #gallery .masonry-items .one-item:hover .content .text h3 {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#page-content #projects .projects-items.square .image-bg,
#page-content #projects .masonry-items.square .image-bg,
#page-content #projects-filters .projects-items.square .image-bg,
#page-content #projects-filters .masonry-items.square .image-bg,
#page-content #masonry-filters .projects-items.square .image-bg,
#page-content #masonry-filters .masonry-items.square .image-bg,
#page-content #showcase-treks .projects-items.square .image-bg,
#page-content #showcase-treks .masonry-items.square .image-bg,
#page-content #gallery .projects-items.square .image-bg,
#page-content #gallery .masonry-items.square .image-bg {
    width: 50%;
    padding: 50%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
    position: relative;
}

#page-content #projects .projects-items.equal .image-bg,
#page-content #projects .masonry-items.equal .image-bg,
#page-content #projects-filters .projects-items.equal .image-bg,
#page-content #projects-filters .masonry-items.equal .image-bg,
#page-content #masonry-filters .projects-items.equal .image-bg,
#page-content #masonry-filters .masonry-items.equal .image-bg,
#page-content #showcase-treks .projects-items.equal .image-bg,
#page-content #showcase-treks .masonry-items.equal .image-bg,
#page-content #gallery .projects-items.equal .image-bg,
#page-content #gallery .masonry-items.equal .image-bg {
    width: 100%;
    padding: 35%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
    position: relative;
}

#page-content #projects .projects-items.two-columns .one-item .image-bg,
#page-content #projects .masonry-items.two-columns .one-item .image-bg,
#page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
#page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
#page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
#page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
#page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
#page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
#page-content #gallery .projects-items.two-columns .one-item .image-bg,
#page-content #gallery .masonry-items.two-columns .one-item .image-bg {
    padding: 250px;
}

@media screen and (max-width: 1500px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 200px;
    }
}

@media screen and (max-width: 1199px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 200px;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 360px) {
    #page-content #projects .projects-items.two-columns .one-item .image-bg,
    #page-content #projects .masonry-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.two-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.two-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.two-columns .one-item .image-bg,
    #page-content #gallery .projects-items.two-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.two-columns .one-item .image-bg {
        padding: 125px;
    }
}

#page-content #projects .projects-items.three-columns .one-item,
#page-content #projects .masonry-items.three-columns .one-item,
#page-content #projects-filters .projects-items.three-columns .one-item,
#page-content #projects-filters .masonry-items.three-columns .one-item,
#page-content #masonry-filters .projects-items.three-columns .one-item,
#page-content #masonry-filters .masonry-items.three-columns .one-item,
#page-content #showcase-treks .projects-items.three-columns .one-item,
#page-content #showcase-treks .masonry-items.three-columns .one-item,
#page-content #gallery .projects-items.three-columns .one-item,
#page-content #gallery .masonry-items.three-columns .one-item {
    width: 33.33333333%;
}

#page-content #projects .projects-items.three-columns .one-item .image-bg,
#page-content #projects .masonry-items.three-columns .one-item .image-bg,
#page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
#page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
#page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
#page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
#page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
#page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
#page-content #gallery .projects-items.three-columns .one-item .image-bg,
#page-content #gallery .masonry-items.three-columns .one-item .image-bg {
    padding: 200px;
}

@media screen and (max-width: 1199px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 360px) {
    #page-content #projects .projects-items.three-columns .one-item .image-bg,
    #page-content #projects .masonry-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.three-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.three-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.three-columns .one-item .image-bg,
    #page-content #gallery .projects-items.three-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.three-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.three-columns .one-item,
    #page-content #projects .masonry-items.three-columns .one-item,
    #page-content #projects-filters .projects-items.three-columns .one-item,
    #page-content #projects-filters .masonry-items.three-columns .one-item,
    #page-content #masonry-filters .projects-items.three-columns .one-item,
    #page-content #masonry-filters .masonry-items.three-columns .one-item,
    #page-content #showcase-treks .projects-items.three-columns .one-item,
    #page-content #showcase-treks .masonry-items.three-columns .one-item,
    #page-content #gallery .projects-items.three-columns .one-item,
    #page-content #gallery .masonry-items.three-columns .one-item {
        width: 50%;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.three-columns .one-item,
    #page-content #projects .masonry-items.three-columns .one-item,
    #page-content #projects-filters .projects-items.three-columns .one-item,
    #page-content #projects-filters .masonry-items.three-columns .one-item,
    #page-content #masonry-filters .projects-items.three-columns .one-item,
    #page-content #masonry-filters .masonry-items.three-columns .one-item,
    #page-content #showcase-treks .projects-items.three-columns .one-item,
    #page-content #showcase-treks .masonry-items.three-columns .one-item,
    #page-content #gallery .projects-items.three-columns .one-item,
    #page-content #gallery .masonry-items.three-columns .one-item {
        width: 100%;
    }
}

#page-content #projects .projects-items.three-columns .one-item.big,
#page-content #projects .masonry-items.three-columns .one-item.big,
#page-content #projects-filters .projects-items.three-columns .one-item.big,
#page-content #projects-filters .masonry-items.three-columns .one-item.big,
#page-content #masonry-filters .projects-items.three-columns .one-item.big,
#page-content #masonry-filters .masonry-items.three-columns .one-item.big,
#page-content #showcase-treks .projects-items.three-columns .one-item.big,
#page-content #showcase-treks .masonry-items.three-columns .one-item.big,
#page-content #gallery .projects-items.three-columns .one-item.big,
#page-content #gallery .masonry-items.three-columns .one-item.big {
    width: 50%;
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.three-columns .one-item.big,
    #page-content #projects .masonry-items.three-columns .one-item.big,
    #page-content #projects-filters .projects-items.three-columns .one-item.big,
    #page-content #projects-filters .masonry-items.three-columns .one-item.big,
    #page-content #masonry-filters .projects-items.three-columns .one-item.big,
    #page-content #masonry-filters .masonry-items.three-columns .one-item.big,
    #page-content #showcase-treks .projects-items.three-columns .one-item.big,
    #page-content #showcase-treks .masonry-items.three-columns .one-item.big,
    #page-content #gallery .projects-items.three-columns .one-item.big,
    #page-content #gallery .masonry-items.three-columns .one-item.big {
        width: 100%;
    }
}

#page-content #projects .projects-items.four-columns .one-item,
#page-content #projects .masonry-items.four-columns .one-item,
#page-content #projects-filters .projects-items.four-columns .one-item,
#page-content #projects-filters .masonry-items.four-columns .one-item,
#page-content #masonry-filters .projects-items.four-columns .one-item,
#page-content #masonry-filters .masonry-items.four-columns .one-item,
#page-content #showcase-treks .projects-items.four-columns .one-item,
#page-content #showcase-treks .masonry-items.four-columns .one-item,
#page-content #gallery .projects-items.four-columns .one-item,
#page-content #gallery .masonry-items.four-columns .one-item {
    width: 25%;
}

#page-content #projects .projects-items.four-columns .one-item .image-bg,
#page-content #projects .masonry-items.four-columns .one-item .image-bg,
#page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
#page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
#page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
#page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
#page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
#page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
#page-content #gallery .projects-items.four-columns .one-item .image-bg,
#page-content #gallery .masonry-items.four-columns .one-item .image-bg {
    padding: 150px;
}

@media screen and (max-width: 1500px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 360px) {
    #page-content #projects .projects-items.four-columns .one-item .image-bg,
    #page-content #projects .masonry-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.four-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.four-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.four-columns .one-item .image-bg,
    #page-content #gallery .projects-items.four-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.four-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 1250px) {
    #page-content #projects .projects-items.four-columns .one-item,
    #page-content #projects .masonry-items.four-columns .one-item,
    #page-content #projects-filters .projects-items.four-columns .one-item,
    #page-content #projects-filters .masonry-items.four-columns .one-item,
    #page-content #masonry-filters .projects-items.four-columns .one-item,
    #page-content #masonry-filters .masonry-items.four-columns .one-item,
    #page-content #showcase-treks .projects-items.four-columns .one-item,
    #page-content #showcase-treks .masonry-items.four-columns .one-item,
    #page-content #gallery .projects-items.four-columns .one-item,
    #page-content #gallery .masonry-items.four-columns .one-item {
        width: 33.33333333%;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.four-columns .one-item,
    #page-content #projects .masonry-items.four-columns .one-item,
    #page-content #projects-filters .projects-items.four-columns .one-item,
    #page-content #projects-filters .masonry-items.four-columns .one-item,
    #page-content #masonry-filters .projects-items.four-columns .one-item,
    #page-content #masonry-filters .masonry-items.four-columns .one-item,
    #page-content #showcase-treks .projects-items.four-columns .one-item,
    #page-content #showcase-treks .masonry-items.four-columns .one-item,
    #page-content #gallery .projects-items.four-columns .one-item,
    #page-content #gallery .masonry-items.four-columns .one-item {
        width: 50%;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.four-columns .one-item,
    #page-content #projects .masonry-items.four-columns .one-item,
    #page-content #projects-filters .projects-items.four-columns .one-item,
    #page-content #projects-filters .masonry-items.four-columns .one-item,
    #page-content #masonry-filters .projects-items.four-columns .one-item,
    #page-content #masonry-filters .masonry-items.four-columns .one-item,
    #page-content #showcase-treks .projects-items.four-columns .one-item,
    #page-content #showcase-treks .masonry-items.four-columns .one-item,
    #page-content #gallery .projects-items.four-columns .one-item,
    #page-content #gallery .masonry-items.four-columns .one-item {
        width: 100%;
    }
}

#page-content #projects .projects-items.four-columns .one-item.big,
#page-content #projects .masonry-items.four-columns .one-item.big,
#page-content #projects-filters .projects-items.four-columns .one-item.big,
#page-content #projects-filters .masonry-items.four-columns .one-item.big,
#page-content #masonry-filters .projects-items.four-columns .one-item.big,
#page-content #masonry-filters .masonry-items.four-columns .one-item.big,
#page-content #showcase-treks .projects-items.four-columns .one-item.big,
#page-content #showcase-treks .masonry-items.four-columns .one-item.big,
#page-content #gallery .projects-items.four-columns .one-item.big,
#page-content #gallery .masonry-items.four-columns .one-item.big {
    width: 50%;
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.four-columns .one-item.big,
    #page-content #projects .masonry-items.four-columns .one-item.big,
    #page-content #projects-filters .projects-items.four-columns .one-item.big,
    #page-content #projects-filters .masonry-items.four-columns .one-item.big,
    #page-content #masonry-filters .projects-items.four-columns .one-item.big,
    #page-content #masonry-filters .masonry-items.four-columns .one-item.big,
    #page-content #showcase-treks .projects-items.four-columns .one-item.big,
    #page-content #showcase-treks .masonry-items.four-columns .one-item.big,
    #page-content #gallery .projects-items.four-columns .one-item.big,
    #page-content #gallery .masonry-items.four-columns .one-item.big {
        width: 100%;
    }
}

#page-content #projects .projects-items.five-columns .one-item,
#page-content #projects .masonry-items.five-columns .one-item,
#page-content #projects-filters .projects-items.five-columns .one-item,
#page-content #projects-filters .masonry-items.five-columns .one-item,
#page-content #masonry-filters .projects-items.five-columns .one-item,
#page-content #masonry-filters .masonry-items.five-columns .one-item,
#page-content #showcase-treks .projects-items.five-columns .one-item,
#page-content #showcase-treks .masonry-items.five-columns .one-item,
#page-content #gallery .projects-items.five-columns .one-item,
#page-content #gallery .masonry-items.five-columns .one-item {
    width: 20%;
}

#page-content #projects .projects-items.five-columns .one-item .image-bg,
#page-content #projects .masonry-items.five-columns .one-item .image-bg,
#page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
#page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
#page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
#page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
#page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
#page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
#page-content #gallery .projects-items.five-columns .one-item .image-bg,
#page-content #gallery .masonry-items.five-columns .one-item .image-bg {
    padding: 125px;
}

@media screen and (max-width: 1199px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 130px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 650px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 175px;
    }
}

@media screen and (max-width: 480px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 150px;
    }
}

@media screen and (max-width: 360px) {
    #page-content #projects .projects-items.five-columns .one-item .image-bg,
    #page-content #projects .masonry-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #projects-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .projects-items.five-columns .one-item .image-bg,
    #page-content #masonry-filters .masonry-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .projects-items.five-columns .one-item .image-bg,
    #page-content #showcase-treks .masonry-items.five-columns .one-item .image-bg,
    #page-content #gallery .projects-items.five-columns .one-item .image-bg,
    #page-content #gallery .masonry-items.five-columns .one-item .image-bg {
        padding: 125px;
    }
}

@media screen and (max-width: 1250px) {
    #page-content #projects .projects-items.five-columns .one-item,
    #page-content #projects .masonry-items.five-columns .one-item,
    #page-content #projects-filters .projects-items.five-columns .one-item,
    #page-content #projects-filters .masonry-items.five-columns .one-item,
    #page-content #masonry-filters .projects-items.five-columns .one-item,
    #page-content #masonry-filters .masonry-items.five-columns .one-item,
    #page-content #showcase-treks .projects-items.five-columns .one-item,
    #page-content #showcase-treks .masonry-items.five-columns .one-item,
    #page-content #gallery .projects-items.five-columns .one-item,
    #page-content #gallery .masonry-items.five-columns .one-item {
        width: 25%;
    }
}

@media screen and (max-width: 1199px) {
    #page-content #projects .projects-items.five-columns .one-item,
    #page-content #projects .masonry-items.five-columns .one-item,
    #page-content #projects-filters .projects-items.five-columns .one-item,
    #page-content #projects-filters .masonry-items.five-columns .one-item,
    #page-content #masonry-filters .projects-items.five-columns .one-item,
    #page-content #masonry-filters .masonry-items.five-columns .one-item,
    #page-content #showcase-treks .projects-items.five-columns .one-item,
    #page-content #showcase-treks .masonry-items.five-columns .one-item,
    #page-content #gallery .projects-items.five-columns .one-item,
    #page-content #gallery .masonry-items.five-columns .one-item {
        width: 33.33333333%;
    }
}

@media screen and (max-width: 991px) {
    #page-content #projects .projects-items.five-columns .one-item,
    #page-content #projects .masonry-items.five-columns .one-item,
    #page-content #projects-filters .projects-items.five-columns .one-item,
    #page-content #projects-filters .masonry-items.five-columns .one-item,
    #page-content #masonry-filters .projects-items.five-columns .one-item,
    #page-content #masonry-filters .masonry-items.five-columns .one-item,
    #page-content #showcase-treks .projects-items.five-columns .one-item,
    #page-content #showcase-treks .masonry-items.five-columns .one-item,
    #page-content #gallery .projects-items.five-columns .one-item,
    #page-content #gallery .masonry-items.five-columns .one-item {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    #page-content #projects .projects-items.five-columns .one-item,
    #page-content #projects .masonry-items.five-columns .one-item,
    #page-content #projects-filters .projects-items.five-columns .one-item,
    #page-content #projects-filters .masonry-items.five-columns .one-item,
    #page-content #masonry-filters .projects-items.five-columns .one-item,
    #page-content #masonry-filters .masonry-items.five-columns .one-item,
    #page-content #showcase-treks .projects-items.five-columns .one-item,
    #page-content #showcase-treks .masonry-items.five-columns .one-item,
    #page-content #gallery .projects-items.five-columns .one-item,
    #page-content #gallery .masonry-items.five-columns .one-item {
        width: 100%;
    }
}

#page-content #masonry-filters.text {
    padding-bottom: 25px;
}

#page-content #showcase-treks {
    margin-left: -25px;
    margin-right: -25px;
}

#page-content #showcase-treks .one-item {
    background-color: transparent !important;
}

#page-content #showcase-treks .one-item:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

#page-content #showcase-treks .one-item .showcase-trek {
    margin: 25px;
}

#page-content #showcase-treks .one-item .showcase-trek .content {
    opacity: 1 !important;
    background: white !important;
}

#page-content #treks.text {
    padding: 50px 25px !important;
}

@media screen and (max-width: 991px) {
    #page-content #treks.text {
        padding: 50px 25px 0px 25px !important;
    }
}

#page-content .section-text h3 {
    margin-bottom: 25px;
}

#page-content .section-text a.btn-pro {
    color: #CBBD9A;
}

#page-content .section-text.half .col-md-6 {
    padding-left: 0;
}

@media screen and (max-width: 991px) {
    #page-content .section-text.half .col-md-6 {
        padding-left: 15px;
    }
}

#page-content #news.text {
    padding: 50px 40px;
}

#page-content #news .single-news {
    padding: 0 25px;
}

@media screen and (max-width: 991px) {
    #page-content #news .single-news {
        margin-bottom: 50px;
    }
}

#page-content #news .single-news article {
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #news .single-news article .image {
    position: relative;
}

#page-content #news .single-news article .image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity .6s ease-out;
    -o-transition: opacity .6s ease-out;
    transition: opacity .6s ease-out;
    background: rgba(34, 34, 34, 0.6);
}

#page-content #news .single-news article img {
    max-width: 100%;
    display: block;
}

#page-content #news .single-news article .content {
    padding: 36px;
    position: relative;
}

#page-content #news .single-news article span {
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
}

#page-content #news .single-news article span.category {
    color: #CBBD9A;
    letter-spacing: 0;
    margin-bottom: 9px;
    display: inline-block;
    margin-right: 9px;
}

#page-content #news .single-news article span.date {
    color: #6E6B66;
    letter-spacing: 0;
    display: inline-block;
    margin-right: 9px;
    font-weight: 400;
}

#page-content #news .single-news article h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0px 0 9px 0;
    color: #2F2911;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

@media screen and (min-width: 991px) and (max-width: 1250px) {
    #page-content #news .single-news article h3 {
        min-height: 60px;
    }
}

#page-content #news .single-news article p {
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
    margin-bottom: 9px;
    color: #6E6B66;
}

#page-content #news .single-news article a.link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#page-content #news .single-news:hover article {
    -webkit-transition: all .6s ease-in;
    -o-transition: all .6s ease-in;
    transition: all .6s ease-in;
}

#page-content #news .single-news:hover article .image:after {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

#page-content #news .single-news:hover article span.category, #page-content #news .single-news:hover article span.date {
    color: #6E6B66;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#page-content #news .single-news:hover article h3 {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#page-content #news .single-news:hover article a.btn-pro {
    opacity: .7;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #news .single-news:hover article p {
    color: #2F2911;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#page-content #news .single-news.horizontal-news article {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 222px;
}

@media screen and (max-width: 991px) {
    #page-content #news .single-news.horizontal-news article {
        display: block;
    }
}

#page-content #news .single-news.horizontal-news article .content {
    min-height: 222px;
}

#page-content #news .single-news.horizontal-news article span.read {
    top: inherit;
    bottom: -40px;
    left: -20px;
    -webkit-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease;
}

@media screen and (max-width: 991px) {
    #page-content #news .single-news.horizontal-news article span.read {
        bottom: inherit;
        left: inherit;
        top: -20px;
        right: -40px;
        -webkit-transition: right .3s ease;
        -o-transition: right .3s ease;
        transition: right .3s ease;
    }
}

#page-content #news .single-news.horizontal-news article .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 991px) {
    #page-content #news .single-news.horizontal-news article .image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    #page-content #news .single-news.horizontal-news article .image {
        padding: 35%;
        min-height: 200px;
    }
}

#page-content #news .single-news.horizontal-news:hover span.read {
    bottom: 50px;
    left: -20px;
    -webkit-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease;
}

@media screen and (max-width: 991px) {
    #page-content #news .single-news.horizontal-news:hover span.read {
        bottom: inherit;
        left: inherit;
        right: 36px;
        -webkit-transition: right .3s ease;
        -o-transition: right .3s ease;
        transition: right .3s ease;
    }
}

@media screen and (max-width: 991px) {
    #page-content #related-news,
    #page-content .related-projects {
        margin-right: -50px !important;
        margin-left: -50px !important;
    }
}

#page-content #showcase-projects.text,
#page-content #showcase-treks.text {
    padding: 50px 40px;
}

@media screen and (max-width: 767px) {
    #page-content #showcase-projects.text,
    #page-content #showcase-treks.text {
        padding: 50px;
    }
}

#page-content #showcase-projects.static,
#page-content #showcase-treks.static {
    padding: 50px 50px 0 50px;
}

#page-content #showcase-projects.center .owl-item:not(.active),
#page-content #showcase-treks.center .owl-item:not(.active) {
    opacity: .2;
}

@media screen and (max-width: 767px) {
    #page-content #showcase-projects .showcase-carousel.text,
    #page-content #showcase-treks .showcase-carousel.text {
        padding: 50px 0;
    }
}

#page-content #showcase-projects .showcase-carousel .owl-stage-outer,
#page-content #showcase-treks .showcase-carousel .owl-stage-outer {
    overflow: inherit;
}

#page-content #showcase-projects .showcase-carousel .owl-dots,
#page-content #showcase-treks .showcase-carousel .owl-dots {
    margin-top: 25px;
}

#page-content #showcase-projects .showcase,
#page-content #showcase-treks .showcase {
    margin-left: -25px;
    margin-right: -25px;
}

#page-content #showcase-projects .item,
#page-content #showcase-treks .item {
    background-color: white;
    border-radius: 2px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #showcase-projects .item .showcase-project,
#page-content #showcase-projects .item .showcase-trek,
#page-content #showcase-treks .item .showcase-project,
#page-content #showcase-treks .item .showcase-trek {
    overflow: hidden;
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

#page-content #showcase-projects .item .showcase-project img,
#page-content #showcase-projects .item .showcase-trek img,
#page-content #showcase-treks .item .showcase-project img,
#page-content #showcase-treks .item .showcase-trek img {
    max-width: 100%;
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
}

#page-content #showcase-projects .item .showcase-project img:before,
#page-content #showcase-projects .item .showcase-trek img:before,
#page-content #showcase-treks .item .showcase-project img:before,
#page-content #showcase-treks .item .showcase-trek img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
}

#page-content #showcase-projects .item .showcase-project .content,
#page-content #showcase-projects .item .showcase-trek .content,
#page-content #showcase-treks .item .showcase-project .content,
#page-content #showcase-treks .item .showcase-trek .content {
    padding: 36px;
    position: relative;
}

@media screen and (max-width: 480px) {
    #page-content #showcase-projects .item .showcase-project .content,
    #page-content #showcase-projects .item .showcase-trek .content,
    #page-content #showcase-treks .item .showcase-project .content,
    #page-content #showcase-treks .item .showcase-trek .content {
        padding: 18px;
    }
}

#page-content #showcase-projects .item .showcase-project .content .meta,
#page-content #showcase-projects .item .showcase-trek .content .meta,
#page-content #showcase-treks .item .showcase-project .content .meta,
#page-content #showcase-treks .item .showcase-trek .content .meta {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding-bottom: 18px;
}

@media screen and (max-width: 991px) {
    #page-content #showcase-projects .item .showcase-project .content .meta .col-md-6,
    #page-content #showcase-projects .item .showcase-project .content .meta .col-md-4,
    #page-content #showcase-projects .item .showcase-trek .content .meta .col-md-6,
    #page-content #showcase-projects .item .showcase-trek .content .meta .col-md-4,
    #page-content #showcase-treks .item .showcase-project .content .meta .col-md-6,
    #page-content #showcase-treks .item .showcase-project .content .meta .col-md-4,
    #page-content #showcase-treks .item .showcase-trek .content .meta .col-md-6,
    #page-content #showcase-treks .item .showcase-trek .content .meta .col-md-4 {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 991px) {
    #page-content #showcase-projects .item .showcase-project .content .meta .col-md-6:last-child,
    #page-content #showcase-projects .item .showcase-project .content .meta .col-md-4:last-child,
    #page-content #showcase-projects .item .showcase-trek .content .meta .col-md-6:last-child,
    #page-content #showcase-projects .item .showcase-trek .content .meta .col-md-4:last-child,
    #page-content #showcase-treks .item .showcase-project .content .meta .col-md-6:last-child,
    #page-content #showcase-treks .item .showcase-project .content .meta .col-md-4:last-child,
    #page-content #showcase-treks .item .showcase-trek .content .meta .col-md-6:last-child,
    #page-content #showcase-treks .item .showcase-trek .content .meta .col-md-4:last-child {
        margin-bottom: 0px;
    }
}

#page-content #showcase-projects .item .showcase-project .content .meta h3,
#page-content #showcase-projects .item .showcase-trek .content .meta h3,
#page-content #showcase-treks .item .showcase-project .content .meta h3,
#page-content #showcase-treks .item .showcase-trek .content .meta h3 {
    font-size: 20px;
    line-height: 24px;
    color: #CBBD9A;
}

#page-content #showcase-projects .item .showcase-project .content .meta h4,
#page-content #showcase-projects .item .showcase-trek .content .meta h4,
#page-content #showcase-treks .item .showcase-project .content .meta h4,
#page-content #showcase-treks .item .showcase-trek .content .meta h4 {
    font-size: 14px;
    line-height: 24px;
    font-family: "Trirong", serif;
    color: #6E6B66;
}

#page-content #showcase-projects .item .showcase-project .content .category,
#page-content #showcase-projects .item .showcase-trek .content .category,
#page-content #showcase-treks .item .showcase-project .content .category,
#page-content #showcase-treks .item .showcase-trek .content .category {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#page-content #showcase-projects .item .showcase-project .content .category h3,
#page-content #showcase-projects .item .showcase-trek .content .category h3,
#page-content #showcase-treks .item .showcase-project .content .category h3,
#page-content #showcase-treks .item .showcase-trek .content .category h3 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
}

#page-content #showcase-projects .item .showcase-project .content .info,
#page-content #showcase-projects .item .showcase-trek .content .info,
#page-content #showcase-treks .item .showcase-project .content .info,
#page-content #showcase-treks .item .showcase-trek .content .info {
    padding-top: 18px;
    overflow: hidden;
}

#page-content #showcase-projects .item .showcase-project .content .info h6,
#page-content #showcase-projects .item .showcase-trek .content .info h6,
#page-content #showcase-treks .item .showcase-project .content .info h6,
#page-content #showcase-treks .item .showcase-trek .content .info h6 {
    font-family: "Trirong", serif;
    color: #2F2911;
}

#page-content #showcase-projects .item .showcase-project span,
#page-content #showcase-projects .item .showcase-trek span,
#page-content #showcase-treks .item .showcase-project span,
#page-content #showcase-treks .item .showcase-trek span {
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

#page-content #showcase-projects .item .showcase-project span.read,
#page-content #showcase-projects .item .showcase-trek span.read,
#page-content #showcase-treks .item .showcase-project span.read,
#page-content #showcase-treks .item .showcase-trek span.read {
    position: absolute;
    top: 36px;
    left: 36px;
    background-color: #CBBD9A;
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding-right: 30px;
    padding-left: 30px;
    letter-spacing: 1px;
    color: white;
    text-align: center;
    -webkit-transition: left .3s ease;
    -o-transition: left .3s ease;
    transition: left .3s ease;
    z-index: 2;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

@media screen and (max-width: 480px) {
    #page-content #showcase-projects .item .showcase-project span.read,
    #page-content #showcase-projects .item .showcase-trek span.read,
    #page-content #showcase-treks .item .showcase-project span.read,
    #page-content #showcase-treks .item .showcase-trek span.read {
        top: 18px;
        left: 18px;
    }
}

#page-content #showcase-projects .item .showcase-project span.read i,
#page-content #showcase-projects .item .showcase-trek span.read i,
#page-content #showcase-treks .item .showcase-project span.read i,
#page-content #showcase-treks .item .showcase-trek span.read i {
    line-height: 40px;
    color: white;
}

#page-content #showcase-projects .item .showcase-project a.link,
#page-content #showcase-projects .item .showcase-trek a.link,
#page-content #showcase-treks .item .showcase-project a.link,
#page-content #showcase-treks .item .showcase-trek a.link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#page-content #showcase-projects .item:hover,
#page-content #showcase-treks .item:hover {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.21);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin-top: -10px;
}

#page-content #showcase-projects .item:hover .showcase-project,
#page-content #showcase-projects .item:hover .showcase-trek,
#page-content #showcase-treks .item:hover .showcase-project,
#page-content #showcase-treks .item:hover .showcase-trek {
    z-index: 4;
}

#page-content #showcase-projects .item:hover .showcase-project h6,
#page-content #showcase-projects .item:hover .showcase-trek h6,
#page-content #showcase-treks .item:hover .showcase-project h6,
#page-content #showcase-treks .item:hover .showcase-trek h6 {
    color: #CBBD9A !important;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#page-content #showcase-projects .item:hover .showcase-project a.btn-pro,
#page-content #showcase-projects .item:hover .showcase-trek a.btn-pro,
#page-content #showcase-treks .item:hover .showcase-project a.btn-pro,
#page-content #showcase-treks .item:hover .showcase-trek a.btn-pro {
    opacity: .7;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #showcase-projects .item.col-md-6, #page-content #showcase-projects .item.col-md-4,
#page-content #showcase-treks .item.col-md-6,
#page-content #showcase-treks .item.col-md-4 {
    background-color: transparent;
    border-radius: 0px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    padding: 0 25px;
}

#page-content #showcase-projects .item.col-md-6 .showcase-project,
#page-content #showcase-projects .item.col-md-6 .showcase-trek, #page-content #showcase-projects .item.col-md-4 .showcase-project,
#page-content #showcase-projects .item.col-md-4 .showcase-trek,
#page-content #showcase-treks .item.col-md-6 .showcase-project,
#page-content #showcase-treks .item.col-md-6 .showcase-trek,
#page-content #showcase-treks .item.col-md-4 .showcase-project,
#page-content #showcase-treks .item.col-md-4 .showcase-trek {
    background-color: white;
    border-radius: 2px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin-bottom: 50px;
}

#page-content #showcase-projects .item.col-md-6:hover, #page-content #showcase-projects .item.col-md-4:hover,
#page-content #showcase-treks .item.col-md-6:hover,
#page-content #showcase-treks .item.col-md-4:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin-top: 0px;
}

#page-content #showcase-projects .item.col-md-6:hover .showcase-project,
#page-content #showcase-projects .item.col-md-6:hover .showcase-trek, #page-content #showcase-projects .item.col-md-4:hover .showcase-project,
#page-content #showcase-projects .item.col-md-4:hover .showcase-trek,
#page-content #showcase-treks .item.col-md-6:hover .showcase-project,
#page-content #showcase-treks .item.col-md-6:hover .showcase-trek,
#page-content #showcase-treks .item.col-md-4:hover .showcase-project,
#page-content #showcase-treks .item.col-md-4:hover .showcase-trek {
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.21);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #team .row {
    margin-left: 25px;
    margin-right: 25px;
}

@media screen and (max-width: 991px) {
    #page-content #team .row {
        margin-left: -25px;
        margin-right: -25px;
    }
}

@media screen and (min-width: 991px) {
    #page-content #team .text {
        padding-left: 0;
        padding-right: 0;
    }
}

#page-content #team .single-person {
    border-radius: 2px;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
}

@media screen and (max-width: 991px) {
    #page-content #team .single-person {
        margin-bottom: 50px;
    }

    #page-content #team .single-person:last-of-type {
        margin-bottom: 0px;
    }
}

#page-content #team .single-person img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #team .single-person .content {
    position: relative;
    border-radius: 2px;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

#page-content #team .single-person .content ul.social {
    position: absolute;
    bottom: 36px;
    text-align: center;
    left: 0;
    right: 0;
}

#page-content #team .single-person .content ul.social li {
    display: inline-block;
}

@media screen and (max-width: 480px) {
    #page-content #team .single-person .content ul.social li {
        margin-bottom: 18px;
    }
}

#page-content #team .single-person .content ul.social li a {
    background-color: #CBBD9A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    display: block;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    margin: 0 9px;
    opacity: 0;
    -webkit-transform: translate(0px, 80px);
    -ms-transform: translate(0px, 80px);
    transform: translate(0px, 80px);
    -webkit-transition: opacity .2s ease, -webkit-transform .4s ease;
    transition: opacity .2s ease, -webkit-transform .4s ease;
    -o-transition: transform .4s ease, opacity .2s ease;
    transition: transform .4s ease, opacity .2s ease;
    transition: transform .4s ease, opacity .2s ease, -webkit-transform .4s ease;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
    #page-content #team .single-person .content ul.social li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

#page-content #team .single-person .content ul.social li:nth-child(1) a {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#page-content #team .single-person .content ul.social li:nth-child(2) a {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#page-content #team .single-person .content ul.social li:nth-child(3) a {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#page-content #team .single-person .content ul.social li:nth-child(4) a {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

#page-content #team .single-person .content ul.social li:hover a {
    background-color: #F6F6F6;
    color: #2F2911;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#page-content #team .single-person .description {
    padding-top: 18px;
}

#page-content #team .single-person .description h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #2F2911;
}

#page-content #team .single-person .description h6 {
    color: #6E6B66;
    position: relative;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 26px;
    font-family: "Trirong", serif;
    font-weight: 100;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#page-content #team .single-person:hover .content ul.social li a {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    -webkit-transition: opacity .2s ease-out, -webkit-transform .4s ease-out;
    transition: opacity .2s ease-out, -webkit-transform .4s ease-out;
    -o-transition: transform .4s ease-out, opacity .2s ease-out;
    transition: transform .4s ease-out, opacity .2s ease-out;
    transition: transform .4s ease-out, opacity .2s ease-out, -webkit-transform .4s ease-out;
}

#page-content #team .single-person:hover .content ul.social li:nth-child(1) a {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

#page-content #team .single-person:hover .content ul.social li:nth-child(2) a {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#page-content #team .single-person:hover .content ul.social li:nth-child(3) a {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#page-content #team .single-person:hover .content ul.social li:nth-child(4) a {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/*-------------------------------------------------*/
/* =  7.Blog Page
/*-------------------------------------------------*/
#news.text {
    padding: 50px 25px !important;
}

@media screen and (max-width: 991px) {
    #news.text {
        padding: 50px 25px 0px 25px !important;
    }
}

#news.text.related-news {
    padding: 50px 25px !important;
}

#news.page {
    padding: 25px;
}

#news .news-items .one-item {
    width: 50%;
    overflow: hidden;
    z-index: 1;
    padding: 0 !important;
}

@media screen and (max-width: 991px) {
    #news .news-items .one-item {
        margin-bottom: 0 !important;
    }
}

#news .news-items .one-item article {
    margin: 25px;
}

@media screen and (max-width: 767px) {
    #news .news-items .one-item {
        width: 100%;
    }
}

#news .news-items.one-columns .one-item {
    width: 100%;
}

#news .news-items.three-columns .one-item {
    width: 33.33333333%;
    width: calc(33.33333333%);
}

@media screen and (max-width: 991px) {
    #news .news-items.three-columns .one-item {
        width: 50%;
        width: calc(50%);
    }
}

@media screen and (max-width: 767px) {
    #news .news-items.three-columns .one-item {
        width: 100%;
    }
}

#news .news-items.four-columns .one-item {
    width: 25%;
}

@media screen and (max-width: 1199px) {
    #news .news-items.four-columns .one-item {
        width: 33.33333333%;
    }
}

@media screen and (max-width: 991px) {
    #news .news-items.four-columns .one-item {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    #news .news-items.four-columns .one-item {
        width: 100%;
    }
}

aside.sidebar .widget-wrapper {
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    aside.sidebar .widget-wrapper:last-child {
        margin-bottom: 0;
    }
}

aside.sidebar form {
    width: 100%;
}

aside.sidebar form .form-input {
    width: 100%;
    position: relative;
}

aside.sidebar form .form-input input {
    width: 100%;
    border: none;
    border-radius: 2px;
    outline: inherit;
    padding: 11px 50px 11px 9px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    aside.sidebar form .form-input input {
        width: 100%;
    }
}

aside.sidebar form .form-input input:focus {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

aside.sidebar form .form-input ::-webkit-input-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

aside.sidebar form .form-input :-moz-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

aside.sidebar form .form-input ::-moz-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

aside.sidebar form .form-input :-ms-input-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

aside.sidebar form .form-input span.form-button {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0px;
    font-size: 20px;
    line-height: 39px;
    color: white;
    border-radius: 0 2px 2px 0;
    background-color: #CBBD9A;
    text-align: center;
}

aside.sidebar ul.recent-posts li {
    margin-bottom: 36px;
    overflow: hidden;
}

aside.sidebar ul.recent-posts li:last-child {
    margin-bottom: 0;
}

aside.sidebar ul.recent-posts li img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    float: left;
}

aside.sidebar ul.recent-posts li .content {
    padding-left: 75px;
    padding-top: 9px;
}

aside.sidebar ul.recent-posts li a p {
    margin-bottom: 0 !important;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
    color: #2F2911;
    letter-spacing: 0.5px;
}

aside.sidebar ul.recent-posts li a:hover p {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

aside.sidebar ul.recent-posts li a:hover .meta,
aside.sidebar ul.recent-posts li a:hover .category {
    color: #6E6B66;
}

aside.sidebar ul.recent-posts li .meta,
aside.sidebar ul.recent-posts li .category {
    color: #6E6B66;
    font-family: "Trirong", serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 300;
    margin-right: 9px;
}

aside.sidebar ul.recent-posts li .category {
    color: #CBBD9A;
    font-weight: 400;
}

aside.sidebar ul.widget-categories li a {
    color: #6E6B66;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 34px;
    letter-spacing: 0;
    margin-bottom: 9px;
    font-weight: 300;
}

aside.sidebar ul.widget-categories li a:hover {
    color: #CBBD9A;
}

aside.sidebar ul.tagCloud li {
    display: inline-block;
    margin: 9px 9px 9px 0;
}

aside.sidebar ul.tagCloud li a {
    color: #6E6B66;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    margin: 9px 0;
    padding: 6px;
    border-radius: 2px;
    font-weight: 300;
}

aside.sidebar ul.tagCloud li a.popular {
    color: #CBBD9A;
    letter-spacing: 0.5px;
}

aside.sidebar ul.tagCloud li a:hover {
    color: #CBBD9A;
}

aside.sidebar h5 {
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 100;
    color: #2F2911;
    margin-bottom: 18px;
}

aside.left {
    text-align: right;
    padding: 0;
}

@media screen and (max-width: 991px) {
    aside.left {
        text-align: left;
    }
}

aside.left ul.tagCloud li a {
    margin-left: 26px;
    margin-right: 0;
}

@media screen and (max-width: 991px) {
    aside.left ul.tagCloud li a {
        margin-left: 0;
        margin-right: 26px;
    }
}

aside.left .widget-wrapper {
    margin-bottom: 50px;
}

aside.left form {
    width: 100%;
}

aside.left form .form-input {
    width: 100%;
    position: relative;
}

aside.left form .form-input input {
    width: 80%;
}

@media screen and (max-width: 991px) {
    aside.left form .form-input input {
        width: 100%;
    }
}

aside.left form .form-input span.form-button {
    width: auto;
}

/*-------------------------------------------------*/
/* =  8.Navigation
/*-------------------------------------------------*/
#nav {
    padding: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#nav span {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-rendering: geometricPrecision;
}

@media screen and (max-width: 480px) {
    #nav span {
        display: none;
    }
}

#nav .nav-right {
    text-align: right;
}

#nav .nav-right i {
    margin-left: 10px;
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    #nav .nav-right i {
        margin-left: 0;
    }
}

#nav .nav-left i {
    margin-right: 10px;
}

@media screen and (max-width: 480px) {
    #nav .nav-left i {
        margin-right: 0;
    }
}

#nav .nav-left a.btn-alt,
#nav .nav-right a.btn-alt {
    line-height: 40px;
}

/*-------------------------------------------------*/
/* =  9.Page
/*-------------------------------------------------*/
.content-section .text {
    padding: 50px;
}

@media screen and (max-width: 991px) {
    .content-section .text.service-responsive-bottom {
        padding: 50px 50px 0 50px;
    }
}

@media screen and (max-width: 991px) {
    .content-section .text.service-responsive-top {
        padding: 26px 50px 14px 50px;
    }
}

@media screen and (max-width: 480px) {
    .content-section .text.responsive-padding-sm {
        padding: 25px;
    }
}

.content-section .text p:last-of-type {
    margin-bottom: 36px;
}

.content-section .bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: height .4s ease;
    -o-transition: height .4s ease;
    transition: height .4s ease;
}

@media screen and (max-width: 767px) {
    .content-section .bg-img {
        max-height: 375px;
    }
}

.content-section .bg-img.fullpage-wrap {
    padding: 0 50px;
}

@media screen and (max-width: 767px) {
    .content-section .bg-img.responsive {
        max-height: none;
    }
}

.content-section .bg-img.overlay {
    position: relative;
    overflow: hidden;
}

.content-section .bg-img.overlay .text {
    z-index: 3;
    position: relative;
}

.content-section .bg-img.overlay:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #2f2911;
}

.content-section .bg-img.overlay.transparent:after {
    background: rgba(34, 34, 34, 0);
}

@media screen and (max-width: 1199px) {
    .content-section .bg-img.overlay.transparent:after {
        background: rgba(255, 255, 255, 0.85);
    }
}

.content-section .bg-img.static-height {
    height: 600px;
}

@media screen and (max-width: 767px) {
    .content-section .bg-img.responsive {
        max-height: none;
    }
}

@media screen and (max-width: 991px) {
    .content-section .bg-img.responsive .col-md-4:first-child .text {
        padding: 60px 15px 30px 15px;
    }
}

@media screen and (max-width: 991px) {
    .content-section .bg-img.responsive .col-md-4:last-child .text {
        padding: 30px 15px 60px 15px;
    }
}

.content-section ul.services li {
    display: table;
    margin-bottom: 54px;
    width: 100%;
}

.content-section ul.services li.fixed-height {
    min-height: 106px;
}

@media screen and (max-width: 1500px) {
    .content-section ul.services li.fixed-height {
        min-height: 130px;
    }
}

@media screen and (max-width: 1199px) {
    .content-section ul.services li.fixed-height {
        min-height: 154px;
    }
}

@media screen and (max-width: 991px) {
    .content-section ul.services li.fixed-height {
        min-height: inherit;
    }
}

.content-section ul.services li:last-child {
    margin-bottom: 0;
}

.content-section ul.services li em {
    font-size: 36px;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;
}

.content-section ul.services li .icon {
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    float: left;
    color: white;
    background-color: #CBBD9A;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.content-section ul.services li .icon i {
    font-size: 22px;
    line-height: 50px;
}

.content-section ul.services li .icon i[class|="pd"] {
    line-height: 60px;
}

.content-section ul.services li .icon-text {
    display: inline-block;
    line-height: 50px;
    float: left;
}

@media screen and (min-width: 991px) and (max-width: 1250px) {
    .content-section ul.services li .icon-text {
        padding-left: 15px;
    }
}

@media screen and (max-width: 650px) {
    .content-section ul.services li .icon-text {
        padding-left: 15px;
    }
}

.content-section ul.services li .icon-text p {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.content-section ul.services li .icon-text p:last-of-type {
    margin-bottom: 0;
}

.content-section ul.services li:hover {
    cursor: help;
}

.content-section ul.services li:hover .icon {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.content-section ul.services li:hover .icon-text p {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

@media screen and (max-width: 600px) {
    .content-section ul.services li .col-xs-2 {
        width: 20%;
    }
}

@media screen and (max-width: 480px) {
    .content-section ul.services li .col-xs-2 {
        width: 25%;
    }
}

@media screen and (max-width: 410px) {
    .content-section ul.services li .col-xs-2 {
        width: 30%;
    }
}

@media screen and (max-width: 360px) {
    .content-section ul.services li .col-xs-2 {
        width: 35%;
    }
}

@media screen and (max-width: 600px) {
    .content-section ul.services li .col-xs-10 {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .content-section ul.services li .col-xs-10 {
        width: 75%;
    }
}

@media screen and (max-width: 410px) {
    .content-section ul.services li .col-xs-10 {
        width: 70%;
    }
}

@media screen and (max-width: 360px) {
    .content-section ul.services li .col-xs-10 {
        width: 65%;
    }
}

.content-section .partners .partner {
    position: relative;
}

.content-section .partners .partner:before {
    opacity: 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.content-section .partners .partner:hover:before {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.content-section .circle-counters {
    padding: 60px;
    text-align: center;
}

.content-section .circle-counters .counter {
    height: 260px;
    width: 260px;
    display: block;
    margin: 0 auto;
    color: white;
    position: relative;
    border: 1px solid white;
    border-radius: 50%;
}

.content-section .circle-counters .counter:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-radius: 50%;
    background-color: white;
}

.content-section .circle-counters .counter span {
    font-size: 80px;
}

.content-post ul {
    list-style: disc;
    padding-left: 28px;
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 100;
    margin: 25px 0 25px 15px;
}

/*-------------------------------------------------*/
/* =  10.Post
/*-------------------------------------------------*/
#post-wrap h2:not(.title) {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    margin: 0px 0 9px 0;
    color: #2F2911;
}

#post-wrap span.category {
    color: #CBBD9A;
    font-family: "Trirong", serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 100;
    letter-spacing: 0;
    margin-bottom: 9px;
    display: inline-block;
    margin-right: 9px;
    position: relative;
    font-style: italic;
}

#post-wrap span.category:after {
    content: ",";
    position: absolute;
    bottom: 0px;
    font-family: "Trirong", serif;
    color: #CBBD9A;
    margin: 0 9px 0 2px;
}

#post-wrap span.category.last:after {
    display: none;
}

#post-wrap span.date {
    color: #6E6B66;
    font-family: "Trirong", serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 9px;
    font-weight: 300;
}

#post-wrap ul.post {
    list-style: none;
}

#post-wrap ul.post li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    line-height: 24px;
    margin: 9px 0;
    color: #6E6B66;
    font-family: "Trirong", serif;
}

#post-wrap ul.post li:before {
    position: absolute;
    content: "\f383";
    font-family: "Ionicons";
    color: #CBBD9A;
    left: 0;
    top: 0;
}

#post-wrap #post-meta,
#post-wrap #project-meta {
    border-top: 1px solid #d1d2d3;
    border-bottom: 1px solid #d1d2d3;
    padding: 36px 0;
    margin: 50px 0;
    overflow: hidden;
}

#post-wrap #post-meta.project,
#post-wrap #project-meta.project {
    border: none;
    padding: 0;
    margin: 0;
}

#post-wrap #post-meta.project ul.tagCloud li a,
#post-wrap #project-meta.project ul.tagCloud li a {
    color: white;
    background-color: #CBBD9A;
}

#post-wrap #post-meta img,
#post-wrap #project-meta img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    float: left;
}

#post-wrap #post-meta .author,
#post-wrap #project-meta .author {
    padding-left: 136px;
}

#post-wrap #post-meta .author h3,
#post-wrap #project-meta .author h3 {
    font-size: 16px;
    margin-bottom: 9px;
    text-transform: uppercase;
}

#post-wrap #post-meta .author p,
#post-wrap #project-meta .author p {
    margin-bottom: 0;
}

#post-wrap #post-meta span,
#post-wrap #project-meta span {
    margin-right: 18px;
}

#post-wrap #post-meta span em,
#post-wrap #project-meta span em {
    color: #6E6B66;
    font-weight: 300;
}

#post-wrap #post-meta ul.tagCloud,
#post-wrap #project-meta ul.tagCloud {
    margin: 0 0 9px 0;
    padding-left: 0;
}

#post-wrap #post-meta ul.tagCloud li,
#post-wrap #project-meta ul.tagCloud li {
    display: inline-block;
    margin: 9px 9px 9px 0;
}

#post-wrap #post-meta ul.tagCloud li a,
#post-wrap #project-meta ul.tagCloud li a {
    color: #CBBD9A;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    margin: 9px 0;
    border: 1px solid #CBBD9A;
    padding: 6px;
    border-radius: 2px;
    font-weight: 300;
    -webkit-transition: -webkit-box-shadow .4s ease;
    transition: -webkit-box-shadow .4s ease;
    -o-transition: box-shadow .4s ease;
    transition: box-shadow .4s ease;
    transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
}

#post-wrap #post-meta ul.tagCloud li a:hover,
#post-wrap #project-meta ul.tagCloud li a:hover {
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-box-shadow .4s ease;
    transition: -webkit-box-shadow .4s ease;
    -o-transition: box-shadow .4s ease;
    transition: box-shadow .4s ease;
    transition: box-shadow .4s ease, -webkit-box-shadow .4s ease;
}

#post-wrap #share {
    position: fixed;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: fixed;
    left: 50%;
    margin-left: 650px;
    right: 50px;
    bottom: 250px;
    z-index: 5;
    width: 60px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (max-width: 1500px) {
    #post-wrap #share {
        max-width: 100%;
        margin: 0;
        left: inherit;
        right: 30px;
        margin-left: 0;
        width: 60px;
        bottom: 30px;
    }
}

#post-wrap #share .share-btn {
    display: block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 30px;
    background-color: white;
    text-align: center;
    -webkit-box-shadow: 0 0.0625em 0.1875em rgba(0, 0, 0, 0.12), 0 0.0625em 0.125em rgba(0, 0, 0, 0.24);
    box-shadow: 0 0.0625em 0.1875em rgba(0, 0, 0, 0.12), 0 0.0625em 0.125em rgba(0, 0, 0, 0.24);
    z-index: 1;
    position: relative;
}

#post-wrap #share .share-btn i {
    font-size: 24px;
    line-height: 60px;
    color: #2F2911;
}

#post-wrap #share .share-icons {
    top: 60px;
    width: 100%;
    z-index: 4;
    max-width: 100%;
    position: absolute;
    top: 60px;
    margin: 0 auto;
    z-index: 0;
}

#post-wrap #share .share-icons.open a.share-google {
    bottom: auto;
    top: 10px;
    background-color: #df4d34;
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
}

@media screen and (max-width: 1500px) {
    #post-wrap #share .share-icons.open a.share-google {
        top: -110px;
    }
}

#post-wrap #share .share-icons.open a.share-twitter {
    bottom: auto;
    top: 60px;
    background-color: #46a6f2;
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
}

@media screen and (max-width: 1500px) {
    #post-wrap #share .share-icons.open a.share-twitter {
        top: -160px;
    }
}

#post-wrap #share .share-icons.open a.share-linkedin {
    bottom: auto;
    top: 110px;
    background-color: #0080c1;
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
}

@media screen and (max-width: 1500px) {
    #post-wrap #share .share-icons.open a.share-linkedin {
        top: -210px;
    }
}

#post-wrap #share .share-icons.open a.share-mail {
    bottom: auto;
    top: 160px;
    background-color: #2F2911;
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
}

@media screen and (max-width: 1500px) {
    #post-wrap #share .share-icons.open a.share-mail {
        top: -260px;
    }
}

#post-wrap #share .share-icons a {
    color: #fff;
    font-size: 16px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: auto;
    width: 40px;
    border-radius: 20px;
    text-align: center;
}

#post-wrap #share .share-icons a i {
    font-size: 16px;
    line-height: 40px;
}

#post-wrap #share .share-icons a.share-google {
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
    top: -55px;
    background-color: #df4d34;
}

#post-wrap #share .share-icons a.share-twitter {
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
    top: -55px;
    background-color: #46a6f2;
}

#post-wrap #share .share-icons a.share-linkedin {
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
    top: -55px;
    background-color: #0080c1;
}

#post-wrap #share .share-icons a.share-mail {
    -webkit-transition: top .25s ease-in-out;
    -o-transition: top .25s ease-in-out;
    transition: top .25s ease-in-out;
    top: -55px;
    background-color: #2F2911;
}

#post-wrap .post-gallery .owl-item {
    -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease;
}

#post-wrap .post-gallery .owl-item:not(.center) {
    opacity: .6;
    -webkit-transition: opacity .8s ease;
    -o-transition: opacity .8s ease;
    transition: opacity .8s ease;
}

#post-wrap .post-gallery .owl-controls {
    top: 18px;
}

@media screen and (max-width: 480px) {
    #comments .nav-tabs > li > a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 380px) {
    #comments .nav-tabs > li > a {
        padding: 0 4px;
        letter-spacing: 0;
    }
}

#comments .comment {
    margin-bottom: 50px;
}

#comments .comment:last-child {
    margin-bottom: 0;
}

#comments .comment img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
}

#comments .comment .content {
    padding-left: 136px;
}

#comments .comment span {
    display: block;
}

#comments .comment span.comment-date {
    color: #6E6B66;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 9px;
}

#comments .comment span.comment-author {
    font-family: "Trirong", serif;
    font-weight: 400;
    color: #2F2911;
    font-size: 16px;
    line-height: 26px;
}

#comments .comment span.comment-btn {
    margin-top: 9px;
}

#comments .comment span.comment-btn a {
    font-size: 16px;
    font-family: "Trirong", serif;
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#comments .comment span.comment-btn a:hover {
    color: #2F2911;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

#comments .comment p:last-of-type {
    margin-bottom: 0;
}

#comments .comment a {
    font-size: 14px;
    line-height: 22px;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 1px;
    font-style: italic;
    color: #CBBD9A;
}

/*-------------------------------------------------*/
/* =  11.Project
/*-------------------------------------------------*/
.project-images img,
.team-profiles img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 50px;
    opacity: 1;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

.project-images img:hover,
.team-profiles img:hover {
    opacity: .8;
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
}

.project-images a:last-child img,
.team-profiles a:last-child img {
    margin-bottom: 0;
}

.project-images.grid,
.team-profiles.grid {
    position: relative;
    overflow: hidden;
}

.project-images.grid .image,
.team-profiles.grid .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50%;
    position: relative;
}

.project-images.grid .image span.content,
.team-profiles.grid .image span.content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .project-images.grid .image span.content,
    .team-profiles.grid .image span.content {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .project-images.grid .image span.content,
    .team-profiles.grid .image span.content {
        padding: 30px;
    }
}

@media screen and (max-width: 360px) {
    .project-images.grid .image span.content,
    .team-profiles.grid .image span.content {
        padding: 25px;
    }
}

.project-images.grid .image span.content span.title,
.team-profiles.grid .image span.content span.title {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 22px;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media screen and (max-width: 360px) {
    .project-images.grid .image span.content span.title,
    .team-profiles.grid .image span.content span.title {
        line-height: 18px;
    }
}

.project-images.grid .image span.content em,
.team-profiles.grid .image span.content em {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: white;
    font-size: 35px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
    .project-images.grid .image span.content em,
    .team-profiles.grid .image span.content em {
        font-size: 25px;
    }
}

@media screen and (max-width: 480px) {
    .project-images.grid .image span.content em,
    .team-profiles.grid .image span.content em {
        font-size: 25px;
    }
}

.project-images .item,
.team-profiles .item {
    position: relative;
    height: 500px;
}

.project-images .item .image,
.team-profiles .item .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}

.project-images .item .content,
.team-profiles .item .content {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    background: rgba(34, 34, 34, 0.85);
}

.project-images .item .content .text,
.team-profiles .item .content .text {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    padding: 50px;
    opacity: 0;
}

@media screen and (max-width: 480px) {
    .project-images .item .content .text,
    .team-profiles .item .content .text {
        padding: 25px;
    }
}

.project-images .item .content .text h5,
.team-profiles .item .content .text h5 {
    font-size: 38px;
    line-height: 48px;
    color: #d1d2d3;
    -webkit-transform: translate(0px, -25px);
    -ms-transform: translate(0px, -25px);
    transform: translate(0px, -25px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.project-images .item .content .text h6,
.team-profiles .item .content .text h6 {
    color: white;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 100;
    -webkit-transform: translate(0px, 25px);
    -ms-transform: translate(0px, 25px);
    transform: translate(0px, 25px);
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.project-images .item .content .social,
.team-profiles .item .content .social {
    position: absolute;
    bottom: 36px;
    text-align: center;
    left: 0;
    right: 0;
}

.project-images .item .content .social ul,
.team-profiles .item .content .social ul {
    -webkit-transform: translate(0px, 10px);
    -ms-transform: translate(0px, 10px);
    transform: translate(0px, 10px);
}

.project-images .item .content .social ul li,
.team-profiles .item .content .social ul li {
    display: inline-block;
}

.project-images .item .content .social ul li a,
.team-profiles .item .content .social ul li a {
    background-color: #CBBD9A;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    display: block;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    margin: 0 9px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.project-images .item .content .social ul li:hover a,
.team-profiles .item .content .social ul li:hover a {
    background-color: #F6F6F6;
    color: #2F2911;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.project-images .item:hover .content,
.team-profiles .item:hover .content {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.project-images .item:hover .content .text,
.team-profiles .item:hover .content .text {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.project-images .item:hover .content h5,
.project-images .item:hover .content h6,
.team-profiles .item:hover .content h5,
.team-profiles .item:hover .content h6 {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.project-images .col-lg-1,
.project-images .col-lg-10,
.project-images .col-lg-11,
.project-images .col-lg-12,
.project-images .col-lg-2,
.project-images .col-lg-3,
.project-images .col-lg-4,
.project-images .col-lg-5,
.project-images .col-lg-6,
.project-images .col-lg-7,
.project-images .col-lg-8,
.project-images .col-lg-9,
.project-images .col-md-1,
.project-images .col-md-10,
.project-images .col-md-11,
.project-images .col-md-12,
.project-images .col-md-2,
.project-images .col-md-3,
.project-images .col-md-4,
.project-images .col-md-5,
.project-images .col-md-6,
.project-images .col-md-7,
.project-images .col-md-8,
.project-images .col-md-9,
.project-images .col-sm-1,
.project-images .col-sm-10,
.project-images .col-sm-11,
.project-images .col-sm-12,
.project-images .col-sm-2,
.project-images .col-sm-3,
.project-images .col-sm-4,
.project-images .col-sm-5,
.project-images .col-sm-6,
.project-images .col-sm-7,
.project-images .col-sm-8,
.project-images .col-sm-9,
.project-images .col-xs-1,
.project-images .col-xs-10,
.project-images .col-xs-11,
.project-images .col-xs-12,
.project-images .col-xs-2,
.project-images .col-xs-3,
.project-images .col-xs-4,
.project-images .col-xs-5,
.project-images .col-xs-6,
.project-images .col-xs-7,
.project-images .col-xs-8,
.project-images .col-xs-9 {
    overflow: hidden;
}

.project-images .image {
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
    position: relative;
}

.project-images .image:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background: rgba(34, 34, 34, 0.6);
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.project-images .image:hover {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
}

.project-images .image:hover:before {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.project-images .image:hover span.content {
    -webkit-transform: scale3d(0.88, 0.88, 0.88);
    transform: scale3d(0.88, 0.88, 0.88);
    -webkit-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
}

.project-alt {
    padding: 50px 50px 50px 30px;
}

@media screen and (max-width: 991px) {
    .project-alt {
        padding: 50px;
    }
}

.project-alt ul li {
    display: inline-block;
    margin-right: 16px;
}

.project-alt ul li a {
    font-family: "Trirong", serif;
    color: #d1d2d3;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 300;
}

.project-alt ul li a:hover {
    color: #CBBD9A;
}

/*-------------------------------------------------*/
/* =  12.Contact Form
/*-------------------------------------------------*/
#contact-form .form-field,
#search-form .form-field {
    outline: inherit;
    border: none;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 25px;
    padding: 9px;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 14px;
    background-color: #F6F6F6;
    color: #2F2911;
    font-weight: 400;
}

#contact-form .form-field:focus,
#search-form .form-field:focus {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

#contact-form .form-field.big,
#search-form .form-field.big {
    font-size: 40px;
    font-family: "Trirong", serif;
    letter-spacing: 1px;
    padding-right: 70px;
    line-height: 40px;
}

@media screen and (max-width: 767px) {
    #contact-form .form-field.big,
    #search-form .form-field.big {
        font-size: 35px;
        padding-right: 35px;
    }
}

#contact-form textarea.form-field,
#search-form textarea.form-field {
    padding: 12px 9px;
}

#contact-form ::-webkit-input-placeholder,
#search-form ::-webkit-input-placeholder {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
}

#contact-form :-moz-placeholder,
#search-form :-moz-placeholder {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
}

#contact-form ::-moz-placeholder,
#search-form ::-moz-placeholder {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
}

#contact-form :-ms-input-placeholder,
#search-form :-ms-input-placeholder {
    font-family: "Trirong", serif;
    color: #6E6B66;
    font-size: 14px;
}

#contact-form #submit-contact,
#search-form #submit-contact {
    padding: 0;
    text-align: left;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 0;
    font-weight: bold;
    color: white;
    position: relative;
    margin: 0;
    background-color: transparent;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form #submit-contact:hover,
#search-form #submit-contact:hover {
    color: #2F2911;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form #submit-contact.btn-alt,
#search-form #submit-contact.btn-alt {
    height: 40px;
    line-height: 40px;
    text-transform: none;
    font-weight: 400;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-transform: uppercase;
    border-radius: 2px;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    display: inline-block;
    overflow: hidden;
    outline: none;
}

#contact-form #submit-contact.btn-alt:hover,
#search-form #submit-contact.btn-alt:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form #submit-contact.btn-alt.shadow,
#search-form #submit-contact.btn-alt.shadow {
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
}

#contact-form #submit-contact.btn-alt.white,
#search-form #submit-contact.btn-alt.white {
    border: 1px solid white;
}

#contact-form #submit-contact.btn-alt.white:hover,
#search-form #submit-contact.btn-alt.white:hover {
    background-color: white;
    color: #CBBD9A !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form #submit-contact.btn-alt.active,
#search-form #submit-contact.btn-alt.active {
    background-color: #CBBD9A;
    color: white;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form #submit-contact.btn-alt.active:hover,
#search-form #submit-contact.btn-alt.active:hover {
    background-color: transparent;
    color: #CBBD9A !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-form .form-button,
#search-form .form-button {
    position: absolute;
    width: auto;
    right: 0;
    top: -2px;
}

#contact-form .form-button.big,
#search-form .form-button.big {
    top: -7px;
    right: 10px;
}

#contact-form .form-button.big i,
#search-form .form-button.big i {
    font-size: 60px;
}

@media screen and (max-width: 767px) {
    #contact-form .form-button.big i,
    #search-form .form-button.big i {
        font-size: 35px;
    }
}

#contact-form #msg,
#search-form #msg {
    margin-top: 36px;
    color: #f54337;
}

#contact-form.color ::-webkit-input-placeholder,
#search-form.color ::-webkit-input-placeholder {
    color: #CBBD9A;
}

#contact-form.color :-moz-placeholder,
#search-form.color :-moz-placeholder {
    color: #CBBD9A;
}

#contact-form.color ::-moz-placeholder,
#search-form.color ::-moz-placeholder {
    color: #CBBD9A;
}

#contact-form.color :-ms-input-placeholder,
#search-form.color :-ms-input-placeholder {
    color: #CBBD9A;
}

#contact-form.black ::-webkit-input-placeholder,
#search-form.black ::-webkit-input-placeholder {
    color: #2F2911;
    font-weight: 400;
}

#contact-form.black :-moz-placeholder,
#search-form.black :-moz-placeholder {
    color: #2F2911;
    font-weight: 400;
}

#contact-form.black ::-moz-placeholder,
#search-form.black ::-moz-placeholder {
    color: #2F2911;
    font-weight: 400;
}

#contact-form.black :-ms-input-placeholder,
#search-form.black :-ms-input-placeholder {
    color: #2F2911;
    font-weight: 400;
}

#contact-form.big ::-webkit-input-placeholder,
#search-form.big ::-webkit-input-placeholder {
    font-size: 40px;
    font-family: "Trirong", serif;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    #contact-form.big ::-webkit-input-placeholder,
    #search-form.big ::-webkit-input-placeholder {
        font-size: 35px;
    }
}

#contact-form.big :-moz-placeholder,
#search-form.big :-moz-placeholder {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    #contact-form.big :-moz-placeholder,
    #search-form.big :-moz-placeholder {
        font-size: 35px;
    }
}

#contact-form.big ::-moz-placeholder,
#search-form.big ::-moz-placeholder {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    #contact-form.big ::-moz-placeholder,
    #search-form.big ::-moz-placeholder {
        font-size: 35px;
    }
}

#contact-form.big :-ms-input-placeholder,
#search-form.big :-ms-input-placeholder {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    #contact-form.big :-ms-input-placeholder,
    #search-form.big :-ms-input-placeholder {
        font-size: 35px;
    }
}

span.contact-info {
    font-family: "Trirong", serif;
    color: #2F2911;
    font-size: 16px;
    line-height: 26px;
    margin-right: 36px;
    font-weight: 400;
}

span.contact-info a em {
    color: #CBBD9A;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

span.contact-info a:hover em {
    color: #2F2911;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

span.contact-info em {
    color: #6E6B66;
    font-weight: 300;
}

#search-form {
    position: relative;
}

#search-form.big {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    width: calc(100% - 100px);
    height: 125px;
    margin: auto;
}

@media screen and (max-width: 991px) {
    .contact {
        padding: 0 45px;
    }
}

#contact-newsletter .text {
    width: 50%;
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    #contact-newsletter .text {
        width: auto;
        max-width: 550px;
    }
}

@media screen and (max-width: 480px) {
    #contact-newsletter .text {
        width: 100%;
    }
}

#contact-newsletter .text p {
    margin-top: 18px;
}

#contact-newsletter .form-field {
    outline: inherit;
    border: none;
    border-bottom: 1px solid white;
    width: 80%;
    padding: 18px 50px 18px 30px;
    font-family: "Trirong", serif;
    font-size: 14px;
    font-weight: 300;
    height: 40px;
    border-radius: 40px;
}

@media screen and (max-width: 991px) {
    #contact-newsletter .form-field {
        padding-right: 20%;
    }
}

@media screen and (max-width: 480px) {
    #contact-newsletter .form-field {
        padding-right: 33%;
    }
}

@media screen and (max-width: 410px) {
    #contact-newsletter .form-field {
        padding: 18px 30px;
        width: 100%;
    }
}

#contact-newsletter .form-field:focus {
    border-bottom: 1px solid white;
}

#contact-newsletter #submit-newsletter {
    padding: 0;
    text-align: left;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 2px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 0;
    font-weight: bold;
    color: white;
    position: relative;
    margin: 0;
    background-color: transparent;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    right: 50px;
    top: 0;
}

@media screen and (max-width: 410px) {
    #contact-newsletter #submit-newsletter {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 18px;
    }
}

#contact-newsletter #submit-newsletter:hover {
    color: #2F2911;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-newsletter #submit-newsletter.btn-alt {
    height: 40px;
    line-height: 40px;
    text-transform: none;
    font-weight: 600;
    text-rendering: geometricPrecision;
    background-color: transparent;
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0px 40px 40px 0px;
    padding-right: 30px;
    padding-left: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    display: inline-block;
    overflow: hidden;
    outline: none;
}

@media screen and (max-width: 480px) {
    #contact-newsletter #submit-newsletter.btn-alt {
        border-radius: 40px;
    }
}

#contact-newsletter #submit-newsletter.btn-alt:hover {
    background-color: #CBBD9A;
    color: white;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-newsletter #submit-newsletter.btn-alt.white {
    border: 1px solid white;
}

#contact-newsletter #submit-newsletter.btn-alt.white:hover {
    background-color: white;
    color: #CBBD9A !important;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#contact-newsletter #submit-newsletter.btn-alt.color {
    border: 1px solid #CBBD9A;
    color: #CBBD9A;
}

#contact-newsletter #submit-newsletter.btn-alt.color.active {
    background-color: #CBBD9A;
    color: white !important;
}

#contact-newsletter #submit-newsletter.btn-alt.color.active:hover {
    background-color: white;
    color: #CBBD9A !important;
    border: 1px solid transparent;
    border-left: 1px solid #CBBD9A;
}

@media screen and (max-width: 410px) {
    #contact-newsletter #submit-newsletter.btn-alt.color.active:hover {
        background-color: transparent;
        border: 1px solid #CBBD9A;
    }
}

/*-------------------------------------------------*/
/* =  13.Footer
/*-------------------------------------------------*/
footer,
.footer {
    padding: 50px 0;
    background-color: #2f2911;
}

@media screen and (max-width: 991px) {
    footer,
    .footer {
        margin-left: -50px !important;
        margin-right: -50px !important;
        max-width: none !important;
        width: auto !important;
        padding: 50px !important;
    }
}

@media screen and (max-width: 991px) {
    footer .col-sm-12,
    .footer .col-sm-12 {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    footer .col-sm-3,
    .footer .col-sm-3 {
        margin-bottom: 30px;
    }
}

footer:not(.fixed),
.footer:not(.fixed) {
    margin-left: -50px !important;
    margin-right: -50px !important;
    max-width: none !important;
    width: auto !important;
    padding: 50px !important;
    overflow: hidden;
}

footer.fixed,
.footer.fixed {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -750px;
    z-index: 100;
    padding-left: 50px;
    padding-right: 50px;
    z-index: 1;
    height: 390px;
}

footer.fixed.fullpage,
.footer.fixed.fullpage {
    display: none;
}

footer.fixed.full-width,
.footer.fixed.full-width {
    /*max-width: 1920px;*/
    max-width: 2000px;
    margin-left: 0px;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
}

@media screen and (min-width: 1920px) {
    footer.fixed.full-width,
    .footer.fixed.full-width {
        /*margin-left: -960px;*/
        margin-left: -953px;
        left: 50%;
        right: inherit;
    }
}

@media screen and (max-width: 991px) {
    footer.fixed.full-width,
    .footer.fixed.full-width {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

footer.fixed.full-width .container,
.footer.fixed.full-width .container {
    padding: 0 50px;
}

@media screen and (max-width: 1500px) {
    footer.fixed,
    .footer.fixed {
        max-width: 100%;
        margin: 0;
        left: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 991px) {
    footer.fixed,
    .footer.fixed {
        height: auto;
        position: relative;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 991px) {
    footer .logo,
    .footer .logo {
        margin-bottom: 18px;
    }
}

footer .copy,
.footer .copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 18px;
    margin-top: 18px;
    color: #d1d2d3;
    font-family: "Trirong", serif;
    font-size: 12px;
    line-height: 20px;
    font-weight: 300;
    position: relative;
}

footer .copy .col-md-8,
.footer .copy .col-md-8 {
    padding-top: 6px;
}

@media screen and (max-width: 991px) {
    footer .copy .col-md-8,
    .footer .copy .col-md-8 {
        padding-top: 0;
        padding-bottom: 18px;
    }
}

footer .copy img,
.footer .copy img {
    max-height: 85px;
    width: auto;
    margin-right: 50px;
}

footer .copy a,
.footer .copy a {
    color: white;
}

footer .copy a:hover,
.footer .copy a:hover {
    color: #CBBD9A;
}

footer .copy a#backtotop,
.footer .copy a#backtotop {
    position: absolute;
    right: 0;
    top: 36px;
    padding-right: 15px;
}

footer .copy a#backtotop:before,
.footer .copy a#backtotop:before {
    content: "\f366";
    display: inline-block;
    font-family: "Ionicons";
    position: absolute;
    right: 0;
}

footer p,
.footer p {
    max-width: 350px;
}

@media screen and (max-width: 991px) {
    footer p,
    .footer p {
        max-width: none;
    }
}

@media screen and (max-width: 991px) {
    footer ul.sitemap, footer ul.info, footer ul.useful-links,
    .footer ul.sitemap,
    .footer ul.info,
    .footer ul.useful-links {
        margin-bottom: 18px;
    }
}

footer ul.sitemap li, footer ul.info li, footer ul.useful-links li,
.footer ul.sitemap li,
.footer ul.info li,
.footer ul.useful-links li {
    color: #d1d2d3;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}

footer ul.sitemap li a, footer ul.info li a, footer ul.useful-links li a,
.footer ul.sitemap li a,
.footer ul.info li a,
.footer ul.useful-links li a {
    color: #d1d2d3;
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    font-weight: 300;
}

footer ul.sitemap li a:hover, footer ul.info li a:hover, footer ul.useful-links li a:hover,
.footer ul.sitemap li a:hover,
.footer ul.info li a:hover,
.footer ul.useful-links li a:hover {
    color: white;
}

footer ul.info li,
.footer ul.info li {
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    footer ul.info li,
    .footer ul.info li {
        margin-bottom: 0px;
    }
}

footer ul.social li,
.footer ul.social li {
    display: inline-block;
    margin-right: 9px;
    text-align: center;
}

footer ul.social li a,
.footer ul.social li a {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    width: 30px;
    background-color: #CBBD9A;
    border-radius: 15px;
    display: block;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
}

footer ul.social li a i,
.footer ul.social li a i {
    line-height: 30px;
}

footer ul.social li a:hover,
.footer ul.social li a:hover {
    color: white;
    background-color: #2F2911;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.footer.section {
    padding-top: 50px !important;
}

.footer:not(.fixed) {
    margin-left: 0px !important;
    margin-right: 0px !important;
    max-width: none !important;
    width: 100% !important;
    padding: 50px !important;
    overflow: hidden;
}

/*-------------------------------------------------*/
/* =  14.Elements
/*-------------------------------------------------*/
@media screen and (max-width: 991px) {
    #counters.padding-md {
        padding: 30px 15px !important;
    }
}

#counters .statistic span {
    display: block;
    font-size: 40px;
    line-height: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

#counters .statistic p {
    font-weight: 400;
}

#counters .statistic i.service.left {
    font-size: 50px;
    line-height: 50px;
}

@media screen and (max-width: 767px) {
    #counters .col-sm-6,
    #counters .col-sm-4 {
        margin-bottom: 50px;
    }

    #counters .col-sm-6:last-of-type,
    #counters .col-sm-4:last-of-type {
        margin-bottom: 0px;
    }
}

#pricing {
    overflow: hidden;
    padding: 50px 50px 90px 50px;
}

@media screen and (max-width: 480px) {
    #pricing {
        padding: 50px 20px 90px 20px;
    }
}

#pricing .price {
    background-color: white;
    text-align: center;
    padding: 30px;
    border-radius: 2px;
}

#pricing .price.transparent {
    background-color: transparent;
    border: 2px solid white;
}

#pricing .price .price-title {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #2F2911;
    font-family: "Montserrat", sans-serif;
}

#pricing .price .price-number {
    font-size: 50px;
    line-height: 70px;
    color: #2F2911;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 30px;
}

#pricing .price .price-number sup {
    font-size: 12px;
    line-height: 12px;
}

#pricing .price .price-number sup.up {
    top: -25px;
}

#pricing .price ul li {
    font-family: "Trirong", serif;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
    font-weight: 300;
    padding: 10px 30px;
}

#pricing .price ul.style {
    list-style: none;
}

#pricing .price ul.style li {
    position: relative;
    padding-left: 26px;
    color: #2F2911;
}

#pricing .price ul.style li:before {
    content: "\f383";
    font-family: "Ionicons";
    color: #CBBD9A;
    margin-right: 18px;
}

#pricing .price.active {
    -webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    top: -30px;
}

@media screen and (max-width: 767px) {
    #pricing .price.active {
        top: 0px;
    }
}

#pricing .price.active.standard {
    top: 0px;
}

#pricing .price.active.transparent {
    border: 2px solid transparent;
    background-color: white;
}

#pricing .price a.btn-alt {
    margin-top: 30px;
}

#pricing .col-md-4:nth-child(1).price {
    margin-right: -15px;
}

#pricing .col-md-4:nth-child(3).price {
    margin-left: -15px;
}

.mycolors {
    overflow: hidden;
    width: 100%;
    margin-top: 5px;
}

.mycolors span.mycolor {
    width: 20px;
    height: 20px;
    display: block;
    float: left;
    background-color: #CBBD9A;
}

.testimonials-carousel,
.testimonials-carousel-simple {
    z-index: 3 !important;
}

.testimonials-carousel span.quote,
.testimonials-carousel-simple span.quote {
    font-size: 140px;
    line-height: 140px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: -60px;
    display: block;
    color: #CBBD9A;
}

.testimonials-carousel img,
.testimonials-carousel-simple img {
    display: block;
    border-radius: 50%;
    width: 75px !important;
    height: 75px;
    margin: 36px auto;
}

.testimonials-carousel blockquote,
.testimonials-carousel-simple blockquote {
    color: #6E6B66;
    background-color: transparent;
    margin: 0;
    padding: 0;
    font-family: "Trirong", serif;
    font-size: 18px;
    line-height: 28px;
}

.testimonials-carousel em,
.testimonials-carousel-simple em {
    font-size: 20px;
    line-height: 30px;
    color: #6E6B66;
    text-decoration: none;
    position: relative;
    display: block;
    margin-bottom: 18px;
}

.testimonials-carousel em.small,
.testimonials-carousel-simple em.small {
    font-size: 16px;
    line-height: 26px;
    font-family: "Trirong", serif;
    font-weight: 300;
}

.testimonials-carousel .owl-controls,
.testimonials-carousel-simple .owl-controls {
    margin-bottom: 50px;
}

.testimonials-carousel-simple .item {
    margin: 50px 0 0 0;
}

@media screen and (max-width: 991px) {
    .testimonials-carousel-simple .item .text {
        padding: 0;
    }
}

.testimonials-carousel-simple blockquote {
    color: #2F2911;
    font-family: "Trirong", serif;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    background-color: transparent;
    margin: 0;
    padding-left: 80px;
}

.testimonials-carousel-simple blockquote:before {
    content: "“";
    font-family: "Trirong", serif;
    font-size: 180px;
    line-height: 146px;
    position: absolute;
    top: -18px;
    left: 2px;
    color: white;
    right: 0;
    display: inline-block;
    z-index: -1;
}

.testimonials-carousel-simple blockquote.grey-light:before, .testimonials-carousel-simple blockquote.white:before {
    color: #CBBD9A;
    text-shadow: 4px 4px 10px #444;
}

.testimonials-carousel-simple em.small {
    font-family: "Trirong", serif;
    font-style: italic;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    padding-left: 6px;
    font-weight: 300;
    color: #2F2911;
    margin-bottom: 0;
    display: inline-block;
}

.testimonials-carousel-simple span {
    font-family: "Roboto", sans-serif;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    font-weight: 300;
    font-style: italic;
}

.testimonials-carousel-simple p {
    padding-left: 18px;
}

.testimonials-carousel-simple p.bold {
    font-weight: 400;
}

.map {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map #map {
    height: 100%;
    width: 100%;
}

.services-simple {
    padding: 50px 35px 14px 35px;
}

.services-simple .service p {
    margin-bottom: 36px;
}

.services-box {
    padding: 0 25px 50px 25px;
}

@media screen and (max-width: 991px) {
    .services-box {
        padding: 0 25px;
    }
}

.services-box .col-md-6,
.services-box .col-md-4,
.services-box .col-md-3 {
    padding-left: 25px;
    padding-right: 25px;
}

.services-box .alt-services {
    padding: 50px;
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: margin-top .4s ease;
    -o-transition: margin-top .4s ease;
    transition: margin-top .4s ease;
}

@media screen and (max-width: 991px) {
    .services-box .alt-services {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .services-box .alt-services {
        padding: 25px;
    }
}

.services-box .alt-services:hover {
    margin-top: -25px;
    -webkit-transition: margin-top .4s ease;
    -o-transition: margin-top .4s ease;
    transition: margin-top .4s ease;
}

@media screen and (max-width: 991px) {
    .services-box .alt-services:hover {
        margin-top: 0;
    }
}

table {
    width: 100%;
    margin: 0 0 25px 0;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
    border: none !important;
    font-family: "Trirong", serif;
    font-weight: 100;
}

table th {
    color: #2F2911;
    text-align: left;
    padding: 15px !important;
    border: 1px solid transparent !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

table td {
    padding: 15px !important;
    border: 1px solid transparent;
    color: #6E6B66;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.table-responsive.shadow {
    -webkit-box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding: 25px;
    border: 1px solid transparent;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

@media screen and (max-width: 480px) {
    .table-responsive.shadow {
        padding: 11px;
    }
}

.table-responsive.shadow table {
    margin-bottom: 0;
}

.table-responsive.shadow table th,
.table-responsive.shadow table td {
    padding: 9px !important;
}

.table-responsive.shadow:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #CBBD9A;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.alert {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background-image: none;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
}

.alert.alert-success {
    border: 2px solid #dff0d8;
    background-color: transparent;
    color: #2F2911;
}

.alert.alert-info {
    border: 2px solid #CBBD9A;
    background-color: transparent;
    color: #2F2911;
}

.alert.alert-warning {
    border: 2px solid #fcf8e3;
    background-color: transparent;
    color: #2F2911;
}

.alert.alert-danger {
    border: 2px solid #f2dede;
    background-color: transparent;
    color: #2F2911;
}

.alert .close {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 100;
    top: -4px;
    color: #2F2911;
    opacity: .8;
}

.alert .close:hover {
    opacity: .2;
}

#skills {
    margin-left: -25px;
    margin-right: -25px;
}

#skills ul.skill-list {
    padding-left: 0;
    padding: 0 25px;
}

#skills ul.skill-list em {
    color: #2F2911;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 9px;
    display: block;
}

#skills ul.skill-list li {
    border-bottom: 8px solid #F6F6F6;
    position: relative;
    color: #2F2911;
    font-size: 18px;
    line-height: 20px;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1px;
    list-style: none;
    margin-bottom: 25px;
    border-radius: 8px;
}

#skills ul.skill-list li span.border-color {
    height: 8px;
    width: 0;
    position: absolute;
    background: #CBBD9A;
    background-color: #CBBD9A;
    bottom: -8px;
    left: 0;
    border-radius: 8px;
}

#skills ul.skill-list li span.label {
    position: absolute;
    right: 0;
    top: -32px;
    padding: 3px 3px 3px 5px;
    width: 45px;
    text-align: right;
    background-color: #CBBD9A;
}

#skills.white ul.skill-list li {
    border-bottom: 8px solid rgba(255, 255, 255, 0.2);
}

#skills.white ul.skill-list li span.border-color {
    background-color: white;
}

#skills.white ul.skill-list li span.label {
    background-color: white;
    color: #CBBD9A;
}

.image-carousel .owl-controls {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-carousel .owl-controls img {
    -webkit-transition: all .4s ease .4s;
    -o-transition: all .4s ease .4s;
    transition: all .4s ease .4s;
}

.image-carousel .owl-controls .owl-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.image-carousel .owl-controls .owl-nav .owl-prev,
.image-carousel .owl-controls .owl-nav .owl-next {
    width: 50%;
    float: left;
}

.image-carousel .owl-controls .owl-nav .owl-prev:hover span,
.image-carousel .owl-controls .owl-nav .owl-next:hover span {
    background-color: #444;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.image-carousel .owl-controls .owl-nav .owl-prev span,
.image-carousel .owl-controls .owl-nav .owl-next span {
    height: 40px;
    width: 40px;
    background-color: #CBBD9A;
    color: white;
    display: block;
    border-radius: 0 4px 4px 0;
    text-align: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.image-carousel .owl-controls .owl-nav .owl-prev i,
.image-carousel .owl-controls .owl-nav .owl-next i {
    font-size: 30px;
    line-height: 40px;
}

.image-carousel .owl-controls .owl-nav .owl-next span {
    float: right;
    border-radius: 4px 0 0 4px;
}

.image-carousel .owl-controls .owl-dots {
    position: absolute !important;
    bottom: 15px;
    left: 0;
    right: 0;
}

.image-carousel .owl-controls .owl-dots .owl-dot span {
    background-color: transparent;
}

.image-carousel.not-nav .owl-controls .owl-nav {
    display: none;
}

.image-carousel.dots-outside .owl-controls {
    position: relative !important;
    top: inherit;
    bottom: inherit;
    left: inherit;
    right: inherit;
    margin-top: 60px;
}

.image-carousel.dots-outside .owl-controls .owl-dots {
    bottom: 0;
}

.image-carousel.dark-dots .owl-controls .owl-dots .owl-dot span {
    background-color: #2F2911;
}

.image-carousel.dark-dots .owl-controls .owl-dots .owl-dot span.active {
    background-color: #2F2911;
}

.gallery-carousel .item {
    border-radius: 2px;
    overflow: hidden;
}

.gallery-carousel .item .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50%;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.gallery-carousel .item .image:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.gallery-carousel .owl-controls {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute !important;
    width: 100%;
    z-index: -1;
}

.gallery-carousel .owl-controls .owl-nav .owl-prev,
.gallery-carousel .owl-controls .owl-nav .owl-next {
    background-color: white;
    width: 40px;
    height: 40px;
    font-size: 18px;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.gallery-carousel .owl-controls .owl-nav .owl-prev i,
.gallery-carousel .owl-controls .owl-nav .owl-next i {
    color: #2F2911;
    font-size: 26px;
    line-height: 40px;
}

.gallery-carousel .owl-controls .owl-nav .owl-prev:hover,
.gallery-carousel .owl-controls .owl-nav .owl-next:hover {
    opacity: .8;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.gallery-carousel .owl-controls .owl-nav .owl-prev {
    float: left;
    border-radius: 0 2px 2px 0;
}

.gallery-carousel .owl-controls .owl-nav .owl-next {
    float: right;
    border-radius: 2px 0 0 2px;
}

.gallery-carousel:hover .owl-controls .owl-nav .owl-prev,
.gallery-carousel:hover .owl-controls .owl-nav .owl-next {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.sponsor-carousel .item {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    text-align: center;
}

.sponsor-carousel .item img {
    width: auto !important;
    max-width: 80%;
    display: inline-block;
    height: auto;
}

.sponsor-carousel .item:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.home-carousel .item {
    border-radius: 2px;
    overflow: hidden;
}

.home-carousel .item .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px;
    height: calc(100vh - 105px);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 480px) {
    .home-carousel .item .image {
        height: calc(100vh - 85px);
    }
}

.home-carousel .item .image .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 0.85);
    padding: 50px;
    z-index: 3;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
    opacity: 0;
}

@media only screen and (max-device-width: 780px) and (orientation: landscape) {
    .home-carousel .item .image .content {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .home-carousel .item .image .content {
        padding: 25px;
    }
}

.home-carousel .item .image .content .content-top {
    padding-top: 25%;
    -webkit-transform: translate(0px, 36px);
    -ms-transform: translate(0px, 36px);
    transform: translate(0px, 36px);
    -webkit-transition: -webkit-transform .6s ease-in;
    transition: -webkit-transform .6s ease-in;
    -o-transition: transform .6s ease-in;
    transition: transform .6s ease-in;
    transition: transform .6s ease-in, -webkit-transform .6s ease-in;
}

@media only screen and (max-device-width: 780px) and (orientation: landscape) {
    .home-carousel .item .image .content .content-top {
        padding-top: 0;
    }

    .home-carousel .item .image .content .content-top p {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .home-carousel .item .image .content .content-top h2 {
        font-size: 22px;
    }

    .home-carousel .item .image .content .content-top p {
        font-size: 14px;
    }
}

.home-carousel .item .image .content .content-bottom {
    position: absolute;
    bottom: 50px;
    text-align: center;
    left: 0;
    right: 0;
    -webkit-transform: translate(0px, -36px);
    -ms-transform: translate(0px, -36px);
    transform: translate(0px, -36px);
    -webkit-transition: -webkit-transform .6s ease-in;
    transition: -webkit-transform .6s ease-in;
    -o-transition: transform .6s ease-in;
    transition: transform .6s ease-in;
    transition: transform .6s ease-in, -webkit-transform .6s ease-in;
}

@media only screen and (max-device-width: 780px) and (orientation: landscape) {
    .home-carousel .item .image .content .content-bottom {
        bottom: 25px;
    }
}

.home-carousel .owl-item.active.center .item .content {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.home-carousel .owl-item.active.center .item .content .content-top,
.home-carousel .owl-item.active.center .item .content .content-bottom {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: -webkit-transform .6s ease-out;
    transition: -webkit-transform .6s ease-out;
    -o-transition: transform .6s ease-out;
    transition: transform .6s ease-out;
    transition: transform .6s ease-out, -webkit-transform .6s ease-out;
}

.home-carousel .owl-controls {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute !important;
    left: -50px;
    right: -50px;
    z-index: -1;
}

.home-carousel .owl-controls .owl-nav .owl-prev,
.home-carousel .owl-controls .owl-nav .owl-next {
    background-color: #2F2911;
    width: 50px;
    height: 50px;
    font-size: 18px;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.home-carousel .owl-controls .owl-nav .owl-prev i,
.home-carousel .owl-controls .owl-nav .owl-next i {
    color: white;
    font-size: 36px;
    line-height: 52px;
}

.home-carousel .owl-controls .owl-nav .owl-prev:hover,
.home-carousel .owl-controls .owl-nav .owl-next:hover {
    opacity: .8;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.home-carousel .owl-controls .owl-nav .owl-prev {
    float: left;
}

.home-carousel .owl-controls .owl-nav .owl-next {
    float: right;
}

.simple-parallax {
    background-attachment: fixed;
}

.service-content,
.statistic-content {
    padding-left: 100px;
}

.service-content.large,
.statistic-content.large {
    padding-left: 65px;
    z-index: 1;
    position: relative;
}

.service-content.medium,
.statistic-content.medium {
    padding-left: 50px;
    z-index: 1;
    position: relative;
}

em.number {
    font-size: 80px;
    line-height: 80px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #d1d2d3;
    float: left;
    position: absolute;
    z-index: 0;
}

#typed.big {
    font-size: 38px;
    line-height: 48px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.typed-cursor {
    font-size: 38px;
    line-height: 48px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: white;
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

.grid-images {
    margin-left: 0px;
    margin-right: 0px;
    padding-top: 30px;
}

.grid-images .padding-sm {
    padding: 30px 0 !important;
}

.grid-images .padding-onlytop-sm {
    padding-top: 30px !important;
}

@media screen and (max-width: 991px) {
    .grid-images .padding-onlytop-sm {
        padding-top: 0 !important;
    }
}

.grid-images .image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 35%;
    -webkit-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    transition-duration: 300ms;
}

@media screen and (max-width: 991px) {
    .grid-images .image {
        margin-bottom: 30px;
    }
}

.grid-images .image > .lightbox-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.85);
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.grid-images .image > .lightbox-image:focus {
    outline: none;
}

.grid-images .image:hover > .lightbox-image {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

#newsletter-form form {
    width: 100%;
}

#newsletter-form form .form-input {
    width: 100%;
    position: relative;
}

#newsletter-form form .form-input input {
    width: 100%;
    border: none;
    border-radius: 3px;
    outline: inherit;
    padding: 11px 50px 11px 9px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    #newsletter-form form .form-input input {
        width: 100%;
    }
}

#newsletter-form form .form-input input:focus {
    -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

#newsletter-form form .form-input ::-webkit-input-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

#newsletter-form form .form-input :-moz-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

#newsletter-form form .form-input ::-moz-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

#newsletter-form form .form-input :-ms-input-placeholder {
    font-family: "Montserrat", sans-serif;
    color: #6E6B66;
    font-size: 14px;
}

#newsletter-form form .form-input span.form-button {
    position: absolute;
    width: 80px;
    height: 40px;
    right: 0;
    top: 0px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 38px;
    color: white;
    border-radius: 0 2px 2px 0;
    background-color: #CBBD9A;
    text-align: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#newsletter-form form .form-input span.form-button:hover {
    background-color: #2F2911;
    border-radius: 0 2px 2px 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.hiker {
    text-align: center;
}

.hiker img {
    height: 60px;
    width: 60px;
    border-radius: 30px;
    margin: 0 auto;
    margin-bottom: 18px;
    -webkit-box-shadow: 0 0.0625em 0.1875em rgba(0, 0, 0, 0.12), 0 0.0625em 0.125em rgba(0, 0, 0, 0.24);
    box-shadow: 0 0.0625em 0.1875em rgba(0, 0, 0, 0.12), 0 0.0625em 0.125em rgba(0, 0, 0, 0.24);
}

.hiker h3 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 16px;
}

.hiker span.meta {
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-family: "Trirong", serif;
}

.hiker ul {
    position: relative;
    z-index: 10;
}

.hiker ul.social {
    margin-top: 36px;
}

.hiker ul.social li {
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .hiker ul.social li {
        margin-bottom: 18px;
    }
}

.hiker ul.social li a {
    background-color: #CBBD9A;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    display: block;
    -webkit-box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
    margin: 0 9px;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
    .hiker ul.social li a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.hiker ul.social li a:hover {
    background-color: #444;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.trek-data {
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .trek-data .col-md-2:nth-child(4), .trek-data .col-md-2:nth-child(5), .trek-data .col-md-2:nth-child(6) {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 991px) {
    .trek-data .col-md-2:nth-child(4), .trek-data .col-md-2:nth-child(5), .trek-data .col-md-2:nth-child(6) {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 991px) {
    .trek-data .col-md-2,
    .trek-data .col-md-3,
    .trek-data .col-md-4 {
        margin-bottom: 36px;
    }
}

@media screen and (max-width: 767px) {
    .trek-data .col-md-2:last-child,
    .trek-data .col-md-3:last-child,
    .trek-data .col-md-4:last-child {
        margin-bottom: 0px;
    }
}

.trek-data i {
    line-height: 80px;
}

.trek-data i.icon {
    line-height: 80px;
}

.trek-data h3 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    font-family: "Trirong", serif;
}

.trek-data em {
    font-size: 16px;
    line-height: 26px;
}

.trek-map {
    height: 600px;
}

@media screen and (max-width: 480px) {
    .trek-map {
        height: 350px;
    }
}

.trek-map iframe {
    height: 600px;
}

@media screen and (max-width: 480px) {
    .trek-map iframe {
        height: 350px;
    }
}

.gallery-meta span.like {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.gallery-meta span.like i {
    margin: 0 9px;
    color: #CBBD9A;
}

.gallery-meta span.like a {
    color: #6E6B66;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.gallery-meta span.like a:hover {
    color: #2F2911;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.gallery-meta span.like a:hover i {
    color: firebrick;
    -webkit-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
}

.gallery-meta span.info {
    display: block;
    font-family: "Trirong", serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #6E6B66;
}

.gallery-meta span.info em {
    font-weight: 400;
    color: #2F2911;
    padding-right: 9px;
}

.gallery-meta ul.tags li {
    display: inline-block;
    position: relative;
    padding-right: 9px;
}

.gallery-meta ul.tags li:after {
    content: ",";
    position: absolute;
    bottom: 0px;
    font-family: "Trirong", serif;
    color: #CBBD9A;
    margin: 0 9px 0 2px;
}

.gallery-meta ul.tags li:last-child:after {
    display: none;
}

.gallery-meta ul.tags li a {
    font-family: "Trirong", serif;
    color: #CBBD9A;
    font-style: italic;
    font-weight: 100;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*-------------------------------------------------*/
/* =  15.Loader
/*-------------------------------------------------*/
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #CBBD9A;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
    border-radius: 2px;
}

#myloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: #F6F6F6;
    text-align: center;
}

#myloader .loader {
    display: inline-block;
    height: auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#myloader .loader .inner-loader {
    width: 80px;
    height: 80px;
    border-radius: 2px;
    border: 2px solid #CBBD9A;
    margin: 60px auto;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
    position: relative;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/*-------------------------------------------------*/
/* =  16.Magnific popup
/*-------------------------------------------------*/
button.mfp-close {
    background-color: #CBBD9A !important;
    color: white;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

button.mfp-close:hover {
    background-color: #444 !important;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

/*-------------------------------------------------*/
/* =  17.OWL
/*-------------------------------------------------*/
.owl-theme .owl-controls {
    position: relative;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1;
    -webkit-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}

.owl-carousel .owl-controls .owl-dot, .owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: transparent;
    border: 1px solid #CBBD9A;
    border-radius: 50%;
    opacity: 1;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #CBBD9A;
    opacity: 1;
}

/*-------------------------------------------------*/
/* =  18.Animations
/*-------------------------------------------------*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
