@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
  box-sizing: border-box;
}

body {
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  font: normal 400 14px/1.5 'Roboto', sans-serif;
  margin: 0;
}

a {
  color: #33658a;
  outline: none;
  text-decoration: underline;
}

a:hover {
  color: #333;
}

h1 {
  color: #FF5A00;
  font: normal 700 58px 'Roboto', sans-serif;
  padding: 0;
}

h2 {
  color: #FF5A00;
  font: normal 700 24px 'Roboto', sans-serif;
  padding: 0;
}

h3 {
  color: #FF5A00;
  font: normal 700 18px 'Roboto', sans-serif;
  margin: 1em 0 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: 1000px;
}

.fill {
  min-width: 1000px;
  width: 100%;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.top {
  margin-top: 0;
  padding-top: 0;
}


/* header */

header {
  display: block;
}

#epLang {
  color: black;
  display: block;
}

#epLang a {
  display: none;
}

header .flex {
  display: flex;
  justify-content: space-between;
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: inline-block;
  height: 30px;
  margin: 20px 30px 20px 10px;
  width: 247px;
}

nav {
  align-items: center;
  display: flex;
  flex-grow: 0;

}

nav a {
  color: #FF5A00;
  display: inline-block;
  font: normal 500 16px/25px 'Roboto', sans-serif;
  padding: 0 10px;
  position: relative;
  text-align: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  text-decoration: none;
}

nav a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 5px;
  width: calc(100% - 10px);
  height: 1px;
  background-color: #FF5A00;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}

nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

nav a:hover {
  color: #FF5A00;
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

/* content */

main {
  display: block;
  padding: 0 0 50px;
}

section {
  display: flex;
  justify-content: space-between;
}

/* Index Home Page */

#commitment {
  margin: 0 auto;
  width: 900px;
}

#commitment h1 {
  text-align: center;
  margin-bottom: 10px;
}

#reportOnlinePhone {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  min-height: 261px;
  width: 900px;
}

#reportOnlinePhone > div {
  width: 48%;
}

#afterReport {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 900px;
}

#epEmergency {}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

#epDataPrivacy {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 25px;
}

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {
  display:none;
}

ol.ol1 {
  margin-top: 0;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

select {
  font: normal 400 14px 'Roboto', sans-serif;
  margin: 2px 0 15px;
  padding: 5px;
}

button {
  background: #FF5A00;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
}

button:hover {
  background: #333;
  color: #fff;
}

button:disabled {
  background: #ddd;
  cursor: default;
}

button:hover:disabled {
  background: #ddd;
}

.nowrap {
  white-space: nowrap;
}

#epPhone {
  display: inline-block
}

#epIssues {
  width: 100%;
}

#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  font: normal 700 16px/20px 'Roboto', sans-serif;
}

#epIssues .details {
  font-size: 12px;
  margin-left: auto;
}

#epIssues .issue {
  color: #0000ff;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  position: relative;
}

#epIssues .issue:hover {
  color: #008000;
}

#epIssues .name {
  font: normal 700 14px/20px 'Roboto', sans-serif;
}

#epIssues .desc {
  flex-basis: 100%;
  padding: 5px 0;
}

/* footer */

footer {
  background: #FF5A00;
  font-size: 12px;
  padding: 20px 0;
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

footer .line1 {
  float: left;
  padding-left: 10px;
}

footer .line2 {
  color: #FF5A00;
  float: right;
  padding-right: 10px;
}

footer .line2 a {
  color: black;
  text-decoration: none;
}

footer .line2 a:hover {}

footer table {
  margin: 0 auto !important;
  width: 1000px !important;
}