/**
 * [Table of contents]
 *   1 Base
 *     1.1 Reset Styles
 *     1.2 Context Styles
 *     1.3 Page layout
 *     1.4 Offsets
 *   2 Utilities
 *     2.1 Text styling
 *     2.2 Row spacing
 *     2.3 Sections
 *     2.4 Grid modules
 *     2.5 Backgrounds
 *     2.6 Utilities custom
 *   3 Components
 *     3.1 Typography
 *     3.2 Brand
 *     3.3 Links
 *     3.4 Boxes
 *     3.5 Lists
 *     3.6 Images
 *     3.7 Icons
 *     3.8 Buttons
 *     3.9 Forms
 *     3.10 Quotes
 *     3.11 Snackbars
 *     3.12 Footers
 *     3.13 Person
 *     3.14 Events
 *     3.15 Layouts
 *     3.16 Product
 *     3.17 Header
 *   4 Plugins
 *     4.1 Animate
 *     4.2 Preloader
 *     4.3 ToTop
 *     4.4 RD Navbar
 *     4.5 Google Map
 *     4.6 Nav custom
 *     4.7 Counter
 *     4.8 Owl Carousel
 *     4.9 Bootstrap Modal
 */
/** @group Base */
/** @section Reset Styles*/
a:focus, button:focus {
    outline: none !important;
}

button::-moz-focus-inner {
    border: 0;
}

*:focus {
    outline: none;
}

blockquote {
    padding: 0;
    margin: 0;
}

input, button, select, textarea {
    outline: none;
}

button {
    padding: 0;
}

label {
    margin-bottom: 0;
}

p {
    margin: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li, ol li {
    display: block;
}

dl {
    margin: 0;
}

dt, dd {
    line-height: inherit;
}

dt {
    font-weight: inherit;
}

dd {
    margin-bottom: 0;
}

cite {
    font-style: normal;
}

form {
    margin-bottom: 0;
}

blockquote {
    padding-left: 0;
    border-left: 0;
}

address {
    margin-top: 0;
    margin-bottom: 0;
}

figure {
    margin-bottom: 0;
}

html p a:hover {
    text-decoration: none;
}

/** @section Context Styles */
.context-dark, .bg-gray-700, .context-dark h1, .bg-gray-700 h1, .context-dark h2, .bg-gray-700 h2, .context-dark h3, .bg-gray-700 h3, .context-dark h4, .bg-gray-700 h4, .context-dark h5, .bg-gray-700 h5, .context-dark h6, .bg-gray-700 h6, .context-dark .h1, .bg-gray-700 .h1, .context-dark .h2, .bg-gray-700 .h2, .context-dark .h3, .bg-gray-700 .h3, .context-dark .h4, .bg-gray-700 .h4, .context-dark .h5, .bg-gray-700 .h5, .context-dark .h6, .bg-gray-700 .h6 {
    color: #ffffff;
}

/** @section Page layout */
.page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    opacity: 0;
}

.page.fadeIn {
    animation-timing-function: ease-out;
}

.page.fadeOut {
    animation-timing-function: ease-in;
}

[data-x-mode] .page {
    opacity: 1;
}

/** @section Offsets */
* + p {
    margin-top: 15px;
}

* + img {
    margin-top: 30px;
}

* + h1, * + .h1 {
    margin-top: 20px;
}

@media (min-width: 1200px) {
    * + h1, * + .h1 {
        margin-top: 30px;
    }
}

* + h2, * + .h2 {
    margin-top: 20px;
}

p + h2, p + .h2 {
    margin-top: 12px;
}

h2 + p, .h2 + p {
    margin-top: 12px;
}

h1 + h3 {
    margin-top: 20px;
}

h2 + h3 {
    margin-top: 22.5px;
}

p + h3 {
    margin-top: 22px;
}

h2 + p {
    margin-top: 20.5px;
}

h3 + p {
    margin-top: 22px;
}

@media (min-width: 992px) {
    h1 + h3 {
        margin-top: 28px;
    }

    h2 + h3 {
        margin-top: 31.5px;
    }

    p + h3 {
        margin-top: 30.8px;
    }

    h2 + p {
        margin-top: 28.7px;
    }

    h3 + p {
        margin-top: 30.8px;
    }
}

@media (min-width: 1600px) {
    h1 + h3 {
        margin-top: 40px;
    }

    h2 + h3 {
        margin-top: 45px;
    }

    p + h3 {
        margin-top: 44px;
    }

    h2 + p {
        margin-top: 41px;
    }

    h3 + p {
        margin-top: 44px;
    }
}

/** @group Utilities */
/** @section Text styling */
.text-italic {
    font-style: italic;
}

.text-normal {
    font-style: normal;
}

.text-underline {
    text-decoration: underline;
}

.text-strike {
    text-decoration: line-through;
}

.fw-thin {
    font-weight: 100;
}

.fw-extra-light {
    font-weight: 200;
}

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

.fw-regular {
    font-weight: 400;
}

.fw-medium {
    font-weight: 500;
}

.fw-semi-bold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-extra-bold {
    font-weight: 800;
}

.fw-black {
    font-weight: 900;
}

.text-spacing-0 {
    letter-spacing: 0;
}

.text-primary {
    color: #16a99f !important;
}

/** @section Row spacing */
.row-0 {
    margin-bottom: 0px;
}

.row-0:empty {
    margin-bottom: 0;
}

.row-0 > * {
    margin-bottom: 0px;
}

.row-10 {
    margin-bottom: -10px;
}

.row-10:empty {
    margin-bottom: 0;
}

.row-10 > * {
    margin-bottom: 10px;
}

.row-15 {
    margin-bottom: -15px;
}

.row-15:empty {
    margin-bottom: 0;
}

.row-15 > * {
    margin-bottom: 15px;
}

.row-20 {
    margin-bottom: -20px;
}

.row-20:empty {
    margin-bottom: 0;
}

.row-20 > * {
    margin-bottom: 20px;
}

.row-30 {
    margin-bottom: -30px;
}

.row-30:empty {
    margin-bottom: 0;
}

.row-30 > * {
    margin-bottom: 30px;
}

.row-40 {
    margin-bottom: -40px;
}

.row-40:empty {
    margin-bottom: 0;
}

.row-40 > * {
    margin-bottom: 40px;
}

.row-50 {
    margin-bottom: -50px;
}

.row-50:empty {
    margin-bottom: 0;
}

.row-50 > * {
    margin-bottom: 50px;
}

.container + .container {
    margin-top: 50.5px;
}

@media (min-width: 992px) {
    .row-lg-60 {
        margin-bottom: -60px;
    }

    .row-lg-60:empty {
        margin-bottom: 0;
    }

    .row-lg-60 > * {
        margin-bottom: 60px;
    }

    .container + .container {
        margin-top: 70.7px;
    }
}

@media (min-width: 1200px) {
    .row-xl-80 {
        margin-bottom: -80px;
    }

    .row-xl-80:empty {
        margin-bottom: 0;
    }

    .row-xl-80 > * {
        margin-bottom: 80px;
    }

    .row-xl-100 {
        margin-bottom: -100px;
    }

    .row-xl-100:empty {
        margin-bottom: 0;
    }

    .row-xl-100 > * {
        margin-bottom: 100px;
    }
}

@media (min-width: 1600px) {
    .container + .container {
        margin-top: 101px;
    }
}

/** @section Sections */
.section-xs {
    padding: 25px 0;
}

.section-sm, .section-md, .section-lg, .section-xl {
    padding: 60px 0;
}

.section-collapse + .section-collapse {
    padding-top: 0;
}

html [class*='section-'].section-bottom-0 {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .section-sm {
        padding: 60px 0;
    }

    .section-md {
        padding: 70px 0;
    }

    .section-lg {
        padding: 85px 0;
    }
}

@media (min-width: 992px) {
    .section-md {
        padding: 80px 0 90px;
    }

    .section-lg {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) {
    .section-lg {
        padding: 201px 0;
    }
}

.section-single {
    display: flex;
    text-align: center;
}

.section-single p {
    margin-left: auto;
    margin-right: auto;
}

.section-single * + .rights {
    margin-top: 35px;
}

@media (min-width: 992px) {
    .section-single * + .rights {
        margin-top: 60px;
    }
}

.section-single .rd-mailform-wrap {
    max-width: 670px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-single * + .rd-mailform-wrap {
    margin-top: 20px;
}

.section-single-header {
    padding: calc(1em + 3vh) 0 calc(1em + 2vh);
}

.section-single-main {
    padding: calc(1em + 4vh) 0;
}

.section-single-footer {
    padding: calc(1em + 2vh) 0 calc(1em + 3vh);
}

.section-single-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}

.section-single-inner > * {
    width: 100%;
}

/** @section Grid modules */
.grid-demo {
    letter-spacing: 0;
    text-align: center;
}

.grid-demo p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.grid-demo * + p {
    margin-top: 5px;
}

.grid-demo * + .row {
    margin-top: 20px;
}

.grid-demo .row + .row {
    margin-top: 0;
}

@media (min-width: 1200px) {
    .grid-demo {
        text-align: left;
    }

    .grid-demo p {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .grid-demo * + p {
        margin-top: 25px;
    }
}

.grid-demo-bordered .row {
    border: 0 solid #d7d7d7;
    border-top-width: 1px;
}

.grid-demo-bordered .row:last-child {
    border-bottom-width: 1px;
}

.grid-demo-bordered [class*='col'] {
    padding: 5px 15px;
}

.grid-demo-bordered [class*='col']:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    border-left: 1px solid #d7d7d7;
}

@media (min-width: 768px) {
    .grid-demo-bordered [class*='col'] {
        padding: 30px;
    }
}

@media (min-width: 1200px) {
    .grid-demo-bordered [class*='col'] {
        padding: 50px 50px 45px;
    }
}

.grid-demo-underlined .row {
    border-bottom: 1px solid #d7d7d7;
}

.grid-demo-underlined [class*='col'] {
    padding: 5px 15px;
}

@media (min-width: 768px) {
    .grid-demo-underlined [class*='col'] {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

@media (min-width: 1200px) {
    .grid-demo-underlined [class*='col'] {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

.row-narrow {
    margin-left: -10px;
    margin-right: -10px;
}

.row-narrow > [class*='col'] {
    padding-left: 10px;
    padding-right: 10px;
}

.row-wide {
    margin-left: -25px;
    margin-right: -25px;
}

.row-wide > [class*='col'] {
    padding-left: 25px;
    padding-right: 25px;
}

.row-ten .col-1 {
    flex: 0 0 auto;
    width: 10%;
}

.row-ten .col-2 {
    flex: 0 0 auto;
    width: 20%;
}

.row-ten .col-3 {
    flex: 0 0 auto;
    width: 30%;
}

.row-ten .col-4 {
    flex: 0 0 auto;
    width: 40%;
}

.row-ten .col-5 {
    flex: 0 0 auto;
    width: 50%;
}

.row-ten .col-6 {
    flex: 0 0 auto;
    width: 60%;
}

.row-ten .col-7 {
    flex: 0 0 auto;
    width: 70%;
}

.row-ten .col-8 {
    flex: 0 0 auto;
    width: 80%;
}

.row-ten .col-9 {
    flex: 0 0 auto;
    width: 90%;
}

.row-ten .col-10 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 480px) {
    .row-ten .col-xs-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-xs-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-xs-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-xs-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-xs-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-xs-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-xs-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-xs-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-xs-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-xs-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .row-ten .col-sm-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-sm-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-sm-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-sm-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-sm-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-sm-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-sm-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-sm-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-sm-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-sm-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .row-ten .col-md-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-md-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-md-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-md-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-md-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-md-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-md-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-md-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-md-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-md-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .row-ten .col-lg-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-lg-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-lg-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-lg-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-lg-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-lg-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-lg-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-lg-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-lg-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .row-ten .col-xl-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-xl-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-xl-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-xl-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-xl-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-xl-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-xl-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-xl-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-xl-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-xl-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1600px) {
    .row-ten .col-xxl-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-ten .col-xxl-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-ten .col-xxl-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-ten .col-xxl-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-ten .col-xxl-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-ten .col-xxl-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-ten .col-xxl-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-ten .col-xxl-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-ten .col-xxl-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-ten .col-xxl-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .row-xl-ten .col-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 480px) {
    .row-xl-ten .col-xs-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-xs-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-xs-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-xs-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-xs-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-xs-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-xs-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-xs-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-xs-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-xs-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 576px) {
    .row-xl-ten .col-sm-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-sm-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-sm-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-sm-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-sm-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-sm-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-sm-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-sm-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-sm-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-sm-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 768px) {
    .row-xl-ten .col-md-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-md-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-md-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-md-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-md-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-md-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-md-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-md-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-md-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-md-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 992px) {
    .row-xl-ten .col-lg-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-lg-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-lg-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-lg-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-lg-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-lg-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-lg-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-lg-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-lg-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-lg-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 1200px) {
    .row-xl-ten .col-xl-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-xl-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-xl-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-xl-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-xl-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-xl-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-xl-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-xl-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-xl-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-xl-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) and (min-width: 1600px) {
    .row-xl-ten .col-xxl-1 {
        flex: 0 0 auto;
        width: 10%;
    }

    .row-xl-ten .col-xxl-2 {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-xl-ten .col-xxl-3 {
        flex: 0 0 auto;
        width: 30%;
    }

    .row-xl-ten .col-xxl-4 {
        flex: 0 0 auto;
        width: 40%;
    }

    .row-xl-ten .col-xxl-5 {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-xl-ten .col-xxl-6 {
        flex: 0 0 auto;
        width: 60%;
    }

    .row-xl-ten .col-xxl-7 {
        flex: 0 0 auto;
        width: 70%;
    }

    .row-xl-ten .col-xxl-8 {
        flex: 0 0 auto;
        width: 80%;
    }

    .row-xl-ten .col-xxl-9 {
        flex: 0 0 auto;
        width: 90%;
    }

    .row-xl-ten .col-xxl-10 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-wide {
        max-width: 1920px;
    }
}

/** @section Backgrounds */
.context-dark .brand .brand-logo-dark, .bg-gray-700 .brand .brand-logo-dark {
    display: none;
}

.context-dark .brand .brand-logo-light, .bg-gray-700 .brand .brand-logo-light {
    display: block;
}

.bg-default {
    background-color: transparent;
}

.bg-default:not([style*="background-"]) + .bg-default:not([style*="background-"]) {
    padding-top: 0;
}

.bg-gray-100 {
    background-color: #e5e5e5;
}

.bg-gray-100:not([style*="background-"]) + .bg-gray-100:not([style*="background-"]) {
    padding-top: 0;
}

.bg-gray-700 {
    background-color: #2c343b;
}

.bg-gray-700:not([style*="background-"]) + .bg-gray-700:not([style*="background-"]) {
    padding-top: 0;
}

.bg-primary {
    background-color: #16a99f;
}

.bg-primary:not([style*="background-"]) + .bg-primary:not([style*="background-"]) {
    padding-top: 0;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    html:not(.tablet):not(.mobile) .bg-fixed {
        background-attachment: fixed;
    }
}

/** @section Utilities custom */
.height-fill {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.height-fill > * {
    flex-grow: 1;
    flex-shrink: 0;
}

.object-inline {
    white-space: nowrap;
}

.object-inline > * {
    display: inline-block;
    min-width: 20px;
    vertical-align: top;
    white-space: normal;
}

.object-inline > * + * {
    margin-left: 5px;
}

.oh {
    position: relative;
    overflow: hidden;
}

.text-decoration-lines {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.text-decoration-lines-content {
    position: relative;
    display: inline-block;
    min-width: 170px;
    font-size: 13px;
    text-transform: uppercase;
}

.text-decoration-lines-content::before, .text-decoration-lines-content::after {
    content: '';
    position: absolute;
    height: 1px;
    background: #d7d7d7;
    top: 50%;
    width: 100vw;
}

.text-decoration-lines-content::before {
    left: 0;
    transform: translate3d(-100%, 0, 0);
}

.text-decoration-lines-content::after {
    right: 0;
    transform: translate3d(100%, 0, 0);
}

* + .text-decoration-lines {
    margin-top: 30px;
}

p.rights {
    font-size: 16px;
}

[style*='z-index: 1000;'] {
    z-index: 1101 !important;
}

.text-block > * {
    margin-left: .125em;
    margin-right: .125em;
}

/** @group Components */
/** @section Typography */
body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    color: #0d0d0d;
    background-color: #ffffff;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: subpixel-antialiased;
}

@media (min-width: 992px) {
    body {
        font-size: 20px;
    }
}

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

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
    color: #16a99f;
}

h1, .h1 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

@media (min-width: 992px) {
    h1, .h1 {
        font-size: 67.2px;
        line-height: 1.10417;
    }
}

@media (min-width: 1600px) {
    h1, .h1 {
        font-size: 72px;
    }
}

h2, .h2 {
    font-weight: 600;
    font-size: 33.6px;
    line-height: 1.2;
    letter-spacing: -.02em;
}

@media (min-width: 992px) {
    h2, .h2 {
        font-size: 50.4px;
        line-height: 1.09722;
    }
}

@media (min-width: 1600px) {
    h2, .h2 {
        font-size: 72px;
    }
}

h3, .h3 {
    font-size: 24px;
    line-height: 1.25;
}

@media (min-width: 992px) {
    h3, .h3 {
        font-size: 28.8px;
        line-height: 1.19444;
    }
}

@media (min-width: 1600px) {
    h3, .h3 {
        font-size: 36px;
    }
}

h4, .h4 {
    font-size: 22.4px;
    line-height: 1.41667;
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 24px;
    }
}

h5, .h5 {
    font-size: 19.2px;
    line-height: 1.35;
}

@media (min-width: 1200px) {
    h5, .h5 {
        font-size: 20px;
        line-height: 1.1;
    }
}

h6, .h6 {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .02em;
}

@media (min-width: 1200px) {
    h6, .h6 {
        font-size: 20px;
    }
}

small, .small {
    display: block;
    font-size: 16px;
    line-height: 1.5;
}

mark, .mark {
    padding: 3px 5px;
    color: #ffffff;
    background: #16a99f;
}

.big {
    font-size: 18px;
    line-height: 1.5;
}

.lead {
    font-size: 24px;
    line-height: 34px;
    font-weight: 300;
}

code {
    padding: 3px 5px;
    border-radius: 0.2rem;
    font-size: 90%;
    color: #0d0d0d;
    background: #e5e5e5;
}

p {
    letter-spacing: .02em;
}

p [data-toggle='tooltip'] {
    padding-left: .25em;
    padding-right: .25em;
    color: #16a99f;
}

p [style*='max-width'] {
    display: inline-block;
}

::selection {
    background: #16a99f;
    color: #ffffff;
}

::-moz-selection {
    background: #16a99f;
    color: #ffffff;
}

.context-dark a:not(.btn), .bg-gray-700 a:not(.btn) {
    color: #ffffff;
}

.context-dark a:not(.btn):hover, .bg-gray-700 a:not(.btn):hover {
    color: #16a99f;
}

.bg-primary a:not(.btn) {
    color: #0d0d0d;
}

.bg-primary a:not(.btn):hover {
    color: #ffffff;
}

.bg-primary h1 a:hover, .bg-primary h2 a:hover, .bg-primary h3 a:hover, .bg-primary h4 a:hover, .bg-primary h5 a:hover, .bg-primary h6 a:hover, .bg-primary .h1 a:hover, .bg-primary .h2 a:hover, .bg-primary .h3 a:hover, .bg-primary .h4 a:hover, .bg-primary .h5 a:hover, .bg-primary .h6 a:hover {
    color: #ffffff;
}

/** @section Brand */
.brand {
    display: inline-block;
}

.brand > * + * {
    margin-top: 0;
}

.brand .brand-logo-light {
    display: none;
}

.brand .brand-logo-dark {
    display: block;
}

.brand .brand-logo-mobile {
    display: none;
}

/* Slogan */
.slogan {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    line-height: 1;
    letter-spacing: -.03em;
    color: #0d0d0d;
    background-color: #c5a53d;
    border-radius: 50%;
}

.context-dark .slogan, .bg-gray-700 .slogan {
    color: #0d0d0d;
}

/** @section Links */
a {
    transition: all 0.3s ease-in-out;
}

a, a:focus, a:active, a:hover {
    text-decoration: none;
}

a, a:focus, a:active {
    color: #16a99f;
}

a:hover {
    color: #0d655f;
}

a[href*='tel'], a[href*='mailto'] {
    white-space: nowrap;
}

.link-hover {
    color: #0d655f;
}

.link-press {
    color: #0d655f;
}

.link-underline {
    text-decoration: underline;
}

.link-underline:hover {
    text-decoration: underline;
}

/** @section Boxes */
/* Box form */
.box-form {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .box-form {
        padding: 70px 70px;
    }
}

@media (min-width: 992px) {
    .box-form {
        padding: 70px 140px;
    }
}

@media (min-width: 1600px) {
    .box-form {
        padding: 100px 200px;
    }
}

/** @section Lists */
.list-icons .list-item {
    display: flex;
    align-items: baseline;
}

.list-icons .list-icon {
    margin-right: 14px;
    font-size: 24px;
    line-height: 1.3;
}

.list-icons .list-item + .list-item {
    margin-top: 21px;
}

* + .list-icons {
    margin-top: 30px;
}

@media (min-width: 992px) {
    * + .list-icons {
        margin-top: 42px;
    }
}

@media (min-width: 1600px) {
    * + .list-icons {
        margin-top: 60px;
    }
}

/* List social */
.list-social {
    margin-bottom: -25px;
    margin-left: -25px;
}

.list-social:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.list-social > * {
    margin-top: 0;
    margin-bottom: 25px;
    margin-left: 25px;
}

.list-social .icon {
    font-size: 29px;
}

* + .list-social {
    margin-top: 28.5px;
}

@media (min-width: 992px) {
    * + .list-social {
        margin-top: 39.9px;
    }
}

@media (min-width: 1600px) {
    * + .list-social {
        margin-top: 57px;
    }
}

/** @section Images */
img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-responsive {
    width: 100%;
}

.image-link {
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.image-link:hover {
    opacity: .5;
}

/** @section Icons */
.icon {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}

.icon::before {
    position: relative;
    display: inline-block;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-transform: none;
}

/** @section Buttons */
.btn {
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page .btn:not([class*='shadow']) {
    box-shadow: none;
}

.page .btn:not(:disabled):not(.disabled):active:focus:not([class*='shadow']), .page .btn:not(:disabled):not(.disabled).active:focus:not([class*='shadow']) {
    box-shadow: none;
}

.btn-primary, .btn-primary:focus {
    color: #ffffff;
    background-color: #16a99f;
    border-color: #16a99f;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:hover, .btn-primary:active, .btn-primary.active {
    color: #ffffff;
    background-color: #2c343b;
    border-color: #2c343b;
}

.btn-primary.btn-ujarak::before {
    background: #2c343b;
}

.btn-secondary, .btn-secondary:focus {
    color: #0d0d0d;
    background-color: #c5a53d;
    border-color: #c5a53d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:hover, .btn-secondary:active, .btn-secondary.active {
    color: #0d0d0d;
    background-color: #16a99f;
    border-color: #16a99f;
}

.btn-secondary.btn-ujarak::before {
    background: #16a99f;
}

.btn-white, .btn-white:focus {
    color: #0d0d0d;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .btn-white:hover, .btn-white:active, .btn-white.active {
    color: #ffffff;
    background-color: #16a99f;
    border-color: #16a99f;
}

.btn-white.btn-ujarak::before {
    background: #16a99f;
}

.btn-ujarak {
    position: relative;
    z-index: 0;
    transition: background .4s, border-color .4s, color .4s;
}

.btn-ujarak::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #16a99f;
    z-index: -1;
    opacity: 0;
    transform: scale3d(0.7, 1, 1);
    transition: transform 0.42s, opacity 0.42s;
    border-radius: inherit;
}

.btn-ujarak, .btn-ujarak::before {
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-ujarak:hover {
    transition: background .4s .4s, border-color .4s 0s, color .2s 0s;
}

.btn-ujarak:hover::before {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

h1 + .btn {
    margin-top: 50px;
}

h3 + .btn {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .btn {
        padding: 19.6px 53.9px;
    }

    h1 + .btn {
        margin-top: 70px;
    }

    h3 + .btn {
        margin-top: 70px;
    }
}

@media (min-width: 1600px) {
    .btn {
        padding: 28px 77px;
    }

    h1 + .btn {
        margin-top: 100px;
    }

    h3 + .btn {
        margin-top: 100px;
    }
}

/** @section Forms */
.rd-form {
    position: relative;
    text-align: left;
}

.rd-form .btn {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 66px;
}

* + .rd-form {
    margin-top: 20px;
}

input:-webkit-autofill ~ label, input:-webkit-autofill ~ .form-validation {
    color: #000000 !important;
}

.form-wrap {
    position: relative;
}

.form-wrap.has-error .form-input {
    border-color: #f5543f;
}

.form-wrap.has-focus .form-input {
    border-color: #16a99f;
}

.form-input {
    display: block;
    width: 100%;
    min-height: 66px;
    padding: 14px 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;
    color: #b7b7b7;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: none;
    border-bottom: 2px solid #0d0d0d;
}

.form-input:focus {
    outline: 0;
}

textarea.form-input {
    height: 166px;
    min-height: 66px;
    max-height: 282px;
    resize: vertical;
}

.recaptcha div {
    display: block;
    transform-origin: 0 0;
}

.recaptcha iframe {
    display: block;
}

.form-label, .form-label-outside {
    margin-bottom: 0;
    color: #b7b7b7;
    font-weight: 300;
}

.form-label {
    position: absolute;
    top: 33px;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 34px;
    pointer-events: none;
    text-align: left;
    z-index: 9;
    transition: .25s;
    will-change: transform;
    transform: translateY(-50%);
}

.form-label.focus {
    opacity: 0;
}

.form-label.auto-fill {
    color: #b7b7b7;
}

.form-meta {
    font-weight: 500;
    letter-spacing: .02em;
}

.form-label-outside {
    width: 100%;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .form-label-outside {
        position: static;
    }

    .form-label-outside, .form-label-outside.focus, .form-label-outside.auto-fill {
        transform: none;
    }
}

[data-x-mode='true'] .form-label {
    pointer-events: auto;
}

.form-validation {
    position: absolute;
    right: 2px;
    bottom: 1px;
    z-index: 11;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0;
    color: #f5543f;
    transition: .3s;
}

.form-validation-left .form-validation {
    right: auto;
    left: 8px;
}

.form-title + .form-wrap {
    margin-top: 22px;
}

.form-wrap + .form-title {
    margin-top: 50.5px;
}

.form-wrap + .form-wrap {
    margin-top: 12px;
}

* + .form-button {
    margin-top: 30px;
}

* + .form-meta {
    margin-top: 31.5px;
}

.context-dark .form-input, .context-dark .form-label {
    color: #9e9e9e;
}

.context-dark .form-input {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.context-dark .form-validation {
    color: #ffffff;
}

@media (min-width: 1600px) {
    .form-title + .form-wrap {
        margin-top: 30.8px;
    }

    .form-wrap + .form-title {
        margin-top: 70.7px;
    }

    .form-wrap + .form-wrap {
        margin-top: 16.8px;
    }

    * + .form-button {
        margin-top: 42px;
    }

    * + .form-meta {
        margin-top: 44.1px;
    }
}

@media (min-width: 1600px) {
    .form-title + .form-wrap {
        margin-top: 44px;
    }

    .form-wrap + .form-title {
        margin-top: 101px;
    }

    .form-wrap + .form-wrap {
        margin-top: 24px;
    }

    * + .form-button {
        margin-top: 60px;
    }

    * + .form-meta {
        margin-top: 63px;
    }
}

#form-output-global {
    position: fixed;
    bottom: 30px;
    left: 15px;
    z-index: 2000;
    visibility: hidden;
    transform: translate3d(-500px, 0, 0);
    transition: .3s all ease;
    max-width: calc(100% - 30px);
}

@media (min-width: 576px) {
    #form-output-global {
        left: 30px;
        max-width: calc(100% - 60px);
    }
}

#form-output-global.active {
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.form-output {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.form-output.active {
    opacity: 1;
    visibility: visible;
}

.form-output.error {
    color: #f5543f;
}

.form-output.success {
    color: #98bf44;
}

.radio .radio-custom, .radio-inline .radio-custom, .checkbox .checkbox-custom, .checkbox-inline .checkbox-custom {
    opacity: 0;
}

.radio .radio-custom, .radio .radio-custom-dummy, .radio-inline .radio-custom, .radio-inline .radio-custom-dummy, .checkbox .checkbox-custom, .checkbox .checkbox-custom-dummy, .checkbox-inline .checkbox-custom, .checkbox-inline .checkbox-custom-dummy {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    outline: none;
    cursor: pointer;
}

.radio .radio-custom-dummy, .radio-inline .radio-custom-dummy, .checkbox .checkbox-custom-dummy, .checkbox-inline .checkbox-custom-dummy {
    pointer-events: none;
    background: #ffffff;
}

.radio .radio-custom-dummy::after, .radio-inline .radio-custom-dummy::after, .checkbox .checkbox-custom-dummy::after, .checkbox-inline .checkbox-custom-dummy::after {
    position: absolute;
    opacity: 0;
    transition: .22s;
}

.radio .radio-custom:focus, .radio-inline .radio-custom:focus, .checkbox .checkbox-custom:focus, .checkbox-inline .checkbox-custom:focus {
    outline: none;
}

.radio input, .radio-inline input, .checkbox input, .checkbox-inline input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.radio-custom:checked + .radio-custom-dummy:after, .checkbox-custom:checked + .checkbox-custom-dummy:after {
    opacity: 1;
}

.radio, .radio-inline {
    padding-left: 28px;
}

.radio .radio-custom-dummy, .radio-inline .radio-custom-dummy {
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #b7b7b7;
}

.radio .radio-custom-dummy::after, .radio-inline .radio-custom-dummy::after {
    content: '';
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    background: #2c343b;
    border-radius: inherit;
}

.checkbox, .checkbox-inline {
    padding-left: 28px;
}

.checkbox .checkbox-custom-dummy, .checkbox-inline .checkbox-custom-dummy {
    left: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid #b7b7b7;
}

.checkbox .checkbox-custom-dummy::after, .checkbox-inline .checkbox-custom-dummy::after {
    content: '\f222';
    font-family: "Material Design Icons";
    position: absolute;
    top: -1px;
    left: -2px;
    font-size: 20px;
    line-height: 18px;
    color: #cccccc;
}

.toggle-custom {
    padding-left: 60px;
    -webkit-appearance: none;
}

.toggle-custom:checked ~ .checkbox-custom-dummy::after {
    background: #16a99f;
    transform: translate(20px, -50%);
}

.toggle-custom ~ .checkbox-custom-dummy {
    position: relative;
    display: inline-block;
    margin-top: -1px;
    width: 44px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.toggle-custom ~ .checkbox-custom-dummy::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    background: #b7b7b7;
    transform: translate(4px, -50%);
    opacity: 1;
    transition: .22s;
}

.rd-form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    margin-bottom: -8px;
    margin-left: -8px;
}

.rd-form-inline:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.rd-form-inline > * {
    margin-top: 0;
    margin-bottom: 8px;
    margin-left: 8px;
}

.rd-form-inline > * {
    margin-top: 0;
}

.rd-form-inline .form-wrap {
    flex-grow: 1;
    min-width: 185px;
}

.rd-form-inline .form-wrap-select {
    text-align: left;
}

.rd-form-inline .form-button {
    flex-shrink: 0;
    max-width: calc(100% - 10px);
    min-height: 66px;
}

.rd-form-inline .form-button .btn {
    min-height: inherit;
}

@media (min-width: 576px) {
    .rd-form-inline .btn {
        display: block;
    }
}

.rd-form-inline.rd-form-inline-centered {
    justify-content: center;
}

.form-sm .form-input, .form-sm .btn {
    padding-top: 9px;
    padding-bottom: 9px;
    min-height: 40px;
}

.form-sm .form-validation {
    top: -16px;
}

.form-sm .form-label {
    top: 20px;
}

.form-sm * + .btn {
    margin-top: 10px;
}

.form-lg .form-input, .form-lg .form-label, .form-lg .select2-container .select2-choice {
    font-size: 16px;
}

.form-lg .form-input, .form-lg .select2-container .select2-choice {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.form-lg .form-input, .form-lg .select2-container .select2-choice {
    min-height: 58px;
}

.form-lg .form-button {
    min-height: 60px;
}

.form-lg .form-label {
    top: 30px;
}

/** @section Quotes */
.quote {
    position: relative;
    padding-top: 40px;
}

.quote q, .quote cite {
    display: block;
}

.quote-item {
    position: relative;
    display: inline-block;
}

.quote-icon {
    position: absolute;
    left: 100%;
    bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #c5a53d;
}

.quote-body {
    padding-top: 15px;
}

.quote-text {
    font-weight: 300;
    letter-spacing: .02em;
}

.quote-cite {
    color: #16a99f;
}

.quote-cite-meta {
    font-weight: 300;
    color: #9e9e9e;
    letter-spacing: .02em;
}

* + .quote-footer {
    width: 100%;
    max-width: 240px;
    display: inline-block;
    margin-top: 18.5px;
    padding-top: 19.5px;
    border-top: 2px solid #dee2e6;
}

* + .quote-cite-meta {
    margin-top: 7px;
}

.context-dark * + .quote-footer, .bg-gray-700 * + .quote-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 576px) {
    .quote {
        display: flex;
        text-align: left;
    }

    .quote-item {
        flex-shrink: 0;
        max-width: 35%;
    }

    .quote-body {
        padding-top: 15px;
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .quote-body {
        padding-left: 69.3px;
        padding-top: 24.5px;
    }

    * + .quote-footer {
        margin-top: 25.9px;
        padding-top: 27.3px;
    }
}

@media (min-width: 1600px) {
    .quote-body {
        padding-left: 99px;
        padding-top: 35px;
    }

    * + .quote-footer {
        margin-top: 37px;
        padding-top: 39px;
    }
}

/** @section Snackbars */
.snackbars {
    padding: 9px 16px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-align: left;
    background-color: #151515;
    border-radius: 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.snackbars .icon-xxs {
    font-size: 18px;
}

.snackbars p span:last-child {
    padding-left: 14px;
}

.snackbars-left {
    display: inline-block;
    margin-bottom: 0;
}

.snackbars-right {
    display: inline-block;
    float: right;
    text-transform: uppercase;
}

.snackbars-right:hover {
    text-decoration: underline;
}

@media (min-width: 576px) {
    .snackbars {
        max-width: 540px;
        padding: 12px 15px;
        font-size: 15px;
    }
}

/** @section Footers */
/** @section Person */
.person-meta {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .02em;
}

* + .person-title {
    margin-top: 20.5px;
}

* + .person-meta {
    margin-top: 10.5px;
}

@media (min-width: 992px) {
    * + .person-title {
        margin-top: 28.7px;
    }

    * + .person-meta {
        margin-top: 14.7px;
    }
}

@media (min-width: 1600px) {
    * + .person-title {
        margin-top: 41px;
    }

    * + .person-meta {
        margin-top: 21px;
    }
}

/** @section Events */
.event {
    margin-left: 0;
    margin-right: 0;
}

.event-col {
    padding: 0;
}

.event-time {
    font-weight: 700;
    letter-spacing: -.04em;
    color: #16a99f;
}

.event-meta {
    font-weight: 700;
    letter-spacing: -.04em;
    color: #b7b7b7;
}

.event-person {
    display: inline-flex;
    align-items: center;
    text-align: left;
}

.event-person-media {
    flex-shrink: 0;
    max-width: 35%;
}

.event-person-img {
    border-radius: 50%;
}

.event-person-body {
    padding-top: 0;
    padding-left: 20px;
}

.event-person-meta {
    font-weight: 300;
    letter-spacing: .02em;
}

.event + .event {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

* + .event-item {
    margin-top: 20px;
}

* + .event-person {
    margin-top: 10.5px;
}

* + .event-person-meta {
    margin-top: 3px;
}

@media (min-width: 992px) {
    .event + .event {
        margin-top: 40.6px;
        padding-top: 42.7px;
    }

    * + .event-item {
        margin-top: 28px;
    }

    * + .event-person {
        margin-top: 14.7px;
    }

    * + .event-person-meta {
        margin-top: 4.2px;
    }
}

@media (min-width: 1600px) {
    .event + .event {
        margin-top: 58px;
        padding-top: 61px;
    }

    * + .event-item {
        margin-top: 40px;
    }

    * + .event-person {
        margin-top: 21px;
    }

    * + .event-person-meta {
        margin-top: 6px;
    }
}

/** @section Layouts */
@media (min-width: 768px) {
    .layout-1 .layout-item-1 {
        margin-top: 350%;
    }

    .layout-1 .layout-item-2 {
        margin-top: 44%;
    }
}

@media (min-width: 992px) {
    .layout-2 .layout-item-1 {
        margin-top: 230%;
    }

    .layout-2 .layout-item-2 {
        margin-top: 6%;
    }
}

/** @section Product */
* + .product-title {
    margin-top: 21px;
}

@media (min-width: 992px) {
    * + .product-title {
        margin-top: 29.4px;
    }
}

@media (min-width: 1600px) {
    * + .product-title {
        margin-top: 42px;
    }
}

/** @section Header */
.header-inner {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11px;
    display: flex;
    justify-content: center;
}

.header-aside {
    text-align: right;
}

.header-col {
    padding: 0 28px;
}

.header-info {
    padding-top: 34px;
    font-weight: 700;
    line-height: 1.4;
}

* + .header-info-item {
    margin-top: 23px;
}

.header-date {
    color: #16a99f;
}

.header-phone {
    color: #c5a53d;
}

.header-phone:hover {
    color: #16a99f;
}

.context-dark .header {
    color: #ffffff;
}

.context-dark .header .header-phone {
    color: #c5a53d;
}

.context-dark .header .header-phone:hover {
    color: #ffffff;
}

.context-dark .header .list-social .icon {
    color: #868686;
}

.context-dark .header .list-social .icon:hover {
    color: #ffffff;
}

@media (min-width: 992px) {
    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .header-inner {
        justify-content: space-between;
    }
}

/** @group Plugins */
/** @section Animate */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 1;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

html:not(.lt-ie10) .not-animated {
    opacity: 0;
}

.ipad .not-animated, .ios .not-animated {
    opacity: 1 !important;
}

.ios .animated {
    animation: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

@keyframes slideOutDown {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    animation-name: slideOutDown;
}

/** @section Preloader */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #0d0d0d;
    transition: .3s all ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-body {
    text-align: center;
}

.preloader-body p {
    position: relative;
    right: -8px;
}

.cssload-jumping {
    position: relative;
    display: block;
    margin: 97px auto;
    width: 107px;
}

.cssload-jumping, .cssload-jumping * {
    box-sizing: border-box;
}

.cssload-jumping span {
    display: inline-block;
    height: 15px;
    width: 15px;
    background: #16a99f;
    border-radius: 487px;
    background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
}

.cssload-jumping span:nth-child(1) {
    animation: scale 1.15s 0.12s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-animation: scale 1.15s 0.12s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-animation: scale 1.15s 0.12s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-animation: scale 1.15s 0.12s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-animation: scale 1.15s 0.12s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.cssload-jumping span:nth-child(2) {
    animation: scale 1.15s 0.23s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-animation: scale 1.15s 0.23s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-animation: scale 1.15s 0.23s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-animation: scale 1.15s 0.23s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-animation: scale 1.15s 0.23s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.cssload-jumping span:nth-child(3) {
    animation: scale 1.15s 0.35s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-animation: scale 1.15s 0.35s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-animation: scale 1.15s 0.35s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-animation: scale 1.15s 0.35s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-animation: scale 1.15s 0.35s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.cssload-jumping span:nth-child(4) {
    animation: scale 1.15s 0.46s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-animation: scale 1.15s 0.46s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-animation: scale 1.15s 0.46s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-animation: scale 1.15s 0.46s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-animation: scale 1.15s 0.46s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.cssload-jumping span:nth-child(5) {
    animation: scale 1.15s 0.58s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-animation: scale 1.15s 0.58s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-animation: scale 1.15s 0.58s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -webkit-animation: scale 1.15s 0.58s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-animation: scale 1.15s 0.58s infinite cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

@keyframes scale {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(0.9, 0.9);
        background: #c5a53d;
    }

    50% {
        transform: scale(1, 1);
        margin: 0 3px;
        background: #16a99f;
    }

    100% {
        transform: scale(0);
    }
}

@-o-keyframes scale {
    0% {
        -o-transform: scale(0);
    }

    25% {
        -o-transform: scale(0.9, 0.9);
        background: #c5a53d;
    }

    50% {
        -o-transform: scale(1, 1);
        margin: 0 3px;
        background: #16a99f;
    }

    100% {
        -o-transform: scale(0);
    }
}

@-ms-keyframes scale {
    0% {
        -ms-transform: scale(0);
    }

    25% {
        -ms-transform: scale(0.9, 0.9);
        background: #c5a53d;
    }

    50% {
        -ms-transform: scale(1, 1);
        margin: 0 3px;
        background: #16a99f;
    }

    100% {
        -ms-transform: scale(0);
    }
}

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

    25% {
        -webkit-transform: scale(0.9, 0.9);
        background: #c5a53d;
    }

    50% {
        -webkit-transform: scale(1, 1);
        margin: 0 3px;
        background: #16a99f;
    }

    100% {
        -webkit-transform: scale(0);
    }
}

@-moz-keyframes scale {
    0% {
        -moz-transform: scale(0);
    }

    25% {
        -moz-transform: scale(0.9, 0.9);
        background: #c5a53d;
    }

    50% {
        -moz-transform: scale(1, 1);
        margin: 0 3px;
        background: #16a99f;
    }

    100% {
        -moz-transform: scale(0);
    }
}

/** @section ToTop */
.ui-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 100;
    width: 66px;
    height: 66px;
    font-size: 20px;
    line-height: 62px;
    color: #ffffff;
    background: #16a99f;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: .45s all ease-in-out;
    transform: translate3d(0, 100px, 0);
}

.ui-to-top:hover {
    color: #ffffff;
    background: #0d0d0d;
    text-decoration: none;
}

.ui-to-top:focus {
    color: #ffffff;
}

.ui-to-top.active {
    transform: translate3d(0, 0, 0);
}

html.mobile .ui-to-top, html.tablet .ui-to-top {
    display: none !important;
}

@media (min-width: 576px) {
    .ui-to-top {
        right: 40px;
        bottom: 40px;
    }
}

/** @section RD Navbar */
@keyframes rd-navbar-slide-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes rd-navbar-slide-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.rd-navbar-wrap, .rd-navbar, .rd-menu, .rd-navbar-nav, .rd-navbar-panel {
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
}

.rd-navbar--no-transition, .rd-navbar--no-transition * {
    transition: none !important;
}

.rd-navbar, .rd-navbar.rd-navbar--is-clone {
    display: none;
}

.rd-navbar.rd-navbar-fixed + .rd-navbar.rd-navbar--is-clone, .rd-navbar.rd-navbar-sidebar + .rd-navbar.rd-navbar--is-clone {
    display: none;
}

.rd-navbar {
    display: none;
    background: #ffffff;
}

.rd-navbar-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #cccccc;
    background-color: transparent;
    border: none;
    display: none;
}

.rd-navbar-toggle span {
    position: relative;
    display: block;
    margin: auto;
    transition: .3s all ease;
}

.rd-navbar-toggle span:after, .rd-navbar-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    transition: .3s all ease;
}

.rd-navbar-toggle span:after {
    top: 8px;
}

.rd-navbar-toggle span:after, .rd-navbar-toggle span:before, .rd-navbar-toggle span {
    width: 24px;
    height: 4px;
    background-color: #cccccc;
    backface-visibility: hidden;
    border-radius: 0;
}

.rd-navbar-toggle span {
    transform: rotate(180deg);
}

.rd-navbar-toggle span:before, .rd-navbar-toggle span:after {
    transform-origin: 1.71429px center;
}

.rd-navbar-toggle.active span {
    transform: rotate(360deg);
}

.rd-navbar-toggle.active span:before, .rd-navbar-toggle.active span:after {
    top: 0;
    width: 15px;
}

.rd-navbar-toggle.active span:before {
    -webkit-transform: rotate3d(0, 0, 1, -40deg);
    transform: rotate3d(0, 0, 1, -40deg);
}

.rd-navbar-toggle.active span:after {
    -webkit-transform: rotate3d(0, 0, 1, 40deg);
    transform: rotate3d(0, 0, 1, 40deg);
}

.rd-navbar-collapse-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #ffffff;
    display: none;
}

.rd-navbar-collapse-toggle span {
    top: 50%;
    margin-top: -3px;
}

.rd-navbar-collapse-toggle span, .rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
    position: absolute;
    width: 6px;
    height: 6px;
    line-height: 6px;
    text-align: center;
    background: #ffffff;
    left: 50%;
    margin-left: -3px;
    border-radius: 50%;
    transition: .3s all ease;
}

.rd-navbar-collapse-toggle span:before, .rd-navbar-collapse-toggle span:after {
    content: '';
}

.rd-navbar-collapse-toggle span:before {
    bottom: 100%;
    margin-bottom: 3px;
}

.rd-navbar-collapse-toggle span:after {
    top: 100%;
    margin-top: 3px;
}

.rd-navbar-collapse-toggle.active span {
    transform: scale(0.7);
}

.rd-navbar-collapse-toggle.active span:before {
    transform: translateY(18px);
}

.rd-navbar-collapse-toggle.active span:after {
    transform: translateY(-18px);
}

.rd-navbar-brand a {
    display: block;
}

/*
* @subsection  RD Navbar Static
*/
.rd-navbar-static {
    display: block;
    background-color: transparent;
}

.rd-navbar-static .rd-navbar-main-outer {
    padding-left: 20px;
    padding-right: 20px;
}

.rd-navbar-static .rd-navbar-main {
    max-width: 1840px;
    margin-left: auto;
    margin-right: auto;
}

.rd-navbar-static .rd-navbar-aside {
    text-align: right;
    color: #ffffff;
}

.rd-navbar-static .rd-navbar-main {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.rd-navbar-static .brand-logo-dark {
    display: none;
}

.rd-navbar-static .brand-logo-light {
    display: inline;
}

.rd-navbar-static .rd-navbar-info {
    font-weight: 700;
    line-height: 1.4;
}

.rd-navbar-static .rd-navbar-info-date {
    color: #16a99f;
}

.rd-navbar-static .rd-navbar-info-link {
    color: #c5a53d;
}

.rd-navbar-static .rd-navbar-info-link:hover {
    color: #ffffff;
}

.rd-navbar-static .rd-navbar-info-item + .rd-navbar-info-item {
    margin-top: 22px;
}

.rd-navbar-static .list-social .icon {
    color: #868686;
}

.rd-navbar-static .list-social .icon:hover {
    color: #ffffff;
}

.header-absolute {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

/*
*
* RD Navbar Fixed
*/
.rd-navbar-fixed {
    display: block;
}

.rd-navbar-fixed .rd-navbar-toggle {
    display: inline-block;
}

.rd-navbar-fixed .rd-navbar-brand {
    position: relative;
    margin-left: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    font-size: 22px;
    line-height: 46px;
}

.rd-navbar-fixed .rd-navbar-brand img {
    max-width: 160px;
    max-height: 43px;
    width: auto;
    height: auto;
}

.rd-navbar-fixed .brand-logo-dark {
    display: none;
}

.rd-navbar-fixed .brand-logo-light {
    display: none;
}

.rd-navbar-fixed .brand-logo-mobile {
    display: inline;
}

.rd-navbar-fixed .rd-navbar-panel {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    height: 56px;
    padding: 4px;
}

.rd-navbar-fixed .rd-navbar-info {
    font-weight: 700;
}

.rd-navbar-fixed .rd-navbar-info-item + .rd-navbar-info-item {
    margin-top: 11px;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
    cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle::after {
    content: '\f107';
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 52px;
    font: 400 14px "FontAwesome";
    line-height: 52px;
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-collapse-toggle {
    display: block;
    top: 4px;
    z-index: 1081;
}

.rd-navbar-fixed .rd-navbar-collapse {
    position: fixed;
    right: 0;
    top: 56px;
    z-index: 1079;
    transform: translate3d(0, -10px, 0);
    padding: 15px 15px 25px;
    width: auto;
    border-radius: 0;
    text-align: left;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.rd-navbar-fixed .rd-navbar-collapse.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline > li {
    display: block;
}

.rd-navbar-fixed .rd-navbar-collapse .list-inline > li + li {
    margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-main-element {
    position: absolute;
    float: left;
}

.rd-navbar-fixed [class*='rd-navbar-fixed-element'] {
    position: fixed;
    top: 4px;
    z-index: 1082;
}

.rd-navbar-fixed .rd-navbar-fixed-element-1 {
    right: 0;
}

.rd-navbar-fixed .rd-navbar-fixed-element-2 {
    right: 46px;
}

.rd-navbar-fixed .rd-navbar-panel {
    color: #9e9e9e;
    box-shadow: none;
    background: #1a1a1a;
}

.rd-navbar-fixed .rd-navbar-collapse {
    background-color: #1a1a1a;
    box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.17);
}

.rd-navbar-fixed .rd-navbar-collapse, .rd-navbar-fixed .rd-navbar-collapse a {
    color: #9e9e9e;
}

.rd-navbar-fixed .rd-navbar-collapse .rd-navbar-info-date {
    color: #16a99f;
}

.rd-navbar-fixed .rd-navbar-collapse .rd-navbar-info-link {
    color: #c5a53d;
}

.rd-navbar-fixed .rd-navbar-collapse .rd-navbar-info-link:hover {
    color: #ffffff;
}

html.rd-navbar-fixed-linked .page {
    padding-top: 56px;
}

/*
*
* RD Navbar Sidebar
*/
.rd-navbar-sidebar {
    display: block;
    background: #ffffff;
}

.rd-navbar-sidebar .rd-navbar-main-outer {
    padding-left: 20px;
    padding-right: 20px;
}

.rd-navbar-sidebar .rd-navbar-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 60px 22px 0;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rd-navbar-sidebar .rd-navbar-main-element {
    display: flex;
    align-items: center;
}

.rd-navbar-sidebar .rd-navbar-main-element > * + * {
    margin-left: 20px;
}

.rd-navbar-sidebar .rd-navbar-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    z-index: 1102;
}

.rd-navbar-sidebar .rd-navbar-panel {
    min-width: 200px;
    text-align: center;
}

.rd-navbar-sidebar .rd-navbar-brand img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 200px;
}

.rd-navbar-sidebar .rd-navbar-nav-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1101;
    width: 450px;
    padding: 94px 0 0 0;
    background: #ffffff;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    box-shadow: 0 0 13px 0 rgba(204, 204, 204, 0.16);
}

.rd-navbar-sidebar .rd-navbar-nav-wrap.active {
    transition-delay: .1s;
    transform: translateX(0);
}

.rd-navbar-sidebar .rd-navbar-nav {
    height: calc(100vh - 100px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #d7d7d7;
}

.rd-navbar-sidebar .rd-nav-item {
    position: relative;
    display: block;
    padding: 19px 30px 19px 40px;
}

.rd-navbar-sidebar .rd-nav-item.active .rd-nav-link {
    color: #16a99f;
}

.rd-navbar-sidebar .rd-nav-item .rd-nav-link, .rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle {
    font-size: 18px;
}

.rd-navbar-sidebar .rd-nav-item + .rd-nav-item {
    border-top: 1px solid #d7d7d7;
}

.rd-navbar-sidebar .rd-nav-item:last-child {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 30px;
}

.rd-navbar-sidebar .rd-nav-link {
    max-width: calc(100% - 30px);
    word-break: break-all;
    font-size: 18px;
    line-height: 1.4;
    text-transform: none;
    color: #cccccc;
}

.rd-navbar-sidebar .rd-nav-link:hover {
    color: #16a99f;
}

.rd-navbar-sidebar .rd-navbar-submenu .opened > .rd-navbar-submenu-toggle::after {
    transform: rotate(180deg);
}

.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-dropdown, .rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-megamenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility;
    transition: opacity .2s;
}

.rd-navbar-sidebar .rd-navbar-submenu.opened > .rd-navbar-dropdown, .rd-navbar-sidebar .rd-navbar-submenu.opened > .rd-navbar-megamenu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu > .rd-navbar-dropdown, .rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu > .rd-navbar-megamenu {
    transform: translateY(30px);
}

.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu.opened > .rd-navbar-dropdown, .rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu.opened > .rd-navbar-megamenu {
    transform: translateY(0);
}

.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu .rd-navbar-submenu > .rd-navbar-dropdown {
    transform: translateX(-20px);
}

.rd-navbar-sidebar .rd-navbar-submenu > .rd-navbar-submenu .rd-navbar-submenu.opened > .rd-navbar-dropdown {
    transform: translateX(0);
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle, .rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: inherit;
    padding-right: inherit;
    padding-left: 10px;
    margin-bottom: inherit;
    display: inline-block;
    width: 30px;
    margin-left: 5px;
    text-align: center;
    cursor: pointer;
    color: #2c343b;
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle:hover, .rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle:hover {
    color: #16a99f;
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-submenu-toggle::after, .rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle::after {
    content: '\f107';
    position: relative;
    display: inline-block;
    font-family: "FontAwesome";
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    vertical-align: middle;
    transition: 0.4s all ease;
    z-index: 2;
    will-change: transform;
}

.rd-navbar-sidebar .rd-nav-item .rd-navbar--has-dropdown > .rd-navbar-submenu-toggle {
    font-size: 14px;
    color: #cccccc;
    margin-left: 7px;
}

.rd-navbar-sidebar .rd-menu {
    margin-top: 31px;
}

.rd-navbar-sidebar .rd-navbar-dropdown, .rd-navbar-sidebar .rd-megamenu-list {
    font-size: 14px;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a, .rd-navbar-sidebar .rd-megamenu-list li > a {
    position: relative;
    left: -3px;
    display: flex;
    padding: 1px 14px 1px 0;
    text-align: left;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a, .rd-navbar-sidebar .rd-navbar-dropdown li > a:focus, .rd-navbar-sidebar .rd-navbar-dropdown li > a:active, .rd-navbar-sidebar .rd-megamenu-list li > a, .rd-navbar-sidebar .rd-megamenu-list li > a:focus, .rd-navbar-sidebar .rd-megamenu-list li > a:active {
    color: #9e9e9e;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a:hover, .rd-navbar-sidebar .rd-megamenu-list li > a:hover {
    color: #16a99f;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a, .rd-navbar-sidebar .rd-navbar-dropdown li > a::before, .rd-navbar-sidebar .rd-megamenu-list li > a, .rd-navbar-sidebar .rd-megamenu-list li > a::before {
    transition: .15s ease-in-out;
}

.rd-navbar-sidebar .rd-navbar-dropdown li > a::before, .rd-navbar-sidebar .rd-megamenu-list li > a::before {
    position: relative;
    top: -1px;
    left: -6px;
    display: inline-block;
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: inherit;
    line-height: inherit;
    color: #16a99f;
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a, .rd-navbar-sidebar .rd-navbar-dropdown li.opened > a, .rd-navbar-sidebar .rd-navbar-dropdown li > a:hover, .rd-navbar-sidebar .rd-megamenu-list li.focus > a, .rd-navbar-sidebar .rd-megamenu-list li.opened > a, .rd-navbar-sidebar .rd-megamenu-list li > a:hover {
    left: 0;
    padding-left: 14px;
    padding-right: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown li.focus > a::before, .rd-navbar-sidebar .rd-navbar-dropdown li.opened > a::before, .rd-navbar-sidebar .rd-navbar-dropdown li > a:hover::before, .rd-navbar-sidebar .rd-megamenu-list li.focus > a::before, .rd-navbar-sidebar .rd-megamenu-list li.opened > a::before, .rd-navbar-sidebar .rd-megamenu-list li > a:hover::before {
    left: -7px;
    opacity: 1;
    visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-megamenu {
    max-width: 450px;
    margin-bottom: -30px;
}

.rd-navbar-sidebar .rd-navbar-megamenu > * {
    margin-bottom: 30px;
}

.rd-navbar-sidebar .rd-navbar-megamenu > li {
    display: inline-block;
    vertical-align: top;
    width: 45%;
}

.rd-navbar-sidebar .rd-megamenu-title {
    display: none;
}

.rd-navbar-sidebar .rd-megamenu-list {
    margin-top: 0;
}

.rd-navbar-sidebar .rd-megamenu-list > li + li {
    margin-top: 10px;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a {
    padding-right: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a::before {
    display: none;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown > a:hover {
    padding-left: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.focus > a {
    padding-left: 0;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened > .rd-navbar-submenu-toggle {
    color: #16a99f;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar--has-dropdown.opened > .rd-navbar-submenu-toggle::after {
    top: 1px;
}

.rd-navbar-sidebar .rd-navbar-dropdown > li + li {
    margin-top: 10px;
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown {
    margin-top: 25px;
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown .rd-navbar-dropdown {
    margin-top: 10px;
    padding-left: 15px;
}

.rd-navbar-sidebar .rd-nav-item > .rd-navbar-dropdown .rd-navbar-dropdown > li > a {
    font-size: 12px;
}

@media (min-width: 1200px) {
    .rd-navbar-sidebar .rd-navbar-megamenu {
        margin-bottom: -30px;
    }

    .rd-navbar-sidebar .rd-navbar-megamenu > * {
        margin-bottom: 30px;
    }

    .rd-navbar-sidebar .rd-navbar-dropdown > li + li, .rd-navbar-sidebar .rd-megamenu-list > li + li {
        margin-top: 18px;
    }
}

@media (min-width: 1200px) {
    .rd-navbar-sidebar .rd-navbar-nav-wrap {
        width: auto;
        left: calc(50% + 600px - 80px);
    }
}

.rd-navbar-sidebar.rd-navbar--is-clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-101%);
}

.rd-navbar-sidebar.rd-navbar--is-clone.rd-navbar--is-stuck {
    transform: translateY(0);
}

.rd-navbar-sidebar.rd-navbar--is-stuck {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
}

.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-main {
    padding-top: 11px;
    padding-bottom: 11px;
}

/** @section Google Map */
.google-map-markers {
    display: none;
}

.google-map-container {
    width: 100%;
}

.google-map-container button img {
    margin: 0;
}

.google-map {
    height: 250px;
    width: 100%;
}

@media (min-width: 768px) {
    .google-map {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .google-map {
        height: 320px;
    }
}

/** @section Nav custom */
/* Tabs */
.tab-content {
    padding-top: 50.5px;
}

@media (min-width: 992px) {
    .tab-content {
        padding-top: 70.7px;
    }
}

@media (min-width: 1600px) {
    .tab-content {
        padding-top: 101px;
    }
}

.nav {
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(183, 183, 183, 0.3);
    overflow-x: auto;
    overflow-x: overlay;
    overflow-y: hidden;
}

.nav .nav-link {
    white-space: nowrap;
}

.nav::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: rgba(183, 183, 183, 0.3);
}

.nav::-webkit-scrollbar-thumb {
    background: rgba(183, 183, 183, 0.8);
}

.mobile .nav::-webkit-scrollbar, .nav:hover::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

/* Navigation line */
.nav-line {
    position: relative;
}

.nav-line .nav-item:not(:last-child) {
    margin-right: 25px;
}

.nav-line .nav-link {
    position: relative;
    padding: 0;
    font-weight: 700;
    color: #0d0d0d;
}

.nav-line .nav-link::before {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    content: '';
    transform: translateX(-50%);
    border-bottom: 2px solid;
    transition: all 0.3s ease-in-out;
}

.nav-line .nav-link:hover {
    color: #16a99f;
}

.nav-line .nav-link.active {
    color: #16a99f;
}

.nav-line .nav-link.active::before {
    width: 100%;
}

@media (min-width: 992px) {
    .nav-line .nav-item:not(:last-child) {
        margin-right: 35px;
    }
}

/** @section Counter */
/* Counter container */
.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -20px;
    margin-left: -30px;
}

.counter-container:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.counter-container > * {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 30px;
}

.counter-container > * {
    flex-shrink: 0;
}

.counter-container > *:not(:last-child) .counter-value {
    position: relative;
}

.counter-container > *:not(:last-child) .counter-value::after {
    margin-left: .15em;
    content: '/';
}

@media (min-width: 992px) {
    .counter-container {
        justify-content: flex-start;
    }
}

/* Counter simple */
.counter-simple {
    text-align: left;
}

.counter-simple .counter-value {
    font-weight: 500;
}

.counter-simple .counter-title {
    font-weight: 300;
    letter-spacing: .02em;
}

.counter-simple * + .counter-title {
    margin-top: 4px;
}

.context-dark .counter-title, .bg-gray-700 .counter-title {
    color: #9e9e9e;
}

@media (min-width: 992px) {
    .counter-simple * + .counter-title {
        margin-top: 9px;
    }
}

/** @section Owl Carousel */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-nav, .owl-carousel .owl-dots {
    -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next, .owl-carousel .owl-dot {
    cursor: pointer;
    user-select: none;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .owl-nav {
    pointer-events: none;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    background: transparent;
    color: #151515;
    border: 2px solid;
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-prev::before, .owl-carousel .owl-prev::after, .owl-carousel .owl-next::before, .owl-carousel .owl-next::after {
    display: block;
    font-family: "FontAwesome";
}

.owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
    text-decoration: none;
    color: #16a99f;
}

.owl-carousel .owl-prev.disabled, .owl-carousel .owl-next.disabled {
    opacity: .5;
    cursor: default;
}

.owl-carousel .owl-prev {
    left: 10px;
}

.owl-carousel .owl-prev::before {
    content: '\f104';
}

.owl-carousel .owl-next {
    right: 10px;
}

.owl-carousel .owl-next::before {
    content: '\f105';
}

.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    zoom: 1; margin: 0 5px;
}

.owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #151515;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 5px;
}

.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
    background: #16a99f;
}

* + .owl-carousel {
    margin-top: 20px;
}

.context-dark .owl-carousel .owl-prev, .bg-gray-700 .owl-carousel .owl-prev, .context-dark .owl-carousel .owl-next, .bg-gray-700 .owl-carousel .owl-next {
    color: rgba(255, 255, 255, 0.2);
}

.context-dark .owl-carousel .owl-prev:hover, .bg-gray-700 .owl-carousel .owl-prev:hover, .context-dark .owl-carousel .owl-next:hover, .bg-gray-700 .owl-carousel .owl-next:hover {
    color: white;
}

.context-dark .owl-carousel .owl-dot span, .bg-gray-700 .owl-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.3);
}

.context-dark .owl-carousel .owl-dot.active span, .bg-gray-700 .owl-carousel .owl-dot.active span, .context-dark .owl-carousel .owl-dot:hover span, .bg-gray-700 .owl-carousel .owl-dot:hover span {
    background: #16a99f;
}

@media (min-width: 992px) {
    * + .owl-carousel {
        margin-top: 40px;
    }
}

@media (min-width: 1600px) {
    * + .owl-carousel {
        margin-top: 80px;
    }
}

/* Owl carousel 1 */
.owl-carousel-1 {
    position: relative;
}

.owl-carousel-1 .owl-nav {
    position: static;
    margin-top: 24px;
    margin-bottom: -20px;
    margin-left: -20px;
}

.owl-carousel-1 .owl-nav:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.owl-carousel-1 .owl-nav > * {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 20px;
}

.owl-carousel-1 .owl-prev, .owl-carousel-1 .owl-next {
    display: inline-flex;
    position: static;
    transform: none;
}

* + .owl-carousel-1 {
    margin-top: 50.5px;
}

@media (min-width: 768px) {
    .owl-carousel-1 {
        position: relative;
    }

    .owl-carousel-1 .owl-nav {
        position: absolute;
        bottom: calc( 100% + 101px * 0.5);
        right: 0;
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .owl-carousel-1 .owl-nav {
        bottom: calc( 100% + 101px * 0.7);
    }

    * + .owl-carousel-1 {
        margin-top: 70.7px;
    }
}

@media (min-width: 1600px) {
    .owl-carousel-1 .owl-nav {
        bottom: calc( 100% + 101px);
    }

    * + .owl-carousel-1 {
        margin-top: 101px;
    }
}

/** @section Bootstrap Modal */
.ios .modal-open {
    position: fixed;
    width: 100%;
    height: 100%;
}
