html, body {
	height: 100%;
	margin: 0;
}
body {
	background-color: #FFFFFF;
}
#navigation {
	position: relative;
	width: 68%;
	margin: -30px auto 0 auto;
	padding: 30px 20px;
	background: rgba(254, 251, 248, 0.88);
	backdrop-filter: blur(5px);
	border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
	border: 2px solid #f3e9e9;
	box-shadow: 0 15px 35px rgba(224, 211, 204, 0.25);
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 15px;
}
#navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	font-size: 17px;
	letter-spacing: 0.5px;
	font-weight: 500;
	font-family: 'Cormorant Garamond', serif;
	color: #3E98D7;
	background: transparent;
	border: 1px solid transparent;
	text-decoration: none !important;
	position: relative;
	transition: color 0.3s ease, transform 0.2s ease;
}
#navigation a:hover {
	color: #76DEC0;
	transform: scale(1.03);
}
#navigation a::before {
	content: "◦";
	font-size: 18px;
	margin-right: 6px;
	color: #dfcbd2;
}
#header {
	background-image: url('images/head.jpg'),url('images/bg1.jpg');
	background-repeat: no-repeat,repeat-x;
	background-position: center;
	height: 736px;
	width: 100%;
	margin-top: -5px;
}
a:link,a:visited {
	color: #8AA7DB;
	font-size: 20px;
	text-decoration: none;
	font-family: 'Georgia', serif;
	position: relative;
	padding-bottom: 2px;
	transition: color 0.3s ease;
	border-bottom: #8AA7DB;
}
a:hover {
	color: #EF3195;
	border-bottom-color: transparent;
}
a::after {
	content: '';
	position: absolute;
	left: -4px;
	right: -4px;
	bottom: -1px;
	height: 8px;
	background: rgba(243, 226, 226, 0.65);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 4px;
}
a:hover::after {
	transform: scaleX(1);
}
i, em {
	color: #EF3195;
	font-style: italic;
	font-family: 'Georgia', serif;
	font-size: 20px;
	background: #f1f3f0;
	padding: 3px 8px;
	margin: 0 2px;
	border-radius: 4px;
	display: inline-block;
	border-bottom: 2px solid rgba(121, 130, 118, 0.25);
}
b, strong {
	color: #628FE3;
	font-weight: 600;
	font-family: 'Cormorant Garamond', serif;
	font-size: 21px;
	letter-spacing: 0.7px;
	background: rgba(24df, 243, 245, 0.5);
	padding: 2px 10px;
	margin: 0 2px;
	border-radius: 4px;
	display: inline-block;
	border-bottom: 1px solid rgba(148, 134, 124, 0.35);
}
#content {
	margin: -60px auto;
	position: relative;
	width: 65%;
}
.contentx {
	margin-bottom: 60px;
	padding: 55px 50px;
	font-size: 19px;
	font-family: 'Georgia', serif;
	color: #5c5552;
	text-align: justify;
	text-justify: inter-word;
	line-height: 2.1;
	letter-spacing: 0.3px;
	background: #ffffff;
	border: 1px solid #f6f1ed;
	border-radius: 30px 10px 30px 10px;
	box-shadow: 0 15px 45px rgba(212, 201, 195, 0.15);
}
textarea,input,select {
	width: 100%;
	max-width: 550px;
	padding: 12px 15px;
	margin: 16px 0;
	font-family: 'Georgia', serif;
	font-size: 16px;
	color: #5c5552;
	background: #fbfbfb;
	border: 1px solid #eade95c;
	border-radius: 4px;
	transition: background 0.3s ease;
}
textarea:focus,input:focus,select:focus {
	outline: none;
	background: #ffffff;
	border-color: #dcbcc2;
}
h1 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	font-style: italic;
	font-size: 58px;
	color: #695d56;
	margin-bottom: 35px;
	position: relative;
	display: inline-block;
	letter-spacing: -0.5px;
	line-height: 1.2;
}
h1::before {
	content: "✦ ";
	font-size: 22px;
	font-style: normal;
	color: #dfcbd2;
	vertical-align: middle;
	margin-right: 8px;
	font-weight: normal;
}
h1::after {
	content: "";
	position: absolute;
	left: -8px;
	right: -12px;
	bottom: 4px;
	height: 16px;
	background: linear-gradient(95deg, rgba(243, 226, 226, 0.7) 0%, rgba(230, 238, 240, 0.5) 100%);
	z-index: -1;
	border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	transform: scaleX(0);
	transform-origin: left;
	animation: brushStroke 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	animation-delay: 0.2s;
}
@keyframes brushStroke {
	0% {
		transform: scaleX(0) skewX(-3deg);
	}
	100% {
		transform: scaleX(1) skewX(0deg);
	}
}
#footer {
	font-family: 'Georgia', serif;
	font-size: 16px;
	opacity:0.6;
	color: #252525;
	text-align: center;
	padding: 70px 20px 50px;
	margin-top: 90px;
	border-top: 1px dotted #e6dfda;
	line-height: 1.8;
	letter-spacing: 0.3px;
}
#footer a {
	color: #4281AE;
	text-decoration: none;
	position: relative;
	font-size: 16px!important;
	padding-bottom: 2px;
	transition: color 0.3s ease;
	border-bottom: 1.5px dotted rgba(202, 160, 166, 0.4);
}
#footer a:hover {
	color: #caa0a6;
	border-bottom-color: transparent;
}
#footer a::after {
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	bottom: -1px;
	height: 6px;
	background: rgba(243, 226, 226, 0.65);
	z-index: -1;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 3px;
}
#footer a:hover::after {
	transform: scaleX(1);
}
#footer .back-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 15px;
	color: #9c8e85;
	text-transform: uppercase;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 1.5px;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}
#footer .back-to-top::before {
	content: "▴";
	font-size: 12px;
	margin-right: 6px;
	color: #dfcbd2;
	transition: transform 0.3s ease;
}
#footer .back-to-top:hover {
	color: #caa0a6;
	transform: translateY(-2px);
}
#footer .back-to-top:hover::before {
	transform: translateY(-2px);
}
blockquote {
	font-family: 'Georgia', serif;
	font-size: 21px;
	font-style: italic;
	color: #6e625e;
	background: linear-gradient(to right, rgba(253, 252, 251, 0.95), rgba(255, 255, 255, 0.6));
	padding: 35px 45px 35px 55px;
	margin: 50px auto;
	max-width: 760px;
	text-align: justify;
	text-justify: inter-word;
	line-height: 1.9;
	border: none;
	border-left: 3px solid #dfcbd2;
	border-radius: 4px 16px 16px 4px;
	box-shadow: 2px 8px 30px rgba(212, 201, 195, 0.12);
	position: relative;
}
blockquote::before {
	content: "“";
	font-family: 'Cormorant Garamond', serif;
	font-size: 55px;
	font-style: normal;
	color: rgba(223, 203, 210, 0.5);
	position: absolute;
	top: 10px;
	left: 20px;
}
