/* Sections
------------------------------------------------------------------------------ */
.section 
{
	padding: 50px 0px 50px 0px;
	text-align: center;
}
.section_heading
{
	text-align: left;
	color: #f26522;
	font-size: 64px;
	line-height: 76px;
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.section_description 
{
	text-align: left;
	margin: 10px 0px 10px 0px;
}
h1.section_heading 
{
	font-size: 50px;
	line-height: 76px;
	font-weight: 700;
}
h2.section_heading 
{
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-size: 21px;
	line-height: 28px;
	color: #f26522;
	text-transform: none;
	margin: 10px 0px 10px 0px;
}
h3.section_heading 
{
    color: #f26522;
    font-size: 17px;
	line-height: normal;
    margin-bottom: 5px;
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
}
h4.section_heading 
{
	font-size: 18px;
	font-style: normal;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 0px;
}
h5.section_heading 
{
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 0px;
	margin: 18px 0px 6px 0px;
}
/* Up to 550px */
@media only screen and (max-width: 550px) {
	h1.section_heading 
	{
		text-align: center;
	}
}

/* Section - Header Bar
------------------------------------------------------------------------------ */
.section.header_bar
{
	padding: 30px 0px 30px 0px;
	text-align: left;
	box-sizing: border-box;
}
.section.header_bar .logo
{
	float: left;
	/* width: 110px;	 */
	width: 195px;	
	margin: 0px 10px 0px 0px;
	transition: height .4s ease, opacity .3s ease;
	transition: width .4s ease, opacity .3s ease;
/* background-color: rgba(0,0,0,0.2); */
}
.section.header_bar .logo img
{
	max-width: 100%;
}
.section.header_bar .logo_text
{
	text-align: right;
	margin: 26px 9px 28px 0px;
	font-size: 20px;
	color: #ff822b;
/* background-color: rgba(221, 242, 34, 0.8); */
}
/* @media only screen and (min-width: 480px) and (max-width: 767px) { */
/* @media only screen and (min-width: 710px) and (max-width: 880px) { */
@media only screen and (min-width: 710px) and (max-width: 985px) {
	.section.header_bar .logo_text 
	{
		float: right;
		text-align: right;
		display: block;
		/* width: 275px; */
		margin: 70px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-size: 16px;
		color: #ff822b;
	}
}
@media only screen and (min-width: 620px) and (max-width: 709px) {
	.section.header_bar .logo_text 
	{
		float: right;
		text-align: right;
		display: block;
		width: 275px;
		margin: 70px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-size: 16px;
		color: #ff822b;
	}
}
@media only screen and (min-width: 440px) and (max-width: 619px) {
	.section.header_bar .logo_text 
	{
		float: right;
		text-align: right;
		display: block;
		width: 145px;
		margin: 60px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-size: 14px;
		color: #ff822b;
	}
}
/* MOBILE PORTRAIT ----------------------------------------------- */
@media only screen and (max-width: 439px) {
	.section.header_bar .logo_text
	{
		float: right;
		text-align: right;
		display: block;
		width: 120px;
		margin: 60px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
		font-size: 12px;
		color: #ff822b;
	}
	.section.header_bar .logo
	{
		width: 145px;	
		margin: 0px 10px 0px 0px;
	}
}
@media only screen and (max-width: 361px) {
	.section.header_bar .logo_text
	{
		display: none;
	}
}

/* Section - Header Bar :: Menu
------------------------------------------------------------------------------ */
.menu
{
	float: right;
	margin: 0px 0px 0px 0px;
}
.menu ul
{
	list-style-type: none;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 0px 0px;
	overflow: hidden;
}
.menu ul li 
{
	float: left;
}
.menu ul li a,
.menu ul li a.dropbtn
{
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-size: 17px;
	padding: 10px 10px 10px 10px;
	margin: 0px 0px 0px 0px;
	text-decoration: none;
}
.menu ul li a:hover, 
.menu ul li a.active:hover,
.menu ul li.dropdown:hover .dropbtn
{ 
	color: #ffffff;
	background-color: #f26522;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.menu ul li.dropdown {
	display: inline-block;
  }
  
.menu ul li a.active 
{
	color: #f26522;
}

.menu ul li .dropdown_content 
{
	position: absolute;
	margin-top: 10px;
	display: none;
	background-color: #f26522;
	min-width: 160px;
	box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.2);
	z-index: 100;
}
  
.menu ul li .dropdown_content a 
{
	color: #ffffff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}
  
.menu ul li .dropdown_content a:hover
{
	background-color: #db5d23;
}
  
.menu ul li.dropdown:hover .dropdown_content 
{
	display: block;
}
  
/* TABLET PORTRAIT ---------------------------------- */
/* @media only screen and (min-width: 768px) and (max-width: 969px) { */
@media only screen and (min-width: 768px) and (max-width: 1100px) {
	.menu ul li a,
	.menu ul li a.dropbtn 
	{
		font-size: 16px;
		padding: 6px 6px 6px 6px;
	}
}

/* Responsive Menu
================================================== */
#responsive_menu_button
{
	display: none;
}

#responsive-menu 
{
	display: none;
	position: absolute;
	height: auto;
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	z-index: 99999;
	background-color: #f26522;
-webkit-box-shadow: 0px 10px 18px -8px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 10px 18px -8px rgba(0,0,0,0.75);
box-shadow: 0px 10px 18px -8px rgba(0,0,0,0.75);	
}
#responsive-menu ul
{
	float: left;
	margin: 0px 0px 0px 0px;
	list-style: none;
}
#responsive-menu li
{
	display: inline;
	float: left;
	width: 100%;
	border-top: 2px solid #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 10px 0px;
}
#responsive-menu li.indented
{
	padding-left: 20px;
}
#responsive-menu li.top
{
	border-top: 3px solid #242424;
}
#responsive-menu li.bottom
{
	border-bottom: 3px solid #242424;
}
#responsive-menu li span
{
	float: left;
	width: 40px;
}
#responsive-menu li a
{
	float: left;
	color: #ffffff;
	font-size: 22px;
	font-weight: normal;
	text-decoration: none;
	padding: 2px 10px 2px 10px;
	margin: 0px 0px 0px 0px;
	line-height: 120%;
}
#responsive-menu li a.active
{
}
#responsive-menu li a:hover
{
	color: #242424;
}
.show_hide 
{
    display: none;
}
/* @media only screen and (max-width: 767px) { */
/* @media only screen and (max-width: 880px) { */
@media only screen and (max-width: 985px) {
	.menu 
	{
		visibility: hidden;
		height: 0;
		display: none;
	}
	#responsive-menu 
	{
		display: none;
	}
	#responsive_menu_button
	{
		display: block;
		position: absolute;
		right: 0px;
		top: 25px;
		margin: 0px 0px 0px 0px;
	}
}
@media only screen and (max-width: 399px) {
	#responsive_menu_button
	{
		right: 20px;
	}
}


/* Header Image
------------------------------------------------------------------------------ */
.section.header_image_container
{
	padding: 0px 0px 0px 0px;
	height: 310px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.section.header_image_container .caption_container
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 310px;
	margin: 0px 18% 0px 18%;
}
.section.header_image_container h1.section_heading
{
	color: #ffffff;
	font-size: 36px;
	line-height: 40px;
	text-align: center;
}
/* MOBILE PORTRAIT ----------------------------------------------- */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	.section.header_image_container h1.section_heading
	{
		font-size: 26px;
		line-height: 32px;
		text-align: center;
	}
}
/* MOBILE PORTRAIT ----------------------------------------------- */
@media only screen and (max-width: 479px) {
	.section.header_image_container h1.section_heading
	{
		font-size: 22px;
		line-height: 26px;
		text-align: center;
	}
}


/* Second Header Image (for Sentinel Fire Banner)
------------------------------------------------------------------------------ */
.section.second_header_image_container
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	width: 100%;
	box-sizing: border-box;
}
.section.second_header_image_container h2
{
	color: #ffffff;
	text-transform: uppercase;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-size: 36px;
	line-height: 40px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
.section.second_header_image_container .sentinel_fire_banner_container
{
	box-sizing: border-box;
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background-image: url(../images/sentinel-fire-banner-bg.jpg);
	padding: 20px 50px 20px 50px;
	margin: 0px 0px 0px 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.section.second_header_image_container .sentinel_fire_banner_container .home_sentinel_fire_logo_container
{
	width: auto;
	height: 120px;
	padding: 20px 0px 20px 0px;
}
.section.second_header_image_container .sentinel_fire_banner_container .home_sentinel_fire_logo_container img
{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.section.second_header_image_container a.banner_link,
.section.second_header_image_container a.banner_link:hover
{
	text-decoration: none;
}
@media only screen and (max-width: 767px) {

	.section.second_header_image_container h2
	{
		font-size: 26px;
		line-height: 32px;
	}

}
@media only screen and (max-width: 460px) {

	.section.second_header_image_container .sentinel_fire_banner_container
	{
		grid-template-columns: 1fr;
	}
	.section.second_header_image_container .sentinel_fire_banner_container .order_1
	{
		order: 1;
	}
	.section.second_header_image_container .sentinel_fire_banner_container .order_2
	{
		order: 2;
	}

}

/* Home Page - Box Links
------------------------------------------------------------------------------ */
.section.box_links
{
	padding: 0px 0px 0px 0px;
}
.section.box_links .individual_box 
{
	flex: 25%;
	position: relative;
	height: 250px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: left;
}
.section.box_links .individual_box.aboutus
{
	background-image: url(../images/blocks/block_about.jpg);
}
.section.box_links .individual_box.services
{
	background-image: url(../images/blocks/block_services.jpg);
}
.section.box_links .individual_box.testimonials
{
	background-image: url(../images/blocks/block_testimonials.jpg);
}
.section.box_links .border_line
{
	width: 40%;
	box-sizing: border-box;
	margin: 5px 60% 10px 30px;
	border-top: 3px solid #ffffff;
}
.section.box_links a:hover
{
	text-decoration: none;
}
.section.box_links h2
{
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-size: 21px;
	/* border: 3px solid #ffffff; */
	margin: 0px 30px 0px 30px;
	padding: 24px 8px 8px 0px;
	color: #ffffff;
	text-transform: none;
}
.section.box_links p
{
	margin: 5px 30px 5px 30px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;
}
.section.box_links .box_button
{
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 25px;
	height: 25px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.box_links .box_button_content
{
	position: absolute;
	top: 0px;
	left: 5px;
	color: #ffffff;
	font-size: 34px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.box_links .orange_tint
{
	z-index: 1;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: rgba(242, 101, 34, 0.8);    
}
.section.box_links .grey_tint
{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	background: rgba(102, 102, 102, 0.8);    
}
.section.box_links .blue_grey_tint
{
	/* position: absolute; */
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	background: rgba(44, 69, 92, 0.8);    
}
.section.box_links .blue_grey_tint_solid
{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	background: rgba(44, 69, 92, 1);    
}
/* TABLET PORTRAIT - Size to standard 960 (devices and browsers) */
@media only screen and (min-width: 1050px) and (max-width: 1200px) {
	.section.box_links .individual_box 
	{
		height: 200px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 1049px) {
	.section.box_links .flex_container 
	{
		flex-wrap: wrap;
	}
	.section.box_links .individual_box 
	{
		flex: 50%;
		height: 175px;
	}
}
@media only screen and (max-width: 639px) {
	.section.box_links .flex_container 
	{
		flex-wrap: wrap;
	}
	.section.box_links .individual_box 
	{
		flex: 100%;
		height: 175px;
	}
}


/* Home Page - Home Intro
------------------------------------------------------------------------------ */
.section.home_intro
{
	padding: 0px 0px 0px 0px;
}
.section.home_intro .flex_item
{
	flex: 50%;
	text-align: left;
	box-sizing: border-box;
}
.section.home_intro .flex_item.padded
{
	padding: 30px 30px 30px 30px;
}
.section.home_intro .flex_item p:last-child
{
	margin-bottom: 0px;
}
.section.home_intro .intro_image
{
	height: 100%;
	background-image: url(../images/blocks/block_home.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
@media only screen and (max-width: 639px) {
	.section.home_intro .flex_container 
	{
		flex-wrap: wrap;
	}
	.section.home_intro .flex_item 
	{
		flex: 100%;
		/* min-height: 175px; */
	}
	.section.home_intro .flex_item.padded
	{
		padding: 30px 0px 30px 0px;
	}
	.section.home_intro .intro_image
	{
		height: 200px;
	}
}


/* Home Page - Featured Project
------------------------------------------------------------------------------ */
.section.home_featured_project
{
	padding: 0px 0px 0px 0px;
}
.section.home_featured_project .flex_item
{
	flex: 33.3%;
	height: 316px;
	text-align: left;
	box-sizing: border-box;
	position: relative;
}
.section.home_featured_project .featured_project_box
{
	flex: 50%;
	height: 158px;
	position: relative;
}
.section.home_featured_project .featured_project_box.double
{
	flex: 100%;
}
.section.home_featured_project .border_line
{
	width: 40%;
	box-sizing: border-box;
	margin: 5px 60% 10px 30px;
	border-top: 3px solid #ffffff;
}
.section.home_featured_project a:hover
{
	text-decoration: none;
}
.section.home_featured_project h2
{
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-size: 21px;
	/* border: 3px solid #ffffff; */
	margin: 0px 30px 0px 30px;
	padding: 24px 8px 8px 0px;
	color: #ffffff;
	text-transform: none;
}
.section.home_featured_project p
{
	margin: 5px 30px 5px 30px;
	padding: 0px 0px 0px 0px;
	color: #ffffff;
}
.section.home_featured_project .box_button
{
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 25px;
	height: 25px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.home_featured_project .box_button_content
{
	position: absolute;
	top: 0px;
	left: 5px;
	color: #ffffff;
	font-size: 34px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.section.home_featured_project .orange_tint
{
	z-index: 1;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: rgba(242, 101, 34, 0.8);    
}
.section.home_featured_project .blue_grey_tint
{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	background: rgba(44, 69, 92, 0.8);    
}
.section.home_featured_project .blue_grey_tint_solid
{
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	background: rgba(44, 69, 92, 1);    
}
.section.home_featured_project iframe
{
	width: 100%;
	height: 100%;
}
.section.home_featured_project .box_button_large_text
{
	text-align: center;
	color: #ffffff;
	font-size: 21px;
	line-height: 158px;
}

/* TABLET PORTRAIT - Size to standard 960 (devices and browsers) */
@media only screen and (min-width: 1050px) and (max-width: 1200px) {
	/* .section.box_links .individual_box 
	{
		height: 200px;
	} */
}
@media only screen and (min-width: 640px) and (max-width: 1049px) {
	.section.home_featured_project .flex_container 
	{
		flex-wrap: wrap;
	}
	.section.home_featured_project .flex_item 
	{
		flex: 50%;
		/* height: 175px; */
	} 
}
@media only screen and (max-width: 639px) {
	.section.home_featured_project .flex_container 
	{
		flex-wrap: wrap;
	}
	.section.home_featured_project .flex_item 
	{
		flex: 100%;
		/* height: 175px; */
	}
}


/* Sub Menu
------------------------------------------------------------------------------ */
.section.sub_menu
{
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
}
.section.sub_menu .left_panel
{
	flex: 25%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
	box-sizing: border-box;
}
.section.sub_menu .right_panel
{
	flex: 75%;
	text-align: left;
	box-sizing: border-box;
}
/* Left panel elements */
.section.sub_menu .left_panel .left_menu
{
	background-color: #f26522;
	padding: 0px 0px 16px 0px;
	margin: 0px 0px 0px 0px;
	min-height: 284px;
}
.section.sub_menu .left_panel .left_menu .border_line
{
	width: 44%;
	box-sizing: border-box;
	margin: 0px 0px 10px 18px;
	padding-top: 4px;
	background-color: #f26522;
	border-bottom: 3px solid #ffffff;
}
.section.sub_menu .left_panel .left_menu h2
{
	position: absolute;
	width: 25%;
	box-sizing: border-box;
	height: auto;
	top: -66px;
	padding: 22px 18px 12px 18px;
	margin-bottom: 10px;
	background-color: #f26522;
	color: #ffffff;
	font-size: 32px;
	line-height: 32px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
}
.section.sub_menu .left_panel .left_menu h3
{
	margin: 12px 18px 12px 18px;
	padding: 0px 0px 6px 0px;
	color: #ffffff;
	font-size: 20px;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	border-bottom: 1px solid #ffffff;
}
.section.sub_menu .left_panel .left_menu h4
{
	margin: 12px 18px 12px 18px;
	padding: 0px 0px 6px 0px;
	color: #ffffff;
	font-size: 20px;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
}
.section.sub_menu .left_panel .left_menu h5
{
	margin: 12px 18px 12px 18px;
	padding: 0px 0px 6px 0px;
	color: #ffffff;
	font-size: 16px;
	line-height: 20px;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: none;
	letter-spacing: normal;
}
.section.sub_menu .left_panel .left_menu ul
{
	margin: 17px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	list-style: none;
}
.section.sub_menu .left_panel .left_menu li
{
	margin: 10px 18px 20px 18px;
	padding: 0px 0px 0px 0px;
}
.section.sub_menu .left_panel .left_menu li a
{
	font-size: 16px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 20px;
	color: #ffffff;
}
.section.sub_menu .left_panel .left_menu li a.active
{
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
}

/* Right panel elements */
.section.sub_menu .right_panel .flex_container
{
	flex-wrap: wrap;
}
.section.sub_menu .right_panel .flex_item
{
	flex: 33.3%;
	height: 300px;
	text-align: left;
	box-sizing: border-box;
	background-size: cover;
	background-position: center;
}
.section.sub_menu .right_panel .content
{
	flex: 100%;
	text-align: left;
	box-sizing: border-box;
	padding: 28px 28px 10px 28px;
}
.section.sub_menu .right_panel .content .synopsis
{
	margin: 35px 0px 30px 0px;
	padding: 16px 0px 0px 0px;
	border-top: 1px solid #f26522;
	border-bottom: 1px solid #f26522;
}
.section.sub_menu .right_panel .content .synopsis p
{
	color: #f26522;
}
.section.sub_menu .right_panel .content .credit
{
	font-style: italic;
}

.section.sub_menu .right_panel ul
{
	list-style: disc;
	list-style-position: outside;
	margin: 0px 0px 20px 20px;
	padding: 0px 0px 0px 0px;
}
.section.sub_menu .right_panel li
{
	margin: 6px 0px 6px 0px;
	padding: 0px 0px 0px 0px;
	line-height: 120%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.section.sub_menu .left_panel
	{
		display: none;
	}
	.section.sub_menu .right_panel
	{
		flex: 100%;
	}
	.section.sub_menu .right_panel .flex_item
	{
		height: 200px;
	}
}
@media only screen and (max-width: 479px) {
	.section.sub_menu .left_panel
	{
		display: none;
	}
	.section.sub_menu .right_panel
	{
		flex: 100%;
	}
	.section.sub_menu .right_panel .flex_item
	{
		display: none;
	}
}


/* Meet The Team
------------------------------------------------------------------------------ */
.section.meet_the_team
{
	padding: 50px 0px 50px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
}
.section.meet_the_team .staff_image
{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	min-height: 200px;
	margin-bottom: 30px;
}
.section.meet_the_team p.job_title
{
	margin-bottom: 20px;
	padding-bottom: 0px;
}
.section.meet_the_team .staff_profile
{
	width: 100%;
	box-sizing: border-box;
	border-top: 1px solid #f26522;
	padding-top: 17px;
	margin-top: 0px;
}
.section.meet_the_team ul
{
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 25px;
}
@media only screen and (max-width: 549px) {
	.section.meet_the_team .staff_image
	{
		min-height: 300px;
		margin-bottom: 18px;
	}
	.section.meet_the_team .staff_profile
	{
		margin-bottom: 60px;
	}
}


/* Policy Pages
------------------------------------------------------------------------------ */
.section.policy
{
	padding: 20px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
}
.section.policy ul
{
	margin-left: 20px;
	list-style: square;
	list-style-position: outside;
}


/* Contact Page
------------------------------------------------------------------------------ */
.section.contact
{
	text-align: left;
}
.section.contact ul
{
	list-style: none;
}
.section.contact ul li
{
	margin: 6px 0px 6px 0px;
	padding: 0px 0px 0px 0px;
	line-height: 120%;
}
.section.contact .enhanced
{
	color: #f26522;
	font-family: pt_sansbold;
	font-size: 16px;
}
.section.contact .separator-line
{
	margin-right: 20px;
	margin-top: 25px;
	margin-bottom: 25px;
	border-top: 2px solid #009e53;
}
.section.contact .separator-line.orange
{
	margin-right: 0px;
	margin-top: 25px;
	margin-bottom: 25px;
	border-top: 1px solid #f26522;
}
.section.contact .separator-line.grey
{
	margin-right: 0px;
	margin-top: 25px;
	margin-bottom: 25px;
	border-top: 1px solid #666666;
}
.section.contact .contact_form_container
{
	float: right; 
	width: 90%;
	margin: 0px 0px 10px 0px;
}
.section.contact input
{
	/* float: left; */
	/* width: 420px; */
	box-sizing: border-box;
	width: 100%;
	height: 55px;
	color: #2b2a29;
	cursor: pointer;
	background-color: #ebecec;
	border: 0px;
	font-size: 15px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	margin: 5px 0px 5px 0px;
	padding: 15px 15px 15px 15px;
}
.section.contact input.submit_button
{
	/* float: left; */
	/* width: 350px; */
	width: 80%;
	box-sizing: border-box;
	/* height: 55px; */
	color: #ffffff;
	background-color: #f26522;
	font-size: 15px;
	line-height: 100%;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
	padding: 12px 15px 12px 15px;
	border-radius: 4px;
}
.section.contact input.submit_button:hover
{
	background-color: #f0801e;
}
.section.contact textarea
{
	/* float: left; */
	/* width: 420px; */
	box-sizing: border-box;
	width: 100%;
	height: 125px;
	color: #2b2a29;
	background-color: #ebecec;
	font-size: 15px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	margin: 5px 0px 5px 0px;
	padding: 15px 15px 15px 15px;
	border: 0px;
}
.section.contact .error_message
{
	color: red;
	font-size: 15px;
	margin: 0px 0px 0px 0px;
}
.section.contact .map_window_two_columns
{
	width: 470px;
	height: 382px;
}
.section.contact iframe.featured_project_map
{
	margin-top: 40px;
	width: 100%;
	min-height: 400px;
}
.section.contact .required_title
{
	/* float: right; */
	text-align: right; 
	margin-right: 20px;
	color: red;
}
.section.contact #mail-status
{
	padding: 12px 20px;
	box-sizing: border-box;
	width: 100%;
	display: none; 
	font-size: 1em;
	color: rgb(40, 40, 40);
}
.section.contact #loader-icon
{
	margin-bottom: 20px;
}
.section.contact .error
{
	background-color: #F7902D;
	margin-bottom: 40px;
}
.section.contact .success
{
	background-color: #48e0a4;
	margin-bottom: 40px;
}
.section.contact .recaptcha_container
{
	margin-top: 20px;
	text-align: left;
}
.section.contact .g-recaptcha
{
	display: inline-block;
	margin: 0px 0px 25px 0px;
}	  
@media only screen and (max-width: 959px) {
	.section.contact .separator-line, 
	.section.contact .required_title
	{
		margin-right: 0px;
	}
}
@media only screen and (max-width: 549px) {
	.section.contact .contact_form_container
	{
		float: left;
		margin-top: 20px;
		padding-top: 30px;
		width: 100%;
		border-top: 1px solid #f26522;
	}
	.section.contact input.submit_button
	{
		width: 100%;
	}
}

/* Testimonials
------------------------------------------------------------------------------ */
.section.testimonials
{
	padding: 50px 0px 50px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
}
.section.testimonials .flex_container
{
	flex-wrap: wrap;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;	
}
.section.testimonials .testimonial_column
{
	flex: 50%;
	max-width: 50%;
	padding: 0px 20px 0px 20px;
	box-sizing: border-box;
}
.section.testimonials .testimonial
{
	display: block;
	background-color: #feefe8;
	padding: 20px 20px 20px 20px;
	margin-top: 40px;
	/* box-sizing: border-box; */
}
.section.testimonials .testimonial:nth-of-type(1)
{
	margin-top: 0px;
}
.section.testimonials .client_name
{
	width: 100%;
	box-sizing: border-box;
	border-top: 1px solid #f26522;
	padding-top: 20px;
	color: #f26522;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
	.section.testimonials
	{
		padding-top: 10px;
	}
	.section.testimonials .testimonial_column 
	{
		flex: 100%;
		max-width: 100%;
		padding: 0px 5px 0px 5px;
	}
	.section.testimonials .testimonial:nth-of-type(1)
	{
		margin-top: 40px;
	}
}
  
/* Footer
------------------------------------------------------------------------------ */
.section.footer
{
	background-color: #4d4d4d;
	padding: 20px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	text-align: left;
}
.section.footer ul.footer_left_side,
.section.footer ul.footer_right_side
{
	margin: 0px 0px 0px 0px;
	list-style-type: none;
}
.section.footer ul.footer_left_side li
{
	margin: 10px 0px 10px 0px;
	color: #ffffff;
}
.section.footer ul.footer_left_side li.extra
{
	margin-top: 15px;
}
.section.footer ul.footer_left_side li.join-on-large-devices
{
	display: inline;
}
.section.footer ul.footer_left_side li.join-on-large-devices.with-separator
{
	border-left: 1px solid #b7b7b7;
	padding-left: 8px;
	margin-left: 6px;
}
.section.footer ul.footer_left_side li a
{
	color: #ffffff;
}
.section.footer ul.footer_left_side li a:hover
{
	color: #b7b7b7;
}
.section.footer ul.footer_right_side li
{
	margin: 0px 0px 0px 0px;
}
.section.footer ul.footer_right_side a.with-separator
{
	border-left: 1px solid #b7b7b7;
	padding-left: 8px;
	margin-left: 6px;
}
.section.footer ul.footer_right_side li a
{
	color: #b7b7b7;
}
.section.footer ul.footer_right_side a.with-separator
{
	border-left: 1px solid #b7b7b7;
	padding-left: 8px;
	margin-left: 6px;
}
.section.footer ul.footer_right_side li a:hover
{
	color: #ffffff;
}
.section.footer h3 
{
	font-size: 24px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	color: #b7b7b7;
	text-transform: none;
	padding-top: 40px;
	padding-bottom: 18px;
	margin-bottom: 22px;
	border-bottom: 1px solid #b7b7b7;
	height: 32px;
}
.section.footer ul.footer_right_side h4
{
	font-size: 14px;
	line-height: 18px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	color: #b7b7b7;
	text-transform: none;
	padding-bottom: 18px;
	/* margin-top: 17px; */
	margin-top: 5px;
	/* margin-bottom: 22px; */
	margin-bottom: 16px;
	/* border-bottom: 1px solid #b7b7b7; */
}

.section.footer ul.accreditation_logos
{
	list-style: none;
	text-align: right;
	padding-bottom: 18px;
	margin-top: 17px;
	margin-bottom: 22px;
	border-bottom: 1px solid #b7b7b7;
}
.section.footer ul.accreditation_logos li
{
	display: inline;
	margin-left: 20px;
}
.section.footer ul.accreditation_logos li img
{
	height: 50px;
}

@media only screen and (max-width: 959px) {
	.section.footer ul.footer_left_side li.join-on-large-devices
	{
		display: block;
	}
	.section.footer ul.footer_left_side li.join-on-large-devices.with-separator
	{
		border-left: none;
		padding-left: 0px;
		margin-left: 0px;
	}
}
@media only screen and (max-width: 980px) {
	.section.footer .container 
	{
		width: 80%;
	}
	.section.footer .column,
	.section.footer .columns 
	{
		width: 48%;
		margin-left: 4%;
	}
	.section.footer .column:first-child,
	.section.footer .columns:first-child 
	{
		margin-left: 0;
	}
}
@media only screen and (max-width: 630px) {
	.section.footer
	{
		text-align: center;
	}
	.section.footer .container 
	{
		width: 80%;
	}
	.section.footer .column,
	.section.footer .columns 
	{
		width: 100%;
		margin-left: 0px;
	}
	.section.footer h3, 
	.section.footer h4.footer_right_side
	{
		display: block;
		border-bottom: none;
		padding-bottom: 10px;
		margin-bottom: 0px;
	}
	.section.footer h4.footer_right_side
	{
		margin-top: 30px;
		text-align: center;
	}
	.section.footer ul.accreditation_logos
	{
		text-align: center;
		/* padding-bottom: 18px;
		margin-top: 17px;
		margin-bottom: 22px;
		border-bottom: 1px solid #b7b7b7; */
	}
	.section.footer ul.accreditation_logos li
	{
		/* display: inline; */
		margin-left: 10px;
		margin-right: 10px;
	}
}

/* #Misc
=================================================================================================================== */
.centered
{
	text-align: center;
}


/* Sentinel Fire                                      */
/* -------------------------------------------------- */

/* Section - Sentinel - Full Size Hero
----------------------------------------------------- */
.section.sentinel_fire_full_size_hero 
{
	position: relative;
	height: 100vh;
	/* min-height: 800px; */
	overflow: hidden;
	padding: 0px 0px 0px 0px;
	text-align: left;
}
.section.sentinel_fire_full_size_hero.policy_page 
{
	height: auto;
}
.section.sentinel_fire_full_size_hero h1
{
	color: #ffffff;
	font-size: 69px;
	line-height: 75px;
    font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 6px 0px;
}
.section.sentinel_fire_full_size_hero.policy_page h1
{
	padding-top: 16px;
	color: #838793;
	font-size: 66px;
	line-height: 75px;
}

.section.sentinel_fire h2
{
	color: #ffffff;
	font-size: 24px;
	line-height: 30px;
    font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
.section.sentinel_fire h2.pr_25
{
	padding-right: 25px;
}
@media only screen and (max-width: 1420px) {
	.section.sentinel_fire h2.pr_25
	{
		padding-right: 0px;
	}
}
.section.sentinel_fire h3
{
	text-align: left;
	position: relative;
	color: #27303c;
	font-size: 44px;
	line-height: 50px;
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0px;
	padding: 60px 0px 60px 0px;
	margin: 0px 0px 6px 0px;
}
.section.sentinel_fire h3::before
{
	content: "";
	background: url("../images/sf-stripe.png") no-repeat left center;
	background-size: contain;
	position: absolute;
	width: 80px;
	height: 70px;
	top: 0px;
	left: 4px;
}	
.section.sentinel_fire h3.white
{
	color: #ffffff;
}

.section.sentinel_fire p
{
	margin: 0px 0px 25px 0px;
}
.section.sentinel_fire p:last-child
{
	margin-bottom: 0px;
}

.section.sentinel_fire_full_size_hero .hero_image
{
	position: absolute;
	top: 0px;
	left: 0px;
	inset: 0;
}
.section.sentinel_fire_full_size_hero .hero_image img 
{
	/* filter: brightness(70%); */
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.section.sentinel_fire_full_size_hero .hero_inner 
{
	position: relative;
	display: grid;
	width: 100%;
	max-width: 1735px;
	margin: auto;
	padding-top: 90px;
	box-sizing: border-box;
	grid-template-columns: auto 200px;
	gap: 70px;
}
.section.sentinel_fire_full_size_hero .hero_inner .hero_content
{
	display: grid;
	align-items: center;
}
.section.sentinel_fire_full_size_hero.policy_page .hero_inner 
{
	/* gap: 0px; */
}
.section.sentinel_fire_full_size_hero.policy_page .hero_inner .hero_content
{
	gap: 0px;
	align-content: center;
}
.section.sentinel_fire_full_size_hero.policy_page .hero_inner p.date
{
	color: #27303c;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

@media only screen and (max-width: 1800px) {
	.section.sentinel_fire_full_size_hero .hero_inner 
	{
		max-width: 80%;
	}
}
@media only screen and (max-width: 880px) {
	.section.sentinel_fire_full_size_hero h1
	{
		font-size: 50px;
		line-height: 56px;
	}
}
@media only screen and (max-width: 710px) {

	.section.sentinel_fire_full_size_hero .hero_image img 
	{
		filter: brightness(70%);
	}
	.section.sentinel_fire_full_size_hero 
	{
		height: auto;
	}
	.section.sentinel_fire_full_size_hero h1
	{
		font-size: 40px;
		line-height: 46px;
		padding-bottom: 20px;
	}


	.section.sentinel_fire_full_size_hero .hero_inner 
	{
		max-width: 90%;
		padding-top: 60px;
		grid-template-columns: auto;
		gap: 20px;
		text-align: center;
	}
	.section.sentinel_fire_full_size_hero .hero_inner .hero_content
	{
		order: 2;
	}
	.section.sentinel_fire_full_size_hero .hero_inner .logo
	{
		order: 1;
	}

}

.section.sentinel_fire 
{
	padding: 160px 0px 160px 0px;
}
.section.sentinel_fire .sentinel_fire_container
{
	max-width: 1735px;
	margin: 0px auto;
	padding: 0px 0px 0px 0px;
	box-sizing: border-box;
}
@media only screen and (max-width: 1800px) {

	.section.sentinel_fire .sentinel_fire_container
	{
		padding-left: 10%;
		padding-right: 10%;
	}

}


.section.sentinel_fire.general_content
{
	text-align: left;
}
.section.sentinel_fire.general_content.dark_grey
{
	background-color: #343a42;
}
.section.sentinel_fire.general_content.pale_grey
{
	background-color: #838793;
}
.section.sentinel_fire.general_content.contact_hero
{
	background-image: url("../images/contact-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section.sentinel_fire.general_content.with_liney_background
{
	background-image: url("../images/linear-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.section.sentinel_fire.general_content.no_top_padding
{
	padding-top: 0px;
}
.section.sentinel_fire.general_content.small_bottom_padding
{
	padding-bottom: 130px;
}
.section.sentinel_fire.general_content.policy_page
{
	padding: 20px 0px 70px 0px;
}
.section.sentinel_fire.general_content p
{
	color: #27303c;
}
.section.sentinel_fire.general_content.policy_page p,
.section.sentinel_fire.general_content.policy_page h4,
.section.sentinel_fire.general_content.policy_page h5,
.section.sentinel_fire.general_content.policy_page ul li
{
	color: #27303c;
}
.section.sentinel_fire.general_content.policy_page h4
{
	text-align: left;
	position: relative;
	font-size: 32px;
	line-height: 40px;
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0px;
	padding: 0px 0px 0px 0px;
	margin: 40px 0px 6px 0px;
}
.section.sentinel_fire.general_content.policy_page h5
{
	font-size: 14px;
    font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	line-height: 18px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

.section.sentinel_fire.general_content.policy_page ul
{
	margin-left: 20px;
	list-style: square;
	list-style-position: outside;
}
.section.sentinel_fire.general_content.policy_page ul li
{
	margin: 1px 0px 1px 0px;
	padding: 0px 0px 0px 0px;
}

.section.sentinel_fire.general_content.policy_page a
{
	display: inline-block;
	color: #27303c;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	transition: color 0.3s ease;
}
.section.sentinel_fire.general_content.policy_page a:hover
{
	color: #e83c4e;
	text-decoration: none;
}
.section.sentinel_fire.general_content.policy_page .back_button_container
{
	display: grid;
	justify-content: end;
}
.section.sentinel_fire.general_content.policy_page .back_button_container a
{
	position: relative;
	color: #e83c4e;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 26px;
	transition: color 0.3s ease;
	padding: 0px 0px 0px 0px;
	margin: 40px 0px 0px 0px;
	text-transform: uppercase;
}
.section.sentinel_fire.general_content.policy_page .back_button_container a:hover
{
	color: #e83c4e;
	text-decoration: none;
}

.section.sentinel_fire.general_content.policy_page .back_button_container a::before
{
	content: "";
	background: url("../images/back-arrow.png") no-repeat left center;
	background-size: contain;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	transition: background-color 0.3s ease;
}


.section.sentinel_fire.general_content ul.questions
{
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
}
.section.sentinel_fire.general_content ul.questions li
{
	color: #e83c4e;
	margin-bottom: 6px;
	font-size: 16px;
}
.section.sentinel_fire.general_content ul.simple_list
{
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
}
.section.sentinel_fire.general_content ul.simple_list li
{
	font-size: 20px;
	line-height: 26px;
	color: #ffffff;
	margin-bottom: 12px;
}
.section.sentinel_fire.general_content a
{
	color: #ffffff;
	transition: color 0.3s ease;
}
.section.sentinel_fire.general_content a:hover
{
	color: #e83c4e;
	text-decoration: none;
}


@media only screen and (max-width: 710px) {
	.section.sentinel_fire.general_content
	{
		text-align: center;
	}
	.section.sentinel_fire.general_content.left_aligned
	{
		text-align: left;
	}
}

.section.sentinel_fire.general_content .contact_content
{
	max-width: 42%;
}
@media only screen and (max-width: 1800px) {
	.section.sentinel_fire.general_content .contact_content
	{
		max-width: 60%;
	}
}
@media only screen and (max-width: 1000px) {
	.section.sentinel_fire.general_content .contact_content
	{
		max-width: 100%;
	}
}
.section.sentinel_fire.general_content .contact_content h2
{
	margin-bottom: 40px;
	line-height: 40px;
}
.section.sentinel_fire.general_content .contact_content h2:last-child
{
	margin-bottom: 0px;
}

.section.sentinel_fire.general_content .grid_container
{
	display: grid;
	grid-template-columns: 1fr;
	padding: 0px 0px 0px 0px;
	gap: 45px;
}
.section.sentinel_fire.general_content .grid_container.three_columns
{
	grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 568px) {
	.section.sentinel_fire.general_content .grid_container.three_columns
	{
		grid-template-columns: 1fr;
		gap: 25px;
	}
}
.section.sentinel_fire.general_content .grid_container.four_columns
{
	grid-template-columns: 33% 1fr 1fr 1fr;
}
.section.sentinel_fire.general_content .grid_container.four_columns img
{
	width: 100%;
	height: auto;
}
.section.sentinel_fire.general_content .grid_container.four_columns .grid_item .caption
{
	position: absolute;
	text-align: center;
	margin: 0px auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #27303c;
	font-size: 22px;
	line-height: 30px;
	font-family: pt_sansbold, Arial, Helvetica, sans-serif;
}
.section.sentinel_fire.general_content .grid_container.four_columns .grid_item .caption_below
{
	color: #ffffff;
	font-size: 20px;
	line-height: 28px;
	padding: 10px 0px 10px 0px;
}
@media only screen and (max-width: 650px) {
	.section.sentinel_fire.general_content .grid_container.four_columns .grid_item .caption_below
	{
		font-size: 14px;
		line-height: 20px;
	}
}
@media only screen and (max-width: 1420px) {
	.section.sentinel_fire.general_content .grid_container.four_columns
	{
		grid-template-columns: 1fr 1fr 1fr;
	}
	.section.sentinel_fire.general_content .grid_container.four_columns .grid_item.text
	{
		grid-area: 1 / 1 / 2 / 4; /* row-start / column-start / row-end / column-end */
	}
}
@media only screen and (max-width: 500px) {
	.section.sentinel_fire.general_content .grid_container.four_columns
	{
		grid-template-columns: 1fr;
	}
	.section.sentinel_fire.general_content .grid_container.four_columns .grid_item.text
	{
		grid-area: unset; /* row-start / column-start / row-end / column-end */
	}
}

.section.sentinel_fire.general_content.footer_content
{
	padding: 50px 0px 50px 0px;
}

.section.sentinel_fire.general_content.footer_content .grid_container
{
	display: grid;
	grid-template-columns: auto auto;
	padding: 0px 0px 0px 0px;
	gap: 30px;
	align-items: center;
}
.section.sentinel_fire.general_content.footer_content .grid_container .grid_item.logo
{
	justify-self: end;
}

.section.sentinel_fire.general_content.footer_content .accreditations_content
{
	display: grid;
	grid-template-columns: min-content min-content min-content min-content min-content;
	padding: 0px 0px 0px 0px;
	margin: 48px 0px 0px 0px;
	gap: 18px;
}
.section.sentinel_fire.general_content.footer_content .accreditations_content .grid_item
{
	max-height: 55px;
}
.section.sentinel_fire.general_content.footer_content .accreditations_content .grid_item img
{
	height: 100%;
	width: auto;
}
.section.sentinel_fire.general_content.footer_content a.privacy_policy_link
{
	display: block;
	margin-top: 25px;
	color: #27303c;
	font-size: 24px;
	line-height: 30px;
	font-family: pt_sansregular, Arial, Helvetica, sans-serif;
	transition: color 0.3s ease;
}
.section.sentinel_fire.general_content.footer_content a.privacy_policy_link:hover
{
	color: #e83c4e;
	text-decoration: none;
}
@media only screen and (max-width: 1040px) {
	.section.sentinel_fire.general_content.footer_content .grid_container
	{
		grid-template-columns: 1fr;
		text-align: center;
	}
	.section.sentinel_fire.general_content.footer_content .grid_container .grid_item
	{
		order: 2;
	}
	.section.sentinel_fire.general_content.footer_content .grid_container .grid_item.logo
	{
		order: 1;
		justify-self: unset;
	}
	.section.sentinel_fire.general_content.footer_content .accreditations_content
	{
		justify-content: center;
	}
	.section.sentinel_fire.general_content.footer_content a.privacy_policy_link
	{
		margin-top: 45px;
	}

}
@media only screen and (max-width: 680px) {
	.section.sentinel_fire.general_content.footer_content .accreditations_content
	{
		display: grid;
		grid-template-columns: 1fr;
		padding: 0px 0px 0px 0px;
		margin: 48px 0px 0px 0px;
		gap: 18px;
	}
	.section.sentinel_fire.general_content.footer_content .accreditations_content .grid_item img
	{
		height: unset;
		max-height: 100%;
		max-width: 100%;
	}
}

.section.sentinel_fire .centered_vertically
{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}


body.sentinel_fire_privacy_policy
{
	background-image: url(../images/linear-red-bg.jpg);
	background-repeat: no-repeat;
	background-size: contain;
}


/* #Media Queries
=================================================================================================================== */

/* Bigger than 1000 */
@media (min-width: 1000px) {

}
/* ALL NON DESKTOP SIZES - Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
}

/* TABLET PORTRAIT - Size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* ALL MOBILE Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
}

/* MOBILE LANDSCAPE Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
}

/* MOBILE PORTRAIT Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
}
