body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition: all 0.5s;
	z-index: 997;
}

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

.header.sticked {
	background: var(--dark_purple);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	gap: 5rem;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 0.2rem 0;
	font-family: var(--font-default);
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	white-space: nowrap;
	transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #fff;
}

.navbar ul li::after {
	content: '';
	height: 2px;
	width: 0;
	background: #f4ba0c;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.4s;
}
.navbar ul li:hover::after {
	width: 100%;
}

#search-box {
	height: 26px;
	position: relative;
	font-size: 17px;
	visibility: hidden;
	transition: visibility 0.3s linear, opacity 0.3s linear;
}

.icon-search {
	cursor: pointer;
}

h1 {
	font-size: 4rem;
	margin-left: 40px;
}
.dev-web {
	background-color: #502f8a;
	height: 100vh;
	margin: 0;
	padding-top: 40%;
}

.graphic {
	background-color: #edc202;
	width: 100%;
	height: 100vh;
	padding-top: 40%;
}

.bpo {
	background-color: #502f8a;
	width: 100%;
	height: 100vh;
	padding-top: 40%;
}

button {
	background: inherit;
	border: 1px solid #ffffff;
	padding: 5px 20px;
	margin-top: 100px;
	margin-left: 40px;
}

button a {
	text-decoration: none;
	color: #ffffff;
}
button:hover {
	border: 1px solid #edc202;
}

button a:hover {
	color: #edc202;
}

.pill-container {
	position: absolute;
	z-index: 1;
	bottom: 10%;
	right: 5%;
}

.pill {
	margin: 5px 0px;
	width: 4px;
	height: 20px;
	display: block;
	cursor: pointer;
	background-color: #ffffff;
}

.hide {
	display: none;
}

.active {
	background-color: black;
}

.hidden {
	visibility: hidden;
	opacity: 0;
	transition: visibility 1s sliding-vertically 500ms, opacity 500ms;
	width: 20px;
}

.visible {
	visibility: visible;
	opacity: 1;
	width: 200px;
	transition: visibility 0s sliding-vertically 0s, opacity 300ms;
}
