/*                   Site Wide
//////////////////////////////////////////////////////////////////////////////
///// souhtern-qa.css  ///////////////////////////////////////////////////////
///// Version 5.0      ///////////////////////////////////////////////////////
///// Ver Date 6/11/2025 //////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
*/
@font-face {
	font-family: "Montserrat Alternates";
	src: url("../fonts/Montserrat_Alternates/MontserratAlternates-SemiBoldItalc.otf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	margin-top: 5em;
}

h1 {
	font-family: "Montserrat Alternates";
	text-align: center;
	color: red;
	-webkit-text-stroke: .75px yellow;
	font-size: 2.5em;
}

h2 {
	font-family: "Montserrat Alternates";
	text-align: center;
	color: red;
	-webkit-text-stroke: .75px yellow;
	font-size: 1.75em;
}

h3 {
	font-family: "Montserrat Alternates";
	text-align: center;
	color: black;
}

/* navbar */
nav {
	top: 0;
	left: 0;
	right: 0;
	position: fixed;
	width: 100%;
	font-family: "Montserrat Alternates";
	background-color: white;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

	nav ul {
		width: 100%;
		list-style: none;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	nav li {
		height: 50px;
	}

	nav a {
		height: 100%;
		padding: 0 30px;
		text-decoration: none;
		display: flex;
		align-items: center;
		color: black;
	}

		nav a:hover {
			background-color: #f0f0f0;
		}

	nav li:first-child {
		margin-right: auto;
	}

.nav_img {
	height:40px;
	margin-right: 5px;
}


.sidebar {
	position: fixed;
	top: 0;
	right: 0;
	height: auto;
	width: 250px;
	background-color: rgba(0, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
	list-style: none;
	display: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

	.sidebar li {
		width: 100%;
	}

	.sidebar a {
		width: 100%;
	}

.menu-button {
	display: none;
}

@media(max-width: 1000px) {
	.hideOnMobile {
		display: none;
	}

	.menu-button {
		display: block;
	}
}

@media(max-width: 600px) {
	.sidebar {
		width: 40%;
	}
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/*  Drop Down  */
.dropdown {
	float: left;
	overflow: hidden;	
}

.dropdown img {
	float: right;
	width: 20px;
	margin-left: 5px;
}

.dropdown .dropbtn {
	font-family: inherit;
	background-color: inherit;
	font-size: 100%;
	height: 100%;
	padding: 0 30px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: black;
	border: none;
	outline: none;
	height: 50px;
}

.dropdown-content {
	display: none;
	position: absolute;	
	background-image: linear-gradient( #335c81 0%, #ffffff 74%);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}
/*-------------------------------------------------------------------------------------------------------------------------*/
/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
	.column {
		flex: 50%;
	}
}
/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.row {
		flex-direction: column;
	}
}