.elementor-40 .elementor-element.elementor-element-e70019f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-40 .elementor-element.elementor-element-a735cfa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-40 .elementor-element.elementor-element-a735cfa:not(.elementor-motion-effects-element-type-background), .elementor-40 .elementor-element.elementor-element-a735cfa > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #001E83 0%, #3C79E6 100%);}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-17e467a */.main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-left {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 10px 18px;
  border: 2px solid #fff200;
  background-color: transparent;
  color: #fff200;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase; /* <-- dòng này */
  transition: all 0.3s ease;
  animation: flicker 1.5s infinite alternate, shake 2s infinite;
  box-shadow: 0 0 5px #fff200, 0 0 10px #fff200, 0 0 20px #fff200;
}

.btn:hover {
  background-color: #fff200;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 10px #fff200, 0 0 20px #fff200, 0 0 30px #fff200;
}

.logo {
  height: 20px;
  width: 120px;
  margin-right: auto;
}

.menu-right {
  order: -1;
}
@media (max-width: 600px) {
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .menu-left {
    width: 100%;
    justify-content: space-around;
    margin-top: 12px;
  }

  .logo {
    margin-bottom: 10px;
  }
}
@keyframes shake {
  0% { transform: translate(0, 0); }
  25% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, 1px); }
  75% { transform: translate(1px, 1px); }
  100% { transform: translate(-1px, -1px); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
  60% { opacity: 1; }
  70% { opacity: 0.9; }
  80% { opacity: 1; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a0a3632 */.menu-xglow {
      position: relative;
      background: rgba(0, 0, 0, 0.4);
      border: 2px solid #00ffff;
      padding: 10px 20px;
      display: flex;
      justify-content: center;
      gap: 30px;
      overflow: visible;
      z-index: 100;
    }

    .menu-xglow::before {
      content: "";
      position: absolute;
      top: -4px;
      left: -4px;
      right: -4px;
      bottom: -4px;
      background: linear-gradient(90deg, #00ffff, #3C79E6, #001E83);
      background-size: 300% 100%;
      animation: xglow-led 1.5s linear infinite;
      z-index: -1;
      border-radius: 8px;
      filter: drop-shadow(0 0 10px #00ffff);
    }

    .menu-xlist {
      list-style: none;
      display: flex;
      gap: 30px;
      z-index: 2;
    }

    .menu-xitem {
      position: relative;
    }

    .menu-xlink {
      color: white;
      text-decoration: none;
      padding: 10px 15px;
      display: inline-block;
      transition: background 0.3s, color 0.3s;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.5;
    }

    .menu-xlink:hover,
    .menu-xlink.menu-xactive {
      background: #00ffff;
      color: #000;
      border-radius: 5px;
      line-height: 1.5;
    }

    .menu-xdrop {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0, 0, 0, 0.9);
      border: 1px solid #00ffff;
      display: none;
      flex-direction: column;
      z-index: 1000;
      list-style: none;
      padding: 0;
      min-width: 180px;
    }

    .menu-xitem:hover > .menu-xdrop {
      display: flex;
    }

    .menu-xdrop .menu-xitem {
      list-style: none;
    }

    .menu-xdrop .menu-xlink {
      width: 100%;
      white-space: nowrap;
    }

    @keyframes xglow-led {
      0% { background-position: 0% 0%; }
      100% { background-position: 100% 0%; }
    }

    @media (max-width: 768px) {
      .menu-xglow {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
      }

      .menu-xlist {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        gap: 10px;
      }

      .menu-xitem {
        flex: 1;
        text-align: center;
      }

      .menu-xlink {
        font-size: 14px;
        padding: 8px 6px;
      }

      .menu-xdrop {
        position: absolute;
        border-left: none;
        margin-left: 0;
        width: auto;
      }
    }/* End custom CSS */