body {
    font-family: 'Source Sans Pro', sans-serif;
	color: #202020;
	background: #f7f7f9;
	margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
	margin-top: 100px;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	border-bottom: 1px solid #ddd;
}

.header {
	max-width: 1200px;
	margin: 0 auto;
    height: 80px;
	display: flex;
	justify-content: space-between;
}

.header .center {
	flex-basis: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.header a {
	font-size: 16px;
	color: #202020;
	font-weight: 700;
	text-decoration: none;
}

.header .right {
	flex-basis: 33%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header .lang {
	border: 1px solid #e7e7e7;
	font-size: 16px;
	font-weight: 700;
	padding: 10px 14px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
	flex-basis: 33%;
}

.header img {
    height: 38px;
	margin-top: 4px;
}

.hero {
    display: flex;
    height: 550px;
    height: 500px;
}

.hero .left, .hero .right {
    display: flex;
    justify-content: center;
    flex-flow: column;
    gap: 30px;
}

.hero .left {
    flex-basis: 50%;
}


.hero .right {
    flex-basis: 65%;
}

.hero h1 {
    font-size: 42px;
    line-height:1.4;
    margin: 0;
}

.hero p {
    font-size: 24px;
    line-height:1.4;
    margin: 0;
}

.hero img {
    width: 100%;
	margin-top: 40px;
}

.buttons {
    display: flex;
	gap: 16px;
}

.cta {
    background: #649140;
    color: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.15s ease;
	text-decoration: none;
}

.cta:hover {
	background: #578037;
}

.cta.basic {
	background: #ddd;
	color: #6a6a6a;
}

.cta.mini {
	font-size: 16px;
	padding: 10px 16px;
	border-radius: 12px;
}

.cta.basic:hover {
	background: #d0d0d0;
}

.inner {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 18px;
}

.inner p {
	margin: 12px 0;
	max-width: 700px;
}

h2 {
    font-size: 32px;
	margin: 12px 0;
}

.boxes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 40px 20px;
}

.boxes .box {
	box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
	border-radius: 20px;
	padding: 14px 20px 24px 20px;
	background: #fff;
}

.boxes .box h3 {
	margin: 0 0 8px 0;
	padding-bottom: 4px;
	padding-right: 10px;
	margin-bottom: 0;
	border-bottom: 4px solid #649140;
	display: inline-block;
}

.boxes .box h4 {
	margin: 8px 0;
	font-size: 16px;
}

.boxes .box p {
	margin: 6px 0 0 0;
	font-size: 16px;
	line-height: 1.5;
}

li {
	margin: 6px 0;
}

.image {
	border: 1px solid #e7e7e7;
	border-radius: 30px;
	width: 60%;
	margin: 20px auto;
}

.section {
	margin: 80px 0;
}

.contact {
	background: #fff;
	border-radius: 20px;
	padding: 10px 30px 20px 30px;
	margin: 30px -30px;
	box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
	margin: 0 auto;
	margin-bottom: 100px;
	max-width: 700px;
}

.contact-card {
	display: flex;
	gap: 10px;
	align-items: center;
}

.profile {
	height: 60px;
	width: 60px;
	border-radius: 30px;
	border: 1px solid #ddd;
	overflow: hidden;
	margin: 12px 0 4px 0;
}

.profile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-text p {
	margin: 0;
	font-weight: 700;
}

.contact-text a {
	text-decoration: none;
	color: #444;
}

.footer {
	height: 120px;
	width: 100%;
	background: #222;
	color: #fff;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.footer .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	flex-basis: 33%;
	text-decoration: none;
	color: #fff;
}

.footer .copyright {
	display: inline-block;
	margin: 0 auto;
	font-size: 14px;
}

a.anchor {
	display: block;
	position: relative;
	top: -120px;
	visibility: hidden;
}

@media (max-width: 1200px) {
	.header {
		padding: 0 10px;
	}

	.header .center {
		display: none;
	}

	.hero {
		height: fit-content;
		flex-flow: column-reverse;
		text-align: center;
		padding: 0 10px;
		margin-bottom: 30px;
	}

	.hero h1 {
		font-size: 34px;
	}

	.hero .left {
		gap: 10px;
	}

	.cta {
		font-size: 18px;
	}

	.inner {
		padding: 0 10px;
	}

	.inner p {
		font-size: 16px;
	}

	li {
		font-size: 16px;
	}

	.hero p {
		font-size: 22px;
	}

	.buttons {
		justify-content: center;
	}

	.boxes {
		margin: 20px 0;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section {
		margin: 40px 0;
	}

	.contact-text p {
		font-size: 18px;
	}

	.contact {
		margin: 0 -10px;
		border-radius: 0;
		box-shadow: none;
	}

	.image {
		border-radius: 10px;
		width: 100%;
		margin: 10px 0;
	}
}