:root {
	--width: 1270px;
	--header: 1200px;
}


/* Basic Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

p {
	line-height: 1.6;
	margin: 1em 0 1.2em;
}

body {
	background: #f5f5f5;
	padding: 0;
	margin: 0;
	font-family: 'Oswald', sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-size: 14px;
	font-style: normal;
	letter-spacing: 1px;
}

header {
	width: 100%;
	max-width: var(--width);
	margin: 0 auto;
	padding: 55px 10px;
}

	.header__inner {
		display: flex;
		align-items: flex-end;
		width: 100%;
		max-width: var(--header);
	}

		.header-left {
			display: block;
			width: 50%;
			margin: 0;
			padding: 0;
			line-height: 1;
		}

			.header-left img {
				display: block;
			}

		.header-right {
			display: flex;
			justify-content: flex-end;
			width: 50%;
		}

	header .button {
		margin-bottom: 16px;
	}

.button {
	display: inline-block;
	background-color: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 50px;
	border-radius: 99999px;
	text-decoration: none;
	text-transform: uppercase;
}

	.button-content {
		margin-top: 45px;
		display: none;
	}


.main {
	display: flex;
	width: 100%;
	max-width: var(--width);
	margin: 0 auto 80px;
	padding: 0 10px;
	gap: 20px;
}

	.left {
		max-width: 600px;
		width: 100%;
	}
		.left__inner {
			max-width: 485px;
			width: 100%;
			padding: 55px 0 0;
		}

		.large-text {
			font-size: 18px;
			font-weight: 600;
			text-transform: uppercase;
			margin-bottom: 30px;
			line-height: 1.5;
		}

	.right {

	}

		.right img {
			display: block;
			width: auto;
			height: auto;
			mix-blend-mode: multiply;
		}


footer {
	display: block;
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	width: 100%;
	padding: 30px 10px;
	margin-bottom: 50px;
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
	gap: 1rem;
	text-align: center;
	max-width: var(--width);
	width: 100%;
	margin: 0 auto;
}

	.footer__inner div {
		font-size: 14px;
	}



@media screen and (max-width: 800px) {
	header {
		padding: 30px 40px 55px;
	}

	.header-left img {
		max-width: 190px;
		height: auto;
	}

	header .button {
		font-size: 10px;
		padding: 5px 30px;
	}

	.button-content {
		display: block;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

		.button-content .button {
			font-size: 16px;
			padding: 8px 50px;
		}

	.footer__inner {
		flex-direction: column;
		text-align: center;
	}

	.main {
		display: flex;
		flex-wrap: wrap;
		padding-left: 40px;
		padding-right: 40px;
	}
	.main .right {
		order: 1;
		width: 100%;
		max-width: unset;
	}
	.main .left {
		order: 2;
		width: 100%;
		max-width: unset;
	}
		.left__inner {
			width: 100%;
			max-width: unset;
		}

	header .button {
		margin-bottom: 6px;
	}

	.footer-address span {
		display: block;
		text-align: center;
	}
}

@media screen and (max-width: 500px) {
	header {
		padding-left: 20px;
		padding-right: 20px;
	}

	header .button {
		margin-bottom: 6px;
	}
}


@media screen and (max-width: 400px) {
	header {
		padding-left: 15px;
		padding-right: 15px;
	}

	header .button {
		margin-bottom: 6px;
	}
}
