@charset "utf-8";

/* 서브페이지 공통 요소 */

/* 타이틀 컬러 변경 */
.title h2{
    color: var(--dark1);
}


/* intro */
.intro{
    width: 100%;
    height: 42.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.intro i{
    font-family: "parlare", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.78;
    letter-spacing: -0.02em;
    margin-top: 75px;
    color: var(--main);
}
.intro h2{
    font-size: 4.5rem;
    letter-spacing: 0.01em;
    color: #fff;
}



@media (max-width: 1440px) {

}

@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .intro i{
        margin-top: 65px;
    }
    .intro h2 {
        font-size: 4.2rem;
    }
}

@media (max-width: 480px) {
    .intro{
        height: 40rem;
    }
     .intro i{
        font-size: 16px;
    }
    .intro h2 {
        font-size: 4rem;
    }
}