* { box-sizing: border-box; }
html
{
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 100%;
	background-color: #8BB5D3;
	background-image: url(../media/images/background-desktop-blue.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
	overflow: visible;
}

.container-master
{
	display: block;
	position: absolute;
	padding-top: 0px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.container-background
{
overflow: visible;	
}

.container-content
{
	width: 90%;
	max-width: 850px;
	margin: auto;
}

.details
{
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 30px;
}

/* 2 Column Content */
.column
{
	float: left;
	padding: 10px;
}

.left { width: 40%; }

.right
{
	width: 60%;
	padding-left: 30px;
	padding-top: 50px;
}

/* Clear floats after the columns */
.row:after
{
	content: "";
	display: table;
	clear: both;
}

@media screen and (max-width: 600px)
{
	.column
	{
		text-align: center;
		width: 100%;
		padding-left: 0px;
		padding-top: 0px;
	}
	
}

/* Sub Content*/
.subcontent
{
	background-color: rgba(255, 255, 255, 0.2);
	padding: 30px;
	width: 100%;
	border-radius: 25px;
	background-repeat: repeat;
	box-shadow: 7px 7px 24px rgba(0, 0, 0, 0.2) ;
	margin-top: 40px;
	margin-bottom: 40px;
	margin-right: auto;
	margin-left: auto;
}

.subcontent-noBackground
{
	padding: 30px;
	width: 100%;
	border-radius: 25px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
}

.subcontent-blueGradient
{
	background-image: linear-gradient(to top, #86a3d2, #c3e0ed);
	padding: 30px;
	width: 100%;
	border-radius: 25px;
	margin-top: 40px;
	margin-right: auto;
	margin-left: auto;
	box-shadow: 7px 7px 24px rgba(0, 0, 0, 0.3) ;
}

.logo
{
	max-width: 482px;
	width: 95%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	display: block;
	padding-top: 10px;
}

.arrow-back
{
	margin-right: auto;
	margin-left: auto;
	display: block;
	background-image: url(../media/images/arrow.png);
	width: 72px;
	height: 42px;
}

.arrow-back:hover { transform: rotate(4deg); }
.arrow-back:active { transform: translateX(-4px); }


.hero-image
{
	box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.6);
	width: 100%;
	max-width: 292px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Crossfade Gallery */
.container-gallery
{
	box-shadow: 7px 7px 24px rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
	max-width: 1024px;
}

.mySlides
{
	display: none;
}


/* Accordion */
.accordion
{
	background-image: linear-gradient(to bottom right, #86a3d2, #c3e0ed);
	border-radius: 25px;
	color: #3c3c3c;
	cursor: pointer;
	padding: 10px 20px 10px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
	margin: 0px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
}


.accordion:hover
{
	
	color: #000;

}
.active
{
	color: #fff;
	border-radius: 24px 24px 0px 0px;
	/* top-left, top-right, bottom-right, bottom-left */
	background-color: #88A8D2;
	box-shadow: none;
}

.accordion:after {
  content: '\002B';
  color: #fff;
  font-weight: 400;
  float: right;
}

.active:after {
  content: "\2212";
}

.panel
{
	background-color: rgba(255, 255, 255, 0.4);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	padding-top: 0px;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 0px 0px 24px 24px;
	/* top-left, top-right, bottom-right, bottom-left */
	width: 100%;
	margin-bottom: 16px;
	margin-right: auto;
	margin-left: auto;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1) inset;
}

/* END Accordion */



/* Button Styles */
.button-main-orange
{
	font-family: 'Luckiest Guy', cursive;
	font-size: 30px;
	color: #000;
	text-align: center;
	border: none;
	padding: 20px 16px 10px 16px;
	border-radius: 6px;
	box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
	width: auto;
	margin: 10px 0px 10px 0px;
	background-image: linear-gradient(to bottom right, red, yellow);
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transform: rotate(1deg);
}

.button-main-orange:hover { color: #fff; }

.button-main-orange:active
{
	color: #fff;
	transform: translate(2px, 2px);
	/* translate X position, y position */
	box-shadow: 0px 0px 0px;
}

.button-blue
{
	font-family: 'Luckiest Guy', cursive;
	font-size: 24px;
	color: #be5b20;
	text-align: center;
	border: none;
	padding: 18px 14px 8px 14px;
	border-radius: 6px;
	box-shadow: 4px 4px 13px rgba(0, 0, 0, 0.2);
	width: auto;
	display: inline-block;
	margin: 8px;
	background-image: linear-gradient(to bottom right, #accbee, #e7f0fd);
	text-transform: uppercase;
	text-decoration: none;
	transform: rotate(-1deg);
}

.button-blue:hover { color: #111; }

.button-blue:active
{
	color: #40550c;
	transform: translate(2px, 2px);
	/* translate X position, y position */
	box-shadow: 0px 0px 0px;
}


/* Font Styles and Color Palette */
.txtColor-yellow { color: #FAF06E; }
.txtColor-orange { color: #ED5F2A; }
.txtColor-dark { color: #444; }

.txt-TITLE-yellow
{
	color: #FAF06E;
	text-shadow: 3px 3px 5px rgba(0,0,0, 0.14);
}

.txt-TITLE-dark
{
	font-family: 'Luckiest Guy', cursive;
	font-size: 38px;
	color: #000;
}

.txt-TITLE-orange
{
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 900;
	color: #CA472E;
}

h1
{
	font-family: 'Luckiest Guy', cursive;
	font-size: 38px;
	color: #000;
	text-align: center;
	line-height: 42px;
}

h2
{
	font-family: 'Poppins', sans-serif;
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	text-align: center;
	line-height: 32px;
}

p
{
	font-family: 'Poppins', sans-serif;
	color: #29292A;
	font-size: 19px;
	line-height: 25px;
	font-weight: 400;
	margin: 0px;
}

p.center { text-align: center; }

p.copyright
{
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	color: #fff;
	font-weight: 400;
	text-align: center;
}

.txt-accordion
{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #000;
	font-weight: 400;
	text-align: left;
	line-height: 16px;
	padding: 20px 20px 0px 20px;
}

ul
{
	font-family: 'Poppins', sans-serif;
	color: #333;
	font-size: 13px;
	list-style: none;
	line-height: 17px;
	font-weight: 400;
	padding: 0px;
	margin-left: 40px;
		margin-bottom: 20px;
}

ul li { margin-bottom: 10px; }
ul li a:link { color: #e6c27e; }
ul li a:visited { color: #e6c27e; }
ul li a:hover { color: #fff; }

ul li::before
{
	content: "\2022";
	color: #f25a2b;
	font-weight: bold;
	display: inline-block;
	width: 15px;
	margin-left: -15px;
}

.footer
{
	padding-bottom: 30px;
	text-align: center;
	vertical-align: middle;
	display: block;
	background-image: url(../media/images/foreground-blue.png);
	background-repeat: repeat-x;
	background-position: top;
	width: auto;
	overflow: hidden;
	bottom: 0;
	/* min-height: 800px; */
}
