.homeBanner {
  position: relative;
}
.homeBanner .list_banner .item_banner .img_banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.homeBanner .list_banner .item_banner .img_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeBanner .list_banner .item_banner .img_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20.15%), linear-gradient(180deg, rgba(0, 0, 0, 0) 60.14%, rgba(0, 0, 0, 0.32) 77.32%, rgba(0, 0, 0, 0.384) 84.44%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.homeBanner .list_banner .item_banner .content {
  position: absolute;
  bottom: 200px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}
.homeBanner .list_banner .item_banner .content .title {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.384px;
  text-transform: uppercase;
}
.homeBanner .img_cloud {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.homeBanner .img_cloud img {
  width: 100%;
  height: 100%;
}
.homeBanner .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeBanner .arrow .--arrow {
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.homeBanner .arrow .--arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.homeBanner .arrow .--arrow:hover {
  color: var(--color-white);
}
.homeBanner .arrow .--arrow:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1439px) {
  .homeBanner .list_banner .item_banner .content .title {
    font-size: 20px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeBanner .list_banner .item_banner .img_banner {
    height: 400px;
  }
  .homeBanner .list_banner .item_banner .content {
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: unset;
  }
}
@media (max-width: 767px) {
  .homeBanner .list_banner .item_banner .content {
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: unset;
  }
  .homeBanner .list_banner .item_banner .content .title {
    font-size: 16px;
  }
  .homeBanner .list_banner .item_banner .img_banner {
    height: 400px;
  }
  .homeBanner .arrow {
    width: -moz-max-content;
    width: max-content;
    gap: 12px;
    top: unset;
    bottom: 36px;
    transform: translateX(-50%);
  }
  .homeBanner .arrow .--arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
  }
}

.homeEvent {
  padding: 120px 0;
  position: relative;
}
.homeEvent .p-left-section {
  position: relative;
  z-index: 2;
}
.homeEvent .--top {
  position: relative;
}
.homeEvent .--top .container_frame {
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.homeEvent .--top .desc {
  line-height: 1.71;
  width: 30%;
}
.homeEvent .list_event {
  position: relative;
  margin-bottom: 52px;
}
.homeEvent .list_event .item_event {
  position: relative;
  width: 28vw;
  margin: 0 16px;
}
.homeEvent .list_event .item_event::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.16%, rgba(0, 0, 0, 0.54) 75.39%, rgba(0, 0, 0, 0.792) 84.56%, rgba(0, 0, 0, 0.9) 100%);
}
.homeEvent .list_event .item_event .img_event {
  aspect-ratio: 400/510;
  border-radius: 30px;
  overflow: hidden;
}
.homeEvent .list_event .item_event .content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
}
.homeEvent .list_event .item_event .content .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.homeEvent .list_event .item_event .content .title:hover {
  color: var(--color-secondary);
}
.homeEvent .list_event .item_event .content .date_time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.homeEvent .list_event .item_event .content .date_time i {
  font-size: 16px;
  color: var(--color-secondary);
}
.homeEvent .list_event .item_event .tag {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
}
.homeEvent .list_event .item_event .tag.present {
  background: var(--color-primary);
}
.homeEvent .list_event .item_event .tag.coming {
  background: var(--color-secondary);
}
.homeEvent .list_event .item_event .tag.ended {
  background: var(--color-grey);
  color: var(--color-black);
}
.homeEvent .--bottom {
  position: relative;
}
.homeEvent .--bottom .container_frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeEvent .--bottom .container_frame .arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.homeEvent .--bottom .container_frame .arrow .--arrow {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 0.55px solid rgb(216, 216, 216);
  background: var(--color-white);
  z-index: 2;
}
.homeEvent .--bottom .container_frame .arrow .--arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.homeEvent .--bottom .container_frame .arrow .--arrow:hover {
  color: var(--color-white);
}
.homeEvent .--bottom .container_frame .arrow .--arrow:hover svg path {
  fill: var(--color-white);
}
.homeEvent .--bottom .container_frame .arrow .--arrow:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.homeEvent .pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
@media (max-width: 1439px) {
  .homeEvent {
    padding: 80px 0;
  }
  .homeEvent .list_event .item_event .content .title {
    font-size: 18px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeEvent {
    padding: 60px 0;
  }
  .homeEvent .list_event .item_event {
    width: 40vw;
  }
}
@media (max-width: 767px) {
  .homeEvent {
    padding: 40px 0;
  }
  .homeEvent .--top .container_frame {
    flex-flow: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .homeEvent .--top .container_frame .desc {
    width: 100%;
    text-align: center;
  }
  .homeEvent .list_event {
    margin-bottom: 24px;
  }
  .homeEvent .list_event .item_event {
    width: 80vw;
  }
  .homeEvent .list_event .item_event .content .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .homeEvent .--bottom .container_frame {
    justify-content: center;
  }
  .homeEvent .--bottom .container_frame .arrow .--arrow {
    width: 44px;
    height: 44px;
  }
}

.homeMap {
  padding: 120px 0;
  background: var(--color-grey);
  position: relative;
}
.homeMap .container_frame {
  position: relative;
  z-index: 2;
}
.homeMap .img_leaf_group {
  position: absolute;
  left: -10%;
  top: 7%;
  width: 28%;
  height: auto;
  pointer-events: none;
}
.homeMap .img_leaf_right {
  position: absolute;
  right: 0;
  top: 11%;
  width: 11%;
  height: auto;
  pointer-events: none;
}
.homeMap .segTitle {
  text-align: center;
  margin-bottom: 16px;
}
.homeMap .desc_map {
  text-align: center;
  margin: 0 auto 52px;
  width: 50%;
  line-height: 1.71;
}
@media (max-width: 1439px) {
  .homeMap {
    padding: 80px 0;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeMap {
    padding: 60px 0;
  }
  .homeMap .desc_map {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .homeMap {
    padding: 40px 0;
  }
  .homeMap .segTitle {
    margin-bottom: 12px;
  }
  .homeMap .desc_map {
    margin-bottom: 24px;
    width: 100%;
  }
}

.homeNews {
  padding: 120px 0;
  position: relative;
}
.homeNews .container_frame {
  position: relative;
  z-index: 2;
}
.homeNews .img_lantern_right {
  position: absolute;
  right: 0;
  top: 4%;
  width: 10%;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(30px -6px 34px rgba(0, 0, 0, 0.15));
}
.homeNews .img_lantern_left {
  position: absolute;
  left: -4%;
  top: -8%;
  width: 14%;
  height: auto;
  pointer-events: none;
  filter: blur(10px);
}
.homeNews .pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: auto;
  pointer-events: none;
}
.homeNews .img_leaf_group_news {
  position: absolute;
  left: -5%;
  bottom: -8%;
  width: 22%;
  height: auto;
  pointer-events: none;
}
.homeNews .segTitle {
  margin-bottom: 52px;
}
.homeNews .slick-track {
  display: flex;
}
.homeNews .list_news {
  margin-bottom: 52px;
}
.homeNews .list_news .item_news {
  margin: 0 20px;
}
.homeNews .--bottom .container_frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeNews .--bottom .container_frame .arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.homeNews .--bottom .container_frame .arrow .--arrow {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 0.55px solid rgb(216, 216, 216);
  background: var(--color-white);
  z-index: 2;
}
.homeNews .--bottom .container_frame .arrow .--arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.homeNews .--bottom .container_frame .arrow .--arrow:hover {
  color: var(--color-white);
}
.homeNews .--bottom .container_frame .arrow .--arrow:hover svg path {
  fill: var(--color-white);
}
.homeNews .--bottom .container_frame .arrow .--arrow:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.homeNews .--bottom .container_frame .btn_view_all {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 16px;
  cursor: pointer;
}
.homeNews .--bottom .container_frame .btn_view_all:hover .name::after {
  width: 100%;
}
.homeNews .--bottom .container_frame .btn_view_all .name {
  position: relative;
}
.homeNews .--bottom .container_frame .btn_view_all .name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1439px) {
  .homeNews {
    padding: 80px 0;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeNews {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .homeNews {
    padding: 40px 0;
  }
  .homeNews .segTitle {
    margin-bottom: 24px;
    text-align: center;
  }
  .homeNews .list_news {
    margin-bottom: 24px;
  }
  .homeNews .list_news .item_news {
    width: 80vw;
    margin: 0 10px;
  }
}

.homeLibrary {
  background: var(--color-grey);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.homeLibrary .--top .container_frame {
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.homeLibrary .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
}
.homeLibrary .nav-tabs .nav-link {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border-radius: 50px;
  height: 46px;
  justify-content: center;
  border: 1px solid rgb(220, 220, 220);
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.homeLibrary .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.homeLibrary .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.homeLibrary .list_img {
  margin-bottom: 52px;
}
.homeLibrary .list_img .item_img {
  width: 55vw;
  margin: 0 22px;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 758/500;
}
.homeLibrary .btn_view_all {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeLibrary {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .homeLibrary {
    padding: 40px 0;
  }
  .homeLibrary .--top .container_frame {
    flex-flow: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
  }
  .homeLibrary .--top .container_frame .nav-tabs {
    justify-content: center;
    flex-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  .homeLibrary .--top .container_frame .nav-tabs .nav-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: unset;
    background: transparent;
    color: var(--color-black);
    border: none;
    position: relative;
  }
  .homeLibrary .--top .container_frame .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--color-black);
  }
  .homeLibrary .--top .container_frame .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
  }
  .homeLibrary .list_img {
    margin-bottom: 24px;
  }
  .homeLibrary .list_img .item_img {
    width: 60vw;
    margin: 0 10px;
  }
}

.homeGift {
  padding-top: 120px;
  position: relative;
  z-index: 10;
}
.homeGift .tab-content {
  position: relative;
  z-index: 2;
}
.homeGift .img_lantern {
  position: absolute;
  right: -4%;
  top: 0;
  width: 14%;
  height: auto;
  pointer-events: none;
  transform: rotate(4deg);
  filter: drop-shadow(30px -6px 34px rgba(0, 0, 0, 0.15));
}
.homeGift .img_lantern_1 {
  position: absolute;
  right: 16%;
  top: 2%;
  width: 9%;
  height: auto;
  pointer-events: none;
  transform: rotate(24deg);
  filter: drop-shadow(30px -6px 34px rgba(0, 0, 0, 0.15));
}
.homeGift .img_leaf_right {
  position: absolute;
  right: 19%;
  top: 17%;
  width: 15%;
  height: auto;
  pointer-events: none;
}
.homeGift .segTitle {
  margin-bottom: 52px;
}
.homeGift .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
  margin-bottom: 44px;
}
.homeGift .nav-tabs .nav-link {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border-radius: 50px;
  height: 46px;
  justify-content: center;
  border: 1px solid rgb(220, 220, 220);
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.homeGift .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.homeGift .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.homeGift .list_gift {
  margin-bottom: 52px;
}
.homeGift .list_gift .item_gift {
  position: relative;
  width: 25vw;
  margin: 0 16px;
  overflow: hidden;
}
.homeGift .list_gift .item_gift:hover .content {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.homeGift .list_gift .item_gift::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 30px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 63.16%, rgba(0, 0, 0, 0.54) 75.39%, rgba(0, 0, 0, 0.792) 84.56%, rgba(0, 0, 0, 0.9) 100%);
}
.homeGift .list_gift .item_gift .img_gift {
  aspect-ratio: 373/480;
  border-radius: 30px;
  overflow: hidden;
}
.homeGift .list_gift .item_gift .txt_gift {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 32px;
  z-index: 2;
}
.homeGift .list_gift .item_gift .txt_gift .name {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.homeGift .list_gift .item_gift .txt_gift .btn_detail {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}
.homeGift .list_gift .item_gift .txt_gift i {
  font-size: 20px;
  color: var(--color-secondary);
}
.homeGift .list_gift .item_gift .content {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 32px;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 30px;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  background-image: url("../images/Rectangle 2752.png");
  background-size: cover;
  background-position: center;
}
.homeGift .list_gift .item_gift .content::before {
  background-color: rgba(21, 21, 21, 0.6117647059);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -1;
}
.homeGift .list_gift .item_gift .content .txt {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.homeGift .list_gift .item_gift .content .txt .name {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
}
.homeGift .list_gift .item_gift .content .txt i {
  font-size: 20px;
  color: var(--color-secondary);
}
.homeGift .list_gift .item_gift .content .desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.625;
}
.homeGift .--bottom .container_frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homeGift .--bottom .container_frame .arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.homeGift .--bottom .container_frame .arrow .--arrow {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 0.55px solid rgb(216, 216, 216);
  background: var(--color-white);
  z-index: 2;
}
.homeGift .--bottom .container_frame .arrow .--arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  width: 100%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.homeGift .--bottom .container_frame .arrow .--arrow:hover {
  color: var(--color-white);
}
.homeGift .--bottom .container_frame .arrow .--arrow:hover svg path {
  fill: var(--color-white);
}
.homeGift .--bottom .container_frame .arrow .--arrow:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1439px) {
  .homeGift {
    padding-top: 80px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeGift {
    padding: 60px 0;
  }
  .homeGift .list_gift .item_gift {
    width: 40vw;
  }
}
@media (min-width: 767px) {
  .homeGift .list_gift .item_gift .txt_gift .btn_detail {
    display: none;
  }
}
@media (max-width: 767px) {
  .homeGift {
    padding-top: 40px;
  }
  .homeGift .--top .container_frame {
    flex-flow: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
  }
  .homeGift .--top .container_frame .segTitle {
    margin-bottom: 24px;
    text-align: center;
  }
  .homeGift .--top .container_frame .nav-tabs {
    justify-content: center;
    flex-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  .homeGift .--top .container_frame .nav-tabs .nav-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: unset;
    background: transparent;
    color: var(--color-black);
    border: none;
    position: relative;
  }
  .homeGift .--top .container_frame .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--color-black);
  }
  .homeGift .--top .container_frame .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
  }
  .homeGift .list_gift {
    margin-bottom: 24px;
  }
  .homeGift .list_gift .item_gift {
    width: 70vw;
    margin: 0 10px;
  }
  .homeGift .list_gift .item_gift .content {
    display: none;
  }
  .homeGift .list_gift .item_gift .txt_gift .name, .homeGift .list_gift .item_gift .txt_gift i {
    display: none;
  }
  .homeGift .--bottom .container_frame {
    justify-content: center;
  }
  .homeGift .--bottom .container_frame .arrow .--arrow {
    width: 44px;
    height: 44px;
  }
}

.homeCalendar {
  padding-top: 50px;
  position: relative;
}
.homeCalendar .CardCalander {
  width: 92%;
}
.homeCalendar .img_lantern_right {
  position: absolute;
  right: -5%;
  top: 0;
  width: 12%;
  height: auto;
  filter: drop-shadow(30px -6px 34px rgba(0, 0, 0, 0.15));
  pointer-events: none;
}
.homeCalendar .img_lantern_left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 12%;
  height: auto;
  filter: drop-shadow(30px -6px 34px rgba(0, 0, 0, 0.15));
  pointer-events: none;
}
@media (max-width: 767px) {
  .homeCalendar .CardCalander {
    width: 100%;
  }
}/*# sourceMappingURL=home.css.map */