@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300i,400i");

/*
	Author: André Pontes
	Version: 1.0
*/

/* Page Loading*/

@-moz-keyframes load-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes load-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes load-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes load-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-viewport {
	width: device-width;
}

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

body {
	-webkit-text-size-adjust: none;
}

html {
	width: 100%;
	height: 100%;
}

html {
	box-sizing: border-box;
	
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	/* flex-direction: column;
	-moz-flex-direction:column;
	-webkit-flex-direction:column; */
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: -moz-flex-start;
	-webkit-justify-content: -webkit-flex-start;
	-ms-justify-content: -ms-flex-start;
	justify-content:flex-start;
	-ms-overflow-style: scrollbar;
	width: 100%;
	height: 100%;
	min-height: 30rem;
	overflow: hidden;
}

	body:before {
		-moz-animation: load-spinner 1s infinite linear;
		-webkit-animation: load-spinner 1s infinite linear;
		-ms-animation: load-spinner 1s infinite linear;
		animation: load-spinner 1s infinite linear;
		-moz-transition: opacity 0.25s ease;
		-webkit-transition: opacity 0.25s ease;
		-ms-transition: opacity 0.25s ease;
		transition: opacity 0.25s ease;
		-moz-transition-delay: 0s;
		-webkit-transition-delay: 0s;
		-ms-transition-delay: 0s;
		transition-delay: 0s;
		pointer-events: none;
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 4rem;
		height: 4rem;
		margin: -2rem 0 0 -2rem;
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='96px' height='96px' viewBox='0 0 96 96' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: %232e2b37%3B stroke-width: 1.5px%3B %7D%3C/style%3E%3Cdefs%3E%3CclipPath id='corner'%3E%3Cpolygon points='0,0 48,0 48,48 96,48 96,96 0,96' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23corner)'%3E%3Ccircle cx='48' cy='48' r='32'/%3E%3C/g%3E%3C/svg%3E");
		background-position: center;
		background-repeat: no-repeat;
		background-size: 4rem;
		opacity: 0;
	}

	body:after {
		pointer-events: none;
		content: '';
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		background-attachment: fixed;
		background-color: #e37b7c21;
		background-image: url("images/overlay.png"), url("images/bg.jpg");
		background-repeat: repeat, repeat-x;
		background-size: 128px 128px, cover;
	}

	body.is-preload *, body.is-preload *:before, body.is-preload *:after {
		-moz-animation: none !important;
		-webkit-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
		-moz-transition: none !important;
		-webkit-transition: none !important;
		-ms-transition: none !important;
		transition: none !important;
	}

	body.is-preload:before {
		-moz-transition: opacity 1s ease;
		-webkit-transition: opacity 1s ease;
		-ms-transition: opacity 1s ease;
		transition: opacity 1s ease;
		-moz-transition-delay: 0.75s;
		-webkit-transition-delay: 0.75s;
		-ms-transition-delay: 0.75s;
		transition-delay: 0.75s;
		opacity: 0.25;
	}

	header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 90px;
		background: #fff;
		background: rgba(255, 255, 255, 0.95);
		z-index: 10000;
		box-shadow: 0 0 1px 0 rgb(16 16 32 / 25%), 0 0 2px 0 rgb(0 0 0 / 15%);
		height: 7em;
		-moz-transition: top 0.25s ease-in-out;
		-webkit-transition: top 0.25s ease-in-out;
		-ms-transition: top 0.25s ease-in-out;
		transition: top 0.25s ease-in-out;
		font-size: 0.9em;
		z-index: 10000;
		cursor: default;
	}

	header .left-logo {
		position: absolute;
		top: 2em;
		left: 5.5em;
		white-space: nowrap;
		overflow: hidden;
	}

	header .right-nav {
		position: absolute;
		top: 2.5em;
		right: 3.5em;
		white-space: nowrap;
		overflow: hidden;
	}

	nav ul {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap:40px;
	}

	nav ul li {
		list-style: none;
		font-weight: 500;
		font-size: 1rem;
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	a.menu {
		color:#898888;
		border: none;
	}

	a.menu:hover {
		border-top: 1px solid #e37b7c ;
        color:#e37b7c;
	}



/* Typography */

	html {
		font-size: 18pt;
		font-size: 1vmax;
	}

	body {
		color: rgba(255, 255, 255, 0.75);
		font-family: "Source Sans Pro", Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 300;
		line-height: 1.65;
	}

	.panel.banner .content > .actions:last-child {
		margin-bottom: 0;
	}
	
	ul.actions {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -0.75rem;
		padding-left: 0;
	}

	ul.actions li {
		padding: 0 0 0 0.75rem;
		vertical-align: middle;
	}

	.button.primary.color1 {
		color: #e37b7c !important;
	}
	
	.button.icon.circle {
		position: relative;
		width: 2.5rem;
		height: 2.5rem;
		line-height: 2.6rem;
		text-indent: 3.125rem;
		border-radius: 100%;
		overflow: hidden;
		padding: 0;
		letter-spacing: 0;
	}
	.primary, button.primary, .button.primary {
		background-color: white;
		box-shadow: none;
		color: #2e2b37 !important;
	}

	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
		background-color: transparent;
		border: 0;
		border-radius: 0.25rem;
		box-shadow: inset 0 0 0 2px rgb(255 255 255 / 25%);
		color: rgba(255, 255, 255, 0.875) !important;
		cursor: pointer;
		display: inline-block;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.6rem;
		font-weight: 700;
		height: 2.75rem;
		letter-spacing: 0.15rem;
		line-height: 2.75rem;
		padding: 0 1.5rem 0 1.65rem;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}


	.button.icon.circle.fa-angle-right:before {
		position: relative;
		left: 0.1rem;
		font-size: 1.75rem;
	}

	.button.icon.circle:before {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: inherit;
		height: inherit;
		font-size: 1.25rem;
		line-height: inherit;
		margin: 0;
		text-indent: 0;
	}

	.button.icon:before {
		display: inline-block;
		position: relative;
		top: -0.075rem;
		vertical-align: middle;
		font-size: 0.8rem;
		margin: 0 0.375rem 0 -0.325rem;
	}

	a {
		-moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		color: inherit;
		border-bottom: dotted 1px;
		text-decoration: none;
	}

		a:hover {
			border-bottom-color: transparent;
			color: #ffe4b4;
		}

	strong, b {
		color: rgba(255, 255, 255, 0.875);
		font-weight: 400;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 1.5rem 0;
	}

		body.is-ie p {
			width: 100%;
		}

	h1, h2, h3, h4, h5, h6 {
		color: rgba(255, 255, 255, 0.875);
		font-family: Arial, Helvetica, sans-serif;
		font-weight: 700;
		line-height: 1.3;
		margin: 0 0 0.75rem 0;
		letter-spacing: -0.05em;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}

	h1.major, h2.major, h3.major {
		position: relative;
	}

		h1.major:after, h2.major:after, h3.major:after {
			content: '';
			position: absolute;
			left: 0;
			width: 3.5rem;
			height: 0.1rem;
			background-color: rgba(255, 255, 255, 0.25);
		}

	h1 {
		font-size: 3rem;
		line-height: 1.2;
	}

		h1.major {
			margin: 0 0 2.625rem 0;
		}

			h1.major:after {
				bottom: -1.325rem;
			}

	h2 {
		font-size: 1.75rem;
		line-height: 1.2;
	}

		h2.major {
			margin: 0 0 1.9875rem 0;
		}

			h2.major:after {
				bottom: -1.2rem;
			}

	h3 {
		font-size: 1.325rem;
	}

		h3.major {
			margin: 0 0 1.875rem 0;
		}

			h3.major:after {
				bottom: -0.75rem;
			}

	h4 {
		font-size: 1rem;
	}

	h5 {
		font-size: 0.9rem;
	}

	h6 {
		font-size: 0.7rem;
	}

	sub {
		font-size: 0.8rem;
		position: relative;
		top: 0.5rem;
	}

	sup {
		font-size: 0.8rem;
		position: relative;
		top: -0.5rem;
	}

	blockquote {
		border-left: solid 0.25rem rgba(255, 255, 255, 0.25);
		font-style: italic;
		margin: 0 0 1.5rem 0;
		padding: 0.375rem 0 0.375rem 1.5rem;
	}

	code {
		background: rgba(255, 255, 255, 0.075);
		border-radius: 0.25rem;
		font-family: "Courier New", monospace;
		font-size: 0.8rem;
		margin: 0 0.25rem;
		padding: 0.25rem 0.65rem;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.8rem;
		margin: 0 0 1.5rem 0;
		white-space: pre-wrap;
	}

		pre code {
			display: block;
			line-height: 1.625;
			padding: 1rem 1.5rem;
			overflow-x: auto;
			margin: 0;
		}

	hr {
		border: 0;
		border-bottom: solid 2px rgba(255, 255, 255, 0.25);
		margin: 1.875rem 0;
	}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}


	/* Icon */

	.icon {
		text-decoration: none;
		position: relative;
		border-bottom: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon > .label {
			display: none;
		}

		.icon:before {
			line-height: inherit;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

/* Image */

.image {
	display: inline-block;
	position: relative;
	border: 0;
}

	.image.filtered:after {
		background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		pointer-events: none;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 1;
		z-index: 1;
	}

	.image.filtered.tinted:after {
		background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25)), linear-gradient(0deg, rgba(0, 0, 0, 0.125), rgba(0, 0, 0, 0.125));
		background-size: 128px 128px, auto, auto;
	}

	.image[data-position] img {
		-moz-object-fit: cover;
		-webkit-object-fit: cover;
		-ms-object-fit: cover;
		object-fit: cover;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	.image[data-position="top left"] img {
		-moz-object-position: top left;
		-webkit-object-position: top left;
		-ms-object-position: top left;
		object-position: top left;
	}

	.image[data-position="top"] img {
		-moz-object-position: top;
		-webkit-object-position: top;
		-ms-object-position: top;
		object-position: top;
	}

	.image[data-position="top right"] img {
		-moz-object-position: top right;
		-webkit-object-position: top right;
		-ms-object-position: top right;
		object-position: top right;
	}

	.image[data-position="right"] img {
		-moz-object-position: right;
		-webkit-object-position: right;
		-ms-object-position: right;
		object-position: right;
	}

	.image[data-position="bottom right"] img {
		-moz-object-position: bottom right;
		-webkit-object-position: bottom right;
		-ms-object-position: bottom right;
		object-position: bottom right;
	}

	.image[data-position="bottom"] img {
		-moz-object-position: bottom;
		-webkit-object-position: bottom;
		-ms-object-position: bottom;
		object-position: bottom;
	}

	.image[data-position="bottom left"] img {
		-moz-object-position: bottom left;
		-webkit-object-position: bottom left;
		-ms-object-position: bottom left;
		object-position: bottom left;
	}

	.image[data-position="left"] img {
		-moz-object-position: left;
		-webkit-object-position: left;
		-ms-object-position: left;
		object-position: left;
	}

	.image[data-position="center"] img {
		-moz-object-position: center;
		-webkit-object-position: center;
		-ms-object-position: center;
		object-position: center;
	}

	.image[data-position="25% 25%"] img {
		-moz-object-position: 25% 25%;
		-webkit-object-position: 25% 25%;
		-ms-object-position: 25% 25%;
		object-position: 25% 25%;
	}

	.image[data-position="75% 25%"] img {
		-moz-object-position: 75% 25%;
		-webkit-object-position: 75% 25%;
		-ms-object-position: 75% 25%;
		object-position: 75% 25%;
	}

	.image[data-position="75% 75%"] img {
		-moz-object-position: 75% 75%;
		-webkit-object-position: 75% 75%;
		-ms-object-position: 75% 75%;
		object-position: 75% 75%;
	}

	.image[data-position="25% 75%"] img {
		-moz-object-position: 25% 75%;
		-webkit-object-position: 25% 75%;
		-ms-object-position: 25% 75%;
		object-position: 25% 75%;
	}

	.image img {
		display: block;
	}

	.image.left, .image.right {
		max-width: 40%;
	}

		.image.left img, .image.right img {
			width: 100%;
		}

	.image.left {
		float: left;
		padding: 0 1.5rem 1rem 0;
		top: 0.25rem;
	}

	.image.right {
		float: right;
		padding: 0 0 1rem 1.5rem;
		top: 0.25rem;
	}

	.image.fit {
		display: block;
		margin: 0 0 1.5rem 0;
		width: 100%;
	}

		.image.fit img {
			width: 100%;
		}

	.image.main {
		display: block;
		margin: 0 0 2.25rem 0;
		width: 100%;
	}

.image.main img {
	width: 100%;
}


/* Page Wrapper */

#page-wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items:center;
	-moz-justify-content: -moz-flex-start;
	-webkit-justify-content: -webkit-flex-start;
	-ms-justify-content: -ms-flex-start;
	justify-content: flex-start;
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	height: 100%;
	padding:11rem 5rem 5rem 5rem;
}

	@media screen and (orientation: portrait) {

		#page-wrapper {
			padding-left: 2rem;
			padding-right: 2rem;
		}

	}

	@media screen and (min-aspect-ratio: 16 / 7) {

		#page-wrapper {
			padding: 6vh;
		}

	}

	@media screen and (min-aspect-ratio: 16 / 6) {

		#page-wrapper {
			padding: 0;
		}

	}

/* Wrapper */

#wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-moz-transition: opacity 1s ease-out, -moz-transform 0.75s ease-out;
	-webkit-transition: opacity 1s ease-out, -webkit-transform 0.75s ease-out;
	-ms-transition: opacity 1s ease-out, -ms-transform 0.75s ease-out;
	transition: opacity 1s ease-out, transform 0.75s ease-out;
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
	transition-delay: 0.25s;
	cursor: default;
	position: relative;
	height: 32rem;
    box-shadow: 0 2rem 4rem 0.25rem rgba(46, 43, 55, 0.575);

}


#wrapper > .scrollZone {
	position: fixed;
	width: 6rem;
	height: inherit;
	cursor: -moz-grab;
	cursor: -webkit-grab;
	cursor: -ms-grab;
	cursor: grab;
	z-index: 10100;
}

	#wrapper > .scrollZone.left {
		left: 0;
	}

	#wrapper > .scrollZone.right {
		right: 0;
	}

#wrapper > .copyright {
	position: absolute;
	bottom: -3rem;
	right: 0;
	font-size: 0.8rem;
	color: rgba(46, 43, 55, 0.375);
	margin-bottom: 0;
}

	#wrapper > .copyright a:hover {
		color: inherit;
	}

#wrapper.is-dragging {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: -moz-grab;
	cursor: -webkit-grab;
	cursor: -ms-grab;
	cursor: grab;
}

	#wrapper.is-dragging * {
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	#wrapper.is-dragging * {
		cursor: -moz-grab;
		cursor: -webkit-grab;
		cursor: -ms-grab;
		cursor: grab;
	}

#wrapper.is-dragged * {
	pointer-events: none;
}

body.is-preload #wrapper {
	-moz-transform: translateX(2rem);
	-webkit-transform: translateX(2rem);
	-ms-transform: translateX(2rem);
	transform: translateX(2rem);
	opacity: 0;
}

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

	

}

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



	#wrapper {
		box-shadow: none;
	}

		body.is-preload #wrapper {
			-moz-transform: none;
			-webkit-transform: none;
			-ms-transform: none;
			transform: none;
		}

}


/* Panel */

.panel {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.panel > * {
	position: relative;
	min-width: 10rem;
}

.panel > *.color2 {
	background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
	background-size: 128px 128px, auto;
	background-color: #e37b7c;
}

.panel .span-3 {
    width: 30rem;
}

.panel .span-3-75 {
	width: 37.5rem;
}

.panel .span-1-75 {
	width: 17.5rem;
}

.panel .span-4-5 {
    width: 45rem;
}

.panel .span-1-5 {
    width: 15rem;
}

.panel.color2 {
	background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
	background-size: 128px 128px, auto;
	background-color: #e37b7c;
}


/*****************************************
-------------Panel (Banner)--------------- 
*****************************************/

.panel.banner {
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
}

	.panel.banner .content {
		padding: 3.5rem 3.5rem 2rem 3.5rem ;
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-moz-flex-grow: 0;
		-webkit-flex-grow: 0;
		-ms-flex-grow: 0;
		flex-grow: 0;
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;
	}

		.panel.banner .content > .actions:last-child {
			margin-bottom: 0;
		}

	.panel.banner .image {
		-moz-flex-grow: 0;
		-webkit-flex-grow: 0;
		-ms-flex-grow: 0;
		flex-grow: 0;
		-moz-flex-shrink: 0;
		-webkit-flex-shrink: 0;
		-ms-flex-shrink: 0;
		flex-shrink: 0;
		position: relative;
	}

		.panel.banner .image img {
			-moz-object-fit: cover;
			-webkit-object-fit: cover;
			-ms-object-fit: cover;
			object-fit: cover;
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

	.panel.banner.left {
		-moz-flex-direction: row;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.panel.banner.right {
		-moz-flex-direction: row-reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}


/*******************************************
******************PANEL MISSION*************
********************************************/


.panel.color1 {
	background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
	background-size: 128px 128px, auto;
	background-color: #726193;
}

.panel > .intro {
	padding: 3.5rem 3.5rem 2rem 3.5rem ;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-grow: 0;
	-webkit-flex-grow: 0;
	-ms-flex-grow: 0;
	flex-grow: 0;
	-moz-flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-align-items: -moz-flex-start;
	-webkit-align-items: -webkit-flex-start;
	-ms-align-items: -ms-flex-start;
	align-items: flex-start;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 22rem;
}

	.panel > .intro.joined {
		width: 18.5rem;
		padding-right: 0;
	}

		.panel > .intro.joined + .inner {
			padding-left: 2.625rem;
		}

.panel > .inner {
	padding: 3.5rem 3.5rem 2rem 3.5rem ;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-align-items: -moz-flex-start;
	-webkit-align-items: -webkit-flex-start;
	-ms-align-items: -ms-flex-start;
	align-items: flex-start;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	width: 100%;
} 

ul.grid-icons.three {
    width: 21.5rem;
}
ul.grid-icons {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding-left: 0;
}
ul {
    list-style: disc;
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
}


/*
* SECTION PORCO BISARO*
**/

.panel.medium {
    width: 50rem;
}
.panel.medium .span-7 {
    width: 70%;
}

.panel.spotlight {
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
	position: relative;
}

	.panel.spotlight > * {
		z-index: 1;
	}

	.panel.spotlight .content {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		padding: 3.5rem 3.5rem 2rem 3.5rem ;
	}

	.panel.spotlight .image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}

		.panel.spotlight .image img {
			-moz-object-fit: cover;
			-webkit-object-fit: cover;
			-ms-object-fit: cover;
			object-fit: cover;
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

	.panel.spotlight.left {
		-moz-justify-content: -moz-flex-start;
		-webkit-justify-content: -webkit-flex-start;
		-ms-justify-content: -ms-flex-start;
		justify-content: flex-start;
	}

		.panel.spotlight.left .content {
			background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.125) 30%, rgba(0, 0, 0, 0.175) 50%);
		}

	.panel.spotlight.right {
		-moz-justify-content: -moz-flex-end;
		-webkit-justify-content: -webkit-flex-end;
		-ms-justify-content: -ms-flex-end;
		justify-content: flex-end;
	}

		.panel.spotlight.right .content {
			background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.125) 30%, rgba(0, 0, 0, 0.175) 50%);
		}


/*
* SECTION GALLERY*
**/

@-moz-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-ms-keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes gallery-modal-spinner {
	0% {
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.gallery {
	-moz-align-items: -moz-stretch;
	-webkit-align-items: -webkit-stretch;
	-ms-align-items: -ms-stretch;
	align-items: stretch;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	height: 100%;
}

	.gallery > * {
		width: 20rem;
		height: 100%;
	}

	.gallery .image {
		display: block;
		position: relative;
		border-bottom: 0;
		overflow: hidden;
	}

		.gallery .image img {
			-moz-transition: -moz-transform 0.2s ease-in-out;
			-webkit-transition: -webkit-transform 0.2s ease-in-out;
			-ms-transition: -ms-transform 0.2s ease-in-out;
			transition: transform 0.2s ease-in-out;
		}

		.gallery .image:after {
			-moz-transition: opacity 0.2s ease-in-out;
			-webkit-transition: opacity 0.2s ease-in-out;
			-ms-transition: opacity 0.2s ease-in-out;
			transition: opacity 0.2s ease-in-out;
		}

		.gallery .image:hover img {
			-moz-transform: scale(1.025);
			-webkit-transform: scale(1.025);
			-ms-transform: scale(1.025);
			transform: scale(1.025);
		}

		.gallery .image:hover:after {
			opacity: 0;
		}

	.gallery .group {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

		.gallery .group > * {
			height: 50%;
		}

	.gallery .modal {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: center;
		-webkit-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		pointer-events: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-moz-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-webkit-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-ms-transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		transition: opacity 0.5s ease, visibility 0.5s, z-index 0.5s;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(46, 43, 55, 0.875);
		opacity: 0;
		outline: 0;
		visibility: none;
		z-index: 0;
	}

		.gallery .modal:before {
			-moz-animation: gallery-modal-spinner 1s infinite linear;
			-webkit-animation: gallery-modal-spinner 1s infinite linear;
			-ms-animation: gallery-modal-spinner 1s infinite linear;
			animation: gallery-modal-spinner 1s infinite linear;
			-moz-transition: opacity 0.25s ease;
			-webkit-transition: opacity 0.25s ease;
			-ms-transition: opacity 0.25s ease;
			transition: opacity 0.25s ease;
			-moz-transition-delay: 0.5s;
			-webkit-transition-delay: 0.5s;
			-ms-transition-delay: 0.5s;
			transition-delay: 0.5s;
			content: '';
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			width: 4rem;
			height: 4rem;
			margin: -2rem 0 0 -2rem;
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='96px' height='96px' viewBox='0 0 96 96' zoomAndPan='disable'%3E%3Cstyle%3Ecircle %7Bfill: transparent%3B stroke: rgba(255, 255, 255, 0.875)%3B stroke-width: 1.5px%3B %7D%3C/style%3E%3Cdefs%3E%3CclipPath id='corner'%3E%3Cpolygon points='0,0 48,0 48,48 96,48 96,96 0,96' /%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23corner)'%3E%3Ccircle cx='48' cy='48' r='32'/%3E%3C/g%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 4rem;
			opacity: 0;
		}

		.gallery .modal:after {
			content: '';
			display: block;
			position: absolute;
			top: 0.5rem;
			right: 0.5rem;
			width: 4rem;
			height: 4rem;
			background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='64px' height='64px' viewBox='0 0 64 64' zoomAndPan='disable'%3E%3Cstyle%3Eline %7Bstroke: rgba(255, 255, 255, 0.875)%3Bstroke-width: 1.5px%3B%7D%3C/style%3E%3Cline x1='20' y1='20' x2='44' y2='44' /%3E%3Cline x1='20' y1='44' x2='44' y2='20' /%3E%3C/svg%3E");
			background-position: center;
			background-repeat: no-repeat;
			background-size: 3rem;
			cursor: pointer;
		}

		.gallery .modal .inner {
			-moz-transform: translateY(0.75rem);
			-webkit-transform: translateY(0.75rem);
			-ms-transform: translateY(0.75rem);
			transform: translateY(0.75rem);
			-moz-transition: opacity 0.25s ease, -moz-transform 0.25s ease;
			-webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
			-ms-transition: opacity 0.25s ease, -ms-transform 0.25s ease;
			transition: opacity 0.25s ease, transform 0.25s ease;
			opacity: 0;
		}

			.gallery .modal .inner img {
				display: block;
				max-width: 90vw;
				max-height: 85vh;
				box-shadow: 0 1rem 3rem 0 rgba(0, 0, 0, 0.35);
			}

		.gallery .modal.visible {
			pointer-events: auto;
			opacity: 1;
			visibility: visible;
			z-index: 11000;
		}

			.gallery .modal.visible:before {
				opacity: 1;
			}

		.gallery .modal.loaded .inner {
			-moz-transform: translateY(0);
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
			-moz-transition: opacity 0.5s ease, -moz-transform 0.5s ease;
			-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
			-ms-transition: opacity 0.5s ease, -ms-transform 0.5s ease;
			transition: opacity 0.5s ease, transform 0.5s ease;
			opacity: 1;
		}

		.gallery .modal.loaded:before {
			-moz-transition-delay: 0s;
			-webkit-transition-delay: 0s;
			-ms-transition-delay: 0s;
			transition-delay: 0s;
			opacity: 0;
		}




/*
* Contactos
*/

.panel.color4-alt {
	background-image: url("images/overlay.png"), linear-gradient(45deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
	background-size: 128px 128px, auto;
	background-color: #323459;
}


.panel .span-3-25 {
    /* width: 32.5rem; */
    width: 18rem;
}

.panel .span-1-5 {
    width: 15rem;
}

.panel > .inner.columns {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.panel > .inner.columns.divided > *:before {
    content: '';
    position: absolute;
    top: 3.5rem;
    width: 2px;
    height: calc(100% - 7rem);
    margin-left: -3.5rem;
    background-color: rgba(255, 255, 255, 0.25);
}

.panel > .inner.columns.divided > :first-child {
    margin-left: 0;
}
.panel > .inner.columns.divided > * {
    margin-left: 7rem;
}
.panel > .inner.columns > :first-child {
    margin-left: 0;
}

ul.contact-icons {
    list-style: none;
    padding-left: 0;
}

ul {
    list-style: disc;
    margin: 0 0 1.5rem 0;
    padding-left: 1rem;
}

ul.contact-icons > li {
    margin: 1.25rem 0 0 0;
    padding-left: 0;
}

ul.contact-icons.color1 > li:before {
    color: #726193;
}
.icon.brands:before {
    font-family: 'Font Awesome 5 Brands';
}

ul.contact-icons > li:before {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    border-radius: 2.25rem;
    background-color: white;
    color: #2e2b37;
    cursor: default;
    font-size: 1.125rem;
    margin-right: 1rem;
    text-align: center;
    vertical-align: middle;
}
.icon:before {
    line-height: inherit;
}
.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.button.icon.circle {
    position: relative;
    width: 3.125rem;
    height: 3.125rem;
    line-height: 3.125rem;
    text-indent: 3.125rem;
    border-radius: 100%;
    overflow: hidden;
    padding: 0;
    letter-spacing: 0;
}


/**RESPONSIVE**/

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

	html {
		font-size: 12pt;
		font-size: 1.1vmax;
	}

}

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

	html {
		font-size: 11pt;
		font-size: 1.5vmax;
	}

}

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

	.gallery .modal .inner img {
		max-width: 100vw;
	}

}

@media screen and (max-width: 736px) and (orientation: portrait) {

	.panel.banner .content {
		-moz-flex-basis: auto;
		-webkit-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;
	}

	.panel.banner .image {
		-moz-flex-basis: auto;
		-webkit-flex-basis: auto;
		-ms-flex-basis: auto;
		flex-basis: auto;
		height: 18rem;
	}

	.panel.banner.left {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.panel.banner.right {
		-moz-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

}

@media screen and (max-width: 736px) {
	
	html {
		height: auto;
	}
	
	
	html {
		font-size: 12pt;
	}
	
	body {
		height: auto;
		overflow-x: hidden;
		overflow-y: auto;
	}

	h1 {
		font-size: 2.25rem;
		line-height: 1.2;
	}

	h1.major {
		margin: 0 0 2.625rem 0;
	}

	h1.major:after {
		bottom: -1.325rem;
	}

	h2 {
		font-size: 1.5rem;
		line-height: 1.2;
	}

	h2.major {
		margin: 0 0 1.9875rem 0;
	}

	h2.major:after {
		bottom: -1.2rem;
	}

	h3 {
		font-size: 1rem;
	}

	h3.major {
		margin: 0 0 1.875rem 0;
	}

	h3.major:after {
		bottom: -0.75rem;
	}

	h4 {
		font-size: 1rem;
	}

	h5 {
		font-size: 0.9rem;
	}

	h6 {
		font-size: 0.7rem;
	}

	h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
		display: none;
	}


	/**GRID ICONS**/

    ul.grid-icons {
		-moz-justify-content: -moz-flex-start;
		-webkit-justify-content: -webkit-flex-start;
		-ms-justify-content: -ms-flex-start;
		justify-content: flex-start;
		width: 100% !important;
		margin: -1rem 0 1.5rem -1rem;
	}

	ul.grid-icons .icon:before {
		width: 4.5rem;
		height: 4.5rem;
		line-height: 4.5rem;
		font-size: 1.75rem;
	}

	ul.grid-icons > li {
		margin: 1rem 0 0 1rem !important;
	}

	ul.grid-icons > li:before {
		display: none !important;
	}

	ul.grid-icons > li:after {
		display: none !important;
	}

	/** END GRID ICONS**/

	/** GALLERY **/

	.gallery {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
	}

	.gallery > * {
		height: auto;
		width: 100%;
	}

	.gallery .image {
		width: 100%;
		height: 40rem;
	}

	.gallery .group .span-1-5 {
		width: 49.99999%;
	}

	.gallery .group .span-2-5 {
		width: 83.33332%;
	}

	.gallery .group .span-3 {
		width: 99.99999%;
	}

	.gallery .group .span-4-5 {
		width: 149.99998%;
	}


	.gallery .group .image {
		height: 20rem;
	}
    
   /** END GALLERY **/

  /** PANEL**/

  .panel {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: auto;
}

	.panel > *.color1 {
		background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #726193;
	}

	.panel > *.color2 {
		background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #e37b7c;
	}

	.panel > .intro {
		padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
		width: 100% !important;
	}

	.panel > .intro.joined {
		padding-bottom: 0;
		padding-right: 1.75rem;
	}

	.panel > .intro.joined + .inner {
		padding-top: 0;
		padding-left: 1.75rem;
	}

	.panel > .inner {
		padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
	}

	.panel > .inner.columns {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.panel > .inner.columns > * {
		margin-left: 0;
		margin-top: 0;
	}

	.panel > .inner.columns > :first-child {
		margin-top: 0;
	}

	.panel > .inner.columns.divided > * {
		margin-left: 0;
		margin-top: 3.5rem;
	}

	.panel > .inner.columns.divided > *:before {
		content: '';
		position: absolute;
		top: auto;
		left: 1.75rem;
		width: calc(100% - 3.5rem);
		height: 2px;
		margin-left: 0;
		margin-top: -1.75rem;
	}

	.panel > .inner.columns.divided > :first-child {
		margin-top: 0;
	}

	.panel .span-1-5 {
		width: 100%;
	}

	.panel .span-1-75 {
		width: 100%;
	}

	.panel .span-2-5 {
		width: 100%;
	}

	.panel .span-3 {
		width: 100%;
	}

	.panel .span-3-25 {
		width: 100%;
	}

	.panel .span-3-75 {
		width: 100%;
	}

	.panel .span-4-5 {
		width: 100%;
	}

	.panel .span-7 {
		width: 100%;
	}


	.panel.small, .panel.medium, .panel.large {
		width: 100% !important;
	}

	.panel.medium .span-7{
		width: 100%;
	}

	.panel.color1 {
		background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #726193;
	}

	.panel.color2 {
		background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.25) 25%, rgba(227, 123, 124, 0.25) 50%, rgba(255, 228, 180, 0.25));
		background-size: 128px 128px, auto;
		background-color: #e37b7c;
	}


	.panel.color4-alt {
		background-image: url("../../images/overlay.png"), linear-gradient(135deg, rgba(114, 97, 147, 0.175) 25%, rgba(227, 123, 124, 0.175) 50%, rgba(255, 228, 180, 0.175));
		background-size: 128px 128px, auto;
		background-color: #323459;
	}

	.panel.banner .content {
		padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
		-moz-flex-basis: 60%;
		-webkit-flex-basis: 60%;
		-ms-flex-basis: 60%;
		flex-basis: 60%;
	}

	.panel.banner .content > .actions:last-child {
		margin-bottom: 1.5rem;
	}

	.panel.banner .image {
		-moz-flex-basis: 40%;
		-webkit-flex-basis: 40%;
		-ms-flex-basis: 40%;
		flex-basis: 40%;
	}

	.panel.spotlight .content {
		padding: 2.8875rem 1.75rem 1.3875rem 1.75rem ;
		-moz-flex-direction: column !important;
		-webkit-flex-direction: column !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.175)) !important;
		min-height: 25rem;
	}

  /**END PANEL**/

	#page-wrapper {
		height: auto;
		padding: 1rem;
		padding-top: 90px;
	}

	#wrapper {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		margin: 0 0 5rem 0;
		box-shadow: 0 0.25rem 1.5rem 0.25rem rgba(46, 43, 55, 0.5);
	}

	#wrapper > .scrollZone {
		display: none;
	}

	#wrapper > .copyright {
		display: block;
		width: 100%;
		text-align: center;
	}

	body.is-preload #wrapper {
		-moz-transform: translateY(1rem);
		-webkit-transform: translateY(1rem);
		-ms-transform: translateY(1rem);
		transform: translateY(1rem);
	}

	header .right-nav {
		display: none;
	}
		

}

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

	html, body {
		min-width: 320px;
	}
	#wrapper {
		box-shadow: none;
	}


	body.is-preload #wrapper {
		-moz-transform: none;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	#page-wrapper {
		padding: 0;
		padding-top: 90px;
	}
	
	.panel.spotlight .content {
		min-height: 30rem;
	}

	.gallery .image {
		height: 30rem;
	}

	.gallery .group .image {
		height: 12.5rem;
	}
	 
	header .right-nav {
		display: none;
	}

}

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

	html {
		font-size: 11pt;
	}

	header .right-nav {
		display: none;
	}

}