*{
    box-sizing: border-box;
}

html{
    max-width: 100vw;
    overflow-x: hidden;
}

body{
    overflow-x: hidden;
    margin: 0px;
}

:root{
    --darkblue: #093190;
    --ligthdarkblue: #1b45ae;
    --blue: #006fde;
    --black: #3f3f3f;
    --gray: #dddee0;
    --red: #ce5e5e;
    --basic-font: "Noto Sans KR";
    --max-width: 610px;
}

.loading-container{
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.loader{
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #677A95;
    color: #CEE3F3;
}

.header h3{
    margin: 0;
    padding: 0;
    width: 66%;
    font-size: 1.50em;
    line-height: 1.3em;
    font-weight: 400;
}

.total{
    padding: 10px;
    margin-bottom: 60px;
}

.flex__div{
    gap: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-space{
    width: 100%;
    height: 5.5vw;
    max-height: 40px;
}

.banner__div{
    width: 100%;
    height: 100%;
    max-height: 720px;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/
    margin-bottom: 50px;
    pointer-events: none;
}

.banner__img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    content: url("/img/banner.png");
}

.header1-main{
    font-size: 40px;
    font-weight: 800;
    color: #008ad5;
}

.header1-sub{
    font-size: 30px;
    color: #008ad5;
}

.header2{
    font-family: var(--basic-font);
    font-size: 105px;
    font-weight: 1000;
    color: var(--darkblue);
}

.header3{
    font-family: var(--basic-font);
    font-size: 20px;
    font-weight: 600;
    margin-left: auto;
    color: #008ad5;
}

.go-to-form__div{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--darkblue);
    gap: 10px;
    opacity: 0;
}

.go-to-form__img{
    width: 40px;
    height: 60px;
}

.go-to-form__button-container {
    text-align: center;
}

.go-to-form__button {
    display: inline-block;
    padding: 10px 30px;
    font-family: var(--basic-font);
    font-size: 20px;
    color: #ffffff;
    background-color: var(--ligthdarkblue);
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.go-to-form__button:hover{
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: shake 0.5s infinite;
}

.box{
    width: 100%;
    max-width: var(--max-width);
    border: 5px solid var(--darkblue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
}

.box1{
    opacity: 0;
}

.box2{
    opacity: 0;
}

.box3{
    opacity: 0;
}

.box2 .title{
    margin-bottom: 60px;
}

.box .table2{
    margin-bottom: 40px;
}

.box3 .title{
    margin-bottom: 65px;
}

.box3 hr{
    margin-bottom: 20px;
}

.chart__div{
    display: flex;
    gap: 70px;
}

.chart__div span {
    font-family: var(--basic-font);
    font-size: 20px;
    font-weight: 700;
}

.chart__div span.selected{
    color: var(--darkblue);
}
.chart__div span.selected-big{
    color: var(--darkblue);
    font-size: 30px;
}

.title{
    display: flex;
    width: 410px;
    height: 65px;
    background-color: var(--darkblue);
    color: white;
    font-family: var(--basic-font);
    font-size: 30px;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

.chart1,
.chart2,
.chart3,
.chart4{
    width: 75px;
    height: 290px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.chart1{
    background:
            linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 85%,
            transparent 85%, transparent 100%),
            linear-gradient(to bottom,
            transparent 0%, transparent 85%,
            rgb(187, 187, 187) 85%, rgb(144, 144, 144) 100%);

}

.chart2{
    background:
            linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 70%,
            transparent 70%, transparent 100%),
            linear-gradient(to bottom,
            transparent 0%, transparent 70%,
            rgb(27, 69, 174) 70%, rgb(9, 49, 144) 100%);
}

.chart3{
    background:
            linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 45%,
            transparent 45%, transparent 100%),
            linear-gradient(to bottom,
            transparent 0%, transparent 45%,
            rgb(187, 187, 187) 45%, rgb(144, 144, 144) 100%);
}

.chart4{
    background:
            linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 15%,
            transparent 15%, transparent 100%),
            linear-gradient(to bottom,
            transparent 0%, transparent 15%,
            rgb(187, 187, 187) 15%, rgb(144, 144, 144) 100%);
}

.chart-set{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-box{
    display: flex;
    flex-direction: column;
    margin: 0px 50px 50px 50px;
    gap: 25px;
}

.info{
    display: flex;
    flex-direction: column;
}

.info-title{
    display: flex;
    width: 240px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #1b45ae;
    font-family: var(--basic-font);
    color: white;
    font-size: 25px;
    font-weight: 1000;
}

.info-content{
    font-family: var(--basic-font);
    font-size: 20px;
    font-weight: 700;
    color: #a9a9a9;
}

hr{
    width: 100%;
    background-color: #1b45ae;
    height: 1px;
    border: 0;
    margin: 0;
}

.table{
    width: 100%;
    padding: 50px 50px 30px 50px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
    align-items: center;
    justify-content: center;
}

.row > .row-name{
    color: var(--black);
    font-family: var(--basic-font);
    font-size: 40px;
    font-weight: 500;
}

.row > .row-value{
    color: var(--darkblue);
    font-family: var(--basic-font);
    font-size: 55px;
    font-weight: 1000;
    margin-left: auto;
}

.box1-small-info{
    margin: 0px 20px 20px auto;
    font-family: var(--basic-font);
    font-size: 20px;
    font-weight: 500;
    color: var(--blue);
}

.table2{
    width: calc(100% - 100px);
    margin: 0px 50px;
    display: flex;
    border-radius: 10px;
    border: 1px solid var(--gray);
    box-shadow: 5px 5px 10px var(--gray);
}

.column-before,
.column-after{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    font-family: var(--basic-font);
}

.column-name-before,
.column-name-after{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-name-before{
    font-size: 23px;
    font-weight: 600;
    color: #3c5671;
    border-top-left-radius: 10px;
    background-color: #b7bfc6;
}

.column-name-after{
    font-size: 30px;
    font-weight: 600;
    color: #fbfcfd;
    border-top-right-radius: 10px;
    background-color: var(--darkblue);
}

.column-value{
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 30px 20px;
    border: 1px solid var(--gray);
}

.column-value > span:last-child{
    margin-left: auto;
}

.column-before .column-value > span:nth-child(1){
    font-size: 20px;
    font-weight: 400;
    color: #879098;
}

.column-before .column-value > span:nth-child(2){
    font-size: 25px;
    font-weight: 800;
    color: #879098;
}

.column-after .column-value > span:nth-child(1){
    font-size: 20px;
    font-weight: 400;
    color: #586470;
}

.column-after .column-value:nth-of-type(-n+3) > span:nth-child(2){
    font-size: 25px;
    font-weight: 1000;
    color: var(--darkblue);
}

.column-after .column-value:nth-of-type(4) > span:nth-child(2){
    font-size: 25px;
    font-weight: 1000;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 7px;
}

.example-box{
    width: 100%;
}

.example__div{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray);
    box-shadow: 5px 5px 10px var(--gray);
    gap: 15px;
    padding: 30px 0px;
}

.example__div__label{
    font-family: var(--basic-font);
    font-size: 33px;
    font-weight: 700;
    color: #1f84ea;
}

.example__div img{
    width: 130px;
    height: 130px;
    border-radius: 10px;
}

.example-name{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-family: var(--basic-font);
    font-weight: 400;
    color: var(--black);
}

.example-name span{
    font-weight: 800;
    font-size: 25px;
}

.example-content__div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    background-color: #ebf1f6;
    font-family: var(--basic-font);
    gap: 25px;
}

.example-content__div > label{
    font-size: 22px;
    color: var(--red);
}

.example-content__div > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.example-content__div > div > label{
    font-family: var(--basic-font);
    font-size: 23px;
    font-weight: 500;
}

.example-content__div > div > div{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.example-content__div > div > div > img{
    width: 40px;
    height: 35px;
}

.example-content__div > div > div > label{
    font-size: 32px;
    font-weight: 700;
    color: #414141;
}

.img__div{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    opacity: 0;
}

.form{
    width: 100%;
    max-width: calc(var(--max-width) + 60px);
}

.form__div{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
}

.form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__label{
    font-family: var(--basic-font);
    font-size: 16px;
    color: #343434;
    font-weight: bolder;
    letter-spacing: -0.6px;
}

.form-control{
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    color: #333;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
}

.hp__div{
    display: flex;
    gap: 10px
}

.hp__div div{
    width: 100%;
}

.job__div{
    display: flex;
}

input[type=radio] {
    display: none;
}

input[type=radio] + label {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

input[type=radio]:checked + label {
    background-color: #2658a4;
    color: #fff;
    border-color: #2658a4;
}

.agree-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inputs-group{
    width: 100%;
    display: flex;
}

.label-check-group{
    width: 85%;
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #dedede;
    padding-left: 10px;
}

.label-check-group > input[type=checkbox] + .label-check{
    opacity: 0.5;
}

.label-check-group > input[type=checkbox]:checked + .label-check{
    opacity: 1;
}

input[type=checkbox]{
    display: none;
}

.label-check{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: var(--basic-font);
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

.label-check::before{
    content: "";
    display: inline-block;
    background-image: url("/img/check_icon.png");
    background-size: cover;
    width: 15px;
    height: 15px;
}

.more-btn{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6ecfb;
    border: 1px solid #0e2549;
    color: #0e2549;
    font-size: 12px;
    text-decoration: none;
    font-weight: 800;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

.agree-info{
    display: none;
    height: 300px;
    padding: 15px;
    background-color: #e6ecfb;
    border: 1px solid #0e2549;
    overflow-y: auto;
    color: #333;
    font-size: 14px;
    font-family: var(--basic-font);
    gap: 20px;
    flex-direction: column;
}

.btn-submit{
    width: 100%;
    background-color: #2658a4;
    border: none;
    height: 60px;
    color: #fff;
    text-align: center;
    font-family: var(--basic-font);
    font-size: 16px;
    cursor: pointer;
}

.background__div{
    position: absolute;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
}

.background__div > div{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    max-width: 370px;
    max-height: 641px;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-img-left{
    background-image: url("/img/background_left.png");
    left: 0px;
}

.background-img-right{
    background-image: url("/img/background_right.png");
    right: 0px;
}

.background__div > img{
    position: absolute;
    top: 0;
    max-width: 100%;
    background-repeat: no-repeat;
    margin-right: 30px;
}

.background__hr{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    width: 100%;
    z-index: -1;
    opacity: 0;
}

.background-img__hr{
    width: 100%;
    height: 1000px;
    background-image: url("/img/background_hr.png");
    background-position-x: 15%;
}

.swiper-slide{
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--basic-font);
    font-size: 15px;
    font-weight: 600;
    color: #65655c;
    background-color: #29282d;
    text-align: center;
    padding: 0px 10px;
}

.footer-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 780px;
    padding: 30px 0px;
}

.footer-info1{
    display: flex;
    flex-direction: column;
}

.footer-info2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #b3b2b7;
    border-radius: 30px;
    padding: 30px;
    gap: 30px;
}

.footer-info2 > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-info2 > div:nth-child(1),
.footer-info2 > div:nth-child(2){
    font-size: 17px;
    color: #a09cc1;
}

.footer-company-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-company-info > label:last-child{
    font-size: 17px;
    color: #a09cc1;
}

.fadeIn{
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeInUp{
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.flipInX{
    animation: flipInX 1s ease-in-out forwards;
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(1200px) rotateX(90deg);
        -ms-transform: perspective(1200px) rotateX(90deg);
        transform: perspective(1200px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(1200px) rotateX(-10deg);
        -ms-transform: perspective(1200px) rotateX(-10deg);
        transform: perspective(1200px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(1200px) rotateX(10deg);
        -ms-transform: perspective(1200px) rotateX(10deg);
        transform: perspective(1200px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}