/**	

RP8 CSS

Author: Behind The Dot

Notes: BEM


**/

* {
	margin: 0;
	padding: 0;
	line-height: 1;
	list-style-type: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
  	background-repeat: no-repeat;
  	background-position: center center;
  	-webkit-transition: all 0.3s ease;
  	-o-transition: all 0.3s ease;
  	transition: all 0.3s ease
}


body {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	color: #2A2A2A;
}

img {
	height: auto;
	width: 100%;
}



/* Headings, Paragraphs, Anchors and Lists
---------------------------------------------------------*/

h1 {
	color: #FFFFFF;
	font-weight: 600;
	font-size: 49px;
	line-height: 120%;
}

h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 20px;
}

h3 {
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	line-height: 150%;
}

h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;
}

h5 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
}

h6 {
	font-size: 20px;
	font-weight: 500;
	line-height: 150%;
}


p {
	font-size: 18px;
	font-weight: 400px;
	line-height: 1.5;
}

a {
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}


/* Wrappers
---------------------------------------------------------*/

.wrapper {
	max-width: 1600px;
	position: relative;
	margin: 0 auto;
}

.container {
	width: 100%;
	
	display: inherit;
	-webkit-box-align: inherit;
	-ms-flex-align: inherit;
	align-items: inherit;
	-webkit-box-pack: inherit;
		-ms-flex-pack: inherit;
			justify-content: inherit;

	max-width: 1280px;
	padding: 0 20px;
	margin: 0 auto;
}

/* 
 * Cookie Notice
 */

#cookie-notice .cn-button {
    border: none;
	color: #4D4D4D !important;
    display: inline-block !important;
    margin-left: 20px !important;
    width: 150px;
}

#cookie-banner-cancle-img {
	display: none !important;
}

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

	.container {
		padding: 0 10px;
	}
}

