html {
	font-family: sans-serif;
	line-height: 1.15;
}
body {
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font: 13px/1.3em Arial, sans-serif;
	/* text-align: justify; */
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}
a, a:hover, a:active, a:visited, a:focus {
	color: inherit;
	text-decoration: none;
	outline-width: 0
}

p {
	margin-top: 0;
}
p:last-of-type {
	margin-bottom: 0;
}
strong, b {
	font-weight: 700;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
	border: 0;
}
svg:not(:root) {
	overflow: hidden
}

*, *:before, *:after {
	box-sizing: border-box;
}

button, hr, input {
	overflow: visible
}
hr {
	box-sizing: content-box;
	height: 0;
	background-color: #fff;
	color: #000;
	height: 1px;
	width: 100%;
	border: 0;
	padding: 0;
	margin: 0;
}
audio, canvas, progress, video {
	display: inline-block
}
[hidden], template {
	display: none
}

ul, ol {
	margin: 15px 0 20px 20px;
	padding-left: 0;
	list-style-type: none;
}
ul li ul, ul li ol, ol li ol, ol li ul {
	margin: 3px 0 3px 18px;
}
ul li {
	margin-bottom: 10px;
	position: relative;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	text-align: left;
}
li::before {
	content: "\25CF";
	position: absolute;
	color: #000;
	font-size: 12px;
	top: -2px;
	left: -19px;
}
/*
275a -- heavy vertical bar
● -- 25CF -- BLACK CIRCLE
● -- 26AB -- MEDIUM BLACK CIRCLE
● -- 2022 -- SMALL BLACK CIRCLE

▶ -- 25B6 -- BLACK RIGHT-POINTING TRIANGLE
■ -- 25A0 -- BLACK SQUARE
■ -- 25AA -- BLACK LITTLE SQUARE

← -- 2190 -- Left arrow
→ -- 2192 -- Right arrow
↑ -- 2191 -- Up arrow
↓ -- 2193 -- Down arrow

› -- 203A -- Right single angle quote
‹ -- 2039 -- Left single angle quote

« -- 00AB -- Left double angle quote
» -- 00BB -- Right double angle quoter
*/

/*
	+-----------------------------------------+
	| 				  Custom			  	  |
	+-----------------------------------------+
*/
@font-face {
	font-family: "Inter";
	src: url("inter.woff2") format("woff2");
}

:root {
	--custom-cyan: #50dde1;
	--background-gray: #f0f1f2;
}
body {
	max-width: 990px;
	min-width: 360px;
	margin: auto;
	font-family: Inter, Arial, sans-serif;
}

#header {
	position: relative;
}

#logo {
	position: absolute;
	right: 6%;
	top: 25px;
	width: 300px;
	z-index: 10;
}

#slideshow {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
#slideshow > img {
	max-width: 100%;
	display: block;
	grid-area: 1/1/2/2;
}

#company, #content, #footer {
	padding: 3% 6%;
}

#company {
	text-align: justify;
}

h1, .title {
	font-size: 28px;
	line-height: 1.1em;
	color: inherit;
	font-weight: 800;
	margin: 26px 0;
	position: relative;
}
h1::before, .headline::before {
	content: "";
	background: var(--custom-cyan);
	background-size: auto;
	background-size: 100% 100%;
	width: 50px;
	height: 3px;
	bottom: -10px;
	left: 0;
	position: absolute;
}
.headline {
	font-size: 18px;
	line-height: 1.1em;
	color: inherit;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;
}

.box {
	background-color: var(--background-gray);
}

#flex {
	display: flex;
	gap: 0 36px;
	flex-wrap: wrap;
}
.flex-element {
	flex: 1 1 280px;
}

ul li::before {
	content: "\25A0";
	color: inherit;
	top: -1px;
	font-size: 10px;
}

#footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#apply {
	border: 2px solid var(--custom-cyan);
	color: #000;
	background-color: var(--custom-cyan);
	padding: 10px 25px;
	font-weight: 700;
	font-size: 14px;
	transition: 0.3s;
	display: table;
	margin: 0 0 0 auto;
}
#apply:hover {
	border: 2px solid #50dde1;
	color: #000;
	background-color: transparent;
}