.footer-box{
    width: calc(50% - 20px);
    height: auto; 
    background-color: var(--primary-one);
    margin:0 10px;
    float: left;
    display: flow;
    padding:0 20px;
}
.footer-title{
    width: 100%;
    text-align:left;
    color:white;
    font-size: 1.2rem;
    text-decoration:none;
    display: block;
}
.footer-text{
    height: 59px;
    line-height: 59px;
    color:white;
    text-align: left;
}
.footer-rrss-title{
    text-align:right;
    color:white;
    font-size: 1.2rem;
}
.footer-rrss{
    padding: 15px 5px;
    display: flex;
    justify-content: right;
    gap: 20px;
}
.footer-line{
    margin: 20px;
    border: 1px solid white;
    display: block;
    overflow: hidden;
    padding: 0 20px;
    display:none;
}
@media (max-width: 1030px) {
    .footer-text{
        line-height: 25px;
        padding: 4px 0px;
        text-align: left;
    }
}
@media (max-width: 500px) {
    .footer-box {
        flex-direction: column;
        width: calc(100% - 20px);
    }
    .footer-title{
        text-align: center;
    }
    .footer-text{
        line-height: 25px;
        padding: 4px 0px;
        text-align: center;
    }
    .footer-line{
        display:block;
    }
    .footer-rrss-title{
        text-align: center;
    }
    .footer-rrss{
        justify-content: center;
    }
}