.commonTitleWrapper {
    background: url("../images/aboutUs/contactUsBackImg.jpg") no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commonTitle {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.69);
    color: #f1f8ff;
}


.contactUsTotalWrapper {
    max-width: 1140px;
    width: 100%;
    margin: 230px 0 400px;
    padding: 10px;
    box-sizing: border-box;
}

.contactUsThumbnailComment {
    margin: 0;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #12212c;
    opacity: 0;
    transition: opacity 1s ease;

}
.contactUsThumbnailComment.animate{
    opacity: 1;
}

.contactUsMoveBoardWrapper {
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    border-top: 2px solid #12212c42;
    border-bottom: 2px solid #12212c42;
    margin: 70px 0 90px 0;
}

.contactUsMoveBoardWrapper > p {
    margin: 5px 0;
    padding: 5px 15px;
}


.contactUsMoveBoardWrapper > p > a {
    text-decoration: none;
    color: #12212c;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: color 0.5s ease;
}

.contactUsMoveBoardWrapper > p > a:hover {
    color: #3137cc;
    transition: color 0.5s ease;
}

/*ContactUs General Introduce*/

.contactUsGeneralIntroduceWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
}

.contactUsCompanyIntroFileWrapper {
    background: url("../images/aboutUs/aboutUsImgBlue.jpg") no-repeat center center;
    background-size: cover;
    width: 387px;
    height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transition: opacity 1s ease;
}
.contactUsCompanyIntroFileWrapper.animate{
    opacity: 1;
}

.contactUsCompanyIntroFileWrapper > p {
    margin: 0;
}

.contactUsCompanyIntroFileTitle {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.3px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    color: #f1f8ff;
}

.contactUsCompanyIntroFileSubTitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -1.3px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
    color: #f1f8ff;
    padding-bottom: 10px;
}

.contactUsCompanyIntroFileDownload{
    position: relative;
    left: 72px;
    cursor: pointer;
}

.contactUsCompanyIntroFileDownload>a{
    content: "회사소개서";
    text-decoration: none;
    color: white;
    background-color: #ffffff5e;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;

}

.contactUsCompanyIntroFileDownload>a:hover{
    content: "다운로드";
    background-color: white;
    color: #12212c;
}

.contactUsDirectContactWrapper{
    max-width: 663px;
    width: 100%;
    border-bottom: 3px solid #12212c;
    opacity: 0;
    transition: opacity 1s ease;
}
.contactUsDirectContactWrapper.animate{
    opacity: 1;
}

.contactUsDirectContactWrapper>p{
    text-align: center;
    margin: 50px 0 20px 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.contactUsEmailPhoneWrapper{
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

}

.contactUsEmailPhoneWrapper p {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1s ease, transform 1s ease;
}

.contactUsEmailPhoneWrapper.animate p:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.contactUsEmailPhoneWrapper.animate p:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.contactUsEmailPhoneWrapper>p{
    width: 300px;
    margin: 0;
    background-color: #12212c;
    color: #f1f8ff;
    padding: 20px;
    border-radius: 5px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.contactUsDirectIconsWrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 110px;
}

@media screen and (max-width: 1150px){
.contactUsGeneralIntroduceWrapper{
    flex-wrap: wrap;
}
}

@media screen and (max-width: 768px){
    .commonTitle {
        font-size: 36px;
    }
    .contactUsThumbnailComment{
        font-size: 32px;
    }
}

@media screen and (max-width: 480px){
    .commonTitle {
        font-size: 30px;
    }
    .contactUsThumbnailComment{
        font-size: 28px;
    }
    .contactUsMoveBoardWrapper > p > a{
        font-size: 16px;
    }
    .contactUsEmailPhoneWrapper{
        flex-wrap: wrap;
    }

}

