
/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
  }
}
.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #000;
  transition: all 0.4s ease-in-out;
}
.menu-btn .menu-btn__lines::before, .menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #000;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #000;
}

.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " ▾";
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}
.expand-btn.open {
  color: #000001;
}
.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

/* navbar-menu */
.navbar-menu {
  font-family: 'Prompt', Arial, Helvetica, sans-serif;
  display: flex;
  font-weight: 500;
  font-style: normal;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 60px;
  background: #fff;
  /* box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05); */
}
@media (max-width: 1023px) {
  .navbar-menu {
    padding: 10px 20px;
  }
}
.navbar-menu.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}
.navbar-menu .logo {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 145px;
}
.navbar-menu .menu-items {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.navbar-menu .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}
.navbar-menu .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}
.navbar-menu .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #000;
}
@media (max-width: 1023px) {
  .navbar-menu .menu-items {
    scrollbar-gutter: stable;
    position: fixed;
    top: 65px;
    left: 0;
    display: block;
    width: 350px;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 100px;
    padding-right: 10px;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
  }
  .navbar-menu .menu-items.open {
    transform: translateY(0);
  }
}
.navbar-menu .menu-items > li > .menu-item {
  padding: 1.5rem 1rem;
}
@media (max-width: 1023px) {
  .navbar-menu .menu-items > li > .menu-item {
    padding: 1rem 1rem;
  }
}
.navbar-menu .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1023px) {
  .navbar-menu .menu-items li a {
    padding: 10px 1rem;
  }
}
.navbar-menu .dropdown {
  position: relative;
}
@media (min-width: 1024px) {
  .navbar-menu .dropdown:hover > .dropdown-menu-head {
    opacity: 1;
    visibility: visible;
  }
  .navbar-menu .dropdown:hover > .expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (min-width: 1024px) {
  .navbar-menu .dropdown .dropdown-right .expand-btn:after,
.navbar-menu .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .navbar-menu .dropdown-menu-head {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    width: 200px;
    padding: 5px 0;
    background: #fff;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
    visibility: hidden;
    transition: all 0.4s ease;
  }
}
@media (max-width: 1023px) {
  .navbar-menu .dropdown-menu-head {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
  }
}
.navbar-menu .menu-right {
  top: 0;
  left: 100%;
}
@media (max-width: 1023px) {
  .navbar-menu .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }
  .navbar-menu .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
  }
}
.navbar-menu .menu-left {
  top: 0;
  left: -100%;
}
@media (max-width: 1023px) {
  .navbar-menu .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }
  .navbar-menu .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%);
  }
}
.navbar-menu .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  transition: 0.25s;
}
.navbar-menu .menu-item:hover {
  color: #18375d;
}
.navbar-menu ul li {
  list-style: none;
  transition: 0.3s ease;
}
.navbar-menu ul li .arrow {
  transition: all 0.3s ease-out;
}
.navbar-menu ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
}
@media (min-width: 1024px) {
  .navbar-menu .dropdownMega {
    position: inherit !important;
  }
}
@media (min-width: 1024px) {
  .navbar-menu .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}
@media (max-width: 1023px) {
  .navbar-menu .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}
.navbar-menu .mega-menu .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #171b27;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 1023px) {
  .navbar-menu .mega-menu .content {
    grid-template-columns: auto;
  }
}
@media (min-width: 1024px) {
  .navbar-menu .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 1023px) {
  .navbar-menu .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}
.navbar-menu .category .content .col .img-wrapper {
  margin: 1rem 0;
}
.navbar-menu .blog .content {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 1024px) {
  .navbar-menu .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}
.navbar-menu .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}
.navbar-menu .blog .content .col .menu-title {
  font-weight: normal;
}
.navbar-menu .blog .content .col .menu-title a {
  transition: 0.25s;
}
.navbar-menu .blog .content .col .menu-title a:hover {
  color: #ff5722;
}
.navbar-menu .content .col {
  display: flex;
  flex-direction: column;
}
.navbar-menu .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}
.navbar-menu .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}
.navbar-menu .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.navbar-menu .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}
.navbar-menu .content .col .menu-title {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}
@media (max-width: 1023px) {
  .navbar-menu .content .col .menu-title {
    font-size: 0.875rem;
  }
}
.navbar-menu .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: #ffffff;
}
.navbar-menu .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #3c3c3c;
}
@media (max-width: 1023px) {
  .navbar-menu .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }
  .navbar-menu .content .col .mega-links li {
    margin: 0;
  }
  .navbar-menu .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}
.navbar-menu .content .col .mega-links li {
  margin: 1rem 0;
}
.navbar-menu .content .col .mega-links li a {
  padding: 0;
}

@media (max-width: 1023px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .overlay.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

