/*==============================================
    Site Footer
===============================================*/
.site-footer {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    z-index: 1;
}

.site-footer--car-anim {
    overflow: hidden;
    padding-top: 30px;
}

.site-footer--car-anim .site-footer__top {
    margin-top: 152px;
}

.site-footer__car-track {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 122px;
    background: linear-gradient(180deg, #23264f 0%, #171a3c 42%, #0d102d 100%);
    border-top: 1px solid rgba(var(--gorent-white-rgb), .16);
    border-bottom: 1px solid rgba(var(--gorent-black-rgb), .72);
    box-shadow: inset 0 8px 16px rgba(var(--gorent-white-rgb), .05),
        inset 0 -16px 18px rgba(var(--gorent-black-rgb), .42);
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.site-footer__car-track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(var(--gorent-white-rgb), .26);
    transform: translateY(-50%);
}

.site-footer__car-track::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(var(--gorent-white-rgb), .22);
}

.site-footer__lane {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    overflow: hidden;
}

.site-footer__lane--forward {
    top: 0;
}

.site-footer__lane--reverse {
    bottom: 0;
}

.site-footer__lane::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 62%;
    transform: translateY(-50%);
    height: 3px;
    opacity: .78;
}

.site-footer__lane--forward::before {
    background: repeating-linear-gradient(90deg,
            rgba(var(--gorent-white-rgb), .82) 0 44px,
            transparent 44px 86px);
    animation: footerRoadLaneForward 2.15s linear infinite;
}

.site-footer__lane--reverse::before {
    background: repeating-linear-gradient(90deg,
            rgba(var(--gorent-white-rgb), .75) 0 42px,
            transparent 42px 84px);
    animation: footerRoadLaneReverse 2.35s linear infinite;
}

.site-footer__car {
    position: absolute;
    bottom: -2px;
    will-change: transform;
    filter: drop-shadow(0 8px 4px rgba(var(--gorent-black-rgb), .42));
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.site-footer__lane--forward .site-footer__car {
    left: -520px;
    animation-name: footerCarForward;
}

.site-footer__lane--reverse .site-footer__car {
    right: -520px;
    animation-name: footerCarReverse;
}

.site-footer__car img {
    width: 164px;
    max-width: none;
}

.site-footer__lane--reverse .site-footer__car img {
    transform: scaleX(-1);
}

.site-footer__car--one {
    animation-duration: 22s;
    animation-delay: 0s;
}

.site-footer__car--two {
    animation-duration: 28s;
    animation-delay: -9.4s;
}

.site-footer__car--three {
    animation-duration: 24s;
    animation-delay: -15.2s;
}

.site-footer__car--four {
    animation-duration: 26s;
    animation-delay: -6.4s;
}

.site-footer__car--five {
    animation-duration: 23s;
    animation-delay: -12.6s;
}

.site-footer__car--six {
    animation-duration: 30s;
    animation-delay: -19.4s;
}

.site-footer__car--two img,
.site-footer__car--four img {
    width: 148px;
}

.site-footer__car--three img {
    width: 156px;
    filter: hue-rotate(42deg) saturate(1.15);
}

.site-footer__car--six img {
    width: 152px;
    filter: hue-rotate(-30deg) saturate(1.08);
}

@keyframes footerRoadLaneForward {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -86px 0;
    }
}

@keyframes footerRoadLaneReverse {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 84px 0;
    }
}

@keyframes footerCarForward {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 2200px));
    }
}

@keyframes footerCarReverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100vw - 2200px));
    }
}

.site-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.site-footer__top {
    position: relative;
    display: block;
}

.site-footer__top-inner {
    position: relative;
    display: block;
    padding: 120px 0 113px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-right: 50px;
}

.footer-widget__about-logo {
    position: relative;
    display: inline-block;
}

.footer-widget__about-logo-img {
    height: 56px;
    width: auto;
}

.footer-widget__about-text {
    margin: 0;
    color: rgba(var(--gorent-white-rgb), .70);
    padding-top: 24px;
    padding-bottom: 26px;
}

.footer-widget__about-social {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-widget__about-social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--gorent-white-rgb), .28);
    border-radius: 50%;
    color: var(--gorent-white);
    font-size: 15px;
    transition: all 500ms ease;
}

.footer-widget__about-social a:hover {
    color: var(--gorent-black);
    background-color: var(--gorent-base);
    border-color: var(--gorent-base);
}

.footer-widget__form {
    position: relative;
    display: block;
}

.footer-widget__input {
    position: relative;
    display: block;
}

.footer-widget__input input[type="email"] {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 2px solid rgba(var(--gorent-white-rgb), .10);
    border-radius: 40px;
    outline: none;
    font-size: 18px;
    color: var(--gorent-gray);
    font-weight: 400;
    padding-right: 90px;
    padding-left: 40px;
    margin: 0 auto;
}

.footer-widget__btn {
    position: absolute;
    top: 50%;
    right: 0px;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 20px;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget__btn:hover {
    color: var(--gorent-base);
    background-color: var(--gorent-white);
}

.footer-widget__title {
    position: relative;
    display: inline-block;
    font-size: 22px;
    color: var(--gorent-white);
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.footer-widget__links {
    position: relative;
    display: block;
}

.footer-widget__links-list {
    position: relative;
    display: block;
}

.footer-widget__links-list li+li {
    margin-top: 16px;
}

.footer-widget__links-list li a {
    color: rgba(var(--gorent-white-rgb), .70);
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
    color: var(--gorent-base);
}

.footer-widget__links-list li a i {
    margin-right: 8px;
    color: var(--gorent-base);
}

.quick-col {
    display: flex;
    justify-content: center;
}

.quick-col .footer-widget__links {
    text-align: left;
}

.footer-widget__contact {
    position: relative;
    display: block;
    margin-left: -24px;
}

.footer-widget__contact-list {
    position: relative;
    display: block;
}

.footer-widget__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-widget__contact-list li+li {
    margin-top: 20px;
}

.footer-widget__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-list li .icon:hover {
    background-color: var(--gorent-base);
    border: 1px solid var(--gorent-base);
}

.footer-widget__contact-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--gorent-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-list li p {
    color: rgba(var(--gorent-white-rgb), .70);
}

.footer-widget__contact-list li p a {
    color: rgba(var(--gorent-white-rgb), .70);
}

.footer-widget__contact-list li p a:hover {
    color: var(--gorent-base);
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 30px;
}

.site-footer__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--gorent-white-rgb), .20);
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 28px;
}

.site-footer__copyright {
    position: relative;
    display: block;
}

.site-footer__copyright-text {
    color: rgba(var(--gorent-white-rgb), .70);
}

.site-footer__copyright-text a {
    color: var(--gorent-base);
}

.site-footer__copyright-text a:hover {
    color: var(--gorent-white);
}

@media (max-width: 768px) {
    .quick-col {
        justify-content: flex-start;
    }
}

.site-footer__bottom-menu-box {
    position: relative;
    display: block;
}

.site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer__bottom-menu li {
    position: relative;
    display: block;
}

.site-footer__bottom-menu li+li {
    margin-left: 25px;
}

.site-footer__bottom-menu li a {
    position: relative;
    display: inline-block;
    color: rgba(var(--gorent-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-menu li a:hover {
    color: var(--gorent-base);
}

@media (max-width: 767px) {
    .site-footer--car-anim {
        padding-top: 16px;
    }

    .site-footer--car-anim .site-footer__top {
        margin-top: 112px;
    }

    .site-footer__car-track {
        top: 10px;
        height: 90px;
    }

    .site-footer__lane::before {
        height: 2px;
    }

    .site-footer__car-track img {
        width: 128px;
    }

    .site-footer__car--two img,
    .site-footer__car--four img {
        width: 114px;
    }

    .site-footer__car--three img,
    .site-footer__car--six img {
        width: 122px;
    }

    .site-footer__lane--forward .site-footer__car {
        left: -360px;
    }

    .site-footer__lane--reverse .site-footer__car {
        right: -360px;
    }

    .site-footer__car--one,
    .site-footer__car--five {
        animation-duration: 20s;
    }

    .site-footer__car--two,
    .site-footer__car--four {
        animation-duration: 24s;
    }

    .site-footer__car--three,
    .site-footer__car--six {
        animation-duration: 22s;
    }

    .footer-widget__about-logo-img {
        height: 50px;
    }

    .footer-widget__about-social {
        gap: 10px;
    }

    .footer-widget__about-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}






/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
