body {
	color: #fff;
	background: #4D4F53;
	font: normal 400 16px sans-serif;
	margin: 0;
}

body.index {
	color: #fff;
	background: #4D4F53;
}

* {
	box-sizing: border-box;
}

a {
	color: #fff;
	outline: none;
	text-decoration: underline;
}

a:hover {
	color: #fff;
}

a.logo {
	background: url(logo1.png) center top no-repeat;
	background-size: contain;
	display: block;
	height: 50px;
	width: 121px;
}

h1 {
	color: #fff;
	font: normal 400 30px sans-serif;
	padding: 0;
}

h2 {
	color: #fff;
	font: normal 400 24px sans-serif;
	margin-bottom: 15px;
	padding: 0;
}

h3 {
	font: normal 400 1.17em/1.27em sans-serif;
	margin: 1em 0;
	padding: 0;
}

img {
	border: 0;
	display: block;
}

ol,
ul {
	margin: 1em 0;
	padding: 0 0 0 1.25em;
}

p {
	margin: 1em 0;
	padding: 0;
}

.contain {
	margin: 0 auto;
	width: 1200px;
}

.fill {
	min-width: 1200px;
	width: 100%;
}

.bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}

.top {
	margin-top: 0;
	padding-top: 0;
}


/* header */

header {
	display: block;
}

.index header {
	border: none;
}

header>.contain {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
}

#epAttention {
	padding: 12px 0;
	text-align: center;
	background-color: #9E3039;
	color: #fff;
	font-size: 15px;
}

#epLang {
	display: none;
	/* 
  display: flex;
  justify-content: space-between;
  padding: 15px;
  */
}

#epLang a {
	color: #1f3667;
	display: inline-block;
	font-size: 12px;
	text-decoration: none;
}

#epLang a:hover {
	color: #05bbda;
}

nav {
	display: flex;
	font: normal 400 18px sans-serif;
	justify-content: space-between;
	align-items: flex-end;
}

nav a {
	color: #fff;
	display: inline-block;
	padding: 0 15px;
	text-decoration: none;
	text-transform: uppercase;
}

nav a:hover {
	color: #fff;
}

.banner {
	background-size: cover;
	min-height: 400px;
	display: block;
	padding: 0;
	position: relative;
}

.fadeimages {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 1130px;
	height: 430px;
	margin: 0 auto;
}

.fadeimages div {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 430px;
	width: 100% !important;
}

.fadeimages div[style*="img1.jpg"] {
	background-position: center 30% !important;
}

.fadeimages div[style*="img2.jpg"] {
	background-position: center 20% !important;
}

.fadeimages div[style*="img4.jpg"] {
	background-position: center 40% !important;
}

.banner-text {
	color: #fff;
	font-size: 42px;
	font-weight: 600;
	text-align: center;
	margin: 0;
	padding: 30px 120px;
	background: rgba(77, 79, 83, 0.7);
	position: absolute;
	top: 19%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 60%;
	max-width: 900px;
}

.buttons-container {
	margin-top: -130px;
}

.buttons {
	display: flex;
	justify-content: space-between;
	gap: 50px;
	padding: 10px 100px;
}

.buttons a {
	align-items: center;
	background: #9E3039;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px 0;
	padding: 30px 15px 20px;
	text-decoration: none;
	flex: 1;
	min-height: 140px;
	border-radius: 25px;
	position: relative;
	transition: background 0.3s ease;
}

.buttons a::before {
	content: '';
	display: none;
	width: 80px;
	height: 80px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 0.3s ease;
}

.buttons a:hover {
	background: #3699b2;
}

.buttons a:hover::before {
	display: block;
}

.buttons a.report::before {
	background-image: url(report.svg);
	filter: brightness(0) invert(1);
}

.buttons a.phone::before {
	background-image: url(report.svg);
	filter: brightness(0) invert(1);
}

.buttons a.question::before {
	background-image: url(question.svg);
	filter: brightness(0) invert(1);
}

.buttons a.follow::before {
	background-image: url(follow.svg);
	filter: brightness(0) invert(1);
}

.buttons span.title {
	display: block;
	font-size: 22px;
	text-align: center;
	width: 80%;
	transition: opacity 0.3s ease;
}

.buttons a:hover span.title {
	display: none;
}

.buttons span.roll-text {
	display: none;
}

.hover-display {
	background: #3699b2;
	color: #fff;
	padding: 20px 30px;
	margin: 0 100px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 20px;
	line-height: 24px;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hover-text {
	display: none;
}

.buttons-container:has(.report:hover) .hover-display {
	opacity: 1;
	visibility: visible;
}

.buttons-container:has(.report:hover) .report-text {
	display: block;
}

.buttons-container:has(.question:hover) .hover-display {
	opacity: 1;
	visibility: visible;
}

.buttons-container:has(.question:hover) .question-text {
	display: block;
}

.buttons-container:has(.follow:hover) .hover-display {
	opacity: 1;
	visibility: visible;
}

.buttons-container:has(.follow:hover) .follow-text {
	display: block;
}

/* content */

main {
	display: block;
	padding: 30px 0 70px;
}

.mainHome {
	padding: 50px 50px 70px;
}

section {
	display: block;
}

section.flex {
	display: flex;
	padding: 20px 0;
}

.text-index {
	margin-top: 10px;
}

.text-index a {
	font-weight: 600;
}

.text-index h2 {
	font-weight: 600;
}

[class^="col-"] {
	/* Applies to all CSS classes that start with "col-" */
	vertical-align: top;
}

.col-100 {
	display: inline-block;
	padding: 10px 25px;
	width: 100%;
}

.col-66 {
	display: inline-block;
	padding: 10px 25px;
	vertical-align: top;
	width: 66%;
}

.col-50 {
	/* Column-50 is technically 49% so columns do not break to a new line in all browsers */
	display: inline-block;
	padding: 10px 25px;
	width: 49%;
}

.col-33 {
	display: inline-block;
	padding: 10px 25px;
	width: 33%;
}

.col-left {
	margin-right: 2%;
	padding: 10px 25px;
	width: 60%;
}

.col-right {
	padding: 10px 25px;
	width: 38%;
}

.epEmergencyContainer {
	color: #fff;
	border-bottom: 25px solid #9E3039;
}

#epEmergency {
	padding: 10px 0;
	text-align: center;
	max-width: 1150px;
	margin: 0 auto;
}

#epEmergency br {
	display: none;
}

#epEmergency strong {
	display: inline-block;
	margin-right: 7px;
}

#epDDN {
	font-weight: bold;
	white-space: nowrap;
}

.listor {
	list-style: none;
	margin: 1em 0;
}

/* dp and phone */

#epDataPrivacy .online,
#epDataPrivacy .phone,
#epDataPrivacy .output {
	display: block;
}

#epDataPrivacy ol.dropDowns {
	list-style: none;
	margin: 0;
	padding: 0;
}

#epDataPrivacy .text {}

#epPhone {
	max-width: 400px;
}


select {
	font: normal 400 14px sans-serif;
	margin: 5px 0 15px;
	min-width: 355px;
	padding: 5px;
}

button,
.submit {
	background: #3699b2;
	border: none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 17px;
	margin: 15px 0;
	padding: 12px 24px;
	text-decoration: none;
}

button:disabled,
button:disabled:hover,
input.submit:disabled,
input.submit:disabled:hover {
	background: #ccc;
	cursor: default;
}

button:hover,
.submit:hover {
	color: #fff;
	background: #c93348;
}

.nowrap {
	white-space: nowrap;
}

/* issues */

#epIssues {
	width: 70%;
	margin: 0 auto;
}

#epIssues .category {
	display: flex;
	margin-bottom: 20px;
}

#epIssues .category {
	border: 2px solid #000;
	border-radius: 15px;
}


#epIssues .catdesc {
	display: none;
}

#epIssues .catname {
	color: #fff;
	font: normal 400 20px sans-serif;
	padding: 20px 20px 20px 30px;
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #9E3039;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

#epIssues .details {
	display: none;
	font: italic 400 11px sans-serif;
	position: absolute;
	right: 7px;
	text-decoration: underline;
	top: 3px;
}

#epIssues .issue {
	margin-bottom: 10px;
	padding: 0 5px 0 10px;
	position: relative;
}

#epIssues .issue:last-of-type {
	margin-bottom: 0;
}

#epIssues .issue:hover {
	color: #F47920;
}

#epIssues .issuebox {
	background: #4D4F53;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 10px 0;
	padding-left: 20px;
	width: 77%;
}

#epIssues .name {
	font: normal 400 16px/20px sans-serif;
	padding: 3px 0 3px 15px;
	position: relative;
}

#epIssues .name::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #fff;
}

#epIssues .name:hover::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #F47920;
}

#epIssues .desc {
	color: #fff;
	font-size: 14px;
	padding: 0 60px 10px 15px;
}

input.text-input {
	margin: 5px 0 20px;
	min-width: 300px;
	padding: 5px;
}

.follow-page section span {
	font-size: 18px;
}

/* footer */

footer {
	font-size: 14px;
	padding: 0 0 20px;
}

footer th {
	display: none;
}

footer td {
	padding: 5px 0 0 !important;
}

footer .line1 {
	float: left;
	padding-left: 10px;
}

footer .line2 {
	color: #fff;
	float: right;
	padding-right: 10px;
}

footer .line2 a {
	color: #fff;
	text-decoration: underline;
}

footer .line2 a:hover {
	color: #fff;
}

footer table {
	font-size: 12px;
	margin: 15px auto 0 !important;
	width: 1200px !important;
}

.center {
	text-align: center;
}

.report-area {
	padding-top: 30px;
}

.strong {
	font-weight: 600;
}

.faqPage h2,
.faqPage h3 {
	font-weight: 600;
}

.faqPage h2 {
	padding-top: 20px;
}

/* FAQ page styles */

.faqPage p:not(:has(strong)) {
	padding-left: 3em;
}

.faqPage ul {
	padding-left: 4em;
}