﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Pretendard";
}

li {
    list-style: none;
    width: 100%;
}

a {
    text-decoration: none;
}

.main-all {
    margin: 0 auto;
    width: 75%;
    min-height: calc(100% - 80px);
}

.wrap {
    position: relative;
    width: 100%;
    padding-bottom: 184px;
}

/* 메인 로고 */
.main_logo {
    margin: 0 auto;
    width: 80%;
    height: 300px;
    padding: 6% 0;
    overflow: hidden;
}

.main_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 방문절차 */
.step-all {
    margin: 0 auto;
    border: 2px solid #C3CBD9;
    width: 80%;
    padding: 3% 0;
    position: relative;
}

.step-title {
    text-align: center;
    font-size: 22px;
    color: #355482;
    font-weight: 700;
}

/* 절차 라인 */
.step-line {
    position: absolute;
    width: 75%;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -9;
    border: 1px solid #355482;
}

/* 절차 */
.step-list {
    padding-top: 4%;
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-weight: 500;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title {
    font-size: 20px;
}

.step-circle {
    background-color: #355482;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-list-title {
    padding-top: 8%;
    font-size: 20px;
    font-weight: 500;
    color: #707070;
}

/* 버튼 */
.btn-all {
    padding-top: 5%;
    margin: 0 auto;
    width: 35%;
    display: flex;
    justify-content: space-around;
}

button {
    width: 150px;
    height: 50px;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.btn-blue button {
    background-color: #00398F;
}

.btn-gray button {
    background-color: #A8A8A8;
}

.main-btn-gray button {
    background-color: #6192dd;
}

.btn-search button {
    background-color: #0066FF;
    width: 60px;
    height: 30px;
    font-size: 16px;
    font-weight: 400;
}

button img {
    padding-left: 8%;
}

@media (max-width: 768px) {
    .main-all {
        width: 95%;
    }

    /* 메인 로고 */
    .main-logo {
        height: 180px;
        width: 90%;
    }

    /* 방문절차 */
    .step-all {
        width: 95%;
    }

    /* 절차 라인 */
    .step-line {
        top: 55%;
    }

    .step-circle {
        width: 55px;
        height: 55px;
    }

    .step-list-title {
        font-size: 16px;
    }

    /* 버튼 */
    .btn-all {
        padding-top: 10%;
        width: 85%;
    }

    button {
        width: 135px;
        height: 45px;
        font-size: 16px;
    }
}
