/*======================== Fonts ======================*/
@font-face {
  font-family: "AvantGardeDemiBT";
  src: url("../fonts/AvantGardeDemiBT.ttf");
}

@font-face {
  font-family: "CircularStd-Medium";
  src: url("../fonts/CircularStd-Medium.otf");
}

html, body {
	margin: 0;
	padding: 0;
	font-family: "CircularStd-Medium"
}

body {
	background-color: #F5F5F5;
}

* {
	color: #35322f;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "AvantGardeDemiBT";
	margin: 0;
	padding: 0;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 25px;
}

.logo {
	width: 140px;
	margin-left: 20px;
}

.pattern {
	width: 150px;
	margin-right: -25px;
}

.main {
	padding: 40px;	
    padding-top: 0;
}

.back-div a {
	display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.box {
	padding: 25px;
    padding-top: 5px;
}

.title {
	width: 100%;
	margin-bottom: 30px;
}

.title h1 {
	margin: 0;
	padding: 0;
}

.box-contents {
}

.brochures-boxes {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

.brochure-box {
	position: relative;
	display: flex;
    align-items: center;
	box-sizing: border-box;
	width: 24%;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
	border-radius: 5px;
	margin-bottom: 15px;
}

.brochure-box-empty {
	width: 24%;
}

.brochure-box a {
    position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
    text-decoration: none;
}

.brochure-box .text {
	display: flex;
	flex-direction: column;
    align-items: center;
	color: #413C3C;
    margin-inline-start: 25px;
}

.brochure-box .text .box-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.brochure-box .text .box-subtitle {
	font-size: 13px;
}

footer {
	background-color: #777777;
	padding: 10px 50px;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
}

.copyright small {
	color: #ffffff;
}

/* Responsive */
@media only screen and (max-width: 768px) {
	
	.logo {
		margin-left: 0;
	}

	.main {
		padding: 15px;
	}

	.box-contents {
		flex-direction: column-reverse;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.brochures-boxes {
		width: 100%;
	}

	.brochure-box {
		width: 47%;
		margin-bottom: 20px;
		flex-direction: column;
		justify-content: unset;
		border-radius: 20px;
		box-shadow: 2px 5px 9px 2px rgb(0 0 0 / 10%);
		padding: 15px;
	}

	.brochure-box img {
		width: 100px !important;
		margin-inline-end: 0;
		margin-bottom: 15px;
	}
	
	.brochure-box .text {
		align-items: unset;
		margin-inline-start: 0;
		width: 100%;
		text-align: center;
	}
	
	.brochure-box .text .box-title {
		margin-bottom: 0;
	}
	
	footer {
		padding: 10px 20px;
	}
}