.bottom-banner {
    padding-block: 80px;
    position: relative;
    border-top: 1px solid rgba(29, 35, 60, 0.1);;
	z-index: 2;
}

.bottom-banner:before {
    content: '';
    position: absolute;
    display: block;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(270.00deg, rgba(160, 137, 255, 1),rgba(54, 115, 255, 1) 100%);
}

.bottom-banner p {
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: 0px;
    max-width: 1160px;
    width: 100%;
    margin: 0 auto 40px;
}

@media(max-width: 575px) {
    .bottom-banner {
        padding-block: 40px;
    }

    .bottom-banner p {
        margin-bottom: 30px;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
    }

    .bottom-banner:before {
        width: 120px;
    }

    .bottom-banner a {
        width: 100%;
        padding: 26px 20px;
    }
}