.footer {
    background-color: #ff9e30;
    width: 100%;
    min-height: 200px;
    margin-top: 50px;
}

.footer_body {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0px 10px 0px;
}

.footer_body_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
}

.footer_body_list_item_title {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 4px solid white;
    line-height: 50px;
}

.footer_body_list_item_cty {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 35px;
}

.footer_body_list_item_mst {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
}

.footer_body_list_item_card {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    margin-top: 10px;
    font-size: 20px;
    line-height: 30px;
    cursor: pointer;
}

.footer_body_list_item_card:hover {
    color: black;
    transition: 0.5s;
}

.footer_body_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.footer_body_text {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    text-align: center;
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .footer_body {
        width: 1000px;
    }
}

@media only screen and (max-width: 999px) {
    .footer_body {
        width: 100%;
    }
    .footer_body_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .footer_body_list_item_title {
        font-size: 16px;
    }
    .footer_body_list_item_cty,
    .footer_body_list_item_mst {
        font-size: 16px;
        margin-top: 10px;
    }
    .footer_body_list_item_card {
        font-size: 16px;
        line-height: 22px;
    }

    .footer_body_logo {
        margin-top: 20px;
    }
    .footer_body_text {
        margin-top: 15px;
        font-size: 16px;
        text-align: justify;
    }

    .footer_body_text {
        padding: 0px 10px;
        box-sizing: border-box;
    }
}
