.header {
    width: 93%;
    max-width: 1392px;
    height: 66px;
    padding: 0 30px;
    box-sizing: border-box;
    position: fixed;
    z-index: 9999;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
        background-color: rgba(231, 236, 240, .3);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}
.header_logo {
    width: 200px;
}
.header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 60px;
    white-space: nowrap;
}
.header_list {
    display: flex;
    align-items: center;
    column-gap: 35px;
}
.header_list_item {
    position: relative;
}
.header_list_item_link {
    font-size: 15px;
    color: #1E1E1E;
}
.header_line_btn {
    height: 45px;
}
.header_line_btn_icon {
    width: 21px;
}
.header_line_btn_text {
    font-size: 14px;
    color: #00B900;
    line-height: 20px;
}

.modal_btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.modal_btn:after {
    content: "";
    border-top: 6px solid #1E1E1E;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: .3s;
}
.modal_btn.active:after {
    transform: rotate(180deg);
}
.modal {
    position: fixed;
    opacity: 0;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .25);
    pointer-events: none;
    transition: .3s;
    cursor: pointer;
}
.modal.show {
    opacity: 1;
    pointer-events: inherit;
}
.modal_list {
    background-color: #fff;
    border-radius: 4px;
    padding: 40px;
    position: absolute;
    z-index: 9999;
    top: 50px;
    left: -30px;
    width: 436px;
    transform-origin: top left;
    transition: .5s;
    transform: scale(0.97);
    opacity: 0;
    pointer-events: none;
}
.modal_list.show {
    transform: scale(1);
    opacity: 1;
    pointer-events: inherit;
}
.modal_list_item {
    width: 356px;
}
.modal_list_item:nth-of-type(-n+2) {
    padding-bottom: 25px;
}
.modal_list_item + .modal_list_item {
    border-top: 1px solid #878C9E;
    padding-top: 25px;
}
.modal_list_item_title {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
}
.modal_list_item_box {
    display: flex;
    column-gap: 15px;
    margin-top: 10px;
}
.modal_list_item_img {
    width: 170px;
    aspect-ratio: 1.618 / 1;
    border-radius: 4px;
}
.modal_list_item_textbox {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.modal_list_item_text {
    display: flex;
    align-items: flex-end;
    column-gap: 5px;
    margin-bottom: 3px;
}
.modal_list_item_text1 {
    font-family: "oswald", sans-serif;
    font-weight: 300;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.modal_list_item_text2 {
    font-size: 15px;
}
.modal_list_item_text3 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #3840F8;
}
.modal_list_item_arrow {
    width: 35px;
    margin-left: auto;
    margin-top: auto;
}
@media (max-width: 1250px) {
    .header_right {
        display: none;
    }
}
@media (max-width: 767px) {
    .header {
        padding: 0 10px;
        top: 20px;
    }
    .header_logo {
        width: 180px;
    }
}