/* CORE STYLES */


/*=========================================================================
TYPOGRAPHY
==========================================================================*/

body {
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
	position: relative;
}

h1,
h2,
h3 {
	text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

.op_layout_container > h2 {
	font-weight: 900;
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 48px;
	text-align: center;
}

@media (max-width: 567px) {
	.op_layout_container > h2 {
		margin-bottom: 24px;
	}
}


p {
	margin: 0;
	margin-bottom: 24px;
	font-size: 18px;
}

@media (max-width: 567px) {
	p {
		font-size: 16px;
	}
}

p:last-child {
	margin-bottom: 0 !important;
}


/*=========================================================================
MISC
==========================================================================*/

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.scroll-lock {
	overflow-y: hidden;
}
	

/*=========================================================================
LAYOUT
==========================================================================*/

/*body {
	padding-top: 100px;
}

@media (max-width: 867px) {
	body {
		padding-top: 60px;
	}
}*/

/* Horizontal Padding */

.op_layout_hp {
	padding-left: 48px;
	padding-right: 48px;
}

@media (max-width: 867px) {
	.op_layout_hp {
		padding-left: 32px;
		padding-right: 32px;
	}
}

@media (max-width: 567px) {
	.op_layout_hp {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* Vertical Padding */

.op_layout_vp {
	padding-top: 48px;
	padding-bottom: 48px;
	padding-bottom: 48px;
}

@media (max-width: 567px) {
	.op_layout_vp {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}


/* Main Container Wrapper */

.op_layout_container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}


/*=========================================================================
BUTTONS
==========================================================================*/

.op_button {
	padding: 12px 24px;
	text-decoration: none;
	font-size: 12px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	transition: 0.15s;
}

/* Solid */

.op_button--black {
	border: 1px solid #000000;
	background-color: #000000;
	color: #FFFFFF;
}

.op_button--black:hover {
	background-color: rgba(0,0,0,0);
	color: #000000;
	transition: 0.35s;
}

.op_button--white {
	border: 1px solid #FFFFFF;
	background-color: #FFFFFF;
	color: #000000;
}

.op_button--white:hover {
	background-color: rgba(0,0,0,0);
	color: #FFFFFF;
	transition: 0.35s;
}

/* Outline */

.op_button--black--outline {
	border: 1px solid #000000;
	background-color: rgba(0,0,0,0);
	color: #000000;
}

.op_button--black--outline:hover {
	background-color: #000000;
	color: #FFFFFF;
	transition: 0.35s;
}

.op_button--white--outline {
	border: 1px solid #FFFFFF;
	background-color: rgba(0,0,0,0);
	color: #FFFFFF;
}

.op_button--white--outline:hover {
	background-color: #FFFFFF;
	color: #000000;
	transition: 0.35s;
}


/*=========================================================================
NAVS
==========================================================================*/


.op_header_nav {
	display: block;
}

/*@media (max-width: 1067px) {
	.op_header_nav {
		display: none !important;
	}
}*/

.op_header_nav ul,
.op_footer_nav ul  {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.op_header_nav ul {
	flex-direction: row;
	gap: 2px;
}

.op_header_nav ul > li > a {
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 18px;
	position: relative;
	transition: 0.15s;
}

.op_header_nav ul > li > a > span {
	position: relative;
}

.op_header_nav ul > li > a > span:after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background-color: #000000;
	position: absolute;
	left: 0;
	bottom: -8px;
	transition: 0.15s;
}

.op_header_nav ul > li > a:hover > span:after {
	width: 100%;
	transition: 0.5s;
}

.op_header_nav > ul > li:nth-child(1) {
	display: none;
}


/* MOBILE NAV */

@media (max-width: 1067px) {

	.op_header_nav > ul > li:nth-child(1) {
		display: block;
		max-width: 240px;
		margin-bottom: 48px;
	}

	.op_header_nav > ul > li:nth-child(1) > img {
		display: block;
		width: 100%;
	}

	.op_header_nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #000000;
		padding: 48px 48px;
	}

	.op_header_nav > ul {
		display: flex;
		flex-direction: column;
	}

	.op_header_nav ul > li > a {
		color: #FFFFFF;
		display: block;
		padding: 8px 0;
		font-size: 20px;
	}

}

@media (max-width: 567px) {
	.op_header_nav > ul > li:nth-child(1) {
		max-width: 160px;
		margin-bottom: 32px;
	}
}


/* Footer Nav */

.op_footer_nav ul {
	flex-direction: column;
	align-items: flex-start;
}

@media (max-width: 767px) {
	.op_footer_nav ul {
		align-items: center;
	}
}

.op_footer_nav ul > li {
	margin-bottom: 12px;
}

.op_footer_nav ul > li:last-child {
	margin-bottom: 0 !important;
}

.op_footer_nav ul > li > a {
	text-transform: uppercase;
	text-decoration: none;
	color: #F1F1F1;
	font-size: 16px;
}

.op_footer_nav ul > li > a > span {
	position: relative;
}

.op_footer_nav ul > li > a > span:after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	background-color: #FFFFFF;
	width: 0;
	height: 2px;
	transition: 0.15s;
}

.op_footer_nav ul > li > a:hover > span:after {
	width: 100%;
	transition: 0.5s;
}


/*=========================================================================
NAV TOGGLER
==========================================================================*/


#nav-toggler {
	width: 20px;
	height: 20px;
	box-sizing: content-box;
	display: none;
	background-color: rgba(0,0,0,0);
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	position: relative;
}

#nav-toggler:hover {
	cursor: pointer;
}

@media (max-width: 1067px) {
	#nav-toggler {
		display: block;
		z-index: 999999999;
	}
}

#nav-toggler > img {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
}

#nav-toggler > img:nth-child(2) {
	opacity: 0;
}

#header.show-nav #nav-toggler > img:nth-child(1) {
	opacity: 0;
	transition-delay: 1s;
	transition-property: opacity;
	transition: 0.25s;
}

#header.show-nav #nav-toggler > img:nth-child(2) {
	opacity: 1;
	transition-delay: 0.5s;
	transition: 0.25s;
}

/* Show Nav */

@media (max-width: 1067px) {
	#header #nav {
		opacity: 0;
		transform: translateX(200%);
	}
	#header.show-nav #nav {
		transform: translateX(0);
		z-index: 999999;
		opacity: 1;
		transition-property: opacity;
		transition-timing-function: ease-in-out;
		transition-duration: 0.4s;
	}
}


/*=========================================================================
HEADER
==========================================================================*/

header {
	background-color: #FFFFFF;
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: 0.15s;
	z-index: 99999	;
}

@media (max-width: 867px) {
	header {
		height: 60px;
	}
}

.op_header_wrapper {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.op_header_logo {
	max-width: 140px;
	transition: 0.15s;
}

@media (max-width: 867px) {
	.op_header_logo {
		max-width: 80px;
	}
}

.op_header_logo > a {
	width: 100%;
}

.op_header_logo > a > h1 {
	width: 100%;
}

.op_header_logo > a > h1 > img {
	display: block;
	width: 100%;
}

/* Header Scrolling Adjustments */

@media (min-width: 1068px) {

	header.header--scrolling {
		height: 60px;
		transition: 0.25s;
	}

	header.header--scrolling .op_header_logo {
		max-width: 80px;
		transition: 0.25s;
	}

	header.header--scrolling .op_header_nav ul > li > a {
		font-size: 12px;
		padding: 12px;
		transition: 0.25s;
	}

}


/*=========================================================================
FOOTER
==========================================================================*/

/* Footer */

footer {
	font-size: 14px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Footer Main */

.op_footer_main {
	background-color: #0b121d;
	padding-top: 160px;
}

footer,
footer p {
	font-size: 14px;
	font-weight: 300;
	color: #f1f1f1;
	color: #222222;
	color: #FFFFFF;
}

footer .op_tile_img {
	width: 80px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {
	footer .op_tile_img {
		width: 120px;
	}
}

footer .op_tile_img > img {
	width: 100%;
	display: block;
}

.op_address {
	line-height: 1.5;
	margin-bottom: 12px;
}

.op_contacts {
	margin-bottom: 48px;
}

.op_contacts_flex {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 8px;
}

@media (max-width: 767px) {
	.op_contacts_flex {
		justify-content: center;
	}
}

.op_contacts_flex span {
	display: block;
}

.op_contacts_flex > span:nth-child(1) {
	font-weight: 600;
}

.op_contacts_flex > span:nth-child(2),
.op_contacts_flex > span:nth-child(2) > a {
	font-weight: 300;
	color: #f1f1f1;
	color: #222222;
	color: #FFFFFF;
	text-decoration: none;
}

.op_contacts_flex > span > a:hover {
	text-decoration: underline;
}

/* Footer Mobile */

footer .op_tiles {}

@media (max-width: 767px) {
	footer .op_tiles {
		text-align: center;
	}
	footer .op_tile_img {
		margin-left: auto;
		margin-right: auto;
		max-width: ;
	}
}


/* Footer Cap */

.op_footer_cap {
	background-color: #444444;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: center;
}

@media (max-width: 567px) {
	.op_footer_cap {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.op_footer_cap p > a {
	text-decoration: none;
	color: #f1f1f1;
}

.op_footer_cap p > a:hover {
	text-decoration: underline;
}


/*=========================================================================
MISC
==========================================================================*/


/* Background Patterns */

.op_section_about,
.op_footer_cap {
	background-size: cover;
    background-repeat: repeat;
}

/* Arrow */

.op_arrow {
}

.op_arrow > a {
	width: 100%;
	display: block;
	box-sizing: content-box;
	width: 30px;
	margin-left: auto;
	margin-right: auto;
	padding: 16px;
}

.op_arrow > a > img {
	width: 100%;
	display: block;
	transition: 0.5s;
}

.op_arrow > a:hover > img {
	transform: translateY(10px);
	transition: 0.5s;
}



/*=========================================================================
TILES / GRID
==========================================================================*/

.op_tiles {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 72px;
}

@media (max-width: 1267px) {
	.op_tiles {
		gap: 60px;
	}
}

@media (max-width: 1067px) {
	.op_tiles {
		gap: 48px;
	}
}

@media (max-width: 867px) {
	.op_tiles {
		gap: 36px;
	}
}

@media (max-width: 767px) {
	.op_tiles {
		flex-direction: column;
		gap: 48px;
	}
}

.op_tile {
	width: 100%;
	position: relative;
}

@media (max-width: 767px) {
	.op_tile {
		width: 100%;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

@media (max-width: 567px) {
	.op_tile {
		width: 100%;
		max-width: 100%;
		text-align: left;
	}
}

.op_tile_img {
	width: 100%;
	margin-bottom: 24px;
}

.op_tile_img > img {
	width: 100%;
	display: block;
}

.op_tile > h3 {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 12px;
	text-transform: initial;
}

.op_tile > p {
	font-size: 14px;
	font-weight: 300;
}


/* FLIPPER TILES */

.op_tile_img--flipper {
	background-color: #000000;
	position: relative;
}

.op_tile_img--flipper > div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	padding: 48px;
	opacity: 0;
}

.op_tile_img--flipper p {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 300;
}

.op_tile_img--flipper > img {
	transition: 0.35s;
}

/*.op_tile_img--flipper:hover > img {
	opacity: 0;
	transition: 0.35s;
}*/

.op_tile_img--flipper > div {
	transition: 0.15s;
}

/*.op_tile_img--flipper:hover > div {
	opacity: 1;
	transition: 0.5s;
}

.op_tile_img--flipper:hover {
	cursor: default;
}*/

/* Line / Separator */

.op_tile_line {
	height: 1px;
	background-color: #e8e8e8;
	margin-bottom: 48px;
}

@media (max-width: 767px) {
	.op_tile_line {
		opacity: 0.5;
	}
}


/*=========================================================================
SECTION SPECIFIC
==========================================================================*/


/* About Section */

.op_section_about {
	background-color: #e2a9b1;
	color: #FFFFFF;
	padding-bottom: 160px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.op_section_about {
		padding-bottom: 120px;
	}
}

.op_section_about p {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
}

@media (max-width: 567px) {
	.op_section_about p {
		text-align: left;
	}
}

.op_section_about .op_arrow {
	margin-top: 96px;
}

@media (max-width: 567px) {
	.op_section_about .op_arrow {
		margin-top: 48px;
	}
}

/* Featured Artists */

.op_section_featured {
	background-color: #FFFFFF;
	color: #000000;
}

/* Galleries */

.op_section_galleries {
	background-color: #edeeed;
	color: #000000;
}

.op_section_galleries p {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	margin-bottom: 60px;
}

@media (max-width: 567px) {
	.op_section_galleries p {
		text-align: left;
	}
}

.op_section_galleries .op_tiles {
	align-items: center;
}

.op_section_galleries .op_tiles > div:nth-child(2) img {
	height: 120px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 567px) {
	.op_section_galleries .op_tile_img {
		max-width: 240px;
	}
	.op_section_galleries .op_tiles > div:nth-child(1) {
		max-width: 260px;
	}
	.op_section_galleries .op_tiles > div:nth-child(2) img {
		height: 70px;
	}
	.op_section_galleries .op_tiles > div:nth-child(3) img {
		max-width: 200px;
	}
	.op_section_galleries .op_tiles .op_tile_img,
	.op_section_galleries .op_tiles .op_tile_img img {
		margin-left: auto;
		margin-right: auto;
	}
	.op_section_galleries .op_tiles {
		gap: 12px;
	}
	.op_section_galleries .op_tile {
		margin-bottom: 48px;
	}
	.op_section_galleries .op_tile:last-child {
		margin-bottom: 24px !important;
	}
}

/* Leadership */

.op_section_leadership {
	background-color: #FFFFFF;
	color: #000000;
}

.op_section_leadership .op_tile > h3 {
	margin-bottom: 4px;
}

.op_section_leadership .op_tile > h4 {
	font-weight: 400;
}

.op_section_leadership .op_tiles {
	margin-bottom: 48px;
}

.op_section_leadership .op_layout_container > div:last-child {
	margin-bottom: 0 !important;
}

.op_section_leadership .op_tiles {
	gap: initial;
	justify-content: center;
	margin-left: -36px;
	margin-right: -36px;
}

@media (max-width: 1167px) {
	.op_section_leadership .op_tiles {
		margin-left: -12px;
		margin-right: -12px;
	}
}

@media (max-width: 867px) {
	.op_section_leadership .op_tiles {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}

.op_section_leadership .op_tiles > .op_tile {
	width: 20%;
	padding-left: 36px;
	padding-right: 36px;
}

@media (max-width: 1167px) {
	.op_section_leadership .op_tiles > .op_tile {
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 867px) {
	.op_section_leadership .op_tiles > .op_tile {
		width: 33.333333%;
		padding-bottom: 12px;
	}
}

@media (max-width: 767px) {
	.op_section_leadership .op_tiles > .op_tile {
		width: 100%;
	}
}

/* Footer */

footer .op_tile {
	text-align: center;
}

@media (max-width: 567px) {
	footer .op_tile {
		text-align: center;
	}
}


/* LOGOS SECTION */

.op_section_logos {
	background-color: #000000;
	background-color: #edeeed;
	padding-top: 72px;
	padding-bottom: 96px;
}

@media (max-width: 1167px) {
	.op_section_logos {
		padding-top: 48px;
		padding-bottom: 60px;
	}
}

@media (max-width: 567px) {
	.op_section_logos {
		padding-top: 36px;
		padding-bottom: 48px;
	}
}

@media (max-width: 467px) {
	.op_section_logos {
		padding-top: 24px;
		padding-bottom: 36px;
	}
}

.op_logos {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 72px;
}

@media (max-width: 1167px) {
	.op_logos {
		gap: 48px;
	}
}

@media (max-width: 1167px) {
	.op_logos {
		gap: 24px;
	}
}


.op_logo {
	width: 33.333333%;
	text-align: center;
}

.op_logo > img {
	width: 100%;
	display: block;
}

.op_logos > div:nth-child(1) > img {
	max-width: 240px;
	margin-left: auto;
	margin-right: auto;
}

.op_logos > div:nth-child(2) > img {
	max-width: 280px;
	margin-left: auto;
	margin-right: auto;
}

.op_logos > div:nth-child(3) > img {
	max-width: 190px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1167px) {
	.op_logos > div:nth-child(1) > img {max-width: 160px}
	.op_logos > div:nth-child(2) > img {max-width: 186px}
	.op_logos > div:nth-child(3) > img {max-width: 126px}
}

@media (max-width: 767px) {
	.op_logos > div:nth-child(1) > img {max-width: 106px}
	.op_logos > div:nth-child(2) > img {max-width: 122px}
	.op_logos > div:nth-child(3) > img {max-width: 84px}
}

@media (max-width: 467px) {
	.op_logos > div:nth-child(1) > img {max-width: 80px}
	.op_logos > div:nth-child(2) > img {max-width: 92px}
	.op_logos > div:nth-child(3) > img {max-width: 64px}
}


/*=========================================================================
FORM
==========================================================================*/

.op_form_cover {
	height: 50px;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000000;
}

/*=========================================================================
HERO
==========================================================================*/

.heroLogo {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}

.heroLogo > img {
	display: block;
	width: 100%;
}

.op_section_about h2 {
	text-align: left;
	line-height: 1;
	/*border: 4px solid #FFFFFF;
	padding: 24px;*/
	box-sizing: border-box;
	display: inline-block;
	position: relative;
}

.op_section_about h2 > span:nth-child(1),
.op_section_about h2 > span:nth-child(2) {
	font-size: 108px;
	line-height: 1;
	font-weight: 600;
	display: block;
}

@media (max-width: 767px) {
	.op_section_about h2 > span:nth-child(1),
	.op_section_about h2 > span:nth-child(2) {
		font-size: 72px;
	}
}

.op_section_about h2 > span:nth-child(3) {
	height: 1px;
	width: 100%;
	margin-bottom: 18px;
	display: block;
}

.op_section_about h2 > span:nth-child(4) {
	font-size: 32px;
	line-height: 1.1;
	font-weight: 300;
	display: block;
}

@media (max-width: 767px) {
	.op_section_about h2 > span:nth-child(4) {
		font-size: 24px;
		line-height: 1.2;
	}
}

@media (max-width: 567px) {
	.op_section_about h2 > span:nth-child(4) {
		max-width: 240px;
	}
}


/*=========================================================================
INFO
==========================================================================*/

.op_section_info {
	background-color: #e2a9b1;
	padding-top: 220px;
	padding-bottom: 220px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media (max-width: 1067px) {
	.op_section_info {
		padding-top: 280px;
		padding-bottom: 280px;
	}
}

@media (max-width: 767px) {
	.op_section_info {
		padding-top: 200px;
		padding-bottom: 200px;
	}
}

@media (max-width: 567px) {
	.op_section_info {
		padding-top: 200px;
		padding-bottom: 200px;
	}
}


.info_section_one {
	max-width: 660px;
	margin-left: auto;
}

@media (max-width: 1067px) {
	.info_section_one {
		max-width: 66%;
	}
}

@media (max-width: 867px) {
	.info_section_one {
		max-width: 88%;
	}
}

@media (max-width: 567px) {
	.info_section_one {
		max-width: 100%;
	}
}

.info_section_one h2 {
	font-size: 60px;
	font-weight: 300;
	color: #000000;
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.info_section_one h2 {
		font-size: 48px;
	}
}

@media (max-width: 567px) {
	.info_section_one h2 {
		font-size: 28px;
		font-weight: 600;
	}
}

.info_section_one h3 {
	text-transform: capitalize;
	font-size: 28px;
	font-weight: 600;
	margin-top: 48px;
	display: block;
	margin-bottom: 12px;
}

@media (max-width: 567px) {
	.info_section_one h3 {
		font-size: 24px;
	}
}

.info_buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 320px;
}

.info_buttons > a,
.info_buttons > button {
	text-align: center;
	background-color: #000000;
	padding: 20px 30px;
	color: #FFFFFF;
	border: 2px solid #000000;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.info_buttons > a:hover,
.info_buttons > button:hover {
	background-color: #FFFFFF;
	color: #000000;
	border-color: #000000;
	transition: 0.35s;
	cursor: pointer;
}

.info_buttons > a:nth-child(2) {
	background-color: rgba(0,0,0,0);
	color: #000000;
	border-color: #000000;
}

.info_buttons > a:nth-child(2):hover {
	background-color: #FFFFFF;
	color: #000000;
	border-color: #000000;
	transition: 0.35s;
}

.info_subscribe_text {
	font-size: 17px;
}

/*=========================================================================
FOOTER
==========================================================================*/

footer .op_tile > h3 {
	margin-bottom: 32px;
}

footer .op_tile > h3 > span:nth-child(1) {
	font-size: 32px;
	font-weight: 600;
	display: block;
}

footer .op_tile > h3 > span:nth-child(2) {
	display: block;
	height: 1px;
	width: 100%;
}

footer .op_tile > h3 > span:nth-child(3) {
	display: block;
	font-weight: 30;
	font-size: 14px;
}


/*=========================================================================
SLANT SECTIONS
==========================================================================*/

.slant-section-one {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
  	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
  	margin-bottom: -10vw;
  	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 1067px) {
	.slant-section-one {
		margin-bottom: -20vw;
	}
}

@media (max-width: 567px) {
	.slant-section-one {
		margin-bottom: -30vw;
	}
}

.slant-section-two {
	clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  	-webkit-clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
  	margin-top: -10vw;
}

@media (max-width: 1067px) {
	.slant-section-two {
		margin-top: -20vw;
	}
}

@media (max-width: 567px) {
	.slant-section-two {
		margin-top: -30vw;
	}
}



/*=========================================================================
SUN LOGO
==========================================================================*/

.sun-logo {
	display: block;
	max-width: 600px;
	position: absolute;
	top: -300px;
	right: -100px;
}

@media (max-width: 767px) {
	.sun-logo {
		display: block;
		max-width: 400px;
		position: absolute;
		top: -200px;
		right: -100px;
	}
}

@media (max-width: 567px) {
	.sun-logo {
		display: block;
		max-width: 350px;
		position: absolute;
		top: -200px;
		right: -100px;
	}
}

#about {
	position: relative;
}

#about,
#about .op_layout_container {
	overflow: hidden;
}

/*.sun-logo {
	display: none !important;
}*/

/*=========================================================================
SUBSCRIBE
==========================================================================*/

#subscribeForm {
	overflow: hidden;
	border: 2px solid rgba(0,0,0,0);
	border-radius: 20px;
	max-height: 0;
	width: 400px;
	transition: 0.2s;
}

#subscribeForm.showit {
	max-height: initial;
	transitino: 0.5s;
	border: 2px solid #EEEEEE;
}

#btnWrapper {
	overflow: hidden;
}

#btnWrapper.hideit {
	max-height: 0;

}

