/* Paragraph Banner Text Right */
.cta-container {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    width: 80%;
    justify-content: center;
}
.cta-container .cta-line {
    height: 1px;
    width: 70%;
    background: #444;
}
.cta-container .cta {
    background: transparent;
    /* font-size: 2rem; */
    color: var(--dark-gray);
    border: 2px solid #444;
    text-align: center;
    white-space: nowrap;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.cta-container .cta:hover,
.cta-container .cta:focus {
	background: transparent;
	color: var(--dark-gray);
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 3px 1px -2px rgba(0,0,0,0.12);
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.cta-container .cta a {
    text-transform: uppercase;
    display: inline-block;
    padding: 0.3rem 1.8rem;
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
.cta-container .cta:hover a,
.cta-container .cta:focus a {
    color: #fff;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background: #444;
}
@media (max-width: 992px) { 
    .cta-container {
        margin-top: 2rem;
        width: 90%;
    }
	.cta-container .cta-line {
	    width: 60%;
    }
    .cta-container .cta a {
        font-size: 0.8rem;
        padding: 0.2rem 1.8rem;
    }
}