.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #121212;
  z-index: 99;
}
.header-body {
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}
.app.active .header {
  background: #196b93;
}
.header-left {
  width: 260px;
  display: flex;
}
.header-right {
  width: calc(100% - 280px);
}

.sidebar {
  position: fixed;
  top: 80px;
  left: auto;
  width: 255px;
  height: calc(100vh - 80px);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px 0;
}

.main {
  position: relative;
  width: calc(100% - 280px);
  left: 280px;
  top: 80px;
  z-index: 1;
  padding-right: 20px;
  background: transparent;
  transition: .3s;
}

.main.active{
  width: calc(100% - 75px);
  left: 75px;
  background: var(--body-color);
}

.background-shadow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
}

.background-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 130%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(22, 27, 189, 0.2) 0%,
    rgb(22 27 189 / 8%) 30%,
    rgba(255, 0, 0, 0) 70%
  );
  transform: translate(-100px, -170px);
}
.app.active .background-shadow::before,
.background-shadow.active::before{
  background: transparent;
}

.sidebar-top {
  margin-left: 2px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}
.logo > img {
  width: 60px;
}

.logo > span {
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 4px;
  font-size: 14px;
  color: #fff;
}

.navigation {
}
.menu-nav {
}
.menu-nav-link {
  display: flex;
  height: 56px;
  padding: 18px 20px 18px 22px;
  align-items: center;
  transition: 0.3s;
  position: relative;
  left: 0;
  opacity: 0.9;
  text-transform: capitalize;
  font-size: 15px;
}

.menu-nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: var(--primary-color);
  box-shadow: 2px 0 10px var(--primary-color);
  display: none;
}
.menu-nav-link.active::before {
  display: block;
}

.menu-nav-link.active {
  font-weight: 700;
  color: var(--primary-color);
}
.menu-nav-link:hover {
  color: var(--primary-color);
}

.menu-nav-link > ion-icon {
  margin-right: 12px;
  font-size: 20px;
}
.menu-nav-link.active > i {
}

.arrow-nav{
  position: absolute;
  right: 0;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  opacity: 0.6;
  display: inline-flex;
  transition: .3s;
}
/* 
.menu-nav-link:hover .arrow-nav{
  transform: translateY(-50%) rotate(0deg) scale(1);
} */

.sidebar-bottom {
  margin-left: 2px;
}

.sidebar-nav {
  position: relative;
}

.dropdown-sidebar{
  position: relative;
}

.sub-sidebar{
  padding-left: 34px;
  /* display: none; */
}

.sub-sidebar > li > a{
  font-size: 15px;
  font-weight: 300;
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: .25s;
}
.sub-sidebar > li > a:hover{
  color: var(--primary-color);
}

.sub-sidebar > li > a > i{
  font-size: 4px;
  margin-right: 9px;
}

.light {
  position: fixed;
  z-index: 99;
  right: 0px;
  bottom: 20px;
  width: 60px;
  height: 30px;
  transform: rotate(-90deg);
  background-color: #000;
  border-radius: 8px;
  margin-left: 30px;
}

.app.active .light{
  background-color: rgba(0, 0, 0, 0.1);
}

.light input {
  appearance: none;
}
.light span {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: #333;
  border: 4px solid #000;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
}

.app.active .light span{
  background-color: rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(0, 0, 0, 0.05);
}

.light input:checked ~ span {
  left: 30px;
}

.light span ion-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  transition: 0.5s;
}
.app.active .light span ion-icon{
  color: rgba(0, 0, 0, 0.8);
}

.light input:checked ~ span ion-icon {
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 7px #fff)
    drop-shadow(0 0 10px #fff);
}

.social > ul {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 22px;
  gap: 10px;
}
.social > ul > li > a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.hide-menu-nav{
  /* transition: .3s; */
}

.hide-menu-nav.hide{
  opacity: 0;
  /* display: none; */
}

.app.active .social > ul > li > a{
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.action-layout{
  transition: .3s;
}
.action-layout.active{
  left: -5px;
  top: 0;
}

.social-link {
  position: relative;
  transition: 0.3s;
}
.social-link.hide{
  opacity: 0;
}
.action-layout .social-link.hide-navbar{
  transition: none;
  display: inline-flex !important;
  opacity: 1;
  font-size: 14px;
}
.action-layout.active .social-link.hide-navbar{
  transform: rotate(180deg);
}

.social-link:hover {
  background: var(--primary-color);
  color: #fff;
}

/* *********Header************ */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-search {
  width: 450px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
}
.app.active .form-search {
  background: #fff;
  border: 1px solid #f1f1f1;
}

.form-search > input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 0 22px;
  font-weight: 300;
  letter-spacing: 1px;
}
.form-search > input::placeholder {
  width: 100%;
  font-size: 13px;
  color: rgba(var(--text-color), 0.7);
}

.form-search > button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.app.active .form-search > button {
  color: #000;
}

.group-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.notice {
  position: relative;
  cursor: pointer;
}

.notice-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
}
.app.active .notice-icon {
  transition: .25s;
  background: #fff;
}
.app.active .notice-icon:hover,.app.active .history:hover {
  color: var(--primary-color);
}

.notice:hover .notice-icon ion-icon {
  transition: 0.3s;
}


.notice:hover .notice-icon ion-icon {
  filter: drop-shadow(0 0 4px rgba(211, 132, 13, 0.6))
    drop-shadow(0 0 6px rgba(211, 132, 13, 0.6))
    drop-shadow(0 0 8px rgba(211, 132, 13, 0.6));
}

.notice::before{
  content: "";
  position: absolute;
  bottom: -22px;
  right: 0;
  width: 80px;
  height: 30px;
}

.notice-body {
  position: absolute;
  right: 0;
  top: 60px;
  width: 300px;
  background: var(--body-color-2);
  box-shadow: 0 1px 2px #a2a2a2;
  display: none;
}

.notice:hover .notice-body{
  animation: dropdown .3s ease-in;
  display: block;
}


.notice-head{
  text-align: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-link{
  display: flex;
  padding: 8px 20px;
  gap: 10px;
}

.notice-item-content h5{
  font-weight: 500;
  font-size: 16px;
}
.notice-item-content p{
  font-weight: 300;
  font-size: 14px;
}

.blank-social{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  transition: .5s;
}
.blank-social:hover i{
  color: var(--primary-color);
  transition: .5s;
}
.blank-social:hover i{
  filter: drop-shadow(0 0 4px rgba(211, 132, 13, 0.2))
    drop-shadow(0 0 6px rgba(211, 132, 13, 0.2))
    drop-shadow(0 0 8px rgba(211, 132, 13, 0.2));
}

.history{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 20px;
}
.app.active .history {
  transition: .25s;
  background: #fff;
}

.history:hover ion-icon {
  transition: 0.5s;
}

.history:hover ion-icon {
  filter: drop-shadow(0 0 4px rgba(211, 132, 13, 0.6))
    drop-shadow(0 0 6px rgba(211, 132, 13, 0.6))
    drop-shadow(0 0 8px rgba(211, 132, 13, 0.6));
}

.notice-icon:hover,.history:hover {
  color: var(--primary-color);
}

.app.active .user{
  color: #fff;
}

.user-login {
  margin-left: 6px;
}


.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
}

.user-info::after{
  content: "";
  position: absolute;
  bottom: -22px;
  width: 100%;
  height: 30px;
  background: transparent;
}

.avatar{
  display: inline-flex;
}

.avatar img{
  width: 38px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
}

.avatar ion-icon{
  font-size: 20px;
  transform: translateX(6px);
}

.link-signin, .link-signup{
  font-size: 14px;
  position: relative;
  z-index: 9;
  transition: .25s;
}
.link-signin:hover, .link-signup:hover{
  color: var(--primary-color);
}

.link-signin{
  margin-right: 4px;
}

.link-signin::after{
  content: "/";
  position: absolute;
  top: 0;
  right: -11px;
  color: var(--text-color);
}

.username{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.name-status{
  display: flex;
  flex-direction: column;
}

.name-status .name{
  max-width: 110px;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;;
}

.name-status > span{
  display: flex;
  align-items: center;
  gap: 4px;
}

.name-status > span > i{
  font-size: 6px;
  transform: translateY(1px);
  color: rgb(35, 243, 139);
}

.name-status .two{
  font-weight: 300;
  font-size: 11px;
}

.app.active .username{
  color: #fff;
}

.username span{
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.user__dropdown{
  position: absolute;
  top: 58px;
  right: 0;
  min-width: 180px;
  background-color: var(--body-color-2);
  border-radius: 6px;
  padding: 4px 0;
  box-shadow: 2px 2px 2px #24244c;
  display: none;
  z-index: 99;
}

.app.active  .user__dropdown{
  box-shadow: 0px 1px 2px #7a7a7a;
}

.user-info:hover .user__dropdown{
  animation: dropdown .3s ease-in;
  display: block;
}

@keyframes dropdown {
  0%{
    opacity: 0;
    transform: translateY(10px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

.user__dropdown::before{
  content: "";
  position: absolute;
  top: -18px;
  right: 20px;
  border-style: solid;
  border-width: 10px 16px;
  border-color: transparent transparent var(--body-color-2) transparent;
}

.user__dropdown > li:last-child{
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.app.active .user__dropdown > li:last-child{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.user__dropdown > li > a{
  display: block;
  padding: 10px 20px;
  transition: .25s;
  font-size: 14px;
}

.user__dropdown > li > a:hover{
  color: var(--primary-color);
}

.user__dropdown > li > a > i{
  margin-right: 6px;
}


/* Home wrapper */

.home-wrapper {
  padding: 30px 0;
}

.banner-content {
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.banner-left {
  width: 75%;
  position: relative;
}

.tag-course {
  position: absolute;
  top: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-course > li > span {
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
  padding: 4px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

.app.active .tag-course > li > span {
  background: rgba(255, 255, 255, 0.4);
}

.people-course {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.people-course > li {
  margin-left: -10px;
}

.people-course > li > img {
  width: 34px;
  border-radius: 50%;
}

.people-course > li:last-child {
  margin-left: 10px;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}
.people-course > li:last-child > span {
  display: inline-block;
  padding: 4px 15px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}

.app.active .people-course > li:last-child > span {
  background: rgba(255, 255, 255, 0.4);
}

.banner-right {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.banner-left > img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.banner-right-top {
  position: relative;
  height: 100%;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -1px 1px 2px rgb(0 0 0 / 30%);
}

.bg-color-1 {
  position: absolute;
  top: -100px;
  left: -50px;
  z-index: 2;
  display: inline-block;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgba(22, 27, 189, 0.3) 10%,
    rgba(22, 27, 189, 0.3) 20%,
    rgba(22, 27, 189, 0) 70%
  );
}

.bg-color-2 {
  position: absolute;
  top: 0px;
  right: -100px;
  z-index: 2;
  display: inline-block;
  width: 220px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgb(189 110 22 / 60%) 0%,
    rgb(189 89 22 / 50%) 20%,
    rgba(22, 27, 189, 0) 70%
  );
}

.bg-color-3 {
  position: absolute;
  bottom: -20px;
  left: -90px;
  z-index: 2;
  display: inline-block;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    ellipse,
    rgba(189, 22, 22, 0.4) 0%,
    rgba(189, 22, 22, 0.3) 20%,
    rgba(22, 27, 189, 0) 70%
  );
}

.banner-info {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px 30px 15px;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}
.app.active .banner-info{
  background: rgba(255, 255, 255, 0.6);
}

.banner-course {
}
.banner-course-name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.banner-course-desc {
  font-size: 14px;
  word-wrap: break-word;
  line-height: 1.8;
  font-weight: 300;
}
.banner-course-price {
  font-style: italic;
  margin-bottom: 16px;
  font-size: 14px;
}
.banner-course-price > i {
  margin-right: 6px;
}

.banner-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-btn {
  padding: 8px 26px;
  background: #ffcd00;
  color: #000;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: .5s;
  position: relative;
}
.banner-btn span{
  background: linear-gradient(to right, #ffffff, #8d8d8d);
  background-clip: text;
  -webkit-background-clip: text; /* For Safari/WebKit browsers */
  color: transparent;
}
.banner-btn i{
  margin-right: 4px;
}

.banner-btn:hover{
  background-color: #fff;
  color: #000;
  box-shadow: 4px 4px #ffcd00;
}

.banner::after{

}


.add-history {
  font-size: 20px;
  letter-spacing: 2px;
}

.banner-right-bottom {
  height: 105px;
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.suggest-course {
  width: 50%;
  height: 100%;
}
.suggest-course > img {
  height: 100%;
  /* object-fit: cover; */
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(255, 138, 9, 0.5);
}

.banner-introduce{
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.banner-intro-text{
  width: 50%;
}
.banner-tech-svg{
  width: 50%;
  transform: translateY(-40px);
}

.intro-logo{
  display: flex;
  align-items: center;
}

.intro-logo > img{
  width: 80px;
  font-weight: 600;
}

.introduce-text{
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 10px;
  border-bottom: 1px solid #fff;
}

.banner__name{
  font-size: 22px;
  font-weight: 500;
  color: #FFC107;
  margin: 16px 0;
  position: relative;
}

.banner__text{
  margin-top: 20px;
  font-weight: 300;
  padding-right: 50px;
  text-align: justify;
  line-height: 1.8;
  font-size: 18px;
}

.banner-details{
  position: relative;
  max-height: 100%;
  width: 100%;
}
.banner-details::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.banner-details > img{
  height: 350px;
  object-fit: cover;
}

.breadcrumbs{
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs > li{
  position: relative;
  margin: 0 4px;
}
.breadcrumbs > li > ion-icon{
  position: absolute;
  top: 50%;
  right: -10px;
  font-size: 12px;
  transform: translateY(-50%);
}

.breadcrumbs > li a{
  padding: 0 10px;
  font-weight: 300;
  font-size: 14px;
}


/* Course */

.title-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
.title-wrapper {
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
}

.app.active .title-wrapper{
  color: #196b93;
}

.title-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 2px;
  background: var(--primary-color);
  display: none;
}

.btn-view-more {
  font-size: 14px;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}

.app.active .btn-view-more{
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-view-more:hover {
  color: var(--primary-color);
  padding-right: 40px;
}

.app.active .btn-view-more:hover{
  border: 1px solid transparent;
}

.btn-view-more::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.5s;
  z-index: 2;
}
.btn-view-more:hover::before {
  width: 10px;
}

.btn-view-more > span {
  position: absolute;
  background-color: var(--primary-color);
  display: block;
  transition: all 0.15s linear;
}

.btn-view-more > span:nth-child(1) {
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
}
.btn-view-more > span:nth-child(2) {
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  transition-delay: 0.15s;
}
.btn-view-more > span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  transition-delay: 0.3s;
}
.btn-view-more > span:nth-child(4) {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  transition-delay: 0.45s;
}

.btn-view-more:hover > span:nth-child(odd) {
  width: 100%;
}
.btn-view-more:hover > span:nth-child(even) {
  height: 100%;
}

.course-body {
  display: flex;
  gap: 15px;
}
.course-first {
  width: 40%;
}
.course-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
    position: relative;
}

.tag-sale{
  position: absolute;
  top: -16px;
  right: -5px;
  z-index: 1;
  width: 100px;
}

.course-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.course-image > img {
  border-radius: 16px;
  transition: 1s;
}

.course-image:hover > img {
  transform: scale(1.1);
}


/* .course-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: .3s;
    opacity: 0;
}
.course-image:hover::after{
    opacity: 1;
} */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  transition: 0.5s;
  transition-delay: 0.2s;
  z-index: 2;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  opacity: 0;
}

.video-content .image:hover .play-icon {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.play-icon > i {
  transform: translateX(2px);
}

.learn-now{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  transition: 0.3s;
  transition-delay: 0.2s;
  z-index: 2;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 120px;
  background: var(--head-color-2);
  border-radius: 8px;
  opacity: 0;
}
.learn-now ion-icon{
  transform: rotate(-45deg);
  margin-left: 2px;
  transition: .3s;
}
.learn-now:hover ion-icon{
  transform: translate(4px,0px) rotate(0deg);
}


.course-image:hover .learn-now{
  opacity: 1;
  transform: translate(-50%, -50%);
}

.course-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.course-info-name {
  margin: 16px 0 10px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: .3s;
}
.course-info-name:hover{
  color: var(--primary-color);
}

.course-info-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}
.course-info-view {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}
.app.active .course-info-desc,
.app.active .course-info-view{
  color: rgba(0, 0, 0, 0.8);
}

.course-outstanding {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px; */
}

.has-scrollbar{
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x;
  padding-block-end: 40px;
  scroll-behavior:smooth;
}

.has-scrollbar::-webkit-scrollbar { height: 8px; }

.has-scrollbar::-webkit-scrollbar-button { width: calc(25% - 40px); }

.has-scrollbar::-webkit-scrollbar-track {
  outline: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background:rgba(255, 255, 255, 0.6);;
  border-radius: 50px;
}
.has-scrollbar::-webkit-scrollbar-thumb:hover {
  background:rgba(255, 255, 255, 0.8);;
  cursor: pointer;
}

.course-content{
  min-width: 22%;
  scroll-snap-align: start;
}

.wrapper-content {
  padding: 50px 0;
}

.subtitle-home {
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.work{
  padding-top: 50px;
}

.title-home {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 10px;
}

.why-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: 30px;
  gap: 10px;
}
.why-card {
  padding: 14px 10px 20px;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: inset 0 2px 5px 0 rgba(255, 255, 255, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.4s;
  overflow: hidden;
  z-index: 2;
}

.why-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}
.why-card:hover::before{
  animation: shine 1.5s;
}

@keyframes shine {
100% {
  left: 125%;
}
}

.why-card-img {
  padding: 0 30px;
}

.why-card-text {
  font-weight: 600;
  text-align: center;
}

.why-card-desc {
  text-align: center;
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}

.menu-nav {
  margin: 30px 0;
}

.menu-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.item-nav-action {
  display: inline-block;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 1);
  border-radius: 4px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.25s;
  cursor: pointer;
}

.app.active .item-nav-action{
  background: #f1f1f1;
}

.item-nav-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 16px;
  transform: translateX(-10px) translateY(-50%);
  background: var(--head-color-2);
  opacity: 0;
  transition: 0.5s;
}
.item-nav-action::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 16px;
  transform: translateX(10px) translateY(-50%);
  background: var(--head-color-2);
  opacity: 0;
  transition: 0.5s;
}

.item-nav-action.active,
.item-nav-action:hover {
  color: var(--primary-color);
}
/* .item-nav-action:hover::before,
.item-nav-action:hover::after,
.item-nav-action.active::before,
.item-nav-action.active::after {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}
.item-nav-action.active::before,
.item-nav-action.active::after {
  opacity: 1;
} */

.activity__image{
  width: 100%;
  height: 100%;
}
.activity__image > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video wrapper */

.video-wrapper {
  margin-top: 50px;
}

.video-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-content {
  display: flex;
  flex-direction: column;
  background: var(--body-color-2);
  padding-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.video-content .image {
  height: 200px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  position: relative;
}
.video-content .image img {
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.video-content .image:hover img {
  transform: scale(1.1);
}

.video-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 10px;
}

.video-info-name {
  margin: 10px 0;
  font-weight: 500;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  transition: 0.3s;
}
.video-info-name:hover {
  color: var(--primary-color);
}

.video-info-series {
  font-weight: 300;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.app.active .video-info-series{
  color: rgba(0, 0, 0, 0.8);
}
/* Course category */

.wrapper-home {
  /* background: var(--body-color); */
}

.course-category-content {
  background: var(--body-color-2);
  border-radius: 16px;
  padding-bottom: 15px;
}

.category-type-2, .category-type-3, .category-type-4, .category-type-5{
  display: none;
}

.app.active .course-category-content{
  background: #f1f1f1;
}

.course-category {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

/* .course-category.course-category-2 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
} */

.course-category .course-image {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.course-category .course-image > img {
  height: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.course-category .course-info {
  height: auto;
  margin: 0 10px;
  position: relative;
}


.wrapper-price{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 6px 16px 0;
}

.course-price{
  position: relative;
  border-radius: 20px;
}
.course-price.new{
  background: #f05123;
  font-size: 13px;
  padding: 6px 16px;
  font-weight: 600;
  color: yellow;
}
.course-price.old{
  font-size: 13px;
  text-decoration: line-through;
}


.partner-edu__item .text {
  text-align: center;
  font-weight: 300;
  margin-top: 10px;
}

.partner-edu__item img{
  padding: 0 20px;
}

.lectures{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.activities{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.work__item .title{
  margin: 6px 0;
  display: none;
}


/* Footer */


.footer{
  margin: 100px 0;
  padding: 50px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app.active .footer{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ft-logo{
  display: flex;
  align-items: center;
}
.ft-logo > img{
  width: 50px;
}

.ft-logo > span{
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 10px;
  font-family: "Noto Sans", sans-serif;
}

.ft-information{
  margin: 20px 0;
}

.ft-information > p{
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  font-size: 14px;
}

.ft-title{
  font-weight: 500;
  text-transform: uppercase;
  margin: 4px 0 20px;
  font-family: "Noto Sans", sans-serif;
}

.ft-content{
  margin: 10px 0;
}

.ft-content > p{
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  font-size: 14px;
}

.app.active .ft-information > p,
.app.active .ft-content > p{
  color: #000;
}


.profile-wrapper{
  display: inline-block;
  background: var(--body-color-2);
  min-width: 900px;
  padding: 20px 30px;
}

.subtitle-wrapper{
  font-weight: 300;
  font-size: 14px;
  margin-top: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.app.active .subtitle-wrapper{
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-content{
  margin: 30px 0;
  display: flex;
}

.profile-left{
  width: 70%;
  border-right:  1px solid rgba(255, 255, 255, 0.1);
}

.profile-group{
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile-group > label{
  min-width: 150px;
  font-weight: 300;
  text-align: end;
  font-size: 14px;
}

.profile-group > input{
  width: 250px;
  height: 40px;
  padding: 0 14px;
  font: 14px sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}


.group-radio{
  font-size: 14px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-radio > label{
  cursor: pointer;
}

.btn-profile{
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  transition: .25s;
}
.btn-profile:hover{
  background: rgb(255, 115, 0);
}

.profile-right{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-avatar{
  width: 100px;
}

.input-avatar{
  padding: 6px 20px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: capitalize;
  font-size: 14px;
  cursor: pointer;
}

.note-avatar{
  margin: 20px;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  opacity: 0.6;
}


.course-user{
  margin-top: 40px;
}

.banner{
  position: relative;
  margin: 30px 0 10px;
  max-height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .banner::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
} */

.banner > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-courses{
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
}

.banner-text{
  position: absolute;
  z-index: 2;
  text-align: center;
  /* background: rgba(0,0,0,0.6); */
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
}

.app.active .banner-text{
}

.title-banner{
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

.subtitle-banner{
  font-weight: 300;
}

.courses-nav {
  margin-bottom: 50px;
}

.courses-nav .item-nav-action{
  text-transform: capitalize;
}


/* Modal login/register */

.modal-login,
.modal-register{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--body-color);
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
}
.modal-login.show,
.modal-register.show{
  opacity: 1;
  visibility: visible;
}

@keyframes showModal {
  0%{opacity: 0;}
  100%{opacity: 1;}
}

.modal-title{
  position: absolute;
  display: inline-block;
  top: 40px;
  left: 40px;
  font-size: 22px;
  font-weight: 300;
  text-transform: capitalize;
}

.modal-close{
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 30px;
  display: inline-flex;
  transition: .3s;
  cursor: pointer;
}

.modal-close:hover{
  transform: rotate(180deg);
}

.modal-content{
  max-width: 400px;
  opacity: 0;
  transform: translateY(50px);
  transition: .4s;
  transition-delay: .2s;
}

.modal-register .modal-content{
  max-width: 600px;
}

.modal-content.show{
  opacity: 1;
  transform: translateY(0px);
}


.modal-content-title{
  text-align: center;
}

.modal-content-title span{
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 80px;
  display: inline-block;
}

.group-login{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.group-login input:focus + .input-text{
  transform: translateY(-28px);
}

.group-login input:not(:placeholder-shown) + .input-text{
  transform: translateY(-28px);
}

.group-login input:invalid{
  border-bottom: 1px solid #f00;
}


.group-flex{
  display: flex;
  gap: 30px;
}

.input-login{
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 44px;
  color: var(--text-color);
}

#input-checkbox{
  margin-right: 16px;
}
#input-checkbox[type=checkbox]{
  display: none;
}

.input-text{
  position: absolute;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: .3s;
  z-index: -1;
}

.submit-login{
  width: 100%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border: none;
  font-weight: 500;
}
.submit-login:hover{
  background: #fff;
}


.line-register{
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  position: relative;
}
.line-register > span{
  position: absolute;
  background: var(--body-color);
  padding: 0 20px;
  transform: translateY(-11px);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.group-label{
  color: rgba(255, 255, 255, 0.7);
}

.group-label > span{
  padding: 0px 10px 8px 30px;
  position: relative;
}

.group-label > span::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border: 1px solid #e4e6eb;
  background-color: #e4e6eb;
  transition: all .5s;
}

.group-label > span::after{
  content: '';
  position: absolute;
  border-left: 2px solid #e4e6eb;
  border-bottom: 2px solid #e4e6eb;
  width: 10px;
  height: 5px;
  left: 5px;
  top: 6px;
  transform: rotate(-45deg);
  border-top-color: transparent;
  border-right-color: transparent;
  transition: all .5s;
}

.group-label input:checked+span::before{
  background-color: #fff;
}
.group-label input:checked+span::after{
  border-color: #23232c;
}

.modal-remember{
  text-align: center;
  text-decoration: underline;
  margin-bottom: 30px;
}
.btn-remember{
  cursor: pointer;
}

.images-icon{
  width: 32px;
  margin-right: 14px;
}

.group-images-register{
  padding: 15px 10px;
  border: 1px solid  rgba(255, 255, 255, 0.2);
  cursor: pointer;
}



/* Category course */

.category-home{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px 20px;
}

.category-content{
  box-shadow: 0 0 20px #000;
}

.category-content-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 10px 10px 10px;
}

.content-text-left{
  width: 65%;
}
.content-text-right{
  width: 120px;
}

.content-text-left h5{
  font-size: 16px;
}
.content-text-left p{
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}

.btn-view-category{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  background: var(--head-color-2);
  font-size: 14px;
}
.btn-view-category i{
  margin-right: 4px;
}

.title-category{
  font-size: 30px;
  font-weight: 500;
  position: relative;
}

.subtitle-category{
  margin-top: 10px;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.8;
}

.head-note{
  position: relative;
  margin: 20px 0;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
  font-style: italic;
}
.head-note::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--primary-color);
}

.head-wrapper{
  font-size: 22px;
  margin-bottom: 20px;
}

.head-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.head-list > li{
  font-weight: 300;
  font-size: 14px;
}

.head-list > li > i{
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 6px;
}

.course-details{
  display: flex;
  gap: 30px;
}

.details-info{
  width: 30%;
}

.details-lessons{
  width: 70%;
  padding-left: 20px;
  text-align: justify;
}

.details-info-img{
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 20px #000;
}

.details-info-content{
  text-align: center;
  font-weight: 300;
}
.details-info-content .name{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.details-info-content .updated-at{
  font-size: 14px;
  opacity: 0.8;
}
.details-info-content .view{
  font-size: 14px;
  opacity: 0.8;
}

.register-learn{
  text-align: center;
  margin-top: 30px;
}

.btn-register-learn{
  background: #f05123;
  color: #fff;
  padding: 8px 30px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: .25s;
}

.btn-register-learn:hover{
  background: #ff653a;
}

.btn-register-learn ion-icon{
  font-size: 16px;
}

.details-lessons-title{
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid ;
}

.details-lessons-desc{
  line-height: 1.8;
  font-weight: 300;
}




.learning-path{
  margin: 60px 0 40px;
}

.learning-title{
  margin: 20px 0 40px;
  position: relative;
  padding-left: 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.learning-title::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: var(--primary-color);
}

.software-used{
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.software-used li{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-content{
  max-width: 700px;
}

.learn-item{
  margin-bottom: 20px;
  background: #111;
  box-shadow: 2px 0px 20px #292929;
}


.learn-item-head{
  background: #353535;
  border-radius: 6px;
  border: 1px solid #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.learn-content .learn-item-head{
  border-radius: 0;
}

.learn-item-desc{
  padding: 20px 20px 20px 50px;
  font-weight: 300;
  line-height: 2;
}

.learn-item-icon{
  color: #f9af4d;
  display: inline-block;
  margin-right: 6px;
}

.learn-item-name{
  font-weight: 500;
  display: inline-block;
}

.learn-item-number{
  display: inline-block;
  font-size: 14px;
}


.learn-item-list{
  width: 100%;
  display: none;
}

/* .learn-item-list.show{
  display: block;
} */

.learn-list-content{
  padding: 16px 20px 16px 40px;
  border-bottom: 1px solid #424242;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.learn-list-content > div{
}

.learn-list-content > div >i{
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: blue;
  border-radius: 50%;
  opacity: 0.5;
  font-size: 10px;
  margin-right: 6px;
}


/* about */

.about{
  margin: 80px 0 40px;
}

.about-container{
  display: flex;
}

.about-left, .about-right{
  width: 50%;
}

.about-left{
  padding-right: 20px;
  position: relative;
}

.about-video{
}



.about-video .image{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 95px;
  position: relative;
}
.play-video{
  position: absolute;
  font-size: 30px;
  width: 70px;
  height: 70px;
  background: #ffa151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 1s;
}
.play-video:hover{
  background: #fff;
  color: #ffa151;
  box-shadow: 2px 2px #ffa151;
}

.image-mini{
  position: absolute;
  top: 50px;
  right: 20px;
  width: 200px;
}

.image-mini > img{
  border: 8px solid  #fff;
}

.exp-box{
  position: absolute;
  bottom: -20px;
  right: 10px;
  display: inline-block;
}

.exp-content{
  background: #fff;
  border-radius: 4px;
  border-top-left-radius: 60px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.exp-icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 174, 139, 0.1);
}

.exp-icon img{
  width: 40px;
}

.exp-text{
  line-height: 1.2;
}
.exp-text h5{
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color);
} 
.exp-text span{
  font-size: 44px;
  font-weight: 600;
  color: var(--primary-color);
} 

.icon-dots{
  position: absolute;
  bottom: -80px;
  right: -50px;
  z-index: -1;
  animation: topBottom 8s linear infinite;
}

@keyframes topBottom {
  0%{transform: translateY(0px);}
  50%{transform: translateY(-20px);}
  100%{transform: translateY(0px);}
}

.about-right{
  padding-left: 40px;
}

.about-title{
  font-size: 40px;
  font-weight: 600;
}

.about-subtitle{
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--primary-color);
}

.about-desc{
  margin: 10px 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
}

.about-benefit{
  margin-top: 40px;
  display: grid;  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  font-size: 18px;
}

.about-benefit > li{
  line-height: 1.6;
}
.about-benefit > li > i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 50%;
}


.customer{
  margin-top: 50px;
}

.customer__right{
  padding-left: 30px;
}

.customer__title{
  font-weight: 600;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 14px;
}
.customer__title span{
  color: var(--primary-color);
  display: block;
}


.form-group{
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.form-group .icon{
  position: absolute;
  padding-left: 6px;
  color: #999;
}

.form-group input{
  color: #fff;
  height: 50px;
  padding-left: 30px;
  border: none;
  border-bottom: 1px solid #525252;
  display: block;
  width: 100%;
  background: transparent;
}

.form-group textarea{
  padding-left: 30px;
  border: none;
  border-bottom: 1px solid #525253;
  display: block;
  width: 100%;
  background: transparent;
}

.form-group input:focus,
.form-group textarea:focus{
  outline: none;
  border-bottom: 1px solid var(--primary-color);
}

.btn-submit{
  background: #1645ef;
  border: none;
  color: #fff;
  padding: 12px 40px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 20px;
  transition: .3s;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-submit::after{
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 1px;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  background-color: #072eb9;
  z-index: -1;
  transition: 0.5s ease;
}

.btn-submit:hover::after {
  --scale: 300;
}


.video-details{
  display: flex;
  gap: 25px;
}

.video-iframe{
  width: calc(100% - 300px);
}
.video-related{
  width: 300px;
}

.video-player{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-player iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-content .image {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-content .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.nav-video{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.nav-video-item{
  padding: 6px 12px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 14px;
}

.nav-video-item.active{
  background: var(--primary-color);
}

.video-recommend{
  position: relative;
  margin-top: 20px;
}

.recommend-main{
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.image-default{
  position: relative;
}

.image-default img{
  width: 140px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  transition: .6s;
}

.recommend-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recommend-content .title{
  font-size: 13px;
  font-weight: 500;
  transition: .3s;
   display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.recommend-main:hover .recommend-content .title{
  color: rgb(247, 228, 208);
}

.recommend-main:hover .image-default img{
  transform: scale(1.02);
}

.recommend-content .category{
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.recommend-content .view{
  display: flex;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
  flex-wrap: wrap;
}

.recommend-content .view i{
  font-size: 4px;
  margin: 0 8px;
}


.video-body{
  margin: 20px 0;
}

.video-body-title{
  margin: 20px 0 12px;
  font-weight: 500;
  font-size: 18px;
}

.flex-video-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-body-info{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
}

.video-body-info ion-icon{
  font-size: 6px;
}

.menu-video-action{
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-action-like{
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.menu-action-like span{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 20px 8px 12px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.menu-action-like span:first-child{
  padding: 8px 12px 8px 20px;
}

.menu-action-like span:first-child::after{
  position: absolute;
  content: '';
  top: 8px;
  right: -2px;
  height: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.menu-action-share{
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: .3s;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  gap: 8px;
}

.menu-action-like span:hover,
.menu-action-share:hover{
  background: #000;
}

.video-body-content{
  padding: 20px 0;
}

.video-body-content h5{
  margin-bottom: 20px;
}

.video-body-content p{
  font-weight: 300;
  text-align: justify;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.btn-show-content{
  padding: 10px 0;
  font-size: 14px;
  cursor: pointer;
}

.btn-hide-content{
  font-size: 14px;
  cursor: pointer;
  display: none;
}

.nav-comment{
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 300;
  font-size: 15px;
}

.sort-comment{
  font-size: 14px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}

.sort-dropdown{
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 160px;
  background: var(--body-color-2);
  border-radius: 8px;
  padding: 6px 0;
  display: none;
}
.sort-dropdown.active{
  display: block;
}

.sort-dropdown li span{
  display: block;
  padding: 10px 20px;
  cursor: pointer;
  transition: .3s;
}

.sort-dropdown li span:hover{
  background: #292929;
}

.group-input-comment{
  display: flex;
  align-items: center;
  gap: 20px;
}

.content-comment{
  margin-top: 30px;
}

.group-input-comment img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.group-input-comment input{
  width: 100%;
  background: transparent;
  height: 40px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.action-comment{
  text-align: end;
  margin: 10px 0 20px;
}

.btn-cancel-comment,
.btn-submit-comment{
  padding: 6px 20px;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  border-radius: 20px;
}

.btn-submit-comment{
  background: #525252;
  pointer-events: none;
  opacity: 0.8;
  margin-left: 6px;
}
.btn-submit-comment.active{
  background: var(--primary-color);
  opacity: 1;
}

.btn-cancel-comment:hover{
  background: #3c3c3c;
}

.group-comment{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.group-comment img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.info-comment{
  font-size: 14px;
}

.info-comment .content{
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.8);
}

.info-comment .name span{
  font-weight: 300;
  opacity: 0.6;
  margin-left: 10px;
}

.btn-reply-comment{
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  padding: 6px 0;
}

/* Contact */

.contact-main{
  margin-top: 30px;
}

.contact-main .group-input{
  margin-bottom: 30px;
}

.contact-text{
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.8;
  margin-right: 20px;
}


.contact-heading{
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.contact-head{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info{
  font-weight: 300;
  margin-right: 20px;
}

.contact-info span{
  color: var(--primary-color);
  margin-right: 4px;
}

.contact-info li{
  margin-bottom: 10px;
  line-height: 1.8;
}

.group-input label{
  margin-bottom: 8px;
}

.group-input input{
  height: 44px;
}
.group-input textarea{
  padding-top: 10px;
}
.group-input input, .group-input textarea{
  width: 100%;
  padding-left: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f1f1f1;
}

.group-input input::placeholder, .group-input textarea::placeholder{
  font-size: 14px;
}
.group-input input:focus, .group-input textarea:focus{
  outline: none;
}

.send-contact{
  border: none;
  padding: 8px 20px;
  background: var(--primary-color);
  color:#fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .3s;
}

.gg-map{
  padding: 30px;
}

.map-title{
  text-align: center;
  margin: 30px 0;
  font-size: 26px;
}

.contact-iframe iframe{
  width: 100%;
  height: 450px;
}

.map-note{
  text-align: center;
  font-style: italic;
  font-weight: 300;
  margin-top: 10px;
}

/* Lịch khai giảng */

.schedule-wrap{
  margin-top: 40px;
}

.schedule-header {
  padding: 5px 0;
  margin-bottom: 14px;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}

.schedule-header-item{
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

.schedule-item:nth-child(1) {
  flex-grow: 1;
}

.schedule-item:nth-child(2), .schedule-item:nth-child(5) {
  text-align: center;
  flex: 0 0 120px;
  max-width: 120px;
}

.schedule-item:nth-child(3), .schedule-item:nth-child(4) {
  text-align: center;
  flex: 0 0 160px;
  max-width: 160px;
}

.schedule-item p{
  margin-bottom: 0;
}

.schedule-body {
  max-height: 680px;
  overflow: hidden;
  overflow-y: auto;
  color: #000;
  padding-right: 6px;
}
.schedule-body::-webkit-scrollbar {
  width: 6px;
}

.schedule-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.schedule-body::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
}

.schedule-body::-webkit-scrollbar-thumb:hover {
  background: #888;
}

.schedule-body-item {
  display: flex;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.schedule-link{
  color: #000;
  transition: .3s;
  display: inline-block;
}
.schedule-link:hover{
  text-decoration: underline;
}

.highlight{
  color: red;
  font-weight: 500;
}

.sp{
  display: none;
}

.schedule-btn{
  padding: 12px 30px;
  color: #fff;
  border-radius: 9999px;
  background: #1645ef;
  font-weight: 500;
  font-size: 15px;
}

.class-caption{
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  max-width: 300px;
}

.agree-link{
  text-decoration: underline;
}

.button {
	cursor: pointer;
	-moz-appearance: none;
	-webkit-appearance: none;
	border:none;
	color: #000;
	background: #1645ef;
	border-radius: 9999px;
  min-width: 114px;
  height: 48px;
	padding: 0;
	font-family: inherit;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
    position: relative;
}

.button:focus,
.button--hover {
	outline: none;
	border-width: 1px;
	border-color: #000;
	color: #fff;
}

.button__filler {
	background: var(--primary-color);
	position: absolute;
	width: 150%;
	height: 200%;
	border-radius: 50%;
	top: -50%;
	left: -25%;
	transform: translate(0px, 75%);
  transition: .5s;
  z-index: 0;
}
.button:hover .button__filler{
	transform: translate(0px, 0);
}

.button__text{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.button__text-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  transition: .2s;
}

.button:hover .button__text-inner{
  color: #fff;
}


/* course registration form */

.wrap-form{
  margin: 40px 0;
}


/* Dropdown */
.dropdown{
  position: relative;
  width: 100%;
}

.grid-input-2 .dropdown{
  background: #fff;
}

.dropdown-select{
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 14px;
  color: var(--title-color);
}

.grid-input-2 .dropdown-select{
  padding: 8px 10px 8px 10px;
}

.dropdown-icon{
  padding: 0 6px;
  font-size: 20px;
  transform: translate(4px,-2px);
  transition: .3s;
}
.dropdown-icon:hover{
  opacity: 0.7;
}
.dropdown-icon.active{
  transform: translate(4px,-2px) rotate(180deg);
}

.dropdown-list{
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eaeaea;
  box-shadow: 0 0 60px rgba(6,30,98,.08);
  width: 100%;
  padding: 10px 20px;
  max-height: 250px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9;
}
.dropdown-list.active{
  opacity: 1;
  visibility: visible;
}

.dropdown-head{
  font-weight: 600;
  font-size: 15px;
  color: #000;
  padding: 6px 0 10px;
  position: relative;
  margin: -7px;
}
.dropdown-head i{
  font-size: 4px;
}

.dropdown-list-item{
  padding: 10px 0 10px 0;
  font-size: 14px;
  transition: .3s;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
  color: #000;
}
.dropdown-list-item:hover,.dropdown-list-item.active{
  color: var(--primary-color);
}
.dropdown-content .dropdown-list-item:last-child{
  border-bottom: none;
}

.group-control{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-head-title{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 17px;
}

.block-input{
  width: 100%;
  display: block;
}

.input-control{
  font-size: 14px;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 20px;
  border-radius: 4px;
  color: #fff;
}
.input-control:focus{
  border-color: #fff;
}

.input-control::-webkit-outer-spin-button,
.input-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.group-payment{
  font-weight: 300;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.group-area{
  margin-bottom: 30px;
}

.textarea-control{
  font-size: 14px;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 20px;
  border-radius: 4px;
  color: #fff;
}