.footer-3 {

    padding: 5rem 2rem 3rem;

    background-color: #f1f1f1;

}



.footer-3__container {

    display: flex;

    flex-wrap: wrap;
    justify-content: space-between;

    max-width: 1200px;

    margin: 0 auto;

}

.footer-3__container nav{
    padding-left: 15px;
}

.footer-3__logo {

    width: 104px;

    height: 26px;

    margin-bottom: .2em;

}



.footer-3__caption {

    margin-top: 0;

    color: #a6adb3;

    font-size: .75em;

}



.footer-3__title,

.footer-3__link {

    margin: 0 0 .8em;

    color: #333;

    font-size: .9em;

}



.footer-3__title {

    font-weight: 600;

}



.footer-3__list {

    padding: 0;

    list-style-type: none;

}



.footer-3__link {

    display: block;

}



.footer-3__link:not(:hover) {

    text-decoration: none;

}



.loading {

    display: none;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    z-index: 1000;

    text-align: center;

    color: #fff;

    font-size: 24px;

    line-height: 100vh;

}



.loading-spinner {

    border: 12px solid #f3f3f3;

    border-top: 12px solid #3498db;

    border-radius: 50%;

    width: 80px;

    height: 80px;

    animation: spin 2s linear infinite;

    margin: auto;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}

.footer-3__bottom{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid #E3E3E3;
    font-size: 14px;
}
.footer-3__bottom-col{
    width: 30%
}
.footer-3__bottom-col:last-child{
    width: 70%;
    display: flex;
    align-items: center;
    gap: 10px 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 10px;
}
.footer-3__subLink {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}
.footer-3__social {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 24px;
    line-height: 1;
}
.footer-3__social svg{
    width: 24px;
    height: 24px;
}
@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

@media screen and (max-width: 980px){
    .footer-3__head {
        width: 100%;
        margin-bottom: 10px
    }
    .footer-3__container nav{
        padding-left: 0;
    }
}

@media only screen and (max-width: 768px) {

    .footer-3__container {

        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

    .footer-3__container nav{
        width: calc((100% - 20px)/3)
    }

    .footer-3__caption br {

        /* display: none; */

    }

    .footer-3__bottom-col{
        width: 100%
    }
    .footer-3__bottom-col:last-child{
        justify-content: flex-start;
        width: 100%
    }

}
@media screen and (max-width: 399px){
    .footer-3__container {
        gap: 20px
    }
    .footer-3__head {
        width: calc((100% - 20px)/2)
    }
     .footer-3__head img{
        max-width: 100%;
     }
    .footer-3__container nav{
        width: calc((100% - 20px)/2)
    }
}