
.c2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	border-top: 3px ridge rgba(0, 0, 0, 0.1);
	border-left: 6px ridge rgba(0, 0, 0, 0.2);
	border-right: 8px groove rgba(0, 0, 0, 0.3);
	border-bottom: 10px groove rgba(0, 0, 0, 0.3);
	background-image: url('../images/book-bg.svg');
	background-repeat: repeat-y;
	background-size: contain;
}

.c2-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 30px;
	height: 100%;
	width: 50%;
}

.c2 h1 {
	font-family: 'Manrope';
	font-weight: 400;
	font-size: 23px;
	color: #444;
	cursor: default;
	text-transform: uppercase;
}

.c2_text {
	display: block;
	clear: both;
	font-family: 'Poppins';
	font-weight: 300;
	font-size: 16px;
	font-style: italic;
	line-height: 30px;
	color: #444;
}

.c2_logo {
    width: 150px;
    height: auto;
    fill: #3E4536;
}

.c_img {
    height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1000px) {

	.c2 {
		flex-direction: column;
		height: auto;
		border-top: 3px ridge rgba(0, 0, 0, 0.1);
		border-left: none;
		border-right: none;
		border-bottom: 10px groove rgba(0, 0, 0, 0.3);
		background-image: none;
		background-repeat: none;
		background-color: #fff;
	}
	
	.c2-page {
		width: 100%;
	}
}

