:root {
  --white: #FFFFFF;
  --text: #573D3C;
  --accent: #A36360;
  --panel: #F2E4E4;
  --dark: #544B4F;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--white);
  font-family: "Fira Sans", sans-serif;
  color: var(--text);
}

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: Broadway, serif;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

h3 {
  font-size: 1.25rem;
  font-weight: bold;
}

h4 {
  font-family: Broadway, serif;
  font-size: 1.5rem;
}

h5 {
  font-family: "Fira Sans Light", sans-serif;
  font-size: 1.5rem;
  font-style: italic;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: 0.3s ease;
}

a:hover {
	color: var(--text);
}

@media (max-width: 788px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  p  { font-size: 0.9rem; }

  .page-container { width: 95%; margin: 20px auto; padding: 15px; }
  .image-wrapper { flex: 1 1 45%; }
}

.container {
	background-color: var(--panel);
	width: 80%;
	margin: 2.5% auto; 
	border-radius: 10px; 
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px;
	box-shadow: inset 0 5px 10px rgba(0,0,0,0.1);
}

.page-title {
	width: 100%;
}

.subtitle {
	width: 100%;
	text-align: center;
}

	/* LOGO BAR */ 

.logo-bar {
    width: 100%;
    height: 3vw;
	padding: 0.5vw 0;
    display: flex;
	align-items: center;
	justify-content: space-between;
	
	background-color: var(--panel);
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}   

.logo-bar a {
	text-decoration: none;
    color: inherit;
	transition: color 0.5s;
}

.logo-bar a:hover {
	color: var(--accent);
}

.logo {
	width: 50%;
	display: flex; 
	align-items: center; 
	white-space: nowrap;
	text-align: center;
}

.logo a {
	font-size: 2rem;
    font-family: Broadway;
	font-weight: normal;
	color: var(--text);
    text-align: center;
	margin: auto;
	transition: color 0.5s;
}

.logo a:hover {
	color: var(--accent);
}

.divider {
	font-size: 2vw;
    color: var(--text); 
}

.nav {
   	width: 50%;
	float: right;
    color: var(--text);
    display: flex;
    align-items: center; 
    justify-content: center;
	box-sizing: border-box;
}

.nav a {
	font-size: 2rem;
	margin: auto 20px;
}


	/* FOOTER */

.footer {
   	display: flex;
	justify-content: center;
    align-items: center;
    background-color: var(--text);
    width: 100%;
    height: 60px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 0px;
    
}

.footer-icon {
	display: flex;
	width: 50px;
    height: 50px;
	transition: opacity 0.5s;
	color: var(--white); 
    margin: 0 10px;
	align-items: center; 
    justify-content: center;
}

.footer-icon:hover {
	opacity: 0.75;
}


	/* ARTICLES */

article {
    background-color: var(--white);
    width: calc(20% - 5%);
	height: auto;
	margin-bottom: 2.5%;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

article img {
    width: 100%;
	height: 82%;
	margin: 0;
    float: left;
    display: inline-block;
    object-fit: cover;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

article .content {
	height: auto;
	padding: 10px;
	margin: auto 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
}

article .title {
    font-family: "Fira Sans", sans-serif;
	font-weight: bold;
    font-size: 1rem;
    padding-top: 5px;
    color: var(--text);
    vertical-align: text-top;
    
}

article .stars {
	height: 30px
}

.rating {
	color: var(--accent);
	fill: var(--accent);
	height: 20px;
	width: 20px;
	padding-top: 5px;
}


	/* ABOUT */

.about-text {
	background-color: var(--white);
	border-radius: 10px;
    width: 100%;
	margin: 2.5%;
	padding: 2.5%;
	word-wrap: break-word;
}


	/* REVIEWS */

.review-title {
	height: 100px;
    width: 100%;
	line-height: 30px;
	vertical-align: top;
    margin-bottom: 20px;
	color: var(--text);   	
    text-align: left;
    margin-left: 2.5%;
	margin-top: 20px;
}

.review-title h5 {
	font-size: 32px;
	margin: 0px;
}

.review-content {
	width: 35%;
	margin: 2.5%;
  	display: flex;
  	flex-wrap: wrap;
}

.review-img {
    box-sizing: border-box;
	align-self: flex-start;
}

.review img {
	height: auto;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 2px 4px #111111;
}

.review-text {
    width: 57.5%;
	height: inherit;
	margin-right: 2.5%;
	margin-top: 2.5%;
	margin-bottom: 2.5%;
    padding: 20px;
    box-sizing: border-box;
	text-align: left;
	background-color: var(--white);
	border-radius: 10px;
	float: left;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.review-text h2 {
	
}

.review-text p {
	font-family: 'Fira Sans', sans-serif;
	font-size: 18px;
}

.review-stars {
	height: 55px;
	width: 100%;
	margin: 10px;
	text-align: center;
}

.star {
	color: var(--accent);
	fill: var(--accent);
	height: 55px;
	width: 55px;
}

.additional-content {
	width: 100%;
  	height: auto;
	padding: 10px;
	background-color: var(--white);
	border-radius: 10px;
	line-height: 20px;		
}

.additional-content h3 {
	margin: 0px;
	color: var(--text);
	display: inline;
}

.additional-content p {
	margin: 0px;
	font-family: "Fira Sans", sans-serif;
	font-size: 16px;
	display: inline;
}

.additional-content h4 {
	margin: 0px;
	text-align: center;
	font-family: "Fira Sans", sans-serif;
	font-weight: bold;
	color: var(--text);
	font-size: 18px;
	line-height: 20px;
}

.additional-content a {
	margin: 0px;
	text-align: center;
	font-family: "Fira Sans", sans-serif;
	font-weight: bold;
	color: var(--text);
	font-size: 18px;
	line-height: 20px;
	transition: color 0.5s;
}

.additional-content a:hover {
	color: var(--accent);
}

.additional-content h4 {
	transition: color 0.5s;
}

.additional-content h4:hover {
	color: var(--accent);
}


.button-container {
	width: 100%;
	display: flex;
  	justify-content: space-between;
}

button {
    margin: 2.5%;
    height: 60px;
    width: 150px;
	border-radius: 35px;
    background-color: var(--text);
    border: none;
    cursor: pointer;
    transition: background-color 0.5s;
	
	font-family: "Fira Sans", sans-serif;
    font-weight: bold;
	font-size: 20px;
	vertical-align: middle;
	color: var(--white);
	align-content: center;
}

button:hover {
	background-color: var(--accent);
}

.pointer {
	height: 25px;
	width: 25px;
	vertical-align: middle;
}


	/* MOBILE */


@media (max-width : 788px ){
	
	.review-title {
		height: 70px;
		margin-top: 10px;
	}
	
	.review-title h1 {
		font-size: 32px;
		margin: 15px 0;
		text-align: center;
	}
	
	.review-title h5 {
		font-size: 24px;
		text-align: center;
	}
	
	.review-stars {
		height: 50px;
		width: 96%;
		text-align: center;
	}
	
	.star {
		color: var(--accent);
		fill: var(--accent);
		height: 45px;
		width: 45px;
	}
	
	.review-content {
		display: table-column;
		width: 95%;
		margin: 2.5%;
	}
	
	.additional-content {
		width: 96%;
	}
	
	.review-text {
		width: 95%;
		margin: 2.5%;
	}
	
	.review-text h2 {
		margin: 5px 0;
		font-size: 20px;
	}
	
	.review-text p {
		font-size: 16px;
	}
	
	button {
		margin: 2.5%;
		height: 50px;
		width: 125px;
		border-radius: 25px;
		font-size: 18px;
		vertical-align: middle;
	}
	
	.pointer {
		height: 20px;
		width: 20px;
	}
}


	/* CONTACT */

.contact {
	background-color: #EEEEEE;
    width: 2000px;
    margin-right: 120px;
    margin-top: 35px;
    border-radius: 10px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.contact-title {
    height: 35px;
    width: 100%;
    text-align: right;
	line-height: 30px;
	vertical-align: top;
    padding-left: 35px;
    margin-right: 40px;
    margin-bottom: 10px;
}

.form {
    background-color: var(--white);
    border-radius: 10px;
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.contact input[type=text], [type=email-address], textarea {
  	width: 100%;
  	padding: 10px;
  	border: 0px;
  	border-radius: 20px;
  	box-sizing: border-box;
  	margin-top: 6px;
  	margin-bottom: 15px;
	font-family: "Fira Sans Light", sans-serif;
	background-color: #EEEEEE;
}

.contact label {
    font-family: "Fira Sans Light", sans-serif;
    font-weight: bold;	
}

.contact input[type=submit] {
	height: 60px;
	width: 120px;
	padding: 20px;
  	border: none;
  	border-radius: 30px;
  	background-color: #BFBA71;
  	color: black;
	font-family: 'Fira Sans', sans-serif;
	font-size: 20px;
	cursor: pointer;
	transition: background-color 0.5s;
}

.contact input[type=submit]:hover {
  	background-color: #8C8853;
}





	/* HOME PAGE MEDIA */


.reviews {
    background-color: var(--panel);
    width: 80%;
    float: left;
	margin: 0 10%;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: center;
	gap: 10px;
	height: auto;
	padding: 30px;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.reviews-title {
	height: auto;
    width: 100%;
    vertical-align: top;
    color: var(--text);
    text-align: center;
}


	/* FEATURED POSTS */



.featured {
    background-color: var(--panel);
    width: 80%;
    float: left;
	margin: 2.5% 10%;
	padding-bottom: 30px;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: center;
	gap: 10px;
	height: auto;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.featured-post {
    background-color: var(--white);
    width: 100%;
	height: 300px;
    margin: 10px 50px;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.featured-post img {
    height: 300px;
	max-width: 25%;
    float: left;
    display: inline-block;
    object-fit: fill;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.post-content {
	height: 300px;
	margin: 10px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.post-title {
	color: var(--text);
	font-family: Broadway;
	font-size: 24px;
	padding: 10px;
}

.post-title a {
	font-size: 24px;
	margin: none;
	transition: color 0.75s;
}

.post-text {
	padding: 10px;
	font-family: "Fira Sans", sans-serif;
	font-size: 16px;
}

.featured-post a {
	transition: color 0.5s;
}
.featured-post a:hover {
	color: var(--accent);
}








	/* MOBILE */


.mobile-menu {
	display: none;
}


.menu-toggle {
  	display: none;
}


@media (max-width : 788px ){
	
	.logo-bar {
		height: 10vw;
		
	}
	
	.logo {
		width: 70%;
		height: 100%;
		display: flex;
		flex-direction: row;
		align-items: center;
    	justify-content: center;
		text-align: center;
		padding-top: 0;
	}
	
	.logo img {
		max-height: 40px;
		margin: 0;
		padding: 0;
		margin-right: 10px;
	}
	
	.logo h1 {
		display: inline;
		line-height: 40px;
		font-size: 40px;
		font-family: Broadway;
		font-weight: normal;
		color: var(--text);
		text-align: center;
		transition: color 0.5s;
		align-self: center;
	}

	.logo h1:hover {
		color: var(--accent);
	}
	
	.divider {
		display: none;
	}
	
  	.nav {
    	display: none;
  	}
	
	.mobile-menu-icons {
  		display: flex;
  		align-items: center;
		margin: 25px;
	}
	
  	.menu-toggle {
    	display: block;
    	padding: 10px;
    	cursor: pointer;
  	}
	
	.menu-toggle, .mobile-search {
		transform: scale(1.5);
		padding-right: 20px;
	}

  	.mobile-menu {
		color: var(--text);
    	display: flex;
		align-items: center;
		justify-content: center;
		width: 30%;
  	}

  	.mobile-links {
  		display: none;
		position: absolute;
		top: 70px;
		right: 0;
		left: 0;
		z-index: 1;
  		padding: 10px;
		margin: 10px;
  		border-radius: 10px;
 		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
		background-color: var(--panel);  		
		
	}

	.mobile-links.show-links {
  		display: flex; 
		align-items: center;
		justify-content: space-around;
}

	.mobile-links a {
		font-family: "Fira Sans", sans-serif;
  		font-size: 20px;
		font-weight: bold;
  		color: var(--text);
  		padding: 10px;
  		text-align: center;
  		text-decoration: none;
		
	}
	
	
	.reviews article {
		width: 90%;
	}
	
	article .title {
		font-size: 24px;
	}
	
	article .more {
		font-size: 24px;
	}
	
	h2 {
		font-size: 32px;
	}
	
	article .content {

	}
	
	.featured-post {
    	width: 90%;
		height: auto;
		margin: 20px 0;
		border-radius: 10px;
		padding: none;
		display: flex;
		flex-direction: column;
	}
	
	.featured-post img {
		max-width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		object-fit: cover;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 0px;
		
	}
	
	.post-text {
		display: flex;
		flex-direction: column;
		padding: 10px;
		text-align: center;
	}
	
	.post-title {
		text-align: center;
		padding: 10px;
	}	
	
	.post-title a {
		font-size: 24px;
		margin: none;
	}	
	
	.featured-post p {
		font-size: 16px;
	}
	
	.featured-post a {
		font-size: 20px;
	}
	
}

#pagination button {
	margin: 0 5px;
	padding: 5px 12px;
	border: none;
	border-radius: 5px;
	background-color: var(--text);
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}

#pagination button:disabled {
	background-color: var(--accent);
	cursor: default;
}

@charset "utf-8";


/* ALL MEDIA PAGE */



.media-container {
	background-color: var(--panel);
    width: 80%;
    float: none;
	margin: 2.5% 10%;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: space-between;
	height: auto;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.media-title {
	height: 35px;
    width: 100%;
    text-align: left;
	line-height: 30px;
	vertical-align: top;
    margin-left: 30px;
    margin-bottom: 10px;
	color: var(--text);
}

.media-sorting {
	width: 100%;
	text-align: left;
	line-height: 20px;
	margin-left: 30px;
	margin-bottom: 10px;
	margin-top: 50px;
}

.media-sorting h2 {
    font-family: "Fira Sans", sans-serif;
    font-size: 18px;
    display: inline;
	padding-right: 10px;
}

.media-sorting h3 {
    font-family: "Fira Sans", sans-serif;
    font-size: 18px;
	color: var(--dark);
    text-transform: uppercase;
    display: inline;
    padding-right: 5px;
}


.image-container {
	width: 100%;
	padding: 25px;
	justify-content: space-between;
	display: flex;
}

.image-container a {
 	display: inline-block;
 	flex-wrap: wrap;
 	justify-content: space-between;
	align-content: center;
	width: calc(20% - 10px);
	transition: color 0.5s;
}

.image-wrapper {
	background-color: var(--white);
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
	width: 100%;
    height: auto;
	margin: 0;
    float: center;
    display: flex;
    object-fit: fill;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	aspect-ratio: 27 / 40;
}

.image-sub {
    text-align: center;
    width: 100%;
    white-space: normal;
    overflow: visible;
    display: inline-block;
    background-color: var(--white);
    border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.image-sub h3 {
    font-family: "Fira Sans", sans-serif;
	font-weight: bold;
    font-size: 16px;
   	color: var(--text);
    vertical-align: text-top;
	width: 100%;
}

.button {
	width: 100%;
}

.button button {
    margin: 15px;
    border: none;
    cursor: pointer;
    color: var(--text);
	background-color: var(--panel);
	float: right;
	transition: color 0.5s;
}

.button button:hover {
	color: var(--accent);
}

.arrow {
	height: 45px;
	width: 45px;
}

	/* MOBILE */

@media (max-width : 788px){
	.media-title {
		text-align: center;
		margin: none;
		padding: none;
		display: center;
	}
	
	.media-sorting {
		margin-top: 50px;
	}
	
	.image-container {
		width: 95%;
		magin: 0;
	}
	
	.image-wrapper {
		width: 100%;
		magin-bottom: 10px;
	}
	
	.image-wrapper img {
		width: 100%;
		border-radius: 10px;
		height: 150px;
	}
	
	.image-sub {
		display: none;
	}
	
	.button button {
		margin: 10px;
	}
	
	.arrow {
		height: 35px;
		width: 35px;
	}
}

@charset "utf-8";






/* INTERNAL LIST PAGE */



.list-container {
	background-color: var(--panel);
    width: 80%;
    float: none;
	margin: 2.5% 10%;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: space-between;
	height: auto;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.list-container a {
	float: left;
}
.list-title {
	height: 35px;
    width: 100%;
    text-align: right;
	line-height: 30px;
	vertical-align: top;
    margin-right: 30px;
    margin-bottom: 10px;
	color: var(--text);
}

.back {
	height: 45px;
	width: 45px;
}

.list-title button {
	display: inline;
	margin: 20px;
	border: none;
	cursor: pointer;	
	color: var(--text);
	background-color: var(--panel);
	float: right;
	transition: color 0.5s;
}

.list-title button:hover {
	color: var(--accent);
}


.list-desc {
	width: 100%;
	height: auto;
	text-align: left;
	line-height: 20px;
	margin: 2.5%;
	margin-top: 5%;
	padding: 20px;
	background-color: white;
	border-radius: 10px;
	
}

.list-desc p {
	font-family: "Fira Sans Light", sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.list-desc a {
	font-family: 'Fira Sans Light', sans-serif;
	font-size: 16px;
	font-weight: bold;
    text-decoration: underline;
	color: var(--text);
	transition: color 0.25s;
}

.list-desc a:hover {
    text-decoration: underline;
	color: var(--accent);
	cursor: pointer;
}


.image-container {
	width: 100%;
	padding: 25px;
	justify-content: space-between;
	display: flex;
}

.image-container a {
 	display: inline-block;
 	flex-wrap: wrap;
 	justify-content: space-between;
	align-content: center;
	width: calc(20% - 10px);
	transition: color 0.5s;
}

.image-wrapper {
	position: relative;
	background-color: var(--white);
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
	width: 100%;
    height: auto;
	margin: 0;
    float: center;
    display: flex;
    object-fit: fill;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	aspect-ratio: 27 / 40;
}

.image-sub {
    text-align: center;
    width: 100%;
    white-space: normal;
    overflow: visible;
    display: inline-block;
    background-color: var(--white);
    border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.image-sub h3 {
    font-family: "Fira Sans", sans-serif;
	font-weight: bold;
    font-size: 16px;
   	color: var(--text);
    vertical-align: text-top;
	width: 100%;
}

.button {
	width: 100%;
	float: right;
}

.button-left {
	width: 100%;
	float: left;
}

.button-left a {
	float: left;
}

.button-left button {
    margin: 15px;
    border: none;
    cursor: pointer;
    color: var(--text);
	background-color: var(--panel);
	transition: color 0.5s;
	
}

.button-left button:hover {
	color: var(--accent);
}

.button a {
	float: right;
}

.button button {
    margin: 15px;
    border: none;
    cursor: pointer;
    color: var(--text);
	background-color: var(--panel);
	float: right;
	transition: color 0.5s;
	
}

.button button:hover {
	color: var(--accent);
}

.arrow {
	height: 45px;
	width: 45px;
}


.image-overlay {
  	position: absolute;
  	top: 9px; 
  	left: 6px; 
  	width: 25px; 
  	height: 25px;
  	background-color: #EEEEEE;
  	color: #000000;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	border-radius: 3px;
	font-family: "Fira Sans Light", sans-serif;
    font-weight: bold;
    font-size: 14px;
}


.image-wrapper:hover .image-overlay {
  	opacity: 1;
}



/* MOBILE */

@media (max-width : 788px ){
	h1 {
		font-size: 30px;
	}

	.list-desc a {
		color: var(--text);
	}
	
	.back {
		height: 35px;
		width: 35px;
	}	
	
	.image-container {
		padding: 2.5%;
	}
	
	.image-wrapper img {
		height: 150px;
		border-radius: 10px;
	}
	
	.image-sub {
		margin-bottom: 0px;
		display: none;
	}
	
	.image-overlay {
		font-size: 10px;
		width: 20px; 
  		height: 20px;
	}
	
	.arrow {
		height: 35px;
		width: 35px;
	}
}

@charset "utf-8";
/* CSS Document */

@charset "utf-8";


	/* BLOG PAGES */



.blog {
	background-color: var(--panel);
    width: 80%;
    float: none;
	margin: 2.5% 10%;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: space-between;
	height: auto;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.blog-title {
	height: 50px;
    width: 100%;
	line-height: 30px;
	vertical-align: top;
    margin-bottom: 20px;
	color: var(--text);   	
    text-align: left;
    margin-left: 2.5%;
	margin-top: 20px;
}

.blog-title h5 {
	font-size: 32px;
	margin: 0px;
}

.blog-content {
	width: 100%;
	margin: 2.5%;
  	display: flex;
  	flex-wrap: wrap;
}

.blog-content h3 {
	margin: 10px 0;
	color: var(--text);
	display: inline;
	font-size: 24px;
}

.blog-img {
    box-sizing: border-box;
	justify-content: space-around;;
}

.blog img {
	height: auto;
	width: 18%;
	margin: 7px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 2px 4px #111111;
}

.blog-text {
    width: 100%;
	height: inherit;
	margin: 2.5%;
    padding: 20px;
    box-sizing: border-box;
	text-align: left;
	background-color: var(--white);
	border-radius: 10px;
	float: left;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.blog-text h2 {
	
}

.blog-text p {
	font-family: 'Fira Sans', sans-serif;
	font-size: 18px;
}

.button-container {
	width: 100%;
	display: flex;
  	justify-content: space-between;
}

button {
    margin: 2.5%;
    height: 60px;
    width: 150px;
	border-radius: 35px;
    background-color: var(--text);
    border: none;
    cursor: pointer;
    transition: background-color 0.5s;
	
	font-family: "Fira Sans", sans-serif;
    font-weight: bold;
	font-size: 20px;
	vertical-align: middle;
	color: var(--white);
	align-content: center;
}

button:hover {
	background-color: var(--accent);
}

.pointer {
	height: 25px;
	width: 25px;
	vertical-align: middle;
}



.image-container {
	width: 100%;
	height: auto;
	margin: 2.5% 0;
	justify-content: space-between;
	display: flex;
}

.image-wrapper {
 	display: inline-block;
 	flex-wrap: wrap;
 	justify-content: space-between;
	align-content: center;
	width: calc(20% - 10px);
	transition: color 0.5s;
}

.image-wrapper {
	position: relative;
	background-color: var(--white);
	margin-bottom: 20px;
	border-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
	width: 100%;
    height: auto;
	margin: 0;
    float: center;
    display: flex;
    object-fit: fill;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	aspect-ratio: 27 / 40;
}

@charset "utf-8";



	/* LISTS */



.list {
    background-color: var(--panel);
    width: 80%;
    float: none;
	margin: 2.5% 10%;
	padding-bottom: 25px;
    border-radius: 10px;
	display: flex;
 	flex-wrap: wrap;
  	justify-content: space-between;
	height: auto;
	box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
}

.list-title {
    height: 45px;
    width: 100%;
    text-align: right;
	line-height: 30px;
	vertical-align: top;
    margin-right: 2.5%;
    margin-bottom: 20px;
	color: var(--text);
}

.list-title h1 {
	font-size: 48px;
	font-weight: normal;
}

.list-subtitle {
	text-align: left;
	width: 100%;
	font-family: Broadway;
	font-size: 30px;
	margin-left: 2.5%;
	margin-top: 30px;
	margin-bottom: 10px;
	color: var(--text);
}

.list-subtitle:hover {
	color: var(--accent);
	transition: color 0.5s;
}

.list-container {
	display: flex;
	align-items: flex-start;
	background-color: var(--white);
	border-radius: 10px;
	height: 20vw;
	width: 95%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	margin-bottom: 10px;
}

.list-img {
	width: 60%;
	display: flex;
	justify-content: space-between;
}

.list-img img {
	width: calc(33.33% - 10px);
	margin-right: 10px;
	height: 20vw;
	box-shadow: 0 2px 4px #111111;
	border-radius: 3px;
	object-fit: fill;
	aspect-ratio: 27 / 40;
}

.list-text {
	height: inherit;
    width: 40%;
    vertical-align: middle;
	display: flex;
	flex-direction: column;
    justify-content: center;
}

.list-text p {
    font-family: "Fira Sans Light", sans-serif;
    font-size: 1.25vw;
    font-weight: bold;
	margin-top: 2px;
	margin-bottom: 5px;
}

.list-text a {
    text-decoration: underline;
	color: var(--text);
	transition: color 0.25s;
}

.list-text a:hover {
    text-decoration: underline;
	color: var(--accent);
	cursor: pointer;
}


	/* MOBILE */

@media (max-width : 788px){
	
	.list-title {
		margin: 0 10px;
	}
	
	.list-subtitle {
		text-align: center;
	}
	
	.list-container {
		display: table-column;
		background-color: var(--panel);
		border-radius: 10px;
		height: auto;
		width: 95%;
		margin-left: 2.5%;
		margin-right: 2.5%;
		margin-bottom: 10px;
	}
	
	.list-img {
		width: 100%;
		height: 250px;
		margin-bottom: 15px;
	}
	
	.list-img img {
		height: 250px;
		margin: auto;
	}
	
	.list-text {
		width: 96.5%;
		height: auto;
		background-color: var(--white);
		padding: 9px;
		border-radius: 10px;
	}
	
	.list-text p {
		font-size: 2vw;
		text-align: center;
	}
	
	
	.list-title h1 {
		text-align: center;
	}
}

 Mac OS X        	2FxATTRxx

Mac OS X        	2FxATTRxx

Mac OS X        	2ATTRHHcom.apple.macl@c@(<@Jø$z

Mac OS X        	2ATTRHHcom.apple.macl@c@(<@Jø$z

Mac OS X        	2FxATTRxx

Mac OS X        	2FxATTRxx

Mac OS X        	2FxATTRxx

Mac OS X        	2FxATTRxx

Mac OS X        	2FxATTRxx