.lightBoxContent {
	position: relative;
	color: white;
	background-color: #00204E;
	font-family: "Open Sans",sans-serif;
	max-width: 80vw;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.lightBoxContent img {
    flex-basis: 100%;
}
.lightBoxContent div.lbCta {
	text-align: center;
	padding: 30px;
}
.lightBoxContent .lbCta h1 {
	font-size: 2rem;
	margin: 16px;
	font-weight: bold;
}
.lightBoxContent .lbCta h2 {
	font-size: 1.25rem;
}
.lightBoxContent .lbCta p {
	margin: 30px auto;
	line-height: 1.333em;
	font-size: 1.156rem;
}
.lightBoxContent a {
	color: #00204E;
	background-color: white;
	border-radius: 8px;
	display: inline-block;
	margin: 0px auto 15px;
	font-size: 1rem;
	text-decoration: none;
	padding: 13px;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: .05em;
	width: auto;
	font-weight: bold;
}

@media(min-width: 768px) {
    .lightBoxContent img {
    	flex-basis: 50%;
    	max-width: 50%;
    }
    .lightBoxContent div.lbCta {
    	flex-basis: 50%;
    	padding-top: 0;
    	padding-bottom: 0;
    }
}
@media(min-width: 992px) {
    .lightBoxContent .lbCta h1 {
    	font-size: 2.75rem;
    }
}
@media(min-width: 1200px) {
    .lightBoxContent {
        max-width: 70vw;
    }
    .lightBoxContent .lbCta h1 {
      font-size: 2.85rem;
    }
    .lightBoxContent .lbCta h2 {
      font-size: 1.75rem;
    }
    .lightBoxContent .lbCta p {
      font-size: 1.333rem;
    }
    .lightBoxContent a {
      font-size: 1.25rem;
    }
}
@media(min-width: 1400px) {
    .lightBoxContent .lbCta h1 {
      font-size: 2.5rem;
    }    
}


