/*mobile view*/
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
* ::-webkit-scrollbar {
	display: none;
}
body {
	height: 100vh;
}

.universal_wrapper {
	width: 100%;
	height: 100vh;
	background-color: rgb(164, 163, 171);
	overflow-x: hidden;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
}

.header {
	z-index: 100;
	position: sticky;
	top: 0px;
	width: 100%;
	max-height: 50px;
	background-color: rgb(164, 163, 171);
	display: grid;
	grid-template-columns: minmax(210px, 1fr) 1fr minmax(50px, 1fr);
	align-content: start;
	justify-items: left;
	margin-top: 10px;
	padding: 0 8vw 0 8vw;
}
.header a {
	text-decoration: none;
	font-size: 2.2em;
	color: rgb(94, 93, 93);
	grid-column-start: 1;
}
.headertitle::first-letter {
	color: rgb(182, 42, 7);
}
.subtitle {
	position: relative;
	display: block;
	top: 0px;
	grid-column-start: 1;
}

.subtitle p {
	font-size: 1.2em;
	color: rgb(101, 100, 101);
}

.nav_menu_container {
	height: 20px;
	width: 20px;
	grid-column-start: 3;
	justify-self: right;
	align-self: center;
	cursor: pointer;
}

.nav_menu_bar1 {
	height: 2px;
	width: 20px;
	background-color: rgb(94, 93, 93);
	margin-bottom: 4px;
	transition: transform 0.3s ease-in;
}

.nav_menu_bar2 {
	height: 2px;
	width: 20px;
	background-color: rgb(94, 93, 93);
	margin-bottom: 4px;
	transition: transform 0.3s ease-in;
}

.nav_menu_bar3 {
	position: absolute;
	height: 300px;
	top: 45px;
	right: 8vw;
	background-color: rgb(94, 93, 93);
	transform: translate(0px, -17px) scale(0.14, 0.0075);
	transform-origin: top right;
	transition: transform 0.3s ease-in;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	overflow: hidden;
	pointer-events: none;
	z-index: 100;
	opacity: 1;
}

.nav_menu_bar1.open {
	height: 2px;
	width: 20px;
	background-color: rgb(94, 93, 93);
	transform: translate(-2px, 6px) rotate(45deg);
	transition: transform 0.3s ease-in;
}

.nav_menu_bar2.open {
	height: 2px;
	width: 20px;
	background-color: rgb(94, 93, 93);
	transform: translate(-3px, 0px) rotate(-45deg);
	transition: transform 0.3s ease-in;
}

.nav_menu_bar3.open {
	pointer-events: initial;
	position: absolute;
	height: 300px;
	width: 160px;
	top: 40px;
	right: 8vw;
	background-color: rgba(100, 100, 100, 0.8);
	transition: transform 0.3s ease-in;
	transform: translate(13px, -0px) scale(1, 1);
	border-radius: 5px;
}

.nav_menu_bar3.open a {
	color: rgb(61, 60, 60);
}

.nav_menu_bar3.open a:last-child {
	color: rgb(136, 29, 2);
}

#nav_current {
	font-weight: bold;
	cursor: default;
}

#nav_current:hover {
	transform: scale(1, 1);
}

#nav_current-contact {
	font-weight: bold;
	cursor: default;
	color: rgb(136, 29, 2);
}

#nav_current-contact:hover {
	transform: scale(1, 1);
}

/*main page styles*/
.images_container {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	background-color: rgb(164, 163, 171);
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
	width: 100vw;
	height: auto;
}
.images_container img {
	margin: 50px 8vw 50px 8vw;
	height: 75vh;
	transition: all 0.2s ease-in-out;
}
.images_container img:hover {
	transform: scale(1.05);
	transition: all 0.3s ease-in-out;
}
/*red riding coat*/
.images_container :nth-child(1) {
	order: 2;
}
/*Everness coat*/
.images_container :nth-child(2) {
	order: 1;
}
/*wicked overcoat*/
.images_container :nth-child(3) {
	order: 3;
}
/*grey jecket*/
.images_container :nth-child(4) {
	order: 4;
	height: 70vh;
}
/*grey waistcoat*/
.images_container :nth-child(5) {
	order: 5;
	height: 60vh;
	margin-top: 6em;
}
/*brown jacket*/
.images_container :nth-child(6) {
	order: 6;
	margin-top: 5em;
}
/*red waistcoat*/
.images_container :nth-child(7) {
	order: 7;
	height: 60vh;
}
/*wicked waistcoat*/
.images_container :nth-child(8) {
	order: 8;
}
/*silver waistcoat*/
.images_container :nth-child(9) {
	order: 9;
	height: 60vh;
}
/*gold and black frockcoat*/
.images_container :nth-child(10) {
	order: 10;
}
/*leather coats*/
.images_container :nth-child(11) {
	order: 11;
	height: 65vh;
}
/*livery*/
.images_container :nth-child(12) {
	order: 12;
	height: 75vh;
	margin-bottom: 2em;
}

/*contact page styles*/
.contact_container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 10vh 1fr;
	overflow-x: hidden;
}

.contact_box {
	max-width: 25vw;
	min-width: 300px;
	height: 100%;
	margin-left: 8vw;
	grid-column: 1 / span 3;
	grid-row: 2;
	display: Flex;
	flex-direction: column;
	align-items: left;
	background-color: rgb(164, 163, 171);
	border-style: none;
	color: rgb(52, 53, 53);
}

.contact_box p {
	font-size: 1.2em;
}

.contact_box input {
	background-color: rgb(164, 163, 171);
	border-radius: 10px;
	border: 2px solid rgb(53, 51, 51, 0.3);
	margin-bottom: 10px;
	padding-left: 8vw;
	width: 100%;
	height: 3em;
}

textarea {
	background-color: rgb(164, 163, 171);
	border-radius: 10px;
	height: 100px;
	width: 100%;
	border: 2px solid rgb(53, 51, 51, 0.3);
	padding: 5px 0px 0px 15px;
}
button {
	padding: 4px 0px 4px 0px;
	width: 50%;
	background-color: rgb(182, 42, 7);
	color: rgb(164, 163, 171);
	border-radius: 10px;
	border-color: rgb(53, 51, 51, 0.3);
	margin-top: 5px;
	font-size: 1em;
}

/*about page styles*/
.about_container {
	display: grid;
	grid-template-columns: 1fr 2fr 1.5fr 1fr;
	grid-template-rows: 10vh 1fr auto;
	overflow-x: hidden;
}

.about_text {
	grid-column: 1 / 4;
	grid-row-start: 2;
	margin-left: 2em;
	text-align: justify;
}

.about_text :first-child {
	padding-bottom: 1em;
	color: rgb(182, 42, 7);
}

.about_text p {
	font-size: 1em;
	color: rgb(37, 37, 37);
}

.about_text {
	grid-column: 1 / 5;
	grid-row: 2 / 3;
	margin-left: 2em;
	text-align: justify;
	padding-right: 30px;
}
.about_hero {
	display: none;
}

/*shows page styles*/
.shows_container {
	display: grid;
	grid-template-columns: 5vw 1fr 1fr auto 42vw;
	grid-template-rows: 10vh auto 1fr;
	overflow-x: hidden;
}

.shows_container a {
	color: rgb(37, 37, 37);
	font-size: 1em;
}

.shows_small_grid {
	grid-column-start: 1;
	grid-column-end: 6;
	grid-row-start: 2;
	display: grid;
	grid-template-columns: 4vw minmax(200px, 1fr) 4vw;
	grid-template-rows: auto, 1fr;
	padding-left: 4vw;
	padding-right: 4vw;
}

.side_text {
	grid-column-start: 2;
	grid-row: 1;
	text-align: left;
	padding-bottom: 3rem;
}

.shows_icon {
	display: block;
	background-color: rgb(182, 42, 7);
	max-width: 20vw;
	min-width: 100px;
	border-radius: 5px;
	display: flex;
	place-content: center;
	padding: 0.5rem;
	margin-top: 1.5rem;
}

.shows_icon > img {
	width: 100%;
}

.small_shows_title {
	margin-bottom: 2rem;
}

.small_shows_title h3 {
	font-weight: bold;
	color: rgb(101, 100, 101);
}

.shows_list1,
.shows_list2,
.shows_list3 {
	grid-column-start: 2;
	grid-row-start: 3;
	display: flex;
	flex-direction: column;
	align-items: left;
}

.shows_list1 ul,
.shows_list2 ul,
.shows_list3 ul {
	display: flex;
	flex-direction: column-reverse;
	flex-wrap: wrap;
}

.shows_list1 li,
.shows_list2 li,
.shows_list3 li {
	list-style: none;
	white-space: nowrap;
	color: rgb(52, 53, 53);
	font-weight: bold;
}

.shows_list1 {
	grid-row-start: 2;
}

.shows_list2 {
	grid-row-start: 3;
}

.shows_list3 {
	grid-row-start: 4;
}

.side_title {
	display: none;
}

/*tablet view*/
@media screen and (min-width: 600px) {
	.contact_box {
		margin: 0px auto 0px auto;
		grid-column: 1 / span 4;
	}
	/*tablet view shows page stlyes*/
	.shows_container {
		display: grid;
		grid-template-columns: 5vw 1fr 1fr auto 42vw;
		grid-template-rows: 10vh auto 1fr;
		overflow-x: hidden;
	}

	.shows_container a {
		color: rgb(37, 37, 37);
		font-size: 1em;
	}

	.shows_small_grid {
		grid-column-start: 1;
		grid-column-end: 6;
		grid-row-start: 2;
		display: grid;
		grid-template-columns:
			4vw minmax(200px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr)
			4vw;
		grid-template-rows: auto, 1fr;
		padding: 0;
	}
	.shows_small_grid > * {
		padding-left: 4vw;
		padding-right: 4vw;
	}
	.shows_list1,
	.shows_list2,
	.shows_list3 {
		grid-row-start: 3;
		display: flex;
		flex-direction: column;
		align-items: left;
	}
	.shows_list1 a,
	.shows_list2 a,
	.shows_list3 a {
		white-space: nowrap;
		color: rgb(52, 53, 53);
		font-weight: bold;
	}
	.shows_icon {
		display: block;
		background-color: rgb(182, 42, 7);
		max-width: 100px;
		border-radius: 5px;
		display: flex;
		place-content: center;
		padding: 0.5rem;
	}
	.shows_icon > img {
		width: 100%;
	}
	.small_shows_title {
		margin-bottom: 2rem;
	}
	.small_shows_title h3 {
		font-weight: bold;
		color: rgb(101, 100, 101);
	}
	.shows_list1 {
		grid-column-start: 2;
	}
	.shows_list2 {
		grid-column-start: 3;
	}
	.shows_list3 {
		grid-column-start: 4;
	}

	.side_text {
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row: 1;
		text-align: left;
		padding-bottom: 3rem;
		padding-right: 17vw;
	}
}
/*wide view*/
@media screen and (min-width: 800px) {
	* ::-webkit-scrollbar {
		display: none;
	}

	* {
		-ms-overflow-style: none;
	}
	.nav_menu_bar1,
	.nav_menu_bar2 {
		opacity: 0;
	}
	.nav_menu_bar3 {
		overflow: visible;
		position: absolute;
		height: 40px;
		min-width: 35vw;
		top: 3px;
		right: 8vw;
		align-items: bottom;
		justify-content: space-between;
		background-color: rgb(164, 163, 171);
		transition: transform 0.05s ease-in;
		transform: translate(0px, -0px) scale(1, 1);
		opacity: 0.9;
		display: flex;
		flex-direction: row;
		pointer-events: all;
	}

	.nav_menu_bar3 a {
		font-size: 1.1em;
		color: rgb(101, 100, 101);
		transition: all 0.5s ease-in-out;
	}

	.nav_menu_bar3.open {
		overflow: visible;
		position: absolute;
		height: 40px;
		width: 30vw;
		top: 0px;
		right: 5vw;
		align-items: bottom;
		justify-content: space-between;
		background-color: rgb(164, 163, 171);
		transition: transform 0.05s ease-in;
		transform: translate(0px, -0px) scale(1, 1);
		opacity: 0.9;
		display: flex;
		flex-direction: row;
		pointer-events: all;
	}

	#contact {
		color: rgb(182, 42, 7);
		font-weight: 500;
	}

	#nav_current-contact {
		font-weight: bold;
		cursor: default;
		color: rgb(182, 42, 7);
	}

	.nav_menu_bar3 a:hover {
		transform: scale(1.2, 1.2);
		transition: all 0.2s ease-in-out;
	}

	.shows_container a {
		font-size: 1em;
	}
	/*wide view main page style*/
	.images_container :nth-child(2) {
		order: 2;
	}
	.images_container :nth-child(3) {
		order: 3;
	}
	.images_container img {
		margin-right: 2em;
	}
	/*wide view about page style*/
	.about_text {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		margin-left: 8vw;
		padding-right: 30px;
	}
	.about_text a {
		font-size: 1em;
		color: rgb(37, 37, 37);
	}

	.about_hero {
		display: block;
		grid-column: 3;
		grid-row: 2 / 3;
		justify-self: center;
		margin-left: 10%;
	}

	.about_hero img {
		height: 70vh;
	}

	/*wide view contact page style*/
	.contact_box H2 {
		font-size: 3em;
	}
	.contact_box p {
		font-size: 1.5em;
	}
	.contact_box {
		grid-column: 1 / span 2;
	}
	.side_title {
		display: block;
		grid-column: 5;
		grid-row: 1;
		color: rgb(130, 129, 134);
		font-size: 6em;
		align-self: end;
		justify-self: right;
		writing-mode: vertical-rl;
		text-orientation: sideways;
		transform-origin: bottom;
		transform: rotate(-180deg);
		margin-right: 4vw;
	}
}
footer {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgb(100, 100, 100);
	background-color: rgb(164, 163, 171);
}

Footer p {
	font-size: 0.8em;
}
