/* PC 버전 시작 */
@media screen and (min-width: 768px) {
    
    footer{
    width: 100%;
    height: 450px;
    background-color: white;
    position: relative;
    display: flex;
    z-index: 2;
}

.footer {
    width: 1200px;
    background-color: #ffffff;
    color: black;
    font-family: Arial, sans-serif;
    border-top: 1px solid #999;
    margin: auto;
    padding: 50px 0;
    white-space: nowrap;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.brand-info, .additional-info {
    flex: 1;
}

.brand-info nav{
    display: flex;
}

.contact{
    border-radius: 10px;
    width: 120px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: black;
    color: white;
    margin: 0 10px 30px 10px;
}


.contact:hover{
    background-color: rgb(220, 220 , 220);
}

.contact:hover p{
    color: black;
}

.contact p:hover{
    text-decoration-line:underline;
}

footer p {
    font-size: 15px;
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.additional-info h2 {
    font-size: 25px;
    margin-top: 20px;
}

.additional-info p {
    margin: 5px 0;
}

.additional-info {
    display: flex;
    flex-direction: column;
}

.info-section {
    margin-right: 20px;
}

.info-section h2 {
    font-size: 20px;
    margin-top: 0;
}

.footer-icons {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.sns_img {
    display: flex;
    flex-direction: row;
}


.footer-icon img {
    width: 30px;
    height: 30px;
    margin: auto 5px;
}
footer h2{
    color: #2f2e2e;
    font-size: 25px;
    font-weight: bold;
}


.info_top{
    display: flex;
    margin-left: 240px;
}

.info_top>div{
    margin: 0 20px;
}

.info_bottom{
    display: flex;
    margin: 25px auto 0;
    position: relative;
    text-align: right;
    left: 67px;
}

.info_bottom>div{
    margin: 0 80px;
}

.font_link{
    width: 200px;
    margin-top: 6px;
}
}
/* PC 버전 끝 */



/* 모바일 버전 시작 */
@media screen and (max-width: 767px) {
    
    footer{
        width: 100%;
        height: 900px;
        background-color: white;
        position: relative;
        display: flex;
        z-index: 2;
        padding: 10px;
    }
    
    .footer {
        width: 100%;
        background-color: #ffffff;
        color: black;
        font-family: Arial, sans-serif;
        border-top: 1px solid #999;
        margin: 50px auto;
        padding: 50px 0;
        white-space: wrap;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .brand-info, .additional-info {
        flex: 1;
    }
    
    .brand-info nav{
        display: flex;
        margin-bottom: 20px;
    }
    
    .brand-info p{
        white-space: wrap;
    }

    .contact{
        border-radius: 10px;
        width: 120px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        background-color: black;
        color: white;
        margin: 0 10px 30px 10px;
    }
    
    .contact:hover{
        background-color: rgb(220, 220 , 220);
    }
    
    .contact:hover p{
        color: black;
    }
    
    footer p {
        font-size: 15px;
    }
    
    .contact p:hover{
        text-decoration-line:underline;
    }
    
    footer a {
        color: black;
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }
    
    .additional-info {
        width: 100%;
        display: block
    }
    
    .additional-info h2 {
        font-size: 25px;
        margin-top: 20px;
    }
    
    .additional-info p {
        margin: 5px 0;
    }
    
    .info-section {
        margin-right: 20px;
    }
    
    .info-section h2 {
        font-size: 20px;
        margin-top: 0;
    }
    
    .footer-icons {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }
    
    .sns_img {
        display: flex;
        flex-direction: row;
    }
    
    
    .footer-icon img {
        width: 30px;
        height: 30px;
        margin: auto 5px;
    }
    footer h2{
        color: #2f2e2e;
        font-size: 25px;
        font-weight: bold;
    }
    
    
    .info_top{
        display: flex;
        margin-top: 20px;
    }
    
    .info_bottom{
        display: flex;
        margin: 25px auto 0;
        position: relative;
        text-align: left;
    }
    
    
    .font_link{
        width: 90%;
        /* margin-top: 6px; */
    }
}