:root {
  --color-blue: #20498E;
  --color-green: #189008;
  --color-red: #C71517;
  --color-pink: #C2007A;
  --color-dark-text: #2E383C;

  --map-background-color: white;
  --map-station-basic-width: 10px;
  --map-station-point-width: 19px;
  --map-line-color-yl: #fad53a;
  --map-line-color-pk: #D76886;
  --map-line-color-gr: #8cb63c;
  --map-line-color-gw: #417f7c;
  --map-line-color-gold: #a2892a;
  --map-line-color-white: #ffffff;
  --map-line-stroke-width: 9px
}

* {
  box-sizing: border-box;
  /* color: #030303; */
}

p {
  margin: 0 !important;
}

.lstfnd-container {
  width: 100%;
  height: 100%;
}

.main-con {
  max-width: 1180px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 12px 0 60px 0;
}

.main-con>.head {
  text-align: center;
  margin-top: 35px;
}

.main-con .head h1 {
  font-size: 26px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.main-con .head h1::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 100px;
  height: 4px;
  border-radius: 100px;
  background: var(--color-green);
}

.main {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  margin-top: 55px;
}

.main>.head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}

.main>.head h3:nth-child(2) {
  margin-top: 10px;
}
.content_ticket h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}
.main .head h3 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.main .head img {
  width: 140px;
  height: auto;
}

.main>.body>.title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 40px;
}

.main>.body>p {
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
  line-height: 25px;
  letter-spacing: normal;

}

.main>.body>a {
  color: #030303;
}

.box-sub-menu {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.box-sub-menu .sub-content-menu {
  background: #f6f6f6;
  border-radius: 6px;
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  cursor: pointer;
}

.box-sub-menu .sub-content-menu a {
  background: #f6f6f6;
  border-radius: 6px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  /* padding: 10px 0; */
}

.box-sub-menu .sub-content-menu.active {
  background: var(--color-green);
}

.box-sub-menu .sub-content-menu.active p {
  color: #FFF;
}

.box-sub-menu .sub-content-menu img {
  width: 13%;
  height: auto;
}

.sub-content {
  padding-top: 20px;
  display: grid;
}

.sub-content .header-title {
  text-align: center;
}

.sub-content .sub-hand {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: #2e383c;
}

.sub-content .details {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: #3f3f3f;
}

.content-img {
  text-align-last: center;
}

.sub-content {
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.sub-details {
  padding-top: 25px;
  color: #2e383c;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.118182px;
}

.sub-head {
  font-size: 24px;
  color: #030303;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.118182px;
}

.sub-content section {
  width: 100%;
  margin-bottom: 15px;
  background: #ffffff;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 20px;
}

.sub-content section label {
  width: 100%;
  height: auto;
}

.title-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.118182px;
  color: #2e383c;
}

.isactive .title-toggle {
  border-bottom: 1px solid #f4f4f4;
  padding-bottom: 15px;
}

.isactive .toggle-content {
  margin-top: 20px;

  position: relative;
}

.isactive .toggle-content p {
  position: relative;
  padding-left: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.118182px;
  color: #2e383c;
}

.isactive .toggle-content p:not(:first-child) {
  margin-top: 10px;
}

.isactive .toggle-content p::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  background-color: var(--color-pink);
}

.banner-homepage img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.btn-box.active {
  background: var(--color-pink);
  border-radius: 6px;
}

.btn-box {
  background: #f6f6f6;
  border-radius: 6px;
  cursor: pointer;
  text-align-last: center;
  padding: 10px 50px;
}

.btn-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.dl-btn {
  text-align: -webkit-center;
  margin: 20px;
}

.details {
  padding-top: 20px;
}

.sub-details-head {
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.118182px;
  color: #030303;
  margin-bottom: 10px;
}

.sub-details p {
  /* padding-left: 30px;
    padding-top: 12px; */
  font-size: 16px;
  font-weight: 200;

}

.sub-details ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.118182px;
  color: #2E383C;
}

.box-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.box-details .details {
  width: 70%;
}

.sub-details-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sub-details-text p {
  font-size: 16px;
  font-weight: 300;
}

.details table {
  border: 1px solid #F1F1F1;
  border-collapse: collapse;

}

.details table thead th {
  background: #D9D9D9;
  padding: 10px;
}

.details table tbody tr td {
  border: 1px solid #F1F1F1;
  padding: 10px;
  font-size: 14px;
  font-weight: 200;
}

.sub-details-contact {
  margin-top: -7px;
  margin-bottom: 10px;
}

.sub-details-contact p {
  font-size: 14px;
  font-weight: 200;
}

.sub-text h4 {
  font-weight: 400;
  font-size: 14px;
}

.sub-text p {
  font-weight: 200;
  font-size: 14px;
}

p.sub-tab {
  padding-left: 50px;
  margin-top: -12px;
}

.sub-details-text ol {
  padding-left: 20px;
  margin-top: -10px;
}

.sub-details-text ol li {
  font-size: 14px;
  font-weight: 200;
}

@media screen and (max-width: 768px) {

  /* .main-con
    {
        padding: 265px 15px 60px 15px;
    } */
  .box-sub-menu {
    display: flex;
    flex-direction: column;
  }
  .box-sub-menu .sub-content-menu {
    max-width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .main {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-top: 55px;
  }

  .main-con .head h1 {
    font-size: 22px;
  }

  .main {
    margin-top: 45px;
  }

  .main .head img {
    width: 115px;
  }

  .main .head h3 {
    font-size: 17px;
  }

  .main>.body>p,
  .main>.body>.title {
    font-size: 15px;
  }

  .main>.body>.title {
    margin-top: 35px;
  }

  /* .main-con {
    padding: 265px 15px 40px 15px;
  } */
}

@media (max-width: 1024px) {
  .content_ticket .container .menu-sub {
  border-bottom: none !important;
   }
}
.content_ticket .container .menu-sub {

  text-transform: uppercase;
  color: #fff;
  box-sizing: border-box;

  border-bottom: 1px solid #e5e5e5;
}

.content_ticket .container .menu-sub .sub-menu-item .bottom-color {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background: #189008;
}

.content_ticket .container .menu-sub .sub-menu-item {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  padding: 0;
}

.content_ticket .container .menu-sub li {
  position: relative;
  /* width: 100%; */
}

@media (max-width: 1024px) {


  .menu-sub .sub-menu-item {
     display: flex;
     flex-direction: column !important;
     gap: 8px !important;

 }
.content_ticket .container .menu-sub li {
     text-align: center;
     padding-bottom: 10px;
     border-bottom: 1px solid #e5e5e5;
     width: 100%;
     
 
 }
 .menu-sub .sub-menu-item .bottom-color {
     width: 50% !important;
     left: 50% !important;
     transform: translateX(-50%);
     bottom: 0px !important;
 }

}

@media (max-width: 767px) {
  .container .title_main {
    display: unset;
  }
}

@media (max-width: 768px) {
  .mFont {
    margin: 15px 0;
    text-align: center;
    float: initial;
}
}