*:focus {
	outline: none;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	outline: 0;
	-webkit-appearance: none;
	border-radius: 0;
	line-height: 0;
	font-weight: normal;
	border: 0;
	background: none;
	box-sizing: border-box;
}

@font-face {
    font-family: "Graphik Light";
    src: url("../fonts/Graphik-Light-Web.woff2") format("woff2"), url("../fonts/Graphik-Light-Web.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Graphik Regular";
    src: url("../fonts/Graphik-Regular-Web.woff2") format("woff2"), url("../fonts/Graphik-Regular-Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
	font-family: "Graphik Regular", sans-serif;
	color: #16151D;
}

body {
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body::-webkit-scrollbar {
	width: 5px;
	background: #E6E6E6;
}
  
body::-webkit-scrollbar-thumb {
	background: #AFAFAF;
}

.header-logo, footer p a, .info p a, .intro p a {
    transition: all 0.5s ease;
}

.wrapper {
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 3fr;
	height: 100vh;
}

.wrapper-column {
	padding: 48px 48px 48px 0;
	height: 100%;
}

.wrapper-column__left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-right: 1px solid #16151D;
	gap: 32px;
	padding-left: 20px;
}

.wrapper-column__right {
	padding-left: 64px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 96px;
}

.header-logo:hover {
	opacity: .5;
}

.header-logo {
	max-height: 80px;
	width: auto;
}

header {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.header-slogan {
	border-left: 2px solid #16151D;
	padding: 12px 0;
}

.header-slogan p {
	font-family: "Graphik Light", sans-serif;
	font-size: 24px;
	line-height: 24px;
	padding-left: 20px;
}

footer {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

footer p {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
}

footer p a {
	color: #16151D;
}

footer p a:hover {
	opacity: .5;
}

.hidden {
	display: none;
}

.intro {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 24px;
}

.intro-left img {
	width: 100%;
	height: auto;
}

h2 {
	font-family: "Graphik Light", sans-serif;
	text-transform: uppercase;
	font-size: 32px;
	line-height: 36px;
}

.intro-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: space-between;
}

.intro-right p {
	font-size: 16px;
	line-height: 20px;
}

.label img {
	width: 100%;
	height: auto;
}

.signature {
	margin: 32px 0 96px 0;
	text-align: right;
}

.signature p {
	font-size: 16px;
	line-height: 20px;
}

.info {
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
}

.info p {
	font-size: 14px;
	line-height: 18px;
	color: #969696;
}

.info p a, .intro p a {
	color: #969696;
}

.info p a:hover, .intro p a:hover {
	color: #16151D;
}

.wrapper-column__right footer {
	display: none;
}

.intro.intro-limited {
	grid-template-columns: 1fr;
}

@media screen and (max-width: 1280px) {
	.header-slogan p {
		font-size: 20px;
		line-height: 20px;
	}
	.header-logo {
		max-height: 64px;
	}
	.wrapper-column__right {
		padding-left: 32px;
	}
	h2 {
		font-size: 28px;
		line-height: 34px;
	}
}

@media screen and (max-width: 1024px) {
	.wrapper {
		display: block;
	}
	.wrapper-column {
		height: auto;
	}
	.wrapper-column__left {
		border-right: none;
		border-bottom: 1px solid #16151D;
		padding: 20px;
		gap: 64px;
	}
	header {
		flex-direction: row;
		align-items: center;
	}
	.header-slogan p {
		font-size: 18px;
		line-height: 18px;
	}
	footer {
		display: none;
	}
	.wrapper-column__right footer {
		display: flex;
	}
	.wrapper-column__right {
		padding-left: 20px;
		gap: 80px;
	}
}

@media screen and (max-width: 768px) {
	.header-logo {
		max-height: 48px;
	}
	.header-slogan p {
		font-size: 16px;
		line-height: 16px;
	}
	header {
		gap: 24px;
	}
	h2 {
		font-size: 24px;
		line-height: 28px;
	}
	.signature p, .intro-right p {
		font-size: 14px;
		line-height: 18px;
	}
	.intro {
		grid-template-columns: 1.5fr 3fr;
	}
	.info p {
		font-size: 12px;
		line-height: 16px;
	}
}

@media screen and (max-width: 420px) {
	.header-logo {
		max-height: 40px;
	}
	.header-slogan p {
		font-size: 14px;
		line-height: 14px;
	}
	h2 {
        font-size: 20px;
        line-height: 24px;
    }
	.intro {
		gap: 16px;
	}
}