@charset "UTF-8";
/*
* @subsection   RD Navbar
* @description  Describes style declarations for RD Navbar extension
*/
/*
Custom Grid CSS
*/
*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.lunam-container{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
    /*
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
    */
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 500px){
    .lunam-container {
        max-width: 97%;
    }
}
@media (min-width: 576px) {
	.lunam-container {
	    max-width: 97%;
	}
}
@media (min-width: 768px) {
	.lunam-container {
	    max-width: 748px;
	}
}
@media (min-width: 992px) {
	.lunam-container {
	    max-width: 940px;
	}
    .justify-content-lg-center {
        justify-content: center!important;
    }
}
@media (min-width: 1200px) {
	.lunam-container {
       max-width: 1170px;
	}
    .justify-content-xl-between {
        justify-content: space-between!important;
    }
}
@media (min-width: 1400px){
    .lunam-container {
        max-width: 1170px;
    }
}
.lunam-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.lunam-row > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  .lunam-col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
.lunam-container .d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.lunam-container .flex-wrap {
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
}
.lunam-container .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-grow-1 {
    flex-grow: 1;
}
.justify-content-between {
    justify-content: space-between !important;
}
.align-items-center {
    align-items: center !important;
}
.w-100 {
    width: 100% !important;
}
.h-100 {
    height: 100% !important;
}
.px-4{
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
/*
Navbar Config CSS
*/
.rd-navbar {
    --si-navbar-padding-x: 0;
    --si-navbar-padding-y: 1.55rem;
    --si-navbar-hover-color: #ffffff;
    --si-nav-link-hover-bg: #000000;
    --si-navbar-active-color: #f6a139;
    --si-navbar-nav-link-padding-x: 0.875rem;
    position: relative;
    width: 100%;
}
.rd-navbar-static .rd-navbar-nav {
    --si-mega-dropdown-column-width: 12rem;
    --si-nav-link-padding-x: 0;
    --si-nav-link-padding-y: 0.535rem;
    --si-nav-link-font-size: 1.125rem;
    --si-nav-link-line-height: 1.4;
    --si-nav-link-font-weight: 500;
    --si-nav-link-color: var(
    --si-navbar-color);
    --si-nav-link-hover-color: var(
    --si-navbar-hover-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}
.rd-navbar-fixed .rd-navbar-nav {
    --si-nav-link-padding-x: 1rem;
    --si-nav-link-padding-y: 0.5rem;
    --si-nav-link-font-size: 1.125rem;
    --si-nav-link-line-height: 1.4;
    --si-nav-link-font-weight: 400;
    --si-nav-link-color: var(
    --si-navbar-color);
    --si-nav-link-hover-color: var(
    --si-navbar-hover-color);
    list-style: none;
    margin: 0;
    padding: 0;
}
.rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu > ul {
    --si-dropdown-zindex: 1000;
    --si-dropdown-min-width: 12rem;
    --si-dropdown-padding-x: 0;
    --si-dropdown-padding-y: 0.75rem;
    --si-dropdown-font-size: 1rem;
    --si-dropdown-link-line-height: 1.3;
    --si-dropdown-border-color: #fff;
    --si-dropdown-border-radius: 0;
    --si-dropdown-border-width: 0;
    --si-dropdown-box-shadow: 0 0.275rem 1.25rem rgba(11, 15, 25, 0.15), 0 0.25rem 0.5625rem rgba(11, 15, 25, 0.03);
    --si-dropdown-link-color: #ffffff;
    --si-dropdown-link-font-weight: 400;
    --si-dropdown-link-active-color: #f6a139;
    --si-dropdown-link-active-bg: transparent;
    --si-dropdown-item-padding-x: 1rem;
    --si-dropdown-item-padding-y: 0.375rem;
    z-index: var(--si-dropdown-zindex);
    display: block;
    min-width: var(--si-dropdown-min-width);
    padding: var(--si-dropdown-padding-y) var(--si-dropdown-padding-x);
    margin: 0;
    font-size: var(--si-dropdown-font-size);
    color: var(--si-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--si-dropdown-bg);
    background-clip: padding-box;
    border: var(--si-dropdown-border-width) solid var(--si-dropdown-border-color);
    border-radius: var(--si-dropdown-border-radius);
    -webkit-box-shadow: var(--si-dropdown-box-shadow);
    box-shadow: var(--si-dropdown-box-shadow);
}
.rd-navbar-wrap, .rd-navbar-static.rd-navbar--is-clone, .rd-navbar-static .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-megamenu, .rd-navbar-fixed .rd-navbar-nav-wrap, .rd-navbar-fixed .rd-navbar-submenu, .rd-navbar-cart, .rd-navbar-static .rd-navbar-cart-buy, .rd-navbar-fixed .rd-navbar-cart-floating, .rd-navbar-fixed .rd-navbar-cart-floating:before, .rd-navbar-fixed .rd-navbar-cart-floating .rd-navbar-cart-buy, .rd-navbar-fixed .rd-navbar-collapse, .rd-navbar-fixed .rd-navbar-collapse:before {
  -webkit-transition: 0.3s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  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 * {
  -webkit-transition: none !important;
  transition: none !important;
}
.rd-navbar-outer {
    color: #000000;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}
.rd-navbar-static.rd-navbar--is-clone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  z-index: 20;
}
.rd-navbar-static.rd-navbar--is-clone .rd-navbar-panel {
  display: none;
}
.rd-navbar-static.rd-navbar--is-clone.rd-navbar--is-stuck {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.rd-navbar-static.rd-navbar--is-stuck {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 20;
}
.rd-navbar-static.rd-navbar--is-stuck .rd-navbar-panel {
  display: none;
}
/*
* @subsection   RD Navbar Toggles
*
* @description  Describes style declarations for RD Navbar toggles
*/
.rd-navbar-nav, .rd-navbar-toggle, .rd-navbar-collapse-toggle {
    display: none;
}
.rd-navbar-fixed .rd-navbar-toggle {
    position: relative;
    z-index: 17;
    top: 3px;
    left: 0;
}
.rd-navbar-fixed .rd-navbar-toggle{
    display: inline-block;
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0;
    font-weight: normal;
    text-decoration: none;
    vertical-align: middle;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: transparent;
}
.rd-navbar-fixed .rd-navbar-toggle span {
  position: relative;
  display: block;
  margin: auto;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}
.rd-navbar-fixed .rd-navbar-toggle span:before, 
.rd-navbar-fixed .rd-navbar-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}
.rd-navbar-fixed .rd-navbar-toggle span:after {
    top: 6px;
}
.rd-navbar-fixed .rd-navbar-toggle span:after, 
.rd-navbar-fixed .rd-navbar-toggle span:before, 
.rd-navbar-fixed .rd-navbar-toggle span {
    width: 22px;
    height: 2px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 0;
    will-change: transform;
}
.rd-navbar-fixed .rd-navbar-toggle span:before, 
.rd-navbar-fixed .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-toggle.active span {
    -webkit-transition: background .22s 0s ease;
    transition: background .22s 0s ease;
    background: transparent;
}
.rd-navbar-fixed .rd-navbar-toggle.active span:before, 
.rd-navbar-fixed .rd-navbar-toggle.active span:after {
    top: 0;
    -webkit-transition-delay: 0s, 0.22s;
    transition-delay: 0s, 0.22s;
}
.rd-navbar-fixed .rd-navbar-toggle.active span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.rd-navbar-fixed .rd-navbar-toggle.active span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/*
* @subsection   RD Navbar Toggles
*
* @description  Describes style declarations for RD Navbar navigation
*/
.rd-navbar-static .rd-navbar-outer .rd-navbar-inner {
    position: relative;
    padding: var(--si-navbar-padding-y) var(--si-navbar-padding-x);
}
.rd-navbar-static .rd-navbar-dropdown, 
.rd-navbar-static .rd-navbar-megamenu {
    position: absolute;
    padding: 8px 0;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
}
.rd-navbar-static .rd-navbar-dropdown li > a, 
.rd-navbar-static .rd-navbar-megamenu li > a {
    position: relative;
    display: block;
    width: 100%;
    padding: var(--si-dropdown-item-padding-y) var(--si-dropdown-item-padding-x);
    clear: both;
    font-size: var(--si-dropdown-font-size);
    font-weight: var(--si-dropdown-link-font-weight);
    line-height: var(--si-dropdown-link-line-height);
    color: var(--si-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: rgba(0,0,0,0);
    border: 0;
}
.rd-navbar-static .rd-navbar-dropdown li.focus > a, .rd-navbar-static .rd-navbar-dropdown li.opened > a, .rd-navbar-static .rd-navbar-dropdown a:hover,
.rd-navbar-static .rd-navbar-megamenu li.focus > a,
.rd-navbar-static .rd-navbar-megamenu li.opened > a,
.rd-navbar-static .rd-navbar-megamenu a:hover {
    color: var(--si-dropdown-link-hover-color);
    background-color: var(--si-dropdown-link-hover-bg);
}
.rd-navbar-static .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.opened > .rd-navbar-dropdown,
.rd-navbar-static .rd-navbar-nav li.opened > .rd-navbar-megamenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
}
.rd-navbar-static .rd-navbar-nav li.focus > .rd-navbar-megamenu{
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.rd-navbar-static .rd-navbar-nav > li {
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown, .rd-navbar-static .rd-navbar-nav > li > .rd-navbar-megamenu {
  top: 100%;
  z-index: 999;
}
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown {
    left: 0;
}
.rd-navbar-static .rd-navbar-megamenu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    background: var(--si-dropdown-bg);
    margin-top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    -webkit-transform: translateY(14px);
    transform: translateY(14px);
}
.rd-navbar-static .rd-navbar-megamenu>ul {
    width: var(--si-mega-dropdown-column-width);
    list-style: none;
    margin: 0;
}
.rd-navbar-static .rd-navbar-megamenu li > a {
    white-space: initial;
}
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown .rd-navbar-dropdown {
  left: 100%;
  top: -8px;
  z-index: 2;
}
.rd-navbar-static .rd-navbar-nav > li > a {
    display: block;
    padding: var(--si-nav-link-padding-y) var(--si-nav-link-padding-x);
    font-size: var(--si-nav-link-font-size);
    font-weight: var(--si-nav-link-font-weight);
    line-height: var(--si-nav-link-line-height);
    color: var(--si-nav-link-color);
    text-decoration: none;
    -webkit-transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
    transition: color .2s ease-in-out,background-color .2s ease-in-out,border-color .2s ease-in-out;
}
.rd-navbar-static .rd-navbar-nav > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: var(--si-navbar-nav-link-padding-x);
    padding-left: var(--si-navbar-nav-link-padding-x);
}
.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 {
    color: var(--si-nav-link-hover-color);
    background: var(--si-nav-link-hover-bg);
}
.rd-navbar-static .rd-navbar-nav > li.rd-navbar-submenu > a {
    position: relative;
    white-space: nowrap;
}
.rd-navbar-static .rd-navbar-nav > li.rd-navbar-submenu > a:after,
.rd-navbar-static .rd-navbar-nav > li.rd-navbar-submenu .rd-navbar-submenu > a:after {
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    font-family: "FontAwesome";
    font-weight: normal;
    vertical-align: middle !important;
    border: none !important;
    line-height: 1;
    margin-right: -0.25rem;
    content: "\f107";
    font-size: 1.15em;
    transition: 0.4s transform ease;
    will-change: transform;
}
.rd-navbar-static .rd-navbar-nav > li.rd-navbar-submenu .rd-navbar-submenu > a:after {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    top: 7px;
    right: 15px;
    transform: rotate(-90deg);
}
.rd-navbar-static .rd-navbar-nav > li.rd-navbar-submenu.focus > :after {
    transform: rotate(180deg);
}
.rd-navbar-fixed .rd-navbar-nav-wrap {
    position: fixed;
    top: -56px;
    left: 0;
    width: 280px;
    padding: 112px 0 80px;
    bottom: -56px;
    color: #999;
    background: #ffffff;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 15;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}
.rd-navbar-fixed .rd-navbar-nav-wrap.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.rd-navbar-fixed .rd-navbar-nav {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    text-align: left;
    color: var(--si-nav-link-color);
    font-size: var(--si-nav-link-font-size);
    font-weight: var(--si-nav-link-font-weight);
    line-height: var(--si-nav-link-line-height);
}
.rd-navbar-fixed .rd-navbar-nav:before, 
.rd-navbar-fixed .rd-navbar-nav:after {
    content: '';
    display: block;
    height: 20px;
}
.rd-navbar-fixed .rd-navbar-nav > li + li {
    margin-top: 4px;
}
.rd-navbar-fixed .rd-navbar-nav > li > a {
    display: block;
    padding: var(--si-nav-link-padding-y) var(--si-nav-link-padding-x);
    padding-right: 56px;
    color: inherit;
    text-decoration: none;
    font: inherit;
}
.rd-navbar-fixed .rd-navbar-submenu-toggle:after,
.rd-navbar-fixed .rd-navbar-submenu .close-this-subnav:before {
    content: "\f105";
    font-family: "FontAwesome";
    display: inline-block;
    position: relative;
    top: 0;
    right: 0;
    width: 56px;
    height: 40px;
    text-align: center;
    color: inherit;
    line-height: 40px;
    font-size: 1.15em;
    font-weight: 400;
    z-index: 2;
    cursor: pointer;
    transition: 0.4s transform ease;
    will-change: transform;
}
.rd-navbar-fixed .rd-navbar-submenu {
    transition: 0.32s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.rd-navbar-fixed .rd-navbar-nav li.opened > .rd-navbar-submenu-toggle::after {
    transform: rotate(180deg);
}
.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
  display: none;
}
.rd-navbar-fixed .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-megamenu {
  display: block;
}
.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.opened > .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-megamenu {
  display: block;
}

/*
* @subsection   RD Navbar Toggles
*
* @description  Describes style declarations for RD Navbar panel
*/
.rd-navbar-static .rd-navbar-panel {
  /*padding: 50px 0;*/
}

.rd-navbar-static .rd-navbar-panel:before, .rd-navbar-static .rd-navbar-panel:after {
  display: table;
  content: "";
  line-height: 0;
}

.rd-navbar-static .rd-navbar-panel:after {
  clear: both;
}
.rd-navbar-fixed .rd-navbar-panel {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 4px;
    height: 64px;
    z-index: 999;
    /*
    border-bottom: 1px solid #ececee;
    */
}
.rd-navbar-fixed .rd-navbar-panel {
    color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
}
.rd-navbar-fixed .rd-navbar-panel-canvas {
    position: fixed;
    height: 64px;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    z-index: 16;
    /*
    border-bottom: 1px solid #ececee;
    */
}
/*
* @subsection   RD Navbar Brand
*
* @description  Describes style declarations for RD Navbar Brand
*/
.rd-navbar-static .rd-navbar-brand img {
    /*min-width: 232px;*/
}
.rd-navbar-fixed .rd-navbar-brand {
    text-align: left;
    position: fixed;
    top: 7px;
    left: 56px;
    overflow: hidden;
    height: auto;
    z-index: 999;
}
.rd-navbar .rd-navbar-brand p {
    margin: 0;
    padding: 0;
    line-height: 0;
}
.rd-navbar-fixed .rd-navbar-brand img {
    max-width: 200px;
    width: 100%;
}
/*
Fixed CSS
*/
.content-sidebar.rd-navbar-fixed-linked,
.sidebar-content-box.rd-navbar-static-linked {
    display: none !important;
    visibility: hidden !important;
}
/*Overlay Mobile Dropdown*/
.rd-navbar-static .rd-navbar-submenu .close-this-subnav {
    display: none;
    visibility: hidden;
}
.rd-navbar-fixed .rd-navbar-nav > li > a {
    display: block;
    padding: var(--si-nav-link-padding-y) var(--si-nav-link-padding-x);
    /* padding-right: 56px; */
    color: inherit;
    text-decoration: none;
    font: inherit;
    width: calc(100% - 56px);
}
.rd-navbar-fixed .rd-navbar-submenu {
    position: unset;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap!important;
    flex-wrap: wrap!important;
    justify-content: space-between !important;
}
.rd-navbar-fixed .rd-navbar-nav li.opened {
    position: initial !important;
}
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu {
    position: absolute;
    top: 0;
    padding: 120px 0px 80px;
    bottom: 0;
    left: calc(-100% - 20px);
    width: calc(100% - 20px);
    height: 100%;
    background: #f1f0ee;
    z-index: 4;
    box-shadow: 1px 10px 18px rgba(0,0,0,.2);
    transition: left 350ms ease 0s;
}
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-dropdown,
.rd-navbar-fixed .rd-navbar-submenu.opened > .rd-navbar-megamenu {
    left: 0;
    overflow: hidden;
    overflow-y: auto;
}
.rd-navbar-fixed .rd-navbar-submenu .close-this-subnav {
    display: block;
    padding: 0.65rem 0.75rem;
    padding-left: 0;
    background: #f1f0ee;
    width: 100%;
    position: relative;
    border-bottom: 1px solid transparent;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}
.rd-navbar-fixed .rd-navbar-submenu .close-this-subnav:before {
    transform: rotate(180deg);
    width: 40px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 36px;
}
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu .close-this-subnav {
    border-bottom: 1px solid #dedede;
}
.rd-navbar-fixed .rd-navbar-submenu.opened > ul li,
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu > ul li{
    border-bottom: 1px solid #dedede;
    background: #fff;
}
.rd-navbar-fixed .rd-navbar-submenu.opened > ul li:hover,
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu > ul li:hover{
    color: var(--si-navbar-hover-color);
}
.rd-navbar-fixed .rd-navbar-submenu > ul li a,
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu > ul li a{
    padding: 0.75rem 1rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
    color: inherit;
    font-size: 1rem;
    text-transform: capitalize;
    width: calc(100% - 56px);
}
.rd-navbar-fixed .rd-navbar-submenu > .rd-navbar-megamenu > ul li a {
    width: 100%;
}
.rd-navbar-fixed .rd-navbar-submenu > ul li .rd-navbar-submenu-toggle:after {
    top: 0px;
    height: 46px;
    line-height: 46px;
}
/*Top Header Mobile CSS*/
.rd-navbar-fixed .rd-navbar-collapse-toggle {
    display: block;
    position: fixed;
    top: 7px;
    right: 4px;
    width: 48px;
    height: 48px;
    z-index: 20;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: top;
    -webkit-appearance: none;
    outline: none;
    color: inherit;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}
.rd-navbar-fixed .rd-navbar-collapse-toggle i {
    font-size: 24px;
    font-weight: 400;
    color: #f05680;
}
/*Fix for aplic*/
.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown li.focus .rd-navbar-dropdown {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.rd-navbar-static .rd-navbar-nav > li > .rd-navbar-dropdown .rd-navbar-dropdown {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
}