/*MV*/
.mv {
  position: relative;
  width: 100%;
  height: 70vh;
}

.mv .text-cntr {
  color: #FFF;
  position: absolute;
  top: calc(50% - 142px);
  left: 10%;
  z-index: 10;
}
.mv h1 {
  font-size: var(--heading-XL);
  font-weight: 700;
  line-height: 130%;
  margin-bottom: var(--spacing-M);
}
.mv p {
  font-size: var(--text-L);
  font-weight: 500;
  line-height: 150%;
  margin-bottom: var(--spacing-M);
}
@media(max-width:767px) {
  .mv {
    height: 50vh;
  }
  .mv .text-cntr {
    top: calc(50% - 68px);
    left: 10%;
  }
  .mv h1 {
    font-size: var(--heading-M);
  }
  .mv p {
    font-size: var(--text-M);
  }
}
.top-section {
  margin-top: var(--spacing-XXL);
}
.top-section.last {
  margin-bottom: var(--spacing-XXL);
}
h2 {
  font-family: Roboto;
  font-size: var(--heading-L);
  font-weight: 700;
  border-bottom: 1px solid var(--border-default);
  margin-bottom: var(--spacing-L);
  padding-bottom: var(--spacing-XS);
}
@media(max-width:767px) {
  h2 {
    font-family: Roboto;
    font-size: var(--heading-M);
    font-weight: 700;
    border-bottom: 1px solid var(--border-default);
    margin-bottom: var(--spacing-L);
    padding-bottom: var(--spacing-XS);
  }
}
/*Text Effect*/ :root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}
/* •·•·•·•·•·•·•·•·•·•·•·•·•·H1•·•·•·•·•·•·•·•·•·•·•·•·•·•·•· */
.reveal-text, .reveal-text::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}
.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  font-size: 10vw;
  animation-name: clip-text;
  color: #FFF;
  white-space: nowrap;
  cursor: default;
  &::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    animation-name: text-revealer;
  }
}
@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
/*What We Create*/
.wwc-cntr {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: var(--spacing-L);
}
@media(max-width:767px) {
  .wwc-cntr {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-L);
  }
  .wwc-cntr .l-cntr {
    order: 2;
  }
  .wwc-cntr .r-cntr {
    order: 1;
  }
}
/*Our Group*/
.og-cntr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-L);
}
@media(max-width:767px) {
  .og-cntr {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-L);
  }
}
.og-cntr .icon {
  position: relative;
  display: inline-block;
  font-size: var(--text-S);
  font-weight: 500;
  padding: 8px 12px;
  margin-bottom: 8px;
  margin-right: 8px;
  border-radius: 100px;
}
.og-cntr .icon.problem {
  color: var(--primary);
  background: #FFF;
  border: 1px solid var(--primary);
}
/*Members*/
.m-cntr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: var(--spacing-L);
}
@media(max-width:767px) {
  .m-cntr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-L);
  }
}
.m-cntr .member {
  text-align: center;
}
.m-cntr .img-cntr img {
  border-radius: 100px;
  background: #FFF;
}
.m-cntr .position {
  display: inline-block;
  font-size: var(--text-XS);
  font-weight: 500;
  line-height: 1;
  color: #888;
  margin-bottom: 4px;
}
.m-cntr .name {
  font-size: var(--text-M);
  font-weight: 500;
  line-height: 1;
  margin-bottom: var(--spacing-XXS);
}
.m-cntr .tag {
  font-size: var(--text-XS);
  font-weight: 500;
  line-height: 120%;
  color: var(--primary);
  margin: 0 4px;
}
.accordion-cntr {
  display: none;
}
.accordion-cntr.open {
  display: grid;
}
.accordion .open-text {
  display: inline-block;
}
.accordion .close-text {
  display: none;
}
.accordion.open .open-text {
  display: none;
}
.accordion.open .close-text {
  display: inline-block;
}
.c-button.accordion.open:before {
  content: "-";
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  transition: all .2s ease-out;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
/*Common*/
h3 {
  font-size: var(--heading-M);
  font-weight: 700;
  line-height: 140%;
  font-feature-settings: "palt";
}
h4 {
  font-size: var(--heading-S);
  font-weight: 500;
  line-height: 120%;
  font-feature-settings: "palt";
}
h5 {
  font-size: var(--heading-XS);
  font-weight: 500;
  line-height: 32px;
  font-feature-settings: "palt";
}
@media(max-width:767px) {
  h3 {
    font-size: var(--heading-XS);
  }
  h4 {
    font-size: var(--heading-XS);
  }
  h5 {
    font-size: var(--heading-XXS);
  }
}
.text-center {
  text-align: center;
}
.og-cntr .logo-cntr img {
  border-radius: 6px;
}
.og-cntr .logo-cntr a:hover {
  opacity: 0.5;
  transition: all 0.5s 0s ease;
}
/*Swiper*/
.swiper {
  height: 100%;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-img {
  height: 100%;
}
.swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.swiper-pagination-bullet {
  background-color: var(--primary) !important;
}