/* General Styles */
.call-out {
	padding: 4% 5%;
	font-weight: 700;
	font-size: 1.444em;
    line-height: 1.385;
}

.call-out strong {
	font-weight: 900;
}
/* End General Styles */

/* Callout v1 */
.call-out.v1 {
	position: relative;
	background-color:var(--click1-color);
	color:var(--white-color);
    padding: 3.8% 4% 3.8% 31%;
}

.call-out.v1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(/images/assets/CHC_1-Entrance.jpg);
    background-size: cover;
    width: 26.374%;
    height: 100%;
}
/* End Callout v1 */

/* Callout v2 */
.call-out.v2 {
	position: relative;
	background-color:var(--white-color);
	color:var(--primary-color);
	box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.15);
    padding: 3.8% 4% 3.8% 24%;
}

.call-out.v2:before {
	content: '';
    position: absolute;
    left: 6%;
    top: 50%;
    background-image: url(/images/assets/carteret-icon.png);
    background-size: contain;
    width: 11.374%;
    height: 45%;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

/* End Callout v2 */

/* Bullet List v1 */
.bullet-list.v1 {
	position: initial;
}
/* End Bullet List v1 */

/* Bullet List v2 */
ul.bullet-list.v2 {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

ul.bullet-list.v2 > li {
	width: 48%;
}
/* End Bullet List v2 */

/* Our Team Styles */
ul.our-team {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
}

.content-style ul.our-team {
    padding-left: 0;
    font-style: normal;
	
}

ul.our-team > li {
	width: 48%;
	margin-bottom: 1em;
}

.content-style ul.our-team > li {
	padding-left: 0;
}

.content-style ul.our-team > li:before {
	display: none;
}

ul.our-team > li img {
	display: block;
	max-width: 13em;
	margin: 0 auto .5em;
}

ul.our-team > li strong {
	display: block;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.29;
    color: var(--primary-color);
}
/* End Our Team Styles */

/* 800px Responsive */
@media screen and (max-width:800px) {
	ul.bullet-list.v2 li {
		width: 100%;
	}
	
	ul.our-team > li {
		width: 100%;
	}
}
/* End 800px Responsive */