@keyframes slide-left-to-right {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-right-to-left {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-left-to-right {
    animation: slide-left-to-right 1s ease-out forwards;
}

.animate-slide-right-to-left {
    animation: slide-right-to-left 1s ease-out forwards;
}

.to-left {
    animation: to-left 1s ease-out forwards;
}
@keyframes to-left {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(44%);
        opacity: 1;
    }
}

.about-banner-video{
    width:100%
}
.about-banner-video-mobile{
    display:none
}
.section-about-banner{
    margin-top:65px
}
.about-banner-text{
    max-width:560px;
    margin-top:120px
}
.about-banner-text-2{
    max-width:390px;
    margin-top:120px
}
.set-items{
    display:flex;
    justify-content:space-between;
    max-width:715px;
    gap:15px;
    margin:80px auto 0;
    align-items:baseline;
}
.set-item{
    display: flex;
    justify-content: center;
    flex-direction:column;
    gap:20px;
    max-width:170px;
    align-items:center;
}
.svg-icon-block{
    width:fit-content;
    margin:132px  auto 0;

}
.section-arabic-scent{
    margin-top:250px;
}
.arabic-scent-block{
    text-align:center;
}
.arabic-scent-block-text{
    max-width:560px;
    margin:0 auto;
}
.heading-line{
    position:relative;
}
.heading-line:before{
    background:#939393;
    position:absolute;
    content: '';
    height:124px;
    width:1px;
    top:-154px;
    left: 50%;
    transform: translateX(-50%);
}
.about-text-block{
    margin:80px auto;
}
.about-svg-icon-block{
    margin:0 auto;
    overflow:hidden;
}
video{
    position:relative;
    bottom:-20px;
}
.about-banner-video{
    overflow:hidden;
}

@media (max-width: 615px) {
    .set-item-2{
        otder:1
    }
    .set-item-1{
        order:2
    }
}