@charset "UTF-8";

/**
 * [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 Blocks
 *     3.5 Boxes
 *     3.6 Groups
 *     3.7 Responsive units
 *     3.8 Lists
 *     3.9 Images
 *     3.10 Icons
 *     3.11 Tables custom
 *     3.12 Dividers
 *     3.13 Buttons
 *     3.14 Forms
 *     3.15 Posts
 *     3.16 Quotes
 *     3.17 Thumbnails
 *     3.18 Breadcrumbs
 *     3.19 Pagination custom
 *     3.20 Snackbars
 *     3.21 Bloquotes
 *     3.22 Footers
 *   4 Plugins
 *     4.1 Animate
 *     4.2 Preloader
 *     4.3 ToTop
 *     4.4 Search Results
 *     4.5 Nav custom
 *     4.6 Panel custom
 *     4.7 Tooltop Custom
 *     4.8 Owl Carousel
 *     4.9 Material Parallax
 *     4.10 Parallax js
 *     4.11 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,
.bg-primary,
.context-dark h1,
.bg-gray-700 h1,
.bg-primary h1,
.context-dark h2,
.bg-gray-700 h2,
.bg-primary h2,
.context-dark h3,
.bg-gray-700 h3,
.bg-primary h3,
.context-dark h4,
.bg-gray-700 h4,
.bg-primary h4,
.context-dark h5,
.bg-gray-700 h5,
.bg-primary h5,
.context-dark h6,
.bg-gray-700 h6,
.bg-primary h6,
.context-dark .h1,
.bg-gray-700 .h1,
.bg-primary .h1,
.context-dark .h2,
.bg-gray-700 .h2,
.bg-primary .h2,
.context-dark .h3,
.bg-gray-700 .h3,
.bg-primary .h3,
.context-dark .h4,
.bg-gray-700 .h4,
.bg-primary .h4,
.context-dark .h5,
.bg-gray-700 .h5,
.bg-primary .h5,
.context-dark .h6,
.bg-gray-700 .h6,
.bg-primary .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+*,
.h2+* {
    margin-top: 50px;
}

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

@media (min-width: 768px) {

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

h2+.big,
.h2+.big {
    margin-top: 30px;
}

h4+.h3,
.h4+.h3 {
    margin-top: .35em;
}

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

article.team+* {
    margin-top: 100px;
}

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

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

.row+.row {
    margin-top: 50px;
}

*+cite {
    display: inline-block;
    margin-top: 20px;
}

*+.team-content {
    margin-top: 30px;
}

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

/** @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;
}

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

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

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

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

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

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

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

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

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

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

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

.text-secondary {
    color: #b3b3b3 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-inset-1,
.section-inset-2 {
    padding: 80px 0;
}

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

.section-collapse:last-child {
    padding-bottom: 0;
}

.section-footer-size {
    padding: 150px 0 100px;
}

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

@media (max-width: 991.98px) {

    section.section-sm:first-of-type,
    section.section-md:first-of-type,
    section.section-lg:first-of-type,
    section.section-xl:first-of-type,
    section.section-xxl:first-of-type {
        padding-top: 40px;
    }
}

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

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

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

    .section-xxl,
    section-inset-2 {
        padding: 100px 0;
    }

    .section-inset-1 {
        padding: 110px 0 120px;
    }
}

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

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

    .section-xxl,
    .section-inset-2 {
        padding: 120px 0;
    }

    .section-inset-1 {
        padding: 120px 0 130px;
    }
}

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

    .section-xxl,
    .section-inset-2 {
        padding: 150px 0;
    }

    .section-inset-1 {
        padding: 160px 0 170px;
    }
}

@media (min-width: 1600px) {
    .section-inset-2 {
        padding: 220px 0;
    }

    .section-inset-1 {
        padding: 280px 0 290px;
    }

    .section-xl {
        padding: 100px 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;
}

@media (min-width: 1600px) {
    .row {
        margin-left: -25px;
        margin-right: -25px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-default {
    background-color: #ffffff;
}

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

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

.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: #FFCD00;
}

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

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

.bg-img-box {
    position: relative;
}

.bg-img-overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
}

@media (min-width: 1200px) {
    .bg-img-overlay::before {
        display: none;
    }
}

.bg-img {
    position: absolute;
    top: 0;
    left: calc((100% - 100vw) / 2);
    bottom: 0;
    width: 100vw;
}

@media (min-width: 1200px) {
    .bg-img {
        left: 0;
    }
}

@media (min-width: 1600px) {
    .bg-img {
        width: calc(100vw - ((100vw - 1720px) / 2));
    }
}

@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;
    letter-spacing: 0;
    color: #000000;
    margin: 0 auto;
}

@media (min-width: 576px) {
    p.rights {
        margin: 0;
    }
}

p.rights a {
    color: inherit;
}

p.rights a:hover {
    color: #FFCD00;
}

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

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

/** @group Components */
/** @section Typography */
body {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.58333;
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: subpixel-antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

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: #FFCD00;
}

h1,
.h1 {
    font-size: 38px;
    line-height: 1;
}

@media (min-width: 768px) {

    h1,
    .h1 {
        font-size: 66.8px;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 86px;
    }
}

h2,
.h2 {
    font-size: 48px;
    line-height: 1;
}

@media (min-width: 768px) {

    h2,
    .h2 {
        font-size: 57.6px;
    }
}

@media (min-width: 1200px) {

    h2,
    .h2 {
        font-size: 72px;
    }
}

h3,
.h3 {
    font-size: 32px;
    line-height: 1;
}

@media (min-width: 768px) {

    h3,
    .h3 {
        font-size: 38.4px;
    }
}

@media (min-width: 1200px) {

    h3,
    .h3 {
        font-size: 48px;
    }
}

h4,
.h4 {
    font-size: 24px;
    line-height: 1;
}

@media (min-width: 768px) {

    h4,
    .h4 {
        font-size: 36px;
    }
}

h5,
.h5 {
    font-size: 24px;
    line-height: 1;
}

h6,
.h6 {
    font-size: 20px;
    line-height: 1;
}

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

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

@media (min-width: 992px) {
    .big {
        font-size: 20px;
        line-height: 1.61111;
    }
}

@media (min-width: 768px) {
    .middle {
        font-size: 30px;
        line-height: 1.2;
    }
}

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

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

p {
    letter-spacing: .1em;
    font-size: 19.2px;
}

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

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

@media (min-width: 768px) {
    p {
        line-height: 1.58333;
        font-size: 24px;
    }
}

q {
    letter-spacing: .1em;
}

cite {
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

::selection {
    background: #FFCD00;
    color: #ffffff;
}

::-moz-selection {
    background: #FFCD00;
    color: #ffffff;
}

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

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

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

/** @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: #000000;
}

a:hover {
    color: #FFCD00;
}

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

.link-hover {
    color: #FFCD00;
}

.link-press {
    color: #FFCD00;
}

/** @section Blocks */
.block-center,
.block-sm,
.block-lg {
    margin-left: auto;
    margin-right: auto;
}

.block-sm {
    max-width: 560px;
}

.block-lg {
    max-width: 768px;
}

.block-center {
    padding: 10px;
}

.block-center:hover .block-center-header {
    background-color: #FFCD00;
}

.block-center-title {
    background-color: #ffffff;
}

@media (max-width: 1599.98px) {
    .block-center {
        padding: 20px;
    }

    .block-center:hover .block-center-header {
        background-color: #ffffff;
    }

    .block-center-header {
        background-color: #FFCD00;
    }
}

/** @section Boxes */
.box-minimal {
    text-align: center;
}

.box-minimal .box-minimal-icon {
    font-size: 50px;
    line-height: 50px;
    color: #FFCD00;
}

.box-minimal-divider {
    width: 36px;
    height: 4px;
    margin-left: auto;
    margin-right: auto;
    background: #FFCD00;
}

.box-minimal-text {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

*+.box-minimal {
    margin-top: 30px;
}

*+.box-minimal-title {
    margin-top: 10px;
}

*+.box-minimal-divider {
    margin-top: 20px;
}

*+.box-minimal-text {
    margin-top: 15px;
}

.context-dark .box-minimal p,
.bg-gray-700 .box-minimal p,
.bg-primary .box-minimal p {
    color: #000000;
}

.box-counter {
    position: relative;
    text-align: center;
    color: #2c343b;
}

.box-counter-title {
    display: inline-block;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -.025em;
}

.box-counter-main {
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
}

.box-counter-main>* {
    display: inline;
    font: inherit;
}

.box-counter-main .small {
    font-size: 28px;
}

.box-counter-main .small_top {
    position: relative;
    top: .2em;
    vertical-align: top;
}

.box-counter-divider {
    font-size: 0;
    line-height: 0;
}

.box-counter-divider::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #FFCD00;
}

*+.box-counter-title {
    margin-top: 10px;
}

*+.box-counter-main {
    margin-top: 20px;
}

*+.box-counter-divider {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .box-counter-title {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .box-counter-main {
        font-size: 60px;
    }

    .box-counter-main .small {
        font-size: 36px;
    }

    *+.box-counter-main {
        margin-top: 30px;
    }

    *+.box-counter-divider {
        margin-top: 15px;
    }

    *+.box-counter-title {
        margin-top: 18px;
    }
}

.bg-primary .box-counter {
    color: #ffffff;
}

.bg-primary .box-counter-divider::after {
    background: #ffffff;
}

/** @section Groups */
html .group {
    margin-bottom: -20px;
    margin-left: -15px;
}

html .group:empty {
    margin-bottom: 0;
    margin-left: 0;
}

html .group>* {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 15px;
}

html .group-sm {
    margin-bottom: -10px;
    margin-left: -10px;
}

html .group-sm:empty {
    margin-bottom: 0;
    margin-left: 0;
}

html .group-sm>* {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 10px;
}

html .group-xl {
    margin-bottom: -20px;
    margin-left: -30px;
}

html .group-xl:empty {
    margin-bottom: 0;
    margin-left: 0;
}

html .group-xl>* {
    margin-top: 0;
    margin-bottom: 20px;
    margin-left: 30px;
}

@media (min-width: 992px) {
    html .group-xl {
        margin-bottom: -20px;
        margin-left: -45px;
    }

    html .group-xl>* {
        margin-bottom: 20px;
        margin-left: 45px;
    }
}

html .group-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

html .group-custom>* {
    width: 100%;
}

@media (min-width: 576px) {
    html .group-custom {
        flex-direction: row;
    }
}

*+.group-sm {
    margin-top: 30px;
}

*+.group-xl {
    margin-top: 20px;
}

/** @section Responsive units */
.unit {
    display: flex;
    flex: 0 1 100%;
    margin-bottom: -30px;
    margin-left: -20px;
}

.unit>* {
    margin-bottom: 30px;
    margin-left: 20px;
}

.unit:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.unit-body {
    flex: 0 1 auto;
}

.unit-left,
.unit-right {
    flex: 0 0 auto;
    max-width: 100%;
}

.unit-spacing-xs {
    margin-bottom: -15px;
    margin-left: -7px;
}

.unit-spacing-xs>* {
    margin-bottom: 15px;
    margin-left: 7px;
}

/** @section Lists */
.list>li+li {
    margin-top: 10px;
}

.list-xs>li+li {
    margin-top: 5px;
}

.list-sm>li+li {
    margin-top: 10px;
}

.list-md>li+li {
    margin-top: 18px;
}

.list-lg>li+li {
    margin-top: 25px;
}

.list-xl>li+li {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .list-xl>li+li {
        margin-top: 60px;
    }
}

.list-inline>li {
    display: inline-block;
}

html .list-inline-md {
    transform: translate3d(0, -8px, 0);
    margin-bottom: -8px;
    margin-left: -10px;
    margin-right: -10px;
}

html .list-inline-md>* {
    margin-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 992px) {
    html .list-inline-md {
        margin-left: -15px;
        margin-right: -15px;
    }

    html .list-inline-md>* {
        padding-left: 15px;
        padding-right: 15px;
    }
}

*+.list-terms {
    margin-top: 25px;
}

.list-terms+* {
    margin-top: 25px;
}

.list-terms dt+dd {
    margin-top: 5px;
}

.list-terms dd+dt {
    margin-top: 25px;
}

.index-list {
    counter-reset: li;
}

.index-list>li .list-index-counter:before {
    content: counter(li, decimal-leading-zero);
    counter-increment: li;
}

.list-marked {
    text-align: left;
}

.list-marked>li {
    position: relative;
    padding-left: 25px;
}

.list-marked>li::before {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 1px;
    min-width: 25px;
    content: '\f105';
    font: 400 14px/24px 'FontAwesome';
    color: #b7b7b7;
}

.list-marked>li+li {
    margin-top: 4px;
}

*+.list-marked {
    margin-top: 15px;
}

p+.list-marked {
    margin-top: 10px;
}

.list-ordered {
    counter-reset: li;
    text-align: left;
}

.list-ordered>li {
    position: relative;
    padding-left: 25px;
}

.list-ordered>li:before {
    position: absolute;
    content: counter(li, decimal) ".";
    counter-increment: li;
    top: 0;
    left: 0;
    display: inline-block;
    width: 15px;
    color: #b7b7b7;
}

.list-ordered>li+li {
    margin-top: 10px;
}

*+.list-ordered {
    margin-top: 15px;
}

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

.img-responsive {
    width: 100%;
}

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

.icon:hover {
    color: #FFCD00;
}

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

.icon-circle {
    border-radius: 50%;
}

.list-social li {
    padding-right: 15px;
}

.icon:hover>svg {
    fill: red;
}

/** @section Tables custom */
.table-custom {
    width: 100%;
    max-width: 100%;
    text-align: left;
    background: #ffffff;
    border-collapse: collapse;
}

.table-custom th,
.table-custom td {
    color: #2c343b;
    background: #ffffff;
}

.table-custom th {
    padding: 35px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: #d7d7d7;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .table-custom th {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.table-custom td {
    padding: 17px 24px;
}

.table-custom tbody tr:first-child td {
    border-top: 0;
}

.table-custom tr td {
    border-bottom: 1px solid #cccccc;
}

.table-custom tfoot td {
    font-weight: 700;
}

*+.table-custom-responsive {
    margin-top: 30px;
}

@media (min-width: 768px) {
    *+.table-custom-responsive {
        margin-top: 40px;
    }
}

.table-custom.table-custom-primary thead th {
    color: #ffffff;
    background: #FFCD00;
    border: 0;
}

.table-custom.table-custom-primary tbody tr:hover td {
    background: #d7d7d7;
}

.table-custom.table-custom-bordered tr td:first-child {
    border-left: 0;
}

.table-custom.table-custom-bordered tr td:last-child {
    border-right: 0;
}

.table-custom.table-custom-bordered td {
    border: 1px solid #cccccc;
}

.table-custom.table-custom-bordered tbody>tr:first-of-type>td {
    border-top: 0;
}

.table-custom.table-custom-striped {
    border-bottom: 1px solid #cccccc;
}

.table-custom.table-custom-striped tbody tr:nth-of-type(odd) td {
    background: transparent;
}

.table-custom.table-custom-striped tbody tr:nth-of-type(even) td {
    background: #d7d7d7;
}

.table-custom.table-custom-striped tbody td {
    border: 0;
}

.table-custom.table-custom-striped tfoot td:not(:first-child) {
    border-left: 0;
}

@media (max-width: 991.98px) {
    .table-custom-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-custom-responsive.table-bordered {
        border: 0;
    }
}

/** @section Dividers */
hr {
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid #d7d7d7;
}

.divider {
    font-size: 0;
    line-height: 0;
}

.divider::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #FFCD00;
}

/** @section Buttons */
.btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    border: 1px solid;
    border-radius: 0;
    padding: 12px 25px;
    font-size: 16px;
    line-height: 17px;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: .33s all ease;
    white-space: normal;
    text-transform: none;
    cursor: pointer;
    text-align: center;
}

.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: #420000;
    border-color: #420000;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active {
    color: #420000;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

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

.btn-gray-100,
.btn-gray-100:focus {
    color: #151515;
    background-color: #edeff4;
    border-color: #edeff4;
}

.btn-gray-100:not(:disabled):not(.disabled):active,
.btn-gray-100:not(:disabled):not(.disabled).active,
.btn-gray-100:hover,
.btn-gray-100:active,
.btn-gray-100.active {
    color: #151515;
    background-color: #dde1ea;
    border-color: #dde1ea;
}

.btn-gray-100.btn-ujarak::before {
    background: #dde1ea;
}

.btn-default-outline,
.btn-default-outline:focus {
    color: #cccccc;
    background-color: transparent;
    border-color: #2c343b;
}

.btn-default-outline:not(:disabled):not(.disabled):active,
.btn-default-outline:not(:disabled):not(.disabled).active,
.btn-default-outline:hover,
.btn-default-outline:active,
.btn-default-outline.active {
    color: #ffffff;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

.btn-default-outline.btn-ujarak::before {
    background: #FFCD00;
}

.btn-default-outline,
.btn-default-outline:focus {
    color: #cccccc;
    background-color: transparent;
    border-color: #2c343b;
}

.btn-default-outline:not(:disabled):not(.disabled):active,
.btn-default-outline:not(:disabled):not(.disabled).active,
.btn-default-outline:hover,
.btn-default-outline:active,
.btn-default-outline.active {
    color: #ffffff;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

.btn-default-outline.btn-ujarak::before {
    background: #FFCD00;
}

.btn-ghost {
    border: 0;
    background-color: transparent;
}

.btn-ghost:hover {
    color: #ffffff;
    background: #FFCD00;
}

.btn-facebook,
.btn-facebook:focus {
    color: #ffffff;
    background-color: #4d70a8;
    border-color: #4d70a8;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.btn-facebook:hover,
.btn-facebook:active,
.btn-facebook.active {
    color: #ffffff;
    background-color: #456497;
    border-color: #456497;
}

.btn-facebook.btn-ujarak::before {
    background: #456497;
}

.btn-twitter,
.btn-twitter:focus {
    color: #ffffff;
    background-color: #02bcf3;
    border-color: #02bcf3;
}

.btn-twitter:not(:disabled):not(.disabled):active,
.btn-twitter:not(:disabled):not(.disabled).active,
.btn-twitter:hover,
.btn-twitter:active,
.btn-twitter.active {
    color: #ffffff;
    background-color: #02a8da;
    border-color: #02a8da;
}

.btn-twitter.btn-ujarak::before {
    background: #02a8da;
}

.btn-google,
.btn-google:focus {
    color: #ffffff;
    background-color: #e2411e;
    border-color: #e2411e;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.btn-google:hover,
.btn-google:active,
.btn-google.active {
    color: #ffffff;
    background-color: #cc3a1a;
    border-color: #cc3a1a;
}

.btn-google.btn-ujarak::before {
    background: #cc3a1a;
}

.btn-shadow {
    box-shadow: 0 9px 21px 0 rgba(204, 204, 204, 0.15);
}

.btn-shadow:hover {
    box-shadow: 0 9px 10px 0 rgba(204, 204, 204, 0.15);
}

.btn-shadow:focus,
.btn-shadow:active {
    box-shadow: none;
}

.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: #FFCD00;
    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);
}

.btn-xs {
    padding: 5px 25px;
    font-size: 12px;
    line-height: 22px;
}

.btn-sm {
    padding: 6px 25px;
    font-size: 13px;
    line-height: 24px;
}

.btn-lg {
    padding: 12px 45px;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 1200px) {
    .btn-lg {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.btn-xl {
    padding: 15px 40px;
    font-size: 20px;
    line-height: 28px;
}

@media (min-width: 1200px) {
    .btn-xl {
        padding: 25px 55px;
    }
}

.btn-circle {
    border-radius: 30px;
}

.btn-round-1 {
    border-radius: 5px;
}

.btn-round-2 {
    border-radius: 10px;
}

.btn.btn-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.btn.btn-icon .icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: inherit;
    font-size: 1.55em;
    line-height: 1em;
}

.btn.btn-icon-left .icon {
    padding-right: 11px;
}

.btn.btn-icon-right {
    flex-direction: row-reverse;
}

.btn.btn-icon-right .icon {
    padding-left: 11px;
}

.btn.btn-icon.btn-link .icon {
    top: 5px;
    font-size: 1em;
}

.btn.btn-icon.btn-xs .icon {
    top: .05em;
    font-size: 1.2em;
    padding-right: 8px;
}

.btn.btn-icon.btn-xs .btn-icon-right {
    padding-left: 8px;
}

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

*+.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: #FFCD00;
}

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

.form-input {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    background-color: #ffffff;
    background-image: none;
    border-radius: 0;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: 1px solid #e1e1e1;
}

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

@media (min-width: 768px) {
    .form-input {
        padding: 12px 50px;
    }
}

textarea.form-control {
    height: 135px;
    min-height: 38px;
    max-height: 230px;
    resize: vertical;
}

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

.recaptcha iframe {
    display: block;
}

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

.form-label {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    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: #000000;
}

@media (min-width: 768px) {
    .form-label {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.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: 15px;
    top: 0;
    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-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;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.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: #FFCD00;
    transform: translate(20px, -50%);
}

.toggle-custom~.checkbox-custom-dummy {
    position: relative;
    display: inline-block;
    margin-top: -1px;
    width: 44px;
    height: 20px;
    background: #ffffff;
    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: 80px;
}

.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 .btn {
    padding-left: 95px;
    padding-right: 95px;
}

.form-lg .form-wrap {
    max-width: 980px;
}

.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: 27px;
    padding-bottom: 27px;
}

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

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

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

.form-control-wrap {
    position: relative;
}

.form-control {
    border-radius: 0;
    color: #000000;
}

.form-control::placeholder {
    color: #000000;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #e1e1e1;
}

.form-modal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-group {
    margin: 20px 0 0;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .form-group {
        flex: 0 0 50%;
    }
}

.form-group-100 {
    flex: 0 0 100%;
}

.form-control-wrap {
    padding: 0 10px;
}

.btn-group-1 {
    width: 100%;
    padding: 0 10px;
    margin-top: 20px;
}

.btn-group-1>button {
    width: 100%;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .btn-group-1>button {
        width: auto;
    }
}

/** @section Posts */
/** @section Quotes */
.quote-primary-mark {
    position: relative;
    top: 6px;
    display: block;
    width: 37px;
    height: 27px;
    fill: #FFCD00;
    flex-shrink: 0;
}

.quote-primary-body {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid #d7d7d7;
}

.quote-primary-body::before,
.quote-primary-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 13px;
    border-style: solid;
    border-color: #d7d7d7;
}

.quote-primary-body::before {
    left: 0;
    width: 78px;
    border-width: 1px 1px 0 0;
}

.quote-primary-body::after {
    right: 0;
    width: calc(100% - 78px - 12px);
    border-width: 1px 0 0 1px;
    transform-origin: 0 0;
    transform: skew(-45deg);
}

.quote-primary-text {
    padding-top: 20px;
}

.quote-primary-cite {
    font-weight: 700;
}

.quote-primary-footer {
    padding-left: 5px;
}

*+.quote-primary {
    margin-top: 30px;
}

*+.quote-primary-footer {
    margin-top: 8px;
}

@media (min-width: 576px) {
    .quote-primary-body {
        display: flex;
        padding: 32px 20px 40px 30px;
    }

    .quote-primary-text {
        padding-top: 0;
        padding-left: 20px;
    }

    .quote-primary-footer {
        padding-left: 30px;
    }
}

@media (min-width: 768px) {
    .quote-primary-body {
        padding-right: 40px;
    }
}

/** @section Thumbnails */
*+.figure-light {
    margin-top: 30px;
}

.figure-light figcaption {
    padding-top: 10px;
    color: #b7b7b7;
}

/** @section Breadcrumbs */
.breadcrumbs-custom {
    position: relative;
    padding: 35px 0 40px;
    text-align: center;
    background-color: #cccccc;
    background-position: center;
}

.breadcrumbs-custom-path {
    margin-left: -15px;
    margin-right: -15px;
}

.breadcrumbs-custom-path>* {
    padding-left: 15px;
    padding-right: 15px;
}

.breadcrumbs-custom-path a {
    display: inline;
    vertical-align: middle;
}

.breadcrumbs-custom-path a,
.breadcrumbs-custom-path a:active,
.breadcrumbs-custom-path a:focus {
    color: #FFCD00;
}

.breadcrumbs-custom-path li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.7;
}

.breadcrumbs-custom-path li::after {
    content: "";
    font-family: 'FontAwesome';
    position: absolute;
    top: 52%;
    right: -5px;
    display: inline-block;
    font-size: inherit;
    font-style: normal;
    color: rgba(255, 255, 255, 0.5);
    transform: translate3d(0, -50%, 0);
}

.breadcrumbs-custom-path li:last-child:after {
    display: none;
}

.breadcrumbs-custom-path a:hover,
.breadcrumbs-custom-path li.active {
    color: #ffffff;
}

.breadcrumbs-custom-path li.active {
    top: 2px;
}

*+.breadcrumbs-custom-path {
    margin-top: 14px;
}

@media (max-width: 991.98px) {
    .breadcrumbs-custom-title {
        font-size: 26px;
    }
}

@media (min-width: 576px) {
    .breadcrumbs-custom {
        margin-left: -30px;
        margin-right: -30px;
    }

    .breadcrumbs-custom>* {
        padding-left: 30px;
        padding-right: 30px;
    }

    *+.breadcrumbs-custom-path {
        margin-top: 18px;
    }
}

@media (min-width: 768px) {
    .breadcrumbs-custom {
        padding: 70px 0 80px;
    }

    .breadcrumbs-custom-path li {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .breadcrumbs-custom {
        padding: 80px 0 100px;
    }
}

@media (min-width: 1600px) {
    .breadcrumbs-custom {
        padding: 80px 0 100px;
    }
}

/** @section Pagination custom */
.pagination {
    font-size: 0;
    line-height: 0;
    margin-bottom: -10px;
    margin-left: -10px;
}

.pagination:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.pagination>* {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 10px;
}

.page-item {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-weight: 700;
}

.page-link {
    display: inline-block;
    min-width: 48px;
    padding: 10px 10px;
    border: 2px solid #d7d7d7;
    font-size: 14px;
    line-height: 1.71429;
    background-color: #ffffff;
    color: #9b9b9b;
    transition: all 0.3s ease-in-out;
}

.page-link:hover,
.page-link:focus,
.page-link:active {
    color: #ffffff;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

.page-link:focus {
    box-shadow: none;
}

.page-item.active>.page-link,
.page-item.active>.page-link:hover,
.page-item.active>.page-link:focus,
.page-item.active>.page-link:active {
    color: #ffffff;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

.page-item.disabled>.page-link,
.page-item.disabled>.page-link:hover,
.page-item.disabled>.page-link:focus,
.page-item.disabled>.page-link:active {
    color: #b7b7b7;
    background-color: #d7d7d7;
    border-color: #d7d7d7;
}

.page-item-control .icon::before {
    font-family: 'FontAwesome';
    font-size: 11px;
    line-height: 24px;
}

.page-item-control:first-child .icon::before {
    content: '\f053';
    margin-left: -1px;
}

.page-item-control:last-child .icon::before {
    content: '\f054';
    margin-right: -1px;
}

/** @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 {
    color: #ffffff;
    font-size: 18px;
}

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

.snackbars-left {
    display: inline-block;
    margin-bottom: 0;
    font-size: 15px;
}

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

p+.price {
    margin-top: 25px;
}

.price {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 44px 0;
}

.price:first-child {
    padding-top: 0;
}

.price:last-child {
    padding-bottom: 0;
}

.price .btn {
    margin-top: 0;
}

.price+.price {
    border-top: 1px solid #b3b3b3;
}

.price-title {
    flex: 0 0 100%;
}

.price-title>span {
    color: #0054EB;
    padding-left: 5px;
}

.price-value {
    width: 100%;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (min-width: 768px) {
    .price-value {
        width: auto;
    }
}

@media (min-width: 768px) {
    .price-title {
        flex: 0 0 60%;
    }
}

@media (min-width: 1200px) {
    .price-title {
        flex: 0 0 32%;
    }
}

/** @section Bloquotes */
.quote {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 0;
}

.quote-icon {
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 576px) {
    .quote {
        flex-wrap: nowrap;
    }

    .quote-icon {
        margin-left: 0;
        margin-right: 60px;
        transform: translateX(0);
    }

    .quote-body {
        margin-top: 70px;
    }
}

/** @section Footers */
.footer-classic {
    padding-top: 0;
}

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

.footer-classic .row+.row {
    margin-top: 0;
}

.footer-classic a>span {
    font-size: 10px;
    padding-left: 10px;
    color: inherit;
}

.footer-list-icon {
    line-height: 1;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .footer-list-icon {
        margin: 0 0 0 20px;
    }
}

.footer-list-icon>li {
    display: inline-block;
    padding-top: 2px;
    margin-left: 15px;
}

.footer-list-icon>li:first-child {
    margin-left: 0;
}

@media (min-width: 576px) {
    .footer-list-icon>li:first-child {
        margin-left: 15px;
    }
}

.footer-creative-list {
    margin-top: 5px;
    columns: 2;
    margin-bottom: -20px;
}

.footer-creative-list>li {
    margin-bottom: 20px;
    line-height: 80%;
}

.footer-creative-list a {
    font-size: 16px;
    color: #000000;
}

.footer-creative-list a:hover {
    color: #FFCD00;
}

/** @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: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    transition: .3s all ease;
}

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

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

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

.cssload-container {
    width: 100%;
    height: 36px;
    text-align: center;
}

.cssload-speeding-wheel {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    border: 3px solid #FFCD00;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    animation: cssload-spin .88s infinite linear;
}

@keyframes cssload-spin {
    100% {
        transform: rotate(360deg);
    }
}

/** @section ToTop */
.ui-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 100;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 46px;
    color: #ffffff;
    background: #420000;
    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: #FFCD00;
    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;
    }
}

/*
* @subsection   RD Navbar
*
* @description  Describes style declarations for RD Navbar extension
*
* @author       Evgeniy Gusarov
* @link         https://ua.linkedin.com/pub/evgeniy-gusarov/8a/a40/54a
*/
@-webkit-keyframes rd-navbar-slide-down {
    0% {
        transform: translateY(-100%);
    }

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

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

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

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

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

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

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

/*
* @subsection General Styles
*/
.rd-navbar-wrap,
.rd-navbar-fixed .rd-navbar-nav-wrap,
.rd-navbar-fixed .rd-navbar-submenu {
    transition: 0.32s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

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

.rd-navbar-fixed,
.rd-navbar-static,
.rd-navbar-fullwidth,
.rd-navbar-sidebar {
    display: block;
}

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

.rd-navbar,
.rd-navbar-brand,
.rd-navbar-slogan,
.rd-navbar-dropdown,
.rd-navbar-megamenu,
.rd-navbar-collapse-items,
.brand-name,
.rd-navbar-nav,
.rd-navbar-panel,
.rd-navbar-search-form-input,
.rd-navbar-search-form-submit,
.rd-navbar-search-toggle,
.rd-navbar-live-search-results,
.rd-navbar-search-form {
    transition: .3s all ease;
}

.rd-navbar-collapse-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #151515;
    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: 4px;
    height: 4px;
    line-height: 4px;
    text-align: center;
    background: #151515;
    left: 50%;
    margin-left: -2px;
    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(16px);
}

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

/*
* Navbar components
*/
.rd-navbar {
    background: #ffffff;
}

.rd-navbar-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #000000;
    background-color: transparent;
    border: none;
    cursor: pointer;
    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: -6px;
    transition: .3s all ease;
}

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

.rd-navbar-toggle span:after,
.rd-navbar-toggle span:before,
.rd-navbar-toggle span {
    width: 22px;
    height: 2px;
    background-color: #000000;
    backface-visibility: hidden;
    will-change: transform;
}

.rd-navbar-toggle span:before,
.rd-navbar-toggle span:after {
    -webkit-transition-duration: 0.22s, 0.22s;
    transition-duration: 0.22s, 0.22s;
    -webkit-transition-delay: 0.22s, 0s;
    transition-delay: 0.22s, 0s;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.rd-navbar-toggle.active span {
    transition: background .22s 0s ease;
    background: transparent;
}

.rd-navbar-toggle.active span:before,
.rd-navbar-toggle.active span:after {
    top: 0;
    -webkit-transition-delay: 0s, 0.22s;
    transition-delay: 0s, 0.22s;
}

.rd-navbar-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rd-navbar-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rd-navbar-brand {
    line-height: 1;
}

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

.rd-navbar-search {
    position: relative;
}

.rd-navbar-search .rd-search {
    background: #ffffff;
}

.rd-navbar-search .rd-search .form-input {
    padding-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 48px;
    background-color: transparent;
    border: 0;
}

.rd-navbar-search .rd-search .form-label {
    left: 2px;
    font-size: 12px;
    font-style: normal;
    top: 25px;
}

.rd-navbar-search .rd-search__submit {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
    width: 36px;
    height: 22px;
    line-height: 22px;
    color: #000000;
}

.rd-navbar-search .rd-search__submit:hover {
    color: #FFCD00;
}

.rd-navbar-search .rd-search__submit::before {
    content: '\e922';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    height: inherit;
    font: 400 19px 'Linearicons';
    line-height: inherit;
    text-align: center;
    color: inherit;
}

.rd-navbar .rd-navbar-search__toggle {
    position: relative;
    display: block;
    overflow: hidden;
    color: #c7c7c7;
    width: 26px;
    height: 26px;
    transition: .33s all ease;
}

.rd-navbar .rd-navbar-search__toggle::before,
.rd-navbar .rd-navbar-search__toggle::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: inline-block;
    padding: 2px;
    font-family: 'Linearicons';
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    will-change: transform;
}

.rd-navbar .rd-navbar-search__toggle::before {
    margin-right: -2px;
    content: '\e922';
    font-size: 19px;
}

.rd-navbar .rd-navbar-search__toggle::after {
    margin-top: -1px;
    content: '\e92a';
    font-size: 22px;
}

.desktop .rd-navbar .rd-navbar-search__toggle:hover {
    color: #000000;
}

.rd-navbar .rd-search .form-input {
    padding: 10px;
}

.rd-navbar .rd-search .form-label {
    left: 10px;
}

.rd-navbar .rd-search .form-input,
.rd-navbar .rd-search .form-label {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
}

.rd-navbar button.rd-search__submit,
.rd-navbar button.rd-navbar-search__toggle {
    background: none;
    border: none;
    display: inline-block;
    padding: 0;
    outline: none;
    outline-offset: 0;
    cursor: pointer;
    -webkit-appearance: none;
}

.rd-navbar button.rd-search__submit::-moz-focus-inner,
.rd-navbar button.rd-navbar-search__toggle::-moz-focus-inner {
    border: none;
    padding: 0;
}

/*
* @subsection   Hybrid  Styles
*/
.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 .rd-navbar-nav>li>a {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.rd-navbar .rd-navbar-nav>li {
    vertical-align: top;
    text-align: center;
}

.rd-navbar .rd-navbar-nav>li>* {
    vertical-align: top;
}

.rd-navbar .rd-navbar-nav>li .rd-navbar-subtitle {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 300;
    text-transform: none;
    line-height: 1.2;
    color: #000000;
}

.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu .rd-navbar-megamenu {
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
}

.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu.focus,
.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu.focus {
    opacity: 1;
    visibility: visible;
}

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

.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu.opened>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu.focus>.rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu.opened>.rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu.focus>.rd-navbar-megamenu {
    transform: translateY(0);
}

.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu.focus>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav .rd-navbar-submenu .rd-navbar-submenu.opened>.rd-navbar-dropdown {
    display: block;
}

.rd-navbar-fullwidth .rd-navbar-nav>li,
.rd-navbar-static .rd-navbar-nav>li {
    display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-nav li.focus>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav li.focus>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav li.opened>.rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav li.focus>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav li.focus>.rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav li.opened>.rd-navbar-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar--has-dropdown,
.rd-navbar-static .rd-navbar-nav .rd-navbar--has-dropdown {
    position: relative;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown {
    position: absolute;
    left: 0;
    z-index: 5;
    display: block;
    text-align: left;
}

.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu {
    border: 1px solid #f3f3f3;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-megamenu-list>li>a,
.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-static .rd-megamenu-list>li>a {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 0;
    font-size: 13px;
    line-height: 1.7;
    transition: .33s all ease;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:focus,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:active,
.rd-navbar-fullwidth .rd-megamenu-list>li>a,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:focus,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:active,
.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-static .rd-navbar-dropdown>li>a:focus,
.rd-navbar-static .rd-navbar-dropdown>li>a:active,
.rd-navbar-static .rd-megamenu-list>li>a,
.rd-navbar-static .rd-megamenu-list>li>a:focus,
.rd-navbar-static .rd-megamenu-list>li>a:active {
    color: #e0e0e2;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:hover,
.rd-navbar-static .rd-navbar-dropdown>li>a:hover,
.rd-navbar-static .rd-megamenu-list>li>a:hover {
    color: #FFCD00;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:focus,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:active,
.rd-navbar-fullwidth .rd-megamenu-list>li>a,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:focus,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:active,
.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-static .rd-navbar-dropdown>li>a:focus,
.rd-navbar-static .rd-navbar-dropdown>li>a:active,
.rd-navbar-static .rd-megamenu-list>li>a,
.rd-navbar-static .rd-megamenu-list>li>a:focus,
.rd-navbar-static .rd-megamenu-list>li>a:active {
    color: #000000;
    background: transparent;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover,
.rd-navbar-fullwidth .rd-megamenu-list>li>a:hover,
.rd-navbar-static .rd-navbar-dropdown>li>a:hover,
.rd-navbar-static .rd-megamenu-list>li>a:hover {
    color: #FFCD00;
    background: transparent;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li+li,
.rd-navbar-fullwidth .rd-megamenu-list>li+li,
.rd-navbar-static .rd-navbar-dropdown>li+li,
.rd-navbar-static .rd-megamenu-list>li+li {
    margin-top: 12px;
}

@media (min-width: 1200px) {

    .rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
    .rd-navbar-fullwidth .rd-megamenu-list>li>a,
    .rd-navbar-static .rd-navbar-dropdown>li>a,
    .rd-navbar-static .rd-megamenu-list>li>a {
        font-size: 14px;
    }
}

.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-dropdown {
    width: 216px;
    padding: 30px 30px 30px;
    margin-left: -18px;
    background: #fbfbfb;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle,
.rd-navbar-static .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle {
    color: #c7c7c7;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle::after {
    display: inline-block;
    width: auto;
    margin-left: 5px;
    content: '\e93c';
    font-family: 'Linearicons';
    font-size: 10px;
    cursor: pointer;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle:hover,
.rd-navbar-static .rd-navbar-dropdown .rd-navbar--has-dropdown>.rd-navbar-submenu-toggle:hover {
    color: #FFCD00;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown {
    position: absolute;
    left: 100%;
    margin-left: 33px;
    top: -31px;
}

.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar-dropdown.rd-navbar-open-left,
.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown.rd-navbar-open-left {
    margin-left: 0;
    margin-right: 33px;
    right: 100%;
    left: auto;
}

.rd-navbar-fullwidth .rd-navbar-dropdown li,
.rd-navbar-static .rd-navbar-dropdown li {
    margin-bottom: -2px;
    transform: translateY(-2px);
}

.rd-navbar-fullwidth .rd-navbar-dropdown li>*,
.rd-navbar-static .rd-navbar-dropdown li>* {
    margin-top: 2px;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
.rd-navbar-static .rd-navbar-dropdown>li>a {
    display: inline;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:focus,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:active,
.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-static .rd-navbar-dropdown>li>a:focus,
.rd-navbar-static .rd-navbar-dropdown>li>a:active {
    color: #000000;
    background: transparent;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover,
.rd-navbar-static .rd-navbar-dropdown>li>a:hover {
    color: #FFCD00;
    background: transparent;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover~.rd-navbar-submenu-toggle,
.rd-navbar-static .rd-navbar-dropdown>li>a:hover~.rd-navbar-submenu-toggle {
    color: #FFCD00;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li.opened>a,
.rd-navbar-static .rd-navbar-dropdown>li.focus>a,
.rd-navbar-static .rd-navbar-dropdown>li.opened>a {
    color: #FFCD00;
    background: transparent;
}

.rd-navbar-fullwidth .rd-navbar-dropdown>li.focus>a~.rd-navbar-submenu-toggle,
.rd-navbar-fullwidth .rd-navbar-dropdown>li.opened>a~.rd-navbar-submenu-toggle,
.rd-navbar-static .rd-navbar-dropdown>li.focus>a~.rd-navbar-submenu-toggle,
.rd-navbar-static .rd-navbar-dropdown>li.opened>a~.rd-navbar-submenu-toggle {
    color: #FFCD00;
}

@media (min-width: 1200px) {

    .rd-navbar-fullwidth .rd-navbar-dropdown,
    .rd-navbar-static .rd-navbar-dropdown {
        width: 240px;
    }
}

.rd-navbar-fullwidth .rd-navbar-megamenu,
.rd-navbar-static .rd-navbar-megamenu {
    position: absolute;
    z-index: 4;
    display: table;
    table-layout: fixed;
    width: 100%;
    max-height: calc(100vh - 90px);
    left: 0;
    max-width: 1170px;
    margin-top: 25px;
    text-align: left;
    background: #fbfbfb;
}

.rd-navbar-fullwidth .rd-navbar-megamenu>li,
.rd-navbar-static .rd-navbar-megamenu>li {
    position: relative;
    display: table-cell;
    padding: 40px 20px 40px 35px;
}

.rd-navbar-fullwidth .rd-navbar-megamenu>li+li:before,
.rd-navbar-static .rd-navbar-megamenu>li+li:before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    border-right: 1px solid #ececee;
}

.rd-navbar-fullwidth .rd-navbar-megamenu *+.rd-megamenu-list,
.rd-navbar-static .rd-navbar-megamenu *+.rd-megamenu-list {
    margin-top: 24px;
}

@media (min-width: 1200px) {

    .rd-navbar-fullwidth .rd-navbar-megamenu>li,
    .rd-navbar-static .rd-navbar-megamenu>li {
        padding: 45px 30px 50px 50px;
    }

    .rd-navbar-fullwidth .rd-navbar-megamenu *+.rd-megamenu-list,
    .rd-navbar-static .rd-navbar-megamenu *+.rd-megamenu-list {
        margin-top: 30px;
    }
}

@media (min-width: 1600px) {

    .rd-navbar-fullwidth .rd-navbar-megamenu,
    .rd-navbar-static .rd-navbar-megamenu {
        max-width: 1700px;
    }

    .rd-navbar-fullwidth .rd-navbar-megamenu>li,
    .rd-navbar-static .rd-navbar-megamenu>li {
        padding: 45px 70px 70px 50px;
    }
}

.rd-navbar-fullwidth .rd-megamenu-header,
.rd-navbar-static .rd-megamenu-header {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 1200px) {

    .rd-navbar-fullwidth .rd-megamenu-header,
    .rd-navbar-static .rd-megamenu-header {
        font-size: 18px;
    }
}

.rd-navbar-fullwidth *+.rd-megamenu-header,
.rd-navbar-static *+.rd-megamenu-header {
    margin-top: 40px;
}

.rd-navbar-fullwidth .rd-navbar-search-toggled,
.rd-navbar-static .rd-navbar-search-toggled {
    position: relative;
}

.rd-navbar-fullwidth .rd-navbar-search-toggled .rd-search,
.rd-navbar-static .rd-navbar-search-toggled .rd-search {
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    transition: .33s;
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-fullwidth .rd-navbar-search-toggled .rd-navbar-search-toggle,
.rd-navbar-static .rd-navbar-search-toggled .rd-navbar-search-toggle {
    opacity: 1;
    visibility: visible;
    margin-top: 2px;
}

.rd-navbar-fullwidth .rd-navbar-search-toggled.active .rd-search,
.rd-navbar-static .rd-navbar-search-toggled.active .rd-search {
    opacity: 1;
    visibility: visible;
    width: 300px;
}

.rd-navbar-fullwidth .rd-navbar-search-toggled.active .rd-navbar-search-toggle,
.rd-navbar-static .rd-navbar-search-toggled.active .rd-navbar-search-toggle {
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-static .rd-navbar-top-panel,
.rd-navbar-sidebar .rd-navbar-top-panel {
    position: relative;
    z-index: 10;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    line-height: 1.6;
}

.rd-navbar-static .rd-navbar-top-panel::before,
.rd-navbar-sidebar .rd-navbar-top-panel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 102vw;
    background: #ffffff;
    z-index: -1;
}

.rd-navbar-static .rd-navbar-top-panel>*,
.rd-navbar-sidebar .rd-navbar-top-panel>* {
    padding: 0 25px;
}

.rd-navbar-static .rd-navbar-top-panel>*:first-child,
.rd-navbar-sidebar .rd-navbar-top-panel>*:first-child {
    padding-left: 0;
}

.rd-navbar-static .rd-navbar-top-panel>*:last-child,
.rd-navbar-sidebar .rd-navbar-top-panel>*:last-child {
    padding-right: 0;
}

.rd-navbar-static .rd-navbar-top-panel-dark a,
.rd-navbar-static .rd-navbar-top-panel-dark .icon-gray-darker,
.rd-navbar-sidebar .rd-navbar-top-panel-dark a,
.rd-navbar-sidebar .rd-navbar-top-panel-dark .icon-gray-darker {
    color: #ffffff;
}

.rd-navbar-static .rd-navbar-top-panel-dark a:hover,
.rd-navbar-static .rd-navbar-top-panel-dark .icon-gray-darker:hover,
.rd-navbar-sidebar .rd-navbar-top-panel-dark a:hover,
.rd-navbar-sidebar .rd-navbar-top-panel-dark .icon-gray-darker:hover {
    color: #FFCD00;
}

.rd-navbar-static .rd-navbar-top-panel-dark::before,
.rd-navbar-sidebar .rd-navbar-top-panel-dark::before {
    background: #333;
}

.ie-10 .rd-navbar-static .rd-navbar-top-panel__content>*,
.ie-11 .rd-navbar-static .rd-navbar-top-panel__content>*,
.ie-10 .rd-navbar-sidebar .rd-navbar-top-panel__content>*,
.ie-11 .rd-navbar-sidebar .rd-navbar-top-panel__content>* {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: inherit;
}

.ie-10 .rd-navbar-static .rd-navbar-top-panel__content>*::after,
.ie-11 .rd-navbar-static .rd-navbar-top-panel__content>*::after,
.ie-10 .rd-navbar-sidebar .rd-navbar-top-panel__content>*::after,
.ie-11 .rd-navbar-sidebar .rd-navbar-top-panel__content>*::after {
    content: '';
    display: inline-block;
    min-height: inherit;
    width: 0;
    vertical-align: middle;
}

.ie-10 .rd-navbar-static .rd-navbar-top-panel__content>*>*,
.ie-11 .rd-navbar-static .rd-navbar-top-panel__content>*>*,
.ie-10 .rd-navbar-sidebar .rd-navbar-top-panel__content>*>*,
.ie-11 .rd-navbar-sidebar .rd-navbar-top-panel__content>*>* {
    white-space: normal;
}

.ie-10 .rd-navbar-static .rd-navbar-top-panel__content .rd-navbar-top-panel__content-bottom::after,
.ie-10 .rd-navbar-static .rd-navbar-top-panel__content .rd-navbar-top-panel__content-top::after,
.ie-11 .rd-navbar-static .rd-navbar-top-panel__content .rd-navbar-top-panel__content-bottom::after,
.ie-11 .rd-navbar-static .rd-navbar-top-panel__content .rd-navbar-top-panel__content-top::after,
.ie-10 .rd-navbar-sidebar .rd-navbar-top-panel__content .rd-navbar-top-panel__content-bottom::after,
.ie-10 .rd-navbar-sidebar .rd-navbar-top-panel__content .rd-navbar-top-panel__content-top::after,
.ie-11 .rd-navbar-sidebar .rd-navbar-top-panel__content .rd-navbar-top-panel__content-bottom::after,
.ie-11 .rd-navbar-sidebar .rd-navbar-top-panel__content .rd-navbar-top-panel__content-top::after {
    display: none;
}

.rd-navbar-static .rd-navbar-top-panel__content,
.rd-navbar-sidebar .rd-navbar-top-panel__content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rd-navbar-static .rd-navbar-top-panel__content>*,
.rd-navbar-sidebar .rd-navbar-top-panel__content>* {
    padding: 0 25px;
}

.rd-navbar-static .rd-navbar-top-panel__content>*:first-child,
.rd-navbar-sidebar .rd-navbar-top-panel__content>*:first-child {
    padding-left: 0;
}

.rd-navbar-static .rd-navbar-top-panel__content>*:last-child,
.rd-navbar-sidebar .rd-navbar-top-panel__content>*:last-child {
    padding-right: 0;
}

.rd-navbar-static.rd-navbar-default .rd-navbar-items-list,
.rd-navbar-sidebar.rd-navbar-default .rd-navbar-items-list {
    margin-left: -17px;
    margin-right: -17px;
}

.rd-navbar-static .rd-navbar-items-list,
.rd-navbar-sidebar .rd-navbar-items-list {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
    line-height: 0;
}

.rd-navbar-static .rd-navbar-items-list>li,
.rd-navbar-sidebar .rd-navbar-items-list>li {
    position: relative;
    display: inline-block;
    padding: 0 17px;
    font-size: 12px;
    line-height: 1.3;
}

.rd-navbar-static .rd-navbar-items-list>li:last-child,
.rd-navbar-sidebar .rd-navbar-items-list>li:last-child {
    padding-right: 0;
}

.rd-navbar-static .rd-navbar-items-list>li+li::before,
.rd-navbar-sidebar .rd-navbar-items-list>li+li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -3px;
    width: 1px;
    height: 32px;
    background: #ececee;
}

.rd-navbar-static .rd-navbar-top-panel__main,
.rd-navbar-sidebar .rd-navbar-top-panel__main {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.rd-navbar-static .rd-navbar-top-panel__aside,
.rd-navbar-sidebar .rd-navbar-top-panel__aside {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.rd-navbar-static .rd-navbar-top-panel__aside .rd-navbar-items-list li:last-child,
.rd-navbar-sidebar .rd-navbar-top-panel__aside .rd-navbar-items-list li:last-child {
    padding-right: 5px;
}

.rd-navbar-static .rd-navbar-top-panel__main+.rd-navbar-top-panel__aside,
.rd-navbar-sidebar .rd-navbar-top-panel__main+.rd-navbar-top-panel__aside {
    position: relative;
    padding: 0;
}

.rd-navbar-static .rd-navbar-top-panel__main+.rd-navbar-top-panel__aside::before,
.rd-navbar-sidebar .rd-navbar-top-panel__main+.rd-navbar-top-panel__aside::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 32px;
    background: #ececee;
}

.rd-navbar-static .rd-navbar-top-panel__inner,
.rd-navbar-sidebar .rd-navbar-top-panel__inner {
    padding: 10px 0;
}

.rd-navbar-static .rd-navbar-top-panel__content,
.rd-navbar-sidebar .rd-navbar-top-panel__content {
    min-height: 50px;
}

.rd-navbar-static .rd-navbar-search__toggle::after,
.rd-navbar-sidebar .rd-navbar-search__toggle::after {
    display: none;
}

.rd-navbar-static .rd-navbar-search-wrap,
.rd-navbar-sidebar .rd-navbar-search-wrap {
    position: relative;
}

.rd-navbar-static .rd-navbar-search-wrap .rd-navbar-search_collapsable,
.rd-navbar-static .rd-navbar-search-wrap>*:not(.rd-navbar-search_not-collapsable),
.rd-navbar-sidebar .rd-navbar-search-wrap .rd-navbar-search_collapsable,
.rd-navbar-sidebar .rd-navbar-search-wrap>*:not(.rd-navbar-search_not-collapsable) {
    opacity: 1;
    visibility: visible;
    transition: .33s;
    line-height: 1;
    padding-left: 15px;
}

.rd-navbar-static .rd-navbar-search-wrap .rd-navbar-search::after,
.rd-navbar-sidebar .rd-navbar-search-wrap .rd-navbar-search::after {
    transform: translate3d(0, -100%, 0);
    transition: .5s;
}

.rd-navbar-static .rd-navbar-search-wrap .rd-navbar-search .form-label,
.rd-navbar-sidebar .rd-navbar-search-wrap .rd-navbar-search .form-label {
    transform: translate3d(0, -75%, 0);
    transition: .15s;
    transition-delay: .1s;
}

.rd-navbar-static .rd-navbar-search-wrap .rd-search-results-live,
.rd-navbar-sidebar .rd-navbar-search-wrap .rd-search-results-live {
    visibility: hidden;
    pointer-events: none;
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search_collapsable,
.rd-navbar-static .rd-navbar-search-wrap.active>*:not(.rd-navbar-search_not-collapsable),
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search_collapsable,
.rd-navbar-sidebar .rd-navbar-search-wrap.active>*:not(.rd-navbar-search_not-collapsable) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-search-results-live,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-search-results-live {
    visibility: visible;
    pointer-events: auto;
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
    transition: .1s;
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search::after,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search::after {
    transform: translate3d(0, -50%, 0);
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search .form-label,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search .form-label {
    transform: translate3d(0, -50%, 0);
}

.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search .rd-search__submit,
.rd-navbar-static .rd-navbar-search-wrap.active .rd-navbar-search .rd-navbar-search__toggle,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search .rd-search__submit,
.rd-navbar-sidebar .rd-navbar-search-wrap.active .rd-navbar-search .rd-navbar-search__toggle {
    transform: translate3d(0, -50%, 0);
}

.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__main,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__main {
    overflow: hidden;
}

.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-search_collapsable,
.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__content,
.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__aside,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-search_collapsable,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__content,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap .rd-navbar-top-panel__aside {
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: .33s;
}

.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-search_collapsable,
.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-top-panel__content,
.rd-navbar-static .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-top-panel__aside,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-search_collapsable,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-top-panel__content,
.rd-navbar-sidebar .rd-navbar-top-panel.rd-navbar-search-wrap.active .rd-navbar-top-panel__aside {
    transform: translate3d(0, 50%, 0);
}

.rd-navbar-static .rd-navbar-search,
.rd-navbar-sidebar .rd-navbar-search {
    position: absolute;
    top: 50%;
    right: 15px;
    left: 15px;
    padding: 0;
    height: 50px;
    font-size: 0;
    line-height: 0;
    transition: transform .33s ease-in-out, opacity .25s ease-in;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
}

.rd-navbar-static .rd-navbar-search::after,
.rd-navbar-sidebar .rd-navbar-search::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translate3d(0, -50%, 0);
    right: 40px;
    width: 1px;
    height: 32px;
    background: #ececee;
}

.rd-navbar-static .rd-navbar-search .form-wrap,
.rd-navbar-sidebar .rd-navbar-search .form-wrap {
    padding-right: 90px;
}

.rd-navbar-static .rd-navbar-search .form-input,
.rd-navbar-sidebar .rd-navbar-search .form-input {
    padding-left: 4px;
}

.rd-navbar-static .rd-navbar-search .form-label,
.rd-navbar-sidebar .rd-navbar-search .form-label {
    left: 4px;
}

.rd-navbar-static .rd-navbar-search .rd-search__submit,
.rd-navbar-static .rd-navbar-search .rd-navbar-search__toggle,
.rd-navbar-sidebar .rd-navbar-search .rd-search__submit,
.rd-navbar-sidebar .rd-navbar-search .rd-navbar-search__toggle {
    position: absolute;
    top: 50%;
    transition: .33s all ease-in-out;
    transform: translate3d(0, -120%, 0);
}

.rd-navbar-static .rd-navbar-search .rd-search__submit,
.rd-navbar-sidebar .rd-navbar-search .rd-search__submit {
    margin-top: 1px;
    right: 52px;
}

.rd-navbar-static .rd-navbar-search .rd-navbar-search__toggle,
.rd-navbar-sidebar .rd-navbar-search .rd-navbar-search__toggle {
    right: 0;
    transition: color .33s ease 0s, transform .4s ease-in-out;
}

.rd-navbar-static .rd-navbar-search .rd-navbar-search__toggle::after,
.rd-navbar-sidebar .rd-navbar-search .rd-navbar-search__toggle::after {
    display: block;
}

.rd-navbar-static .rd-navbar-search .rd-navbar-search__toggle::before,
.rd-navbar-sidebar .rd-navbar-search .rd-navbar-search__toggle::before {
    display: none;
}

.rd-navbar-static .rd-navbar-nav>li>a,
.rd-navbar-static .rd-navbar-nav>li>a:focus,
.rd-navbar-static .rd-navbar-nav>li>a:active,
.rd-navbar-sidebar .rd-navbar-nav>li>a,
.rd-navbar-sidebar .rd-navbar-nav>li>a:focus,
.rd-navbar-sidebar .rd-navbar-nav>li>a:active {
    color: #000000;
}

.rd-navbar-static .rd-navbar-nav>li>a:hover,
.rd-navbar-sidebar .rd-navbar-nav>li>a:hover {
    color: #FFCD00;
}

.rd-navbar-static .rd-navbar-nav>li.opened>a,
.rd-navbar-static .rd-navbar-nav>li.active>a,
.rd-navbar-sidebar .rd-navbar-nav>li.opened>a,
.rd-navbar-sidebar .rd-navbar-nav>li.active>a {
    color: #FFCD00;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-submenu-toggle,
.rd-navbar-sidebar .rd-navbar-nav>li>.rd-navbar-submenu-toggle {
    display: inline-block;
    width: 17px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    color: #000000;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li>.rd-navbar-submenu-toggle::after {
    content: '\f107';
    position: relative;
    display: inline-block;
    font: 400 14px "FontAwesome";
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    will-change: transform;
    -webkit-filter: blur(0);
}

.rd-navbar-static .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle::after {
    transform: rotate(180deg);
}

.mac-os .rd-navbar-static .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle,
.mac-os .rd-navbar-static .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle,
.mac-os .rd-navbar-static .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle,
.mac-os .rd-navbar-sidebar .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle,
.mac-os .rd-navbar-sidebar .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle,
.mac-os .rd-navbar-sidebar .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle {
    margin-top: 2px;
}

.rd-navbar-static .rd-navbar-nav>li.active>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li.active>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li.focus>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-nav>li>a:hover+.rd-navbar-submenu-toggle::after {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:focus,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:active,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:focus,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:active,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:focus,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:active,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:focus,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:active {
    color: #888;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:hover,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:hover,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown a:hover,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-megamenu-list a:hover {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown,
.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu {
    background: #000000;
    border-color: #333;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown>li.focus>a,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-dropdown>li.focus>a {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu .rd-megamenu-header,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu .rd-megamenu-header {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu>li+li::before,
.rd-navbar-fullwidth.rd-navbar_half-dark .rd-navbar-nav .rd-navbar-megamenu>li+li::before {
    border-color: rgba(255, 255, 255, 0.2);
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li>a,
.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li>a:focus,
.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li>a:active,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li>a,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li>a:focus,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li>a:active {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li>a:hover,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li>a:hover {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li.focus>a,
.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li.opened>a,
.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li.active>a,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li.focus>a,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li.opened>a,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li.active>a {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-nav>li>.rd-navbar-submenu-toggle,
.rd-navbar-fullwidth.rd-navbar_dark .rd-navbar-nav>li>.rd-navbar-submenu-toggle {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #ffffff;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

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

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

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span:after {
    top: 6px;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span:before,
.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span:after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span:before,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    backface-visibility: hidden;
    will-change: transform;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span:before,
.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span:before,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle span:after {
    -webkit-transition-duration: 0.22s, 0.22s;
    transition-duration: 0.22s, 0.22s;
    -webkit-transition-delay: 0.22s, 0s;
    transition-delay: 0.22s, 0s;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle.active span,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle.active span {
    transition: background .22s 0s ease;
    background: transparent;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle.active span:before,
.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle.active span:after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle.active span:before,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle.active span:after {
    top: 0;
    -webkit-transition-delay: 0s, 0.22s;
    transition-delay: 0s, 0.22s;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle.active span:before,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-toggle.active span:after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-navbar-items-list a,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-items-list a {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-navbar-items-list a:hover,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-items-list a:hover {
    color: #FFCD00;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-navbar-items-list>li+li::before,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-items-list>li+li::before {
    background: rgba(255, 255, 255, 0.2);
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-navbar-search::after,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-search::after {
    background: rgba(255, 255, 255, 0.2);
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-search,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-search {
    background-color: transparent;
}

.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-search .form-input,
.rd-navbar-static.rd-navbar_dark .rd-navbar-inner .rd-search .form-label,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-search .form-input,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-search .form-label {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .button-gray-light-outline,
.rd-navbar-static.rd-navbar_dark .button-gray-light-outline:focus,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline:focus {
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .button-gray-light-outline:not(:disabled):not(.disabled):active,
.rd-navbar-static.rd-navbar_dark .button-gray-light-outline:not(:disabled):not(.disabled).active,
.rd-navbar-static.rd-navbar_dark .button-gray-light-outline:hover,
.rd-navbar-static.rd-navbar_dark .button-gray-light-outline:active,
.rd-navbar-static.rd-navbar_dark .button-gray-light-outline.active,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline:not(:disabled):not(.disabled):active,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline:not(:disabled):not(.disabled).active,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline:hover,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline:active,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline.active {
    color: #ffffff;
    background-color: #FFCD00;
    border-color: #FFCD00;
}

.rd-navbar-static.rd-navbar_dark .button-gray-light-outline.btn-ujarak::before,
.rd-navbar-sidebar.rd-navbar_inverse .button-gray-light-outline.btn-ujarak::before {
    background: #FFCD00;
}

/*
* Static Layout
*/
.page-header {
    position: relative;
    z-index: 1000;
    padding: 0;
    margin: 0;
    border-bottom: none;
    background: #ffffff;
}

.rd-navbar-static {
    display: block;
    padding: 0 15px;
    background-color: #ffffff;
    box-shadow: none;
}

.rd-navbar-static .rd-navbar-inner {
    position: relative;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 21px 0;
    min-height: 187px;
    transition: .33s all ease;
}

.rd-navbar-static .rd-navbar-inner>*+* {
    margin-top: 30px;
}

.rd-navbar-static .rd-navbar-inner .rd-navbar-toggle {
    display: none;
}

.ie-10 .rd-navbar-static .rd-navbar-inner,
.ie-11 .rd-navbar-static .rd-navbar-inner {
    min-height: unset;
}

.rd-navbar-static .rd-navbar-inner,
.rd-navbar-static .rd-navbar-top-panel,
.rd-navbar-static .rd-navbar-bottom-panel {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1600px) {

    .rd-navbar-static .rd-navbar-inner,
    .rd-navbar-static .rd-navbar-top-panel,
    .rd-navbar-static .rd-navbar-bottom-panel {
        max-width: 1720px;
    }
}

.rd-navbar-static .rd-navbar-inner,
.rd-navbar-static .rd-navbar-nav-wrap,
.rd-navbar-static .rd-navbar-top-panel__content-top,
.rd-navbar-static .rd-navbar-top-panel__content-bottom {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rd-navbar-static .rd-navbar-inner>*,
.rd-navbar-static .rd-navbar-top-panel__content-top>*,
.rd-navbar-static .rd-navbar-top-panel__content-bottom>* {
    padding: 0 25px;
}

.rd-navbar-static .rd-navbar-inner>*:first-child,
.rd-navbar-static .rd-navbar-top-panel__content-top>*:first-child,
.rd-navbar-static .rd-navbar-top-panel__content-bottom>*:first-child {
    padding-left: 0;
}

.rd-navbar-static .rd-navbar-inner>*:last-child,
.rd-navbar-static .rd-navbar-top-panel__content-top>*:last-child,
.rd-navbar-static .rd-navbar-top-panel__content-bottom>*:last-child {
    padding-right: 0;
}

.rd-navbar-static .rd-navbar-panel,
.rd-navbar-static .rd-navbar-nav-wrap__element {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.rd-navbar-static .rd-navbar-nav-wrap__element {
    padding-left: 10px;
    padding-right: 10px;
}

.rd-navbar-static .rd-navbar-nav-wrap {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.rd-navbar-static .rd-navbar-nav-wrap>*:first-child {
    padding-right: 0;
}

.rd-navbar-static .rd-navbar-nav-wrap>*:last-child {
    padding-left: 0;
}

.rd-navbar-static .rd-navbar-top-panel_extended::after {
    display: none;
}

.rd-navbar-static .rd-navbar-top-panel_extended .rd-navbar-top-panel__content {
    display: block;
    width: 100%;
}

.rd-navbar-static .rd-navbar-top-panel {
    border-bottom: 1px solid #ececee;
}

.rd-navbar-static .rd-navbar-top-panel.rd-navbar-top-panel_extended>* {
    padding: 0;
}

.rd-navbar-static .rd-navbar-top-panel .rd-navbar-search {
    padding: 0;
}

.rd-navbar-static .rd-navbar-top-panel__content-top,
.rd-navbar-static .rd-navbar-top-panel__content-bottom {
    width: 100%;
}

.rd-navbar-static .rd-navbar-top-panel__content-top .list-bordered,
.rd-navbar-static .rd-navbar-top-panel__content-bottom .list-bordered {
    transform: translate3d(0, -10px, 0);
    margin-bottom: -10px;
    margin-left: -23px;
    margin-right: -23px;
}

.rd-navbar-static .rd-navbar-top-panel__content-top .list-bordered>*,
.rd-navbar-static .rd-navbar-top-panel__content-bottom .list-bordered>* {
    margin-top: 10px;
    padding-left: 23px;
    padding-right: 23px;
}

.rd-navbar-static .rd-navbar-top-panel__content-top {
    padding: 15px 0;
}

.rd-navbar-static .rd-navbar-top-panel__content-bottom {
    padding: 30px 0;
}

.rd-navbar-static .rd-navbar-top-panel__content-top+.rd-navbar-top-panel__content-bottom {
    border-top: 1px solid #ececee;
}

.rd-navbar-static .rd-navbar-bottom-panel {
    position: relative;
    padding: 20px 0;
}

.rd-navbar-static .rd-navbar-bottom-panel .rd-navbar-nav-wrap {
    border: 0;
    max-width: 100%;
}

.rd-navbar-static:not(.rd-navbar--is-stuck) *+.rd-navbar-bottom-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top: 1px solid #ececee;
    width: 102vw;
    left: 50%;
    transform: translateX(-50%);
}

.rd-navbar-static .rd-navbar-nav {
    margin: -13px -13px 0;
    font-size: 0;
    line-height: 0;
}

.rd-navbar-static .rd-navbar-nav>li {
    margin-top: 13px;
    padding: 0 12px;
}

@media (min-width: 1600px) {
    .rd-navbar-static .rd-navbar-nav>li {
        padding: 0 16px;
    }
}

.rd-navbar-static .rd-navbar-nav>li.focus>a {
    color: #FFCD00;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown {
    margin-top: 25px;
    background: #fbfbfb;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 42px;
}

.rd-navbar-static.rd-navbar_transparent {
    background-color: transparent;
    box-shadow: none;
}

.rd-navbar-static.rd-navbar_transparent .rd-navbar-top-panel {
    margin-bottom: 30px;
    border-bottom: 0;
}

.rd-navbar-static.rd-navbar_transparent .rd-navbar-top-panel::after {
    display: none;
}

.rd-navbar-static.rd-navbar_transparent .rd-navbar-inner {
    padding-left: 30px;
    padding-right: 30px;
    background: #ffffff;
    border-radius: 3px;
}

.rd-navbar-static.rd-navbar_transparent .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar_transparent .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 25px;
}

@media (max-width: 1599.98px) {
    .mac-os .rd-navbar-static.rd-navbar_transparent .rd-navbar-megamenu {
        width: calc(100vw - 30px);
    }
}

@media (min-width: 1200px) {
    .rd-navbar-static.rd-navbar_transparent .rd-navbar-top-panel {
        margin-bottom: 50px;
    }

    .rd-navbar-static.rd-navbar_transparent .rd-navbar-nav>li>.rd-navbar-dropdown,
    .rd-navbar-static.rd-navbar_transparent .rd-navbar-nav>li .rd-navbar-megamenu {
        margin-top: 42px;
    }
}

.rd-navbar-static.rd-navbar_creative:not(.rd-navbar--is-stuck) {
    box-shadow: none;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-inner {
    padding-top: 58px;
    padding-bottom: 58px;
    transition: none;
    text-align: center;
}

.ie-10 .rd-navbar-static.rd-navbar_creative .rd-navbar-inner,
.ie-11 .rd-navbar-static.rd-navbar_creative .rd-navbar-inner {
    display: block;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-inner>* {
    width: 100%;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-nav-wrap {
    transition: none;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-nav {
    margin-left: -20px;
    margin-right: -20px;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-nav>li {
    padding-left: 20px;
    padding-right: 20px;
}

.rd-navbar-static.rd-navbar_creative .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar_creative .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 58px;
}

.rd-navbar-static.rd-navbar_creative *+.rd-navbar-nav-wrap {
    margin-top: 40px;
}

@media (min-width: 1600px) {
    .rd-navbar-static.rd-navbar_creative .rd-navbar-nav>li {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.rd-navbar-static.rd-navbar_inverse {
    background-color: transparent;
    box-shadow: none;
}

.rd-navbar-static.rd-navbar_inverse .rd-navbar-top-panel {
    border-bottom: 0;
}

@media (max-width: 1199.98px) {

    .rd-navbar-static.rd-navbar_inverse .rd-navbar-nav>li>.rd-navbar-dropdown,
    .rd-navbar-static.rd-navbar_inverse .rd-navbar-nav>li .rd-navbar-megamenu {
        margin-top: 29px;
    }
}

.rd-navbar-static.rd-navbar_inverse:not(.rd-navbar--is-stuck) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rd-navbar-static.rd-navbar_inverse:not(.rd-navbar--is-stuck) .rd-navbar-search {
    background-color: transparent;
}

@media (min-width: 1200px) {

    .rd-navbar-static.rd-navbar_inverse:not(.rd-navbar--is-stuck) .rd-navbar-nav>li>.rd-navbar-dropdown,
    .rd-navbar-static.rd-navbar_inverse:not(.rd-navbar--is-stuck) .rd-navbar-nav>li .rd-navbar-megamenu {
        margin-top: 43px;
    }
}

.rd-navbar-static.rd-navbar_corporate .rd-navbar-top-panel {
    border-bottom: 0;
}

.rd-navbar-static.rd-navbar_corporate .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar_corporate .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 27px;
}

.rd-navbar-static.rd-navbar_corporate .rd-search-results-live {
    margin-top: 11px;
}

.rd-navbar-static.rd-navbar_dark .rd-search__submit,
.rd-navbar-static.rd-navbar_dark .rd-navbar-search__toggle {
    color: #ffffff;
}

.rd-navbar-static.rd-navbar_dark .rd-search__submit:hover,
.rd-navbar-static.rd-navbar_dark .rd-navbar-search__toggle:hover {
    color: #FFCD00;
}

@media (max-width: 1199.98px) {
    .rd-navbar-static .rd-navbar-nav-wrap .rd-navbar-nav-wrap__element+.rd-navbar-nav {
        margin-right: 15px;
    }

    .rd-navbar-static .rd-navbar-top-panel__content-bottom .list-bordered .unit .unit-left {
        display: none;
    }

    .rd-navbar-static .rd-navbar-top-panel__content-bottom .list-bordered .unit .unit-body {
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .rd-navbar-static-smooth .rd-navbar-static {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transform: translate3d(0, 0, 0);
    }

    [data-x-mode="design-mode"] .rd-navbar-static-smooth .rd-navbar-static {
        position: relative;
    }

    .rd-navbar-static:not(.rd-navbar_creative) .rd-navbar-inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .rd-navbar-static:not(.rd-navbar_creative) .rd-navbar-inner>*+* {
        margin-top: 0;
    }

    .rd-navbar-static .rd-navbar-nav-wrap {
        text-align: right;
    }

    .ie-10 .rd-navbar-static .rd-navbar-inner>*,
    .ie-11 .rd-navbar-static .rd-navbar-inner>* {
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        vertical-align: middle;
        white-space: normal;
    }

    .ie-10 .rd-navbar-static .rd-navbar-inner:after,
    .ie-11 .rd-navbar-static .rd-navbar-inner:after {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-top: -25px;
        margin-bottom: -25px;
        min-height: inherit;
        width: 0;
    }

    .ie-10 .rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner:after,
    .ie-10 .rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner:after,
    .ie-11 .rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner:after,
    .ie-11 .rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner:after {
        margin-top: -15px;
        margin-bottom: -15px;
    }

    .rd-navbar-static .rd-navbar-panel+.rd-navbar-nav-wrap {
        width: auto;
        text-align: center;
    }

    .rd-navbar-static .rd-navbar-panel+.rd-navbar-nav-wrap:after {
        content: '';
    }
}

.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-static.rd-navbar--is-clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner {
    min-height: 74px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav>li .rd-navbar-megamenu,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 29px;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-top-panel,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-top-panel {
    display: none;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-nav-wrap__element .button,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-nav-wrap__element .button {
    padding-top: 12px;
    padding-bottom: 12px;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_transparent,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_transparent {
    background: #ffffff;
    box-shadow: none;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_transparent .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_transparent .rd-navbar-nav>li .rd-navbar-megamenu,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_transparent .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_transparent .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 30px;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_creative .rd-navbar-panel,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_creative .rd-navbar-panel {
    display: none;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_creative .rd-navbar-inner,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_creative .rd-navbar-inner {
    padding-top: 17px;
    padding-bottom: 17px;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_creative .rd-navbar-nav-wrap,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_creative .rd-navbar-nav-wrap {
    margin-top: 0;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_creative .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_creative .rd-navbar-nav>li .rd-navbar-megamenu,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_creative .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_creative .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 16px;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_corporate .rd-navbar-panel,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_corporate .rd-navbar-panel {
    display: none;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_corporate.rd-navbar_corporate .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_corporate.rd-navbar_corporate .rd-navbar-nav>li .rd-navbar-megamenu,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_corporate.rd-navbar_corporate .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_corporate.rd-navbar_corporate .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 27px;
}

.rd-navbar-static.rd-navbar--is-stuck.rd-navbar_dark,
.rd-navbar-static.rd-navbar--is-clone.rd-navbar_dark {
    background: #000000;
}

@media (max-width: 1199.98px) {

    .rd-navbar-static.rd-navbar--is-stuck,
    .rd-navbar-static.rd-navbar--is-clone {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .rd-navbar-static.rd-navbar--is-stuck .rd-navbar-inner>*+*,
    .rd-navbar-static.rd-navbar--is-clone .rd-navbar-inner>*+* {
        margin-top: 0;
    }

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

.rd-navbar-static .rd-navbar-static--hidden {
    display: none;
}

.rd-navbar-static-linked .rd-navbar-absolute .rd-navbar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/*
* Fullwidth Layout
*/
.rd-navbar-fullwidth {
    display: block;
    background-color: #ffffff;
    box-shadow: none;
}

.rd-navbar-fullwidth .rd-navbar-inner {
    position: relative;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 1200px;
    padding: 25px 0;
    margin-left: auto;
    margin-right: auto;
    transition: .33s all ease;
}

.rd-navbar-fullwidth .rd-navbar-inner>*+* {
    margin-top: 20px;
}

.rd-navbar-fullwidth .rd-navbar-inner,
.rd-navbar-fullwidth .rd-navbar-nav-wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rd-navbar-fullwidth .rd-navbar-inner>*,
.rd-navbar-fullwidth .rd-navbar-nav-wrap>* {
    padding: 0 15px;
}

.rd-navbar-fullwidth .rd-navbar-panel,
.rd-navbar-fullwidth .rd-navbar-nav-wrap__element {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap {
    width: 100%;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.rd-navbar-fullwidth .rd-navbar-nav {
    margin-top: -10px;
    font-size: 0;
    line-height: 0;
}

.rd-navbar-fullwidth .rd-navbar-nav>li {
    margin-top: 10px;
    padding: 0 5px;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>a,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:focus,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:active {
    color: #000000;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover {
    color: #FFCD00;
}

.rd-navbar-fullwidth .rd-navbar-nav>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.opened>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.active>a {
    color: #FFCD00;
}

.rd-navbar-fullwidth .rd-navbar-nav>li+li {
    margin-left: 20px;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown {
    margin-top: 25px;
    background: #fbfbfb;
}

.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav .rd-navbar-submenu>.rd-navbar-megamenu {
    border-top: 1px solid #f2f2f2;
}

.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 46px;
}

@media (min-width: 1200px) {
    .rd-navbar-fullwidth {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .rd-navbar-fullwidth .rd-navbar-inner {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .rd-navbar-fullwidth .rd-navbar-inner>*+* {
        margin-top: 0;
    }

    .rd-navbar-fullwidth .rd-navbar-nav-wrap {
        width: auto;
        text-align: center;
    }

    .rd-navbar-fullwidth .rd-navbar-nav-wrap:after {
        content: '';
    }
}

.rd-navbar-fullwidth.rd-navbar_transparent-landing .rd-navbar-inner {
    flex-flow: row wrap;
}

.rd-navbar-fullwidth.rd-navbar_transparent-landing.rd-navbar--is-stuck .rd-navbar-panel,
.rd-navbar-fullwidth.rd-navbar_transparent-landing.rd-navbar--is-clone .rd-navbar-panel {
    display: none;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-inner,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-inner {
    padding-top: 8px;
    padding-bottom: 8px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav>li .rd-navbar-megamenu,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav>li .rd-navbar-megamenu {
    margin-top: 29px;
}

@media (max-width: 1199.98px) {

    .rd-navbar-fullwidth.rd-navbar--is-stuck,
    .rd-navbar-fullwidth.rd-navbar--is-clone {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-inner>*+*,
    .rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-inner>*+* {
        margin-top: 0;
    }

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

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

.rd-navbar-fixed .rd-navbar-brand {
    position: fixed;
    text-align: left;
    top: 1px;
    left: 56px;
    height: 56px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    z-index: 17;
}

.rd-navbar-fixed .rd-navbar-brand img {
    height: 37px;
    width: auto;
}

.rd-navbar-fixed .rd-navbar-panel {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 4px;
    height: 56px;
    z-index: 999;
    border-bottom: 1px solid #ececee;
}

.rd-navbar-fixed .rd-navbar-panel__aside {
    position: relative;
    z-index: 11;
}

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

.rd-navbar-fixed .rd-navbar-nav-wrap {
    position: fixed;
    z-index: 100;
    top: -56px;
    left: 0;
    width: 280px;
    padding: 112px 0 81px;
    bottom: -56px;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-110%);
}

.rd-navbar-fixed .rd-navbar-nav-wrap.active {
    transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav-wrap .rd-navbar-items-list,
.rd-navbar-fixed .rd-navbar-nav-wrap .rd-navbar-search {
    margin-top: 20px;
}

.firefox .rd-navbar-fixed .rd-navbar-nav-wrap>*:last-child {
    margin-bottom: 80px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap__shop {
    position: relative;
}

.rd-navbar-fixed .rd-navbar-nav-wrap__shop>a {
    position: absolute;
    top: 0;
    right: 0;
    height: 48px;
    line-height: 48px;
    width: 48px;
    color: #ffffff;
    background: #FFCD00;
}

.rd-navbar-fixed .rd-navbar-nav-wrap__shop>a:hover {
    color: #ffffff;
    background: #000000;
}

.rd-navbar-fixed .rd-navbar-items-list+.rd-navbar-search {
    margin-right: 50px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap__element {
    margin: 20px 10px;
}

.rd-navbar-fixed .rd-navbar-nav-wrap__element .button {
    display: block;
}

.rd-navbar-fixed .rd-navbar-nav {
    display: block;
    margin: 20px 0;
    height: auto;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
}

.rd-navbar-fixed .rd-navbar-nav>li>a {
    font-size: 12px;
    line-height: 1.5;
}

.rd-navbar-fixed .rd-navbar-nav li {
    text-align: left;
}

.rd-navbar-fixed .rd-navbar-nav li>a {
    display: block;
    padding: 11px 56px 11px 18px;
}

.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-subtitle {
    color: inherit;
}

.rd-navbar-fixed .rd-navbar-nav li *+.rd-navbar-subtitle {
    margin-top: 2px;
}

.rd-navbar-fixed .rd-navbar-nav>li+li {
    margin-top: 4px;
}

.rd-navbar-fixed .rd-navbar-submenu {
    position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown .rd-navbar-submenu-toggle:after {
    height: 34px;
    line-height: 34px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown>li>a {
    padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-dropdown li li>a,
.rd-navbar-fixed .rd-navbar-submenu .rd-navbar-megamenu ul li li>a {
    padding-left: 46px;
}

.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened>.rd-navbar-megamenu {
    display: block;
}

.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
    display: none;
}

.rd-navbar-fixed .rd-navbar-nav-footer {
    padding: 0 15px;
}

.rd-navbar-fixed .rd-megamenu-list>li>a,
.rd-navbar-fixed .rd-navbar-dropdown>li>a {
    padding: 9px 56px 9px 16px;
    font-size: 12px;
    line-height: 1.5;
}

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

.rd-navbar-fixed .rd-megamenu-list>li>a {
    padding-left: 30px;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 20px;
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-megamenu *+.rd-megamenu-list {
    margin-top: 14px;
}

.rd-navbar-fixed .rd-navbar-megamenu *+.rd-megamenu-header {
    margin-top: 25px;
}

.rd-navbar-fixed .rd-navbar-megamenu>li+li {
    margin-top: 15px;
}

.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li .rd-navbar-megamenu {
    transition: opacity 0.3s, height 0.4s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-dropdown {
    padding: 4px 0 0;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-megamenu {
    padding-top: 15px;
    padding-bottom: 15px;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-megamenu {
    opacity: 1;
    height: auto;
}

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

.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: 40px;
    font: 400 14px "FontAwesome";
    line-height: 40px;
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-search-toggle {
    position: fixed;
    top: 4px;
    z-index: 1000;
    background-color: transparent;
    border: none;
}

.rd-navbar-fixed.active .rd-navbar-nav {
    transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-top-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: -56px;
    pointer-events: none;
}

.rd-navbar-fixed .rd-navbar-top-panel * {
    pointer-events: auto;
}

.rd-navbar-fixed .rd-navbar-top-panel__main.active .rd-navbar-top-panel__content {
    visibility: visible;
    opacity: 1;
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle {
    top: 4px;
    right: 2px;
    width: 48px;
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle span {
    top: 50%;
    margin-top: -3px;
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle span,
.rd-navbar-fixed .rd-navbar-top-panel__toggle span:before,
.rd-navbar-fixed .rd-navbar-top-panel__toggle span:after {
    position: absolute;
    width: 4px;
    height: 4px;
    line-height: 4px;
    text-align: center;
    background: #000000;
    left: 50%;
    margin-left: -2px;
    transition: .3s all ease;
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle span:before,
.rd-navbar-fixed .rd-navbar-top-panel__toggle span:after {
    content: '';
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle span:before {
    bottom: 100%;
    margin-bottom: 3px;
}

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

.rd-navbar-fixed .rd-navbar-top-panel__toggle.active span {
    transform: scale(0.7);
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle.active span:before {
    transform: translateY(16px);
}

.rd-navbar-fixed .rd-navbar-top-panel__toggle.active span:after {
    transform: translateY(-16px);
}

.rd-navbar-fixed .rd-navbar-top-panel__content {
    position: fixed;
    top: 55px;
    right: 0;
    z-index: 1001;
    width: auto;
    padding: 25px 35px;
    margin: 0 -1px;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: .23s all ease-out;
    font-size: 12px;
    line-height: 1.4;
    background: #ffffff;
    border: 1px solid #ececee;
    text-align: left;
}

.rd-navbar-fixed .rd-navbar-top-panel__content>*+* {
    margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .rd-navbar-top-panel__left+.rd-navbar-top-panel__right {
    margin-top: 5px;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .rd-navbar-items-list>li+li {
    margin-top: 5px;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered:before {
    content: '';
    display: table;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered>li {
    display: block;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered>li:nth-last-child(n + 2)::before {
    display: none;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered .unit .unit__left {
    display: none;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered .unit .unit__body {
    padding-left: 0;
}

.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered dl dt,
.rd-navbar-fixed .rd-navbar-top-panel__content .list-bordered dl dd {
    display: inline-block;
}

.rd-navbar-fixed .rd-navbar-top-panel__content *+.rd-navbar-top-panel__content-bottom {
    margin-top: 25px;
}

.rd-navbar-fixed .rd-navbar-search-collapsable-wrap .rd-search,
.rd-navbar-fixed .rd-navbar-top-panel .rd-search {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: .33s all ease;
    transform: translateY(-101%);
    border-bottom: 1px solid #ececee;
}

.rd-navbar-fixed .rd-navbar-nav-wrap .rd-search {
    position: relative;
    background: #f8f8f8;
}

.rd-navbar-fixed .rd-navbar-search_toggled {
    position: static;
}

.rd-navbar-fixed .rd-navbar-search_toggled .form-input {
    padding-right: 40px;
}

.rd-navbar-fixed .rd-navbar-search-wrap.active .rd-navbar-search_toggled .rd-search {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] {
    position: fixed;
    top: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 56px;
    z-index: 1000;
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle {
    top: -1px;
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle::before,
.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle::after {
    transform-origin: 50% 50%;
    transition: .22s;
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle::before {
    transform: scale(1) rotate(0deg);
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle::after {
    display: block;
    transform: scale(0) rotate(-90deg);
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle.active::before {
    transform: scale(0) rotate(90deg);
}

.rd-navbar-fixed [class*='rd-navbar-fixed__element'] .rd-navbar-search__toggle.active::after {
    transform: scale(1) rotate(0deg);
}

.rd-navbar-fixed .rd-navbar-fixed__element-1 {
    right: 0;
    width: 44.8px;
}

.rd-navbar-fixed .rd-navbar-fixed__element-2 {
    right: 44.8px;
    width: 28px;
}

.rd-navbar-fixed .rd-navbar-fixed__element-3 {
    right: 84px;
    width: 28px;
}

.rd-navbar-fixed .rd-search-results-live {
    display: none;
}

html .page .rd-navbar-fixed .rd-navbar-fixed--hidden {
    display: none;
}

.rd-navbar-fixed .rd-navbar-panel {
    color: #000000;
    box-shadow: none;
    background: #ffffff;
}

.rd-navbar-fixed .rd-navbar-nav-wrap {
    color: #ffffff;
    background: #ffffff;
    border-color: #f3f3f3;
}

.rd-navbar-fixed .rd-navbar-nav li>a {
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>a,
.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li.active>a,
.rd-navbar-fixed .rd-navbar-nav li.opened>a {
    color: #ffffff;
    background: #FFCD00;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-navbar-nav li.active>.rd-navbar-submenu-toggle,
.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #ffffff;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #ffffff;
}

.rd-navbar-fixed .rd-megamenu-list>li>a,
.rd-navbar-fixed .rd-navbar-dropdown>li>a {
    color: #000000;
}

.rd-navbar-fixed .rd-megamenu-list:hover>a,
.rd-navbar-fixed .rd-megamenu-list.focus>a,
.rd-navbar-fixed .rd-megamenu-list.active>a,
.rd-navbar-fixed .rd-megamenu-list.opened>a,
.rd-navbar-fixed .rd-navbar-dropdown:hover>a,
.rd-navbar-fixed .rd-navbar-dropdown.focus>a,
.rd-navbar-fixed .rd-navbar-dropdown.active>a,
.rd-navbar-fixed .rd-navbar-dropdown.opened>a {
    color: #ffffff;
    background: #FFCD00;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header {
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header a,
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header a:focus,
.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header a:active {
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-megamenu .rd-megamenu-header a:hover {
    color: #FFCD00;
}

.rd-navbar-fixed .rd-navbar-submenu-toggle {
    color: #000000;
}

.rd-navbar-fixed .rd-navbar-search-toggled .rd-search {
    border-color: #f3f3f3;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li>a {
    color: #000000;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li:hover>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.focus>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.active>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.opened>a {
    color: #ffffff;
    background: #FFCD00;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.active>.rd-navbar-submenu-toggle,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #ffffff;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #ffffff;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown {
    background: #000000;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list>li>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown>li>a {
    color: #000000;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list:hover>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list.focus>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list.active>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-megamenu-list.opened>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown:hover>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown.focus>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown.active>a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-dropdown.opened>a {
    color: #ffffff;
    background: #FFCD00;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu {
    background: #000000;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu .rd-megamenu-header {
    color: #ffffff;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu .rd-megamenu-header a,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu .rd-megamenu-header a:focus,
.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu .rd-megamenu-header a:active {
    color: #000000;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-megamenu .rd-megamenu-header a:hover {
    color: #FFCD00;
}

.rd-navbar-fixed.rd-navbar_half-dark .rd-navbar-submenu-toggle {
    color: #000000;
}

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

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

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

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span:after {
    top: 6px;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span:before,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span:after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span:before,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    backface-visibility: hidden;
    will-change: transform;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span:before,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle span:after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span:before,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle span:after {
    -webkit-transition-duration: 0.22s, 0.22s;
    transition-duration: 0.22s, 0.22s;
    -webkit-transition-delay: 0.22s, 0s;
    transition-delay: 0.22s, 0s;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle.active span,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle.active span {
    transition: background .22s 0s ease;
    background: transparent;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle.active span:before,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle.active span:after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle.active span:before,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle.active span:after {
    top: 0;
    -webkit-transition-delay: 0s, 0.22s;
    transition-delay: 0s, 0.22s;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle.active span:before,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-toggle.active span:after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-panel [class*='rd-navbar-fixed__element']>*,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-panel [class*='rd-navbar-fixed__element']>* {
    color: #ffffff;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-panel [class*='rd-navbar-fixed__element']>*:hover,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-panel [class*='rd-navbar-fixed__element']>*:hover {
    color: #FFCD00;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span::before,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span::after,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-top-panel__toggle span,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-top-panel__toggle span::before,
.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-top-panel__toggle span::after {
    background: #ffffff;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span::before,
.rd-navbar-fixed.rd-navbar_dark .rd-navbar-top-panel__toggle span::after {
    background: #ffffff;
}

.rd-navbar-fixed.rd-navbar_dark .rd-navbar-panel {
    color: #000000;
    background: #000000;
    border-bottom: 0;
}

.rd-navbar-fixed.rd-navbar_inverse .rd-navbar-panel {
    color: #000000;
    background: #000000;
    border-bottom: 0;
}

.rd-navbar-button-fixed {
    display: none;
    padding: 11px 56px 11px 18px;
}

.rd-navbar-fixed.rd-navbar_transparent-landing .rd-navbar-button-fixed {
    display: inline-block;
}

.rd-navbar-fixed.rd-navbar_transparent-landing .rd-navbar-button {
    display: none;
}

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

/*
* Sidebar Layout
*/
.rd-navbar-sidebar {
    display: block;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.rd-navbar-sidebar .rd-navbar-panel {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    padding: 35px;
}

.rd-navbar-sidebar .rd-navbar-panel__aside {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.rd-navbar-sidebar .rd-navbar-brand {
    text-align: center;
    transition: none;
}

.rd-navbar-sidebar .rd-navbar-brand img {
    transition: .22s;
}

.rd-navbar-sidebar .rd-navbar-nav-wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    width: 300px;
    transform: translateX(101%);
    transition: .36s all ease-in-out;
    background: #ffffff;
    padding-top: calc(6% + 1em);
    padding-bottom: calc(1% + 1em);
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #f3f3f3;
}

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

.rd-navbar-sidebar .rd-navbar-nav {
    padding: 12px;
}

.rd-navbar-sidebar .rd-navbar-nav li {
    line-height: 1;
}

.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li .rd-navbar-megamenu {
    transition: opacity 0.3s, height 0.4s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
}

.rd-navbar-sidebar .rd-navbar-nav li:not(.opened):not(.active)>a:hover+.rd-navbar-submenu-toggle::after {
    transform: none;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>a {
    color: #FFCD00;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-dropdown,
.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-megamenu {
    opacity: 1;
    height: auto;
    padding-top: 15px;
    padding-bottom: 3px;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #FFCD00;
}

.rd-navbar-sidebar .rd-navbar-nav>li>* {
    vertical-align: middle;
}

.rd-navbar-sidebar .rd-navbar-nav>li>a {
    font-size: 17px;
    font-weight: 400;
}

.rd-navbar-sidebar .rd-navbar-nav>li+li {
    margin-top: 25px;
}

.rd-navbar-sidebar .rd-navbar-dropdown>li,
.rd-navbar-sidebar .rd-megamenu-list>li {
    font-size: 14px;
    color: #000000;
}

.rd-navbar-sidebar .rd-navbar-dropdown>li>a,
.rd-navbar-sidebar .rd-megamenu-list>li>a {
    color: inherit;
}

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

.rd-navbar-sidebar .rd-navbar-dropdown>li>.rd-navbar-submenu-toggle {
    position: relative;
    display: inline-block;
    width: 17px;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    cursor: pointer;
    color: #000000;
}

.rd-navbar-sidebar .rd-navbar-dropdown>li>.rd-navbar-submenu-toggle::after {
    content: '\f107';
    position: relative;
    display: inline-block;
    font: 400 14px "FontAwesome";
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    will-change: transform;
    -webkit-filter: blur(0);
}

.rd-navbar-sidebar .rd-navbar-dropdown>li.active>.rd-navbar-submenu-toggle::after,
.rd-navbar-sidebar .rd-navbar-dropdown>li.opened>.rd-navbar-submenu-toggle::after {
    transform: rotate(180deg);
    color: #FFCD00;
}

.rd-navbar-sidebar .rd-navbar-dropdown>li.opened>.rd-navbar-dropdown {
    padding-top: 15px;
    padding-bottom: 2px;
}

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

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar-dropdown {
    padding-left: 10px;
    padding-right: 10px;
}

.rd-navbar-sidebar .rd-navbar-dropdown .rd-navbar-dropdown>li {
    font-size: 13px;
    color: #000000;
}

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

.rd-navbar-sidebar .rd-navbar-megamenu .rd-megamenu-header {
    font-size: 17px;
}

.rd-navbar-sidebar .rd-navbar-megamenu .rd-megamenu-header::after {
    content: '';
    display: block;
    width: 66%;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #ececee;
}

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

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

.rd-navbar-sidebar *+.rd-megamenu-list {
    margin-top: 15px;
}

.rd-navbar-sidebar .rd-navbar-top-panel {
    position: relative;
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
    background-color: transparent;
}

.rd-navbar-sidebar .rd-navbar-top-panel__main {
    overflow: hidden;
}

.rd-navbar-sidebar .rd-navbar-toggle {
    display: block;
}

.rd-navbar-sidebar .rd-navbar-search {
    left: 35px;
    right: 35px;
}

.rd-navbar-sidebar .rd-navbar-search .rd-search-results-live {
    margin-top: 2px;
}

@media (min-width: 1600px) {
    .rd-navbar-sidebar .rd-navbar-search .rd-search-results-live .search_list>li {
        width: 19.8%;
    }

    .rd-navbar-sidebar .rd-navbar-search .rd-search-results-live .search_list .search_all {
        width: 100%;
    }
}

.rd-navbar-sidebar.rd-sidebar_reverse .rd-navbar-panel {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.rd-navbar-sidebar.rd-sidebar_reverse .rd-navbar-panel::after {
    display: none;
}

.rd-navbar-sidebar.rd-sidebar_reverse .rd-navbar-nav-wrap {
    right: auto;
    left: 0;
    transform: translateX(-101%);
}

.rd-navbar-sidebar.rd-sidebar_reverse .rd-navbar-nav-wrap.active {
    transform: translateX(0);
}

.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-search__submit,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-search__toggle {
    color: #ffffff;
}

.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-search__submit:hover,
.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-inner .rd-navbar-search__toggle:hover {
    color: #FFCD00;
}

.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-items-list>li+li::before {
    display: none;
}

.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-panel .rd-navbar-items-list a {
    color: #ffffff;
}

.rd-navbar-sidebar.rd-navbar_inverse .rd-navbar-panel .rd-navbar-items-list a:hover {
    color: #FFCD00;
}

.rd-navbar-sidebar-smooth .rd-navbar-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.rd-navbar-sidebar-smooth .rd-navbar-sidebar .rd-navbar-wrap {
    position: absolute;
}

[data-x-mode="design-mode"] .rd-navbar-sidebar-smooth .rd-navbar-sidebar {
    position: relative;
}

.rd-navbar-sidebar.rd-navbar--is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom-color: #f3f3f3;
}

.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-top-panel {
    display: none;
}

.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-panel {
    padding-top: 6px;
    padding-bottom: 6px;
}

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

.rd-navbar-sidebar.rd-navbar--is-stuck .rd-navbar-search .rd-search-results-live {
    margin-top: 7px;
}

.rd-navbar-sidebar.rd-navbar--is-stuck.rd-navbar_inverse {
    background: #000000;
    border-bottom: 0;
}

.rd-navbar-sidebar.rd-navbar--is-stuck.rd-navbar_inverse .rd-navbar-inner .rd-search__submit:hover,
.rd-navbar-sidebar.rd-navbar--is-stuck.rd-navbar_inverse .rd-navbar-inner .rd-navbar-search__toggle:hover {
    color: #FFCD00;
}

.rd-navbar-sidebar.rd-navbar--is-stuck.rd-navbar_inverse .rd-navbar-panel .rd-navbar-items-list a:hover {
    color: #FFCD00;
}

.rd-navbar-sidebar-linked .rd-navbar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/*
* @subsection   Page boxed layout style redeclaration
**/
/*html.boxed {
	.rd-navbar--is-clone {
		max-width: $page-boxed-width;
		margin-left: auto;
		margin-right: auto;
	}
}*/
/** @section Search Results */
.rd-search-results-live {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 600px;
    overflow-y: auto;
    margin: -3px 0 0;
    text-align: left;
    z-index: 998;
}

.rd-search-results-live #search-results {
    position: relative;
    padding: 16px 0 0;
    color: #000000;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform-origin: 50% 0;
    transform: scale(1, 0.9);
    transition: .3s all ease;
}

.rd-search-results-live #search-results::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    border: 1px solid #d7d7d7;
    border-top: 0;
}

.rd-search-results-live #search-results.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

.rd-search-results-live .search-quick-result {
    padding-left: 15px;
    padding-right: 15px;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    color: #151515;
}

.rd-search-results-live .search-list {
    margin-top: 11px;
}

.rd-search-results-live .search-list li:only-child {
    padding: 0 15px 15px;
}

.rd-search-results-live .search-link {
    color: #cccccc;
}

.rd-search-results-live .search-link:hover {
    color: #FFCD00;
}

.rd-search-results-live .search-error {
    font-size: 14px;
    line-height: 1.6;
}

.rd-search-results-live .search-title {
    position: relative;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #151515;
}

.rd-search-results-live .search-title a:hover {
    color: #FFCD00;
}

.rd-search-results-live .search-list-item-all {
    margin-top: 18px;
    width: 100%;
}

.rd-search-results-live .search-submit {
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: block;
    padding: 8px;
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    text-align: center;
    color: #ffffff;
    background: #FFCD00;
}

.rd-search-results-live .search-submit:hover {
    color: #ffffff;
    background: #cccccc;
}

.rd-search-results-live .match {
    display: none;
}

.not-empty~.rd-search-results-live {
    visibility: visible;
    opacity: 1;
}

.rd-search-results-live p {
    font-size: 11px;
}

.rd-search-results-live p * {
    margin: 0;
}

.rd-search-results-live .search-list-item {
    padding: 0 15px;
}

.rd-search-results-live *+p {
    margin-top: 5px;
}

.rd-search-results-live .search-list-item+.search-list-item {
    margin-top: 17px;
}

*+.rd-search-results {
    margin-top: 40px;
}

@media (min-width: 768px) {
    *+.rd-search-results {
        margin-top: 55px;
    }
}

.rd-search-results .search-list {
    counter-reset: li;
    text-align: left;
    padding-left: 0;
    font-size: 18px;
    list-style-type: none;
    overflow: hidden;
}

.rd-search-results .search-list li div {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
}

.rd-search-results .search-list li:only-child::before {
    display: none;
}

.rd-search-results .search-list-item {
    position: relative;
    padding-left: 40px;
    font-size: 24px;
    color: #9b9b9b;
}

.rd-search-results .search-list-item+.search-list-item {
    margin-top: 40px;
}

.rd-search-results .search-title::before {
    content: counter(li, decimal-leading-zero) ".";
    counter-increment: li;
    position: absolute;
    left: 0;
    top: 0;
}

.rd-search-results .search {
    color: #ffffff;
    padding: 0 .25em;
    background: #FFCD00;
}

.rd-search-results .match {
    padding: 5px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000000;
}

.rd-search-results .match em {
    margin: 0;
    font-style: normal;
}

.rd-search-results p * {
    margin: 0;
}

.rd-search-results *+.match {
    margin-top: 10px;
}

.rd-search-classic {
    position: relative;
}

.rd-search-classic .form-input {
    padding-right: 50px;
}

.rd-search-classic .form-input,
.rd-search-classic .form-label {
    letter-spacing: 0;
}

.rd-search-classic .rd-search-submit {
    background: none;
    border: none;
    display: inline-block;
    padding: 0;
    outline: none;
    outline-offset: 0;
    cursor: pointer;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    padding-top: 3px;
    padding-right: 2px;
    margin: 0;
    text-align: center;
    color: #cccccc;
    font-size: 0;
    line-height: 0;
}

.rd-search-classic .rd-search-submit::-moz-focus-inner {
    border: none;
    padding: 0;
}

.rd-search-classic .rd-search-submit:before {
    position: relative;
    top: -1px;
    content: '\e014';
    font: 400 20px 'fl-chapps';
    line-height: 1;
    transition: .33s all ease;
}

.rd-search-classic .rd-search-submit:hover {
    color: #FFCD00;
}

.rd-search.rd-search-inline {
    position: relative;
}

.rd-search.rd-search-inline .form-input {
    padding-right: 50px;
}

.rd-search.rd-search-inline .btn-link {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    right: 0;
    margin: 0;
    font-size: 21px;
    color: #cccccc;
    transition: .33s;
}

.rd-search.rd-search-inline .btn-link::before {
    display: block;
    margin: auto;
}

.rd-search.rd-search-inline .btn-link:hover {
    color: #FFCD00;
}

.rd-search.rd-search-inline.form-sm .form-input {
    padding-right: 40px;
}

.rd-search.rd-search-inline.form-sm .btn-link {
    width: 40px;
    font-size: 18px;
}

.rd-search.rd-search-inline.form-lg .form-input {
    padding-right: 80px;
}

.rd-search.rd-search-inline.form-lg .btn-link {
    width: 80px;
}

/** @section Nav custom */
.tabs-custom {
    text-align: left;
}

.tabs-custom .nav-tabs {
    font-size: 0;
    line-height: 0;
    word-spacing: 0;
    border: 0;
}

.tabs-custom .nav-tabs:before,
.tabs-custom .nav-tabs:after {
    display: none;
}

.tabs-custom .nav-item {
    float: none;
    border: 0;
    cursor: pointer;
    transition: .33s all ease;
    line-height: 1;
}

.tabs-custom .nav-link {
    margin: 0;
    border-radius: 0;
    border: 0;
    padding: 0 5px 0 0;
    font-size: 32px;
}

.tabs-custom .nav-link.active {
    cursor: default;
    color: #FFCD00;
}

.tab-content>.tab-pane {
    display: block;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.tab-content>.active {
    visibility: visible;
    height: auto;
    overflow: visible;
}

*+.tabs-horizontal.tabs-corporate {
    margin-top: 40px;
}

*+.tabs-vertical.tabs-corporate {
    margin-top: 40px;
}

@media (min-width: 768px) {
    *+.tabs-vertical.tabs-corporate {
        margin-top: 60px;
    }

    .nav-link {
        font-size: 36px;
    }
}

@media (min-width: 1200px) {
    *+.tabs-vertical.tabs-corporate {
        margin-top: 80px;
    }
}

.tabs-line .nav-tabs {
    position: relative;
}

.tabs-line .nav-link {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
}

.tabs-line *+.tab-content {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .tabs-line .nav-tabs {
        max-width: 100%;
        border: 2px solid #ffffff;
    }

    .tabs-line .nav-item {
        margin: -1px;
    }

    .tabs-line .nav-link {
        padding: 7px 10px;
        color: #000000;
        background: transparent;
        border-bottom: 2px solid #ffffff;
    }

    .tabs-line .nav-link:first-child {
        border-top: 2px solid #ffffff;
    }

    .tabs-line .nav-link:hover,
    .tabs-line .nav-link.active {
        color: #ffffff;
        background: #FFCD00;
        border-color: #FFCD00;
    }
}

.tabs-corporate .nav-tabs {
    position: relative;
    margin-bottom: -10px;
    margin-left: -10px;
}

.tabs-corporate .nav-tabs:empty {
    margin-bottom: 0;
    margin-left: 0;
}

.tabs-corporate .nav-tabs>* {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: 10px;
}

.tabs-corporate .nav-link {
    padding: 10px 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    background: transparent;
    border: 1px solid #ffffff;
    text-align: center;
    vertical-align: middle;
}

.tabs-corporate .nav-link:hover,
.tabs-corporate .nav-link.active {
    color: #ffffff;
    background: #FFCD00;
    border-color: #FFCD00;
}

.tabs-corporate .tab-content {
    padding: 30px 0 0;
}

.tabs-custom.tabs-modern .nav-custom-tabs {
    text-align: left;
    line-height: 2;
}

.tabs-custom.tabs-modern .nav-custom-tabs .nav-link {
    display: inline-block;
    position: relative;
    width: 100%;
    font: 400 36px/72px "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.tabs-custom.tabs-modern .nav-custom-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 120px;
    height: 2px;
    background-color: transparent;
}

.tabs-custom.tabs-modern .nav-custom-tabs .nav-link:hover,
.tabs-custom.tabs-modern .nav-custom-tabs .nav-item .nav-link.active {
    color: #FFCD00;
}

.tabs-custom.tabs-modern.tabs-horizontal .nav-link {
    font-size: 30px;
    padding: 5px 15px 5px 0;
}

@media (min-width: 768px) {
    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs {
        border-bottom: 2px solid #f2f2f2;
    }

    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-item+.nav-item {
        margin-left: 59px;
    }

    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-link {
        font-size: 36px;
        padding: 5px 0;
        width: auto;
        position: relative;
    }

    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 120px;
        height: 2px;
        background-color: transparent;
    }

    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-link:hover,
    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-item .nav-link.active {
        color: #ffffff;
    }

    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-link:hover::after,
    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-item .nav-link.active::after {
        background-color: #FFCD00;
    }

    .tabs-custom.tabs-modern.tabs-horizontal *+.tab-content {
        margin-top: 85px;
    }
}

@media (min-width: 1200px) {
    .tabs-custom.tabs-modern.tabs-horizontal .nav-custom-tabs .nav-item+.nav-item {
        margin-left: 210px;
    }
}

@media (min-width: 768px) {
    .tabs-custom.tabs-modern.tabs-vertical .nav-custom-tabs {
        text-align: right;
        border-right: 1px solid #f2f2f2;
    }

    .tabs-custom.tabs-modern.tabs-vertical .nav-custom-tabs .nav-link {
        padding: 0 30px 0 0;
        width: auto;
        border-right: 1px solid transparent;
        border-bottom: none;
        margin-right: -1px;
    }

    .tabs-custom.tabs-modern.tabs-vertical .nav-custom-tabs .nav-link:hover,
    .tabs-custom.tabs-modern.tabs-vertical .nav-custom-tabs .nav-item .nav-link.active {
        border-right: 1px solid;
    }

    .tabs-custom.tabs-modern.tabs-vertical .nav-custom-tabs .nav-item+.nav-item {
        margin-top: 15px;
    }

    .tabs-custom.tabs-modern.tabs-vertical .tab-content {
        padding: 0 0 0 48px;
    }
}

@media (min-width: 1200px) {
    .tabs-custom.tabs-modern .nav-custom-tabs {
        min-width: 100px;
    }
}

@media (min-width: 1600px) {
    .tabs-custom.tabs-modern .nav-custom-tabs {
        min-width: 215px;
    }
}

@media (min-width: 768px) {
    .tabs-horizontal.tabs-corporate .nav-tabs {
        position: relative;
        width: 100%;
        display: block;
        text-align: center;
        border: 0;
        will-change: transform;
    }

    .tabs-horizontal.tabs-corporate .nav-item {
        display: inline-block;
        will-change: transform;
    }

    .tabs-horizontal.tabs-corporate .nav-link {
        display: block;
        position: relative;
        z-index: 1;
        min-width: 130px;
        letter-spacing: .1em;
        padding: 13px 20px;
        border: 2px solid #ffffff;
    }

    .tabs-horizontal.tabs-corporate .nav-link,
    .tabs-horizontal.tabs-corporate .nav-link::before {
        transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    }

    .tabs-horizontal.tabs-corporate .nav-link::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        z-index: -1;
        opacity: 0;
        transform: scale3d(0.7, 1, 1);
        transition: transform 0.4s, opacity 0.4s;
        transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
        background: #FFCD00;
    }

    .tabs-horizontal.tabs-corporate .nav-link.active,
    .tabs-horizontal.tabs-corporate .nav-link:hover {
        color: #ffffff;
        border-color: #FFCD00;
        background-color: transparent;
    }

    .tabs-horizontal.tabs-corporate .nav-link.active::before,
    .tabs-horizontal.tabs-corporate .nav-link:hover::before {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }

    .tabs-horizontal.tabs-line .nav-tabs {
        border: 0;
        border-bottom: 4px solid #d7d7d7;
    }

    .tabs-horizontal.tabs-line .nav-item {
        display: inline-block;
    }

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

    .tabs-horizontal.tabs-line .nav-link {
        position: relative;
        padding: 0 0 15px 0;
        background-color: transparent;
        color: #9b9b9b;
        border: 0;
    }

    .tabs-horizontal.tabs-line .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        height: 4px;
        width: 0;
        background: #FFCD00;
        transition: .22s ease;
    }

    .tabs-horizontal.tabs-line .nav-link.active,
    .tabs-horizontal.tabs-line .nav-link:hover {
        color: #cccccc;
    }

    .tabs-horizontal.tabs-line .nav-link.active::after {
        width: 100%;
    }

    .tabs-horizontal.tabs-line *+.tab-content {
        margin-top: 30px;
    }

    .tabs-vertical {
        display: flex;
        align-items: flex-start;
    }

    .tabs-vertical .nav-tabs {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex-shrink: 0;
        max-width: 50%;
    }

    .tabs-vertical .nav-item {
        border: 0;
        width: 100%;
        text-align: left;
    }

    .tabs-vertical .nav-link.active,
    .tabs-vertical .nav-link:hover {
        box-shadow: 0 9px 21px 0 rgba(30, 30, 30, 0.13);
    }

    .tabs-vertical .tab-content {
        flex-grow: 1;
    }

    .tabs-vertical.tabs-corporate .nav-tabs {
        width: auto;
        min-width: 260px;
        border: 0;
    }

    .tabs-vertical.tabs-corporate .nav-item {
        margin: 0;
    }

    .tabs-vertical.tabs-corporate .nav-link {
        position: relative;
        padding: 17px 30px;
        border: 0;
        overflow: hidden;
        text-align: left;
    }

    .tabs-vertical.tabs-corporate .nav-item+.nav-item {
        margin-top: 2px;
    }

    .tabs-vertical.tabs-corporate .tab-content {
        padding: 0 0 0 30px;
    }
}

@media (min-width: 992px) {
    .tabs-horizontal.tabs-corporate .tab-content {
        padding: 30px 30px 0;
    }

    .tabs-vertical.tabs-corporate .tab-content {
        padding: 0 0 0 45px;
    }
}

.tab-pane-item {
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    padding: 20px 0;
    border-top: 1px solid #c7c7c7;
}

.tab-pane-item:first-child {
    margin-top: 0;
}

@media (min-width: 576px) {
    .tab-pane-item {
        margin-top: 30px;
        padding: 0;
        flex-wrap: nowrap;
        border-top: none;
    }
}

@media (min-width: 1200px) {
    .tab-pane-item {
        margin-top: 75px;
    }
}

.time {
    display: block;
    width: 100%;
    line-height: inherit;
}

@media (min-width: 576px) {
    .time {
        display: inline-block;
        max-width: 130px;
    }
}

@media (min-width: 576px) {
    .event-wrap {
        margin-left: 30px;
    }
}

@media (min-width: 768px) {
    .event-wrap {
        margin-left: 170px;
    }
}

/** @section Panel custom */
.card-group-custom {
    margin-bottom: 0;
}

.card-group-custom .card-header+.collapse>.card-body,
.card-group-custom .card-header+.collapse>.list-group {
    border-top: 0;
}

.card-group-custom .card+.card {
    margin-top: 0;
}

.card-group-custom.card-group-corporate .card+.card {
    margin-top: 30px;
}

.card-custom {
    display: block;
    margin: 0;
    background: inherit;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

.card-custom a {
    display: block;
}

.card-custom .card-header {
    padding: 0;
    border-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-custom .card-body {
    padding: 0;
    border: 0;
}

.card-custom .card-title {
    margin-bottom: 0;
}

*+.card-group-custom {
    margin-top: 35px;
}

@media (min-width: 768px) {
    *+.card-group-custom {
        margin-top: 50px;
    }
}

.card-corporate {
    text-align: left;
    box-shadow: -1px 2px 5px 0px rgba(68, 73, 83, 0.12);
}

.card-corporate .card-title a,
.card-corporate .card-body {
    background: #ffffff;
}

.card-corporate .card-title a {
    position: relative;
    z-index: 1;
    padding: 21px 82px 21px 32px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0;
    color: #2c343b;
    transition: 1.3s all ease;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #dedede;
}

.card-corporate .card-title a .card-arrow:after {
    opacity: 0;
    visibility: hidden;
}

.card-corporate .card-title a.collapsed {
    border-radius: 6px;
    border-bottom-width: 0;
}

.card-corporate .card-title a.collapsed .card-arrow {
    border-radius: 0 6px 6px 0;
}

.card-corporate .card-title a.collapsed .card-arrow:after {
    opacity: 1;
    visibility: visible;
}

.card-corporate .card-arrow {
    position: absolute;
    top: 0;
    bottom: -1px;
    right: -1px;
    z-index: 2;
    width: 70px;
    background: #FFCD00;
    border-radius: 0 6px 0 0;
    transition: .33s all ease;
}

.card-corporate .card-arrow::before,
.card-corporate .card-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    z-index: 4;
    transform: translateY(-50%);
    background: #ffffff;
}

.card-corporate .card-arrow::before {
    width: 14px;
    height: 2px;
    right: 28px;
}

.card-corporate .card-arrow::after {
    width: 2px;
    height: 14px;
    right: 34px;
}

.card-corporate .collapse {
    position: relative;
    z-index: 1;
    color: #000000;
    border-radius: 0 0 6px 6px;
}

.card-corporate .card-body {
    padding: 25px 44px 25px 32px;
}

@media (max-width: 991.98px) {

    .card-corporate .card-title a,
    .card-corporate .card-body {
        padding-left: 25px;
    }
}

@media (min-width: 768px) {
    .card-corporate .card-title a {
        font-size: 18px;
    }
}

/** @section Tooltop Custom */
.tooltip {
    font-size: 24px;
    line-height: 1.2;
}

.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #FFCD00;
}

.tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #FFCD00;
}

/** @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(-15px, 0px, 0px);
    transform: translate3d(-15px, 0px, 0px);
}

@media (min-width: 576px) {
    .owl-carousel .owl-stage-outer {
        transform: translate3d(calc((100vw - 100%) / 2), 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-item img {
    display: block;
    width: 100%;
}

.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 {
    padding-bottom: 70px;
}

*+.owl-carousel {
    margin-top: 40px;
}

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

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 21px;
    border: none;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    background: transparent;
}

.owl-carousel .owl-prev>span,
.owl-carousel .owl-next>span {
    display: none;
}

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

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    text-decoration: none;
    color: #FFCD00;
    transition: color .3s;
}

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

.owl-carousel .owl-prev {
    left: 0;
}

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

.owl-carousel .owl-next {
    right: calc(30px);
}

.owl-carousel .owl-next::before {
    content: '\e900';
}

@media (min-width: 576px) {
    .owl-carousel .owl-prev {
        left: 0px;
    }

    .owl-carousel .owl-next {
        left: 50px;
    }
}

@media (min-width: 768px) {
    .owl-carousel .owl-prev {
        left: calc(50% - 80px);
        transform: translateX(-100%);
    }

    .owl-carousel .owl-next {
        left: auto;
        right: calc(50% + 60px);
        transform: translateX(100%);
    }
}

.owl-carousel .owl-dots {
    padding-top: 30px;
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    zoom: 1;
    margin: 0 10px;
}

.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: #FFCD00;
}

.owl-carousel {
    width: 100vw;
}

.owl-2 {
    width: 100%;
    padding-bottom: 0;
}

.owl-2 .owl-stage-outer {
    transform: translate3d(0px, 0px, 0px);
}

/** @section Material Parallax  */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.material-parallax {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: 0;
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.material-parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 101%;
    min-height: 101%;
    max-width: none;
    transform: translate3d(-50%, 0, 0);
}

.parallax-disabled {
    background-size: cover;
    background-position: center;
}

html:not(.ie-11):not(.ios) .parallax-disabled {
    background-attachment: fixed;
}

/** @section Parallax js*/
.scene {
    display: none;
    overflow: hidden;
    height: 100%;
}

.scene img {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .scene {
        display: block;
    }
}

.layer {
    height: 100%;
}

.dot {
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    top: 100px;
    left: 100px;
    background-color: red;
}

.dot-2 {
    top: 200px;
    left: 400px;
    background-color: green;
}

.dot-3 {
    top: 290px;
    left: 500px;
    background-color: blue;
}

html .dtp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
}

html .dtp>.dtp-content {
    background: #ffffff;
    max-width: 300px;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: relative;
    left: 50%;
    margin: 0 auto;
}

html .dtp-header {
    background: #FFCD00;
    color: #ffffff;
    text-align: center;
    padding: 0.3rem;
    position: relative;
}

html .dtp-date,
html .dtp-time {
    background: #ffd733;
    text-align: center;
    color: #ffffff;
    padding: 10px;
}

html .dtp-date>div {
    padding: 0;
    margin: 0;
}

html .dtp-actual-month {
    font-size: 1.5em;
}

html .dtp-actual-num,
html .dtp-actual-maxtime {
    font-size: 3em;
    line-height: 0.9;
}

html .dtp-actual-year {
    font-size: 1.5em;
    color: #ffffff;
}

html .dtp-picker {
    padding: 0.625rem;
    text-align: center;
}

html .dtp-picker-month,
html .dtp-actual-time {
    font-weight: 500;
    text-align: center;
}

html .dtp-close {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
}

html .dtp-close>a {
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
}

html .dtp table.dtp-picker-days {
    width: 100%;
    margin: 0;
    border: none;
}

html .dtp table.dtp-picker-days tr {
    border: none;
}

html .dtp table.dtp-picker-days tr>td {
    border: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 5px 4px;
}

html .dtp table.dtp-picker-days tr>td>span.dtp-select-day {
    color: #bdbdbd !important;
}

html .dtp table.dtp-picker-days tr>td>a {
    color: #000000;
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    transition: .3s all ease;
}

html .dtp .dtp-picker-time>a {
    color: #000000;
    border-radius: 50% !important;
}

html .dtp table.dtp-picker-days tr>td>a.selected {
    background: #FFCD00;
    color: #ffffff;
}

html .dtp table.dtp-picker-days tr>th {
    color: #000000;
    text-align: center;
    font-weight: 700;
    padding: 0.4rem 0.3rem;
    border-bottom: none;
}

html .dtp .p10,
html .dtp .p20,
html .dtp .p60,
html .dtp .p80 {
    display: inline-block;
    vertical-align: middle;
}

html .dtp .p10 {
    width: 10%;
}

html .dtp .p10>a {
    color: #ffffff;
    transition: .3s all ease;
}

html .dtp .p10>a:hover {
    color: #d7d7d7;
}

html .dtp .p20 {
    width: 20%;
}

html .dtp .p60 {
    width: 60%;
}

html .dtp .p80 {
    width: 80%;
}

html .dtp-picker-month {
    display: none !important;
}

html .dtp-meridien-am,
html .dtp-meridien-pm {
    position: relative;
    top: 10px;
    color: #000000;
    font-weight: 500;
    padding: .4375rem .3125rem;
    border-radius: 50% !important;
    text-decoration: none;
    background: #eeeeee;
    font-size: .625rem;
}

html .dtp-actual-meridien a.selected {
    background: #FFCD00;
    color: #ffffff;
}

html .dtp-picker-time {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 1em;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    text-align: center !important;
}

html .dtp-picker-time>a {
    display: block;
    line-height: 30px;
}

html .dtp-picker-time>a.dtp-select-hour.selected {
    background: #FFCD00;
    color: #ffffff;
}

html .dtp-picker-time>a.dtp-select-hour.disabled {
    color: #2c343b;
}

html .dtp-picker-time>a.dtp-select-minute.disabled {
    color: #2c343b;
}

html .dtp-picker-time>a.dtp-select-minute.selected {
    background: #FFCD00;
    color: #ffffff;
}

html .dtp-picker-clock {
    margin: .625rem 1.25rem 0 1.25rem;
    padding: .625rem;
    border-radius: 50% !important;
    background: #d7d7d7;
}

html .dtp-clock-center {
    width: 15px;
    height: 15px;
    background: #2c343b;
    border-radius: 50%;
    position: absolute;
    z-index: 50;
}

html[class*="ie"] html .dtp-clock-center {
    display: none;
}

html .dtp-hand,
html .dtp-hour-hand {
    position: absolute;
    width: 4px;
    margin-left: -2px;
    background: #2c343b;
    transform: rotate(0deg);
    transform-origin: bottom;
    z-index: 1;
}

html[class*="ie"] html .dtp-hand,
html[class*="ie"] html .dtp-hour-hand {
    display: none;
}

html .dtp-minute-hand {
    width: 2px;
    margin-left: -1px;
}

html .dtp-hand.on {
    background: #FFCD00;
}

html .dtp-buttons {
    padding: 0 .625rem .625rem .625rem;
    margin: 0;
    margin-top: 15px;
    text-align: right;
}

html .dtp-buttons .btn {
    margin-bottom: 0;
}

html .dtp.hidden,
html .dtp .hidden {
    display: none;
}

html .dtp .invisible {
    visibility: hidden;
}

.dtp-buttons {
    margin-bottom: -10px;
    margin-left: -10px;
    transform: translateY(-10px);
}

.dtp-buttons>*,
.dtp-buttons>*:first-child {
    display: inline-block;
    margin-left: 10px;
}

.dtp-btn-cancel,
.dtp-btn-ok {
    min-width: 0;
    font-family: "Sulphur Point", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: .22s;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 5px 25px;
    font-size: 0.625rem;
    line-height: 22px;
    border-radius: 0;
}

.btn-group-1 *+.btn {
    margin-top: 0;
}

/** @section Bootstrap Modal */
.ios .modal-open {
    position: fixed;
    width: 100%;
    height: 100%;
}