@charset "utf-8";

@import url(reset.css);
@import url(global.css);
/* 📣 초기값, font, header, footer => global.css */

/* 🎈contact_section */
.contact_section {
    padding: 160px 0;
    width: 100%;
    height: 100vh;
    min-height: 900px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.contact_section .inner {
    width: 78.125%;
    max-width: 1500px;
}
.contact_section .heading {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.contact_section .title {
    font-size: 7.2rem;
    font-weight: 700;
    color: var(--label-white);
}
.contact_section .description {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--label-white);
    line-height: 1.6;
}
.marquee_comment {
    width: auto;
    position: absolute;
    left: 0;
    bottom: 100px;
}
.marquee_list {
    display: flex;
    gap: 100px;
}
.marquee_list p {
    width: 100%;
    font-size: 14.8rem;
    font-weight: 700;
    color: var(--label-white);
}
.contact_wrap {
    position: absolute;
    bottom: 210px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}
.contact_wrap .kakao,
.contact_wrap .tel {
    width: 240px;
    height: 240px;
    border-radius: 45px;
}
.kakao {
    border: 2px solid #ffe845;
    background-color: rgba(255, 232, 69, 0.8);
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.83, 0, 0.5, 1.73);
}
.kakao:hover {
    transform: scale(1.1);
}
.contact_wrap a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.kakao a {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--label-normal);
}
.contact_wrap .tel {
    display: none;
    border: 2px solid var(--stroke-dark);
    background-color: rgba(255, 255, 255, 0.8);
}
.contact_wrap .tel img {
    width: 58px;
    height: 58px;
}

@media screen and (max-width:1024px) {
    .contact_section .inner {
        width: calc(100% - 60px);
    }
    .contact_wrap {
        width: calc(100% - 60px);
        justify-content: center;
    }
    .contact_wrap .kakao,
    .contact_wrap .tel {
        max-width: 226px;
        width: calc(100% / 2 - 10px);
        max-height: 226px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .marquee_comment {
        bottom: 160px;
    }
    .marquee_list p {
        font-size: 8rem;
    }
}
@media screen and (max-width:480px) {
    .contact_section {
        min-height: auto;
        height: auto;
        padding: 160px 0 60px;
    }
    .contact_section .inner {
        width: calc(100% - 32px);
        display: flex;
        flex-direction: column;
        gap: 80px;
    }
    .contact_section .title {
        font-size: 5.4rem;
    }
    .contact_wrap {
        width: 100%;
        flex-direction: column;
        position: static;
        transform: translateX(0);
        align-items: center;
    }
    .contact_wrap .kakao,
    .contact_wrap .tel {
        max-width: 328px;
        width: 100%;
        max-height: 328px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .marquee_comment {
        position: static;
    }
}
@media screen and (max-width:316px) {
    .contact_section .title {
        font-size: 3.6rem;
    }
    
}