* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
    --max-width: 1280px;
}
html,
body {
	font-family: Verdana, sans-serif;
	line-height: 1.5;
	font-size: 16px;
}

:host {
	font-family: Verdana, sans-serif;
	font-size: 17px;
	background-color: black;
	color: white;
}

body {
	background-image: url('/public/images/wallpaper_005_m.jpg');
	background-attachment: fixed;
}

header {
	height: 50px;
}

.nav {
	position: sticky;
	top: 0;
	color: #000;
	background-color: #fff;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

footer {
	background-color: #435761;
	color: white;
}

.footer-container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 10px 0 10px 10px
}

img {
	max-width: 100%;
	height: auto;
}

button:hover {
	cursor: pointer;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th {
	font-weight: normal;
	text-align: left;
}

td {
	text-align: left;
}

p {
	margin: 16px 0px;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.menu {
	display: flex;
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: 120px;
	background-image: url('/public/images/sp_logo3.png');
	background-repeat: no-repeat;
}


.menu ul {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu li {
	padding: 12px 0;
}

.menu li a {
	text-decoration: none;
	display: block;
}

.mobile-menu-button {
	display: none;
	font-size: 30px;
	padding-left: 15px;
	cursor: pointer;
}

.text-container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 20px 16px 20px 16px;
}

.sp-card-height {
	min-height: 100%;
}

/*-----------------------------------------------------------------------------------------------*/
.bgimg-01 {
	background-image: url('/public/images/saptool_001.jpg');
	color: white;
}

.bgimg-02 {
	background-image: url('/public/images/saptool_002.jpg');
	color: white;
}

.bgimg-03 {
	background-image: url('/public/images/saptool_003.jpg');
	color: white;
}

.bgimg-04 {
	background-image: url('/public/images/saptool_004.jpg');
	color: white;
}

.bgimg-05 {
	background-image: url('/public/images/saptool_005.jpg');
	color: white;
}

.bgimg-06 {
	background-image: url('/public/images/saptool_006.jpg');
	color: white;
}

.bgimg-07 {
	background-image: url('/public/images/saptool_007.jpg');
	color: white;
}

.bgimg-08 {
	background-image: url('/public/images/background_008.jpg');
	color: white;
}

.bgimg-10 {
	background-image: url('/public/images/design001_003.png');
	color: white;
}

.bgimg-404 {
	background-image: url('/public/images/error_404.png');
	color: black;
}

/* Create a Parallax Effect */
.bgimg-01,
.bgimg-02,
.bgimg-03,
.bgimg-04,
.bgimg-05,
.bgimg-06,
.bgimg-07,
.bgimg-08,
.bgimg-404 {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1000px) {

	.bgimg-01,
	.bgimg-02,
	.bgimg-03,
	.bgimg-04,
	.bgimg-05,
	.bgimg-06,
	.bgimg-07,
	.bgimg-08 {
		background-attachment: scroll;
	}

	.w3-container {
		padding: 0;
	}
}

/* w3-hide-small */
@media screen and (max-width: 600px) {
	body {
		background-image: none;
		background-color: whitesmoke;
	}
}

@media screen and (max-width: 480px) {
	.menu {
		padding-left: 10px;
		background-image: none;
		display: none;
	}

	.menu ul {
		gap: 0;
		flex-direction: column;
	}

	.menu li {
		text-decoration: none;
		border-bottom: 1px solid #d4b1b1;
	}

	header {
		display: none;
	}

	.mobile-menu-button {
		display: block;
	}
}

#strip_slider {
	margin-right: 100%;
	height: 4px;
	background: linear-gradient(to right, #27A0AB, #186D8E);
}

.w3-animate-bottom {
	animation: animatebottom 0.8s
}