@font-face {
  font-family: Jost;
  src: url('Jost-VariableFont_wght.ttf');
}
@font-face {
  font-family: Geist;
  src: url('Geist-VariableFont_wght.ttf');
}
* {
	box-sizing: border-box;
}
.jost-font {
	font-family: "Jost", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}
.geist-font {
	font-family: "Geist", serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}
body {
	margin: 0;
	font-family: "Geist", serif;
	font-size: 1em;
	color: #000;
	min-height: 100vh;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
a {
	text-decoration: none;
	color: #000;
	border-bottom: 2px solid;
}
a:hover, a:active {
	border-bottom: 2px dashed;
}
b {
	font-weight: 500;
}

#color div {
	display: inline-block;
	float: right;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	cursor: pointer;
	margin-left: 5px;
}
.white { background: linear-gradient(-45deg, #fff 50%, #000 50%); }
.berry { background: linear-gradient(-45deg, #3b1829 50%, #ecbec6 50%); }
.sky { background: linear-gradient(-45deg, #d4e6f6 50%, #1b244f 50%); }
.mud { background: linear-gradient(-45deg, #98793a 50%, #f9f2d1 50%); }
.peach { background: linear-gradient(-45deg, #dec1bd 50%, #c2662e 50%); }

#intro {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #fff;
	z-index: 1;
}

#intro div {
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

#intro .logo {
	font-size: 4em;
}

#intro .studio {
	display: block;
	position: absolute;
	width: 100%;
	bottom: 20px;
	text-align: center;
	font-size: 1.5em;
}

header {
	width: 100%;
	max-width: 800px;
	margin: 0px auto;
	background-color: #fff;
}

#menu {
	padding: 20px 0px;
	text-align: center;
}

#menu .logo {
	display: inline-block;
	margin: 0px auto;
}

.logo {
	font-size: 4em;
	font-family: "Jost", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	text-transform: uppercase;
	cursor: default;
}

.logo span {
	display: block;
	margin: 0px;
	line-height: 0.95;
}

main {
	margin: 0px 20px;
	flex: 1;
}

#content {
	display: block;
	margin: 10px auto;
	max-width: 800px;
}

#content p {
	margin: 0px;
	padding: 60px 0px 0px;
	font-weight: 500;
	line-height: 0.95;
	font-size: 3em;
}

#content p.medium {
	font-weight: normal;
	font-size: 1em;
	line-height: 1.2;
}

#calendar {
	display: none;
	position: relative;
	width: 100%;
	height: 700px;
}

#calendar iframe {
	width: 100%;
	height: 700px;
}

#calendar div {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding-left: 18px;
	background-color: #fff;
	height: 60px;
	cursor: pointer;
}

footer {
	display: block;
	width: 100%;
	background-color: #fff;
	margin-top: 80px;
}

#contact {
	display: flex;
	margin: 20px auto;
	max-width: 1000px;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0px 20px;
}

#contact div {
	display: inline-block;
	width: 30%;
	float: left;
	margin-top: auto;
	min-width: 200px;
	margin-bottom: 20px;
}

#contact div:nth-last-child(1) {
	text-align: right;
}

#contact a {
	border-bottom: 0px;
}

.carousel {
	margin-bottom: 15px;
}

.carousel img {
	display: block;
	height: 700px;
	margin-right: 20px;
}

@media (max-width: 600px) {
	.logo, #intro .logo {
		font-size: 21vw;
	}
	.carousel img {
		height: 400px;
		margin-right: 10px;
	}
	.carousel {
		margin-bottom: 8px;
	}
	main {
		margin: 0px 10px;
	}
	#contact {
		padding: 0px 10px;
	}
	#contact div:nth-last-child(1) {
		text-align: left;
	}
}

@media (min-width: 1000px){
	#contact {
		width: 100%;
	}
}

@media (min-width: 1200px){
	main {
		width: 1000px;
		margin: 0px auto;
	}
	#contact {
		width: 1000px;
		margin: 0px auto;
	}
}

@media (min-width: 1600px){
	.carousel img {
		height: 900px;
	}
}