* { margin: 0; padding: 0; font-family: Arial, Helvetica, sans-serif }

a,
a:checked,
a:visited {
	text-decoration: none;
	color: inherit;
}

.primary {
	background-color: rgba(0,51,160,1);
}
.secondary {
	background-color: #DA281B;
}
.tertiary {
	background-color: #fff;
}
.background_1 {
	background: url(/images/Zalure_brand_logo_text_cut.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: fixed;
	width: 100%;
	max-width: 800px;
	height: 200px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: -1000;
}



header {
	position: fixed;
	width: 100%;
	background-color: rgba(255,255,255,0.5);
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.5);
	z-index: 2000;
	transition: background 0.3s ease;
}
header .brand_logo {
	position: absolute;
	top: 5px;
	left: 20px;
}
header .brand_logo img {
	height: 75px;
	width: auto;
	vertical-align: top;
	filter: drop-shadow(0 2px 5px rgba(255,255,255,1));
}

header.scrolled {
	background: rgba(0,0,0,0.8);
	height: 50px;
}
header.scrolled .wrapper {
	height: 50px;
}
header.scrolled .brand_logo img {
	height: 40px;
	filter: drop-shadow(0 10px 8px rgba(255,255,255,0.4));
}



header .userface ul {
	list-style: none;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	padding: 5px 20px;
}
header .userface img {
	height: 25px;
	width: auto;
}
header.scrolled .userface img {
	filter: brightness(0) invert(1);
	height: 35px;
}



.hero {
	height: 70vh;
	background-image: url('/images/christian-tenguan-RNiK93wcz-U-unsplash.jpg'); /* <-- change this */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	background-attachment: fixed;
	position: relative;
}
.hero .bottom_border {
	background-color: rgba(0,51,160,1);
	z-index: 500;
	height: 10px;
	width: 100%;
	position: absolute;
	bottom: 0;
}



.products {
	padding: 80px 20px;
	display: flex;
	justify-content: center;
	gap: 80px;
	flex-wrap: wrap;
}
.products .product {
	max-width: 400px;
	padding: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.products .product:hover {
	transform: translateY(-5px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.products .product img {
	width: 250px;
}
.products .product:nth-child(3) img {
	height: 250px;
	width: auto;
}
.products .product .info {
	display: flex;
	gap: 20px;
	align-items: flex-end;
	margin: auto;
}





.contact_panel {
	position: fixed;
	top: 60%;
	right: 0;
	transform: translateY(-60%) translateX(calc(100% - 40px));

	display: flex;
	align-items: center;
	z-index: 2000;

	transition: transform 0.3s ease;
	
	height: 100px;
}
.contact_panel.open {
	transform: translateY(-50%) translateX(0);
}
.contact_toggle {
	width: 40px;
	height: 100%;
	color: #fff;
	padding: 10px 5px;
	cursor: pointer;
	border-radius: 10px 0 0 10px;

	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-weight: bold;

	display: flex;
	align-items: center;
	justify-content: center;
	
	border: solid 1px #F0FFFF;
	box-sizing: border-box;
}
.contact_content {
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 0 5px;
	height: 100px;

	box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.contact_content img {
	width: 100%;
	max-width: 25px;
	transition: transform 0.2s ease;
}
.contact_content img:hover {
	transform: translateY(-2px);
}
.contact_content hr {
	height: 3px;
	background-color: #000;
	box-sizing: border-box;
}
.contact_content a:nth-of-type(2) img {
	padding-top: 2px;
}