#site-footer {
    border-top:0.5px solid white;
    background: black;
    color: white;
    padding: 60px 5% 20px 5%;
    font-size: 13px;
    line-height: 18px;
}

#footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

.footer-block {
    flex: 0 1 auto;
    min-width: 150px;
}

.footer-main {
    flex: 0 1 auto;
    min-width: 35%;
}
#footer-logo {
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-title {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
    cursor: default;
}
.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-icons {
    display: flex;
    gap: 10px;
    margin-top: 0px;
}

.footer-icon {
    height: 22px;
    opacity: 1;
    cursor: pointer;
    /* transition: opacity 0.2s; */
}
.footer-icon:hover {
    opacity: 1;
}

#footer-bottom {
    margin-top: 20px;
    text-align: left;
    font-size: 12px;
    opacity: 0.6;
}
@media screen and (max-width:768px){
    .footer-block{
        min-width:0px;
    }
    .footer-main{
        min-width: 35%;
    }
    #footer-logo{
        font-size:18px;
        margin-bottom:5px;
    }
    .footer-sub-block {
        margin-top: 20px;
    }
    .footer-title{
        margin-bottom:5px;
        font-size:11px;
    }
    .footer-links li {
        margin-bottom: 2px;
        font-size: 11px;
    }
}