.text-cta {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    text-align: center;
}

.text-cta__pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    object-fit: cover;
}

.text-cta__cta {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    background: none;
    padding-right: 25px;
    position: relative;
}

.text-cta__cta img {
    width: 15px;
    margin-right: 7px;
}

.text-cta__cta svg {
    width: 18px;
    fill: #fff;
    margin-right: 5px;
}

.text-cta__cta::after {
    content: '\e915';
    font-family: 'icomoon';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-weight: normal;
}

@media (min-width: 768px) {
    .text-cta {
        padding: 35px 0;
    }
}


@media (min-width: 1200px) {
    .text-cta {
        padding: 50px 0;
        text-align: left;
    }

    .text-cta__title {
        padding-right: 30px;
    }

    .text-cta__text {
        padding-left: 30px;
    }

    .text-cta__title h3 {
        margin: 0;
    }

    .text-cta__text p {
        margin-bottom: 20px;
    }

    .text-cta__flex {
        align-items: center;
        padding: 0 9px;
    }

    .text-cta__cta {
        font-size: 18px;
        padding-right: 30px;
    }
    
    .text-cta__cta img {
        width: 22px;
        margin-right: 5px;
    }

    .text-cta__cta::after {
        padding-bottom: 7px;
    }

    .text-cta__cta svg {
        width: 22px;
        fill: #fff;
        margin-right: 10px;
        display: inline-block;
        vertical-align: middle;
        padding-bottom: 3px;
    }

    .text-cta__cta:hover {
        color: #FFC31D;
        background: linear-gradient(to bottom, rgba(255,195,29, 1) 0%, rgba(255,195,29, 1) 100%);
        background-repeat: repeat-x;
        background-size: 2px 3px;
        background-position: 0 100%;
        transition: background-size .3s;
    }

    .text-cta__cta:hover svg {
        fill: #FFC31D;
    }
    
}