body {
  background-color: var(--white);
  /* overflow-x: hidden; */
}
footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#hero {
  width: 100%;
  height: 100svh;
  background-color: var(--black);
  overflow: hidden;
  position: relative;
  z-index: 2;
  & #hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    & .hero-banner {
      height: 100svh;
      width: 100%;
      background-size: cover;
      background-position: center;
      position: absolute;
      z-index: 1;
      opacity: 0;
      transition: all 400ms ease-in-out;
    }
    & #hero-banner1 {
      opacity: 0;
      background-image: url(../asset/home/banner/banner04.png);
    }
    & #hero-banner2 {
      opacity: 0;
      background-image: url(../asset/home/banner/176770.png);
    }
    & #hero-banner3 {
      opacity: 0;
      background-image: url(../asset/home/banner/pexels-mikhail-nilov-6592700\ 1.png);
    }
    & #hero-banner4 {
      opacity: 0;
      background-image: url(../asset/home/banner/asset_management.jpg);
    }
    & #hero-content {
      z-index: 2;
      width: fit-content;
      height: fit-content;
      margin: 0 40% 0 10%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      & #hero-content-box {
        opacity: 0;
        width: fit-content;
        min-width: 35vw;
        max-width: 45vw;
        height: fit-content;
        background-image: linear-gradient(
          135deg,
          rgba(var(--black-rgb), 0.8),
          rgba(var(--black-rgb), 0.4)
        );
        backdrop-filter: blur(6px);
        border-radius: 30px;
        border: solid 1px rgba(var(--g-light-rgb), 0.7);
        box-shadow: 10px 10px 20px rgba(var(--black-rgb), 0.4);
        padding: clamp(20px,3vh,40px) clamp(30px,2.4vw,54px);
        text-wrap: wrap;
        & p {
          margin-bottom: 0;
        }
      }
      & .content-space {
        width: 100%;
        height: 0;
      }
      & #hero-link-box {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
        & #lead-line {
          height: 2px;
          width: 100%;
          margin: auto 30px auto 0;
          border-radius: 0 1px 1px 0;
          background-image: linear-gradient(
            90deg,
            rgba(var(--g-light-rgb), 0),
            rgba(var(--g-light-rgb), 1) 90%
          );
          opacity: 0;
          transition: all 300ms ease-in-out;
        }
        & .button {
          opacity: 0;
          margin: 0 !important;
          box-shadow: 10px 10px 20px rgba(var(--black-rgb), 0.4);
          font-weight: 400;
        }
      }
    }
  }
  & #hero-navi-container {
    width: 100%;
    height: 12vh;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: flex;
    flex-direction: row;
    & .sep-line {
      height: 100%;
      width: 1px;
      background-image: linear-gradient(180deg, var(--g-light), var(--black));
      /* background-color: var(--g-light); */
      z-index: 2;
    }
    & .hero-navi {
      width: 25%;
      height: 100%;
      background: linear-gradient(
        180deg,
        var(--d1, rgba(var(--black-rgb), 0.2)),
        var(--d2, rgba(var(--black-rgb), 1))
      );
      backdrop-filter: blur(5px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 max(16px, 2%);
      text-wrap: nowrap;
      z-index: 1;
      cursor: pointer;
      outline: none;
      & ::after {
        content: "";
        height: 80%;
        aspect-ratio: 3/2;
        border-radius: 50%;
        background-color: var(--g-light);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        opacity: 0;
        filter: blur(32px);
        transition: opacity 300ms ease-in-out;
        z-index: 2;
      }
      & h3 {
        font-size: clamp(18px,1.8vw,28px);
        z-index: 3;
        margin-bottom: 0;
        cursor: pointer;
        opacity: 0.8;
        transition: color 300ms ease-in-out;
      }
      & #navi-header1 {
        color: var(--g-main);
      }
      & p {
        font-size: clamp(14px,1vw,20px);
        z-index: 3;
        margin-bottom: 0;
        opacity: 0.4;
        transition: opacity 300ms ease-in-out;
        cursor: pointer;
      }
    }
    & .hero-navi:hover {
      & ::after {
        opacity: 0.6;
      }
      & h3 {
        opacity: 1;
      }
      & p {
        opacity: 0.8;
      }
    }

    /* & .hero-navi::before {
    } */
  }
  & #hero-page-selector {
    height: 30px;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    & .arrow-container {
      height: 100%;
      width: fit-content;
      margin: 0 20px;
      outline: none;
      cursor: pointer;
      & svg {
        height: 100%;
        opacity: 0.2;
        transition: all 300ms ease-in-out;
      }
    }
    & .arrow-container:hover {
      & svg {
        opacity: 1;
      }
    }
  }
}
@media only screen and (max-width: 840px) {
  #hero-navi-container {
    display: none !important;
  }
}
@media only screen and (max-width: 700px) {
  #hero-content {
    margin: 25vh 12vw 15vh !important;
    height: 80vh !important;
    & #hero-content-box {
      min-width: 65vw !important;
      max-width: 75vw !important;
    }
  }
}
@keyframes zoomOut {
  0% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@keyframes zoomIn {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(200px);
    opacity: 0;
  }
}
@keyframes slideOutL {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(-150%);
    opacity: 0;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes slideInR {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes scaleUpX {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

#home-content {
  background-color: var(--black);
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: center;
  & .home_stat {
    width: 100%;
    min-height: fit-content;
    height: 100lvh;
    overflow: visible;
    background-image: url(../asset/home/home_stat.png);
    background-size: cover;
    background-position: center;
    position: relative;
    /* align-items: center;
        justify-content: center; */
    align-content: center;
    transition: all 300ms ease-in-out;
  }
}

.counters {
  height: fit-content;
  width: 64%;
  min-width: 300px;
  max-width: 1920px;
  margin: 150px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  transition: all 300ms ease-in-out;
  & div {
    min-width: 240px;
    width: 18vw;
    max-width: 480px;
    min-height: 320px;
    height: auto;
    /* max-height: 640px; */
    border-radius: 30px;
    padding: clamp(20px,3vh,40px) clamp(30px,2.4vw,54px);
    background: linear-gradient(
        90deg,
        var(--c1, rgba(var(--white-rgb), 0.05)),
        var(--c2, rgba(var(--white-rgb), 0.12)) 51%,
        var(--c3, rgba(var(--g-light-rgb), 0.25))
      )
      var(--x, 0) / 200%;
    backdrop-filter: blur(10px);
    border-top: solid 1px rgba(var(--white-rgb), 0.2);
    border-bottom: solid 1px rgba(var(--white-rgb), 0.2);
    box-shadow: 0 5px 15px var(--black);
    transition: all 300ms ease-in-out;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    & img {
      height: 80px;
      margin: 20px 0;
    }
    & h2 {
      font-family: "Prompt", sans-serif;
      font-size: clamp(38px, 3.4vw, 52px);
      font-weight: 600;
      color: var(--g-light);
    }
    & p {
      font-weight: 100;
      color: var(--white);
      padding: 0 20px;
      text-align: center;
      opacity: 60%;
    }
  }
  & div:hover {
    /* box-shadow: 0 0 30px var(--g-light); */
    --x: 100%;
    border-top: solid 1px rgba(var(--g-light-rgb), 0.2);
    border-bottom: solid 1px rgba(var(--g-light-rgb), 0.2);
  }
}
@media only screen and (max-width: 1200px) {
  .counters {
    width: 80%;
    transition: 300ms;
  }
}
@media only screen and (max-width: 1080px) {
  .stat_grad {
    backdrop-filter: blur(2px);
    transition: 500ms;
  }
}
@media only screen and (max-width: 960px) {
  .home_stat {
    height: 100% !important;
  }
  .counters {
    height: 1080px;
    flex-direction: column;
    align-items: center;
  }
  .stat_grad {
    backdrop-filter: blur(5px);
    transition: 500ms;
  }
}

#home-solution {
  width: 100%;
  max-width: 1440px;
  height: 500lvh;
  position: relative;
  /* padding: 0 0 0 10%; */
  margin: 50px 0;
  display: flex;
  flex-direction: row;
  z-index: 5;
  & .solution-left {
    width: auto;
    height: auto;
    position: absolute;
    justify-content: center;
    padding-right: 30px;
    & #solution-text-container {
      width: 40%;
      height: 70%;
      position: fixed;
      top: 15%;
      left: -100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      opacity: 1;
      padding-right: clamp(50px,6vw,96px);
      transition: all 300ms ease-in-out;
      & .solu-offer {
        font-size: clamp(16px, 3vw, 24px);
        margin-bottom: 0;
      }
    }
    #solution-card {
      width: fit-content;
      border-radius: 30px;
      border-top: solid 1px rgba(var(--white-rgb), 0.2);
      border-left: solid 1px rgba(var(--white-rgb), 0.2);
      padding: clamp(20px,3vh,40px) clamp(30px,2.4vw,54px);
      margin: 20px 0 30px;
      background-image: linear-gradient(
        135deg,
        rgba(var(--white-rgb), 0.2),
        rgba(var(--white-rgb), 0.05)
      );
      & h2 {
        color: var(--g-main);
      }
      & p {
        margin-bottom: 0;
      }
    }
    .solu-card-out {
      animation: slideOut 300ms ease-in-out forwards;
    }
    .solu-card-in {
      animation: slideIn 300ms ease-in-out forwards;
    }
    .solu-cont-anim-in {
      animation: slideIn 500ms ease-in-out forwards;
    }
    .solu-cont-anim-out {
      animation: slideOutL 500ms ease-in-out forwards;
    }
  }
  & .solution-right {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    height: fit-content;
    scrollbar-width: 0px;

    & .solution {
      height: 100lvh;
      width: 100%;
      position: relative;
      padding: 15% 0;

      .solution-img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        object-fit: cover;
        overflow: hidden;
        & img {
          height: 100%;
          width: 100%;
          object-fit: cover;
        }
      }
    }
  }
}
@media only screen and (max-width: 1600px) {
  .solution-right {
    & .solution {
      width: 85% !important;
    }
  }
}
@media only screen and (max-width: 700px) {
  #home-solution {
    display: none !important;
  }
  .home-solution-small {
    display: flex !important;
  }
}
.home-solution-small {
  width: 100%;
  height: fit-content;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  z-index: 5;
  & .s-solu-head {
    text-align: center;
    margin: 10lvh 0 0;
    & p {
      font-size: clamp(16px, 3vw, 24px);
      margin-bottom: 0;
    }
  }
  & .s-solu-content {
    height: 60lvh;
    width: 100%;
    background-color: black;
    border-radius: 30px;
    margin: 30px 0 0;
    border-top: solid 1px rgba(var(--white-rgb), 0.4);
    border-left: solid 1px rgba(var(--white-rgb), 0.4);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    & .s-solu-textbox {
      width: 100%;
      height: fit-content;
      position: absolute;
      left: 0;
      bottom: 0;
      backdrop-filter: blur(5px);
      padding: 20px 30px;
      background-image: linear-gradient(
        135deg,
        rgba(var(--black-rgb), 0.9),
        rgba(var(--black-rgb), 0.5)
      );
      & p {
        margin-bottom: 0;
      }
    }
  }
  & .button {
    margin-left: 0;
  }
}

.home-about {
  width: 100%;
  height: 90lvh;
  min-height: fit-content;
  position: relative;
  margin: 100px 0 50px;
  z-index: 0;
  justify-content: center;
  & .about-bg-container {
    width: 100%;
    height: 60lvh;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(0, auto, auto, 0);
    z-index: 0;
    & .about-bg {
      width: 100vw;
      height: 100lvh;
      background-image: url(../asset/home/tsh_light-71.jpg);
      background-size: cover;
      background-position: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 0;
    }
  }
  & .about-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    width: 96vw;
    /* max-width: 1440px; */
    min-width: 300px;
    padding: 0 10%;
    justify-content: space-between;
    & .about-title {
      display: flex;
      flex-direction: column;
      margin-right: 50px;
      justify-content: center;
      opacity: 0;
      & h1 {
        font-size: clamp(6rem,8vw,12rem);
        filter: drop-shadow(4px 4px 20px var(--black));
        margin-bottom: 0;
      }
    }
    & .about-content {
      display: flex;
      flex-direction: column;
      width: auto;
      max-width: 500px;
      justify-content: center;
      align-items: flex-end;
      /* opacity: 0; */

      & .about-desc {
        padding: clamp(20px,3vh,40px) clamp(30px,2.4vw,54px);
        backdrop-filter: blur(5px);
        background-image: linear-gradient(
          135deg,
          rgba(var(--black-rgb), 0.8),
          rgba(var(--black-rgb), 0.3)
        );
        border-radius: 30px;
        border: solid 1px rgba(var(--b-main-rgb), 0.2);
        box-shadow: 5px 5px 30px var(--black);
        margin-bottom: 20px;
        & p {
          margin-bottom: 0;
        }
      }
    }
    & .about-anim {
      animation: slideIn 1000ms ease-in-out forwards;
    }
    & .about-anim-delay {
      animation: opacityIn 1000ms 500ms ease-in-out forwards;
    }
  }
}
@media only screen and (max-width: 750px) {
  .home-about {
    margin: 100px 0 200px !important;
  }
  .about-bg-container {
    height: 50lvh !important;
  }
  .about-container {
    flex-direction: column !important;
    position: relative !important;

    align-items: center;
    top: 50% !important;
    & .about-title {
      position: absolute;
      top: 60;
      transform: translateY(-50%) !important;
      margin-right: 0 !important;
      /* text-align: center; */
    }
    & .about-content {
      position: absolute;
      margin: 130px 50px 0;
    }
  }
}

#home-content .deco {
  border-radius: 999px;
  position: absolute;
  z-index: 4;
}

.home_contact {
  width: 100%;
  height: 36vw;
  min-height: 240px;
  overflow: hidden;
  position: relative;
  background-color: var(--black2);
  background-image: url("../asset/home/home_contact.png");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_contact h1 {
  font-size: clamp(18px, 3vw, 28px);
  text-align: center;
  font-weight: 300;
  padding: 0 20px;
  min-width: 300px;
}
.contact_link {
  margin: 2vw 0 7vw;
  /* background-color: var(--g-light); */
  padding: 2vw 4vw;
  border-radius: 999px;
  font-family: "Raleway", sans-serif;
  font-size: clamp(20px, 2.5vw, 36px);
  color: var(--g-light);
  border: solid 4px var(--g-light);
  font-weight: 700;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  min-width: 180px;
  background-image: linear-gradient(
    135deg,
    rgba(var(--white-rgb), 0.2),
    rgba(var(--white-rgb), 0.05)
  );
  backdrop-filter: blur(5px);
}
.contact_link:hover {
  text-decoration: none;
  background-color: var(--white);
  color: var(--g-main);
  box-shadow: 0 0 40px var(--g-light);
  border: solid 4px var(--white);
}
.home_contact .smooth {
  position: absolute;
  bottom: 0px;
  height: 6vw;
  width: 100%;
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255),
    rgba(255, 255, 255, 0)
  );
}
@media only screen and (max-width: 800px) {
  .contact_link {
    border: solid 3px var(--g-light);
    font-weight: 500;
    padding: 15px 20px;
  }
}

.logo_container {
  /* logo carousel */
  padding: 15px 0;
  background-color: var(--white);
  margin: 0 20px;
  height: auto;
  min-height: fit-content;
  align-content: center;
  z-index: 2;
}
.logo_container h2 {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: clamp(24px, 6vw, 36px);
  color: var(--g-dark);
  font-weight: 700;
  margin: 20px 0;
}
.partner-logos {
  margin-bottom: 20px;
  /* min-width: 600px; */
  height: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.slide {
  display: flex;
  justify-content: center;
  height: 120px;
  min-width: 20%;
}
.slide img {
  object-fit: contain;
  height: 100%;
  width: 160px;
  max-width: 60%;
  margin: 0 auto;
}
.slick-slide {
  margin: 0;
}
.slick-slide img {
  width: 100%;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100% !important;
  padding: 0 0 !important;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-initialized .slick-slide {
  display: block;
}
.copy {
  padding-top: 250px;
}
