@media (min-width: 768px) {
  .nav-mobile,
  .gw-list-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --bg: #0b1220; /* page bg */
    --nav: #111827; /* bar bg */
    --panel: linear-gradient(
      to bottom,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    ); /* dropdown bg */
    --text: #f8fafc; /* text */
    --muted: #94a3b8; /* muted */
    --border: #334155; /* border */
    --hover: #334155; /* hover */
    --accent: #22d3ee; /* focus */
  }

  * {
    box-sizing: border-box;
  }
  .container {
    width: 100%;
  }
  .nav,
  .gw-list-desktop {
    display: none;
  }
  .nav-mobile {
    position: sticky;
    top: 0;
    z-index: 50;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(116, 156, 204, 1)),
      color-stop(50%, rgba(26, 71, 122, 1)),
      to(rgba(116, 156, 204, 1))
    );
    background: -o-linear-gradient(
      top,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    background: linear-gradient(
      to bottom,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.2px solid var(--border);
    border-top: 0.2px solid var(--border);
  }
  .nav-inner {
    max-width: 900px;
    margin: 0 auto;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 12px;
    gap: 8px;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(116, 156, 204, 1)),
      color-stop(50%, rgba(26, 71, 122, 1)),
      to(rgba(116, 156, 204, 1))
    );
    background: -o-linear-gradient(
      top,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    background: linear-gradient(
      to bottom,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
  }

  .nav-inner:active {
    background: rgba(255, 255, 255, 0.2);
  }

  .menu-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    color: var(--text);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
  }
  .menu-btn:focus {
    outline-offset: 2px;
  }
  .menu-btn svg {
    display: block;
  }
  .menu-label {
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  /* ===== Dropdown panel ===== */
  .panel-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .panel {
    display: none;
    border-top: 1px solid var(--border);
  }
  .panel-inner-item {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(116, 156, 204, 1)),
      color-stop(50%, rgba(26, 71, 122, 1)),
      to(rgba(116, 156, 204, 1))
    );
    background: -o-linear-gradient(
      top,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    background: linear-gradient(
      to bottom,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    border-bottom: 0.5px solid var(--border);
    height: 40px;
  }

  .panel-inner-item:active {
    background: rgba(255, 255, 255, 0.2);
  }

  .panel a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12px;
    text-decoration: none;
    color: var(--text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  /* Small fade/slide */
  .panel.show {
    display: block;
    -webkit-animation: drop 0.18s ease-out both;
    animation: drop 0.18s ease-out both;
  }
  @keyframes drop {
    from {
      opacity: 0;
      -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }

  main {
    max-width: 900px;
    margin: 24px auto;
    padding: 0 12px;
    line-height: 1.7;
  }
  .container {
    overflow: visible !important;
  }
  .gw-general-page .gw-content {
    width: 100% !important;
    text-align: justify;
  }
  .clear-mobile {
    height: 5px;
  }
  .gw-general-page .gw-list {
    width: 100% !important;
    font-size: 90%;
  }
  .gw-general-page .gw-list-item {
    line-height: 65px;
    height: 65px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 0 0 10px;
    cursor: pointer;
    position: relative;
    background-color: #5585bf;
    color: #18406b;
    margin-right: 10px;
  }
  .gw-general-page .gw-list-item a {
    display: block;
    color: #18406b;
  }
  .gw-general-page .gw-list-item-active a {
    color: #fff !important;
  }
  .gw-general-page .gw-list-bg {
    width: 100%;
    height: 65px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .gw-general-page .gw-list-title {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
  }
  .gw-general-page .gw-list-bg {
    width: 100%;
    height: 65px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .gw-general-page .gw-list-title {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
  }
  #footer .container {
    min-height: 80px;
    clear: both;
  }
  #footer .social img {
    height: 30px;
    margin: 0 5px;
  }
  .gw-general-page .gw-list-item-2 {
    line-height: 160%;
    height: 60px;
    padding: 10px;
  }
  #footer {
    clear: both;
  }
  .gw-list-mobile {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
  }
  .gw-list-mobile-item {
    display: block;
    text-transform: uppercase;
    color: #fff;
    min-height: 100px;
    text-align: center;
    padding-top: 30px;
    border: solid 2px rgba(0, 0, 0, 0.2);
    line-height: 150%;
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: bold;
  }
  .gw-list-mobile-item-2 {
    display: block;
    text-transform: uppercase;
    color: #fff;
    min-height: 100px;
    text-align: center;
    padding-top: 37px;
    border: solid 2px rgba(0, 0, 0, 0.2);
    line-height: 150%;
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: bold;
  }
  .gw-list-mobile-item-3 {
    display: block;
    text-transform: uppercase;
    color: #fff;
    min-height: 100px;
    text-align: center;
    padding-top: 37px;
    border: solid 2px rgba(0, 0, 0, 0.2);
    line-height: 150%;
    font-family: "Arial", Helvetica, sans-serif;
    font-weight: bold;
  }
  .gw-list-mobile-item:active {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
  }
}
/* Accordion for submenu */

.acc {
  overflow: visible;
  position: relative;
}
.acc-btn {
  padding: 10px 12px;
  border: solid 1px;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #777;
  border-radius: 0%;
}
.acc-btn:active {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}
.acc-panel {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 999;
  right: 0;
  background: #fff;
  overflow: visible;
}
.acc-item {
  display: block;
  padding: 10px 10px 10px 42.94px !important;
  color: #777;
  text-decoration: none;
  border: solid 1px;
}

@media (max-width: 379px) {
  .gw-list-mobile {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
  .gw-list-mobile-item {
    padding-top: 20px;
  }
  .gw-list-mobile-item-2 {
    padding-top: 32px;
  }
  .gw-list-mobile-item-3 {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .gw-general-page-contact {
    margin-top: -20px;
  }
  .gw-general-page-contact #position-info {
    margin: 0px;
    padding: 0 10px;
  }
  .contact-info {
    width: 100%;
  }
  .gw-general-page-contact .send-inquiry {
    width: 100%;
    padding: 0px 10px;
  }
  .field {
    margin-bottom: 14px;
  }
  label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
  }
  input,
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  button {
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(116, 156, 204, 1)),
      color-stop(50%, rgba(26, 71, 122, 1)),
      to(rgba(116, 156, 204, 1))
    );
    background: -o-linear-gradient(
      top,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    background: linear-gradient(
      to bottom,
      rgba(116, 156, 204, 1) 0%,
      rgba(26, 71, 122, 1) 50%,
      rgba(116, 156, 204, 1) 100%
    );
    color: #fff;
  }
  button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }
  #formStatus {
    margin-top: 10px;
  }
  #label-name {
    margin-top: 10px;
  }
}
