@charset "utf-8";

body,div,ul,li,dl,dd,dt,ol,h1,h2,h3,h4,h5,h6,input,fieldset,legend,p,select,table,th,td,tr,textarea,button,form,figure,figcaption{margin:0; padding:0;}
* { font-family: 'Pretendard','Noto Sans KR', sans-serif; margin: 0; }



#container {
    display: flex;
}

@media (max-width: 1280px) {
    #container {
        flex-direction: column;
        align-items: center;
    }
}

/* info */

#info {
    display: flex;
    width: 520px;
    min-height: 960px;
    position: relative;
}

.info_back {
    width: 85%;
    background-image: url(../img_intro/main_webp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 360px;
    background: #fff;
    border-radius: 16px;
    position: absolute;
    right: 0;
    top: 80px;
    box-shadow: 0px 3px 30px 0px rgba(34, 34, 34, 0.25);
    box-sizing: border-box;
    padding: 64px 0;
}

.info_box .img {
    display: flex;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 100%;
    overflow: hidden;
} 

.info_box .img img {
    height: 100%;
} 

.info_box .txt {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 32px;
}

.info_box .txt span {
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.info_box .txt span::after {
    content: "";
    display: block;
    position: absolute;
    top: 167%;
    left: 37%;
    width: 48px;
    height: 2px;
    box-sizing: border-box;
    background-color: #ff8fab;
}

.info_box .txt p {
    margin-top: 48px;
    font-size: 18px;
    font-weight: 500;
    color: #666666;
}


@media (max-width: 1280px) {
    #info {
        width: 100%;
        height: 100%;
        justify-content: center;
        min-height: 200px;
    }

    .info_back {
        width: 100%;
        height: 180px;
    }

    .info_box {
        width: 90%;
        flex-direction: row;
        right: auto;
        padding: 24px;
    }

    .info_box .img {
        width:96px;
        height:96px;
    } 

    .info_box .txt span::after {
        display: none;
    }

    .info_box .txt {
        align-items: flex-start;
        margin-top: 0;
        margin-left: 24px;
    }

    .info_box .txt p {
        margin-top: 4px;
    }
}




/* contents */

#contents {
    width: calc(100% - 520px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 80px 0 0 96px;
}

#contents .maintxt span {
    font-size: 108px;
    font-weight: 800;
}

#contents .maintxt p {
    font-size: 24px;
    margin-top: 8px;
    letter-spacing: 1.5px;
    position: relative;
}


#contents .resume {
    margin-top: 56px;
}

.resume .title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff8fab;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 88px;
    height: 32px;
    border-radius: 48px;
}

.resume .btn {
    display: flex;
}

.resume .btn ul {
    list-style: none;
    margin: 24px 80px 24px 0;
    display: flex;
    flex-wrap: wrap
}

.resume .btn li {
    display: flex;
    flex-direction: column;
    margin: 0 24px 24px 0;
    width: 200px;
    text-align: center;
}

.resume .btn li:last-child {
    margin: 0;
}

.resume .btn a {
    text-decoration: none;
    color: black;
}

.resume .btn a:hover {
    color: black;
    text-decoration: underline;
}

.resume .btn a.resume_img img {
    width: 200px;
    height: 132px;
}

.resume .btn a.resume_txt {
    margin-top: 6px;
    font-weight: 500;
}


.resume .introduce {
    width: 80%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
}



@media (max-width: 1280px) {
    #contents {
        width: 90%;
        margin: 80px 0;
        align-items: center;
        text-align: center;
    }

    .resume {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .resume .btn ul {
        list-style: none;
        margin: 24px 16px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .resume .introduce {
        width: 90%;
    }
}

@media (max-width: 533px) {
    .resume .btn ul {
        flex-direction: column;
    }

    .resume .btn li {
        display: flex;
        flex-direction: column;
        margin: 0 0 24px 0;
        width: 200px;
        text-align: center;
    }
}

