.active {
	color: var(--gold) !important;
}

/* Slider */
.websites_slider {
	position: relative;
	height: 150px;
	z-index: 1;
}

.tns-outer,
.tns-ovh {
	height: 100%;
}

.slider_image {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
}

/* Header */
header {
	width: 100%;
	height: auto;
	position: relative; /* must be relative for sticky nav to work */
	z-index: 9;
}

.header_container {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

.container_nav {
	width: 100%;
	height: auto;
	position: absolute; /* floats on top of the slider */
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	padding: 0 5%;
	z-index: 2;
}

.container_header {
	max-width: 1200px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 35px;
	padding-bottom: 45px;
}

.header_logo_container {
	width: auto;
	height: 100%;
	display: flex;
	align-items: flex-start;
}

.header_logo_container>img {
	width: 200px;
}

.header_contact_information {
	width: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.header_contact_links {
	display: flex;
	align-self: flex-start;
}

.header_contact_links div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header_contact_links div a {
	color: white;
	text-transform: uppercase;
	font-size: 20px !important;
	text-decoration: none !important;
	font-family: var(--font);
}

.header_contact_links div p {
	color: white;
}

.header_contact_socials {
	color: white !important;
	font-size: 30px;
	float: right;
	margin-top: 5px;
}

.header_contact_socials>a>i {
	color: white !important;
}

/* Mobile menu button */
.menu-bars {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 25px;
	cursor: pointer;
	display: none;
}

.bar {
	width: 100%;
	height: 4px;
	background-color: var(--white);
}

/* Navigation */
.navigation {
	width: 100%;
	height: auto;
	display: flex;
	box-shadow: var(--shadow);
	position: absolute; /* important: not absolute */
	z-index: 10;
	transition: all 0.3s ease;
	background-color: var(--white);
	padding: 0 5%;
}

.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navigation_container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.navigation_list {
	width: auto;
	height: 75px;
	display: flex;
	gap: 15px;
}

.navigation_list>*:first-child {
	padding-left: 0 !important;
}

.navigation_list_item {
	width: auto;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.navigation_list_item>a {
	font-size: 20px;
	font-family: var(--font);
	color: black;
	width: 100%;
	text-align: left;
	transition: color .35s ease;
	text-decoration: none !important;
	font-weight: bold;
}

.navigation_list_item>a:hover {
	color: var(--gold);
}

/* Button */
.nav_button_container {
	width: 100%;
	max-width: 200px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* When visible */
.nav_button_container.visible {
  visibility: visible;
  opacity: 1;
}

/* When hidden again */
.nav_button_container.hidden {
  visibility: hidden;
  opacity: 0;
}

.nav_button_container>a {
	padding: 5px 15px;
	border: 2px solid black;
	color: black;
	transition: 0.2s ease-in;
	font-family: var(--font);
	font-weight: bold;
}

.nav_button_container>a:hover {
	background: black;
	color: white;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.navigation {
		display: none;
	}

	.menu-bars {
		display: flex;
	}

	.header_contact_information {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.slider_image,
	.container_header,
	.websites_slider {
		height: 125px !important;
	}

	.header_contact_links {
		font-size: 15px;
	}

	.header_logo_container>img {
		width: 175px;
	}

	.header_contact_links>div>a {
		font-size: 13px !important;
	}

	.navigation_list_item>a {
		font-size: 17px;
	}
}

@media screen and (max-width: 500px) {
	.slider_image,
	.container_header {
		height: 150px !important;
	}

	.header_logo_container {
		align-items: center;
	}

	.header_logo_container>img {
		width: 150px;
	}
}
