.about {
    padding: 80px 0px 100px 0px;
    background-image: linear-gradient(92.52deg, #0026A0 0%, #0F1760 100%);

    display: flex;
    justify-content: center;
}


.about__body {
    position: relative;
    color: #fff;
    padding: 0px 50px;

    max-width: 1175px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.about__title {
    min-width: 200px;
    font-size: 48px;
    font-weight: 600;
    line-height: 72px;
}

.about__description {
    white-space: pre-wrap;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.about__description > p:not(:last-child) {
    margin-bottom: 24px;
}


/* Particle */
.about__particle {
    position: absolute;
    top: -100px;
    left: -500px;
    width: 470px;
    height: 455px;
    
}

.about__particle img {
    width: 100%;
    object-fit: cover;
}

/* Animation of Values Section */
.about__title {
    opacity: 0;
    transform: translateX(60px);
}

.about__description {
    opacity: 0;
    transform: translateX(60px);
}

.animate .about__title {
    animation: slide-in 250ms ease-out forwards;
    animation-delay: 250ms;
}

.animate .about__description {
    animation: slide-in 350ms ease-out forwards;
    animation-delay: 350ms;
}

@keyframes slide-in {
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Responsiveness */
@media (max-width: 1200px) {
    .about {
        padding: 80px 0px;
    }

    .about__particle {
        display: none;
    }
}

@media (max-width: 992px) {
    .about__body {
        flex-direction: column;
    }
}