@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-Medium.eot");
  src: url("../fonts/GoogleSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Medium.woff2") format("woff2"), url("../fonts/GoogleSans-Medium.woff") format("woff"), url("../fonts/GoogleSans-Medium.ttf") format("truetype"), url("../fonts/GoogleSans-Medium.svg#GoogleSans-Medium") format("svg");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-Bold.eot");
  src: url("../fonts/GoogleSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Bold.woff2") format("woff2"), url("../fonts/GoogleSans-Bold.woff") format("woff"), url("../fonts/GoogleSans-Bold.ttf") format("truetype"), url("../fonts/GoogleSans-Bold.svg#GoogleSans-Bold") format("svg");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Google Sans";
  src: url("../fonts/GoogleSans-Regular.eot");
  src: url("../fonts/GoogleSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/GoogleSans-Regular.woff2") format("woff2"), url("../fonts/GoogleSans-Regular.woff") format("woff"), url("../fonts/GoogleSans-Regular.ttf") format("truetype"), url("../fonts/GoogleSans-Regular.svg#GoogleSans-Regular") format("svg");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Megante";
  src: url("../fonts/SVN-Megante.eot");
  src: url("../fonts/SVN-Megante.eot?#iefix") format("embedded-opentype"), url("../fonts/SVN-Megante.woff2") format("woff2"), url("../fonts/SVN-Megante.woff") format("woff"), url("../fonts/SVN-Megante.ttf") format("truetype"), url("../fonts/SVN-Megante.svg#SVN-Megante") format("svg");
  font-style: normal;
  font-display: swap;
}
@keyframes lefttoright {
  0% {
    -webkit-mask-image: linear-gradient(to left, transparent 40%, rgb(255, 255, 255) 60%);
    -webkit-mask-size: 220%;
    -webkit-mask-position: right;
    opacity: 0 !important;
  }
  50% {
    -webkit-mask-position: left;
    transition: all 4s linear !important;
  }
  100% {
    opacity: 1 !important;
  }
}
@keyframes righttoleft {
  0% {
    -webkit-mask-image: linear-gradient(to right, transparent 40%, rgb(255, 255, 255) 60%);
    -webkit-mask-size: 220%;
    -webkit-mask-position: left;
    opacity: 0 !important;
  }
  50% {
    -webkit-mask-position: right;
            mask-position: right;
    transition: all 4s linear !important;
  }
  100% {
    opacity: 1 !important;
  }
}
:root {
  --font-google: "Google Sans";
  --font-Megante: "SVN-Megante";
  --transition-all: all 0.3s ease-in-out;
  --color-primary: #32a13d;
  --color-2: rgba(102,102,102,1);
  --color-white: #fff;
  --color-black:rgba(0,0,0,1);
  --width-container: 1320px;
}

body {
  font-size: 16px;
  font-family: var(--font-google);
  color: var(--color-2);
  line-height: normal;
  background: var(--color-white);
  overflow-x: hidden !important;
}
@media (max-width: 1439px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 1050px) {
  body {
    font-size: 14px;
  }
}

.container-fluid {
  padding: 0;
  width: 1270px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

.slick-slide {
  z-index: 1 !important;
}
.slick-slide.slick-active {
  z-index: 2 !important;
}
.slick-slide.current {
  opacity: 1 !important;
}
.slick-slide.lefttoright {
  animation: lefttoright 5s linear 1;
  transition: all 0.25s ease-in-out !important;
}
.slick-slide.righttoleft {
  animation: righttoleft 5s linear 1;
  transition: all 0.25s ease-in-out !important;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.btn.btn-1 {
  display: flex;
  height: 48px;
  padding: 0 24px;
  color: var(--color-primary);
  gap: 12px;
  border: 1px solid rgba(50, 161, 61, 0.2);
  background: #fff;
  align-items: center;
  font-weight: 700;
  border-radius: 50px;
}

.main_page {
  padding-top: 104px;
}
@media (max-width: 1050px) {
  .main_page {
    padding-top: 0;
  }
}

#header1.hide {
  top: -110px;
}
@media (max-width: 1050px) {
  #header1.hide {
    top: 0;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s ease;
  background: var(--color-white);
}
header.change {
  background: var(--color-white);
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.0392156863);
  transition: all 0.5s ease;
}
header.change .headerTop .--listLink .--itemLink {
  color: var(--color-black);
}
header.change .headerTop .--social .--itemSocial {
  color: var(--color-black);
}
header.change .headerBot .--menu .--itemMenu {
  color: var(--color-black);
}
header.change .headerBot .--search {
  background: rgba(0, 0, 0, 0.2);
}
header.change .headerBot .--search i {
  color: var(--color-black);
}
header.change .headerBot .--search input {
  color: var(--color-black);
}
header.change .headerBot .search_header {
  background: rgba(0, 0, 0, 0.2);
}
header.change .headerBot .search_header i {
  color: var(--color-black);
}
header .headerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}
header .headerTop .--listLink {
  display: flex;
  gap: 20px;
  font-size: 13px;
}
header .headerTop .--listLink .--itemLink {
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .headerTop .--listLink .--itemLink:hover {
  color: var(--color-primary);
}
header .headerTop .--listLink .--itemLink.active {
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(50, 161, 61, 0.12);
  color: var(--color-primary);
}
header .headerTop .--social {
  display: flex;
  color: #fff;
  gap: 12px;
}
header .headerTop .--social .--itemSocial {
  color: var(--color-black);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .headerTop .--social .--itemSocial:hover {
  color: var(--color-primary);
}
header .headerTop .--year {
  background: rgb(255, 153, 0);
  padding: 8px 16px;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
  height: auto;
}
header .headerBot {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 36px;
}
header .headerBot .left_hd {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .headerBot .left_hd .title_logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .headerBot .left_hd .title_logo .--main_title {
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(50, 161, 61, 0.8);
  letter-spacing: -0.12px;
}
header .headerBot .left_hd .title_logo .--sub_title {
  font-size: 22px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(50, 161, 61);
  letter-spacing: -0.88px;
}
header .headerBot .--logo {
  height: 50px;
  width: auto;
}
header .headerBot .--menu {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  gap: 15px;
}
header .headerBot .--itemMenu {
  color: var(--color-black);
  height: 100%;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
}
header .headerBot .--itemMenu:hover {
  opacity: 1;
  font-weight: 700;
}
header .headerBot .--itemMenu.active {
  font-weight: 700;
  opacity: 1;
}
header .headerBot .--search {
  position: relative;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1019607843);
  transition: var(--transition-all);
}
header .headerBot .--search:focus-within {
  border: 1px solid #fff;
}
header .headerBot .--search.active {
  width: 300px;
  border-radius: 60px;
}
header .headerBot .--search.active input {
  width: 100%;
}
header .headerBot .--search.active i {
  left: 12px;
  transform: translate(0, -50%);
}
header .headerBot .--search input {
  transition: var(--transition-all);
  width: 0;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding-left: 36px;
  font-size: 14px;
}
header .headerBot .--search input::-moz-placeholder {
  color: #fff;
}
header .headerBot .--search input::placeholder {
  color: #fff;
}
header .headerBot .--search input:focus {
  outline: none;
  box-shadow: none;
}
header .headerBot .--search i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-all);
}
header .headerBot .search_header {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
header .headerBot .search_header .box_search {
  position: absolute;
  top: calc(100% + 25px);
  right: 0;
  padding: 13px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
  border-radius: 8px;
  border: 1px solid rgb(228, 228, 228);
  pointer-events: none;
  opacity: 0;
}
header .headerBot .search_header .box_search.active {
  pointer-events: auto;
  opacity: 1;
}
header .headerBot .search_header .box_search .icon {
  position: absolute;
  top: -2px;
  right: -2px;
  color: var(--color-black);
}
header .headerBot .search_header .box_search .icon i {
  color: var(--color-black);
}
header .headerBot .search_header .box_search input {
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  width: 290px;
  padding: 10px 5px 10px 30px;
  outline: none;
}
header .headerBot .search_header .box_search .fa-search {
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  left: 20px;
  color: rgb(139, 139, 139);
}
header .headerBot .search_header i {
  color: rgba(255, 255, 255, 0.6);
}
header .header_menu_mobile {
  margin-top: 0;
  width: 30px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  cursor: pointer;
  margin-top: 20px;
}
header .header_menu_mobile.open span:nth-child(1) {
  top: 0;
  transform: rotate(135deg);
}
header .header_menu_mobile.open span:nth-child(2) {
  opacity: 0;
  left: -50px;
}
header .header_menu_mobile.open span:nth-child(3) {
  top: 0;
  transform: rotate(-135deg);
}
header .header_menu_mobile span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  border-radius: 8px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.5s ease;
  background: var(--color-primary);
}
header .header_menu_mobile span:nth-child(1) {
  top: -10px;
}
header .header_menu_mobile span:nth-child(2) {
  top: 0px;
}
header .header_menu_mobile span:nth-child(3) {
  top: 10px;
}
@media (max-width: 1439px) {
  header .headerBot .--logo {
    height: 40px;
  }
  header .headerBot .--menu .--itemMenu {
    font-size: 13px;
  }
}
@media (max-width: 1340px) {
  header .headerBot .--menu .--itemMenu {
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  header .headerBot .--menu .--itemMenu {
    font-size: 11px;
  }
}
@media (min-width: 1051px) {
  header .header_menu_mobile {
    display: none;
  }
}
@media (max-width: 1050px) {
  header {
    background: var(--color-white);
    transition: none;
    height: 56px;
  }
  header .headerTop {
    height: unset;
  }
  header .headerTop .--listLink .--itemLink {
    color: var(--color-black);
    opacity: 1;
  }
  header .headerTop .--social .--itemSocial {
    color: var(--color-black);
  }
  header.change {
    transition: none;
  }
  header .headerBot {
    justify-content: space-between;
  }
  header .headerBot .--logo {
    height: 30px;
  }
  header .headerBot .--menu {
    gap: 0;
    min-height: 100vh;
    width: 400px;
    background-color: var(--color-white);
    overflow: hidden;
    position: fixed;
    top: 54px;
    height: 100%;
    width: 100%;
    right: 0;
    transform: translate(150%, 0);
    transition: all 0.75s ease;
    flex-flow: column;
    margin-top: -10px !important;
    padding-top: 4rem !important;
    padding: 0 15px;
    align-items: flex-start;
  }
  header .headerBot .--menu.open {
    transform: none;
  }
  header .headerBot .--menu .--itemMenu {
    color: var(--color-black);
    height: unset;
    margin-bottom: 30px;
  }
  header .headerBot .--menu .headerTop_mobile {
    width: 100%;
    margin-top: 3rem;
  }
  header .headerBot .--menu .headerTop_mobile .headerTop {
    width: 100%;
    flex-flow: column;
    gap: 24px;
    align-items: flex-start;
  }
  header .headerBot .--menu .headerTop_mobile .headerTop .--listLink {
    flex-flow: column;
  }
  header .headerBot .--search {
    display: none;
  }
  header .headerBot .search_header {
    display: none;
  }
}

.itemEvent {
  display: flex;
  gap: 24px;
  color: var(--color-2);
}
.itemEvent .--img {
  width: 290px;
  flex: 0 0 auto;
  height: 190px;
}
.itemEvent .--img img {
  height: 100%;
  width: 100%;
}
.itemEvent .--txt {
  flex-grow: 1;
}
.itemEvent .--time {
  color: var(--color-primary);
  font-size: 12px;
}
.itemEvent .--name {
  color: #000;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.44;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.itemEvent article {
  font-size: 14px;
  margin-top: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .itemEvent .--img {
    width: 40%;
    flex: 0 0 40%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .itemEvent article {
    margin-top: 12px;
  }
  .itemEvent .--img {
    width: 40%;
    flex: 0 0 40%;
    height: auto;
  }
}

.CardEvent .--eventNews {
  background: #f7f7f7;
  display: flex;
  padding: 44px 62px;
  color: var(--color-2);
  margin-top: 48px;
  gap: 44px;
}
.CardEvent .--eventNews .--img {
  width: 320px;
  flex: 0 0 auto;
  height: 225px;
}
.CardEvent .--eventNews .--timeStart {
  display: flex;
  flex-flow: column;
  font-family: var(--font-Megante);
  flex: 0 0 auto;
}
.CardEvent .--eventNews .--timeStart span:first-child {
  font-size: 52px;
  color: var(--color-primary);
  line-height: 1.34;
}
.CardEvent .--eventNews .--timeStart span:last-child {
  font-size: 22px;
  color: var(--color-black);
}
.CardEvent .--eventNews img {
  width: 100%;
  height: 100%;
}
.CardEvent .--eventNews .--txt {
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.CardEvent .--eventNews .--time {
  font-size: 13px;
  color: var(--color-primary);
}
.CardEvent .--eventNews .--name {
  font-size: 28px;
  font-family: var(--font-Megante);
  color: #000;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.CardEvent .--eventNews article {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .CardEvent .--eventNews .--timeStart span:first-child {
    font-size: 30px;
  }
  .CardEvent .--eventNews .--timeStart span:last-child {
    font-size: 20px;
  }
}
.CardEvent .--listEvent {
  display: flex;
  margin-top: 32px;
  gap: 44px;
}
.CardEvent .--listEvent .itemEvent {
  flex: 0 0 auto;
  width: 55%;
}
.CardEvent .--listEvent .--right {
  background: #f7f7f7;
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  padding: 24px 20px;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .CardEvent .--eventNews {
    gap: 24px;
  }
  .CardEvent .--eventNews .--img {
    width: 200px;
    height: 176px;
  }
}
@media (max-width: 767px) {
  .CardEvent .--eventNews {
    flex-flow: column;
    padding: 24px 42px;
    gap: 24px;
    margin-top: 24px;
  }
  .CardEvent .--eventNews .--img {
    width: 100%;
    height: auto;
  }
  .CardEvent .--eventNews .--txt {
    gap: 12px;
  }
  .CardEvent .--eventNews .--txt .--name {
    font-size: 20px;
  }
  .CardEvent .--listEvent {
    flex-flow: column;
    gap: 24px;
    margin-top: 24px;
  }
  .CardEvent .--listEvent .itemEvent {
    width: 100%;
  }
  .CardEvent .--listEvent .itemEvent .--txt .--name {
    font-size: 16px;
  }
}

.itemDiscover {
  position: relative;
  margin: 0 22px;
}
.itemDiscover .--img {
  width: 100%;
  aspect-ratio: 612/346;
  position: relative;
}
.itemDiscover .--img::after {
  content: "";
  position: absolute;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.28334) 30%, rgba(0, 0, 0, 0.497) 61.11%, rgba(0, 0, 0, 0.7) 100%);
  left: 0;
  width: 100%;
  height: 40%;
}
.itemDiscover img {
  width: 100%;
  height: 100%;
}
.itemDiscover .--name {
  position: absolute;
  bottom: 32px;
  padding: 0 24px;
  left: 0;
  width: 100%;
  font-size: 24px;
  font-family: var(--font-Megante);
  color: #fff;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .itemDiscover .--name {
    font-size: 20px;
  }
}

.itemNews {
  display: flex;
  gap: 24px;
  color: var(--color-2);
}
.itemNews .--img img {
  aspect-ratio: 25/16;
}
.itemNews .--cate {
  color: var(--color-primary);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 21px;
}
.itemNews .--cate span {
  color: rgba(0, 0, 0, 0.3);
  position: relative;
}
.itemNews .--cate span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgb(217, 217, 217);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: -13px;
}
.itemNews .--name {
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 24px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: var(--color-black);
}
.itemNews .--name:hover {
  color: var(--color-primary) !important;
}
.itemNews article {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  margin-top: 16px;
  -webkit-box-orient: vertical;
}
@media (max-width: 767px) {
  .itemNews {
    gap: 16px;
  }
  .itemNews .--name {
    font-size: 16px;
  }
  .itemNews article {
    margin-top: 12px;
  }
  .itemNews .--img {
    flex: 0 0 40%;
  }
  .itemNews .--img img {
    aspect-ratio: unset;
  }
}

.itemNews2 {
  position: relative;
  padding-left: 22px;
  color: #1c1c1c;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #9b9b9b;
  display: block;
}
.itemNews2 .--name {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.itemNews2:hover {
  color: var(--color-primary);
}
.itemNews2:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.itemNews2::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ffad0e;
  border-radius: 50%;
}

.newsBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 64px;
}
.newsBlock .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.newsBlock .--top .--viewDetail {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsBlock .--top .--title {
  font-size: 28px;
  text-transform: capitalize;
  font-family: var(--font-Megante);
}
.newsBlock .--blockNews.blockNews1 .--listNews {
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.newsBlock .--blockNews.blockNews2 {
  display: flex;
  flex-flow: column;
}
.newsBlock .--blockNews.blockNews2 .cardNews1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.newsBlock .--blockNews.blockNews2 .itemNews {
  flex-flow: column;
}
.newsBlock .--blockNews.blockNews2 .itemNews .--img {
  aspect-ratio: 57/43;
}
.newsBlock .--blockNews.blockNews2 .cardNews2 {
  padding: 24px;
  background: #ffffff;
  margin-top: auto;
  display: block;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .newsBlock {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .newsBlock {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .newsBlock .--blockNews .blockNews1 .--listNews {
    gap: 16px;
  }
}

.container_frame {
  width: var(--width-container);
  display: block;
  margin: auto;
}
@media (min-width: 1279px) and (max-width: 1439px) {
  .container_frame {
    width: calc(100% - 120px);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .container_frame {
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .container_frame {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.p-left-section {
  padding-left: calc((100% - var(--width-container)) / 2);
}
@media (min-width: 1279px) and (max-width: 1439px) {
  .p-left-section {
    padding-left: 60px;
  }
}
@media (min-width: 769px) and (max-width: 1279px) {
  .p-left-section {
    padding-left: 40px;
  }
}
@media (max-width: 769px) {
  .p-left-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.CardCalander {
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  display: flex;
  overflow: hidden;
}
.CardCalander .calendar {
  width: 33.3333333333%;
  color: var(--color-black);
}
.CardCalander .--txt {
  padding: 24px 44px 34px 44px;
  border-left: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.CardCalander .--txt .--timeName {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1607843137);
}
.CardCalander .--txt .--day {
  font-size: 65px;
  color: var(--color-primary);
  line-height: 70px;
  font-family: var(--font-Megante);
}
.CardCalander .--txt .--time {
  flex: 0 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.CardCalander .--txt .--name {
  flex-grow: 1;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: var(--color-black);
}
.CardCalander .--txt .--year {
  color: var(--color-black);
}
.CardCalander .--txt .--infoAll {
  display: flex;
  flex-flow: column;
  gap: 12px;
  margin-top: 24px;
}
.CardCalander .--txt .--infoAll .--nameInfo {
  font-weight: 700;
  color: var(--color-black);
}
.CardCalander .--txt .--infoAll .--info {
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.CardCalander .--txt .--infoAll span {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
}
.CardCalander .--txt .--infoAll i {
  color: var(--color-primary);
}
.CardCalander .--txt .--infoAll .--item {
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.CardCalander .--txt .--note {
  font-size: 13px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1607843137);
}
.CardCalander .list_txt {
  width: 33.3333333333%;
}
.CardCalander .slick-list {
  height: 100%;
}
.CardCalander .slick-track {
  height: 100%;
}
.CardCalander .list_img {
  width: 33.3333333333%;
}
.CardCalander .--img {
  height: 100%;
}
.CardCalander .--img img {
  width: 100%;
  height: 100%;
}
.CardCalander .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  gap: 6px;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 20;
}
.CardCalander .slick-dots li {
  background: rgb(216, 216, 216);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.CardCalander .slick-dots li button {
  display: none;
}
.CardCalander .slick-dots li::marker {
  list-style: none;
}
.CardCalander .slick-dots li.slick-active {
  background: var(--color-primary);
  width: 28px;
  height: 8px;
  border-radius: 30px;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .CardCalander {
    flex-wrap: wrap;
  }
  .CardCalander .calendar {
    width: 55%;
  }
  .CardCalander .list_txt {
    width: 45%;
  }
  .CardCalander .list_txt .--txt .--name {
    font-size: 16px;
  }
  .CardCalander .list_img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .CardCalander {
    flex-flow: column;
  }
  .CardCalander .calendar {
    width: 100%;
  }
  .CardCalander .--txt .--name {
    font-size: 16px;
  }
  .CardCalander .list_txt {
    width: 100%;
  }
  .CardCalander .list_img {
    width: 100%;
  }
}

.calendar {
  width: 390px;
  padding: 24px;
}
.calendar ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 16px;
}
.calendar ul.calendar-weekdays {
  color: #a4a4a4;
}
.calendar .calendar-weekdays {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f1ff;
}
.calendar .calendar-current-date {
  font-weight: 700;
}
.calendar #calendar-prev,
.calendar #calendar-next {
  cursor: pointer;
}
.calendar .calendar-dates {
  margin-top: 24px;
}
.calendar .calendar-dates li {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.calendar .calendar-dates li:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.calendar .calendar-dates li.circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  bottom: -6px;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
}
.calendar .calendar-dates li.flower-pink::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 12px;
  height: 12px;
  background: url(/baden-group/images/flower.png) no-repeat center center;
  background-size: contain;
}
.calendar .calendar-dates li.flower-orange::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 12px;
  height: 12px;
  background: url(/baden-group/images/flower-orange.png) no-repeat center center;
  background-size: contain;
}
.calendar .calendar-dates li.flower-purple::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 12px;
  height: 12px;
  background: url(/baden-group/images/flower-purple.png) no-repeat center center;
  background-size: contain;
}
.calendar .calendar-dates li.active {
  color: #fff;
  background: var(--color-primary);
}
.calendar .calendar-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar li {
  display: flex;
  justify-content: center;
}
.calendar li.inactive {
  color: #9291a5;
}

.segTitle {
  font-weight: 500;
  font-family: var(--font-Megante);
  color: var(--color-primary);
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: -1.12px;
}
.segTitle span {
  color: var(--color-black);
}
@media (max-width: 1439px) {
  .segTitle {
    font-size: 42px;
    letter-spacing: -0.92px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .segTitle {
    font-size: 36px;
    letter-spacing: -0.8px;
  }
}
@media (max-width: 767px) {
  .segTitle {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.list_library {
  margin: 0 -20px;
}
.list_library .item_library {
  padding: 0 20px;
}
.list_library .item_library .--img {
  aspect-ratio: 270/395;
  margin-bottom: 32px;
  width: 100%;
}
.list_library .item_library .name {
  font-size: 20px;
  font-family: var(--font-Megante);
  text-align: center;
  color: var(--color-black);
}
@media (max-width: 767px) {
  .list_library {
    margin: 0;
  }
  .list_library .item_library {
    padding: 0 16px;
  }
  .list_library .item_library .--img {
    margin-bottom: 16px;
  }
}

@keyframes initAnimation {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-30deg);
  }
}
.book {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: 1s ease;
  animation: 1s ease 0s 1 initAnimation;
}

.book:hover {
  transform: rotateY(-30deg);
}
.book:hover::before {
  right: -8px;
}

.book > :first-child {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
  width: 100%;
  height: 100%;
  transform: translateZ(25px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
}

.book::before {
  position: absolute;
  content: " ";
  background-color: blue;
  right: 0;
  top: 4px;
  width: 48px;
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #fff 0%, #f9f9f9 5%, #fff 10%, #f9f9f9 15%, #fff 20%, #f9f9f9 25%, #fff 30%, #f9f9f9 35%, #fff 40%, #f9f9f9 45%, #fff 50%, #f9f9f9 55%, #fff 60%, #f9f9f9 65%, #fff 70%, #f9f9f9 75%, #fff 80%, #f9f9f9 85%, #fff 90%, #f9f9f9 95%, #fff 100%);
}

.book::after {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  transform: translateZ(-25px);
  background-color: #01060f;
  border-radius: 0 2px 2px 0;
  box-shadow: 9px 7px 15px #848484;
}

.btn_primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--color-white);
  width: -moz-max-content;
  width: max-content;
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(50, 161, 61, 0.2);
}
.btn_primary a {
  color: var(--color-white);
}
.btn_primary::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  color: var(--color-white);
  background: var(--color-primary);
}
.btn_primary span, .btn_primary i, .btn_primary svg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn_primary:hover {
  border: 1px solid var(--color-primary);
}
.btn_primary:hover::after {
  height: 100%;
}
.btn_primary:hover path {
  fill: var(--color-blue);
}
.btn_primary:hover span, .btn_primary:hover i {
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .btn_primary {
    font-size: 14px;
    height: 44px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .btn_primary {
    font-size: 14px;
    height: 44px;
  }
  .btn_primary::after {
    display: none;
  }
  .btn_primary:hover {
    color: #fff;
  }
  .btn_primary:hover span, .btn_primary:hover i {
    color: #fff;
  }
}

.btn_trans {
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--color-primary);
  width: -moz-max-content;
  width: max-content;
  color: var(--color-white);
  font-weight: 700;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-primary);
}
.btn_trans a {
  color: var(--color-white);
}
.btn_trans::after {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  transition: height 0.5s ease;
  color: var(--color-white);
  background: var(--color-white);
  border: 1px solid var(--color-primary);
}
.btn_trans span, .btn_trans i, .btn_trans svg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn_trans:hover {
  border: 1px solid var(--color-white);
}
.btn_trans:hover::after {
  height: 100%;
}
.btn_trans:hover path {
  fill: var(--color-white);
}
.btn_trans:hover span, .btn_trans:hover i {
  color: var(--color-primary);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .btn_trans {
    font-size: 14px;
    height: 44px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .btn_trans {
    font-size: 14px;
    height: 44px;
  }
  .btn_trans::after {
    display: none;
  }
  .btn_trans:hover {
    color: #fff;
  }
  .btn_trans:hover span, .btn_trans:hover i {
    color: #fff;
  }
}

.btn_view_all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 16px;
  cursor: pointer;
}
.btn_view_all:hover i {
  color: var(--color-primary);
}
.btn_view_all:hover .name {
  color: var(--color-primary);
}
.btn_view_all:hover .name::after {
  width: 100%;
}
.btn_view_all i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_view_all .name {
  letter-spacing: -0.48px;
  position: relative;
}
.btn_view_all .name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease-in-out;
}

.bg_ft {
  position: relative;
}
.bg_ft .img_main {
  width: 100%;
  height: auto;
}
.bg_ft .cloud_ft {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
}

footer {
  padding-top: 24px;
  background: rgb(245, 245, 245);
}
footer .content_ft {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(237, 237, 237);
  padding-bottom: 32px;
}
footer .content_ft .logo_ft {
  width: 192px;
  height: 61px;
  margin-bottom: 24px;
}
footer .content_ft .logo_ft img {
  -o-object-fit: contain;
     object-fit: contain;
}
footer .content_ft .title_ft {
  font-size: 30px;
  line-height: 1.4;
  font-family: var(--font-Megante);
  color: var(--color-primary);
  margin-bottom: 16px;
  text-align: center;
}
footer .content_ft .--qr img {
  width: 120px;
  margin-bottom: 16px;
}
footer .content_ft .list_info {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
footer .content_ft .list_info .item_info {
  color: var(--color-black);
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
footer .content_ft .list_info .item_info:last-child {
  border-right: none;
  padding-right: 0;
}
footer .content_ft .list_social {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .content_ft .list_social .item_social {
  width: 36px;
  height: 36px;
  border: 0.92px solid rgb(237, 237, 237);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.7px;
  position: relative;
  overflow: hidden;
}
footer .content_ft .list_social .item_social i {
  color: rgb(155, 155, 155);
}
footer .content_ft .list_social .item_social::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;
}
footer .content_ft .list_social .item_social:hover {
  color: var(--color-white);
}
footer .content_ft .list_social .item_social:hover i {
  color: var(--color-white);
}
footer .content_ft .list_social .item_social:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
footer .bottom_ft {
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 32px 0;
}
footer .bottom_ft .list_link {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
footer .bottom_ft .list_link .item_link {
  font-size: 14px;
  padding-right: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.57;
}
footer .bottom_ft .list_link .item_link:last-child {
  border-right: none;
  padding-right: 0;
}
footer .bottom_ft .copyright {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.57;
}
footer a:hover {
  color: var(--color-primary) !important;
}
@media (max-width: 767px) {
  footer .content_ft {
    padding-bottom: 24px;
  }
  footer .content_ft .logo_ft {
    margin-bottom: 16px;
  }
  footer .content_ft .title_ft {
    font-size: 20px;
    margin-bottom: 16px;
  }
  footer .content_ft .list_info {
    flex-flow: column;
    width: 100%;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
  footer .content_ft .list_info .item_info {
    border-right: none;
    padding-right: 0;
  }
  footer .bottom_ft {
    padding: 24px 0;
  }
  footer .bottom_ft .list_link {
    flex-flow: column;
    align-items: center;
    gap: 12px;
  }
  footer .bottom_ft .list_link .item_link {
    border-right: none;
    padding-right: 0;
  }
  footer .bottom_ft .copyright {
    text-align: center;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb .list_link {
  display: flex;
  align-items: center;
  gap: 24px;
}
.breadcrumb .list_link .item_link {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.breadcrumb .list_link .item_link.active {
  color: var(--color-white);
}
.breadcrumb .list_link .item_link:nth-child(1)::after {
  display: none;
}
.breadcrumb .list_link .item_link::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 6 Pro";
  left: -16.375px;
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 12px;
  }
}

.banner_primary {
  position: relative;
}
.banner_primary .--img {
  aspect-ratio: 1440/657;
  position: relative;
}
.banner_primary .--img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(180deg, rgba(0, 0, 0, 0) 57.38%, rgba(0, 0, 0, 0.12) 63.76%, rgba(0, 0, 0, 0.258) 71.48%, rgba(0, 0, 0, 0.456) 81.34%, rgba(0, 0, 0, 0.6) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.345) 11.33%, rgba(0, 0, 0, 0.16679) 18.48%, rgba(0, 0, 0, 0) 25.18%);
}
.banner_primary .--img img {
  width: 100%;
}
.banner_primary .--content {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 100%;
}
.banner_primary .--content .breadcrumb {
  margin-bottom: 12px;
}
.banner_primary .--content .segTitle {
  color: var(--color-white);
}
.banner_primary .--content .txt {
  position: relative;
  padding-left: 30px;
}
.banner_primary .--content .txt::after {
  width: 4px;
  height: 100%;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
@media (max-width: 1050px) and (min-width: 768px) {
  .banner_primary {
    margin-top: 60px;
  }
  .banner_primary .txt .title {
    font-size: 52px;
    letter-spacing: 0.32px;
  }
  .banner_primary .txt .name {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  .banner_primary .--img {
    aspect-ratio: unset;
    height: 300px;
  }
  .banner_primary .--content .txt {
    padding-left: 20px;
  }
}

.--listPopular .itemPopular {
  position: relative;
  width: 25vw;
  margin: 0 22px;
}
.--listPopular .itemPopular .--img {
  aspect-ratio: 393/482;
  position: relative;
}
.--listPopular .itemPopular .--img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.--listPopular .itemPopular .--bottom {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: calc(100% - 79px);
  right: 47px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.--listPopular .itemPopular .--bottom .date_time {
  font-size: 13px;
  color: var(--color-white);
  opacity: 0.6;
  margin-bottom: 12px;
}
.--listPopular .itemPopular .--bottom .name {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.44;
}
.--listPopular .itemPopular .--bottom .btn_detail {
  color: var(--color-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0.72px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.--listPopular .itemPopular .--bottom .btn_detail::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;
}
.--listPopular .itemPopular .--bottom .btn_detail:hover {
  color: var(--color-white);
}
.--listPopular .itemPopular .--bottom .btn_detail:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .--listPopular .itemPopular {
    width: 50vw;
  }
}
@media (max-width: 767px) {
  .--listPopular .itemPopular {
    width: 70vw;
    margin: 0 10px;
  }
  .--listPopular .itemPopular .--bottom {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    right: 20px;
    gap: 24px;
  }
  .--listPopular .itemPopular .--bottom .txt .name {
    font-size: 14px;
  }
  .--listPopular .itemPopular .--bottom .btn_detail {
    width: 40px;
    height: 40px;
  }
  .--listPopular .itemPopular .--bottom .btn_detail i {
    font-size: 12px;
  }
}

.top_primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.top_primary .--left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.top_primary .--left .line {
  width: 100%;
  height: 1px;
  background: rgb(238, 238, 238);
  flex: 1;
}
.top_primary .title {
  font-size: 32px;
  color: var(--color-primary);
  font-family: var(--font-Megante);
  letter-spacing: -0.96px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.top_primary .title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
}
.top_primary .btn_view_all {
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .top_primary {
    margin-bottom: 24px;
    flex-flow: column;
    gap: 16px;
  }
  .top_primary .--left .line {
    display: none;
  }
  .top_primary .title {
    font-size: 24px;
  }
}

.pagination {
  gap: 8px;
  justify-content: center;
  margin: 52px auto 0;
}
.pagination .page-item .page-link {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  cursor: pointer;
  font-size: 14px;
}
.pagination .page-item .page-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.pagination .page-item .page-link i {
  font-size: 10px;
}
.pagination .page-item.active .page-link {
  box-shadow: 2px 4px 15px 0 rgba(0, 0, 0, 0.08);
  background: var(--color-primary);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .pagination {
    margin: 24px auto 0;
  }
}

.homeEvent {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.homeEvent .--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.homeEvent .--parten {
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: auto;
  pointer-events: none;
}
.homeEvent .container_frame {
  position: relative;
  z-index: 1;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .homeEvent {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .homeEvent {
    padding-top: 40px;
  }
}

.modalReportage .modal-content {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
}
.modalReportage .modal-body {
  padding: 60px 0 110px 0;
}
.modalReportage .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}
.modalReportage .--top .txt {
  width: 64%;
}
.modalReportage .--top .txt .tag {
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}
.modalReportage .--top .txt .title {
  font-size: 24px;
  color: var(--color-white);
  font-family: var(--font-Megante);
  line-height: 1.33;
}
.modalReportage .--top .btn_close i {
  font-size: 40px;
  color: var(--color-white);
  cursor: pointer;
}
.modalReportage .list_reportage_modal {
  margin-bottom: 24px;
}
.modalReportage .list_reportage_modal .slick-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(134, 131, 131, 0.71);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.modalReportage .list_reportage_modal .slick-arrow.prev_arrow {
  left: -26px;
  z-index: 2;
}
.modalReportage .list_reportage_modal .slick-arrow.next_arrow {
  right: -26px;
  z-index: 2;
}
.modalReportage .list_reportage_modal .slick-arrow i {
  color: var(--color-white);
  font-size: 20px;
}
.modalReportage .list_reportage_modal .item_reportage_modal {
  display: flex;
  background: rgb(40, 40, 40);
}
.modalReportage .list_reportage_modal .item_reportage_modal .--left {
  width: 58%;
  height: auto;
  position: relative;
}
.modalReportage .list_reportage_modal .item_reportage_modal .--left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4515) 30%, rgba(0, 0, 0, 0.7) 100%);
}
.modalReportage .list_reportage_modal .item_reportage_modal .--left .--name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 14px;
  color: var(--color-white);
  line-height: 22px;
  z-index: 2;
}
.modalReportage .list_reportage_modal .item_reportage_modal .--right {
  flex: 1;
  padding: 32px;
  position: relative;
}
.modalReportage .list_reportage_modal .item_reportage_modal .--right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, rgba(40, 40, 40, 0.645) 30%, #282828 72.5%, #282828 100%);
}
.modalReportage .list_reportage_modal .item_reportage_modal .--right article {
  color: var(--color-white);
  line-height: 1.75;
}
.modalReportage .list_slide .slick-track {
  margin-left: -9px;
}
.modalReportage .list_slide .slick-active img {
  border: 6px solid rgba(149, 251, 159, 0.4);
}
.modalReportage .list_slide .item_slide {
  cursor: pointer;
}
.modalReportage .list_slide .item_slide img {
  aspect-ratio: 1;
  width: 12vw;
  margin: 0 9px;
  border-radius: 8px;
}

.img_not_found {
  width: 400px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .img_not_found {
    width: 60%;
  }
}

.parallax_img {
  animation: parallax_img 12s ease-in-out infinite;
}

@keyframes parallax_img {
  0%, 100% {
    transform: translateY(0) rotate(6deg);
  }
  50% {
    transform: translateY(-30px) rotate(-8deg);
  }
}
.cta {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 100;
  display: flex;
  flex-flow: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.cta .btn_audio {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  box-shadow: 1px 2px 6px #949494;
  transition: all 0.3s ease-in-out;
}
.cta .btn_audio:hover {
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
}
.cta .btn_audio i {
  font-size: 13px;
  color: var(--color-white);
}
.cta .btn_audio audio {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.cta .btn_livestream {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cta .btn_livestream .--button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-primary);
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cta .btn_livestream .--button:hover {
  transform: scale(0.95);
  transition: all 0.3s ease-in-out;
}
.cta .btn_livestream .--button::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.cta .btn_livestream .tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 0px 10px;
  border-radius: 8px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */