/* Defaults
------------------------------------------------------------------------------ */
body 
{
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    background-color: #000000;;
	letter-spacing: normal;
	color: #ffffff;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
html, body
{
	height: 100%;
	margin: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a
{
	color: #ffffff; 
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}


/* Headings
------------------------------------------------------------------------------ */
h1, h2, h3
{
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
}
h1,h2
{
	font-weight: 600;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0px;
	padding: 40px 0px 10px 0px;
}
h1
{
	color: #f39100;
}
h2
{
	color: #ffffff;
}
h3
{
	font-weight: 600;
	font-size: 28px;
	line-height: 34px;
	color: var(--baf-dark-blue);
	padding: 20px 0px 20px 0px;
	margin-left: 16%;
	margin-right: 16%;
}
h4
{
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 40px;
	font-style: normal;
	line-height: 50px;
	letter-spacing: normal;
	color: var(--baf-light-blue);
	padding: 80px 0px 30px 0px;
}
h5
{
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--baf-dark-blue);
	letter-spacing: normal;
}
/* Up to 550px */
@media only screen and (max-width: 550px) {
	h1.section_heading 
	{
		text-align: center;
	}
}
@media only screen and (max-width: 650px) {
	h3
	{
		margin-left: 5%;
		margin-right: 5%;
	}
}

/* Default Buttons
------------------------------------------------------------------------------ */
a.btn,
button
{
	display: inline-block;
	padding: 20px 30px 20px 30px;
	margin: 10px 0px 10px 0px;;
	font-family: var(--body-font), var(--body-fallback-font);
	font-weight: 600;
	font-size: 16px;
	line-height: 16px;
	background-color: var(--body-bg);
	color: var(--baf-dark-blue);
	border-radius: 30px;
	white-space: nowrap;
	border: 1px solid transparent;
	width: auto;
	letter-spacing: 0px;
	text-transform: uppercase;
	transition: 0.3s;
}
a.btn:hover,
button:hover
{
	text-decoration: none;
	background-color: var(--baf-dark-blue);
	color: var(--body-bg);
}
a.btn i
{
	padding-right: 10px;
}


/* Sections 
------------------------------------------------------------------------------ */
.section 
{
	padding: 95px 0px 95px 0px;
	text-align: left;
}


/* Section - Full Page Image
------------------------------------------------------------------------------ */
.section.full_page_image
{
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/* height: calc(100% - 41px); */
	height: 100%;
	/* height: auto; */
	min-height: 100%;
	/* overflow: hidden; */
	/* overflow-y: hidden; */
	text-align: left;
}
.section.full_page_image .logo
{
	margin-top: 60px;
	width: 180px;
}
.section.full_page_image .flex_container
{
	display: flex;
	height: 100%;
	width: 100%;
	/* justify-content: flex-end; */
	/* margin-top: 20px; */
	flex-direction: column;
}
.section.full_page_image .bottom_logo
{
	width: 85px;
	display: inline-block;
	align-self: flex-end;
	padding-bottom: 40px;

}
.section.full_page_image .logo img,
.section.full_page_image .bottom_logo img
{
	max-width: 100%;
	height: auto;
}

.section.full_page_image .actual_image_layer
{
	/* position: absolute; */
	position: fixed;
	width: 100%;
	height: 100%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: none;
	background-image: url("../images/profile_guttering_background_image.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	animation: zoomin 20s 1;
	-webkit-animation: zoomin 20s 1;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-delay: 0s;
	-webkit-animation-fill-mode: forwards;
	/* overflow: hidden;
	overflow-y: hidden; */
}
@keyframes zoomin {
	0% {
		-webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
    }
}

@media only screen and (max-width: 510px) {
	.section.full_page_image h1,
	.section.full_page_image h2
	{
		font-size: 40px;
		line-height: 43px;
		letter-spacing: 1px;
	}
}
.bottomy
{
	display: flex;
	justify-content: flex-end;
	height: 100%;
}

/* Section - Full Page Image
------------------------------------------------------------------------------ */
.section.footer
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height: 100%;
}
.section.footer .flex_container
{
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: flex-end;
	margin-top: 50px;
}
.section.footer .bottom_logo
{
	width: 225px;
	display: inline-block;
	align-self: flex-end;

}
.section.footer .bottom_logo img
{
	max-width: 100%;
	height: auto;
}

/* #Misc
=================================================================================================================== */
.centered
{
	text-align: center;
}
.limit-to-two-lines
{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* number of lines to show */
			line-clamp: 2; 
	-webkit-box-orient: vertical;
}
a.pink_link
{
	color: var(--body-pink) !important;
}

/* Flex Box
=================================================================================================================== */
.flex_container
{
	display: flex;
}
.justify_content_space_around
{
	justify-content: space-around;
}
.justify_content_space_between
{
	justify-content: space-between;
}
.justify_content_center
{
	justify-content: center;
}
.flex_wrap
{
	flex-wrap: wrap;
}
.flex_item.padded_7pc
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}
.flex_item.padded_out
{
	margin: 0px 7% 0px 7%; 
	padding: 0px 0% 0px 0%;
}

/* Grid Box
=================================================================================================================== */
.grid-container
{
	display: grid;
	box-sizing: border-box;
}
.grid-container *
{
	box-sizing: border-box;
}



/* #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) {
}

