.article6 {
    position: relative;
    background: url(../images/a6-bg.jpg);
    background-size: cover;
}

.apanim {
    position: absolute;
    top: 55%; left: -100px;
    width: 100%;
    transform: rotate(-10deg);
}

.bar {
    position: relative;
    position: absolute;
    width: 0%;
    height: 4px;
    backdrop-filter: blur(10px);
    background: linear-gradient(to right, transparent 0%, #fff 100%);
    animation: loading 10s linear infinite;
}

@keyframes loading {
    100% {
        width: 200%;
    }
}

.airplane {
    position: absolute;
    top: -52px; right: -60px;
    width: 200px;
    min-width: 200px;
}

.a6-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50rem;
}

.a6-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10rem;
}

.a6-title img {
    height: 30rem;
}

.a6-title p {
    color: #222;
    font-size: 36rem;
    font-weight: 500;
}

.a6-title h5 {
    color: var(--main-color);
    font-size: 45rem;
}

.a6-image {
    position: relative;
    width: 350rem;
    height: 690rem;
    border-radius: 50rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    overflow: hidden;
}

.a6-mockup {
    position: absolute;
    top: 0; left: 0;
    margin: -2px 0;
    overflow: hidden;
    z-index: 2;
}

.a6-1 {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    animation: motion 10s linear 1s alternate;
    z-index: 1;
}

@keyframes motion {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: -300%;
    }
}


/*==================================================*/
@media (max-width: 550px) {
    .bar {
        animation-duration: 7s !important;
    }
}