.as-marquee-container {
    background: var(--background-color);
    /* border-bottom: 1px solid #eeeeee; */
    padding: 24px 0 50px;
    overflow: hidden;
}

.as-marquee-header {
    text-align: center;
    margin-bottom: 30px;
}

marquee {
    display: block;
    width: 100%;
    vertical-align: middle;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 36px;
}

.marquee-content img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 1;
    transition: all 10s ease;
}

.marquee-content img {
    filter: none;
    opacity: 1;
}

.as-footer {
    background: #111111;
    color: #cccccc;
    /* padding: 56px 0 0; */
}

.as-footer-inner {
    max-width: 1500px;
    margin: auto;
    padding: 0 16px 16px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.as-footer h4,
.as-footer h5 {
    color: var(--background-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.as-footer p,
.as-footer a {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.as-footer a:hover {
    color: var(--primary-color);
}

.as-footer-bottom {
    padding: 24px 20px;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #222222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.as-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.as-footer-bottom-links a {
    margin-bottom: 0;
    font-size: 13px;
}

.as-footer-col p.link {
    display: none;
}

@media (max-width: 900px) {
    .as-footer-inner {
        grid-template-columns: 1fr;
    }

    .as-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.as-footer-links-wrap {
    display: flex;
    /* gap: 30px; */
}

.as-footer-col-1,
.as-footer-col-2 {
    flex: 1;
    padding: 0;
}

.as-footer-top {
    position: relative;
    background: transparent;
    overflow: hidden;
    /* padding: 40px 0 0; */
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.as-flight-sky {
    position: relative;
    max-width: 1500px;
    margin: auto;
    height: 120px;
    overflow: hidden;
}

.as-vision-text {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 5;
}

.as-vision-text h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--background-color);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
}

.as-vision-text span {
    color: var(--secondary-color)
}

.as-cloud {
    position: absolute;
    fill: rgba(255, 255, 255, 0.08);
    opacity: 0.6;
    animation: drift-cloud linear infinite;
    z-index: 1;
}

.as-cloud.c1 {
    width: 140px;
    top: 20px;
    left: -150px;
    animation-duration: 45s;
}

.as-cloud.c2 {
    width: 90px;
    top: 60px;
    left: -100px;
    animation-duration: 35s;
    animation-delay: -12s;
    opacity: 0.6;
}

.as-cloud.c3 {
    width: 180px;
    top: 10px;
    right: -200px;
    animation: drift-cloud-reverse 60s linear infinite;
    opacity: 0.8;
}

.as-cloud.c4 {
    width: 110px;
    top: 90px;
    left: -120px;
    animation-duration: 28s;
    animation-delay: -5s;
    opacity: 0.5;
}

.as-bird {
    position: absolute;
    fill: #666666;
    width: 24px;
    height: 24px;
    z-index: 2;
    animation: bird-fly linear infinite;
}

.as-bird.b1 {
    top: 40px;
    left: -50px;
    animation-duration: 15s;
    animation-delay: -2s;
}

.as-bird.b2 {
    top: 55px;
    left: -80px;
    width: 18px;
    height: 18px;
    animation-duration: 18s;
    animation-delay: -5s;
}

.as-paper-plane-wrapper {
    position: absolute;
    top: 50%;
    left: -150px;
    width: 140px;
    height: 70px;
    z-index: 10;
    animation: flight-path 12s linear infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.as-paper-plane-svg {
    width: 100%;
    height: 100%;
    transform-origin: center;
    animation: flight-wobble 4s ease-in-out infinite;
}