.values {
    padding: 120px 0px;
}

.values__body {
    position: relative;
    overflow: hidden;
    margin: 0px 50px;
    padding: 40px 60px;
    background-image: linear-gradient(92.52deg, #0B45FF 0%, #0F1760 100%);
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
}

.values__title {
    position: absolute;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 57px;
    z-index: 2;
    transition: color 150ms;
}

.values__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value__header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);

    user-select: none; /* Standard syntax */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
}

.value__name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.value__arrow {
    padding: 5px;
    background-color: #fff;
    border-radius: 50px;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 250ms;
}

.value.active .value__arrow {
    transform: rotate(180deg);
}

/* .value__header.active .value__arrow {
    transform: rotate(180deg);
} */

.value__body {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.value__description {
    padding-top: 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}



/* Background Image */
.values__background-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Animation of Values Section */
.animate .values__body {
    opacity: 0;
    transform: translateX(60px);
}

.animate .values__body {
    animation: slide-in 400ms ease-out forwards;
    animation-delay: 250m;
}

@keyframes slide-in {
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/* Responsiveness */
@media (max-width: 1200px) {
    .values {
        padding: 60px 0px;
    }

    .values__title {
        position: relative;
        margin-bottom: 25px;
    }

    .values__background-image {
        display: none;
    }

    .values__body {
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .values {
        padding: 50px 0px;
    }
}

@media (max-width: 550px) {
    .values__title {
        margin-bottom: 15px;
    }
    .values__body {
        padding: 20px 30px;
    }
}