@charset "utf-8";

.ctt_admin { display:none !important; } /* Admin Menu Disabled */

body {
	background-color:#fff;
	-webkit-transition:background-color 3s ease-in-out;
	transition:background-color 3s ease-in-out;
}
#headerWrap.about_bg:before {
	background-color:rgba(245, 243, 236, 0.6);
	-webkit-transition:background-color 3s ease-in-out;
	transition:background-color 3s ease-in-out;
}

#coWrap {
	width:100%;
	max-width:1400px;
	margin:0 auto;
	padding:3rem 0;
	display:flex;
	gap:5rem;
	align-items:flex-start;
}
#coWrap article p {
	font-size:1rem;
	color:#616161;
	word-break:keep-all;
}
#coWrap article p:not(:first-of-type) { margin-top:1.5rem; }

/*
+----------------------------------------------------------+
+           Mobile Device Less than 768px          +
+----------------------------------------------------------+
*/
@media all and (max-width:768px) {
	#coWrap {
		flex-direction:column;
		gap:6rem;
	}
	[data-aos="fade-left"], [data-aos="fade-right"] {
		opacity: 0;
		transform: translateY(20px) !important;
	}
	[data-aos="fade-left"].aos-animate, [data-aos="fade-right"].aos-animate {
		transform: translateY(0) !important;
	}
}