/*
* @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% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

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

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

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

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

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

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

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

/*
* @subsection General Styles
*/
.rd-navbar-wrap,
.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-megamenu,
.rd-navbar-fixed .rd-navbar-nav-wrap,
.rd-navbar-fixed .rd-navbar-submenu,
.rd-navbar-fixed .rd-navbar-search .form-group {
    transition: 0.3s 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-wrap {
    position: relative;
    z-index: 10;
}

.rd-navbar-wrap,
.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: #303334;
    display: none;
}

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

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

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

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

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

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

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

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

.rd-navbar--has-sidebar body {
    padding-left: 270px;
}

.rd-navbar--is-stuck {
    border-bottom-color: #e8e8e8;
}

.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--is-stuck.rd-navbar--loading {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

/*
* Navbar components
*/
.rd-navbar {
    display: none;
    background: #fff;
    box-shadow: none;
}

.rd-navbar-toggle {
    display: inline-block;
    position: relative;
    width: 48px;
    /* height: 48px; */
    line-height: 48px;
    cursor: pointer;
    color: #303334;
    background-color: transparent;
    border: none;
    display: none;
    z-index: 99999;
}

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

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

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

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

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

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

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

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

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

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

.rd-navbar-toggle:focus {
    outline: none;
}

.rd-navbar-brand .brand-name {
    font-size: 100px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05em;
    text-transform: uppercase;
    color: #303334;
}

@media (min-width: 1200px) {
    .rd-navbar-brand .brand-name {
        font-size: 70px;
    }
}

@media (min-width: 1200px) and (min-height: 700px) {
    .rd-navbar-brand .brand-name {
        font-size: 80px;
    }
}

@media (min-width: 1200px) and (min-height: 940px) {
    .rd-navbar-brand .brand-name {
        font-size: 100px;
    }
}

.rd-navbar-brand .brand-name:focus {
    outline: 0;
}

.rd-navbar-dropdown {
    display: none;
}

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

*+.rd-navbar-search {
    margin-top: 45px;
}

.rd-navbar-search-inline .rd-navbar-search-form {
    text-align: center;
}

.rd-navbar-search-inline .rd-navbar-search-form .btn {
    margin-top: 14px;
}

@media (min-width: 768px) {
    .rd-navbar-search-inline .rd-navbar-search-form {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%;
    }

    .rd-navbar-search-inline .rd-navbar-search-form,
    .rd-navbar-search-inline .rd-navbar-search-form * {
        vertical-align: baseline;
    }

    .rd-navbar-search-inline .rd-navbar-search-form * {
        margin-bottom: 0;
    }

    .rd-navbar-search-inline .rd-navbar-search-form .btn {
        margin: 0 0 0 30px;
    }

    .rd-navbar-search-inline .rd-navbar-search-form .rd-navbar-search-form-input {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .rd-navbar-search-inline .rd-navbar-search-form {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.rd-navbar-search-toggle {
    display: inline-block;
    font: 400 18px/36px "FontAwesome";
}

.rd-navbar-search-toggle,
.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
    text-align: center;
    width: 36px;
    height: 36px;
}

.rd-navbar-search-toggle:before,
.rd-navbar-search-toggle:after {
    position: absolute;
    left: 0;
    top: 0;
}

.rd-navbar-search-toggle:before {
    content: '\f002';
    transition: .3s all ease;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.rd-navbar:not(.rd-navbar-fixed) .rd-navbar-search-toggle:after {
    content: '\f00d';
    transition: .3s all ease;
    -webkit-transform: scale(0) rotate(-90deg);
    transform: scale(0) rotate(-90deg);
}

.rd-navbar:not(.rd-navbar-fixed) .rd-navbar-search-toggle.active:before {
    -webkit-transform: scale(0) rotate(90deg);
    transform: scale(0) rotate(90deg);
}

.rd-navbar:not(.rd-navbar-fixed) .rd-navbar-search-toggle.active:after {
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.rd-navbar-fixed .rd-navbar-search-toggle,
.rd-navbar-fixed .rd-navbar-search-toggle:before {
    width: 48px;
    line-height: 48px;
}

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

.rd-navbar-search-form-input input {
    width: 100%;
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 300;
    padding: 15px 28px;
    line-height: 24px;
    border: 1px solid #ededed;
    color: #787b7c;
    background: #fff;
    letter-spacing: .02em;
}

.rd-navbar-search-form-input input:-moz-placeholder {
    color: #787b7c;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-input input::-webkit-input-placeholder {
    color: #787b7c;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-input input::-moz-placeholder {
    color: #787b7c;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-input input:-ms-input-placeholder {
    color: #787b7c;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-input input:focus:-moz-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-input input:focus::-webkit-input-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-input input:focus::-moz-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-input input:focus:-ms-input-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-submit {
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #303334;
    text-align: center;
    font-size: 24px;
}

.rd-navbar-search-form-submit:before {
    content: "\f002";
    font-weight: 400;
    font-family: "FontAwesome";
}

.rd-navbar-search-form-submit.active {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:-moz-placeholder {
    color: #fff;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input::-moz-placeholder {
    color: #fff;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
    transition: 0.3s;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:focus:-moz-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:focus::-webkit-input-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:focus::-moz-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-inverse .rd-navbar-search-form-input input:focus:-ms-input-placeholder {
    opacity: 0.4;
}

.rd-navbar-search-form-inverse .rd-navbar-live-search-results {
    border-color: rgba(255, 255, 255, 0.3);
}

.rd-navbar-search-results {
    margin-top: 20px;
}

.rd-navbar-search *+.btn {
    margin-top: 30px;
}

.rd-navbar-search-results .result-item {
    padding: 35px 5px;
}

.rd-navbar-search-results .result-item,
.rd-navbar-search-results .result-item * {
    text-align: left;
}

.rd-navbar-search-results .result-item+.result-item {
    border-top: 1px solid #d3d4d4;
}

.rd-navbar-search-results .result-item *+p {
    margin-top: 21px;
}

.rd-navbar-search-results .result-item .search_title a {
    font-size: 20px;
}

.rd-navbar-live-search-results {
    position: absolute;
    left: 0;
    right: 0;
    padding: 16px 8px 8px;
    top: 100%;
    margin-top: -2px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    z-index: 998;
    border: 1px solid #ededed;
}

.rd-navbar-live-search-results,
.rd-navbar-live-search-results * {
    color: #787b7c;
}

.rd-navbar-live-search-results .search-quick-result {
    padding-left: 8px;
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 30px;
    text-transform: uppercase;
    color: #303334;
}

.rd-navbar-live-search-results .search_list {
    margin-top: 4px;
    font-size: 15px;
    line-height: 30px;
}

.rd-navbar-live-search-results .search_list li+li {
    margin-top: 2px;
}

.rd-navbar-live-search-results .search_list .search_list li+li:last-child {
    margin-top: 8px;
    border-top: 1px solid #ededed;
    padding-top: 7px;
}

.rd-navbar-live-search-results .search_link {
    display: block;
    padding: 8px;
    color: #787b7c;
    border-radius: 2px;
}

.rd-navbar-live-search-results .search_link:hover {
    background: rgba(6, 62, 196, 0.05);
}

.rd-navbar-live-search-results .search_link p {
    margin-top: 0;
    color: #787b7c;
    font-size: 14px;
    font-weight: 300;
    display: none;
}

.rd-navbar-live-search-results .search_title {
    color: #303334;
    font-weight: 400;
    text-transform: uppercase;
}

.rd-navbar-live-search-results a {
    font-weight: 300;
}

.rd-navbar-live-search-results a,
.rd-navbar-live-search-results a:active,
.rd-navbar-live-search-results a:focus {
    color: #787b7c;
}

.rd-navbar-live-search-results a:hover {
    color: #79b51a;
}

.rd-navbar-live-search-results .search_submit {
    display: block;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    color: #79b51a;
    text-transform: uppercase;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.rd-navbar-live-search-results .search_submit:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-live-search-results.active {
    visibility: visible;
    opacity: 1;
}

@media (min-width: 1200px) {
    .rd-navbar-live-search-results .search_link p {
        display: block;
    }
}

.search_error {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rd-navbar-live-search-results {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
}

.rd-navbar-live-search-results.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.rd-navbar-aside-contact-info {
    margin: 0;
    display: inline-block;
    text-align: center;
    pointer-events: auto;
    font-size: 14px;
    line-height: 1.42857;
}

.rd-navbar-aside-contact-info p {
    padding: 0;
    margin: 0;
}

.rd-navbar-aside-toggle {
    display: none;
    pointer-events: auto;
}

/*
* @subsection   Hybrid  Styles
*/
.rd-navbar-static .rd-navbar-search-form-input input,
.rd-navbar-sidebar .rd-navbar-search-form-input input,
.rd-navbar-fullwidth .rd-navbar-search-form-input input {
    width: 100%;
    padding: 7px 40px 7px 18px;
    height: 48px;
    font-size: 16px;
    line-height: 34px;
    color: #303334;
}

.rd-navbar-static:after,
.rd-navbar-fullwidth:after {
    content: '';
    background: #fff;
}

.rd-navbar-static .rd-navbar-brand,
.rd-navbar-static .rd-navbar-nav>li>a,
.rd-navbar-static .rd-navbar-search-toggle,
.rd-navbar-fullwidth .rd-navbar-brand,
.rd-navbar-fullwidth .rd-navbar-nav>li>a,
.rd-navbar-fullwidth .rd-navbar-search-toggle {
    position: relative;
    z-index: 2;
}

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

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

.rd-navbar-static .rd-navbar-nav>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-static .rd-navbar-nav>li.focus>a:after,
.rd-navbar-static .rd-navbar-nav>li>a:hover:after,
.rd-navbar-static .rd-navbar-nav>li.active>a:after,
.rd-navbar-fullwidth .rd-navbar-nav>li.focus>a:after,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover:after,
.rd-navbar-fullwidth .rd-navbar-nav>li.active>a:after {
    left: 0;
    width: 100%;
}

.rd-navbar-static .rd-navbar-nav>.rd-navbar-submenu li,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu li {
    font-size: inherit;
    line-height: inherit;
}

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

.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,
.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-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-fullwidth .rd-navbar-nav>.rd-navbar-submenu.opened>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>.rd-navbar-submenu.opened>.rd-navbar-megamenu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.rd-navbar-static .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.focus>.rd-navbar-dropdown {
    display: block;
}

.rd-navbar-static .rd-navbar-inner,
.rd-navbar-fullwidth .rd-navbar-inner {
    position: relative;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown {
    display: block;
    position: absolute;
    text-align: left;
    margin-top: 14px;
    left: 50%;
    margin-left: -98px;
    width: 254px;
    z-index: 5;
}

@media (min-height: 700px) {

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

@media (min-width: 1200px) and (min-height: 940px) {

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

.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-dropdown {
    background: #fff;
    padding: 20px 10px;
    border: 1px solid #f5f5f5;
    text-align: center;
}

.rd-navbar-static .rd-navbar-dropdown .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-dropdown .rd-navbar-dropdown {
    width: 196px;
    background: #f5f5f5;
}

.rd-navbar-static .rd-navbar-dropdown>li,
.rd-navbar-fullwidth .rd-navbar-dropdown>li {
    padding: 2px 10px;
    text-align: left;
}

.rd-navbar-static .rd-navbar-dropdown>li>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a {
    display: inline;
    font-weight: 400;
    color: #303334;
    background: transparent;
    font-size: 16px !important;
    line-height: 20px !important;
}

.rd-navbar-static .rd-navbar-dropdown>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-dropdown>li>a:hover {
    color: #79b51a;
}

.rd-navbar-static .rd-navbar-dropdown>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-dropdown>li.focus>a {
    color: #79b51a;
}

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

.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-megamenu {
    display: table;
    position: absolute;
    text-align: left;
    right: 15px;
    border-spacing: 31px 25px;
    table-layout: fixed;
    width: 55%;
    margin-top: 10px;
    max-width: 1200px;
    background: #303334;
    z-index: 4;
}

.rd-navbar-static .rd-navbar-megamenu>li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li {
    position: relative;
    display: table-cell;
}

.rd-navbar-static .rd-navbar-megamenu>li>p,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>p {
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul {
    padding: 8px 9px;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul li+li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul li+li {
    margin-top: 5px;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul a,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul a {
    display: inline-block;
    color: #fff;
    background: transparent;
}

.rd-navbar-static .rd-navbar-megamenu>li>ul a:hover,
.rd-navbar-fullwidth .rd-navbar-megamenu>li>ul a:hover {
    color: #79b51a;
    background: transparent;
}

.rd-navbar-static .rd-navbar-megamenu>li+li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li+li {
    padding-left: 10px;
}

.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-clone {
    display: none;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
}

.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck,
.rd-navbar-fullwidth.rd-navbar--is-clone.rd-navbar--is-stuck {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.rd-navbar-static .rd-navbar-search-form .form-group,
.rd-navbar-fullwidth .rd-navbar-search-form .form-group {
    margin-bottom: 0;
}

.rd-navbar-static .rd-navbar-search-form:after,
.rd-navbar-fullwidth .rd-navbar-search-form:after {
    left: 100%;
}

.rd-navbar-static .rd-navbar-search-form-submit,
.rd-navbar-fullwidth .rd-navbar-search-form-submit {
    background-color: transparent;
    right: 27px;
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 16px;
    border: none;
}

.rd-navbar-static .rd-navbar-search-form-submit:focus,
.rd-navbar-fullwidth .rd-navbar-search-form-submit:focus {
    outline: none;
}

.rd-navbar-static .rd-navbar-search-form-input,
.rd-navbar-fullwidth .rd-navbar-search-form-input {
    position: relative;
    display: inline-block;
    padding-right: 24px;
    padding-left: 10px;
}

.rd-navbar-static .rd-navbar-search-toggle,
.rd-navbar-fullwidth .rd-navbar-search-toggle {
    position: absolute;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    background-color: transparent;
    border: none;
}

.rd-navbar-static .rd-navbar-search-toggle:focus,
.rd-navbar-fullwidth .rd-navbar-search-toggle:focus {
    outline: 0;
}

.rd-navbar-static .rd-navbar-search-toggle:hover,
.rd-navbar-fullwidth .rd-navbar-search-toggle:hover {
    color: #79b51a;
}

.rd-navbar-static .rd-navbar-search.active .rd-navbar-search-form,
.rd-navbar-fullwidth .rd-navbar-search.active .rd-navbar-search-form {
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.rd-navbar-static .rd-navbar-live-search-results,
.rd-navbar-fullwidth .rd-navbar-live-search-results {
    top: calc(100% + 56px);
    z-index: 0;
}

.rd-navbar-static.rd-navbar--is-stuck,
.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-stuck,
.rd-navbar-fullwidth.rd-navbar--is-clone {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-panel,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-panel,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-panel,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-panel {
    padding: 8px 0;
}

.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-collapse,
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-collapse,
.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-collapse,
.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-collapse {
    display: none;
}

.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-megamenu {
    position: absolute;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    text-align: left;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #e8e8e8;
}

.rd-navbar-static .rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-megamenu {
    margin-top: 10px;
    left: 0;
    right: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 16px 8px;
    background: #303334;
}

.rd-navbar-static .rd-navbar-megamenu>li,
.rd-navbar-fullwidth .rd-navbar-megamenu>li {
    display: table-cell;
}

.rd-navbar-static .rd-navbar-nav,
.rd-navbar-fullwidth .rd-navbar-nav {
    display: block;
    text-align: right;
}

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

.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,
.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 {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

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

.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav>li>.rd-navbar-megamenu,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li>.rd-navbar-megamenu {
    top: 100%;
    z-index: 1;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle {
    top: -1px;
    bottom: 0;
    line-height: inherit;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle::after {
    margin-top: .35em;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle:hover::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle:hover::after {
    color: #79b51a;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li.active>.rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li.active>.rd-navbar-submenu-toggle::after {
    color: inherit;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li:hover>.rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li:hover>.rd-navbar-submenu-toggle::after {
    color: #303334;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle:hover::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-submenu-toggle:hover::after {
    color: #303334;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li.opened>a,
.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li.focus>a,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li.opened>a,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li.focus>a {
    color: #79b51a;
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown li.focus>.rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown li.focus>.rd-navbar-submenu-toggle::after {
    color: #79b51a;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rd-navbar-static .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-dropdown,
.rd-navbar-fullwidth .rd-navbar-nav>li .rd-navbar-dropdown .rd-navbar-dropdown {
    left: calc(100% + 10px);
    top: -22px;
    z-index: 2;
}

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

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

.rd-navbar-static .rd-navbar-nav>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-static .rd-navbar-nav>li a,
.rd-navbar-fullwidth .rd-navbar-nav>li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
}

@media (min-width: 1200px) and (min-height: 700px) {

    .rd-navbar-static .rd-navbar-nav>li a,
    .rd-navbar-fullwidth .rd-navbar-nav>li a {
        font-size: 22px;
    }
}

@media (min-width: 1200px) and (min-height: 940px) {

    .rd-navbar-static .rd-navbar-nav>li a,
    .rd-navbar-fullwidth .rd-navbar-nav>li a {
        font-size: 26px;
    }
}

.rd-navbar-static .rd-navbar-nav>li.active>a,
.rd-navbar-static .rd-navbar-nav>li.opened>a,
.rd-navbar-static .rd-navbar-nav>li.focus>a,
.rd-navbar-static .rd-navbar-nav>li>a:hover,
.rd-navbar-fullwidth .rd-navbar-nav>li.active>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.opened>a,
.rd-navbar-fullwidth .rd-navbar-nav>li.focus>a,
.rd-navbar-fullwidth .rd-navbar-nav>li>a:hover {
    color: #fff;
    background: #782c2d;
}

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

.rd-navbar-static.rd-navbar--is-clone,
.rd-navbar-fullwidth.rd-navbar--is-clone {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 75px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.rd-navbar-fixed .rd-navbar-collapse-toggle,
.rd-navbar-sidebar .rd-navbar-collapse-toggle {
    display: inline-block;
    z-index: 1;
}

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

.rd-navbar-fixed .rd-navbar-collapse-items,
.rd-navbar-sidebar .rd-navbar-collapse-items {
    position: absolute;
    width: 260px;
    padding: 25px 15px;
    box-shadow: none;
    color: #303334;
    background: #fff;
    font-size: 16px;
    line-height: 34px;
}

.rd-navbar-fixed .rd-navbar-collapse-items li>*,
.rd-navbar-sidebar .rd-navbar-collapse-items li>* {
    vertical-align: middle;
}

.rd-navbar-fixed .rd-navbar-collapse-items li+li,
.rd-navbar-sidebar .rd-navbar-collapse-items li+li {
    margin-top: 10px;
}

.rd-navbar-fixed .rd-navbar-collapse-items .icon,
.rd-navbar-fixed .rd-navbar-collapse-items a,
.rd-navbar-sidebar .rd-navbar-collapse-items .icon,
.rd-navbar-sidebar .rd-navbar-collapse-items a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
}

.rd-navbar-fixed .rd-navbar-collapse-items .icon,
.rd-navbar-fixed .rd-navbar-collapse-items a[class*="fa"]:before,
.rd-navbar-sidebar .rd-navbar-collapse-items .icon,
.rd-navbar-sidebar .rd-navbar-collapse-items a[class*="fa"]:before {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding-right: 5px;
}

.rd-navbar-fixed .rd-navbar-nav,
.rd-navbar-sidebar {
    position: fixed;
    width: 270px;
    height: 100%;
    left: 0;
    top: 60px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-size: 16px;
    line-height: 34px;
    color: #303334;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    z-index: 998;
    padding: 120px 0;
}

.rd-navbar-fixed .rd-navbar-nav:before,
.rd-navbar-fixed .rd-navbar-nav:after,
.rd-navbar-sidebar:before,
.rd-navbar-sidebar:after {
    content: '';
    display: block;
    height: 56px;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar,
.rd-navbar-sidebar::-webkit-scrollbar {
    width: 4px;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar-thumb,
.rd-navbar-sidebar::-webkit-scrollbar-thumb {
    background: white;
    border: none;
    border-radius: 0;
    opacity: .2;
}

.rd-navbar-fixed .rd-navbar-nav::-webkit-scrollbar-track,
.rd-navbar-sidebar::-webkit-scrollbar-track {
    background: #fff;
    border: none;
    border-radius: 0;
}

.rd-navbar-fixed .rd-navbar-nav p,
.rd-navbar-sidebar .rd-navbar-nav p {
    font-weight: 700;
    color: #303334;
    padding: 5px 40px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav p>a,
.rd-navbar-sidebar .rd-navbar-nav p>a {
    display: block;
    color: #303334;
    margin: -5px -40px -5px -15px;
    font-weight: 400;
    padding: 5px 40px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav p>a:hover,
.rd-navbar-sidebar .rd-navbar-nav p>a:hover {
    color: #fff;
    background: #782c2d;
    text-decoration: none;
}

.rd-navbar-fixed .rd-navbar-nav li,
.rd-navbar-sidebar .rd-navbar-nav li {
    position: relative;
}

.rd-navbar-fixed .rd-navbar-nav li li>a,
.rd-navbar-sidebar .rd-navbar-nav li li>a {
    padding-left: 20px;
}

.rd-navbar-fixed .rd-navbar-nav li>a,
.rd-navbar-sidebar .rd-navbar-nav li>a {
    position: relative;
    display: block;
    padding: 5px 45px 5px 15px;
}

.rd-navbar-fixed .rd-navbar-nav li>a:first-letter,
.rd-navbar-sidebar .rd-navbar-nav li>a:first-letter {
    text-transform: uppercase;
}

.rd-navbar-fixed .rd-navbar-nav li.active>a,
.rd-navbar-sidebar .rd-navbar-nav li.active>a {
    color: #ededed;
    background: #f2f2f2;
}

.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li>a:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a,
.rd-navbar-sidebar .rd-navbar-nav li>a:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-fixed .rd-navbar-nav li+li,
.rd-navbar-fixed .rd-navbar-nav li>img+a,
.rd-navbar-fixed .rd-navbar-nav li>a+a,
.rd-navbar-fixed .rd-navbar-nav li>a+ul,
.rd-navbar-sidebar .rd-navbar-nav li+li,
.rd-navbar-sidebar .rd-navbar-nav li>img+a,
.rd-navbar-sidebar .rd-navbar-nav li>a+a,
.rd-navbar-sidebar .rd-navbar-nav li>a+ul {
    margin-top: 4px;
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-dropdown>li>a,
.rd-navbar-sidebar .rd-navbar-nav .rd-navbar-dropdown>li>a {
    padding-left: 20px;
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-dropdown ul>li>a,
.rd-navbar-sidebar .rd-navbar-nav .rd-navbar-dropdown ul>li>a {
    padding-left: 35px;
}

.rd-navbar-fixed .rd-navbar-search-form-submit,
.rd-navbar-sidebar .rd-navbar-search-form-submit {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

/*
* Static Layout
*/
.rd-navbar-static {
    display: block;
}

.rd-navbar-static .rd-navbar-panel {
    padding: 30px 0;
}

.rd-navbar-static .rd-navbar-brand {
    display: table-cell;
    vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>* {
    display: inline-block;
    vertical-align: middle;
}

.rd-navbar-static .rd-navbar-brand>img {
    margin-right: 10px;
}

.rd-navbar-static .rd-navbar-brand>a {
    font-size: 36px;
    line-height: 48px;
}

.rd-navbar-static .rd-navbar-brand>a span {
    display: none;
}

.rd-navbar-static .rd-navbar-collapse {
    display: block;
    float: right;
    margin-left: -15px;
    margin-top: 23px;
}

.rd-navbar-static .rd-navbar-collapse li {
    display: inline-block;
    margin-left: 15px;
}

.rd-navbar-static .rd-navbar-collapse li a:hover {
    text-decoration: underline;
}

.rd-navbar-static .rd-navbar-panel,
.rd-navbar-static .rd-navbar-nav-wrap {
    display: table-cell;
    vertical-align: middle;
}

.rd-navbar-static .rd-navbar-panel {
    text-align: left;
    min-width: 190px;
    max-width: 200px;
}

.rd-navbar-static .rd-navbar-panel:before,
.rd-navbar-static .rd-navbar-panel:after {
    content: " ";
    display: table;
}

.rd-navbar-static .rd-navbar-panel:after {
    clear: both;
}

.rd-navbar-static .rd-navbar-panel-canvas {
    position: fixed;
    height: 56px;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 16;
}

.rd-navbar-static .rd-navbar-toggle {
    position: fixed;
    z-index: 17;
    top: 4px;
    left: 4px;
}

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

.rd-navbar-static .rd-navbar-nav {
    margin-bottom: 0;
}

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

.rd-navbar-static .rd-navbar-nav>li+li {
    margin-left: 36px;
}

.rd-navbar-static .rd-navbar-static--visible {
    display: block;
}

.rd-navbar-static .rd-navbar-static--hidden {
    display: none;
}

/*
* Fullwidth Layout
*/
.rd-navbar-fullwidth {
    display: block;
    border-bottom: 1px solid transparent;
}

.rd-navbar-fullwidth .rd-navbar-panel {
    position: relative;
    text-align: center;
    padding: 70px 15px;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap {
    position: relative;
}

.rd-navbar-fullwidth .rd-navbar-nav-wrap .rd-navbar-megamenu {
    left: 0;
    right: 0;
}

.rd-navbar-fullwidth .rd-navbar-brand {
    display: inline-block;
}

.rd-navbar-fullwidth .rd-navbar-search-toggle {
    right: 6%;
}

.rd-navbar-fullwidth .rd-navbar-nav {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

@media (min-width: 1200px) and (min-height: 700px) {
    .rd-navbar-fullwidth .rd-navbar-nav {
        padding: 15px 0;
    }
}

@media (min-width: 1200px) and (min-height: 940px) {
    .rd-navbar-fullwidth .rd-navbar-nav {
        padding: 30px 0;
    }
}

.rd-navbar-fullwidth .rd-navbar-nav:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200vw;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #fcebe4;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rd-navbar-fullwidth .rd-navbar-nav>li>a {
    display: block;
    text-align: center;
    padding: 10px 20px;
}

.rd-navbar-fullwidth .rd-navbar-nav>li+li {
    margin-left: 6px;
}

.rd-navbar-fullwidth .rd-navbar-aside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.rd-navbar-fullwidth .rd-navbar-aside-content {
    padding: 0 15px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    font-weight: 300;
}

.rd-navbar-fullwidth .rd-navbar-aside-contact-info-variant-1 {
    position: relative;
    margin-left: 113px;
    margin-top: 28px;
    font-size: 18px;
    color: #f50000;
}

.rd-navbar-fullwidth .rd-navbar-aside-contact-info-variant-2 {
    position: relative;
}

.rd-navbar-fullwidth li.active>.rd-navbar-submenu-toggle::after {
    color: #fff;
}

.rd-navbar-fullwidth li.opened>.rd-navbar-submenu-toggle::after,
.rd-navbar-fullwidth li.focus>.rd-navbar-submenu-toggle::after {
    color: #fff;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rd-navbar-fullwidth .rd-navbar-submenu-toggle {
    position: absolute;
    right: -5px;
    cursor: pointer;
    line-height: inherit;
    top: 0;
    bottom: 0;
    height: 100%;
    padding: inherit;
    vertical-align: middle;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.rd-navbar-fullwidth .rd-navbar-submenu-toggle::after {
    position: relative;
    content: '\f078';
    display: inline-block;
    width: 25px;
    height: 25px;
    font: 400 14px "FontAwesome";
    line-height: 25px;
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    color: #303334;
    will-change: transform;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.rd-navbar-fullwidth .rd-navbar-submenu-toggle:hover::after {
    color: #79b51a;
}

.rd-navbar-fullwidth.rd-navbar--is-clone {
    border-bottom-color: #e8e8e8;
}

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

.rd-navbar-fullwidth.rd-navbar--is-clone .rd-navbar-nav {
    border-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck {
    border-bottom-color: #e8e8e8;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-panel {
    display: none;
}

.rd-navbar-fullwidth.rd-navbar--is-stuck .rd-navbar-nav {
    border-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--visible {
    display: block;
}

.rd-navbar-fullwidth .rd-navbar-fullwidth--hidden {
    display: none;
}

/*
* Fixed Layout
*/
.rd-navbar-fixed-linked body {
    padding-top: 56px;
}

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

.rd-navbar-fixed .rd-navbar-brand {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 4px;
    width: calc(100% - 104px);
}

.rd-navbar-fixed .rd-navbar-brand .brand-name {
    display: inline-block;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
}

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

.rd-navbar-fixed .rd-navbar-brand {
    display: block;
    text-align: left;
    position: fixed;
    top: 4px;
    left: 56px;
    right: 112px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 22px;
    line-height: 46px;
    height: 48px;
    z-index: 17;
}

.rd-navbar-fixed .rd-navbar-brand img {
    display: inline-block;
    height: 90px;
    width: 115px;
    position: fixed;
}

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

.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: 100px;
    color: #303334;
    z-index: 999;
}

.rd-navbar-fixed .rd-navbar-panel:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

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

.rd-navbar-fixed .rd-navbar-nav-wrap {
    position: fixed;
    top: -56px;
    left: 0;
    width: 232px;
    padding: 112px 0 56px;
    bottom: -56px;
    color: #fff;
    background: #fff;
    z-index: 15;
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
}

.rd-navbar-fixed .rd-navbar-nav-wrap.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.rd-navbar-fixed .rd-navbar-nav {
    display: block;
    height: 100%;
    overflow: auto;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
}

.rd-navbar-fixed .rd-navbar-nav:before,
.rd-navbar-fixed .rd-navbar-nav:after {
    content: '';
    display: block;
    height: 8px;
}

.rd-navbar-fixed .rd-navbar-nav li>a {
    display: block;
    padding: 11px 56px 11px 16px;
    color: #303334;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a,
.rd-navbar-fixed .rd-navbar-nav li a:hover {
    background: white;
}

.rd-navbar-fixed .rd-navbar-nav li.active>.rd-navbar-submenu-toggle:after {
    color: #fff;
}

.rd-navbar-fixed .rd-navbar-nav li.active>a {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
    display: none;
}

.rd-navbar-fixed .rd-navbar-submenu {
    position: relative;
}

.rd-navbar-fixed .rd-navbar-submenu li>a {
    padding-left: 32px;
}

.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: 48px;
}

.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-search {
    display: block;
}

.rd-navbar-fixed .rd-navbar-search form button[type="submit"] {
    display: none;
}

.rd-navbar-fixed .rd-navbar-search.active .form-group {
    opacity: 1;
    visibility: visible;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search-toggle {
    right: 4px;
}

.rd-navbar-fixed .rd-navbar-search-toggle {
    display: block;
    position: fixed;
    top: 4px;
    right: 56px;
    font-family: 'Material Icons';
    width: 48px;
    height: 48px;
    z-index: 18;
    color: #303334;
}

.rd-navbar-fixed .rd-navbar-search .form-group {
    position: fixed;
    top: 0;
    padding-top: 4px;
    left: 56px;
    right: 112px;
    height: 56px;
    background: #fff;
    z-index: 17;
    visibility: hidden;
    opacity: 0;
}

.rd-navbar-fixed .rd-navbar-search .form-group input {
    width: 100%;
    height: 46px;
    display: block;
    font-size: 22px;
    line-height: 46px;
}

.rd-navbar-fixed .rd-navbar-search-form,
.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
    position: fixed;
    margin-right: 0;
    margin-left: auto;
}

.rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
    top: 56px;
}

.rd-navbar-fixed .rd-navbar-search-form {
    top: 0;
    z-index: 1000;
    left: 50px;
    right: 0;
    height: 56px;
}

.rd-navbar-fixed .rd-navbar-search-form label {
    display: none;
}

.rd-navbar-fixed .rd-navbar-search-form-input {
    padding: 8px 40px 8px 10px;
    visibility: hidden;
    opacity: 0;
    height: 40px;
    border: 1px solid #c3c3c3;
    position: relative;
    top: 8px;
    background: #eaeaea;
    transition: .3s all ease;
    z-index: 1;
    width: 100%;
}

.rd-navbar-fixed .rd-navbar-search-form-input input {
    display: block;
    width: 100%;
    padding: 0 48px 0 20px;
    height: 40px;
    font-size: 16px;
    line-height: 34px;
    color: #303334;
    background: #f2f2f2;
}

.rd-navbar-fixed .rd-navbar-search-form-submit {
    position: absolute;
    top: 4px;
    right: 4px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    background-color: transparent;
    border: none;
}

.rd-navbar-fixed .rd-navbar-search-form-submit:focus {
    outline: none;
}

.rd-navbar-fixed .rd-navbar-search-toggle.active {
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-input,
.rd-navbar-fixed .rd-navbar-search.active .rd-navbar-search-form-submit {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {

    .rd-navbar-fixed .rd-navbar-search-form,
    .rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
        max-width: 340px;
    }

    .rd-navbar-fixed .rd-navbar-search .rd-navbar-live-search-results {
        right: 4px;
    }
}

@media (min-width: 480px) {
    .rd-navbar-fixed .rd-navbar-search .rd-navbar-brand .brand-name {
        font-size: 24px;
    }
}

.rd-navbar-fixed .rd-navbar-nav li:hover>a,
.rd-navbar-fixed .rd-navbar-nav li:hover>a:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>a,
.rd-navbar-fixed .rd-navbar-nav li.focus>a:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle::after,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle::after {
    color: #fff;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
    cursor: pointer;
}

.rd-navbar-fixed .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover::after,
.rd-navbar-fixed .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover::after {
    color: #fff;
}

.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,
.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-megamenu {
    opacity: 1;
    height: auto;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>a {
    background: #782c2d;
    color: #fff;
}

.rd-navbar-fixed .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle::after {
    color: #fff;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rd-navbar-fixed .rd-navbar-nav .rd-navbar-submenu-toggle::after {
    content: '\f078';
    position: absolute;
    top: 22px;
    right: 0;
    margin-top: -22px;
    width: 65px;
    height: 44px;
    font: 400 14px "FontAwesome";
    line-height: 42px;
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
    color: #303334;
}

.rd-navbar-fixed .rd-navbar-aside {
    top: 0;
    right: 0;
    width: 100%;
}

.rd-navbar-fixed .rd-navbar-aside,
.rd-navbar-fixed .rd-navbar-aside .rd-navbar-aside-toggle {
    position: fixed;
    z-index: 1000;
    display: block;
    height: 91px;
}

.rd-navbar-fixed .rd-navbar-aside.active .rd-navbar-aside-content {
    visibility: visible;
    opacity: 1;
}

.rd-navbar-fixed .rd-navbar-aside-toggle {
    top: 25px;
    right: 4px;
    width: 48px;
    display: inline-block;
    position: relative;
    width: 48px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    color: #000;
}

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

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

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

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

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

.rd-navbar-fixed .rd-navbar-aside-toggle.active span {
    -webkit-transform: scale(0.7);
    transform: scale(1);
}

.rd-navbar-fixed .rd-navbar-aside-toggle.active span:before {
    -webkit-transform: translateY(18px);
    transform: translateY(5px);
}

.rd-navbar-fixed .rd-navbar-aside-toggle.active span:after {
    -webkit-transform: translateY(-18px);
    transform: translateY(-22px);
}

.rd-navbar-fixed .rd-navbar-aside-content {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    visibility: hidden;
    opacity: 0;
    padding: 35px;
    width: calc(100% + 2px);
    margin-right: -1px;
    margin-left: -1px;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: .23s all ease-out;
}

@media (min-width: 768px) {
    .rd-navbar-fixed .rd-navbar-aside-content {
        width: auto;
    }

}

.rd-navbar-fixed .rd-navbar-aside-contact-info {
    display: block;
    color: #f50000;
}

.rd-navbar-fixed .rd-navbar-aside-contact-info p {
    display: block;
    font-weight: 300;
}

.rd-navbar-fixed .rd-navbar-aside-contact-info+* {
    margin-top: 20px;
}

.rd-navbar-fixed .rd-navbar-collapse,
.rd-navbar-fixed .rd-navbar-search-toggle {
    position: fixed;
    top: 4px;
    height: 48px;
    z-index: 1000;
    background-color: transparent;
    border: none;
}

.rd-navbar-fixed .rd-navbar-collapse:focus,
.rd-navbar-fixed .rd-navbar-search-toggle:focus {
    outline: none;
}

.rd-navbar-fixed .rd-navbar-collapse {
    right: 0;
}

.rd-navbar-fixed .rd-navbar-shop {
    position: fixed;
    right: 62px;
    top: 28px;
    z-index: 999;
}

.rd-navbar-fixed.active .rd-navbar-nav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .rd-navbar-fixed.rd-navbar--on-search .brand-name {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

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

.rd-navbar-fixed.rd-navbar--is-clone .rd-navbar-panel {
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
}

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

.rd-navbar-fixed .rd-navbar-fixed--visible {
    display: block;
}

.rd-navbar-fixed .rd-navbar-fixed--hidden {
    display: none;
}

/*
* Sidebar Layout
*/
html.rd-navbar-sidebar-linked body {
    padding-left: 270px;
}

.rd-navbar-sidebar {
    display: block;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>a,
.rd-navbar-sidebar .rd-navbar-nav li:hover>a:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a,
.rd-navbar-sidebar .rd-navbar-nav li.focus>a:hover {
    color: #fff;
    background: #782c2d;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle {
    color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li:hover>.rd-navbar-submenu-toggle:hover,
.rd-navbar-sidebar .rd-navbar-nav li.focus>.rd-navbar-submenu-toggle:hover {
    cursor: pointer;
    color: #fff;
}

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

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

.rd-navbar-sidebar .rd-navbar-nav li.opened>a {
    background: #79b51a;
    color: #fff;
}

.rd-navbar-sidebar .rd-navbar-nav li.opened>.rd-navbar-submenu-toggle {
    color: #fff;
}

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

.rd-navbar-sidebar .rd-navbar-submenu-toggle::after {
    content: '\f078';
    position: absolute;
    top: 22px;
    right: 0;
    margin-top: -22px;
    width: 65px;
    height: 44px;
    font: 400 14px "FontAwesome";
    line-height: 42px;
    text-align: center;
    transition: 0.4s all ease;
    z-index: 2;
}

.rd-navbar-sidebar .rd-navbar-brand {
    text-align: center;
    margin-bottom: 28px;
    padding: 10%;
}

.rd-navbar-sidebar .rd-navbar-brand .brand-name {
    font-size: 30px;
}

.rd-navbar-sidebar .rd-navbar-search {
    position: relative;
    margin-bottom: 10px;
}

.rd-navbar-sidebar .rd-navbar-search-toggle {
    display: none;
}

.rd-navbar-sidebar .rd-navbar-search label {
    display: block;
}

.rd-navbar-sidebar .rd-navbar-search.active .rd-navbar-search-form-input {
    opacity: 1;
    visibility: visible;
}

.rd-navbar-sidebar .rd-navbar-live-search-results {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.rd-navbar-sidebar .rd-navbar-live-search-results.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.rd-navbar-sidebar .rd-navbar-live-search-results .search_link p {
    display: none;
}

.rd-navbar-sidebar .rd-navbar-collapse-items {
    top: 0;
    left: 0;
    padding-top: 45px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    opacity: 0;
    visibility: hidden;
}

.rd-navbar-sidebar .rd-navbar-collapse {
    position: absolute;
    top: 4px;
    left: 4px;
    display: inline-block;
    z-index: 1;
}

.rd-navbar-sidebar .rd-navbar-collapse.active .rd-navbar-collapse-items {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.rd-navbar-sidebar .rd-navbar-sidebar--visible {
    display: block;
}

.rd-navbar-sidebar .rd-navbar-sidebar--hidden {
    display: none;
}

html.boxed.rd-navbar--has-sidebar body {
    padding-left: 300px;
    padding-right: 30px;
}

html.boxed .rd-navbar--is-clone {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

ul ul,
ul ol,
ol ul,
ol ol {
    padding-left: 0;
}

.rd-navbar.static-position:first-child {
    position: static;
}

.rd-navbar.static-position:first-child .rd-navbar-nav>li>a,
.rd-navbar.static-position:first-child .rd-navbar-shop,
.rd-navbar.static-position:first-child .rd-navbar-search-toggle {
    color: #212121;
}

.rd-navbar.static-position:first-child .rd-navbar-inner {
    padding-top: 31px;
    padding-bottom: 40px;
}

.rd-navbar.static-position:first-child .rd-navbar-nav-wrap {
    padding-top: 9px;
}

.rd-navbar.static-position:first-child:after {
    content: none;
}

.rd-parallax-inner {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    z-index: 1;
}

.rd-parallax-layer[data-type="media"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

.rd-parallax-layer[data-type="media"] iframe {
    width: 100%;
    height: 100%;
}

.rd-parallax-layer[data-url] {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.rd-parallax[class*="rd-parallax-overlay"] {
    background-color: #000;
    color: #fff;
}

.rd-parallax[class*="rd-parallax-overlay"] .rd-parallax-layer[data-type="media"] {
    opacity: 0.2;
}

.rd-parallax[class*="rd-parallax-overlay"] .rd-parallax-layer[data-type="media"]+* {
    position: relative;
}

.rd-parallax.rd-parallax-overlay-2 .rd-parallax-layer[data-type="media"] {
    opacity: 0.8;
}

.rd-material-tabs {
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    position: relative;
}

.rd-material-tabs__list {
    white-space: nowrap;
}

.rd-material-tabs__list .rd-material-tab {
    display: inline-block;
}

.rd-material-tabs img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.rd-material-tabs__stage-outer {
    position: relative;
    overflow: hidden;
}

.rd-material-tabs__stage:before,
.rd-material-tabs__stage:after {
    content: " ";
    display: table;
}

.rd-material-tabs__stage:after {
    clear: both;
}

.rd-material-tabs__container {
    padding: 0 5px;
    margin-top: 60px;
}

.rd-material-tabs__container .rd-material-tab {
    float: left;
    width: 100%;
}

.rd-material-tabs__container .thumb {
    margin-top: 10px;
}

.rd-material-tabs-canMove {
    cursor: w-resize;
}

.rd-material-tabs-grab,
.rd-material-tabs-grab a {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.rd-video {
    position: relative;
}

.rd-video video {
    margin: auto;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.rd-video video.transition {
    transition: .3s all linear;
}

.rd-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.rd-video-preloader {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease;
    background: url(../images/preloader.gif) no-repeat rgba(255, 255, 255, 0.8) center center;
    z-index: 6;
}

.rd-video.loading .rd-video-preloader {
    opacity: 1;
    visibility: visible;
}

.rd-video-context-wrapper {
    z-index: 99999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: .3s background ease;
}

.rd-video-context-wrapper.show {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    visibility: visible;
}

.rd-video-context-wrapper.show .rd-video-context {
    bottom: 0;
}

.rd-video-context-wrapper .rd-video-context {
    padding: 2px 0;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -100%;
    right: 0;
    transition: .5s bottom ease;
}

.rd-video-context-wrapper h6 {
    padding: 5px 10px 5px 15px;
    text-transform: none;
}

.rd-video-context-wrapper ul li {
    cursor: pointer;
    font-size: 14px;
    padding: 5px 5px 5px 15px;
    text-transform: none;
    border-top: 1px solid #E9E9E9;
}

.rd-video-context-wrapper ul li:hover,
.rd-video-context-wrapper ul li.active {
    background: #79b51a;
    color: #fff;
}

.rd-video-context-wrapper ul li.active {
    cursor: default;
}

.desktop .rd-video-context-wrapper {
    position: absolute;
    width: 160px;
    transform: none;
    background: #fff;
}

.desktop .rd-video-context-wrapper.show {
    opacity: 1;
    visibility: visible;
}

.desktop .rd-video-context-wrapper .rd-video-context {
    position: static;
}

.rd-video.rd-video-bg {
    height: 100vh;
}

.rd-video.rd-video-bg>.rd-video-wrapper,
.rd-video.rd-video-bg>.rd-video-wrapper>video {
    z-index: -1;
}

.rd-video.rd-video-bg .play-btn {
    display: none;
}

.rdc-next,
.rdc-prev,
.rdc-events_close {
    color: #787b7c;
    font: 400 18px/38px "FontAwesome";
    cursor: pointer;
    transition: .3s all ease;
    opacity: .5;
}

.rdc-next:hover,
.rdc-prev:hover,
.rdc-events_close:hover {
    opacity: 1;
}

.rdc-next:before {
    content: '\f061';
}

.rdc-prev:before {
    content: '\f060';
}

.rdc-events_close:before {
    content: '\f00d';
}

.rdc-events {
    opacity: 0;
    visibility: hidden;
    transition: .4s all ease-in-out;
}

.rd-calendar.show-events .rdc-events {
    opacity: 1;
    visibility: visible;
}

.rdc-event {
    display: none;
}

.rdc-event.active {
    display: block;
}

.rdc-table {
    position: relative;
    width: 100%;
}

.rdc-table table {
    border-spacing: 4px;
    border-collapse: separate;
    margin-left: auto;
    margin-right: auto;
}

.rdc-table td {
    position: relative;
}

.rdc-table_day {
    color: #787b7c;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 18px;
}

.rdc-table_date {
    width: 60px;
    height: 60px;
    font-weight: 300;
    font-size: 20px;
    line-height: 54px;
    padding: 3px;
    color: #fff;
    text-align: center;
    background-color: #787b7c;
    box-sizing: border-box;
}

.rdc-table_today {
    background-color: #ededed;
}

.rdc-table_event {
    cursor: pointer;
    transition: .3s all ease;
}

.rdc-table_event:hover {
    color: #fff;
    background-color: #787b7c;
}

.rdc-table_next,
.rdc-table_prev {
    opacity: .5;
}

.rd-google-map {
    color: #333;
}

.rd-google-map__model {
    height: 250px;
}

.rd-google-map__model img {
    max-width: none !important;
}

@media (min-width: 480px) {
    .rd-google-map__model {
        height: 250px;
    }
}

@media (min-width: 768px) {
    .rd-google-map__model {
        height: 505px;
    }

}

.rd-google-map__locations {
    display: none;
}

.rd-audio {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ededed;
    padding: 10px 15px 5px;
}

.rd-audio.state-loading .rd-audio-progress-bar {
    background: #303334;
}

.rd-audio-progress-bar {
    position: relative;
    width: 100%;
    background: #000;
    height: 4px;
    cursor: pointer;
}

.rd-audio-progress-bar .current {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 0;
}

.rd-audio-progress-bar-slider {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -3px;
    margin-left: -5px;
    background: #fff;
    z-index: 1;
}

.rd-audio.state-playing .rd-audio-play-pause:before {
    content: '\f04c';
    font-family: "FontAwesome";
}

.rd-audio.muted .rd-audio-volume:before {
    content: '\f04c';
    font-family: "FontAwesome";
}

.rd-audio-current-time,
.rd-audio-duration {
    font-size: 11px;
    color: #fff;
    margin-top: 3px;
}

.rd-audio-current-time {
    float: left;
    margin-left: -5px;
}

.rd-audio-duration {
    float: right;
    margin-right: -5px;
}

.rd-audio-volume-bar {
    position: relative;
    background: #000;
    cursor: pointer;
}

.rd-audio-volume-bar .current {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 0;
}

.rd-audio-volume-bar-slider {
    position: absolute;
    background: #fff;
    z-index: 1;
}

.rd-audio-volume-bar-vertical {
    width: 10px;
    height: 100px;
}

.rd-audio-volume-bar-vertical .rd-audio-volume-bar-slider {
    left: -5px;
    right: -5px;
    height: 4px;
    bottom: 0;
    margin-top: 2px;
}

.rd-audio-volume-bar-horizontal {
    width: 100%;
    height: 4px;
}

.rd-audio-volume-bar-horizontal .rd-audio-volume-bar-slider {
    width: 10px;
    height: 10px;
    top: -3px;
    margin-left: -5px;
}

.rd-audio-title {
    display: block;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: 1px;
}

.rd-audio-volume {
    display: inline-block;
    vertical-align: middle;
}

.rd-audio-volume-bar {
    display: inline-block;
    width: calc(100% - 35px);
    vertical-align: middle;
    margin-left: 5px;
}

.control-icon {
    font-size: 20px;
    line-height: 20px;
    width: 20px;
    height: 20px;
    color: #fff;
}

.control-icon:hover {
    color: #79b51a;
}

.scrollToNext {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 46px;
    color: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.11), 3px 4px 5px 0 rgba(0, 0, 0, 0.11);
    position: fixed;
    right: 15px;
    bottom: 15px;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    z-index: 20;
}

.scrollToNext:before {
    display: block;
    transition: .5s;
    transition-delay: 1.4s;
}

.scrollToNext.toTop {
    animation: rotate 1.6s linear;
    animation-delay: 1s;
}

.scrollToNext.toTop:before {
    transform: rotate(180deg);
}

@keyframes rotate {

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

    30%,
    60% {
        transform: scale(0.7);
    }
}

.scrollToNext:focus {
    color: #FFF;
}

.scrollToNext:hover {
    color: #FFF;
    text-decoration: none;
}

.scrollToNext.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.mobile .scrollToNext,
.tablet .scrollToNext {
    display: none !important;
}

@media (min-width: 480px) {
    .scrollToNext {
        right: 40px;
        bottom: 40px;
    }
}