


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }

  .my-container {
    width: 100%;
    max-width: 1440px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  span,
  li,
  label,
  div {
    font-family: "Poppins", sans-serif;
  }

  ::placeholder {
    font-family: "Poppins", sans-serif;
  }

  button {
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }

  p {
    font-family: "Poppins", sans-serif;
  }

  a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }

  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* common design */
  svg {
    display: flex;
  }

  /* nav */
  .navbar-web {
    padding: 20px 0;
    background: #001942;
  }

  nav .my-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-box {
    position: relative;
  }

  .topnav {
    display: none;
  }

  .search-box {
    margin-left: auto;
    margin-right: 20px;
  }

  .menu-box button {
    background: transparent;
    border: none;
  }

  .topnav .menu {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
    gap: 16px;
  }

  .topnav.responsive {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 30px;
    background: #fff;
    padding: 16px;
    right: 0;
    border-radius: 16px;
    box-shadow: 0 0 12px 2px #bbbbbbcc;
    width: 190px;
  }

  .topnav .menu a {
    color: #001942;
    width: 100% !important;
    text-align: center;
  }

  .topnav .menu a.active {
    font-weight: 600;
  }

  .topnav .menu a:hover {
    font-weight: 500;
  }

  /* banner */
  .banner {
    padding: 20px 0;
    background-image: url(../assets/bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .banner h1 {
    font-size: 46px;
    text-align: center;
    color: #fff;
  }

  .banner p {
    max-width: 880px;
    margin-inline: auto;
    color: #fff;
    text-align: center;
  }

  /* main */
  .main {
    min-height: 100vh;
    padding: 40px 0;
  }

  /* .main .options {
      transition: all .4s ease;
      border-radius: 16px;
      background: #001942;
      display: flex;
      flex-direction: column;
      padding: 20px;
      justify-content: center;
      align-items: center;
      gap: 16px;
  } */

  /* .main .options span {
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #fff;
  } */

  .main .options:hover {
    background: #022a6b;
  }

  .main .options p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
  }

  .main .my-row {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    gap: 24px;
    justify-content: center;
  }

  .main .options {
    transition: all 0.4s ease;
    border-radius: 16px;
    background: #001942;
    display: flex;
    flex-direction: column;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .main .options span {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #fff;
  }

  footer {
    padding: 30px 0;
    background: #f2f2f2;
    color: #1e1e1e;
  }

  footer .my-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .my-row .social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: 40px;
  }

  footer .my-row .social a {
    color: #1e1e1e;
    display: flex;
    gap: 6px;
  }

  /* common */
  .btn-pri {
    font-size: 18px;
    gap: 4px;
    border: 1px solid #fff;
    font-weight: 500;
    color: #001942;
    background: #fff;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-pri.blue {
    font-size: 18px;
    gap: 4px;
    border: 1px solid #fff;
    font-weight: 500;
    color: #fff;
    background: #001942;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-sec {
    font-size: 18px;
    gap: 4px;
    border: 1px solid #fff;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* popup */
  .popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .close-button {
    float: right;
    font-size: 18px;
    cursor: pointer;
    padding: 12px 20px;
    background: #001942;
    color: #fff;
    border-radius: 16px;
    margin-top: 16px;
  }

  /* tabs */
  .tabs-sec {
    min-height: 100vh;
    padding-bottom: 50px;
  }

  .intro-row {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .intro-row h2 {
    font-size: 34px;
    font-weight: 600;
    color: #001942;
  }

  .intro-row p {
    color: #001942;
  }

  .tabs-answer {
    display: none;
    /* Hide answers by default */
  }

  .tabs-item.active .tabs-answer {
    display: block;
    /* Show answer when .active class is added */
  }

  .tabs-item {
    margin-top: 24px;
  }

  .tabs-item button.tabs-question {
    width: 100%;
    background: #001942;
    border: none;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
  }

  .tabs-item .minus {
    display: none;
  }

  .tabs-item.active .minus {
    display: block;
  }

  .tabs-item.active .plus {
    display: none;
  }

  .tabs-answer {
    width: 100%;
    padding: 20px;
    background: #001942;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    /* margin-top: 10px; */
  }

  .date-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: start;
    gap: 20px;
  }

  .date-row .date-box {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .date-row .date-box .date > div {
    width: 100%;
  }

  .date-row .date {
    display: flex;
    align-items: start;
    color: #fff;
    gap: 10px;
    flex-wrap: wrap;
  }

  .date-row .date p span {
    font-weight: 500;
  }
  .date-row .date svg {
    min-width: 28px;
  }

  /* lft-rgt-row */
  .lft-rgt-row {
    display: flex;
    align-items: start;
    gap: 40px;
  }

  .lft-rgt-row .left {
    width: 50%;
  }

  .lft-rgt-row .right {
    width: 50%;
  }

  .lft-rgt-row .left img {
    height: 460px;
    border-radius: 16px;
    border: 1px solid #fff;
    object-fit: contain;
    width: 100%;
    background: #fff;
  }

  .lft-rgt-row .right p {
    color: #fff;
  }

  .lft-rgt-row .right .bookbtn-row {
    display: flex;
    margin-top: 20px;
    gap: 20px;
  }

  .sub-answer {
    display: none;
    /* Hide answers by default */
  }

  .sub-item.active .sub-answer {
    display: block;
    /* Show answer when .active class is added */
  }

  .sub-item button.sub-question {
    width: 100%;
    background: #001942;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sub-item .minus {
    display: none !important;
  }

  .sub-item.active .minus {
    display: block !important;
  }

  .sub-item.active .plus {
    display: none !important;
  }

  .tabs-item.active .sub-item .plus {
    display: block;
  }

  .tabs-answer .sub-item:first-child {
    padding-top: 0;
  }

  .tabs-answer .sub-item:last-child {
    padding-bottom: 0;
  }

  .tabs-answer .sub-item {
    padding: 24px 0;
  }

  .tabs-answer .sub-item:not(:first-child) {
    border-top: 1px solid #fff;
  }

  .tabs-answer .sub-item .sub-answer {
    margin-top: 20px;
  }

  .source {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .source p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
  }

  .source p span {
    color: #fff;
    font-weight: 400;
  }

  .source p a {
    color: #fff;
    font-weight: 400;
    word-break: break-word;
  }

  .map-row {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
  }

  .content-only {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .content-only h4 {
    font-size: 20px;
    font-weight: 500;
  }

  .content-only h5 {
    font-size: 16px;
    font-weight: 600;
  }

  .content-only ul {
    list-style: auto;
    padding-left: 14px;
  }

  .sub-answer p.top {
    color: #fff;
    margin-bottom: 20px;
  }

  .sub-answer .lft-rgt-row:not(:first-child) {
    margin-bottom: 24px;
  }

  .sub-answer .lft-rgt-row:not(:last-child) {
    margin-bottom: 24px;
  }

  /* login */
  .login-sec {
    padding: 40px 0;
    height: 70vh;
  }

  .login-sec .my-row {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .login-sec .my-row h3 {
    font-size: 34px;
    color: #001942;
  }

  .login-sec .my-row p {
    color: #001942;
  }

  .login-sec .my-row form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  .login-sec .my-row form input {
    font-size: 18px;
    padding: 20px;
    background: #fcfcfc;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    max-width: 580px;
    width: 100%;
  }

  /* portal */
  .portal-sec {
    padding: 40px 0;
    min-height: 100vh;
  }

  /* Container for the layout */
  .portal-sec .container {
    display: flex;
    width: 100%;
    gap: 40px;
  }

  /* Style for left tabs */
  .portal-sec .tabs {
    width: 20%;
    max-width: 180px;
  }

  .portal-sec .tab {
    padding: 15px;
    cursor: pointer;
    text-align: center;
    border-radius: 16px;
    color: #022a6b;
    border: 1px solid #001942;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .portal-sec .tab.active {
    background-color: #001942;
    color: #fff;
  }

  /* Style for right content */
  .portal-sec .content {
    width: 80%;
    padding: 20px;
    background: #f2f2f2;
    border-radius: 16px;
    display: none;
  }

  .portal-sec .content.active {
    display: block;
  }

  .portal-sec .content h5 {
    font-size: 24px;
    font-weight: 500;
    color: #001942;
  }

  .portal-sec .divider {
    padding: 30px 0;
    display: flex;
    align-items: start;
    gap: 20px;
    flex-wrap: wrap;
  }

  .portal-sec .divider h6 {
    font-size: 18px;
    font-weight: 500;
    color: #001942;
  }

  .portal-sec .divider .passport {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .portal-sec .divider {
    border-bottom: 1px solid #001942;
  }

  .portal-sec .divider:last-child {
    border-bottom: 0px solid #001942;
  }

  .portal-sec .divider .contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .portal-sec .divider .my-tour .time {
    color: #fff;
    background: #001942;
    padding: 20px;
    border-radius: 16px;
  }

  .portal-sec .divider .my-tour .time .name {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .portal-sec .divider .my-tour .time .name span {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fff;
  }

  .portal-sec .divider .my-tour .time .name p b {
    display: block;
    font-weight: 600;
  }

  .portal-sec .divider .my-tour .time .start-in {
    display: flex;
    color: #fff;
    gap: 16px;
    margin-top: 16px;
  }

  .portal-sec .divider .my-tour .time .start-in h6 {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .portal-sec .divider .my-tour {
    display: flex;
    gap: 20px;
  }

  .portal-sec .divider .my-tour .help {
    max-width: 550px;
  }

  .portal-sec .divider .my-tour .help h6 {
    font-size: 20px;
    font-weight: 500;
  }

  .portal-sec .divider .my-tour .help p {
    color: #001942;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .line-sec ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .line-sec ul li div.first {
    width: 20%;
    color: #001942;
    font-weight: 600;
  }

  .line-sec ul li div.second {
    width: 80%;
    color: #001942;
  }

  .line-sec ul li div.second h6 {
    margin-bottom: 2px;
    font-size: 20px;
    font-weight: 600;
  }

  .line-sec ul li div {
    float: left;
    padding: 15px;
    text-align: left;
    background: #fff;
  }

  .line-sec ul li {
    display: flex;
  }

  .line-sec ul li .first {
    border-right: 1px solid #001942;
    position: relative;
  }

  .line-sec ul li .first::after {
    content: "";
    position: absolute;
    top: 22px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #001942;
    background: #001942;
  }

  .itinerary {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
  }

  .itinerary .discription {
    background: #022a6b;
    padding: 20px;
    color: #fff;
    font-size: 14px;
  }

  .itinerary .name-box {
    background: #001942;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
  }

  .itinerary .name-box h3 span {
    display: block;
    font-weight: 400;
  }

  .itinerary .name-box .page h4 span {
    font-weight: 400;
  }

  .itinerary .name-box .day p {
    font-size: 24px;
  }

  .itinerary .name-box .day h6 {
    font-size: 20px;
    font-weight: 600;
  }

  .itinerary .button-row {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 20px;
    margin-top: 20px;
  }

  .content .tour-details {
    color: #001942;
    padding: 30px 0;
  }

  .content .tour-details {
    border-bottom: 1px solid #001942;
  }

  .content .tour-details:last-child {
    border-bottom: 0px solid #001942;
  }

  .content .tour-details h6 {
    font-size: 26px;
  }

  .content .tour-details p b {
    font-weight: 600;
    display: block;
  }

  .content .tour-details p {
    margin-bottom: 10px;
  }

  .content .tour-details p:last-child {
    margin-bottom: 0px;
  }

  .content .tour-details .in-two {
    display: flex;
    gap: 20px;
  }

  .content .slider {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #001942;
  }

  .content .slider .more-img {
    display: flex;
    gap: 30px;
  }

  .content .slider .more-img img {
    cursor: pointer;
  }

  .content .up-load {
    color: #001942;
  }

  .content .up-load .upload-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    border: 1px dashed #001942;
  }

  .tabs-item.active .tabs-answer p {
    color: #fff;
    flex-direction: column;
    align-items: start;
    overflow: hidden;
  }

  .lft-rgt-row video {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 30px;
    height: 350px;
  }

  .back-to-top {
    padding: 6px;
    border: 1px solid #001942;
    border-radius: 6px;
  }

  .popup-content #map_contend iframe {
    width: 100%;
    height: 600px;
  }

  .tabs-item.active .tabs-answer p button.toggle-btn {
    font-size: 20px;
  }

  img.imgForm {
    object-fit: cover;
    margin-top: 10px;
  }

  .tour-info #signature_form label {
    padding: 10px;
    border: 1px solid #cccc;
    border-radius: 8px;
    background: #fff;
    display: flex !important;
    max-width: 300px;
  }
  .tour-info #signature_form button {
    font-size: 18px;
    gap: 4px;
    border: 1px solid #001942;
    font-weight: 500;
    color: #fff;
    background: #001942;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* responsive */
  @media only screen and (max-width: 1080px) {
    .my-container {
      padding-left: 20px;
      padding-right: 20px;
    }

    .banner h1 {
      font-size: 26px;
    }

    .lft-rgt-row .left img {
      min-height: 260px;
    }

    .intro-row h2 {
      font-size: 26px;
    }

    .tabs-item button.tabs-question {
      font-size: 16px;
      font-weight: 400;
      padding: 12px;
    }

    img.minus,
    img.plus {
      width: 20px;
    }

    .lft-rgt-row {
      gap: 20px;
    }

    .btn-pri,
    .btn-sec {
      font-size: 16px;
      padding: 12px 16px;
    }

    .tabs-item {
      margin-top: 16px;
    }

    .portal-sec .content h5 {
      font-size: 20px;
    }

    .portal-sec .container {
      gap: 20px;
    }

    .portal-sec .divider .my-tour {
      flex-direction: column;
      align-items: start;
    }
  }

  @media only screen and (max-width: 767px) {
    .lft-rgt-row {
      flex-direction: column;
    }

    .lft-rgt-row .left,
    .lft-rgt-row .right {
      width: 100%;
    }

    .main .my-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .main .options p {
      font-size: 18px;
    }

    .date-row .date-box {
      display: flex;
      align-items: start;
      gap: 20px;
      flex-direction: column;
      margin-right: 20px;
    }

    .date-row {
      align-items: center;
    }

    .intro-row p br {
      display: none;
    }

    footer .my-row {
      flex-direction: column;
      gap: 16px;
    }

    footer .my-row .social {
      gap: 8px;
    }

    footer {
      padding: 20px 0;
    }

    .intro-row {
      margin: 20px 0;
    }

    .portal-sec .divider h6 {
      font-size: 16px;
    }

    .btn-pri.blue {
      font-size: 16px;
      font-weight: 400;

      padding: 12px;
    }

    .portal-sec .content h5 {
      font-size: 18px;
    }

    .content .tour-details h6 {
      font-size: 20px;
    }

    .portal-sec .container {
      flex-direction: column;
    }

    .portal-sec .tabs {
      width: 100%;
      max-width: 100%;
    }

    .portal-sec .content {
      width: 100%;
    }

    .portal-sec .tabs {
      display: flex;
      column-gap: 16px;
      flex-wrap: wrap;
    }

    .portal-sec .tab {
      width: 47%;
    }

    .portal-sec .tab {
      padding: 12px;
      font-weight: 400;
    }
    .content .slider .more-img {
      gap: 20px;
      overflow: scroll;
    }
    .lft-rgt-row video {
      height: auto;
    }
    .main .options {
      padding: 8px;
    }
    .main .my-row {
      gap: 16px;
    }
    .main .options {
      gap: 8px;
    }
    .main .options p {
      font-size: 16px;
      text-align: center;
    }
    .main .options span {
      padding: 8px;
    }
    .main .options span img {
      width: 20px;
    }
    .main {
      min-height: auto;
    }
    footer p {
      order: 1;
    }
    footer .social {
      order: 2;
      margin-right: auto !important;
    }
    footer .back-to-top {
      order: 3;
    }
    .btn-pri svg,
    .btn-sec svg {
      width: 18px;
    }
    .btn-pri,
    .btn-sec {
      padding: 8px 12px;
    }
    .date-row {
      align-items: start;
    }
    .popup-content {
      padding: 10px;
    }
    .popup-content #map_contend iframe {
      width: 100%;
      height: 460px;
    }
  }

  @media only screen and (max-width: 560px) {
    .itinerary .name-box {
      flex-direction: column;
      gap: 20px;
    }
    .line-sec ul li {
      display: flex;
      flex-direction: column;
    }
    .line-sec ul li .first::after {
      display: none;
    }
    .line-sec ul li div.first {
      width: 100%;
      border: 0;
      border-bottom: 1px solid #001942;
      border-top: 1px solid #001942;
    }
    .line-sec ul li div.second {
      width: 100%;
    }
    .date-row {
      flex-direction: column;
      gap: 16px;
    }
    .date-row .date {
      font-size: 14px;
    }
  }

  input#swal2-checkbox {
    display: none !important;
}