@charset "UTF-8";

@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
	--f-main: "Montserrat", sans-serif;
	--txt: black;
	--mcolor: black;
	/* --s-color: #f3ec18;
	--blue: #3ac0d1; */
  --purple: #5d308c;
  --yellow: #faef1f;
}
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: var(--mcolor);
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.57em;
  font-size: 16px;
  font-weight: 500;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 80px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: Montserrat, Verdana, Arial, sans-serif;
  vertical-align:baseline;
  font-size:62.5%;
}

/* Instructors Section Styles */
.instructors-section {
  padding: 60px 0 0;
  background-color: #fff;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--purple);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--yellow);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 15px;
}

.instructor-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.instructor-image {
  width: 100%;
  height: 375px;
  overflow: hidden;
  position: relative;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.instructor-card:hover .instructor-image img {
  transform: scale(1.05);
}

.instructor-info {
  padding: 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f7f7f7;
}

.instructor-info h3 {
	text-align:center;
  font-size: 1.4rem;
  color: var(--purple);
  margin-bottom: 5px;
  font-weight: 600;
}

.instructor-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.instructor-info ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.instructor-info ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: bold;
}
.subtitle{
	margin: 0 0 10px;
    font-style: italic;
    font-size: 14px;
    text-align: center;
	}
	.cust04_des, .cust05_subtitle{font-style: italic;font-weight:bold;
    font-size: 20px;}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
	.sp_taj{text-align:justify;}
  .instructors-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .instructor-image {
    height: 440px;
  }
  
  .instructor-image img {
    object-position: center 20%;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .instructor-info {
    padding: 20px 15px;
  }
  
  .instructor-info h3 {
    font-size: 1.3rem;
  }
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 1367px;
	max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
.container-sm{
  /* width: 1100px; */
	max-width: 100%;
  padding: 0 15px;
  margin: 0 10%;
  position: relative;
}
.box06 .container-sm{
  display: flex;
  flex-direction: row;
  /* gap: 25px; */
}
.b06_boxleft .special{
  font-weight: 600;
  margin-bottom: 7px;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
	display: none;
}
.df{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.ai-c{
  align-items: center;
}
.jc-c{
  justify-content: center;
}
.txt-c{
  text-align: center;
}
.header{
  background: #fff;
}
.h_main .container{
  flex-wrap: nowrap;
}
.logo {
  margin: 20px 0;
  position: relative;
  z-index: 3;
  width: 15%;
}
.gnavi {
  display: flex;
}
.gnavi>li:not(:last-child) {
margin-right: 10px;
}
.gnavi li {
  padding: 10px 0 9px;
}
.gnavi>li>a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 16px 12px 17px;
  font-size: 13px;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  z-index: 0;
}
.gnavi>li:last-child>a{
  padding-right: 0;
}
.gnavi>li>a:before, .gnavi>li>a::after{
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--purple);
  height: 2px;
  width: 0;
  transition: all .3s ease;
}
.gnavi>li>a:before{
  right: 0;
  bottom: 5px;
}
.gnavi>li>a::after{
  right: 43px;
  bottom: 0;
}
.gnavi>li.active>a, .gnavi>li:hover>a{
  color: var(--purple);
}
.gnavi>li.active>a:before, .gnavi>li:hover>a:before{
  width: 50px;
}
.gnavi>li.active>a:after, .gnavi>li:hover>a:after{
  width: 20px;
}
#header.fixed  {
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 50;
-webkit-animation: header-fixed 0.6s;
-moz-animation: header-fixed 0.6s;
-ms-animation: header-fixed 0.6s;
animation: header-fixed 0.6s;
}
@keyframes header-fixed {
0% {
  opacity: 0.5;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
}
@-webkit-keyframes header-fixed {
0% {
  opacity: 0.5;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
}
@-moz-keyframes header-fixed {
0% {
  opacity: 0.5;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}
}

.content_top{
  background-color: white;
  /* padding: 20px 0 0; */
}
.style_h2{
  font-family: "Montserrat", Verdana, Arial, sans-serif;
  font-size: 28px;
  color: var(--purple);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 40px;
}
.style_h2_02{
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 40px;
}
.style_h3{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.cm-btn01 a{
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  color: #fff;
  background: var(--yellow);
  color: var(--purple);
  font-weight: bold;
  font-size: 14px;
  padding: 11px 21px 11px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
}
.cm-btn02 a{
  text-decoration: none;
  display: inline-flex;
  color: var(--purple);
  border: 2px solid var(--purple);
  font-size: 14px;
  padding: 9px 49px 9px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.cm-btn02 a::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 100%;
  right: 22px;
  top: 0;
  background: url(../images/icon_arr.svg) no-repeat center center;
}
.cm-btn01 a:hover, .cm-btn02 a {
  transform: translateY(-5px);
}
.box01{
  padding: 50px 0 50px;
  background: url(../images/bg4.png) no-repeat top center/cover;
  position: relative;
  overflow: hidden; 
}
.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Đen mờ 50% */
  z-index: 1;
}

/* Đảm bảo nội dung nằm trên lớp phủ */
.box01 .container {
  position: relative;
  z-index: 2;
}

.box01.sign{
  background: #fff !important;
}
.b01_txt{
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 0 0px;
}
.b01_txt p{
  color: #fff;
  font-size: 16px;
}
.b01_content{
  position: relative;
  /* border-left: 6px solid rgba(255, 255, 255, 0.1); */
  /* border-right: 6px solid rgba(255, 255, 255, 0.1); */
  padding: 0 10px;
}
.b01_top{
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}
.b01_top, .b01_bottom{
  position: absolute;
  left: 0;
  right: 0;
}
.b01_top{
  top: -11px;
}
.b01_bottom{
  bottom: -17px;
}
.box01 .style_h2{
  display: inline-flex;
  font-weight: 800;
  padding: 0 175px;
  margin-bottom: 0;
}
.box01 .cm-btn01{
  position: relative;
  z-index: 0;
}
/* .box01 .b01_top::before, .box01 .b01_top::after, .box01 .cm-btn01::before, .box01 .cm-btn01::after{
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 3px);
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
}
.box01 .b01_top::before, .box01 .b01_top::after{
  width: calc(100% - 918px);
}
.box01 .b01_top::before{
  left: 0;
}
.box01 .b01_top::after{
  right: 0;
}
.box01 .cm-btn01::before, .box01 .cm-btn01::after{
  width: calc(50% - 204px);
}
.box01 .cm-btn01::before{
  left: 0;
}
.box01 .cm-btn01::after{
  right: 0;
} */
.box02{
  /* padding: 50px 0 53px; */
  position: relative;
}
.box02.info{
  background: url(../images/bgall.png) no-repeat top center/cover;
}
/* .box02::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 130px;
  height: 3px;
  background: #fff;
} */
.box02.info .b02_item .style_h2,.box02.info .b02_item .txt{
  color: #fff;
}
.b02_img{
  width: 24%;
  height: 150px;
  max-height: 300px;
  max-width: 300px;
  /* padding-top: 30px; */
  text-align: right;
  /* padding-right: 20px; */
}
.b02_img img{
  width: auto;
  height: 100%;
}
#gallery2 {
  /* max-height: 150px; */
  overflow: hidden;
  /* margin: 0 -10px; */
}

/* Đảm bảo container không gây tràn */
#gallery2 .item {
  /* padding: 0 8px; */
  box-sizing: border-box;
}

/* Ảnh sẽ co giãn đúng kích thước khung */
#gallery2 .item img {
  height: 170px; /* hoặc chiều cao cố định bạn muốn */
  object-fit: cover;
}

#gallery2 .slick-track .item img{
  width: 100% !important;
}

#gallery2 .slick-list, #gallery2 .slick-track, #gallery2 .slick-track .item img{
  height: 100% !important;
}


.b02_content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding-right: 60px;
}
.b02_content.grid{
  /* margin-top: 20px; */
} 
.box02.customImg,.box02.customImg .container-sm,.box02.customImg .container-sm #gallery2{
  height: 250px;
}
.custom01{
  padding: 40px 0;
}
.b02_item_ttl{
  color: white;
  font-size: 23px;
  margin-bottom: 10px;
  display: inline-flex;
  font-weight: 800;
}
.box02 .txt{
  width: calc(100%/4-10px);
  font-size: 16px;
  margin-bottom: 0;
}
.box03{
  padding: 84px 0 30px;
}
.box03 .style_h2{
  margin-bottom: 60px;
}
.box03 .container-sm{
  max-width: 860px;
}
.box03 .cm-btn01 a{
  padding: 16px 25px 16px;
}
.b03_video{
  position: relative;
}
.b03_video .cm-btn01{
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.cm-gallery a{
  /* margin: 15px; */
}

.box04{
  padding: 80px 0 80px;
  background: url(../images/bg-box4.jpg) no-repeat top center/cover;
}
.box04 .cm-btn02{
  margin-top: 41px;
  text-transform: uppercase;
}
.b04_boxleft{
  width: 50%;
  padding-right: 50px;
}
.b04_boxleft p{
  margin-bottom: 1.8em;
}
.b04_boxright{
  width: 50%;
}
.box05{
  padding: 81px 0 74px;
  background: url(../images/bg-box5.jpg) no-repeat top center/cover;
}
.box05 .style_h2 {
  margin-bottom: 23px;
}
.b05_txt{
  max-width: 502px;
  margin: 0 auto 20px;
  font-style: italic;
}
.b05_txt p:last-child{
  margin-bottom: 0;
}
.b05_content{
  justify-content: flex-start;
  margin-left: -20px;
  margin-right: -20px;
}
.b05_item{
  width: calc(33.33% - 40px);
  margin: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.b05_item .txt{
  padding: 20px;
  font-size: 13px;
  line-height: 1.6em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
}
.box05 .cm-btn02{
  margin-top: 26px;
}
.box05 .cm-btn02 a{
  font-size: 16px;
}
.box06{
  padding: 60px 0 ;
  background-color: #fff;
  color: rgb(115, 116, 125);
}
.box06 .style_h2{
  margin-bottom: 24px;
}
.b06_boxleft{
  width: 50%;
}
.b06_boxright{
  padding:0  50px;
  width: 50%;
}
.box06.special{
  background: url(../images/bgall.png) no-repeat top center/cover;
}
.box06.special2{
  background: url(../images/bgall.png) no-repeat top center/cover;
}
.box06.special3 .container-sm{
  flex-direction: row-reverse;
}

.box06 .container-sm .b06_boxleft .special{
  color: var(--purple) !important;
}
.box06.special2 .container-sm .b06_boxleft .special{
  color: white !important;
}
.box06.special3 .b06_boxright{
  /* padding-left: 0; */
}
/* text nội dung chữ trắng */
.box06.special .b06_boxright{
  /* padding-left: 0; */
  /* padding-right: 50px; */
}
.box06.special .b06_boxleft .style_h2, .box06.special .b06_boxleft .cm_list li, .box06.special2 .b06_boxleft .style_h2, .box06.special2 .b06_boxleft .cm_list li, .box06.special2 .b06_boxleft p{
  color: #fff;
}
.b06_txt h3{
  font-size: 19px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 15px;line-height: 1.4;


}
.order_right{
	order: 2;
}

.b06_txt p, .b06_boxleft p, .b06_boxright p{margin-bottom: 10px !important;}
.cm_list li{
  
  /* padding-left: 41px; */
  margin-bottom: 6px;
  /* background: url(../images/icon_check.svg) no-repeat left top 3px; */
}

.box06.special .cm_list li{
  background: none;
  padding-left: 0;
}

.box06.special2 .cm_list li{
  padding-left: 41px;

  background: url(../images/icon_check_W.png) no-repeat left center /15px;
}

.cm_list_special{
  display: flex;
  flex-direction: column;
  /* gap: 40px; */
}

.cm_list_special .item{
  /* height: 180px; */
  display: flex;
  align-items: center;
}

.cm_list_special .item img{
  width: 70px;
  /* height: 50px; */
  min-width: 70px;
  padding-right: 10px;
}

.cm_list_special .item h3, .cm_list h3{
  font-size: 20px;
  color: #000;
  font-weight: 600;
  line-height: 30px;
  margin: 15px 0;
}
.cm_list_special .item p{
  /* padding-top: 15px; */
  margin: 0;
  font-size: 16px;
  color: rgb(115, 116, 125);
}

.special .container-sm{
  display: flex;
  flex-direction: row-reverse !important;
}


.box07{
  padding: 78px 0 80px;
  background: url(../images/bg-box7.jpg) no-repeat top center/cover;
}
.b07_boxleft{
  width: 50%;
  padding: 47px 53px 43px;
  position: relative;
  z-index: 0;
}
.box07 .style_h3{
  text-align: center;
}
.bg_line_top, .bg_line_bottom{
  content: '';
  position: absolute;
  z-index: -1;
  left: -4px;
  right: -4px;
  height: 17px;
  background: url(../images/form_bg01.png) left top repeat-x;
}
.bg_line_top{
  top: 0;
}
.bg_line_bottom{
  bottom: 0;
}
.b07_boxleft::before, .b07_boxleft::after{
  content: '';
  position: absolute;
  z-index: -1;
  width: 23px;
  top: 21px;
  bottom: 28px;
  background: url(../images/form_bg02.png) top 9px left repeat-y;
}
.b07_boxleft::before{
  left: -4px;
}
.b07_boxleft::after{
  right: -4px;
}
.b07_boxright{
  width: calc(50% - 60px);
  padding-top: 18px;
}
.box07 .cm-btn02{
  margin-top: 47px;
}
.box07 .cm-btn02 a{
  font-size: 16px;
}
.dk_form .name{
  width: 100%;
  margin-bottom: 21px;
}
.dk_form .tel, .dk_form .email{
  width: calc(50% - 10px);
}
.dk_form .tel{
  margin-right: 20px;
}
.dk_form input{
  border: none;
  outline: none;
  border-radius: 0;
  background: #fff;
  padding: 14px 22px;
  font-style: italic;
  border-radius: 6px;
  font-size: 13px;
}
.dk_form .btn_dk{
  text-decoration: none;
  margin: 15px auto 0;
  color: var(--purple);
  border: 2px solid var(--purple);
  background: transparent;
  padding: 8px 54px 9px 27px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.dk_form .btn_dk::after{
  content: '';
  position: absolute;
  width: 18px;
  height: 100%;
  right: 22px;
  top: 0;
  background: url(../images/icon_arr.svg) no-repeat center center;
}
.box08{
  background: url(../images/bgall.png) no-repeat top center/cover;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.box08 .style_h2{
  margin-bottom: 23px;
  color: var(--yellow);
}
.box08 .cm-btn02{
  margin-top: 26px;
}
/* Nội dung */
#gallery p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 960px;
  margin: 0 auto 20px;
  font-style: italic;
  font-weight: 300;
}

/* Mũi tên */
.slick-prev,
.slick-next {
  width: 40px; /* tùy chỉnh kích thước ảnh */
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  font-size: 0; /* ẩn chữ */
  background-color: transparent;
}

.slick-prev {
  background-image: url('../images/arrow.png'); /* đường dẫn ảnh mũi tên trái */
  left: -60px; /* tùy chỉnh khoảng cách nếu cần */
  transform: rotate(180deg);
}

.slick-next {
  background-image: url('../images/arrow.png'); /* css xoay ảnh */
  right: -60px;
}


.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}

/* Dot */
.slick-dots {
  /* margin-: 20px; */
  padding-bottom: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.slick-dots li button:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 15px;
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--yellow);
}
.slick-dots li button {
  font-size: 0; /* ẩn số */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 6px;
  padding: 0;
}

.slick-dots li.slick-active button {
  background: var(--yellow);
  opacity: 1;
}


.box09{
  background: url(../images/bg-box9.jpg) no-repeat top center/cover;
}
.b09_boxleft{
  width: calc(100% - 410px);
  max-width: 634px;
  padding-top: 80px;
}
.b09_boxleft .b_txt p{
  margin-bottom: 2.2em;
}
.b09_boxright{
  padding-right: 4.5%;
}
.footer {
  background: var(--purple);
  color: var(--yellow);
  padding: 40px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.f_logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--yellow);
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.f_gnavi {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f_gnavi li {
  padding: 8px 0;
  color: #fff;
  line-height: 1.5;
}

.f_gnavi li a {
  color: #fff;
  text-decoration: underline;
}

.f_gnavi li strong {
  display: inline-block;
  min-width: 110px;
  font-weight: bold;
  color: var(--yellow);
}
.cust06_gallery{
	columns: 2;
    column-gap: 10px;
	
}
.cust06_gallery img{cursor: pointer;display: block;transition:all 0.5s;
    max-width: 100%;
    margin-bottom: 10px;}
.cust06_gallery img:hover{
	opacity:0.8
}
.cust06_sub{font-style: italic; font-size: 14px; margin-top: 25px;}

@media screen and (max-width: 1000px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 17px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 80px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container, .container-sm {
    padding: 0 3%;
	width: 100%;
    margin: 0 0;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    display: none;
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--purple);
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 40px;
    height: 49px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .gnavi>li.active>a, .gnavi>li:hover>a{
    color: inherit;
  }
  .h_main .container{
    flex-wrap: wrap;
    display: block;
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
  }
  .logo{
    width: 202px;
  }
.h_main {
  background: #000;
  width: 100%;
  position: fixed;
  height: calc(100% - 63px);
  top: 63px;
  border-top: 1px solid #444;
  left: 0;
  padding: 0;
  overflow: auto;
  display: none;
}
#gnavi {
  display: block;
}
.gnavi {
  display: block;
}
.gnavi>li {
    margin-right: 0!important;
    padding: 0;
  }
.gnavi>li>a {
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid #444;
  border-radius: 0;
  background: none !important;
}
.gnavi>li.over>a {
  padding-right: 50px;
}
.gnavi>li>a:before, .gnavi>li>a::after{
  content: none;
}
.content_top{
  padding: 0 0 0;
}
.style_h2, .style_h3{
  line-height: 1.5em;
}
.box01 .style_h2{
  padding: 0 30px;
}
.b01_top {
  top: -18px;
}
.box01 .b01_top::before, .box01 .b01_top::after{
  content: none;
}
.b01_top {
  top: 0;
  position: relative;
  margin-bottom: 0;
}
.b01_content{
  padding: 0;
  /* border-top: 6px solid rgba(255, 255, 255, 0.1); */
  /* border-bottom: 6px solid rgba(255, 255, 255, 0.1); */
}
.b01_txt{
  padding-top: 14px;
}
.style_h2{
  margin-bottom: 30px;
}
.box01 {
  padding: 40px 0;
}
.box01 .style_h2 {
  padding: 0;
  font-size: 20px;
}
.b01_bottom {
  bottom: -22px;
}
.box01 .cm-btn01::before, .box01 .cm-btn01::after{
  content: none;
}
.b02_content{
  width: 100%;
  padding-right: 0;
  max-width: none;
}
.b02_img {
  width: 100%;
  max-width: 80px;
  margin: 0 auto 10px;
  padding-top: 0;
  text-align: center;
  padding-right: 0;
}
.box02 .style_h2{
  text-align: center;
}
.box02 {
  /* padding: 65px 0 23px; */
}
.box02.custom01 .container-sm .b02_content{
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.box02.customImg, .box02.customImg .container-sm, .box02.customImg .container-sm #gallery2 {
  height: auto;
}
.b03_video .cm-btn01{
width: 100%;
}
.box03 {
padding: 50px 0 20px;
}
.box03 .style_h2 {
margin-bottom: 30px;
}
.b03_video iframe{
  height: 64vw;
  max-height: 470px;
}
.box04{
padding: 50px 0;
}
.b04_boxleft{
width: 100%;
padding-right: 0;
}
.b04_boxright{
width: 100%;
order: -1;
}
.b04_boxright img{
width: 100%;
height: 54vw;
object-fit: cover;
max-height: 400px;
object-position: center 25%;
margin-bottom: 30px;
}
.box05{
padding: 50px 0 50px;
}
.b05_content{
margin-left: -10px;
margin-right: -10px;
}
.b05_item {
width: calc(50% - 21px);
margin: 10px;
border-radius: 2vw;
}
.b05_item  img{
width: 100%;
}
.box06{
padding: 50px 0 50px;
}

.box06 .container-sm, .box06.special .container-sm, .box06.special2 .container-sm, .box06.special3 .container-sm{
  flex-direction: column !important;
}
/* các thẻ con width 100% */
.box06 .container-sm .b06_boxleft, .box06 .container-sm .b06_boxright{
  width: 100% !important;
  max-width: none !important;
}
.box06 .container-sm .b06_boxleft{
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 20px; 
}
.box06 .container-sm .b06_boxright{
  padding-right: 0 !important;
  padding-left: 0 !important;
}
/* cả những box6 kèm special, special2, special3 */
.
.box07{
  padding: 50px 0 50px;
}
.b07_boxleft{
  width: 100%;
  padding: 35px;
}
.b07_boxright{
  width: 100%;
}
.b07_boxright{
  padding-top: 40px;
}
.box07 .cm-btn02 {
  margin-top: 35px;
}
.cm-gallery a{
  /* margin: 8px; */
}
/* css cho arrow và dots của gallery */
.box08{
  padding: 50px 0 50px;
}
.b09_boxleft{
  width: 100%;
  padding-top: 50px;
  max-width: none;
}
.b09_boxright{
  width: 100%;
  padding-right: 0;
  max-width: 341px;
  margin: 0 auto;
}
.footer{
  padding: 40px 0;
}
.f_logo{
  margin-bottom: 10px;
}
.f_gnavi{
  flex-wrap: wrap;
}
.f_gnavi li {
  padding: 5px 0;
}
.f_gnavi>li>a{
  padding: 0 8px;
}

}





.form-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.form-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--purple);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  z-index: 1000;
}

.form-container h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-container p {
  font-size: 14px;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 17px;
}

.form-container input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 19px;
}
.form-container input::placeholder {
  color: #bdbdbd;
  font-size: 15px;
}

.form-container button {
  background: #f44;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.cm-btn01.txt-c {
  text-align: center;
  margin-top: 30px;
}

.cm-btn01.txt-c a {
  background: #f44;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.instructors-section{padding: 40px 0 0;}
	.sp_custom04{padding-bottom:0;}
.logo{margin: 0;width: 165px;}
  
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .f_logo {
    text-align: left;
  }

}
@media screen and (max-width: 600px) {
	
	.b06_txt p, .b06_boxleft p, .b06_boxright p,.box06.special .b06_boxleft .cm_list li{font-size:14px;}
	.cm_list_special .item h3{font-size: 16px;    line-height: 1.4;}
	.cm_list_special .item p{font-size: 14px;}
	#gallery p{text-align: justify;}
	.instructors-grid{padding:0;}
	.box06 .style_h2,.box08 .style_h2 {
    margin-bottom: 24px;
    font-size: 20px;
}
  .b02_content{flex-wrap: wrap;gap: 45px;}
  .b02_item{width: 100%;text-align: center;}
.b06_boxleft, .b06_boxright{
  width: 100%;
}
.b06_boxright {
  padding: 40px 0 0 ;
}
.order_right {
  order: unset;
}
.cust04_des, .cust05_subtitle{font-size:16px !important;}
.b06_txt h3{font-size: 16px;}
.cust06_sub{font-size: 12px !important;}

.form-container h2{font-size: 19px;}
.form-container{padding: 20px;}
.form-container input{padding: 5px 10px;}
.form-container label{font-size: 15px;}
.form-container input::placeholder {font-size: 13px;}
}