.site-footer{
    background-color: var(--main-color);
    color: #fff;
    padding: 20px 0;
}  

.site-footer hr{
    margin-top: 20px;
    margin-bottom: 20px;
}

.site-footer .footer-top{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.site-footer .footer-top .block.about{
    width: 40%;
}
.site-footer .footer-top .block-links{
    display: flex;
    justify-content: space-between;
    width: 52%;
}

.site-footer .footer-top .block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}

.site-footer .footer-top .about .logo span {
    font-family: 'Montserrat-Bold';
    font-size: 40px;
    color: #fff;
    line-height: normal;
}

.site-footer .footer-top .about .description p {
    font-size: 14px;
    text-align: justify;
}

.site-footer .footer-top .about .contact .item span {
    font-size: 25px;
    color: #fff;
}

.site-footer .footer-top .about .socials {
    display: flex;
    gap: 10px;
}

.site-footer .footer-top .about .socials .icon svg {
    width: 30px;
    height: auto;
}
.site-footer .footer-top .about .socials .icon svg path {
    fill: #fff;
}


.site-footer .footer-top .links .title{
   font-size: 25px;
   line-height: 50px;
}

.site-footer .footer-top .links .items {
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    unicode-bidi: isolate;
}

.site-footer .footer-top .links .items .item {
    margin-bottom: 15px;
}

.site-footer .footer-top .links .items .item a {
   color: #fff;
   font-size: 15px;
    line-height: normal;
}

.site-footer .footer-bottom .copyright{
    text-align: center;
}


.link-icon{
    display: flex;
    align-items: start;
    gap: 15px;
}
.link-icon .image{
    width: 10%;
}
.link-icon .text{
    width: 90%;
}

.link-icon .image img {
    width: 100%;
    height: auto;
}


@media (max-width: 768px) {
    .site-footer .footer-top {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
    }

    .site-footer .footer-top .block.about {
        width: 100%;
    }

    .site-footer .footer-top .block-links {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .site-footer .footer-top {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
        padding: 0 10px;
    }
    .site-footer .footer-top .block.about {
        width: 100%;
    }
    .site-footer .footer-top .block-links {
         width: 100%;
    }
}