.small-cta {
    background: var(--bg-color);
    position: relative;
}

.small-cta:after {
    position: absolute;
    content: var(--bg-content,'');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent var(--bg-image) no-repeat center / cover;
	opacity: var(--bg-opacity);
}

.small-cta .container {
    max-width: 1190px;
    margin: 0 auto;
    width: 90%;
    padding: 46px 0;
    position: relative;
    z-index: 1;
}

.small-cta .content-wrap{
	max-width:900px;
}

.small-cta .title {
    font: normal var(--f-bold) 2.63rem / 1.1 var(--font-sans);
    color: var(--title-color);
}

.small-cta .sub-title {
    font: normal var(--f-medium) 1.75rem / 1.2 var(--font-sans);
    color: var(--sub-title-color);
}

.small-cta .content {
    font: normal var(--f-medium) 1.75rem / 1.3 var(--font-sans);
    color: var(--content-color);
    margin-bottom: 0;
}

.small-cta .content p:last-child {
    margin-bottom: 0;
}

.small-cta .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: none;
    font: normal var(--f-bold) 0.875rem / 1 var(--font-sans);
    background: var(--btn-color);
    color: var(--btn-text-color);
    border-radius: 25px;
    padding: 9px 16px;
    width: max-content;
    text-decoration: none;
    box-shadow: none;
    margin-top: 40px;
}

.small-cta .btn svg {
    transition: var(--transition);
}

.small-cta .btn:hover svg {
    transform: rotate(90deg);
}

@media screen and (max-width: 1024px) {
    .small-cta .container {
        padding: 70px 0;
    }

    .small-cta .btn-wrapper {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .small-cta .container {
        padding: 40px 0;
    }

    .small-cta .title {
        font: normal var(--f-bold) 2rem / 1.1 var(--font-sans);
    }

    .small-cta .sub-title {
        font: normal var(--f-medium) 1.38rem / 1.2 var(--font-sans);
    }

    .small-cta .content {
        font: normal var(--f-medium) 1.13rem / 1.3 var(--font-sans);
    }
}