/*-------------------------
    Call to Action
--------------------------*/
.cta__banner {
    background-color: $color-theme;
    max-width: 400px;
    padding: 50px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;

    .cta__title {
        font-size: 22px;
    }

    .cta__desc {
        margin-bottom: 15px;
    }

    .cta__icon {
        line-height: 1;
        margin-bottom: 20px;

        i {
            font-size: 60px;
            line-height: 1;
            color: $color-white;
        }
    }

    .btn {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;

        i {
            width: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 50%;
            margin-left: 5px;
            color: $color-white;
            background-color: $color-theme;
            @include prefix(transition, all .3s linear, webkit moz ms o);
        }

        &:hover i {
            background-color: $color-heading;
        }
    }
}

.cta__banner-white {
    background-color: $color-white;

    .cta__title {
        color: $color-heading;
        margin-bottom: 15px;
    }

    .cta__desc {
        color: $color-body;
        font-size: 15px;
        font-weight: 700;
    }
}

/* Mobile Phones and tablets */
@include xs-sm-screens {
    .cta__banner .cta__title {
        font-size: 16px;
    }
}