.ccm-page #navbar .navbar {
  display: grid;
}
.ccm-page .inner-head .banner {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.ccm-page .inner-head .banner img {
  height: 30px;
}
.ccm-page .inner-head .btn-normal {
  font-size: 0.875em;
  padding: 0.375em 1em 0.25em;
}
.ccm-page .inner-head .list-group {
  background-color: transparent;
}
.ccm-page .inner-head li.list-group-item {
  border: none !important;
  padding: 0 0 0 1em !important;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .ccm-page .navbar {
    max-width: 880px;
    justify-content: flex-end;
  }
  .ccm-page .inner-head {
    order: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .ccm-page .inner-head .list-group {
    display: flex;
    flex-direction: row;
    text-align: center;
  }
  .ccm-page .inner-navbar {
    order: 2;
    padding: 0.5em 0 0 0;
  }

  .ccm-page .inner-navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .ccm-page .inner-navbar li {
    position: relative;
  }

  .ccm-page .inner-navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .ccm-page .inner-navbar a,
  .ccm-page .inner-navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 16px;
    font-weight: 500;
    color: var(--default);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .ccm-page .inner-navbar a i,
  .ccm-page .inner-navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .ccm-page .inner-navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .ccm-page .inner-navbar a:hover:before,
  .ccm-page .inner-navbar li:hover > a:before,
  .ccm-page .inner-navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .ccm-page .inner-navbar a:hover,
  .ccm-page .inner-navbar .active,
  .ccm-page .inner-navbar .active:focus,
  .ccm-page .inner-navbar li:hover > a {
    color: #000;
  }

  .ccm-page .inner-navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .ccm-page .inner-navbar .dropdown ul li {
    min-width: 200px;
  }

  .ccm-page .inner-navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
  }

  .ccm-page .inner-navbar .dropdown ul a i {
    font-size: 12px;
  }

  .ccm-page .inner-navbar .dropdown ul a:hover,
  .ccm-page .inner-navbar .dropdown ul .active:hover,
  .ccm-page .inner-navbar .dropdown ul li:hover > a {
    color: var(--primary);
  }

  .ccm-page .inner-navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .ccm-page .inner-navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .ccm-page .inner-navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media screen and (min-width: 1280px) and (max-width: 1365.98px) {
  .ccm-page .inner-navbarr .dropdown .dropdown ul {
    left: -90%;
  }

  .ccm-page .inner-navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media screen and (min-width: 1280px) {
  .ccm-page .mobile-nav-show,
  .ccm-page .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media screen and (max-width: 1279.98px) {
  .ccm-page .navbar {
  }
  .ccm-page .header .logo img {
    max-height: 67px;
  }
  .ccm-page .navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 100%;
    /* max-width: 600px; */
    transition: 0.7s;
    z-index: 9997;
  }

  .ccm-page .inner-navbar ul {
    position: absolute;
    inset: 0;
    transition: 0.3s;
    z-index: 9998;
    padding: 50px 10px 10px 10px;
    margin: 0;
    background-color: var(--bg-primary);
    overflow-y: auto;
    list-style: none;
  }

  .ccm-page .inner-navbar a,
  .ccm-page .inner-navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--primary);
    font-size: 16px;
    color: var(--default);
    white-space: nowrap;
    transition: 0.3s;
  }

  .ccm-page .inner-navbar a i,
  .ccm-page .inner-navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .ccm-page .inner-navbar a:hover,
  .ccm-page .inner-navbar li:hover > a {
    color: var(--primary);
  }

  .ccm-page .inner-navbar .active,
  .ccm-page .inner-navbar .active:focus {
    color: var(--default);
    font-weight: 600;
  }

  .ccm-page .inner-navbar .dropdown ul,
  .ccm-page .inner-navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
  }

  .ccm-page .inner-navbar .dropdown > .dropdown-active,
  .ccm-page .inner-navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .ccm-page .inner-head {
    position: absolute;
    inset: 0;
    top: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
  }

  .ccm-page .inner-head .list-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
  }

  .ccm-page .inner-head li.list-group-item {
    padding-left: 0 !important;
  }

  .ccm-page .mobile-nav-show {
    color: var(--primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 0 0 20px;
  }

  .ccm-page .inner-head .btn-normal {
    font-size: 16px;
    background-color:  #ffffff;
  }

  .ccm-page .mobile-nav-hide {
    color: var(--primary);
    font-size: 36px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 28px;
    right: 24px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

@media screen and (max-width: 575px) {
  .ccm-page .mobile-nav-hide {
    top: 24px;
    right: 12px;
  }
}

.language-switcher {
  position: relative;
  margin: 0 1em;
  padding: 0 1em;
  display: flex;
  align-items: baseline;
}
.language-switcher:before {
  content: "";
  width: 2px;
  height: 1rem;
  background: var(--default);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%)
}
.language-switcher:after {
  content: "";
  width: 2px;
  height: 1em;
  background: var(--default);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}
.language-switcher-item {
  position: relative;
  font-size: 1.125em;
  color: var(--default);
}
.language-switcher-item a {
  text-decoration: none;
}
.language-switcher-item + .language-switcher-item:before {
  content: "/";
  font-weight: 400 !important;
  margin-right: 0.25em;
  margin-left: 0.25em;
}
.language-switcher-item--current {
  font-weight: 500;
  font-size: 1.15em;
  color: var(--default);
  transition: color 0s;
}
@media screen and (max-width: 1279.98px) {
  .language-switcher {
    margin: 1em auto;
    justify-content: center;
  }
  .language-switcher:before,
  .language-switcher:after {
    display: none
  }
}
