/* Main layout wrapper */
.lp-main {
    display: flex;
    height: 100vh; 
    overflow: hidden; 
}

/* LEFT SIDEBAR */
.lp-left-sidebar {
    width: calc((100vw - 400px) / 2); /* auto expand left */
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden; 
}

/* MIDDLE CONTENT (scrollable) */
.lp-content {
    width: 400px;
    height: 100vh;
    overflow-y: scroll; 
    overflow-x: hidden;
}

/* RIGHT SIDEBAR */
.lp-right-sidebar {
    width: calc((100vw - 400px) / 2); 
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* OPTIONAL — Hide scrollbar for aesthetic */
.lp-content::-webkit-scrollbar {
    width: 0;
}


.sidebar-container {
	width: 100%;
	height: 100%;
}

.sidebar-container .sidebar-details{
	width: 100%;
	height: 100%;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}


.nav-menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
    max-width: 300px;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
	background-image: linear-gradient(var(--base-3), var(--base-3));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
    padding-bottom: 3px;
}

.nav-menu li a .img-wrapper {
    background-color: var(--base-3);
    padding: 6px;
    border-radius: 50%;
}

.nav-menu li a:hover {
    color: var(--base-3);
	background-position: bottom left;
    background-size: 100% 1px;
}


.button {
    border-radius: 44px;
	transition: 0.3s;
}

.button-with-shadow {
	box-shadow: 0 3px 5px 0 #2D337A26;
}

.btn-line {
    background-color: #05C756;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-line::before {
    position: absolute;
    content: "";
    background: var(--base-2);
    width: 400px;
    height: 150px;
    z-index: -1;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.btn-line:hover::before {
    top: -30px;
    left: -30px;
}


.btn-line .img-wrapper {
    background-color: var(--base-2);
    padding: 5px;
    border-radius: 50%;
	transition: 0.3s;
}

.button span, .button img {
	transition: 0.3s;
}

.btn-line:hover .line-icon {
    filter: brightness(0) saturate(100%) invert(54%) sepia(83%) saturate(453%) hue-rotate(87deg) brightness(95%) contrast(96%);
}

.btn-line:hover span {
	color: #05C756;
}

.btn-line:hover .img-wrapper {
	background-color: #05C756;
}

.btn-line:hover .img-wrapper img {
	filter: brightness(0) invert(1);
}

.btn-line:hover {
	background-color: var(--base-2);
}

.btn-custom-white {
    border: 1px solid var(--base-3);
    background-color: var(--base-2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
	position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-custom-white::before {
    position: absolute;
    content: "";
    background: var(--base-3);
    width: 400px;
    height: 150px;
    z-index: -1;
    border-radius: 50%;
    top: 100%;
    left: 100%;
    transition: 0.3s all;
}

.btn-custom-white:hover::before {
    top: -30px;
    left: -30px;
}


.btn-custom-white .img-wrapper {
    background-color: var(--base-3);
    padding: 5px;
    border-radius: 50%;
    transition: 0.3s;
}

.btn-custom-white:hover {
	background-color: var(--base-3)
}

.btn-custom-white:hover span {
	color: var(--base-2);
}

.btn-custom-white:hover img {
	filter: brightness(0) saturate(100%) sepia(10%) saturate(120%) hue-rotate(350deg) brightness(90%) contrast(95%);
}

.btn-custom-white:hover .img-wrapper {
	background-color: var(--base-2);
}

#hero {
	background-image: url('/new/wp-content/uploads/2025/12/hero-bg-container.png');
	background-size: cover;
	background-repeat: no-repeat;
	height: 496px;
}

#hero h3 {
    background-color: var(--base-2);
    padding: 0 5px;
	width: fit-content;
	line-height: 1.5em;
}

.three-circle {
    margin-left: 5px;
    position: relative;
    z-index: 999;
    margin-top: -90px;
}

.three-circle .circle {
    border: 1px solid var(--base-3);
    border-radius: 50%;
    height: 125px;
    width: 125px;
    box-shadow: 0 2px 4px 0 #42372F26;
    background-color: var(--base-1);
}

.three-circle .circle img {
    margin-top: -7px;
}

.text-with-bg-3 {
    background-color: var(--base-3);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4em;
    padding: 1px 5px 0 5px;
}

.yt-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.yt-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-with-slash-line::before {
    content: "＼";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    color: var(--base-3);
    font-size: 10px;
}

.text-with-slash-line::after {
    content: "／";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    color: var(--base-3);
    font-size: 10px;
}

.point-container .font-whis {
    position: absolute;
    top: -28px;
    left: -12px;
    transform: rotate(353deg);
}

.point-container img {
    border-radius: 10px;
}

.wings-flip-logo {
    transform: scaleX(-1);
}

.text-with-border {
    padding: 8px 12px;
    border: 1.5px solid var(--base-3);
    width: fit-content;
}


.acc-icon {
    font-size: 40px;
    width: 40px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
}


.acc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
		max-height 0.45s ease,
		opacity 0.35s ease;
}

.acc-header {
	border: none;
}

.acc-item.active .acc-content {
    opacity: 1;
	padding: 15px 10px;
	border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


.acc-arrow {
  position: relative;
  width: 20px;
  margin-right: 20px;
}

.acc-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  border-left: 2px dotted #42372F;
  transition: height 0.4s ease;
}

.acc-arrow::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #42372F;
  border-bottom: 2px solid #42372F;
}


.line-section {
    background-image: url(/new/wp-content/uploads/2025/12/cta-bg-image.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 520px;
    background-position: bottom;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  column-gap: 15px;
  animation: marquee 60s linear infinite;
  will-change: transform;
}

.staff-year {
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #42372fc9 !important;
}

.staff-logo {
    width: 78px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.custom-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 350px;
	box-shadow: 0 3px 5px 0 #42372F0D;
	padding-bottom: 15px;
}

.carousel-display {
  width: 350px;
  border-radius: 8px;
}

.carousel-display .img-wrapper img, .carousel-display .img-wrapper {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.staff-info {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.pink-arrow {
    background-color: var(--accent-2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
	cursor: pointer;
}

.staff-title {
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 150px;
}

.staff-title p {
    background-color: var(--base-2);
    width: fit-content;
    padding: 2px 10px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.carousel-buttons {
    padding: 5px 15px;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
	box-shadow: 0 3px 5px 0 #42372F0D;
}

.nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
    color: var(--base-3);
}

.nav:hover {
  background: rgba(0,0,0,0.05);
}

/* DOTS */
.dots {
    display: flex;
    gap: 20px;
    margin-top: 2px;
	align-items: center;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
}

.dots span.active {
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1.5px solid var(--base-3);
    position: relative;
}

.dots span.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 12px;
    background: var(--base-3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


.side-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
}

.job-bottom-line {
    padding-bottom: 15px;
    border-bottom: 1.5px solid #42372f36;
}

.border-bottom-3 {
	border-bottom: 1px solid var(--base-3);
	padding-bottom: 1px;
}

.job-bottom-line ul li::marker {
    font-size: 11px;
}

#faq .acc-content {
	border-radius: unset !important;
}

.lp-left-sidebar .left-sidebar-content {
    background-image: url(/new/wp-content/uploads/2025/12/left-wing-sidebar-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}


.lp-right-sidebar .left-sidebar-content {
    background-image: url(/new/wp-content/uploads/2025/12/right-wing-sidebar-bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.flow-container {
    min-width: 150px;
    height: 130px;
    box-shadow: 0 3px 5px 0 #2D337A26;
    border-radius: 8px;
	margin-top: 30px;
	margin-bottom: 20px;
}

.flow-step {
    background-color: var(--accent-1);
    display: flex;
    flex-direction: column;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 0;
	justify-content: center;
}

.line-second-section {
    background-image: url(/new/wp-content/uploads/2025/12/cta-2-background.png) !important;
}

.flow-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.flow-scroll::-webkit-scrollbar {
  display: none;
}

.flow-track {
  display: flex;
  width: max-content;
}

.flow-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.flow-scroll {
  cursor: grab;
}

.flow-scroll.dragging {
  cursor: grabbing;
  user-select: none;
}


.hamburger {
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 1px;
	background: var(--base-3);
}

/* ACTIVE STATE */
.hamburger.active span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-4px) rotate(-47deg);
}

.header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--base-1);
    padding: 20px 20px 50px;
    z-index: 9999;
    margin-top: 110px;

    /* animation setup */
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    overflow: hidden;

    transition:
        max-height 0.45s ease,
        opacity 0.3s ease,
        transform 0.35s ease;
}

.header-nav.active {
    max-height: 100vh; /* large enough for menu */
    opacity: 1;
    transform: translateY(0);
}

.header-nav li {
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
}

.header-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delay */
.header-nav.active li:nth-child(1) { transition-delay: 0.05s; }
.header-nav.active li:nth-child(2) { transition-delay: 0.1s; }
.header-nav.active li:nth-child(3) { transition-delay: 0.15s; }
.header-nav.active li:nth-child(4) { transition-delay: 0.2s; }
.header-nav.active li:nth-child(5) { transition-delay: 0.25s; }
.header-nav.active li:nth-child(6) { transition-delay: 0.3s; }
.header-nav.active li:nth-child(7) { transition-delay: 0.35s; }
.header-nav.active li:nth-child(8) { transition-delay: 0.4s; }
.header-nav.active li:nth-child(9) { transition-delay: 0.45s; }

.header-nav ul {
    max-width: 260px;
    margin: auto;
}

.weak-process .acc-header {
    padding-left: 12px;
}

.staff-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.staff-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999999999999;
}

/* Modal box animation */
.staff-modal {
  background: #fff;
  width: 95%;
  max-width: 500px;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 5px 0 #42372F0D;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.staff-modal-overlay.active .staff-modal {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.staff-modal-close {
    right: 12px;
    position: sticky;
    top: 5px;
    margin-left: auto;
    display: block;
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    margin-bottom: -50px;
	color: var(--base-3);
}


.staff-modal-body img {
    height: 265px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.staff-modal-body .staff-title {
    top: 170px;
}

.staff-modal-body .img-wrapper {
    background-color: #bcbcbcab;
}

.text-with-left-line {
    padding-left: 15px;
    border-left: 1.5px solid #42372fed;
}

.staff-modal {
  scrollbar-width: thin;
  scrollbar-color: rgba(66, 55, 47, 0.3) transparent;
}

.staff-modal::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.staff-modal::-webkit-scrollbar-track {
  background: transparent;
}

.staff-modal::-webkit-scrollbar-thumb {
  background-color: rgba(66, 55, 47, 0.22);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.35s ease, background-color 0.3s ease;
}

.scrolling.staff-modal::-webkit-scrollbar-thumb,
.staff-modal:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}

.staff-modal::-webkit-scrollbar-thumb:hover {
  background-color: rgba(66, 55, 47, 0.45);
}


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* When visible */
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
	.hamburger {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
/*     .lp-content {
        width: 100%;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
    } */
	
/* 	section#header {
		position: fixed;
		width: 100%;
		z-index: 999999;
		background-color: var(--base-1);
		box-shadow: 0 3px 5px 0 rgba(45, 51, 122, 0.15);
	} */

/* 	section#hero {
		margin-top: 95px;
	} */

	.header-nav {
		margin-top: 95px;
		box-shadow: 0 3px 5px 0 rgba(45, 51, 122, 0.15);
	}
	
	.mobile-line-fixed {
		display: block;
		position: fixed;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 9999999;
	}
	
	.mobile-line-fixed .btn-line {
		width: 300px;
		border-top-right-radius: 8px;
		border-top-left-radius: 8px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	
	.mobile-line-fixed .text-with-slash-line::before, .mobile-line-fixed .text-with-slash-line::after {
		color: var(--base-2);
	}
	
	.mobile-line-fixed .btn-line:hover .text-with-slash-line::before, .mobile-line-fixed .btn-line:hover .text-with-slash-line::after, .mobile-line-fixed .btn-line:hover .text-with-slash-line {
		color: rgb(5, 199, 86);
	}
	
	.custom-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .carousel-track {
    display: flex;
    width: max-content;
  }

  .carousel-slide {
    scroll-snap-align: center;
    flex: 0 0 auto;
  }

  /* hide scrollbar (optional) */
  .custom-carousel::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 1165px) {
	.lp-left-sidebar .sidebar-container, .lp-right-sidebar .sidebar-container{
		display: none;
	}
}

@media screen and (max-width: 450px) {
	.lp-content {
        width: 450px;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
	
	section#header {
		position: fixed;
		width: 100%;
		z-index: 999999;
		background-color: var(--base-1);
		box-shadow: 0 3px 5px 0 rgba(45, 51, 122, 0.15);
	}
	
	.lp-right-sidebar, .lp-left-sidebar {
		width: calc((100vw - 450px) / 2);
	}
	
	section#hero {
		margin-top: 95px;
	}

	
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
}



