.footer{
    background: var(--color-2);
    color:var(--color-1);
    border-radius: 30px 30px 0 0;
    padding:10px 0 0;
}
@media (min-width: 768px){
    .footer{
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: 111;
        left: 0;
    }
    .footer-container{
        padding:26px 15px;
    }
}
.footer-container{
    max-width: 1200px;
    margin:0 auto;
}
.footer a{
    color:var(--color-1);
}
.footer-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left{
    display: flex;
    flex-direction: column;
    gap:5px;
}
.footer-name, .footer-email, .footer-address{
    font-size: 16px;
    line-height: 20px;
    font-style: normal;
}
.footer-address{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
}
.footer-phone{
    display: flex;
    align-items: center;
    gap:5px;
}
.footer-phone span{
    font-size: 20px;
    line-height: 25px;
    font-weight: 800;
}
.footer-wrapper{
    display: flex;
}
.footer-menu{
    list-style: none;
    padding:0;
    display: flex;
    margin:0 5px 0 0;
    gap: 5px;
}
.footer-menu li{
    margin-bottom: 0;
}
@media (max-width: 1200px){
    .footer-row{
        padding-bottom: 25px;
    }
}
@media (max-width: 767px){
    .footer{
        padding:15px 0;
    }
    .footer-row{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap:70px;
        padding-bottom: 0;
    }
}