*{
    margin: 0;
}
.footer_container{
    background-color: rgb(14, 14, 14);
    margin-top: 150px;
}
.footer_wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer_flex_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_flex_01{
    width: 40%;
}
.footer_flex_01 h2{
    font-size: 25px;
    color: #ffff;
    font-family: serif;
}
.footer_flex_02{
    width: 60%;
    margin: 0 0 0 auto;
}
.footer_flex_01 img{
    width: 150px;
    height: auto;
    object-fit: cover;
}
.footer_flex_02 ul{
    display: flex;
    list-style: none;
    justify-content: flex-end;
    gap:10px;
    box-sizing: border-box;
}
.footer_flex_02 ul li a{
    text-decoration: none;
    color: #ffff;
    font-family: serif;
}
.footer_flex_01 h2{
   min-width:300px
}
@media(max-width:768px){
    .footer_wrapper{
        padding-bottom: 0px;
    }
    .footer_flex_content{
        flex-wrap: wrap-reverse
    }
    .footer_flex_01{
        width: 100%;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 20px;
    }
    .footer_flex_02{
        width: 100%;
        margin:auto 0;
        text-align: center;
    }
    .footer_flex_02 ul{
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
    }
    .footer_flex_02 ul li{
        width: 80%;
    }
}
