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

* {
    transition: 0.3s;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* header */
#header {
    width: 100%;
    height: 58px;
    box-sizing: border-box;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.mo-menu-open {
    display: none;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    left: 10px;
}

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

.header-left-container {
    display: flex;
    gap: 60px;
    align-items: center;
    height: 100%;
}

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

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

#header nav>ul>li {
    box-sizing: border-box;
    width: 116px;
    color: #000;
    height: 100%;
    display: flex;
    cursor: pointer;
}

#header nav>ul>li>a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#header nav>ul>li:first-child {
    width: 100px;
}

.tap, #header nav>ul>li:hover {
    box-shadow: inset 0 -2px 0 #1B1C80;
}

.tap a, #header nav>ul>li:hover a {
    color: #1B1C80 !important;
    font-weight: 600 !important;
}

.header-right-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-right-container>svg {
    cursor: pointer;
}

.gnb-white {
    background: #FFF !important;
}

/* 모바일 메뉴 */
.mo-menu {
    width: 400px;
    height: 100%;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #FFF;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 101;
}

.mo-menu-top {
    height: 60px;
    box-sizing: border-box;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-close {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-close:hover {
    background: rgba(255,255,255,0.1);
}

.mo-menu-container {
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mo-menu nav>ul>li {
    color: rgba(255, 255, 255, 0.80);
    box-sizing: border-box;
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(34, 34, 34, 0.06);
}

.mo-menu nav>ul>li>a {
    width: 120px;
    color: #222;
}

.sub-menu-wrap {
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 8px;
}

.sub-menu-wrap>a {
    color: rgba(34, 34, 34, 0.60);
}

.sns-div {
    display: flex;
    box-sizing: border-box;
    padding: 10px;
    gap: 20px;
}

.header-right-container a:hover svg, .sns-div a:hover svg {
    opacity: 0.7;
}

.go-contact {
    height: 70px;
    background: #1B1C80;
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.go-contact:hover {
    background: #171855;
}


/* footer */
footer {
    background: #1F1F5C;
    display: flex !important;
}

.footer-left {
    width: 25%;
    padding: 40px 60px 60px;
    display: flex;
    align-items: start;
}

.footer-middle {
    border: none;
    width: 58.4%;
    padding: 40px 0 40px 60px;
    display: flex;
    align-items: center;
}

.footer-right {
    border: none;
    width: 41.6%;
    padding: 40px 60px 40px 0;
    display: flex;
    align-items: center;
}

.footer-left-container {
    width: 100%;
    box-sizing: border-box;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-wrap {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.info-wrap>p {
    color: rgba(255, 255, 255, 0.50);
}

.privacy-open {
    box-sizing: border-box;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    height: 14px;
    display: flex;
    align-items: center;
}

.policy-open {
    padding-left: 12px;
}

.footer-left-wrap {
    display: flex;
    gap: 48px;
    align-items: start;
}

.footer-left-div {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.footer-left-div>p, .footer-left-container>p {
    color: rgba(255, 255, 255, 0.70);
    word-break: keep-all;
}

.footer-left-container .p16 {
    color: rgba(255, 255, 255, 0.50);
    line-height: 24px; /* 150% */
}

.footer-big-container {
    display: flex;
    width: 100%;
    align-items: start;
}

.footer-middle-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-big-container .p18 {
    width: 100%;
    line-height: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-bottom: 16px;
}

.footer-middle-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-middle-wrap>div {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-middle-wrap>div>a {
    color: rgba(255, 255, 255, 0.80);
    width: 80px;
}

footer .sub-menu-wrap>a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    line-height: 24px; /* 150% */
    letter-spacing: -0.4px;
}

.footer-right-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

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

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

.footer-right-container .p24 {
    line-height: 34px;
}

.footer-right-div2 {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-right-div3 {
    display: none;
    gap: 16px;
    align-items: center;
}

.footer-container {
    width: 75%;
    display: flex;
    flex-direction: column;
}

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

#fixed-btn-wrap {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;   
    z-index: 50;
}

.fixed-btn {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 3px 6px 24px 0px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fixed-btn:hover {
    background: #F8E08E;
}

.fixed-btn>span {
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.35px;
}

.ql-editor {
    padding: 0 !important;
}

.ql-editor img {
    max-width: 100%;
}

.privacy-open, .policy-open {
    cursor: pointer;
}

.privacy-modal, .policy-modal {
    position: fixed;
    top: 2.5vh;
    width: 1080px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    cursor: pointer;
    z-index: 1001;
    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;
}
  
.privacy-close, .policy-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    cursor: pointer;
}
  
.privacy-close > svg, .policy-close > svg {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.80);
    padding: 6.4px 6.4px 5.6px 5.6px;
}
  
.privacy-close>svg:hover, .policy-close>svg:hover {
    background: #000;
    transition: 0.3s;
}
  
.privacy-modal>.title, .policy-modal>.title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.privacy-modal .content, .policy-modal .content {
    height: 82%;
    margin-top: 40px;
    overflow-y: scroll;
    word-break: keep-all;
}

footer a:hover {
    color: #FFF !important;
}

/* .basic-a, .basic-a:hover {
    color: #F4D159 !important;
    border: none !important;
    background: transparent !important;
}

.premium-a, .premium-a:hover {
    color: #FFAA9F !important;
    border: none !important;
    background: transparent !important;
}

.remodeling-a, .remodeling-a:hover {
    color: #D6D2C4 !important;
    border: none !important;
    background: transparent !important;
} */

@media(max-width: 1350px) {
    .logo {
        width: 121px;
    }
    .header-left-container {
        gap: 40px;
    }
    #header nav ul {
        gap: 4px;
    }
    #header nav>ul>li {
        width: 90px !important;
    }
    #header nav>ul>li:nth-child(5) {
        width: 106px !important;
    }
    .footer-middle {
        width: 55%;
    }
    .footer-right {
        width: 45%;
    }
    .footer-left-wrap {
        gap: 30px;
    }
    .footer-left {
        padding: 40px 30px 60px;
    }
    .footer-middle {
        padding: 40px 0 40px 30px;
    }
    .footer-right {
        padding: 40px 30px 40px 0;
    }
    .footer-left-container {
        padding: 40px 30px;
    }
}

@media(max-width: 1200px) {
    #header {
        padding: 0 20px;
    }
    footer {
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
        padding: 30px;
    }
    .footer-left-container {
        width: 100%;
        padding: 30px;
        gap: 15px;
    }
    .info-wrap {
        padding: 0;
    }
    .footer-middle {
        width: 60%;
        padding: 30px 0 30px 30px;
    }
    .footer-right {
        width: 40%;
        padding: 30px 30px 30px 0;
    }
    .footer-right, .footer-right-div, .footer-right-div2 {
        justify-content: end;
        text-align: right;
    }
    .footer-container {
        width: 100%;
    }
    .footer-big-container {
        width: 100%;
        justify-content: space-between;
    }
}

@media(max-width: 1100px) {
    .privacy-modal, .policy-modal {
        width: 100%;
        height: 100%;
        top: 0;
    }
}

@media(max-width: 1024px) {
    #header {
        height: 60px;
        padding: 0 10px;
        justify-content: space-between;
        background: transparent;
    }
    #header nav, .header-right-container {
        display: none;
    }
    .mo-menu-open {
        display: flex;
        position: static;
    }
    .footer-right-div3 {
        display: flex;
        justify-content: end;
    }
}

@media(max-width: 900px) {
    .footer-big-container {
        flex-direction: column;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
    .footer-middle {
        width: 100%;
        padding: 30px;
    }
    .footer-right {
        justify-content: start;
        width: 100%;
        padding: 30px;
    }
    .footer-right, .footer-right-div, .footer-right-div2, .footer-right-div3 {
        text-align: left;
        justify-content: start;
    }
    .footer-big-container .p18 {
        border: none;
        font-size: 18px;
        line-height: 22px; /* 122.222% */
        padding: 0;
    }
    .footer-middle-container, .footer-right-container {
        gap: 15px;
    }
    .footer-right-wrap {
        gap: 16px;
    }
    .footer-left-container {
        border: 1px solid #1A1A7A;
    }
    footer .p24 {
        font-size: 24px;
        line-height: 34px; /* 141.667% */
    }
}

@media(max-width: 600px) {
    #header {
        padding: 0;
        padding-right: 10px;
    }
    .mo-menu-open {
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
    .mo-menu {
        width: 100%;
    }
    .mo-menu nav>ul>li>a {
        width: 150px;
    }
    .footer-left, .footer-middle, .footer-right, .footer-left-container {
        padding: 30px 10px;
    }
    #fixed-btn-wrap {
        right: 10px;
    }
    .fixed-btn {
        width: 60px;
        height: 60px;
        border-radius: 6px;
        box-shadow: 2.25px 4.5px 18px 0px rgba(0, 0, 0, 0.12);
        gap: 6px;
        padding: 0;
    }
    .fixed-btn>svg {
        width: 18.75px;
        height: 18.75px;
    }
    .fixed-btn>span {
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; /* 14.3px */
        letter-spacing: -0.275px;
    }
    .fixed-btn:hover {
        transform: translateY(-5px);
    }
    .modal-logo {
        width: 130px;
    }
    .privacy-modal, .policy-modal {
        padding: 40px 20px 0 !important;
    }
    .privacy-modal .content, .policy-modal .content {
        margin-top: 20px;
        height: 87%;
    }
    footer .p18 {
        font-size: 16px !important;
        line-height: 22px !important; /* 137.5% */
    }
    footer .p16 {
        font-size: 14px;
        line-height: 20px; /* 142.857% */
    }
    .footer-middle-wrap .p16, footer .sub-menu-wrap>a {
        font-size: 13px;
        line-height: 18px; /* 138.462% */
        letter-spacing: -0.325px;
    }
}

@media(max-width: 480px) {
    .mo-menu nav>ul>li>a {
        width: 80px;
        font-size: 16px;
        line-height: 20px; 
        letter-spacing: -0.4px;
    }
    .footer-left>img {
        width: 153px;
    }  
    .go-contact>span {
        font-size: 16px;
        line-height: 20px; 
        letter-spacing: -0.4px;
    }  
}

@media(max-width: 400px) {
    .footer-middle-wrap>div {
        align-items: start;
    }
}

@media(max-width: 370px) {
    .footer-middle-wrap>div>a {
        width: 70px;
    }
}