.first_frame {
    width: 100%;
    background: url(/img/background3.png);
    background-position: 50%,50%;
    background-repeat: no-repeat; 
    background-size: cover;
    height: 500px;
    position: relative;
    /* background-attachment: fixed; */
}
.first_title_box {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
}
.main_title_text {
    color: #fff;
    font-size: 40px;
    font-family: 'Poppins-Medium';
    margin-right: -80px;
}
.rotate_img {
    animation: rotate 7s infinite linear; 
    transform-origin: center;
}
.first_nav_wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #00000070;
}
.first_nav_frame {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.first_nav {
    width: 25%;
    text-align: center;
    padding: 15px 0px;
    font-size: 22px;
    color: #fff;
    font-family: 'NotoSans-Bold';
    cursor: pointer;
}
.first_nav.on {
    background-color: #fff;
    color: #000;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 모달 */
.terms_wrap {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #00000040;
    z-index: 30;
    display: none;
}
.terms_frame {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
}
.terms_header {
    width: 100%;
    padding: 10px 10px;
    font-size: 16px;
    font-family: 'NotoSans-Bold';
    color: #fff;
    background-color: rgb(0, 33, 63);
}
.terms_content_frame {
    width: 100%;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #FFF;
}
.terms_content {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    background-color: rgb(241, 241, 241);
    font-family: 'NotoSans-Medium';
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 8px;
}
.temrs_close_btn {
    margin: 0 auto;
    font-size: 14px;
    cursor: pointer;
    font-family: 'NotoSans-Bold';
    color: #fff;
    background-color: rgb(0, 33, 63);
    text-align: center;
    padding: 10px 20px;
}


/* 두번째 영역 */
.second_frame {
    width: 80%;
    margin: 0 auto;
}
.second_main_header {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    border-bottom: 2px solid #EEEEEE;
    font-family: 'NotoSans-C-Bold';
    font-size: 30px;
    color: #222222;
}
.second_main_wrap {
    padding-top: 50px;
}
.second_main_items {
    width: 86%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.bottom_gap {
    padding-bottom: 50px;
}
.second_main_items1 {
    align-items: flex-start;
}
.second_text_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}
.middle_text_wrap {
    padding-top: 20px;
}
.second_text_header {
    font-size: 24px;
    font-family: 'NotoSans-Bold';
    color: #222222;
}
.color_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 숨겨진 메뉴바 */
.hide_first_nav_wrap {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
    z-index: 19;
}
.hide_first_nav_header {
    width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 2px solid #00000020;
}
.hide_first_nav_header_text {
    color: #222222;
    font-family: 'NotoSans-Bold';
    font-size: 18px;
}
.hide_first_nav_frame {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    width: 100%;
    background-color: #fff;
    display: none;
}
.hide_first_nav {
    width: 100%;
    color: #222222;
    border-bottom: 2px solid #00000020;
    font-size: 18px;
}

/* 분석절차 */
.analysis_content_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-bottom: 100px;
}
.analysis_content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 100px;
    background-color: #2B80CF;
    border: 3px solid #fff;
    box-shadow: 0px 0px 6px #0000004f;
    border-radius: 25px;
}
.analysis_content_text {
    font-family: 'NotoSans-Bold';
    font-size: 18px;
    color: #fff;
}
.analysis_content_text1 {
    font-family: 'NotoSans-Medium';
    font-size: 16px;
    color: #fff;
}
.analysis_content_inner_frame {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #00213F;
    padding: 25px 30px;
    border: 3px solid #fff;
    box-shadow: 0px 0px 6px #0000004f;
    border-radius: 25px;
}
.analysis_content2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.analysis_text_frame {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.analysis_text {
    font-family: 'NotoSans-Medium';
    font-size: 22px;
    color: #fff;
}
.analysis_text span {
    color: #0099FF;
}
.another_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 150px;
}
.another_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.another_img {
    width: 55px;
    height: 55px;
}

/* 분석의뢰 */
.mission_select_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-bottom: 50px;
}
.mission_select {
    font-size: 30px;
    font-family: 'Poppins-Bold';
    cursor: pointer;
}
.mission_select.on {
    color: #1968B3;
}
.mission_inner_frame {
    width: 100%;
    border-top: 3px solid #D1BEDC;
    border-bottom: 3px solid #D1BEDC;
}
.mission_outer_item {
    width: 100%;
    display: flex;
    align-items: unset;
    justify-content: space-between;
    border-bottom: 1px solid #D1BEDC;
}
.last_mission_outer_item {
    border-bottom: none;
}
.mission_item {
    width: 50%;
    display: flex;
    align-items: center;
}
.mission_item1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mission_item2 {
    width: 100%;
    border-bottom: 1px solid #D1BEDC;
    display: flex;
    align-items: center;
}
.mission_item3 {
    width: 100%;
    /* border-bottom: 1px solid #D1BEDC; */
    display: flex;
    align-items: center;
}
.last_mission_item2 {
    border-bottom: none;
}
.mission_item2 .mission_name_section {
    width: 30%;
}
.mission_item3 .mission_name_section {
    width: 15%;
}
.mission_name_section {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #222222;
    font-family: 'NotoSans-Bold';
    background-color: #F8F8F8;
    padding: 15px 0px;
    height: 100%;
}
.mission_name_section span {
    color: #F53939;
}
.mission_item3 .mission_content_section {
    width: 85%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}
.mission_content_section {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
}
.option_select {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
    font-family: 'NotoSans-Medium';
}
.caution_text {
    font-family: 'NotoSans-Bold';
    font-size: 12px;
    color: #F53939;
    width: 100%;
    text-align: right;
    padding-top: 5px;
}
.mission_inner_input_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.input_type1 {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium'; 
}
.input_type1::-webkit-inner-spin-button {
    display: none;
}
.input_type2 {
    width: 60%;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium'; 
}
.input_type2::-webkit-inner-spin-button {
    display: none;
}
.input_type3 {
    width: 40%;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium'; 
}
.input_type4 {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium'; 
    resize: none;
    white-space: pre-line;
}
.input_type5 {
    width: calc(100% - 70px);
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium'; 
}
.address_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.address_frame {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.input_btn {
    width: 40%;
    text-align: center;
    background-color: #444444;
    color: #fff;
    font-family: 'NotoSans-Bold';
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0px;
}
.mission_radio_frame {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
}
.mission_radio_frame p {
    font-family: 'NotoSans-Bold';
    font-size: 12px;
    color: #F53939;
}
.mission_reddio_item {
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    color: #222222;
}
.mission_reddio_item input {
    accent-color: gray;
}
.file_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.file_name {
    width: 85%;
    height: 100%;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'NotoSans-Medium';
    border: 1px solid gray;
    outline: none;
}
.business_document {
    width: 85%;
}
.file_input {
    display: none;
}
.file_input_label {
    width: 15%;
    text-align: center;
    background-color: #444444;
    color: #fff;
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    padding: 10px 0px;
    cursor: pointer;
}
.add_btn {
    width: 15%;
    padding: 10px 0px;
    text-align: center;
    background-color: #888888;
    color: #fff;
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    cursor: pointer;
}
.mission_content_frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mission_content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.mission_content_text {
    width: 70px;
    text-align: left;
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    color: #222222;
}

/* 개인정보처리방침 */
.personal_policy_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 50px;
}
.personal_policy_wrap label {
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    color: #222222;
}
.call_terms {
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    color: #222222;
    cursor: pointer;
}
.analysis_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 150px;
}
.analysis_btn {
    width: 150px;
    text-align: center;
    padding: 15px 0px;
    font-size: 18px;
    font-family: 'NotoSans-Bold';
    color: #fff;
    cursor: pointer;
}
.cancle_btn {
    background-color: #AAAAAA;
}
.registration_btn {
    background-color: #00213F;
}
.tem_frame {
    display: none;
}
.bio_frame {
    display: none;
}

/* 반응형 */
@media screen and (max-width:1450px) {
    .analysis_content_wrap {
        flex-direction: column;
    }
    .rotate_arrow {
        transform: rotate(90deg);
    }
    .analysis_content1 {
        width: 100%;
    }
    .analysis_content_inner_frame {
        width: 100%;
    }
}
@media screen and (max-width:1024px) {
    .footer {
        border-top: 1px solid #D5D5D5;
    }
    .first_nav_wrap {
        display: none;
    }
    .hide_first_nav_wrap {
        display: block;
    }
}
@media screen and (max-width:1024px) {
    .mission_outer_item {
        flex-direction: column;
        border-bottom: none;
    }
    .mission_item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #D1BEDC;
        align-items: initial;
    }
    .mission_name_section {
        padding: 0px 0px;
        height: auto;
    }
    .mission_item1 {
        width: 100%;
    }
    .mission_item2 {
        align-items: initial;
    }
    .mission_item3 {
        border-bottom: 1px solid #D1BEDC;
        align-items: initial;
    }
    .mission_item3 .mission_name_section {
        width: 30%;
    }
    .mission_item3 .mission_content_section {
        width: 70%;
    }
    .last_mission_item2 {
        border-bottom: 1px solid #D1BEDC;
    }
}
@media screen and (max-width:955px) {
    .analysis_text {
        font-size: 16px;
    }
    .another_wrap {
        flex-direction: column;
        gap: 20px;
    }
    .another_arrow {
        transform: rotate(90deg);
    }
    .file_wrap {
        flex-direction: column;
    }
    .file_name {
        width: 100%;
    }
    .file_input_label {
        width: 100%;
    }
    .add_btn {
        width: 100%;
    }
    .mission_radio_frame {
        flex-direction: column;
        align-items: flex-start;
    }
    input {
        font-size: 14px !important;
    }
}
@media screen and (max-width:700px) {
    .second_main_header {
        font-size: 24px;
    }
    .second_text_header {
        font-size: 20px;
    }
    .mission_name_section {
        font-size: 14px;
    }
    .mission_reddio_item {
        font-size: 14px;
    }
    .mission_content_text {
        font-size: 14px;
    }
    .personal_policy_wrap label {
        font-size: 14px;
    }
    .input_btn {
        font-size: 14px;
        padding: 13px 0px;
    }
    .file_input_label {
        font-size: 14px;
        padding: 13px 0px;
    }
    .add_btn {
        font-size: 14px;
        padding: 13px 0px;
    }
    .file_wrap {
        gap: 5px;
    }
    .call_terms {
        font-size: 14px;
    }
    .analysis_btn {
        font-size: 14px;
    }
}
@media screen and (max-width:650px) {
    .second_main_header {
        padding-top: 50px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width:600px) {
    .first_title_box {
        left: 30%;
    }
    .analysis_content_inner_frame {
        flex-direction: column;
    }
}
@media screen and (max-width:520px) {
    .terms_frame {
        width: 300px;
    }
}
