.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: 320rem;
    height: auto;
}

.a6-phone {
    width: 100%;
    filter: drop-shadow(0 25px 45px rgba(73, 51, 255, .22));
}


/*==================================================*/
@media (max-width: 550px) {
    .bar {
        animation-duration: 7s !important;
    }
}