/**
 * @file
 * Subtheme specific CSS.
 */
.paragraph a {
	color: #4B4E53;
	text-decoration: underline;
	transition: all 0.3s ease 0s;
}

.paragraph a:hover {
	color: #97999C;
	transition: all 0.3s ease 0s;
	cursor: pointer;
}

/*// Intro Paragraphs*/
.paragraph.paragraph--type--introtext {
	margin: auto;
	padding: 0 15px;
	text-align: center;
	font-size: 22px;
}

/*// Body Paragraph*/
.paragraph.paragraph--type--body {
	max-width: 991px;
	margin: auto;
	padding: 0;
	text-align: center;
}

.node--type-article .paragraph.paragraph--type--body {
	padding: 0;
	max-width: 100% !important;
}

.paragraph.paragraph--type--body .bs_grid {
	text-align: left;
}

@media screen and (max-width: 767px) {
	.paragraph.paragraph--type--body {
		max-width: 768px;
		margin: auto;
		padding: 0 0 0 0px;
	}
}

/*// H2 Paragraph*/
.paragraph.paragraph--type--h2-subtitle {
	padding: 25px 0px 15px 0;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.paragraph.paragraph--type--h2-subtitle h2 {
	font-weight: normal;
}

.paragraph.paragraph--type--h2-subtitle h2 {
	color: #4B4E53;
	font-size: 38px;
}

@media screen and (max-width: 640px) {
	.paragraph.paragraph--type--h2-subtitle h2 {
		color: #4B4E53;
		font-size: 30px;
		hyphens: auto;
	}
}

/*// Text - Image Paragraph*/
.paragraph.paragraph--type--text-image {
	padding: 50px 0px;
	position: relative;
}

.paragraph.paragraph--type--text-image .fullwidth .row {
	position: relative;
}

.paragraph.paragraph--type--text-image .paragraphsbody {
	position: relative;
	padding: 0;
}

.paragraph.paragraph--type--text-image .paragraphsbody .he-centered {
}

.paragraph.paragraph--type--text-image .paragraphsbody h2 {
	margin: 0 auto;
	max-width: 450px;
	color: #4B4E53;
	font-size: 40px;
	line-height: 45px;
	text-transform: uppercase;
	font-family: 'Lato Light' !important;
	font-style: normal !important;
	font-weight: 300 !important;
	text-align: left;
}

.paragraph.paragraph--type--text-image .paragraphsbody h2 span {
	font-weight: 700;
	position: relative;
}

.paragraph.paragraph--type--text-image .paragraphsbody h2 span:after {
	content: " ";
	height: 3px;
	width: 100px;
	background: #4B4E53;
	position: absolute;
	top: 50px;
	left: 0;
}

.paragraph.paragraph--type--text-image .paragraphsbody p {
	max-width: 90%;
	margin: 0 auto;
}

.paragraph.paragraph--type--text-image img {
	height: auto;
	width: 100%;
	margin: 0;
	position: relative;
	overflow: hidden;
	object-fit: cover;
	transition: all 750ms ease-in-out;
}

.paragraph.paragraph--type--text-image img:hover {
	height: auto;
	width: 100%;
	margin: 0;
	position: relative;
	object-fit: contain;
	transform: scale(1.1);
	transition: all 750ms ease-in-out;
}

.paragraph.paragraph--type--text-image .paragraphsimage .field--name-field-media-image {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.paragraph.paragraph--type--text-image img {
		width: 100%;
		margin: auto !important;
		height: auto;
		position: relative;
	}
	
	.paragraph.paragraph--type--text-image .paragraphsbody {
	}
	
	.paragraph.paragraph--type--text-image .paragraphsbody p {
		max-width: 90%;
		margin: 0;
		padding: 0 15px 15px;
	}
}

/*// Image -Text Paragraph*/
.paragraph.paragraph--type--image-text {
	padding: 50px 0;
	position: relative;
}

.paragraph.paragraph--type--image-text .fullwidth .row {
	position: relative;
}

.paragraph.paragraph--type--image-text .paragraphsbody {
	position: relative;
	padding: 0;
}

.paragraph.paragraph--type--image-text .paragraphsbody .he-centered {
}

.paragraph.paragraph--type--image-text .paragraphsbody h2 {
	margin: 0 auto;
	max-width: 450px;
	color: #4B4E53;
	font-size: 40px;
	line-height: 45px;
	text-transform: uppercase;
	text-align: left;
}

.paragraph.paragraph--type--image-text .paragraphsbody h2 span {
	font-weight: 700;
	position: relative;
}

.paragraph.paragraph--type--image-text .paragraphsbody h2 span:after {
	content: " ";
	height: 3px;
	width: 100px;
	background: #4B4E53;
	position: absolute;
	top: 50px;
	left: 0;
}

.paragraph.paragraph--type--image-text .paragraphsbody p {
	max-width: 90%;
	margin: 0 auto;
	padding: 0;
}

.paragraph.paragraph--type--image-text img {
	width: 100%;
	height: auto;
	margin: 0;
	position: relative;
	object-fit: cover;
	transition: all 750ms ease-in-out;
}

.paragraph.paragraph--type--image-text img:hover {
	height: auto;
	width: 100%;
	margin: 0;
	position: relative;
	object-fit: contain;
	transform: scale(1.1);
	transition: all 750ms ease-in-out;
}

.paragraph.paragraph--type--image-text .paragraphsimage .field--name-field-media-image {
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.paragraph.paragraph--type--image-text {
		margin: auto !important;
	}
	
	.paragraph.paragraph--type--image-text img {
		margin: auto !important;
		width: 100%;
		height: auto;
		position: relative;
	}
	
	.paragraph.paragraph--type--image-text .paragraphsbody {
	}
	
	.paragraph.paragraph--type--image-text .paragraphsbody p {
		max-width: 90%;
		margin: 0;
		padding: 0 15px 15px;
	}
}

/*//  Image Paragraph*/
.paragraph.paragraph--type--image {
	padding: 25px 0px;
	position: relative;
}

.paragraph.paragraph--type--image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	padding: 0 15px;
}

/*// Views Paragraphs*/
.paragraph.paragraph--type--viewsreference {
	padding: 25px 0px;
	position: relative;
}

/*// Video Paragraph*/
.paragraph.paragraph--type--video {
	padding-top: 50px;
}

/*// Images Paragraph*/
.paragraph.paragraph--type--images {
	padding-top: 0px;
}

.paragraph.paragraph--type--images img {
	width: 100%;
	height: auto;
}
