@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainImg {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    color: #0F1B2A;
  }
  51% {
    color: #fff;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes width100 {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes width1200 {
  0% {
    width: 1200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes zIndex {
  0% {
    z-index: 999;
  }
  100% {
    z-index: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0F1B2A;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #0F1B2A;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

html, body {
  scroll-behavior: smooth;
}

.pc-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

.mobile-br {
  display: none;
}

@media all and (max-width: 1024px) {
  .pc-hidden {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
}
.wrap {
  position: relative;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
header .header {
  padding: 0 50px;
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: 0.3s;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  header .header {
    padding: 0 25px;
  }
}
header .header .logo {
  width: 9.75rem;
}
header .header .logo img {
  width: 100%;
}
header .header nav ul {
  display: flex;
  gap: 65px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  header .header nav ul {
    gap: 35px;
  }
}
header .header nav ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
header .header nav ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -11px;
  left: 0;
  background-color: #6938EF;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
header .header nav ul li.on::after {
  visibility: visible;
  transform: scaleX(1);
}
header .header nav ul li.on a, header .header nav ul li:hover a {
  color: #6938EF;
}
header .header nav ul li:hover::after {
  visibility: visible;
  transform: scaleX(1);
}
header .header nav ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
header .header .login {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header .login .btn-tel {
  display: inline-flex;
  margin-right: 10px;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel {
    margin-right: 0;
  }
}
header .header .login .btn-tel span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel span {
    font-size: 15px;
  }
}
header .header .login .btn-tel:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background: url(../img/common/phone-call-white.svg) no-repeat center/contain;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel:before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
}

.header_btn {
  padding: 0 24px;
  height: 2.5rem;
  border-radius: 22px;
  border: 2px solid #FFFFFF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header_btn.pc-hidden {
  display: none;
}
.header_btn:hover {
  border: 2px solid #192534;
  color: #192534;
}
.header_btn_grow {
  background: #5925DC;
  border: none;
}
.header_btn_grow:hover {
  border: none;
  color: #fff;
  background: #192534;
}

footer {
  height: 300px;
  background: #000;
  padding-top: 60px;
}

.footer {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer {
    width: 100%;
    padding: 0 25px;
    gap: 20px;
  }
}
.footer_left > ul {
  display: flex;
  gap: 32px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer_left > ul {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.footer_left > ul:first-of-type {
  margin: 25px 0 15px;
}
.footer_left > ul li {
  color: #B5B6B8;
}
.footer_left > ul li:not(:last-of-type) {
  position: relative;
}
.footer_left > ul li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 16px);
  width: 0;
  height: 10px;
  border-left: 1px solid #B5B6B8;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer_left > ul li:not(:last-of-type)::after {
    left: calc(100% + 8px);
  }
}
.footer_left .copyright {
  margin-top: 40px;
  color: #B5B6B8;
}
.footer_right {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}
.footer_right > ul {
  display: flex;
  gap: 32px;
}
.footer_right > ul a {
  color: #fff;
  font-size: 16px;
}
.footer_right > ul a:hover {
  text-decoration: underline;
}
.footer_right > h3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
}
.footer_right > h3 span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}
.footer_right > p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.foot_logo {
  width: 120px;
}
.foot_logo img {
  width: 100%;
}

.top_button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #222B37;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
.top_button:hover {
  background: #5925DC;
}
.top_button.on {
  visibility: visible;
  opacity: 1;
}

@media all and (max-width: 1024px) {
  .off header:hover .logo .pc-hidden {
    display: none;
  }
  .off header:hover .logo img:not(.pc-hidden) {
    display: block;
  }
  .off .logo img.pc-hidden {
    display: block;
  }
  .on .logo img:not(.pc-hidden) {
    display: block;
  }
  header .header {
    padding: 0 20px;
    height: 64px;
  }
  header .header .logo {
    width: 7.25rem;
  }
  header .header .logo img {
    display: none;
  }
  header .header nav {
    display: none;
  }
  header .header .login {
    display: flex;
    gap: 10px;
  }
  header .header_btn {
    padding: 0 14px;
    height: 1.875rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: none;
  }
  header .header_btn.pc-hidden {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer {
    height: auto;
    padding: 40px 0 80px;
  }
  .footer {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
  }
  .footer_left > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer_left > ul:first-of-type {
    margin: 20px 0 8px;
  }
  .footer_left > ul li {
    font-size: 14px;
    font-weight: 400;
  }
  .footer_left > ul li:not(:last-of-type)::after {
    display: none;
  }
  .footer_left .copyright {
    margin-top: 20px;
  }
  .footer_right {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer_right > ul a {
    font-size: 13px;
  }
  .footer_right > h3 {
    font-size: 24px;
    font-weight: 500;
  }
  .footer_right > h3 span {
    font-size: 13px;
    font-weight: 700;
  }
  .footer_right > p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  .top_button {
    position: fixed;
    width: 40px;
    height: 40px;
  }
  .top_button img {
    width: 24px;
  }
}
.focus_color {
  color: #6938EF;
}

.main_color {
  color: #5925DC;
}

.arrow_right {
  width: 30px;
  height: 30px;
  background: url(../img/common/arrow-right.svg);
}

.vertical_line {
  width: 0;
  height: 30px;
  border-left: 1px solid #8D99A8;
}

.circle_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bold {
  font-weight: 700;
}

.section_one .animate {
  transform: translateY(30%);
}

.section_two_content.animate {
  opacity: 1;
  transition: width 0.5s ease-out;
}
.section_two_content.animate.on {
  width: 100%;
  animation: none;
}
.section_two_content > div.animate.on {
  animation-delay: 0.2s;
}

.section_three_content.animate {
  transform: translateY(30%);
}

.animate {
  opacity: 0;
}
.animate.on {
  animation: downUp 0.7s ease both;
}

.header-popup {
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #192534;
  gap: 25px;
  transition: all ease 0.3s;
}
.header-popup * {
  color: #fff;
}

@keyframes headerTop {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
}
@keyframes headerbot {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 4.375rem;
  }
}
@keyframes headerbotMobile {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 130px;
  }
}
.on .header-popup {
  animation: headerTop 0.5s both;
}

.off .header-popup {
  animation: headerbot 0.5s both;
}
@media all and (max-width: 1024px) {
  .off .header-popup {
    animation: headerbotMobile 0.5s both;
  }
}

.header-popup .header-popup-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.header-popup .header-popup-btn-box {
  display: flex;
  gap: 15px;
}

.header-popup a {
  color: #fff;
  border: 2px solid #fff;
  padding: 0 25px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  gap: 3px;
}

@media all and (max-width: 1024px) {
  .header-popup {
    background-color: #192534;
    height: 130px;
    flex-direction: column;
    text-align: center;
    gap: 11px;
  }
  .mobile-br {
    display: block;
  }
  .header-popup-text {
    color: #0f1b2a;
    font-size: 18px;
    line-height: 1.3;
  }
  .header-popup a {
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    /* font-weight: 600; */
    height: 36px;
    padding: 0 15px;
  }
  .header.hide {
    top: -130px;
  }
}
.only_pc {
  display: block;
}
@media all and (max-width: 1024px) {
  .only_pc {
    display: none;
  }
}

.on .header {
  background: #fff;
}
.on .header nav > ul > li {
  color: #0F1B2A;
}
.on .header nav > ul > li a {
  color: #0F1B2A;
}
.on .header .header_btn {
  border: 2px solid #5925DC;
  color: #5925DC;
}
.on .header .header_btn:hover {
  border: 2px solid #192534;
  color: #192534;
}
.on .header .header_btn_grow {
  background: #5925DC;
  border: none;
  color: #fff;
}
.on .header .header_btn_grow:hover {
  border: none;
  color: #fff;
  background: #192534;
}

.section {
  transition: 0.5s ease;
  z-index: 1;
  background-color: #fff;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 300px);
  padding: 180px 60px;
}
@media all and (max-width: 1024px) {
  .section {
    min-height: unset;
    padding: 100px 20px;
  }
}

.max-container {
  width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1024px) {
  .max-container {
    width: 100%;
  }
}

.section-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-title-box .section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
}
@media all and (max-width: 1024px) {
  .section-title-box .section-title {
    font-size: 28px;
  }
}

.flex-start {
  align-items: start;
}

.terms-section .terms-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.terms-section .terms-box-title {
  margin: 80px 0 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
.terms-section .terms-box-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terms-section .terms-box-sub-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.terms-section .terms-box-text {
  font-size: 18px;
  line-height: 1.6;
}
.terms-section .privacy-intro {
  padding: 80px 0 40px;
  border-bottom: 1px solid #cdd3dd;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  line-height: 1.6;
}
.terms-section .privacy-intro-text {
  font-size: 18px;
  line-height: 1.6;
}
@media all and (max-width: 1024px) {
  .terms-section .terms-box {
    gap: 24px;
  }
  .terms-section .terms-box-title {
    margin: 40px 0 4px;
    font-size: 20px;
  }
  .terms-section .terms-box-sub-title {
    font-size: 16px;
  }
  .terms-section .terms-box-text {
    font-size: 15px;
  }
  .terms-section .privacy-intro {
    padding: 54px 0 28px;
    font-size: 15px;
    margin-bottom: 28px;
    gap: 28px;
  }
  .terms-section .privacy-intro-text {
    font-size: 15px;
    line-height: 1.6;
  }
}