html {
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

* {
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: var(--cl-black);
	text-underline-position: under;
}

:root {
	--cl-black: #1d1d1d;
	--cl-orange: #FC6602;
	--cl-orange-light: #F2FBB8;

	--cl-main: #009767;

	--ff-family: 'Arial', sans-serif;
}

body {
	background-color: var(--cl-orange);
}

.header {
	width: 100%;
	height: auto;
	padding: 20px;
	overflow: hidden;
}

svg {
	width: 100%;
	height: auto;
	color: var(--cl-orange-light);
}

h1 {
	width: 50%;
	height: auto;
	font-family: var(--ff-family);
	font-size: 32px;
	line-height: 42px;
	font-weight: bold;
	color: var(--cl-orange-light);
	position: relative;
	float: right;
	margin-top: 40px;
}

.infoContainer {
	width: 100%;
	height: auto;
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	position: absolute;
	bottom: 0;
}

.textBlock {
	width: 100%;
	height: auto;
	margin: 0;
}

.textBlockHead {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 7px;
}

.point {
	width: 10px;
	height: 10px;
	background-color: var(--cl-black);
	border-radius: 10px;
	position: relative;
	margin: 0;
}

h3 {
	font-family: var(--ff-family);
	font-size: 16;
	line-height: 21px;
	font-weight: bold;
	color: var(--cl-black);
	position: relative;
	margin: 0;
}

p {
	width: 100%;
	height: auto;
	font-family: var(--ff-family);
	font-size: 16px;
	line-height: 21px;
	font-weight: normal;
	color: var(--cl-black);
	position: relative;
	margin-top: 10px;
}

a {
	width: auto;
	height: auto;
	float: left;
	position: relative;
	font-family: var(--ff-family);
	font-size: 32px;
	line-height: 32px;
	font-weight: normal;
	color: var(--cl-black);
	text-decoration: none;
	border: 2px solid var(--cl-black);
	padding: 16px 32px;
	margin-bottom: 26px;
}

a::after {
	content: "*To old design";
	position: absolute;
	right: 0;
	bottom: -26px;
	font-family: var(--ff-family);
	font-size: 16px;
	line-height: 16px;
	font-weight: normal;
	color: var(--cl-black);
}

@media screen and (max-width: 1080px) {
	svg {
		margin-bottom: 360px;
	}
	h1 {
		width: 75%;
		float: left;
	}
	.infoContainer {
		width: 100%;
		height: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
		position: relative;
		float: left;
		margin-top: 20px;
	}
	.textBlock {
		width: 75%;
	}
	a {
		float: left;
	}
}

@media screen and (max-width: 767.98px) {
	svg {
		margin-bottom: 250px;
	}
	h1 {
		width: 100%;
	}
	.textBlock {
		width: 100%;
	}
}

/* @media screen and (max-height: 820px) {
	.infoContainer {
		position: relative;
		float: right;
		margin-top: 20px;
	}
} */