@import url('./plugins/fontawesome/css/all.min.css');
@import url('./styles/forms.css');

/* global variables */
:root {
	--border-radius: 10px;

	/* form styles */
	--button-bg-color: var(--color-primary);
	--button-text-color: var(--color-primary-text);
	--button-hover-bg-color: var(--color-primary-dark);
	--button-hover-text-color: var(--color-primary-text);
	--button-border-radius: var(--border-radius);

	--input-field-bg-color: rgb(245, 245, 245);
	--input-field-border-color: transparent;
	--input-field-border-radius: var(--border-radius);

	/*
	use unicode characters for icons
	https://fontawesome.com/v5/docs/web/advanced/css-pseudo-elements
	*/
	--input-radio-icon: '\f111';
	--input-radio-icon-weight: 300;

	--input-radio-checked-icon: '\f058';
	--input-radio-checked-icon-weight: 600;

	--input-checkbox-icon: '\f0c8';
	--input-checkbox-icon-weight: 300;

	--input-checkbox-checked-icon: '\f14a';
	--input-checkbox-checked-icon-weight: 600;

	/* HIL */
	--hil-border: 1px solid #ccc;
	--hil-sidebar-background-color: #f5f5f5;

	--hil-article-border: 1px solid #ccc;
	/* END HIL */
}
* {
	box-sizing: border-box;
}

/* montserrat-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/montserrat-v31-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/montserrat-v31-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* satisfy-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Satisfy';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/satisfy-regular.woff2') format('woff2');
}

a {
	color: rgba(184, 77, 133, 1);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0px;
	padding: 0px;
	background-color: white;
	font-size: medium;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0px;
	padding: 0.5em 0px;
	font-weight: 700;
}

img {
	max-width: 100%;
	border-style: none;
}

textarea {
	resize: vertical;
}
ul li {
	text-align: left;
}

video::-webkit-media-controls-fullscreen-button {
	display: none !important;
}

a[href^='tel:'],
a[href^='mailto:'] {
	/* prevents word break, maintains display type */
	white-space: nowrap;
}

.Admin {
	display: inline-block;
	width: 100%;
	background-color: #d1d1d3;
	text-align: left;
}
.Admin a {
	color: rgba(149, 159, 176, 1);
	font-size: xx-small;
	margin-left: 10px;
}

.Application-Form input,
.Application-Form textarea {
	width: 90%;
}
.Application-Form label {
	display: inline-block;
	margin-right: 23px;
}

.Application-Form label input {
	text-align: left;
	width: auto;
	min-width: 0px;
}

.Application-Row {
	width: 97%;
	display: inline-block;
	padding-top: 2%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 2%;
	margin-bottom: 15px;
}
.Application-Signature {
	font-family: 'Satisfy', cursive;
	color: rgba(82, 80, 80, 1);
	font-style: italic;
	font-size: 2em;
}

.BackToTop {
	position: fixed;
	z-index: 10;
	right: 10px;
	bottom: 10px;
	background-color: #fcf7f7;
	padding: 10px;
	color: white;
	font-family: sans-serif;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	font-size: medium;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
}

.BackToTop a {
	display: inline-block;
	padding: 10px;
	background-color: rgba(184, 77, 133, 1);
	border-radius: 5px;
	color: white;
	text-decoration: none;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	font-size: 0.8em;
	transition:
		color 0.25s,
		background-color 0.25s;
	line-height: normal;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
}

.BackToTop a:hover {
	color: #ffffff;
	background-color: rgba(163, 103, 134, 1);
}

.BackToTop #BackToTop {
	position: relative;
	display: inline-block;
	cursor: pointer;
	font-size: 20px;
	width: 50px;
}

.BackToTop #BackToTop i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.BackToTop #CloseBTT {
	position: absolute;
	left: -10px;
	top: -10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.Box-2M {
	width: 46%;
	margin-top: 32px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 3%;
}

.Box-2L {
	width: 47%;
	margin-top: 32px;
	display: inline-block;
	vertical-align: top;
	float: left;
}
.Box-2R {
	width: 47%;
	margin-top: 32px;
	display: inline-block;
	vertical-align: top;
	float: right;
}
.Box-2L p,
.Box-2R p,
.Box-2M p,
.Box-80 p,
.Box-3 ul li,
.Box-2R ul li {
	line-height: 1.5em;
}
.Box-3 {
	width: 27%;
	display: inline-block;
	vertical-align: top;
	margin-top: 64px;
	margin-left: 3%;
	margin-right: 3%;
}
.Box-3 p {
	text-align: left;
	line-height: 1.5em;
}
.Box-3 p i {
	color: rgba(39, 71, 128, 1);
}
.Box-80 {
	width: 80%;
	display: block;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.Box-2 {
	width: 45%;
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 4%;
	min-width: 205px;
	vertical-align: top;
}
.Box-2-Stroke {
	width: 43%;
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 4%;
	min-width: 205px;
	border: 1px solid rgba(224, 213, 213, 1);
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
	vertical-align: top;
}
.Box-4 {
	width: 20%;
	display: inline-block;
	margin-bottom: 15px;
	margin-right: 4%;
	min-width: 205px;
}

.Box-Full {
	width: 100%;
	text-align: left;
	margin-top: 40px;
	margin-bottom: 40px;
	overflow-y: hidden;
}

.Button a {
	display: inline-block;
	background-color: #b84d85;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	border-radius: 8px;
}
.Button a:hover {
	background-color: rgba(143, 27, 88, 1);
}
.Contact-Check {
	text-align: left;
}

.Contact-Frame {
	display: inline-block;
	width: 1200px;
	max-width: 100%;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.75);
	border-radius: 15px;
	box-shadow: 2px 2px 4px black;
}

.Container {
	width: 1600px;
	display: inline-block;
	max-width: 90%;
}
.Container-Left {
	text-align: left;
}

.EZPost-Article-Sidebar iframe {
	width: 100%;
	height: 1500px;
	border-left: 1px solid #087299;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
}
.Footer {
	width: 100%;
	margin-top: 32px;
	padding-bottom: 80px;
	background-color: rgba(110, 126, 154, 1);
	color: rgba(255, 255, 255, 1);
}

.Footer-Box-25 {
	width: 20%;
	margin-top: 32px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin-left: 2%;
	margin-right: 2%;
}

.Footer-Box-50 {
	width: 45%;
	display: inline-block;
	vertical-align: top;
	margin-top: 32px;
	text-align: left;
	margin-left: 2%;
	margin-right: 2%;
}
.Footer-Menu {
}

.Footer-Menu a {
	color: rgba(255, 255, 255, 1);
	display: inline-block;
	width: 100%;
	padding-left: 1%;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
}
.Footer-Menu a:hover {
	text-decoration: none;
	background-color: rgba(61, 83, 122, 1);
}
.Footer p {
	margin-top: 0px;
}

.Footer p a {
	line-height: 2em;
	color: rgba(255, 255, 255, 1);
}

.Footer ul {
	margin-top: -7px;
}

.Header {
	width: 100%;
	margin-top: 15px;
}

.Header-Bar {
	display: inline-block;
	width: 100%;
	background-color: rgba(39, 71, 128, 1);
	padding-top: 15px;
}
.Header-Right {
	display: inline-block;
	float: right;
	margin-top: 39px;
	padding-right: 15px;
}
.Header-Right a {
	margin-left: 15px;
	display: inline-block;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: rgba(184, 77, 133, 1);
	text-decoration: none;
	color: #ffffff;
	border-radius: 5px;
}
.Header-Right a:hover {
	background-color: rgba(189, 105, 149, 1);
}
.Hero {
	display: inline-block;
	margin-top: 15px;
}
.Hero-Text {
	margin-top: -18%;
	display: inline-block;
	float: left;
	position: relative;
	color: rgba(255, 255, 255, 1);
	padding-left: 2%;
	padding-right: 2%;
	border-radius: 0px 75px 75px 0px;
	width: 47%;
	padding-top: 15px;
	padding-bottom: 15px;
	background-image: -webkit-linear-gradient(
		270deg,
		rgba(39, 71, 128, 0.83) 0%,
		rgba(13, 25, 46, 0.76) 100%
	);
	background-image: -moz-linear-gradient(
		270deg,
		rgba(39, 71, 128, 0.83) 0%,
		rgba(13, 25, 46, 0.76) 100%
	);
	background-image: -o-linear-gradient(
		270deg,
		rgba(39, 71, 128, 0.83) 0%,
		rgba(13, 25, 46, 0.76) 100%
	);
	background-image: linear-gradient(
		180deg,
		rgba(39, 71, 128, 0.83) 0%,
		rgba(13, 25, 46, 0.76) 100%
	);
}
.Hero-Text h1 {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.Icon-Top {
	color: rgba(184, 77, 133, 1);
	font-size: 3em;
}

.Link {
	display: inline-block;
}

.Link a {
	display: inline-block;
	padding: 35px;
	margin: 35px 18px 0px 18px;
	border-radius: 4px;
	border: solid 1px #6e7e9a;
	width: 300px;
	text-align: center;
	vertical-align: top;
}

.Link a:hover {
	background-color: #b84d85;
	color: white;
	text-decoration: none;
}

.Link i {
	display: block;
	font-size: 2em;
	margin-bottom: 8px;
}

.Logo {
	width: 438px;
	display: inline-block;
	float: left;
	max-width: 100%;
}
.Mission-Vision-Section {
	margin-top: 32px;
}

.Mission-Vision-Section .Box-2L,
.Mission-Vision-Section .Box-2R {
	margin-top: 0px;
}

/* Navigation styles */
.Nav-Row {
	display: inline-block;
	background-color: #ffffff;
	width: 100%;
}

.Nav-Inline-Block {
	display: inline-block;
	width: 100%;
}

nav {
	display: flex;
	list-style: none;
	justify-content: center;
}

nav menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style-type: none;
	list-style-image: none;
	padding-left: 0px;
	margin: 0px;
}

nav li {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
	position: relative;
	padding: 0.5em 0px;
	border-bottom: 3px solid #ffffff;
	border-radius: 5px;
}
nav li ul {
	padding-left: 0px;
	text-align: left;
}
nav li ul li {
	text-align: left;
	padding-left: 0px;
	display: block;
}

nav a {
	text-decoration: none;
	color: #274780;
	padding: 0.5em 1.5em;
	display: inline-block;
	border-right: 1px solid #99a5bb;
}

nav li ul li a {
	border-right: none;
}

nav a:hover {
	text-decoration: none;
}

nav li:hover {
	border-bottom: 3px solid #b84d85;
}

.menu-toggle {
	display: none;
	font-family: inherit;
	font-size: inherit;
}

/* Dropdown content */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	top: 100%; /* Position the dropdown below the menu item */
	left: 0;
}

.dropdown-content a {
	text-align: left;
	display: block;
	padding: 8px 12px; /* Bring items closer to the left edge */
}

/* Show dropdown when active */
.dropdown-content.show {
	display: block;
}

.post-card {
	margin-top: 25px;
	min-height: 372px;
}
.post-card i {
	color: #ffffff;
	font-size: 40px;
	background-image: -webkit-linear-gradient(
		270deg,
		rgba(39, 71, 128, 1) 0%,
		rgba(13, 25, 46, 1) 100%
	);
	background-image: -moz-linear-gradient(
		270deg,
		rgba(39, 71, 128, 1) 0%,
		rgba(13, 25, 46, 1) 100%
	);
	background-image: -o-linear-gradient(
		270deg,
		rgba(39, 71, 128, 1) 0%,
		rgba(13, 25, 46, 1) 100%
	);
	background-image: linear-gradient(
		180deg,
		rgba(39, 71, 128, 1) 0%,
		rgba(13, 25, 46, 1) 100%
	);
	width: 55px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
}

.Review-Section {
	margin-top: 25px;
	text-align: center;
}

.Review-Section h2 {
	color: #274780;
	font-size: 2em;
}

.Review-Grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 380px));
	justify-content: center;
	margin-top: 32px;
}

.Review-Card {
	background-color: #ffffff;
	border: 1px solid rgba(224, 213, 213, 1);
	border-radius: 8px;
	display: block;
	padding: 10px;
	text-align: left;
	transition:
		box-shadow 0.25s,
		transform 0.25s;
}

.Review-Card:hover {
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.14);
	text-decoration: none;
	transform: translateY(-3px);
}

.Review-Card img {
	display: block;
	width: 100%;
}

.Review-Buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
}

.Review-Buttons .Button {
	display: inline-block;
}

.Row-Contact {
	background-color: #4f525b;
	margin-top: 62px;
	padding: 1em;
	color: #ffffff;
	border-radius: 8px;
	background-image: url(Images-Main/BG-Contact.jpg);
	background-size: cover;
	background-attachment: fixed;
}
.Row-Contact-Button {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}

.Row-Contact-Button a {
	color: rgba(255, 255, 255, 1);
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 8px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	text-decoration: none;
}
.Row-Contact-Button a:hover {
	background-color: rgba(255, 255, 255, 1);
	text-decoration: none;
	color: rgba(184, 77, 133, 1);
}
.Row-K {
	width: 100%;
	margin-top: 32px;
	padding-top: 32px;
	padding-bottom: 32px;
	color: #ffffff;
	background-color: #274780;
	background-image: -webkit-linear-gradient(
		270deg,
		rgba(54, 97, 173, 1) 0%,
		rgba(19, 36, 66, 1) 100%
	);
	background-image: -moz-linear-gradient(
		270deg,
		rgba(54, 97, 173, 1) 0%,
		rgba(19, 36, 66, 1) 100%
	);
	background-image: -o-linear-gradient(
		270deg,
		rgba(54, 97, 173, 1) 0%,
		rgba(19, 36, 66, 1) 100%
	);
	background-image: linear-gradient(
		180deg,
		rgba(54, 97, 173, 1) 0%,
		rgba(19, 36, 66, 1) 100%
	);
	padding-left: 5%;
	padding-right: 5%;
}

.Row-K h2 {
	font-size: 3vw;
}

.Rule-Logo {
	display: inline-block;
	width: 100%;
	border-top: 15px solid #274780;
	margin-top: 105px;
	box-sizing: content-box;
}

.Rule-Logo img {
	display: inline-block;
	width: 100px;
	margin-top: -65px;
	border-radius: 180px;
}

.T1 {
	font-size: 2em;
}
.Title {
	font-size: 2em;
	font-weight: bold;
	margin-top: 0px;
}
@media (max-width: 1350px) {
	.Hero-Text {
		margin-top: -25%;
	}
	.Footer .Button a {
		padding-left: 5px;
		padding-right: 5px;
		font-size: small;
	}
	.Review-Grid {
		gap: 16px;
		grid-template-columns: repeat(3, minmax(0, 350px));
		justify-content: center;
	}

	.Review-Card {
		padding: 8px;
	}
	.Mission-Vision-Section {
		margin-top: 20px;
	}

	.Mission-Vision-Section .Box-2L,
	.Mission-Vision-Section .Box-2R {
		float: none;
		width: 80%;
		display: block;
		margin-top: 24px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.Mission-Vision-Section .Box-2L p,
	.Mission-Vision-Section .Box-2R p {
		text-align: left;
	}
}

@media (max-width: 1100px) {
	.Logo {
		float: none;
	}
	.Header-Right {
		margin-left: 0px;
		margin-right: 0px;
		width: 100%;
		float: none;
		margin-top: 15px;
		margin-bottom: 15px;
		padding-right: 0px;
		text-align: center;
	}
	.Row-K h2 {
		font-size: xx-large;
	}
	.Review-Grid {
		gap: 16px;
		grid-template-columns: repeat(2, minmax(0, 350px));
		justify-content: center;
	}

	.Review-Card {
		padding: 8px;
	}
}

@media (max-width: 1350px) {
	.Nav {
		display: none;
	}
	.Header-Bar {
		display: none;
	}
	#Menu {
		display: inline-block;
	}
	.Hero {
		margin-top: 0px;
	}
	.Container {
		max-width: 95%;
	}
	.Hero-Text {
		border-radius: 8px;
		width: 93%;
		float: none;
		margin-top: -2%;
		background-image: -webkit-linear-gradient(
			270deg,
			rgba(39, 71, 128, 1) 0%,
			rgba(39, 71, 128, 1) 16.84%,
			rgba(13, 25, 46, 1) 100%
		);
		background-image: -moz-linear-gradient(
			270deg,
			rgba(39, 71, 128, 1) 0%,
			rgba(39, 71, 128, 1) 16.84%,
			rgba(13, 25, 46, 1) 100%
		);
		background-image: -o-linear-gradient(
			270deg,
			rgba(39, 71, 128, 1) 0%,
			rgba(39, 71, 128, 1) 16.84%,
			rgba(13, 25, 46, 1) 100%
		);
		background-image: linear-gradient(
			180deg,
			rgba(39, 71, 128, 1) 0%,
			rgba(39, 71, 128, 1) 16.84%,
			rgba(13, 25, 46, 1) 100%
		);
	}
	.Hero {
		background-color: rgba(241, 241, 241, 1);
		padding-bottom: 32px;
	}
	.Hero img {
		border-bottom: 15px solid rgba(39, 71, 128, 1);
	}
	.Box-2M {
		width: 88%;
	}
	.Box-2M p {
		text-align: center;
	}
	.Container-Left {
		text-align: center;
	}
	.Box-3 {
		width: 80%;
	}
	.Box-2L {
		width: 100%;
	}
	.Box-2R {
		width: 100%;
	}
	.Footer-Box-50 {
		width: 90%;
	}
	.Footer-Box-25 {
		width: 45%;
	}
	.Family-Caregiver-Photo {
		width: 500px;
		max-width: 90%;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 850px) {
	.Box-2,
	.Box-2-Stroke,
	.Box-4 {
		min-width: 290px;
	}
	.Footer-Box-25 {
		width: 90%;
	}

	.EZPost-Article-Sidebar iframe {
		width: 100%;
		height: 1000px;
		border-left: 1px none #087299;
		border-top-style: none;
		border-right-style: none;
		border-bottom-style: none;
	}
	.Review-Grid {
		gap: 16px;
		grid-template-columns: minmax(0, 360px);
		justify-content: center;
		margin-left: 25px;
		margin-right: 25px;
	}

	.Review-Card {
		padding: 8px;
	}
}

@media only screen and (max-width: 1300px) {
	nav {
		flex-direction: column;
		width: 100%;
		align-items: center;
	}

	nav ul {
		margin-top: 0;
		padding-left: 0;
		width: 100%;
		text-align: center;
	}

	nav li {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}

	nav li a {
		width: 100%;
	}

	.menu-toggle {
		display: flex;
		justify-content: center; /* Center the button horizontally */
		gap: 0.5em;
		align-items: center;
		padding: 1em;
		width: 100%;
		border: none;
		background-color: #274780;
		color: #ffffff;
		cursor: pointer;
	}

	.menu-toggle i {
		font-size: 1.5em;
	}

	#main-menu {
		display: none;
		background-color: #ffffff;
		width: 100%;
	}

	.menu-toggle .close {
		display: none;
	}

	#main-nav.active .menu-toggle .close {
		display: var(--fa-display, inline-block);
	}

	#main-nav.active .menu-toggle .open {
		display: none;
	}

	#main-nav.active #main-menu {
		display: flex;
		flex-direction: column;
	}

	.dropdown-content {
		position: static;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.dropdown-content.show {
		display: block;
	}

	/* Prevent underlining dropdown links on hover/focus */
	nav .dropdown-content a,
	nav .dropdown-content a:active,
	nav .dropdown-content a:focus {
		text-decoration: none !important;
	}

	/* Center dropdown items on mobile */
	.dropdown-content a {
		text-align: center;
	}
}

@media (max-width: 500px) {
	.Header-Right a {
		font-size: 3vw;
	}
	.Header-Right {
	}
	.Review-Buttons {
		align-items: center;
		flex-direction: column;
	}
}

@media (max-width: 1580px) {
	.Nav-Item {
		padding-left: 1%;
		padding-right: 1%;
	}
	.Nav a {
		padding-left: 5px;
		padding-right: 5px;
	}
}
