.banner {
  width: 100%;
  height: 44vw;
  position: relative;
  display: flex;
  align-items: center;
}

.banner .image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.banner .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}

.banner .image img {
  height: 100%;
  object-fit: cover;
}

.banner .bannerText {
  position: relative;
  z-index: 1;
  width: 56%;
}

.banner .bannerText h2,
.banner .bannerText p {
  color: #fff;
}

.btnGroup {
  display: flex;
  gap: 3vw;
  width: 100%;
}

.btnGroup .btn {
  padding: 0.6vw 1vw;
  width: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c7000b;
  font-size: 0.9375vw;
  color: #fff;
  border-radius: 0.3vw;
  line-height: 1;
  cursor: pointer;
  border: 0.15vw solid #c7000b;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
}

.btnGroup .btnWhite {
  background: #fff;
  color: #c7000b;
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
}

.btnGroup .btn:hover {
  /* background: #fff;
  color: #c7000b; */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.3);
}

.btnGroup .btnWhite:hover {
  /* background: #c7000b;
  color: #fff; */
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.3);
}

.pageNav {
  width: 100%;
  padding: 0.5vw;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 8;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.pageNav .navWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 2vw;
  align-items: center;
}

.pageNav .navWrap .brand {
  font-size: 1.14583vw;
  font-weight: 600;
}

.pageNav .navWrap .selection {
  display: flex;
  gap: 3vw;
}

.pageNav .navWrap .item {
  font-size: 0.9375vw;
  color: #727171;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
}

.pageNav .navWrap .selection .btn {
  padding: 0.3vw 1vw;
  border: 1px solid #c7000b;
  color: #c7000b;
  transition: all 0.3s ease;
}

.pageNav .navWrap .selection .btn:hover {
  background: #c7000b;
  color: #fff;
}

.pageNav .navWrap .item.active {
  color: #c7000b;
}

.calendarWrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}

.calendarWrap .filter {
  width: 15vw;
  position: relative;
}

.calendarWrap .filter h4.filText {
  position: relative;
  padding-left: 2vw;
}

.calendarWrap .filter h4.filText::before {
  content: "";
  position: absolute;
  width: 1.5vw;
  height: 1.5vw;
  background-image: url("/na/assets/images/academy/filter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0.4vw;
}

.calendarWrap .calendar {
  flex: 1;
}

:root {
  --el-font-size-extra-large: 2.5vw;
  --el-font-size-large: 1.6675vw;
  --el-font-size-medium: 1.45833vw;
  --el-font-size-base: 1.14583vw;
  --el-font-size-small: 0.9375vw;
  --el-font-size-extra-small: 0.85vw;
}

.el-calendar-table .el-calendar-day {
  font-size: 0.9375vw;
}
.el-tree-node__expand-icon,
.el-calendar__title,
.el-calendar-table thead th {
  font-size: 1.14583vw;
}

.el-button > span {
  font-size: 0.9375vw;
}

.el-button--small {
  padding: 1vw 1vw;
}

.el-tree-node {
  margin-bottom: 0.5vw;
}

.el-checkbox {
  --el-checkbox-input-height: 1vw;
  --el-checkbox-input-width: 1vw;
}

.el-tree-node__content > label.el-checkbox {
  margin-right: 0.5vw;
}

.el-checkbox__inner:after {
  height: 0.5vw;
  top: 0.15vw;
  left: 0.35vw;
}

.el-tree-node__content {
  margin-bottom: 1vw;
}

.replayGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1vw;
  row-gap: 2vw;
}

.replayGrid .item {
  padding: 1vw;
  border: 1px solid #ddd;
}

.replayGrid .item .avatar {
  width: 100%;
  height: 12vw;
}

.replayGrid .item .avatar img {
  height: 100%;
  object-fit: cover;
}

.replayGrid .item .text {
  padding-top: 1vw;
  height: 9vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.replayGrid .item .text h6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.replayGrid .item .text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.learmoreWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3vw;
}

.learmoreWrap .btn {
  padding: 0.6vw 2vw;
  background: #c7000b;
  font-size: 1.14583vw;
  color: #fff;
  border-radius: 0.3vw;
  border: 1px solid #c7000b;
  transition: all 0.3s ease;
  cursor: pointer;
}

.learmoreWrap .btn:hover {
  color: #c7000b;
  background: #fff;
}

.mr-container .btnBook {
  padding: 0.6vw 2vw;
  background: #fff;
  font-size: 0.9375vw;
  color: #c7000b;
  border-radius: 0.3vw;
  border: 1px solid #c7000b;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
}

.mr-container .btnBook:hover {
  background: #c7000b;
  color: #fff;
}

.flex-t1 {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pageNav {
    display: none;
  }

  .banner {
    height: 120vw;
  }

  .banner .bannerText {
    width: 100%;
  }

  .btnGroup {
    gap: 5vw;
  }

  .btnGroup .btn {
    padding: 3vw 4vw;
    width: 40vw;
    font-size: 3.8vw;
  }

  .calendarWrap .filter {
    width: 100%;
  }

  .calendarWrap .filter h4.filText {
    padding-left: 6vw;
  }

  .calendarWrap .filter h4.filText::before {
    width: 5vw;
    height: 5vw;
    top: 1.5vw;
  }

  :root {
    --el-font-size-extra-large: 8.333vw;
    --el-font-size-large: 6.4vw;
    --el-font-size-medium: 5.333vw;
    --el-font-size-base: 4.26667vw;
    --el-font-size-small: 3.8vw;
    --el-font-size-extra-small: 3.2vw;
  }

  .el-calendar-table .el-calendar-day {
    font-size: 3.8vw;
  }
  .el-tree-node__expand-icon,
  .el-calendar__title,
  .el-calendar-table thead th {
    font-size: 4.26667vw;
  }

  .el-button > span {
    font-size: 3.8vw;
  }

  .el-button--small {
    padding: 3vw 3vw;
  }

  .el-tree-node {
    margin-bottom: 2vw;
  }

  .el-calendar__header {
    flex-wrap: wrap;
    gap: 3vw;
    justify-content: center;
  }

  .el-checkbox {
    --el-checkbox-input-height: 4vw;
    --el-checkbox-input-width: 4vw;
  }

  .el-tree-node__content > label.el-checkbox {
    margin-right: 2vw;
  }

  .el-checkbox__inner:after {
    height: 2vw;
    top: 0.5vw;
    left: 1.5vw;
  }

  .el-tree-node__content {
    margin-bottom: 3vw;
  }

  .replayGrid {
    grid-template-columns: 1fr;
    column-gap: 3vw;
    row-gap: 5vw;
  }

  .replayGrid .item {
    padding: 5vw;
  }

  .replayGrid .item .avatar {
    height: 50vw;
  }

  .replayGrid .item .text {
    padding-top: 5vw;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .replayGrid .item .text h6,
  .replayGrid .item .text p.info {
    margin-bottom: 2vw;
  }

  .learmoreWrap {
    margin-top: 8vw;
  }

  .learmoreWrap .btn {
    padding: 2vw 5vw;
    font-size: 3.8vw;
    border-radius: 1vw;
  }

  .mr-container .btnBook {
    padding: 2vw 5vw;
    font-size: 3.85vw;
    border-radius: 1vw;
  }

  .flex-t1 {
    width: 100%;
  }

  .kvSwiper,
  .kvSwiper .swiper-wrapper,
  .kvSwiper .swiper-wrapper .swiper-slide {
    height: 100%;
  }
}
