.cta-box {
    display: block;
    padding: 15px 65px 15px 20px;
    background-color: var(--brand-primary);
    color: #fff;
    position: relative;

    &:hover,
    &:focus {
        text-decoration: none;
        color: #fff;
    }
}

.cta-box--download {
    background-image: url('../../../img/layout/dot-pattern.png');
}


.cta-box__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 300;

    strong {
        display: block;
        font-weight: 700;
    }

    +.cta-box__txt {
        margin-top: 2px;
    }
}

.cta-box__txt {
    margin-bottom: 0;
    font-size: 18px;
}

.cta-box__icn {
    display: block;
    width: 35px;
    height: 35px;
    background-color: var(--brand-grey-dark);
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 15px;

    svg {
        width: 35px;
        height: 35px;

        path {
            stroke: #fff;
        }
    }
}