/* Footer styles
--------------------------------------------- */
.site-footer {
    padding: 30px 0 50px;
}

.footer__top {
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 1.05;
}

.footer__top li {
    margin-bottom: 18px;
}

.footer__top ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__top a {
    text-decoration: none;
}

.footer__top a:hover {
    text-decoration: underline;
}

.footer__top-row {
    display: flex;
}

.footer__top-left {
    width: 30%;
    min-width: 30%;
}

.footer__top-middle {
    width: 45%;
    min-width: 45%;
}

.footer__top-right {
    width: 25%;
    min-width: 25%;
}

.footer__top-title {
    opacity: 0.4;
    margin-bottom: 30px;
    width: 100%;
}

.footer__top-text {
    display: flex;
    flex-wrap: wrap;
}

.footer__top-text > ul {
    width: 44.5%;
    min-width: 44.5%;
}

.footer__top-text > ul:only-child {
    width: 100%;
}

.footer__top-item + .footer__top-item {
    margin-top: 28px;
}

.footer__top-description {
    font-size: 10px;
    letter-spacing: -0.1px;
    opacity: 0.4;
}

.footer__top-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer__top-social li {
    margin-right: 8px;
}

.footer__top-social a {
    display: inline-block;
    text-decoration: none;
    background-color: #F7F6F6;
    border: 1px solid rgba(64, 64, 65, 0.1);
    font-size: 12px;
    border-radius: 10em;
    padding: 10px 16px;
    font-weight: 500;
}

.footer__top-social a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #364758;
}

.footer__top-social a svg {
    width: 1em;
    height: 1em;
}

.footer__bottom {
    margin-top: 15px;
}

.marquee {
    position: relative;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 700;
    margin: 0;
    display: block;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 25px;
}

.marquee:not(.anim-stop) .marquee-inner {
    animation-name: marquee_anim;
}

.marquee.anim-stop .marquee-inner {
    margin-left: 0;
    width: 100vw;
    text-align: center;
}

.marquee.anim-stop .marquee-inner > span:not(:first-child) {
    display: none;
}

.marquee-base,
.marquee-inner {
    display: block;
    height: 145px;
}

.marquee-base img,
.marquee-inner img {
    display: block;
    height: 100%;
    max-width: none;
    width: auto !important;
}

.marquee-base {
    opacity: 0;
}

.marquee-inner {
    width: 10000px;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    animation-play-state: running;
    animation-iteration-count: infinite;
    animation-duration: 200s;
    animation-timing-function: linear;
}

@keyframes marquee_anim {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.footer__bottom-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    font-size: 10px;
    letter-spacing: -0.1px;
    opacity: 0.4;
}

.footer__bottom-list li {
    width: 25%;
}

.footer__bottom-list a {
    text-decoration: none;
}

.footer__bottom-list a:hover {
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .marquee-base,
    .marquee-inner {
        height: 110px;
    }
    .marquee-inner {
        width: 12000px;
        animation-duration: 220s;
    }
    .site-footer {
        padding-top: 40px;
    }
    .footer__top-left {
        display: none;
    }
    .footer__top-title {
        margin-bottom: 24px;
    }
    .footer__top-middle {
        width: 25%;
        min-width: 25%;
    }
    .footer__top-text {
        display: block;
    }
    .footer__top-text ul {
        width: 100%;
    }
    .footer__top-row {
        align-items: flex-start;
    }
    .footer__top-right {
        width: 75%;
        min-width: 75%;
        padding-left: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    .footer__top-right .footer__top-item {
        margin-top: 0;
        min-width: 180px;
    }
    .footer__top-right .footer__top-item br {
        display: block;
    }
    .footer__top-description {
        margin-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    .site-footer {
        padding-bottom: 20px;
    }
    .footer__bottom-list {
        flex-wrap: wrap;
        line-height: 1.1;
    }
    .footer__bottom-list li {
        width: 50%;
        min-width: 50%;
        margin-bottom: 10px;
    }
    .footer__bottom {
        margin-top: 25px;
    }
    .footer__top-middle,
    .footer__top-right {
        width: 50%;
        min-width: 50%;
    }
    .footer__top-right {
        padding-left: 10px;
    }
    .footer__top-right .footer__top-item {
        min-width: 0;
    }
    .footer__top-item.desktop,
    .footer__top-description.desktop {
        display: none;
    }
    .footer__top-item.mobile {
        margin-top: 20px;
    }
}

@media screen and (min-width: 576px) {
    .footer__top-item.mobile,
    .footer__top-description.mobile {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .footer__top-right .footer__top-item:nth-child(2) .footer__top-title {
        opacity: 1;
        font-size: 18px;
        font-weight: 500;
    }
}