:root {
  --f-title: 'HelvetIns', sans-serif;
  --white: #fff;
  --black: #000;
  --blue-8: #1D4D8D;
  --blue-3: #A3C0E7;
  --blue-2: #296DC7;
  --blue: #12315A;
  --pink: #FF4891;
  --text-5xl: 54px;
  --text-4xl: 45px;
  --text-3xl: 32px;
  --text-xl: 22px;
  --text-l: 20px;
  --text-2m: 18px;
}
@media (max-width: 991px) {
  :root {
    --text-5xl: 38px;
    --text-4xl: 35px;
    --text-3xl: 25px;
  }
}
@media (max-width: 767px) {
  :root {
    --text-5xl: 29px;
    --text-4xl: 27px;
    --text-3xl: 22px;
    --text-xl: 20px;
    --text-l: 18px;
    --text-2m: 16px;
  }
}
@font-face {
  font-family: 'HelvetIns';
  src: url("../fonts/UTM HelvetIns.ttf");
}
body{
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}
img{
  max-width: 100%;
  height: auto;
}
@media(min-width:575px){
  .block-575{
    display: none;
  }
}
@media(min-width:767px){
  .block-767{
    display: none !important;
  }
}
@media(min-width:991px){
  .block-991{
    display: none !important;
  }
}
@media(max-width:991px){
  .hidden-991{
    display: none !important;
  }
}
@media(max-width:767px){
  .hidden-767{
    display: none !important;
  }
}
@media(max-width:575px){
  .hidden-575{
    display: none;
  }
}
.pt90{ padding-top: 90px;}
.pb90{ padding-bottom: 90px;}
.mt40{margin-top: 40px;}
.mt30{margin-top: 30px;}
.mt20{margin-top: 20px;}
.mt10{margin-top: 10px;}
.mt8{margin-top: 8px;}
.mt4{margin-top: 4px;}
.text-pink{
  color: var(--pink);
}
.text-blue{
  color: var(--blue-2);
}
.text-link{
  text-decoration: underline;
}
@media(max-width:767px){
  .pt90{ padding-top: 60px;}
  .pb90{ padding-bottom: 60px;}
}
.btn-cm{
  width: 300px;
  max-width: 100%;
  text-align: center;
  padding: 20px 10px;
  border-radius: 8px;
  font-size:  var(--text-2m);
  color: #fff;
  display: inline-block;
  font-weight: 500;
}
.btn-blue{
  background: #5087D1;
}
.btn-orange{
  background: #F98B1D;
}
.btn-cm:hover{
  text-decoration: none;
  color: #fff;
}
.btn-blue:hover{
  background: #296DC7;  
}
.btn-orange:hover{
  background: #E97C00;
}
.btn-cm i{
  font-size: 14px;
  margin-left: 10px;
}
/*----- Banner -----*/
.banner img{
  width: 100%;
  display: block;
}

.banner:not(.slick-initialized) > div:not(:first-child){
  display: none;
}
/*----- control -----*/
.control {
  padding-top: 25px;
}
.control ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.control li a{
  font-size: var(--text-2m);
  font-weight: 500;
}
.control li:nth-child(2n){
  color: #C8CCD1;
  font-size: 16px;
  line-height: 1;  
}
@media(max-width:1400px){ 
  .control li a{
    font-size: 16px;
  }
}
@media(max-width:991px){  
	.control ul{
    justify-content: space-between;
	}
}
@media(max-width:991px){
  .control li a:after{
    content:'\f078' ;
    font-family: "Font Awesome 5 Free";
    margin-left: 9px;
    font-size: 13px;
    font-weight: bold;
  }
  .control{
    padding-top: 10px;
		justify-content: space-between;
  }
  .control ul{
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -8px;
    margin-right: -8px;
  }
  .control li{
    width: 33.333%;
    padding: 0px 8px;
  }
  .control li:nth-child(2n){
    display: none;
  }
  .control li a {
    width: 100%;
    display: block;
    padding: 8px 10px 7px 0;
    border-bottom: 1px solid #E3E3E3;
    position: relative;
    font-size: 16px;
  }
  .control li a:after{
    position: absolute;
    right: 0;
    font-size: 10px;
		top: 10px;
  }  
}
@media(max-width:767px){
  .control li{
    width: 50%;
  }  
  .control li a{
    font-size: 15px;
  }
}
@media(min-width:991px){
  .control a{
    position: relative;
     transition: color 0.3s ease;
  }
  .control a::after{
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 100%;
    height: 2px;
    background: #2f6edb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .control a:hover {
    color: #2f6edb;
    text-decoration: none;
  }
  .control a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/*----- End control -----*/
.title-wrap{
  text-align: center;
}
.title-big{
  font-family: var(--f-title);
  font-size: var(--text-4xl);
  color: #12315A;  
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 45px;
}
.title-big span:last-child{
  display: block;
  color: var(--blue-2);
  font-size: var(--text-3xl);
  margin-top: 15px;
  line-height: 1;
}
.title-big:after{
  content: '';
  width: 100%;
  max-width: 300px;
  height: 3px;
  display: block;
  margin: 15px auto 0 auto;
  background: #78A3DC;
}
@media(min-width:767px){
  .decs{
    text-align: center;
  }
}

#about .title-big{
  font-size: var(--text-5xl);
}
#about .decs .text-pink{
  font-size: var(--text-l);
}
#about .decs{
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.about-content > div:nth-child(2) img{
  width: 100%;
}
@media(min-width:767px){
  .about-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: -12px;
    margin-right: -12px;
  }
  .about-content > div{
    padding-left: 12px;
    padding-right: 12px;
  }
  .about-content > div:nth-child(1){
    width: 54.5%;
  }
  .about-content > div:nth-child(2){
    width: 45.5%;
  }
}
@media(max-width:767px){
  .about-content > div + div{
    margin-top: 20px;
  }
  .about-content > div:nth-child(1){
    padding-right: 0;
  }
  .about-content .mt8{
    margin-top: 4px;
  }
}
@media(max-width:500px){
  #about .title-big{
    font-size: 9.2vw;
  }
  #about .title-big-small{
    font-size: 7.5vw;
  }
  .title-big span:last-child{
    font-size: 6vw;
  }
  .title-big{
    font-size: 7.5vw;
  }  
}
/*----- ticket -----*/
.ticket-box{
  background: #E2ECFE;
}
.ticket-decs{
  color: var(--blue-8);  
  font-size: var(--text-2m);
  font-weight: 600;
}
.ticket-decs span{
  font-weight: 700;
  font-size: var(--text-xl);
  display: block;
}
.icon-off:before{
  content: '';
  display: inline-block;
  width: 98px;
  height: 98px;
  background: url("../img/icon-off.svg") no-repeat;
  background-size: 100%;
  max-width: 100%;
}
.ticket-title{
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.ticket-title h2{
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.icon-off{
  position: absolute;
  right: 3px;
  top: -47px;
}
@media(max-width:991px){
  .icon-off{
    left: 75%;
    top: -43px;
    width: 80px;
  }
  .ticket-decs span{
    font-size: 20px;
  }
  .ticket-decs{
    font-size: 16px;
  }
}
@media(max-width:767px){
  .icon-off {
    left: 72%;
    width: 70px;
  }
}
.ticket-tbl{
  width: 950px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border:1px solid var(--blue-3);
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
.ticket-tbl th,
.ticket-tbl td{  
  text-align: center;
  padding: 16px 8px;
  vertical-align: middle;
}
.ticket-tbl th{
  background: var(--blue-8);
  color: #fff;
  border-right: 1px solid var(--blue-3);
  font-weight: 600;
  vertical-align: middle;
}
.ticket-tbl td{
  border-top: 1px solid var(--blue-3);
  border-right: 1px solid var(--blue-3);
}
.ticket-tbl tr > td:last-child,
.ticket-tbl tr > th:last-child{
  border-right:none;
}
.ticket-tbl tr > th:last-child{
 background: #296DC7; 
}
.icon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.icon-tick {
  width: 24px;
  height: 24px;
  background: url("../img/icon-tick.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.ticket-tbl .text-pink,
.ticket-tbl tr > td:first-child{
  font-weight: 600;
}
@media(min-width:950px){
  .ticket-tbl tr{
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr;
  }  
}
@media(max-width:950px){
  .ticket-tbl{
    width: 100%;
    overflow: hidden;
    
  }
}
/*----- End ticket -----*/
/*----- Access -----*/
#access .decs{
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.steps-item{
  background: #F0F0F0;
  border-radius: 8px;
  padding: 22px;
}
.step-num{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  margin-bottom: 25px;
}
.step-num span{
  font-family: var(--f-title);
  font-size: var(--text-3xl);
  color: var(--blue-8);
}
.step-num:after{
  content: '';
  background: var(--blue-3);  
  flex: 1; 
  height: 1px;  
  margin-top: 6px;
}
.step-content,
.step-content td{
  border-collapse: collapse;
  padding: 4px 0;
}
.step-content tr td:nth-child(2){
  padding-left: 6px;
  color: #173E71;
  font-weight: 600;
}
.steps > div {
  position: relative;
}
.steps > div + div:before{
  content: '';
  width: 24px;
  height: 34px;
  background: url(../img/icon-next.svg) no-repeat;
  position: absolute;
  left: -31px;
  top: 32px;
}
@media(max-width:991px){
  .steps{
    grid-template-columns: 1fr;
  }
  .steps-item{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap:0 20px;
  }
  .step-num{
    width: 100%;
    margin-bottom: 20px;
  }
  .steps-item > div.mt20{
    margin-top: 0;
  }
  .steps-item .btn-cm{
    width: 230px;
    font-size: 16px;
    padding: 15px 10px;
  }
  .steps > div + div:before{
    left: calc(50% - 12px);
    top: -35px;
    transform: rotate(90deg);
  }
  .steps-item{
    padding: 20px;
  }
  .step-wrap{
    max-width: calc(100% - 250px);
  }  
}
@media(max-width:767px){
  .step-wrap{
    max-width: 100%;
  }
  .steps-item > div.mt20{
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .steps-item .btn-cm{
    width: 200px;
  }  
}
/* Modal */
.modal-dialog{
  width: 860px;
  max-width: calc(100% - 1rem);
}
.modal-title{
  color: #12315A;
  font-size: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-weight: 600;
}
.icon-info{
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../img/icon-info.svg") no-repeat;
  background-size: 100%;
      margin-right: 10px;
}
.modal-header{
  background: #ECF2FB;
  border-bottom: none;
  padding: 12px;
}
.stepmodal-title{
  font-size: var(--text-xl);
  text-align: center;
  margin-bottom: 20px;
  color: #235DA9;
  font-weight: 700;
}
.stepmodal-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 30px;
}
.stepmodal-content img{
  width: 100%;
}
.stepmodal-content p.mt4{
  font-size: 14px;
}
.img-wrap{
  position: relative;
}
.img-num{
  position: absolute;
  bottom:0;
  left: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #fff;
  background: #0047A6C9;
  font-weight: 700;
}
.stepmodal-content-name{
  font-weight: bold;
  margin: 12px 0 0 0;  
}
.modal-body{
  padding-bottom: 24px;
}
@media(max-width:991px){
  .modal-dialog{
    margin-top: 90px;
  }
}
@media(max-width:767px){
  .modal-title{
    justify-content: flex-start;
    font-size: 15px;
  }
  .stepmodal-title{
    font-size: 18px;
  }
  .stepmodal-content{
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 0;
  }
}
/*----- End Access -----*/
#building{
  background: #F7F7F7;
}
.content-gird-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.content-gird-3 h3{
  color: #12315A;
  font-weight: 700;
  font-size: var(--text-l);
  margin: 24px 0 12px 0;
}
.content-gird-3 img{
  width: 100%;
}
@media(max-width:767px){
  .content-gird-3{
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .content-gird-3 h3{
    margin-top: 20px;
  }
}
/*-- Video --*/
.moviebox {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 56.28%;
	height: 0;
	overflow: hidden;
}
.moviebox iframe{
  position: absolute;
  top: 0px; 
  right: 0px; 
  bottom: 0px; 
  left: 0px; 
  width: 100%; 
  height: 100%;
}
.video-placeholder {
  position: relative;
  cursor: pointer;
  width: 100%; 
/*  height: 303px; */
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.play-button img{
  width: 65px;
}
@media(max-width:767px){
  .play-button img{
    width: 53px;
  }
}
/*-- End Video--*/
/*----- Visit -----*/
.blue-box{
  background: #ECF2FB;
  padding: 32px 95px;
}
.visitor-title{
  font-family: var(--f-title);
  color: #173E71;
  font-size: var(--text-3xl);
  border-bottom: 1px solid #235DA9; 
  padding-bottom: 12px;
  text-align: center;
  margin-bottom: 32px;
}
.visitor-time {
  text-align: center;
}
.visitor-time > span{
  font-family: var(--f-title);
  font-size: var(--text-3xl);
  text-transform: uppercase;
}
.icon-time:before{
  content: '';
  display: inline-block;
  width: 32px;
  height: 37px;
  background: url(../img/icon-time.svg) no-repeat;
  background-size: 100%;
  max-width: 100%;
  vertical-align: middle;
  /* padding-top: 13px; */
  margin-right: 10px;
}
.visitor-time > p{
  font-weight: 500;
}
.visitor-time p span{
  font-size: 18px;
  font-weight: 700;
}
.visitor-title-small{
  color: #12315A;
  font-size: var(--text-xl);
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 700;
}
@media(max-width:991px){
  .blue-box{
    padding: 24px 80px;
  }
  .visitor-title{
    font-size: 27px;
  }
  .visitor-title-small{
    font-size: 20px;
  }
  .icon-time:before{
    width: 27px;
    height: 31px;
  }
}
@media(max-width:767px){
  .blue-box{
    padding: 24px 15px;
  }
  .visitor-title{
    margin-bottom: 24px;
  }
  .visitor-title-small{
    margin-top: 24px;
  }
  .visitor-time > span{
    font-size: 25px;
  }
  .visitor-title-small {
      font-size: 18px;
  }
}
/*----- End Visit -----*/

/*----- Bus accsess -----*/
#busaccess .title-big span{
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
#busaccess .title-big{
  font-size: 32px;
}
#busaccess{
  padding-top: 110px;
  padding-bottom: 200px;
}
@media(max-width:767px){
  #busaccess{
    padding-top: 70px;
    padding-bottom: 100px;
  }
  #busaccess .title-big span{
    font-size: 20px;
  }
  #busaccess .title-big{
    font-size: 32px;
  }
}
.bus__action a{
  background-color: #F98B1D !important;
  border-radius: 7px !important;
  padding: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  font-size: 18px;
}
.bus__action a:hover{
  background-color: #E97C00 !important;
}
.bus__action--body a,
.bus__action--footer a{
  height: auto !important;  
}
.bus{
  border:1px solid #DDE2E8;
  margin-bottom: 24px;
}
.bus__header{
  background-color: #F7F7F7 !important;
}
.bus__action--body{
  width: 178px !important;
}
.bus__price em{
  color: #CB0000 !important;
}
.bus__toggle a{
  font-size: 24px !important;
}
.bus__toggle{
  right: 15px !important;
}
@media(max-width:767px){
  .bus__action a{
    padding: 10px !important;
  }
}

.btn-close{
  padding: 10px; 
  width: 160px;
  background: #F0F0F0;
  color: #000;
  border:none;
  font-size: 16px;
  cursor: pointer;
}
.btn-close:hover{
  background: #C8CCD1;
  color: #000;
}
.title-small{
  color: var(--blue-2);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 30px;
}







