.fop-desc {
    position: relative;
    padding: 48px 0 120px;
}

.fop-desc::after {
    content: '';
    width: calc(100% + 300px);
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(136deg, #6EA2D4 0%, #05284A 84.02%);
    filter: blur(50px);
    z-index: -2;
}

.fop-desc-vector {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.fop-desc h1 {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.fop-desc__list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 997px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .7s ease;
}

.fop-desc__list.fop-desc__list--open {
    max-height: 800px;
    transition: max-height .7s ease;
}

.fop-desc__item {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    padding: 20px 0;
    border-bottom: 9px solid #CFE1F2;
}

.fop-arrow {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    width: 115px;
    height: 81px;
    transition: all .3s;
}

.fop-arrow:hover {
    transform: scale(1.080);
}

@media (max-width: 1000px) {
    .fop-desc {
        padding: 48px 0 90px;
    }
    .fop-desc h1 {
        font-size: 32px;
    }

    .fop-arrow {
        width: 85px;
        height: 60px;
    }

    .fop-desc__item {
        font-size: 22px;
        border-bottom: 6px solid #CFE1F2;
    }
}

@media (max-width: 720px) {
    .fop-desc::after, .fop-desc-vector {
        display: none;
    }

    .fop-desc h1, .fop-desc__item {
        color: #000;
    }

    .fop-desc__item{
        border-bottom: 5px solid #206DB7;
    }
    .fop-desc {
        padding: 48px 0 48px;
    }

}

@media (max-width: 500px) {
    .fop-desc {
        padding: 20px 0 20px;
    }

    .fop-desc h1 {
        font-size: 25px;
    }

    .fop-arrow {
        width: 54px;
        height: 38px;
        margin-bottom: 8px;
    }

    .fop-desc__item {
        padding: 8px 0;
        font-size: 18px;
    }
}