.hc-carousel .splide__pagination, .hc-carousel--hero .splide__pagination {
  bottom: 10px;
  column-gap: 10px;
  display: flex;
  justify-content: flex-end;
}
.hc-carousel .splide__pagination__page, .hc-carousel--hero .splide__pagination__page {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  height: 7px;
  margin-inline: 0;
  width: 30px;
}
.hc-carousel .splide__pagination__page.is-active, .hc-carousel--hero .splide__pagination__page.is-active {
  background-color: var(--hc-3);
  transform: scale(1);
}
.hc-carousel .splide__arrow, .hc-carousel--hero .splide__arrow {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: var(--hc-primary);
  display: inline-flex;
  height: 60px;
  justify-content: center;
  opacity: 1;
  transition: background-color 0.3s, color 0.3s;
  width: 60px;
}
.hc-carousel .splide__arrow::before, .hc-carousel--hero .splide__arrow::before {
  content: "\e314";
  display: inline-block;
  font-family: var(--hf-icon);
  font-size: 4rem;
  height: auto;
  text-align: center;
  width: auto;
}
.hc-carousel .splide__arrow svg, .hc-carousel--hero .splide__arrow svg {
  display: none;
}
.hc-carousel .splide__arrow:hover, .hc-carousel--hero .splide__arrow:hover {
  background-color: var(--hc-3);
  color: var(--hc-1);
  opacity: 1;
}
.hc-carousel .splide__arrow--prev, .hc-carousel--hero .splide__arrow--prev {
  left: 30px;
}
.hc-carousel .splide__arrow--next, .hc-carousel--hero .splide__arrow--next {
  right: 30px;
}
.hc-carousel .splide__arrow--next::before, .hc-carousel--hero .splide__arrow--next::before {
  transform: rotate(180deg);
}
.hc-carousel--hero {
  height: calc(100vh - 100px);
  overflow: hidden;
  width: 100%;
}
.hc-carousel--hero .splide__track,
.hc-carousel--hero .splide__list {
  height: 100%;
}
.hc-carousel--hero .splide-slide {
  height: 100%;
}
.hc-carousel--hero .splide__video {
  height: 100%;
  width: 100%;
}
.hc-carousel--hero .splide__video video {
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}
.hc-carousel--hero .splide__video__wrapper {
  height: 100%;
  width: 100%;
}
.hc-carousel--hero .splide__video__wrapper div {
  height: 100%;
  width: 100%;
}
.hc-carousel--hero .splide__slide.is-active .hc-carousel__img img {
  transform: scale(1.1);
}
.hc-carousel__img {
  display: block;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.hc-carousel__img img {
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
  width: 100%;
}
.hc-carousel--partner {
  height: auto;
  overflow: hidden;
  width: 100%;
}
.hc-carousel--partner .splide__slide {
  width: 200px;
}
.hc-carousel__mouse {
  bottom: 50px;
  color: var(--hc-1);
  font-size: 3rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
}
.hc-carousel__mouse::after {
  animation: carousel-mouse-scroll 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  background-color: var(--hc-1);
  content: "";
  height: 20px;
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 100%;
  transform-origin: top center;
  width: 2px;
}
@keyframes carousel-mouse-scroll {
  0% {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.4);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(14px) scaleY(1);
  }
}
@media only screen and (max-width: 768px) {
  .hc-carousel .splide__pagination, .hc-carousel--hero .splide__pagination {
    bottom: 5px;
    column-gap: 5px;
  }
  .hc-carousel .splide__pagination__page, .hc-carousel--hero .splide__pagination__page {
    height: 5px;
    width: 20px;
  }
  .hc-carousel .splide__arrow, .hc-carousel--hero .splide__arrow {
    border-radius: 5px;
    height: 40px;
    width: 40px;
  }
  .hc-carousel .splide__arrow::before, .hc-carousel--hero .splide__arrow::before {
    font-size: 3rem;
  }
  .hc-carousel .splide__arrow--prev, .hc-carousel--hero .splide__arrow--prev {
    left: 10px;
  }
  .hc-carousel .splide__arrow--next, .hc-carousel--hero .splide__arrow--next {
    right: 10px;
  }
  .hc-carousel--partner .splide__slide {
    width: 125px;
  }
}

.hc-achievement {
  background-color: rgba(84, 163, 48, 0.1);
  color: var(--hc-root);
  padding-block: 30px;
}
.hc-achievement__row {
  column-gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.hc-achievement__item {
  align-items: center;
  column-gap: 10px;
  display: flex;
  width: calc((100% - 80px) / 5);
}
.hc-achievement__item:nth-child(1) {
  transition-delay: 0s;
}
.hc-achievement__item:nth-child(2) {
  transition-delay: 0.1s;
}
.hc-achievement__item:nth-child(3) {
  transition-delay: 0.2s;
}
.hc-achievement__item:nth-child(4) {
  transition-delay: 0.3s;
}
.hc-achievement__item:nth-child(5) {
  transition-delay: 0.4s;
}
.hc-achievement__icon {
  align-items: center;
  background-color: var(--hc-3);
  border-radius: 50%;
  color: var(--hc-1);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 2.4rem;
  height: 75px;
  justify-content: center;
  width: 75px;
}
.hc-achievement__icon i {
  font-size: 4rem;
}
.hc-achievement__ttl {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}
.hc-achievement__ttl strong {
  color: var(--hc-primary);
  display: block;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  .hc-achievement__item {
    display: block;
    text-align: center;
  }
  .hc-achievement__icon {
    margin-bottom: 10px;
  }
  .hc-achievement__item br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .hc-achievement__ttl {
    font-size: 1.4rem;
  }
  .hc-achievement__ttl strong {
    font-size: 2rem;
  }
  .hc-achievement__icon {
    height: 50px;
    width: 50px;
  }
  .hc-achievement__icon i {
    font-size: 2rem;
  }
  .hc-achievement__row {
    column-gap: 10px;
  }
  .hc-achievement__item {
    width: calc((100% - 40px) / 5);
  }
}
@media only screen and (max-width: 576px) {
  .hc-achievement {
    overflow: hidden;
    padding-block: 0;
  }
  .hc-achievement__container {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .hc-achievement__row {
    align-items: flex-start;
    column-gap: 0;
    flex-wrap: wrap;
  }
  .hc-achievement__item {
    align-self: stretch;
    border-bottom: 1px solid rgba(84, 163, 48, 0.2);
    border-right: 1px solid rgba(84, 163, 48, 0.2);
    padding: 15px;
    width: 50%;
  }
  .hc-achievement__item:last-child {
    border-bottom: none;
    width: 100%;
  }
  .hc-achievement__ttl {
    font-size: 1.4rem;
  }
  .hc-achievement__ttl strong {
    font-size: 2.5rem;
  }
  .hc-achievement__icon {
    height: 60px;
    width: 60px;
  }
  .hc-achievement__icon i {
    font-size: 2.5rem;
  }
}

.hc-about {
  padding-block: 50px;
  overflow: hidden;
}
.hc-about__row {
  align-items: center;
  column-gap: 50px;
  display: flex;
}
.hc-about__col:first-child {
  width: 60%;
}
.hc-about__col:last-child {
  flex: 1;
}
.hc-about__img {
  overflow: hidden;
  padding-top: 56.2%;
  position: relative;
  width: 100%;
}
.hc-about__img::before {
  animation: about-shape-zoom 0.8s ease-out both;
  background: url("../img/home/bg-shape.webp") no-repeat center center/100%;
  content: "";
  inset: 0;
  position: absolute;
}
.hc-about__img img {
  border: 3px solid var(--hc-1);
  border-radius: 10px;
  height: 88.8%;
  left: 2.8%;
  object-fit: cover;
  position: absolute;
  top: 4.9822064057%;
  width: 94.5%;
}
@keyframes about-shape-zoom {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 1200px) {
  .hc-about__col:first-child {
    width: 50%;
  }
}
@media only screen and (max-width: 992.98px) {
  .hc-about__row {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .hc-about__col {
    width: 100%;
  }
  .hc-about__col:first-child {
    width: 100%;
  }
}
.hc-capability {
  background-color: rgba(90, 48, 13, 0.1);
  padding-block: 50px;
}
.hc-capability__item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hc-capability.is-inview .hc-capability__item {
  opacity: 1;
  transform: translateY(0);
}
.hc-capability.is-inview .hc-capability__item:nth-child(1) {
  transition-delay: 0s;
}
.hc-capability.is-inview .hc-capability__item:nth-child(2) {
  transition-delay: 0.25s;
}
.hc-capability.is-inview .hc-capability__item:nth-child(3) {
  transition-delay: 0.5s;
}
.hc-capability__row {
  column-gap: 30px;
  display: flex;
}
.hc-capability__item {
  color: var(--hc-1);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--hff-title);
  overflow: hidden;
  position: relative;
  width: calc((100% - 60px) / 3);
}
.hc-capability__item::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.5s ease;
  width: 100%;
  z-index: -1;
}
.hc-capability__item img {
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: transform 0.5s ease;
  width: 100%;
  z-index: -2;
}
.hc-capability__item span {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  left: 0;
  padding: 15px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transition: color 0.5s ease, transform 0.5s ease, letter-spacing 0.5s ease, text-shadow 0.5s ease;
  width: 100%;
  z-index: 1;
}
.hc-capability__item em {
  display: block;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--hff-root);
  line-height: 1.5;
  margin-top: 5px;
  text-transform: none;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .hc-capability__item:hover {
    cursor: pointer;
  }
  .hc-capability__item:hover::before {
    background-color: rgba(90, 48, 13, 0.1);
  }
  .hc-capability__item:hover img {
    transform: scale(1.05);
  }
  .hc-capability__item:hover span {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
    transform: translateY(-15px);
  }
}
@media only screen and (max-width: 992.98px) {
  .hc-capability__row {
    column-gap: 10px;
  }
  .hc-capability__item {
    font-size: 2.5rem;
    width: calc((100% - 20px) / 3);
  }
}
@media only screen and (max-width: 576px) {
  .hc-capability__row {
    flex-direction: column;
    row-gap: 10px;
  }
  .hc-capability__item {
    font-size: 1.8rem;
    width: 100%;
  }
}

.hc-project {
  padding-block: 50px;
}
.hc-project__item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hc-project.is-inview .hc-project__item {
  opacity: 1;
  transform: translateY(0);
}
.hc-project.is-inview .hc-project__item:nth-child(1) {
  transition-delay: 0s;
}
.hc-project.is-inview .hc-project__item:nth-child(2) {
  transition-delay: 0.15s;
}
.hc-project.is-inview .hc-project__item:nth-child(3) {
  transition-delay: 0.3s;
}
.hc-project__row {
  column-gap: 30px;
  display: flex;
}
.hc-project__item {
  background-color: var(--hc-1);
  border: 1px solid rgba(90, 48, 13, 0.1);
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
  width: calc((100% - 60px) / 3);
}
.hc-project__avatar {
  display: block;
  overflow: hidden;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.hc-project__avatar img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.5s ease;
  top: 0;
  width: 100%;
}
.hc-project__status {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  color: var(--hc-primary);
  font-size: 1.2rem;
  line-height: 1;
  justify-content: center;
  padding: 8px 10px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.hc-project__status[data-status=completed] {
  background-color: var(--hc-3);
  color: var(--hc-1);
}
.hc-project__status[data-status=progress] {
  background-color: var(--hc-primary);
  color: var(--hc-1);
}
.hc-project__ttl {
  color: var(--hc-root);
  display: block;
  font-size: 1.8rem;
  font-family: var(--hff-title);
  padding: 10px 20px;
  transition: color 0.3s ease;
}
.hc-project__time {
  align-items: center;
  border-top: 1px solid rgba(90, 48, 13, 0.1);
  bottom: 15px;
  color: rgba(90, 48, 13, 0.5);
  display: flex;
  font-size: 1.4rem;
  justify-content: space-between;
  left: 20px;
  padding-top: 10px;
  position: absolute;
  right: 20px;
}
.hc-project__time::after {
  content: "\e941";
  display: inline-block;
  font-size: 2rem;
  font-family: var(--hf-icon);
  transition: transform 0.3s ease, color 0.3s ease;
}
@media only screen and (min-width: 1025px) {
  .hc-project__item:hover {
    cursor: pointer;
  }
  .hc-project__item:hover .hc-project__avatar img {
    transform: scale(1.05);
  }
  .hc-project__item:hover .hc-project__ttl {
    color: var(--hc-3);
  }
  .hc-project__item:hover .hc-project__time::after {
    color: var(--hc-3);
    transform: translateX(5px);
  }
}
@media only screen and (max-width: 992.98px) {
  .hc-project__row {
    column-gap: 10px;
  }
  .hc-project__item {
    width: calc((100% - 20px) / 3);
  }
  .hc-project__ttl {
    font-size: 1.6rem;
    padding-inline: 15px;
  }
  .hc-project__time {
    font-size: 1.2rem;
    left: 15px;
    right: 15px;
  }
  .hc-project__status {
    font-size: 1rem;
    padding: 6px 8px;
    right: 10px;
    top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .hc-project__row {
    flex-direction: column;
    row-gap: 10px;
  }
  .hc-project__item {
    padding-bottom: 40px;
    width: 100%;
  }
  .hc-project__time {
    bottom: 10px;
    padding-top: 5px;
  }
}
.hc-post {
  background-color: rgba(90, 48, 13, 0.1);
  padding-block: 50px;
}
.hc-post--category {
  padding-block: 50px;
}
.hc-post__item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hc-post.is-inview .hc-post__item {
  opacity: 1;
  transform: translateY(0);
}
.hc-post.is-inview .hc-post__item:nth-child(1) {
  transition-delay: 0s;
}
.hc-post.is-inview .hc-post__item:nth-child(2) {
  transition-delay: 0.15s;
}
.hc-post.is-inview .hc-post__item:nth-child(3) {
  transition-delay: 0.3s;
}
.hc-post.is-inview .hc-post__item:nth-child(4) {
  transition-delay: 0.45s;
}
.hc-post__row {
  gap: 50px;
  display: flex;
}
.hc-post__row--3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.hc-post__row--3 .hc-post__col {
  width: calc((100% - 60px) / 3);
}
.hc-post__row--3 .hc-post__item {
  height: 100%;
  padding-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
}
.hc-post__sidebar {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.hc-post__sidebar .hc-post__item {
  height: 100%;
  padding-bottom: 15px;
  opacity: 1;
  transform: translateY(0);
}
.hc-post__sidebar .hc-post__ttl {
  font-size: 1.5rem;
}
.hc-post__col {
  width: calc(50% - 25px);
}
.hc-post__col:last-child {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.hc-post__item {
  align-items: flex-start;
  background-color: var(--hc-1);
  border: 1px solid rgba(90, 48, 13, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 30px;
  position: relative;
  width: 100%;
}
.hc-post__item--small {
  flex-direction: row;
  padding-bottom: 0;
}
.hc-post__item--small .hc-post__avatar {
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  padding-top: 0;
  width: 175px;
}
.hc-post__item--small .hc-post__avatar img {
  position: relative;
}
.hc-post__item--small .hc-post__ttl {
  font-size: 1.6rem;
}
.hc-post__info {
  flex: 1;
  padding-block: 20px;
}
.hc-post__avatar {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  padding-top: 70%;
  position: relative;
  width: 100%;
}
.hc-post__avatar img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 0.5s ease;
  top: 0;
  width: 100%;
}
.hc-post__type {
  background-color: var(--hc-primary);
  display: inline-block;
  color: var(--hc-1);
  font-size: 1rem;
  left: 0;
  line-height: 1;
  padding: 8px 10px;
  position: absolute;
  top: 0;
}
.hc-post__ttl {
  color: var(--hc-primary);
  display: block;
  font-size: 1.8rem;
  font-family: var(--hff-title);
  padding-inline: 20px;
  transition: color 0.3s ease;
}
.hc-post__time {
  color: rgba(90, 48, 13, 0.5);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-left: 20px;
}
@media only screen and (min-width: 1025px) {
  .hc-post__item:hover {
    cursor: pointer;
  }
  .hc-post__item:hover .hc-post__avatar img {
    transform: scale(1.05);
  }
  .hc-post__item:hover .hc-post__ttl {
    color: var(--hc-3);
  }
  .hc-post__item:hover .hc-post__time::after {
    color: var(--hc-3);
    transform: translateX(5px);
  }
}
@media only screen and (max-width: 992.98px) {
  .hc-post__row {
    flex-direction: column;
    row-gap: 10px;
  }
  .hc-post__row--3 {
    gap: 20px;
  }
  .hc-post__row--3 .hc-post__col {
    width: calc((100% - 40px) / 3);
  }
  .hc-post__col {
    width: 100%;
  }
  .hc-post__item {
    width: 100%;
  }
  .hc-post__ttl {
    font-size: 1.6rem;
    padding-inline: 15px;
  }
  .hc-post__time {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .hc-post--category {
    padding-block: 30px;
  }
  .hc-post__row {
    flex-direction: column;
    row-gap: 10px;
  }
  .hc-post__row--3 {
    gap: 10px;
  }
  .hc-post__row--3 .hc-post__col {
    width: calc(50% - 5px);
  }
  .hc-post__item {
    width: 100%;
  }
  .hc-post__item--small {
    flex-direction: column;
  }
  .hc-post__item--small .hc-post__avatar {
    width: 100%;
  }
  .hc-post__time {
    margin-left: 15px;
  }
  .hc-post__avatar {
    width: 100%;
  }
  .hc-post__info {
    width: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .hc-post__row {
    flex-direction: column;
    row-gap: 10px;
  }
  .hc-post__row--3 .hc-post__col {
    width: 100%;
  }
}

.hc-partner {
  padding-block: 50px;
}
.hc-partner__img {
  border: 1px solid rgba(90, 48, 13, 0.25);
  border-left-width: 3px;
  border-right-width: 3px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.hc-partner__img img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.hl-primary {
  background-color: var(--hc-1);
  padding-top: 100px;
}