@charset "utf-8";
/*@font-face {
font-family: "ivyora-display", serif;
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "ivyora-display", serif;
font-weight: 500;
font-style: italic;
}

@font-face{
font-family: "owners", sans-serif;
font-weight: 700;
font-style: normal;
}*/

body {
	margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.menu {
	margin: 0;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100vw;
	justify-content: space-around;
	background: white;
	padding: 1%;
	padding-top: 1.5%;
	padding-bottom: 1.5%;
	list-style: none;
	font-family: "ivyora-display", serif;
	font-weight: 500;
	font-style: italic;
	font-size: clamp(1rem, 2vw, 1.5rem);
	color: #231F20;
	z-index: 20;
}

a {
  color: #231F20;
  text-decoration: none;
}
a:hover {
  color: #5b79ff;
}

/* Initial state */
.page {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Enter animation */
.page.enter {
  opacity: 1;
  transform: translateY(0);
}

/* Leave animation */
.page.leave {
  opacity: 0;
  transform: translateY(-30px);
}

main{
	width: 100vw;
	height: 100vh;
}

#tabs{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: nowrap;
	width: 100%;
	z-index: 2;
}


#tabs .motion{
	width: 24%;
	height: auto;
	transform: rotate(10deg);
	position: fixed;
	top: 12%;
	left: -0%
}

#tabs .branding{
	position: fixed;
	top: 12%;
	right: 4%;
   width: 12%;
   height: auto;
	transition: 0.4s ease;
	transform: rotate(-5deg);
}
#tabs .branding:hover{
	transform: rotate(15deg);
	transition: 0.4s ease;
}

#tabs .type{
	position: fixed;
	top: 25%;
	right: 12%;
   width: 9%;
   height: auto;
	transition: 0.4s ease;
	transform: rotate(5deg);
}

#tabs .type:hover{
	transform: rotate(15deg);
	transition: 0.4s ease;
}

#intro{
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: flex-end;
	padding: 2rem;;
	flex-wrap: wrap;
	position: fixed;
	bottom: 0%;
	z-index: 1;
}

#intro img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
}

#intro img:hover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
	opacity: 80%;
	transform: scale(110%);
}

#intro a{
   width: 32%;
  height: 25rem;
}


@media (max-width : 500px){
#tabs .motion{
	width: 40%;
	height: auto;
	top: 7%;
	left: -3%;
}
#tabs .branding{
	position: fixed;
	top: 8%;
	right: 8%;
   width: 25%;
   height: auto;
}

#tabs .type{
	position: fixed;
	top: 18%;
	right: 20%;
   width: 20%;
   height: auto;
}

#intro{
    display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: flex-start;
	padding: 2rem;
	gap: 2rem;
	flex-wrap: wrap;
	position: relative;
	top: 30%;
	z-index: 1;
}
#intro a{
   width: 100%;
  height: 20rem;
}
}


@media (min-width: 501px) and (max-width: 1000px){
#tabs .motion{
	width: 34%;
	height: auto;
}
#tabs .branding{
	position: fixed;
	top: 12%;
	right: 4%;
   width: 18%;
   height: auto;
}

#tabs .type{
	position: fixed;
	top: 26%;
	right: 12%;
   width: 14%;
   height: auto;
}
#intro{
    display: flex;
	flex-direction: row;
	justify-content: space-center;
	align-content: center;
	padding: 2rem;
	flex-wrap: wrap;
}
#intro a{
   width: 32%;
  height: 20rem;
}
}
