@keyframes hassan {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.4);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 40px rgba(255, 255, 255, 0);
    }
}
.two-section {
    padding: 60px 0;
}
.two-section .left-item {
    display: flex;
    align-items: center;
    perspective: 800px;
}
.two-section .left-item .item-head {
    background: linear-gradient(to left, #ff4500, rgba(255, 104, 0, 0.69));
    width: 200px;
    height: 118px;
    transform: rotateY(-45deg);
    transform-origin: right;
    transform-style: preserve-3d;
}
.two-section .left-item .item-body {
    padding: 20px 20px;
    background: linear-gradient(to right, #f0f0f0, #ffffff) no-repeat left center;
    background-size: 30px;
    width: 400px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
}
.two-section .left-item .item-body .icon {
    width: 40px;
    position: absolute;
    top: 20px;
    left: -52px;
}
.two-section .left-item .item-body .icon span {
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 3px;
}
.two-section .right-item {
    display: flex;
    align-items: center;
    perspective: 800px;
    justify-content: end;
}
.two-section .right-item .item-head {
    background: linear-gradient(to right, #ff4500, rgba(255, 104, 0, 0.69));
    width: 200px;
    height: 118px;
    transform: rotateY(45deg);
    transform-origin: left;
    transform-style: preserve-3d;
}
.two-section .right-item .item-body {
    padding: 20px 20px;
    background: linear-gradient(to left, #f0f0f0, #ffffff) no-repeat right center;
    background-size: 30px;
    width: 400px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    position: relative;
}
.two-section .right-item .item-body .icon {
    width: 40px;
    position: absolute;
    top: 20px;
    right: -55px;
    z-index: 1;
}
.two-section .right-item .item-body .icon span {
    font-size: 14px;
    color: #fff;
    display: block;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 3px;
}
.two-section .item-foot {
    width: 10px;
    height: 70px;
    background-color: #ff4500;
}
.timeline-section {
    padding: 60px 0;
    background: url(/assets/images/about/timeline-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.timeline-section .timeline {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    background: linear-gradient(to bottom, #ff4500, #ff4500) no-repeat;
    background-size: 2px 100%;
    background-position: center center;
}
.timeline-section .timeline:nth-child(2n + 1) {
    flex-direction: row-reverse;
}
.timeline-section .timeline .title {
    flex: 1;
    display: flex;
}
.timeline-section .timeline .description {
    flex: 1;
    display: flex;
}
.timeline-section .timeline .description .block {
    border: 2px solid #000;
    width: 350px;
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    border-radius: 5px;
    min-height: 85px;
    box-sizing: border-box;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.timeline-section .timeline .description .block::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border: 2px solid #000;
    right: -7px;
    top: 50%;
    margin-top: -7px;
    transform: rotate(-45deg);
    z-index: 1111;
    background: #fff;
    border-bottom-right-radius: 2px;
}
.timeline-section .timeline:first-child {
    background-size: 2px 50%;
    background-position: center bottom;
}
.timeline-section .timeline:last-child {
    background-size: 2px 50%;
    background-position: center top;
}
.timeline-section .timeline:nth-child(2n) .title {
    justify-content: end;
}
.timeline-section .timeline:nth-child(2n) .description {
    justify-content: start;
}
.timeline-section .timeline:nth-child(2n) .description .block::after {
    left: -7px;
    right: unset;
    top: 50%;
    transform: rotate(135deg);
}
.timeline-section .center-circle {
    --size: 15px;
    background: #ff4500;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-sizing: content-box;
    position: relative;
}
.timeline-section .center-circle::before {
    --size: 16px;
    content: "";
    background: #ff4500;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}
.timeline-section .center-circle::after {
    --size: 30px;
    --position: -7px;
    content: "";
    background: #ff4500;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: var(--position);
    top: var(--position);
    z-index: 1;
    opacity: 0.4;
}
.timeline-section .title {
    justify-content: start;
    font-size: 18px;
    font-weight: 700;
}
.timeline-section .description {
    justify-content: end;
}
.media-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    padding: 60px;
}

.media-section.lazyloaded{
    background-image: url(../images/about/video-bg.png);
}

.item-body h3 {
    font-size: 18px;
    font-weight: 700;
}
.item-body .description {
    font-size: 14px;
}

