.site-footer{
    padding: 50px 40px 20px;
}

.footer-container{
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
}

.footer-top{
    display: flex;
    gap: 30px;
}

.footer-logo {
    width: calc((100% / 3) - 20px);
}

.footer-logo a {
    display: inline-block;
    margin-top: -8px;
}

.footer-menu{
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-menu > div {
    width: calc((100% / 3) - 20px);
    white-space: nowrap;
}

.footer-nav-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin:0;
    list-style: none;
}

.footer-nav-column ul a{
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 169%;
    color: #00253e;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-nav-conact{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-nav-conact-item{
    display: flex;
    flex-direction: column;
    gap:8px
}

.footer-nav-conact-item span{
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00253e;
}

.footer-nav-conact-item a{
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00253e;
    text-decoration: none;
}

.footer-pay-icon{
    display: flex;
    gap:24px;
    width: calc((100% / 3) - 20px);
    justify-content: flex-end;
}

.footer-pay-icon img{
    max-height: 34px;
}

.footer-bottom{
    border-top: 1px solid #cbd7df;
    padding-top: 20px;
    margin-top: 74px;
}

.footer-copyright p{
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #00253e;
    opacity: 0.45;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .footer-top {
        flex-wrap: wrap;
    }
    .footer-logo {
        width: calc((100% / 3) - 15px);
    }
    .footer-menu {
        width: calc((100% / 1.5) - 15px);
    }
    .footer-menu > div {
        width: 100%;
    }
    .footer-pay-icon {
        width: calc((100% / 3) - 15px);
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 20px;
    }
    .footer-top {
        gap: 20px;
    }
    .footer-logo {
        width: calc((100% / 3) - 10px);
    }
    .footer-menu {
        width: calc((100% / 1.5) - 10px);
        gap: 20px;
    }
    .footer-pay-icon {
        width: calc((100% / 3) - 10px);
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 24px 20px 20px;
    }
    .footer-logo {
        width: calc(50% - 10px);
    }
    .footer-logo a {
        margin-top: 0;
    }
    .footer-menu {
        order: 1;
        width: 100%;
        border-top: 1px solid #cbd7df;
        padding-top: 20px;
    }
    .footer-pay-icon {
        width: calc(50% - 10px);
        justify-content: flex-end;
        align-items: center;
    }
    .footer-bottom {
        margin-top: 24px;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    .footer-menu > div {
        width: 100%;
        text-align: center;
    }
    .footer-nav-conact {
        order: 1;
        gap: 15px;
        align-items: center;
        border-top: 1px solid #cbd7df;
        padding-top: 20px;
    }
    .footer-nav-conact-item {
        align-items: center;
    }
    .footer-pay-icon {
        gap: 15px;
    }
    .footer-pay-icon img {
        max-height: 24px;
    }
}