@font-face {
    font-family: 'Giants';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/Giants-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Giants Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-1@1.1/Giants-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
  
@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gmarket Sans';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* css 드래그 이벤트 차단 */
.disableDrag {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.grecaptcha-badge{
    visibility: hidden;
}

* {
    transition: 0.3s;
}

/* header */
#header {
    width: 100%;
    display: flex;
    height: 90px;
    box-sizing: border-box;
    padding: 0px 40px;
    justify-content: center;
    align-items: center;
    background: #111;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1320px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 133px;
    cursor: pointer;
}

#header nav {
    margin: 0;
    height: 100%;
}

#header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 6px;
}

#header nav>ul>li {
    display: flex;
    box-sizing: border-box;
    padding: 5px 20px 8px 20px;
    justify-content: center;
    align-items: center;
    font-family: "Giants";
    color:#BEB8AE;
    font-size: 18px;
    line-height: 125%; /* 24px */
    letter-spacing: -0.45px;
    cursor: pointer;
    border-radius: 100px;
    position: relative;
}

#header nav>ul>li::before {
    opacity: 0;
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; 
    border-radius: 100px;
    background: linear-gradient(
      180deg,
      rgba(255, 237, 240, 1) 0%,
      rgba(211, 173, 179, 1) 20%,
      rgba(255, 246, 247, 1) 59%,
      rgba(255, 214, 221, 1) 79%,
      rgba(153, 110, 110, 1) 91%,
      rgba(255, 255, 255, 1) 100%
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
}

#header nav>ul>li:hover , .tap {
    color: #FFF !important;
    background: #D72438;
}

#header nav>ul>li:hover::before , .tap::before {
    opacity: 1 !important;
}

.mo-menu-open {
    display: none;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    padding: 9px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50px;
    border: 1px solid rgba(215, 36, 56, 0.25);
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(5px);
}

.mo-menu-open:hover {
    background: rgba(255, 255, 255, 0.10);
}

.call {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #D72438;
    text-align: right;
    font-family: "Giants Bold";
    font-size: 24px;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
}

.call:hover {
    color: #D72438;
}

.mo-menu .call {
    color: #FFF;
    text-align: right;
    font-size: 24px;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
}

.mo-menu {
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(215, 36, 56, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    left: 0;
    z-index: 101;
}

.mo-menu-top {
    box-sizing: border-box;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.mo-menu-bottom {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.menu-close {
    display: flex;
    display: flex;
    box-sizing: border-box;
    padding: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: rgba(17, 17, 17, 0.90);  
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.mo-menu nav {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.mo-menu nav>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mo-menu nav>ul>li {
    width: fit-content;
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: "Giants";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    letter-spacing: -0.45px;
    box-sizing: border-box;
    padding: 5px 20px 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mo-menu nav>ul>li::before {
    opacity: 0;
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; 
    border-radius: 100px;
    background: linear-gradient(
      180deg,
      rgba(255, 237, 240, 1) 0%,
      rgba(211, 173, 179, 1) 20%,
      rgba(255, 246, 247, 1) 59%,
      rgba(255, 214, 221, 1) 79%,
      rgba(153, 110, 110, 1) 91%,
      rgba(255, 255, 255, 1) 100%
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.mo-menu nav>ul>li:hover, .mo-menu .tap {
    background:#D72438;
    color: #FFF !important;
}

.mo-menu nav>ul>li:hover::before, .mo-menu .tap::before {
    opacity: 1 !important;
}

/* footer */
footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    background: #D72438;
    display: flex !important;
    padding: 65px 0 105px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    box-sizing: border-box;
}

.footer-big-container {
    display: flex;
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-big-container>p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.35px;
}

.footer-container {
    display: flex;
    gap: 56px;
    align-items: flex-start;
}

.footer-logo {
    width: 187px;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-wrapper>p {
    color: #FFF;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 20.8px */
}

.footer-big-container>p {
    display: none;
}

.footer-wrap {
    display: flex;
    align-items: center;
}

.footer-div, .footer-inner>p {
    box-sizing: border-box;
    display: flex;
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 130%; /* 20.8px */
    letter-spacing: -0.4px;
    align-items: center;
}

.footer-div:first-child {
    padding-right: 10px;
}

.footer-big-div {
    display: flex;
    align-items: center;
}

.footer-big-div .footer-div:first-child {
    padding: 0 10px;
    height: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.70);
    border-right: 1px solid rgba(255, 255, 255, 0.70);
}

.footer-div:last-child {
    padding-left: 10px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-right>p:first-child {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.footer-right>p:last-child {
    color: #FFF;
    font-family: "Giants";
    font-size: 24px;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.6px;
}

.footer-big-container>p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.35px;
    display: none;
}

.up-btn {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border: 1px solid #FFF;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.10);
    z-index: 5;
}

.up-btn:hover {
    border: 1px solid #D72438;
    background: #D72438;
}

.up-btn:hover svg path {
    fill: #FFF;
}

.fixed-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
}

#fixed-up {
    border-radius: 4px;
    background: #FFF;  
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#fixed-up>svg {
    width: 35px;
    height: 35px;
}

#fixed-up:hover {
    transform: translateY(-10px);
}

.fixed-btn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
}

#fixed-up {
    border-radius: 4px;
    background: #FFF;  
    display: flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#fixed-up>svg {
    width: 35px;
    height: 35px;
}

#fixed-up:hover {
    transform: translateY(-10px);
}

#floating-container {
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #FFF;
    padding: 3px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
    box-sizing: border-box;
    padding: 3px 10px;
}

.desktop {
    width: 343px;
    position: absolute;
    top: -250px;
    left: 3%;
}

.floating-wrap {
    max-width: 1280px;
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: -2px;
    margin-right: -2px;
    transition: 1s all;
}

.floating-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    transition: 0.1s all;
}

.floating-form>p {
    font-family: "Giants";
    font-size: 24px;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
}

.floating-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-contact input[type="text"], select {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.90);
    display: flex;
    width: 200px;
    box-sizing: border-box;
    padding: 8px 10px;
    align-items: center;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
    border: 1px solid #ccc;
}

select {
    color: rgba(34, 34, 34, 0.50);
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400;
    letter-spacing: -0.4px;
    padding: 11.5px 10px;
}

.floating-contact input[type="text"]:focus {
    background: #FFF;
}

.floating-contact input[type="text"]::placeholder, select {
    color: rgba(10, 24, 69, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

option {
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.4px;
}

.floating-form-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-agree-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-agree-wrap .round-checkbox {
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50px;
    appearance: none;
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid #DDD;
}
  
.floating-agree-wrap .round-checkbox:checked::before {
    font-size: 100%;
    color: #fff;
    position: relative;
}
  
.floating-agree-wrap .round-checkbox:checked {
    background-image: url("../img/check.png");
    background-size: 15px !important;
    background-position: center center !important;
    background-color: #D72438;
    background-repeat: no-repeat;
    border: none;
}
  
.floating-agree-wrap .agree {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: normal;
    letter-spacing: -0.28px !important;
    cursor: pointer;
}
  
.floating-agree-wrap .agree-open {
    font-weight: 600;
}
  
.f-btn {
    display: flex;
    height: 42px;
    box-sizing: border-box;
    padding: 0px 36px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: #E83F3F;
    color: #FFF;
    font-family: "Giants";
    font-size: 18px;
    letter-spacing: -0.45px;
    border: none;
}

.f-btn:hover {
    background: #D72438;
}

.floating-tit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #19493B;
    text-align: center;
    font-family: "SF_HambakSnow";
    font-size: 18px;
    line-height: 125%; /* 22.5px */
    letter-spacing: -0.45px;
    flex-shrink: 0;
    cursor: pointer;
    box-sizing: border-box;
    padding-right: 10px;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.8s ease-in-out;
}

#floating-container.open {
    width: 100%;
    justify-content: center;
}

#floating-container.open .form-bg svg path {
    fill: #EFE4CB;
}

#floating-container.open .floating-form {
    width: auto;
    left: 0;
    opacity: 1;
}

#floating-mo-container {
    background: #EFE4CB;
    display: none;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--1, #19493B);
    font-family: "SF_HambakSnow";
    font-size: 16px;
    line-height: 34px; /* 212.5% */
    letter-spacing: -0.4px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}

#floating-mo-container.click {
    background: #E7DBC1;
}

.floating-mo-form {
    width: 100%;
    background: #F1EBE7;
    display: none;
    box-sizing: border-box;
    padding: 10px 5px;
    /* transform: translateY(100%); */
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.mo-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.mo-form .input-wrap {
    width: 100%;
}

.floating-mo-form input[type="text"], .floating-mo-form select {
    height: 40px;
    width: 33.3%;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    box-sizing: border-box;
    padding: 8px 10px;
    align-items: center;
    color: #111;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -0.5px;
}

.floating-mo-form input[type="text"]::placeholder, .floating-mo-form select {
    color: rgba(10, 24, 69, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.floating-mo-form.show-form {
    transform: translateY(-48px);
}

.mo-form {
    width: 100%;
}

#go-contact {
    height: fit-content;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
    box-sizing: border-box;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 200px;
    background: #E83F3F;
    overflow: hidden;
    color: #FFF;
    text-align: center;
    font-family: "Giants";
    font-size: 16px;
    line-height: 125%; /* 17.5px */
    letter-spacing: -0.4px;
    white-space: nowrap;
    cursor: pointer;
}

#go-contact:hover {
    background: #D72438;
}

.agree-modal {
    position: fixed;
    top: 2.5vh;
    width: 1080px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    z-index: 1005;
    box-sizing: border-box;
    padding: 0 48px;
    padding-top: 60px !important;
    padding-bottom: 20px !important;
    justify-content: initial !important;
    height: 95vh;
    gap: 20px !important;
    display: none;
}
  
.agree-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    cursor: pointer;
}
  
.agree-close > svg {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.80);
    padding: 6.4px 6.4px 5.6px 5.6px;
}
  
.agree-close>svg:hover {
    background: #000;
    transition: 0.3s;
}
  
.agree-modal>.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
  
.p24 {
    color: #111;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 141.667% */
    letter-spacing: -0.6px;
}
  
.p40 {
    color:  #111;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 130% */
    letter-spacing: -1px;
}
  
.content-div {
    margin-top: 20px;
    height: 81%;
    overflow: hidden;
}
  
.agree-modal>.content-div>.content {
    height: 100%;
    overflow: scroll;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: #505050;
    padding-bottom: 20px;
}
  
.agree-logo {
    width: 150px;
}
  
.mo-tit {
    display: none;
}
  

/* modal */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 50 !important;
}

.modal-btn {
    display: flex;
    box-sizing: border-box;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
    color: #222;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%; /* 27px */
    letter-spacing: -0.45px;
    cursor: pointer;
}

.modal-public {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
    border: 1px solid rgba(17, 17, 17, 0.60);
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.16);
    z-index: 100;
    display: none;
    overflow: hidden;
    transition: 0s;
}
  
.modal-top {
    border-bottom: 1px solid #DDD;
    display: flex;
    box-sizing: border-box;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    position: relative;
}
  
.modal-top p {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 145%; /* 29px */
    letter-spacing: -0.5px;
}
  
.modal-close {
    position: absolute;
    right: 10px;
    cursor: pointer;
}
  
.modal-content {
    display: flex;
    box-sizing: border-box;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
  
.modal-content p {
    color: #505050;
    font-size: 16px;
    line-height: 150%; /* 24px */
    letter-spacing: -0.4px;
    word-break: keep-all;
}

.menu-modal {
    max-width: 750px;
    max-height: 450px;
    height: 70vh;
}

.menu-modal-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.menu-modal-wrap {
    display: flex;
    height: 100%;
    min-height: 0;
}

.menu-modal-wrap img {
    width: 300px;
    object-fit: cover;
    margin-top: -2px;
}

.menu-modal-wrap .modal-content {
    width: calc(100% - 300px);
    overflow: scroll;
    color: #505050;
    font-size: 16px;
    line-height: 145%; /* 23.2px */
    letter-spacing: -0.4px;
    -ms-overflow-style: none;  /* IE, Edge */
    scrollbar-width: none;     /* Firefox */
}

.business-div {
    width: 100%;
    border-radius: 12px;
    background: #F6F4F4;
    display: flex;
    box-sizing: border-box;
    padding: 10px 10px 10px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
    margin: 10px 0;
}

.business-div>p {
    color: #111;
    font-size: 16px;
    font-weight: 600;
    line-height: 145%; /* 23.2px */
    letter-spacing: -0.4px;
}

.business-div div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* font-weight */
.normal {
    font-weight: 400 !important;
}

.bold {
    font-weight: 700 !important;
}

.semibold {
    font-weight: 600 !important;
}

.bold-g {
    font-family: "Gmarket Sans";
}


/* font color */
.primary {
    color: #D72438 !important;
}

.w {
    color: #FFF !important;
}

.sub {
    color: #505050 !important;
}

.y {
    color: #FFEA4A !important;
}

.y2 {
    color: #FFD97C !important;
}

.r {
    color: #E83F3F !important;
}

.r2 {
    color: #D5142B !important;
}

.r3 {
    color: #E83F3F !important;
}


/* component */
.st-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.st-top2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.neon-tit-div {
    width: 100%;
    box-sizing: border-box;
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #DBCCCC 0%, #756D6D 23%, #DBCCCC 58%, #756D6D 100%);
    border-image-slice: 1;
    background: url(../img/neon-tit-bg.png);
    background-size: cover !important;
    background-position: center center !important;
}

.neon-tit-div svg {
    animation: neon2-svg 1s ease-in-out infinite alternate;
}

.neon-tit {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 0px 16px #FF5D7B;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.50);
    font-family: "Giants";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 62.5px */
    letter-spacing: -1.25px;
    position: relative;
    z-index: 5;
    animation: neon2 1s ease-in-out infinite alternate;
}

.y-neon {
    background: linear-gradient(91deg, #FFEA4A 50.45%, #FFD97C 73.95%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #FFF;
    animation: y-neon 1s ease-in-out infinite alternate;
    position: relative;
    z-index: 5;
    text-shadow: none;
}

.st-tit {
    color: #222;
    text-align: center;
    font-family: "Giants";
    font-size: 48px;
    line-height: 125%; /* 60px */
    letter-spacing: -1.2px;
}

.st-sub-tit {
    color: #333;
    text-align: center;
    font-family: "Giants";
    font-size: 28px;
    line-height: 150%; /* 42px */
    letter-spacing: -0.7px;
    position: relative;
    z-index: 5;
    word-break: keep-all;
}

.st-sub-tit24 {
    color: #333;
    text-align: center;
    font-family: "Giants";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 30px */
    letter-spacing: -0.6px;
    word-break: keep-all;
    position: relative;
    z-index: 5;
}

.st-sub-tit20 {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%; /* 30px */
    letter-spacing: -0.5px;
    opacity: 0.9;
    word-break: keep-all;
    position: relative;
    z-index: 5;
}

.st-sub-tit22 {
    color: #FFF;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 150%; /* 33px */
    letter-spacing: -0.55px;
    opacity: 0.9;
    position: relative;
    z-index: 5;
}

.big-section {
    width: 100%;
    overflow: hidden;
}

.justify-end {
    justify-content: flex-end !important;
}

.align-end {
    align-items: flex-end !important;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.pretendard {
    font-family: "Pretendard" !important;
}

.giants {
    font-family: "Giants" !important;
}

/* 1100px */
.big-br {
    display: none;
}

/* 1024px */
.big-br2 {
    display: none;
}

/* 900px */
.mi-br {
    display: none;
}

/* 768px */
.ta-br {
    display: none;
}

/* 650px */
.mo-br {
    display: none;
}

/* 480px */
.xs-br {
    display: none;
}

@keyframes neon1 {
    from {
      text-shadow:
        0 0 12px #ef5149,
        0 0 14px #ef5149,
        0 0 16px #ef5149,
        0 0 20px #ef5149,
        0 0 24px #ef5149;
    }
    to {
      text-shadow:
        0 0 4px #ef5149,
        0 0 6px #ef5149,
        0 0 8px #ef5149,
        0 0 10px #ef5149,
        0 0 12px #ef5149;
    }
}

@keyframes neon2 {
    from {
      text-shadow: 0 0 12px #FF5D7B,
        0 0 14px #FF5D7B, 0 0 16px #FF5D7B, 0 0 18px #FF5D7B, 0 0 20px #FF5D7B;
    }
    to {
      text-shadow: 0 0 4px #FF5D7B,
        0 0 6px #FF5D7B, 0 0 8px #FF5D7B, 0 0 10px #FF5D7B, 0 0 12px #FF5D7B;
    }
}

@keyframes neon2-svg {
    0% {
      filter:
        drop-shadow(0 0 2px #fff)
        drop-shadow(0 0 6px #FF5D7B)
        drop-shadow(0 0 12px #FF5D7B);
    }
    100% {
      filter:
        drop-shadow(0 0 1px #fff)
        drop-shadow(0 0 3px #FF5D7B)
        drop-shadow(0 0 10px #FF5D7B);
    }
}

@keyframes y-neon {
    from {
      text-shadow:
        0 0 4px #FFD97C,
        0 0 6px #FFD97C,
        0 0 10px #FFD97C,
        0 0 16px #FFD97C,
        0 0 20px #FFD97C;
    }
    to {
      text-shadow:
        0 0 2px #FFD97C,
        0 0 4px #FFD97C,
        0 0 6px #FFD97C,
        0 0 8px #FFD97C,
        0 0 10px #FFD97C;
    }
}


@media(max-width: 1400px) {
    .logo {
        width: 110px;
    }
    .call {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .floating-form>p {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
}

@media(max-width: 1280px) {
    #header {
        padding: 0 20px;
        height: 70px;
    }
    #header nav>ul>li {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .floating-form {
        gap: 20px;
    }
    .floating-contact {
        gap: 16px;
    }
    .floating-form>p {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .floating-contact input[type="text"], select {
        width: 180px;
    }
    .f-btn {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .pg-tit {
        font-size: 56px;
        letter-spacing: -1.4px;
    }
    .st-sub-tit {
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    .st-sub-tit24 {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .st-sub-tit20, .st-sub-tit22 {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .neon-tit, .st-tit {
        font-size: 40px;
        letter-spacing: -1px;
    }
}

@media(max-width: 1200px) {
    .logo,  #header nav, #header .call {
        display: none;
    }
    #header {
        height: auto;
        padding: 16px 12px;
        background: transparent;
    }
    .header-container {
        justify-content: flex-end;
    }
    .mo-menu-open {
        display: flex;
    }
    .floating-contact input[type="text"], select {
        width: 165px;
    }
    .agree-modal {
        width: 100%;
        left: 0;
        top: 0;
        min-height: 100vh;
        height: 100%;
        transform: none;
    }
    #floating-container {
        display: none !important;
    }
    #go-contact {
        display: flex;
    }
    footer {
        padding: 65px 0;
    }
}

@media(max-width: 1100px) {
    footer {
        padding: 80px 0 40px;
    }
    .footer-big-container {
        flex-direction: column;
        gap: 20px;
    }
    .footer-container, .footer-wrapper, .footer-inner, .footer-right {
        align-items: flex-start;
    }
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    .input-wrap {
        gap: 4px;
    }
    .floating-contact, .floating-form {
        gap: 12px;
    }
    .floating-contact input[type="text"], select {
        width: 150px;
    }
    select {
        padding: 10.5px 10px;
    }
    .big-br {
        display: block;
    }
}

@media(max-width: 1024px) {
    .fixed-btn {
        right: 14.5px;
        bottom: 14.5px;
    }
    #floating-container {
        display: none;
    }
    .f-btn {
        padding: 0 40px;
        height: 42px;
    }
    .floating-agree-wrap .round-checkbox {
        width: 30px;
        height: 30px;
    }
    #go-contact {
        right: 10px;
    }
    .big-br2 {
        display: block;
    }
}

@media(max-width: 900px) {
    #fixed-contact {
        border-radius: 100px 100px 0 0;
        transform: translateY(70%);
    }
    .fixed-contact-open, .fixed-div {
        display: flex;
    }
    .fixed-form {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .fixed-flex {
        width: 90%;
        flex-direction: column;
        gap: 16px;
    }
    .fixed-flex>.fixed-flex {
        width: 100%;
        flex-direction: row;
    }
    .fixed-form input[type="text"] {
        width: 100%;
    }
    .fixed-wrap {
        width: 90%;
        justify-content: space-between;
    }
    .fixed-c-btn {
        height: 50px;
        padding: 10px 30px;
    }
    .neon-tit, .st-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .neon-tit-div svg {
        width: 24px;
        height: auto;
    }
    .mi-br {
        display: block;
    }
    .mi-no-br {
        display: none;
    }
    .st-sub-tit24 {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .modal-top p {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
}

@media(max-width: 768px) {
    .ta-br {
        display: block;
    }
    .agree-modal {
        padding: 0 20px;
    }
    .neon-tit-div {
        gap: 6px;
    }
    .menu-modal {
        max-height: unset;
        height: 80vh;
    }
    .menu-modal-wrap {
        flex-direction: column;
        overflow: scroll;
        -ms-overflow-style: none;  /* IE, Edge */
        scrollbar-width: none;     /* Firefox */
    }
    .menu-modal-wrap .modal-content {
        overflow: visible;
    }
    .menu-modal-wrap img, .menu-modal-wrap .modal-content {
        width: 100%;
    }
}

@media(max-width: 650px) {
    .footer-wrap, .footer-big-div {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .footer-big-div .footer-div {
        padding: 0 !important;
        border: none !important;
        border: none !important;
    }
    .fixed-contact-open {
        width: 30px;
        height: 30px;
    }
    .fixed-div>div {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .fixed-div>div>svg {
        width: 25px;
        height: 25px;
    }
    .fixed-div>div>span {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .fixed-flex, .fixed-wrap {
        width: 100%;
        gap: 12px;
    }
    .fixed-wrap {
        align-items: start;
        flex-direction: column;
    }
    .fixed-c-btn {
        width: 100%;
    }
    .input-wrap {
        gap: 4px;
    }
    .agree-modal {
        gap: 40px !important;
    }
    .agree-modal>.title>.p24 {
        font-size: 20px;
        line-height: 28px; /* 140% */
        letter-spacing: -0.5px;
    }
    .agree-modal>.title>.p40 {
        font-size: 28px;
        line-height: 38px; /* 135.714% */
        letter-spacing: -0.7px;
    }
    .agree-logo {
        width: 120px;
    }
    .neon-tit, .st-tit {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .neon-tit-div svg {
        width: 17px;
    }
    .st-sub-tit {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .st-sub-tit20, .st-sub-tit22, .st-sub-tit24 {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .mo-br {
        display: block;
    }
    .st-top2 {
        gap: 12px;
    }
    .modal-top {
        padding: 8px 0;
    }
    .modal-top p {
        font-size: 16px;
        letter-spacing: -0.4px;
    }
    .modal-content p {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
    .modal-close {
        width: 20px;
    }
    #go-contact {
        font-size: 14px;
        letter-spacing: -0.35px;
        padding: 8px 16px;
    }
}

@media(max-width: 480px) {
    .pg-tit {
        font-size: 32px;
        letter-spacing: -0.8px;
    }
    .pg-sub-tit {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .xs-br {
        display: block;
    }
    .xs-no-br {
        display: none;
    }
}

@media(max-width: 370px) {
    .f-btn {
        padding: 0 32px;
    }
}
