* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@keyframes fadein {
	from {
		opacity: 0;
		-webkit-filter: blur(50px);
		filter: blur(50px);
	}
	to {
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}

a {
	text-decoration: none;
	transition-duration: 0.4s;
	color: rgba(191, 145, 64, 1);
}

a:hover {
	color: rgba(212,182,128,1);
}

body {
	background: #1a1409;
	color: #fff;
	font-family: 'PT Serif', serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
	animation: fadein 1s;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 100;
}

h1 {
	color: #fff;
	font-size: 96px;
	letter-spacing: -2px;
	line-height: 1.2;
	text-shadow: 0px 2px 2px rgb(0 0 0 / 25%);
	text-transform: none;
}

h2 {
	color: rgba(191,145,64,1);
	font-size: 56px;
	line-height: 1.25;
	text-transform: uppercase;
}

h3 {
	margin-bottom: 0.5em;
	color: rgba(191,145,64,1);
	font-size: 56px;
	line-height: 1;
	text-align: left;
}

h4 {
	color: #fff;
	position: relative;
	padding: 0.25em 0 0.25em 1em;
	font-size: 25px;
	font-style: italic;
	line-height: 1.6;
	text-align: left;
}

hr {
	border-color: rgba(255,255,255,0.5)
}

img {
	max-width: 100%;
}

li {
	list-style: none;
}

p {
	margin-bottom: 2.5rem; 
	color: #fff;
	letter-spacing: inherit;
}

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

header,
section {
	position: relative;
	z-index: 1;
}

/* Shared Classes */
.hidden {
	display: none;
}

.flexit-container {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: flex-start;
}

.addbutton {
	display: inline-block;
	position: relative;
	margin: 0 auto 40px;
	padding: 9px 10px 9px;
	background: #fff;
	border: 1px solid #fff;
	outline: 0;
	cursor: pointer;
	color: #111;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.25;
	text-align: center;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

.addbutton.rounded {
	border-radius: 21px;
	line-height: 36px;
}

.addbutton.gold {
	padding: 0 20px;
	background: transparent;
	border: 1px solid #bf9140;
	color: #bf9140;
}

.wp-block-button__link {
	color: inherit;
	background-color: inherit;
	border-radius: inherit;
	font-size: inherit;
	padding: inherit;
}

.wp-block-buttons .wp-block-button {
	margin: 0 auto 40px;
}

ul#menu-main-menu li a {
	padding: 21px 0 15px;
}

/* BEGIN: Section - Intro */
.section-intro {
	position: relative;
	height: 100vh;
	overflow: hidden;
	text-align: center;
}

.section-intro .section-wrapper:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	background-image: -webkit-linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
	background-image: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
}

.section-intro .section-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.section-intro .background {
	position: relative;
	top: -10%;
	height: 110%;
	background: url('images/studio-images/background_section-intro.webp') no-repeat center center / cover #000;
	z-index: -2;
	transition: opacity .2s ease-out;
	animation: fadein 1.2s;
}

.section-intro .content-container {
	height: 100%;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.section-intro p {
	color: #fff;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.65;
	text-shadow: 0px 2px 2px rgb(0 0 0 / 25%);
}

/* BEGIN: Section - Studio Views */
.title-section,
.sub-footer {
	width: 100%;
	padding: 5rem 20%;
	background: #1a1409;
	text-align: center;
}

.studio-view {
	background: #fff;
	overflow: hidden;
}

.studio-view .section-wrapper {
	width: 100%;
	height: 100vh;
}

.studio-view .active {
	
}

.image-container {
	display: flex;
	width: 100%;
	height: 100vh;
//	padding-bottom: 4rem;
	align-items: flex-end;
}

.image-container.right {
	justify-content: flex-end;
}

.image-container img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	flex-basis: 100%;
	object-fit: cover;
	height: 100%;
	transform: scale(1.2);
}

.image-container img.animateStart {
	opacity: 1 !important;
}

.image-container img.active {
	opacity: 1;
	visibility: visible !important;
}

.studio-view .content-container {
	width: 50%;
	margin: 1rem;
	position: fixed;
	bottom: 0;
	padding: 2rem;
	background-color: #1a1409;
	box-shadow: 0 0 4px rgb(0 0 0 / 25%);
}

.panel-content {
	position: relative;
}

.panel-content h4 + h4,
.panel-content h4 + p {
	margin-top: 1.25rem;
}

.panel-content h4:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 0px;
	right: auto;
	bottom: 0px;
	width: 5px;
	background-color: rgba(109,83,37,0.9);
	z-index: 1;
}

.sub-footer {
//	margin-bottom: 400px;
	box-shadow: 0 0.375rem 0.375rem rgb(0 0 0 / 20%);
}

.sub-footer h2 {
	margin-bottom: 1.25rem;
	letter-spacing: -0.025em;
	text-transform: none;
}

.studio-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding-bottom: 140px;
	z-index: 0;
	text-align: center;
}

.studio-footer img {
	display: block;
	margin: 10% auto;
}

.studio-footer .site-info {
	padding: 10px 15px;
	text-align: right;
}

.studio-footer .site-info-wrapper {
	justify-content: flex-end;
}

.studio-footer .site-info-wrapper a {
	display: inline-block;
	padding: 0 10px;
	color: #ffffffd9;
	font-size: 12px;
	font-weight: 300;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 768px) {

	a:hover,
	.addbutton:hover {
		opacity: 0.7;
	}
	
	h2 a, h2 a:hover {
		opacity: 1;
		color: rgba(191,145,64,1);
		text-decoration: none;
	}

	.addbutton:hover {
		color: #111;
		text-decoration: none;
	}

	.addbutton.gold:hover {
		opacity: 1;
		background: #bf9140;
		border: 1px solid #bf9140;
		color: #000;
	}
	
}

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

	h1 {
		font-size: 51px;
	}

	h2, h3 {
		font-size: 34px;
	}

	h4 {
		font-size: 20px;
	}

	body {
		font-size: 16px;
		line-height: 1.5;
	}
	
	.title-section {
		padding: 2.5rem 12.5%;
	}
	
	.image-container {
		padding: 4rem 0rem;
	}

	.studio-view .content-container {
		width: 60%;
	}
	
	.studio-footer {
		padding-bottom: 70px;
	}
}