@charset "utf-8";
:root{
    --main_color:#144292;
}
*{word-break: keep-all;}

/* 메인 비주얼 */

  /* 히어로 섹션 */
  .hero_section {
	width: 100%;
	height: 1080px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  /* 배경 영역 */
  .hero_section .hero_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
  }
  
  .hero_section .hero_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
  }
  
  .hero_section .hero_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  }
  
  /* 컨텐츠 영역 */
  .hero_section .hero_content {
	position: relative;
	z-index: 10;
	width: 93.75%;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 56px;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* 텍스트 그룹 */
  .hero_section .hero_text_group {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
  }
  
  /* 영문 서브타이틀 */
  .hero_section .hero_subtitle_en {
	text-align: center;
	color: white;
	font-size: 20px;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-weight: 400;
	line-height: 30px;
  }
  
  /* 타이틀 그룹 */
  .hero_section .hero_title_group {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
  }
  
  /* 한글 서브타이틀 */
  .hero_section .hero_subtitle_ko {
    color: var(--GREY-00, #FFF);
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 24px */
    letter-spacing: 0.12px;
  }
  
  /* 메인 타이틀 */
  .hero_section .hero_title {
	text-align: center;
	color: white;
	font-size: 56px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 700;
	line-height: 56px;
	margin: 0;
  }
  
  /* 설명 텍스트 */
  .hero_section .hero_description {
    color: #FFF;
    text-align: center;
    /* Display 1/Regular - 56 */
    font-family: Pretendard;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 72.8px */
    letter-spacing: 1.12px;
  }
  
  /* CTA 버튼 */
  .hero_section .hero_cta_button {
	width: 200px;
	height: 48px;
	padding: 0 1px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	font-size: 15px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 45px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
  }
  
  .hero_section .hero_cta_button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  }
  
  .hero_section .hero_cta_button:active {
	transform: translateY(0);
  }
  
  /* 반응형 - 대형 데스크톱 */
  @media (max-width: 1600px) {
	.hero_section {
	  height: 900px;
	}
	.hero_section .hero_title {
	  font-size: 48px;
	  line-height: 48px;
	}
  
	.hero_section .hero_subtitle_ko {
	  font-size: 24px;
	  line-height: 24px;
	}
  }
  
  /* 반응형 - 태블릿 */
  @media (max-width: 1024px) {
	.hero_section {
	  height: 800px;
	}
	.hero_section .hero_subtitle_en {
	  font-size: 18px;
	  line-height: 27px;
	}
  
	.hero_section .hero_subtitle_ko {
	  font-size: 22px;
	  line-height: 22px;
	}
  
	.hero_section .hero_title {
	  font-size: 42px;
	  line-height: 42px;
	}
  
	.hero_section .hero_description {
	  font-size: 40px;
	  line-height: 130%;
	}
    .hero_section{height: 80vw;}
  }
  
  /* 반응형 - 모바일 */
  @media (max-width: 768px) {
	.hero_section {
	  height: 60vw;
	  min-height: 600px;
	}

	.hero_section .hero_text_group {
	  gap: 18px;
	}
  
	.hero_section .hero_subtitle_en {
	  font-size: 16px;
	  line-height: 24px;
	}
  
	.hero_section .hero_title_group {
	  gap: 12px;
	}
  
	.hero_section .hero_subtitle_ko {
	  font-size: 20px;
	  line-height: 20px;
	}
  
	.hero_section .hero_title {
	  font-size: 36px;
	  line-height: 36px;
	}
  
	.hero_section .hero_description {
	  font-size: 36px;
	  line-height: 130%;
	}
  
	.hero_section .hero_cta_button {
	  width: 180px;
	  height: 44px;
	  font-size: 14px;
	}
  }
  
  /* 반응형 - 작은 모바일 */
  @media (max-width: 480px) {
	.hero_section {
	  min-height: 550px;
	}
  
	.hero_section .hero_subtitle_en {
	  font-size: 14px;
	  line-height: 21px;
	}
  
	.hero_section .hero_subtitle_ko {
	  font-size: 18px;
	  line-height: 18px;
	}
  
	.hero_section .hero_title {
	  font-size: 28px;
	  line-height: 28px;
	}
  
	.hero_section .hero_description {
	  font-size: 26px;
	  line-height: 130%;
	}
  
	.hero_section .hero_description br {
	  display: none;
	}
  
	.hero_section .hero_cta_button {
	  width: 160px;
	  height: 40px;
	  font-size: 13px;
	}

	.hero_section .hero_content{width: auto; padding: 0; max-width: 93.75%;}

	.hero_section {
        height: 40vw;
    }
  }



  /* 서비스 ==================================================*/
  /* Service Section */
.service_section { width: 100%; padding: 120px 0; background: url('/img/service_section_bg.jpg') center center / cover no-repeat; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; }
.service_section__inner { justify-content: center; align-items: flex-start; gap: 40px; display: flex; }
.service_section__card { flex: 1 1 0; align-self: stretch; background: white; overflow: hidden; border-radius: 4px; border: 1px solid #E6E6E6; flex-direction: column; justify-content: flex-start; align-items: center; display: flex; }
.service_section__card_image { width: 100%; height: 300px; overflow: hidden; flex-direction: column; justify-content: center; align-items: center; display: flex; }
.service_section__card_image img { width: 100%; height: 100%; object-fit: cover; }
.service_section__card_content { align-self: stretch; height: 335px; padding: 32px 40px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; display: flex; }
.service_section__card_title { text-align: center; color: var(--main_color); font-size: 24px; font-family: Pretendard; font-weight: 800; line-height: 31px; letter-spacing: 0; word-wrap: break-word; }
.service_section__card_tags { align-self: stretch; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 8px; display: flex; }
.service_section__card_tag { align-self: stretch; padding: 4px 0; background: #F6F6F6; border-radius: 999px; justify-content: center; align-items: center; gap: 8px; display: flex; text-align: center; color: #444444; font-size: 18px; font-family: Pretendard; font-weight: 400; line-height: 27px; letter-spacing: 0; word-wrap: break-word; }
.service_section__card_btn { align-self: stretch; height: 44px; padding: 8px 20px 8px 16px; background: var(--main_color); border-radius: 5px; justify-content: center; align-items: center; gap: 12px; display: flex; text-decoration: none; cursor: pointer; transition: background 0.3s; margin-top: auto; }
.service_section__card_btn:hover { background: #1d56cb; }
.service_section__card_btn_text { color: white; font-size: 16px; font-family: Pretendard; font-weight: 500; line-height: 21px; letter-spacing: 0; word-wrap: break-word; }
.service_section__card_btn_icon { width: 24px; height: 24px; position: relative; }
.service_section__card_btn_icon::after { content: '›'; color: white; font-size: 24px; font-weight: bold; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Responsive */
@media (max-width: 1640px) {
    .service_section { padding: 100px 0; }
    .service_section__inner { width: calc(100% - 240px);}
}

@media (max-width: 1440px) {
    .service_section { padding: 80px 0; }
    .service_section__inner { width: calc(100% - 160px); gap: 32px; }
}

@media (max-width: 1200px) {
    .service_section { padding: 60px 0; }
    .service_section__inner { width: calc(100% - 80px); flex-direction: column; }
    .service_section__card_content { height: auto; min-height: 335px; }
    .service_section__card { flex: 1 1 100%;}
}

@media (max-width: 768px) {
    .service_section { padding: 40px 0; }
    .service_section__inner { width: calc(100% - 40px); gap: 24px; }
    .service_section__card_content { padding: 24px 20px; }
    .service_section__card_title { font-size: 20px; line-height: 26px; }
    .service_section__card_tag { font-size: 16px; line-height: 24px; }
    .service_section__card_btn_text { font-size: 15px; line-height: 20px; }
}

@media (max-width: 480px) {
    .service_section { padding: 32px 0; }
    .service_section__inner { width: calc(100% - 32px); gap: 20px; }
    .service_section__card_image { height: 240px; }
    .service_section__card_content { padding: 20px 16px; gap: 20px; }
    .service_section__card_title { font-size: 18px; line-height: 24px; }
    .service_section__card_tags { gap: 6px; }
    .service_section__card_tag { font-size: 14px; line-height: 21px; padding: 3px 0; }
    .service_section__card_btn { height: 40px; padding: 6px 16px 6px 12px; gap: 8px; }
    .service_section__card_btn_text { font-size: 14px; line-height: 18px; }
    .service_section__card_btn_icon { width: 20px; height: 20px; }
    .service_section__card_btn_icon::after { font-size: 20px; }
}



/* 인트로======================================== */
/* Intro Section */
.intro_section { align-self: stretch; padding: 120px 0; background: linear-gradient(180deg, white 0%, white 100%); overflow: hidden; flex-direction: column; justify-content: center; align-items: center; gap: 80px; display: flex; }
.intro_section__title { text-align: center; color: #222222; font-size: 40px; font-family: Pretendard; font-weight: 700; line-height: 52px; letter-spacing: 0; word-wrap: break-word; margin: 0; }
.intro_section__inner { width: 1320px; justify-content: space-between; align-items: center; display: flex; }
.intro_section__content { width: 647px; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 80px; display: flex; }
.intro_section__text_wrap { align-self: stretch; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 40px; display: flex; }
.intro_section__text { align-self: stretch; color: #666666; font-size: 24px; font-family: Pretendard; font-weight: 400; line-height: 36px; letter-spacing: 0; word-wrap: break-word; margin: 0; }
.intro_section__btn {padding-left: 20px; width: 200px; height: 60px; background: var(--main_color); border-radius: 5px; justify-content: center; align-items: center; gap: 12px; display: flex; text-decoration: none; cursor: pointer; transition: background 0.3s; }
.intro_section__btn:hover { background: #1d56cb; }
.intro_section__btn_text { color: white; font-size: 16px; font-family: Pretendard; font-weight: 500; line-height: 21px; letter-spacing: 0; word-wrap: break-word; }
.intro_section__btn_icon { width: 24px; height: 24px; position: relative; }
.intro_section__btn_icon::after { content: '›'; color: white; font-size: 24px; font-weight: bold; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.intro_section__image { width: 601px; height: 344px; position: relative; overflow: hidden; border-radius: 4px; }
.intro_section__image img { width: 601px; height: 401px; position: absolute; left: 0; top: -28px; object-fit: cover; }

/* Responsive */
@media (max-width: 1640px) {
    .intro_section { padding: 100px 0; gap: 60px; }
    .intro_section__inner { width: calc(100% - 240px); max-width: 1320px; }
    .intro_section__content { width: 50%; }
    .intro_section__image { width: 45%; height: auto; aspect-ratio: 601 / 344; }
    .intro_section__image img { width: 100%; height: auto; top: -5%; }
}

@media (max-width: 1440px) {
    .intro_section { padding: 80px 0; gap: 50px; }
    .intro_section__inner { width: calc(100% - 160px); }
    .intro_section__title { font-size: 36px; line-height: 48px; }
    .intro_section__text { font-size: 22px; line-height: 33px; }
    .intro_section__content { gap: 60px; }
    .intro_section__text_wrap { gap: 32px; }
}

@media (max-width: 1200px) {
    .intro_section { padding: 60px 0; gap: 40px; }
    .intro_section__inner { width: calc(100% - 80px); flex-direction: column; gap: 40px; }
    .intro_section__title { font-size: 32px; line-height: 44px; }
    .intro_section__content { width: 100%; gap: 40px; }
    .intro_section__text { font-size: 20px; line-height: 30px; }
    .intro_section__text_wrap { gap: 24px; text-align: center;}
    .intro_section__image { width: 100%;}
}

@media (max-width: 768px) {
    .intro_section { padding: 40px 0; gap: 32px; }
    .intro_section__inner { width: calc(100% - 40px); gap: 32px; }
    .intro_section__title { font-size: 26px; line-height: 36px; }
    .intro_section__title br { display: none; }
    .intro_section__content { gap: 32px; }
    .intro_section__text { font-size: 18px; line-height: 27px; }
    .intro_section__text br { display: none; }
    .intro_section__text_wrap { gap: 20px; }
    .intro_section__btn { height: 40px; padding: 6px 16px 6px 12px; gap: 8px; }
    .intro_section__btn_text { font-size: 15px; line-height: 20px; }
}

@media (max-width: 480px) {
    .intro_section { padding: 32px 0; gap: 24px; }
    .intro_section__inner { width: calc(100% - 32px); gap: 24px; }
    .intro_section__title { font-size: 22px; line-height: 30px; }
    .intro_section__content { gap: 24px; }
    .intro_section__text { font-size: 16px; line-height: 24px; }
    .intro_section__text_wrap { gap: 16px; }
    .intro_section__btn { height: 38px; padding: 5px 14px 5px 10px; gap: 6px; }
    .intro_section__btn_text { font-size: 14px; line-height: 18px; }
    .intro_section__btn_icon { width: 20px; height: 20px; }
    .intro_section__btn_icon::after { font-size: 20px; }
    .intro_section__image { height: 240px; }
}


/* 파트너 ============================================*/
/* Partners Section */
.partners_section { width: 100%; padding: 120px 0;

    background:
    linear-gradient(0deg, rgba(115, 115, 115, 0) 1.04%, #fff 92.97%),
    url('/img/partners_bg.jpg') center center / cover no-repeat,
    lightgray;
    
    flex-direction: column; justify-content: flex-start; align-items: center; gap: 56px; display: flex; position: relative; }
.partners_section__gradient { width: 100%; height: 768px; background: linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, #D9D9D9 100%); position: absolute; top: 0; left: 0; pointer-events: none; }
.partners_section__bg_image { width: 100%; height: auto; max-height: 1440px; object-fit: cover; }
.partners_section__title { text-align: center; color: #222222; font-size: 40px; font-family: Pretendard; font-weight: 700; line-height: 52px; letter-spacing: 0; word-wrap: break-word; margin: 0; }
.partners_section__logos {width: 100%; height: auto; background: rgba(255, 255, 255, 0.20); border-radius: 10px; padding: 24px 76px; border: 1px solid white; backdrop-filter: blur(20px); display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start; gap: 80px; }
.partners_section__logo { flex:1 1 calc((100% / 6) - 68px); height: auto; object-fit: contain; display: flex; justify-content: center; }
