@charset "utf-8";

/* ==========================================================================
   AORES — About Aores (EN)
   원본 Elementor CSS 기준. 변경사항은 각 주석 참고.
   ========================================================================== */

/* --------------------------------------------------------------------------
   sub_sct_1 — 스크롤에 따라 폭이 커지는 이미지
   [변경] 중복 선언되어 있던 .sct_1_img_box 규칙 2개를 하나로 병합
          (position:relative 는 뒤 규칙의 sticky 에 덮여 무의미했습니다)
   -------------------------------------------------------------------------- */
.sub_sct_1 .sct_1_img_box {
	position: sticky;
	top: 160px;
	height: 170vh;
}
.sub_sct_1 .sct_1_img_box img {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	max-width: unset;
	width: 50vw;
	height: 100vh;
	display: block;
	margin: 0 auto;
	object-fit: cover;
	transition: all .8s linear;
}

.sub_sct_1 .about_cont {
	display: flex;
	justify-content: center;
	padding: 15rem 0;
}
.sub_sct_1 .about_cont > [class*=_box] { width: 30%; }

.sub_sct_1 .about_cont > .left_box .box_title {
	font-size: 7.2rem;
	font-weight: 700;
	line-height: 1;
}

.sub_sct_1 .about_cont > .right_box { width: 50%; }
.sub_sct_1 .about_cont > .right_box .box_title {
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 2rem;
}
.sub_sct_1 .about_cont > .right_box .box_cont {
	font-size: 2rem;
	line-height: 1.4;
	margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   sub_sct_2 — 패럴랙스 배너
   [변경] 배경 이미지 경로를 절대 도메인(aores175.mycafe24.com) → 루트 상대경로로
   [변경] 마크업에 존재하지 않던 .sct_2_img_box img 규칙 삭제
   -------------------------------------------------------------------------- */
.sub_sct_2 .sct_2_img_box {
	position: relative;
	height: 400px;
	overflow: hidden;
	border-radius: 20px;
	background: url(/wp-content/uploads/2025/01/img_about_2.jpg) no-repeat center center / cover;
	background-attachment: fixed;
}
.sub_sct_2 .sct_2_img_box.ios { background-attachment: unset; }

.sub_sct_2 .sct_2_img_box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .3);
}
.sub_sct_2 .sct_2_img_box p {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 4.8rem;
	font-weight: 700;
	color: var(--color-white);
	opacity: 0;
	transition: all .3s linear;
}
.sub_sct_2 .sct_2_img_box p.aos-animate { opacity: 1; top: 50%; }

/* --------------------------------------------------------------------------
   sub_sct_3 — 카운팅 + 로티 지구본
   ⚠️ #vid_earth 는 z-index:-2 입니다.
      .sub_sct_3 / .cont_wrap / .en-main 에 background 를 주면 지구본이 사라집니다.
   -------------------------------------------------------------------------- */
.sub_sct_3 {
	position: relative;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10rem 0 20rem;
	overflow: hidden;
}
.sub_sct_3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 200px;
	background: linear-gradient(to bottom, transparent, var(--color-white));
}

.sub_sct_3 #vid_earth {
	position: absolute;
	left: 50%;
	bottom: -50vw;
	transform: translateX(-50%);
	width: 100%;
	height: 100vw;
	opacity: .6;
	z-index: -2;
}

.sub_sct_3 .left_box { width: 30%; }
.sub_sct_3 .left_box li {
	font-family: var(--font-poppins);
	font-size: 6.4rem;
	font-weight: 700;
	line-height: 1.1;
}
.sub_sct_3 .left_box .border {
	color: transparent;
	-webkit-text-stroke: 1px var(--gray-060606);
}

.sub_sct_3 .right_box { width: 50%; }
.sub_sct_3 .right_box ul {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sub_sct_3 .right_box ul > li { min-width: 130px; }

.sub_sct_3 .right_box .about_type {
	margin: 0 0 1rem;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--point-color-2);
}
.sub_sct_3 .right_box .about_cont {
	margin: 0 !important;
	font-size: 5.6rem;
	font-weight: 700;
	line-height: 1.2;
}

/* 직원 수 뒤 "+" 기호 */
.sub_sct_3 .right_box ul > li:nth-child(3) .about_cont { position: relative; }
.sub_sct_3 .right_box ul > li:nth-child(3) .about_cont::after {
	content: "\002B";
	position: absolute;
	top: 0;
	font-size: 2.4rem;
	color: var(--gray-060606);
	opacity: 0;
	animation: plus .5s 3s linear forwards;
}
@keyframes plus {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Responsive
   [변경] 내용이 비어 있던 규칙들 삭제
   -------------------------------------------------------------------------- */
@media all and (max-width: 1440px) {
	.sub_sct_1 .about_cont > .left_box .box_title { font-size: 5rem; }
	.sub_sct_2 .sct_2_img_box p { font-size: 4rem; white-space: nowrap; }
	.sub_sct_3 .right_box { width: 70%; }
}

@media all and (max-width: 1024px) {
	.sub_sct_1 .about_cont { flex-direction: column; }
	.sub_sct_1 .about_cont > [class*=_box] { width: 100%; }
	.sub_sct_1 .about_cont > .right_box { width: 100%; margin-top: -5rem; }

	.sub_sct_3 { flex-direction: column; }
	.sub_sct_3 > [class*=_box] { width: 100%; }
	.sub_sct_3 .right_box { width: 100%; margin-top: 2.4rem; }
	.sub_sct_3 .left_box ul {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 1rem;
	}
}

@media all and (max-width: 768px) {
	.sub_sct_1 .sct_1_img_box { height: 200vh; }
	.sub_sct_1 .about_cont > .right_box .box_title { font-size: 2rem; }
	.sub_sct_1 .about_cont > .right_box .box_cont { font-size: 1.6rem; }
	.sub_sct_1 .about_cont > .right_box .box_cont br { display: none; }

	.sub_sct_2 .sct_2_img_box { height: 300px; }
	.sub_sct_2 .sct_2_img_box p { font-size: 3.2rem; text-align: center; }
	.sub_sct_2 .sct_2_img_box p br { display: block; }

	.sub_sct_3 { height: auto; gap: 4rem 0; }
	.sub_sct_3 .left_box ul { flex-direction: column; }
	.sub_sct_3 .right_box ul { flex-direction: column; gap: 4rem 0; }
	.sub_sct_3 .right_box ul > li { text-align: center; }
	.sub_sct_3 .right_box .about_type { font-size: 1.8rem; }
	.sub_sct_3 .right_box .about_cont { font-size: 4rem; }
	.sub_sct_3 #vid_earth { bottom: -30vw; }
}
