@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/poppins-v24-latin-regular.eot');
	src: url('../fonts/poppins-v24-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'),
		url('../fonts/poppins-v24-latin-regular.woff') format('woff'),
		url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'),
		url('../fonts/poppins-v24-latin-regular.svg#Poppins') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/poppins-v24-latin-700.eot');
	src: url('../fonts/poppins-v24-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/poppins-v24-latin-700.woff2') format('woff2'),
		url('../fonts/poppins-v24-latin-700.woff') format('woff'),
		url('../fonts/poppins-v24-latin-700.ttf') format('truetype'),
		url('../fonts/poppins-v24-latin-700.svg#Poppins') format('svg');
}

:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #00217a;
	font-family: "Poppins", "Arial", sans-serif;
	font-size: .937rem;
	line-height: 1.5;
	background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 18.75rem, #f2fafb 50rem), url(../images/bg.jpg) no-repeat top center;
	background-size: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.header_link {
	color: #0099b0;
	font-weight: 700;
	margin: .125rem 0;
	font-size: .875rem;
}

a.color {
	color: #a08550;
}

p {
	margin: 0 0 .875rem;
}

h1 {
	font-weight: 700;
	margin: .375rem 0 .687rem;
	color: #a08550;
	line-height: 1.3;
	font-size: 1.312rem;
}

h2 {
	font-weight: 400;
	margin: .375rem 0 .687rem;
	color: #a08550;
	line-height: 1.3;
	font-size: 1.312rem;
}

h1 span,
h2 span {
	white-space: nowrap;
}

h3 {
	color: #a08550;
	margin: 0;
	padding: 2rem 0 1.25rem;
	font-weight: 700;
	font-size: 1rem;
}

ul {
	list-style: none;
	margin: 0 0 0 1.375rem;
	padding: 0;
}

ul li {
	padding-left: 1.375rem
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.375rem;
	font-size: 1.375em;
	line-height: 1;
}

header {
	padding: .75rem;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.25rem;
}

.logo {
	background-color: #ffffff;
	border: 1px solid rgba(220, 223, 226, 0.8);
	border-radius: .187rem;
	width: 7.5rem;
	height: 7.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_box {
	flex: 1;
}



.flex {
	display: flex;
	column-gap: .75rem;
}

.flex span i {
	margin-right: .375rem;
	color: #f56363;
}

.slider {
	position: relative;
	margin: 0 0 1.812rem;
	border-radius: 1.062rem;
	overflow: hidden;
}

.slider > img {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	animation: imageAnimation 18s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
	position: static;
	opacity: 1;
}

.slider > img:nth-of-type(2) {
	animation-delay: 6s;
}

.slider > img:nth-of-type(3) {
	animation-delay: 12s;
}


@keyframes imageAnimation {
	4% {
		opacity: 1;
	}

	33% {
		opacity: 1;
	}

	38% {
		opacity: 0;
	}
}

article {
	padding: .75rem 1.062rem 0;
}

hr {
	width: 100%;
	border-top: 1px solid #CFD6E7;
	color: transparent;
	background-color: transparent;
	height: 0;
	margin: 1.875rem 0 0;
}

footer {
	padding: 0 1.062rem 2.187rem;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}


	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 48rem) {
	ul {
		margin: 0;
	}
}

@media only screen and (max-width: 30rem) {
	header {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: .875rem;
	}

	.header_box {
		text-align: center;
		width: 100%;
	}

	.flex {
		justify-content: center;
		align-items: center;
	}

	ul li {
		padding-left: .937rem;
	}

	ul li:before {
		margin-left: -.937rem;
	}

	h2 {
		text-align: center;
	}
}

@media only screen and (max-width: 23.437rem) {}
