@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-yellow: #ffde00;
  --color-blue: #00305b;
  --color-black: #000000;
}


body {
  color: var(--color-black);
  font: normal 300 16px "Roboto", sans-serif;
  margin: 0;
}


* {
  box-sizing: border-box;
}

a {
  color: var(--color-blue);
  outline: none;
  text-decoration: underline;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
}

a:hover {
  color: var(--color-black);
}

a.logo {
  background: url(logo1.png) center top no-repeat;
  background-size: contain;
  display: block;
  height: 60px;
  width: 220px;
}

div.logo2 {
background: url(logo2.png) center top no-repeat;
background-size: contain;
display: block;
height: 600px;
width: 130px;
margin: 0 auto;
}

h1 {
  font: normal 400 42px "Roboto", sans-serif;
  padding: 0;
}

h2 {
  font: normal 400 36px "Roboto", sans-serif;
  margin-bottom: 15px;
  padding: 0;
}

h3 {
  font: normal 700 28px/1.2em "Roboto", 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;
}


header>.contain {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

#epLang {
  background: url(globe.svg) no-repeat right 0px;
  background-size: 20px 23px;
  cursor: pointer;
  display: inline-block;
  padding: 2px 40px 2px 2px;
  position: relative;
  z-index: 1000;
  font-weight: 700;
  margin-inline-start: 50px;
}

#epLang>a {
  display: none;
}

#epLang>div {
  text-align: right;
}

#epLang a {
  text-decoration: none;
  color: #fff;
}

#epLang a:hover {
  text-decoration: underline;
  color: var(--color-yellow);
}

#epLangDrop {
  background: var(--color-blue);
  display: none;
  inset-inline-start: -10px;
  position: absolute;
  top: 25px;
  width: 215px;
  padding-top: 10px;
}

#epLangDrop a {
  display: block;
  font-weight: 500;
  padding: 4px 4px 4px 10px;
  text-align: start;
}

#epLang:hover #epLangDrop {
  display: block;
}

nav {
  display: flex;
  font: normal 400 18px "Roboto", sans-serif;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: var(--color-black);
  display: inline-block;
  padding: 0 15px;
  text-decoration: none;
}

nav a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

.banner_index{
background:url(banner1.png) no-repeat center center;
background-size:cover;
height:400px;
}

.banner {
  background-size: cover;
  display: block;
  padding: 0px 20px;
  margin: 0 auto;
}

.buttons {
  display: flex;
  flex-direction:column;
  justify-content: space-between;
  padding: 44px 15px;
}

.buttons a {
  align-items: center;
  background: var(--color-blue);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin: 10px 0;
  padding: 25px 15px 20px;
  text-decoration: none;
  width: 75%;
  height: 150px;
}

/* .buttons a span.icon {
  display: block;
  background: no-repeat center center url("");
  background-size: contain !important;
  width: 60px;
  height: 80px;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.buttons a:hover {
  text-decoration: underline;
}


/* .buttons a.report .icon {
  background-image: url(icon-online.svg);
}

.buttons a.phone .icon {
  background-image: url(icon-phone.svg);
}

.buttons a.question .icon {
  background-image: url(icon-question.svg);
}

.buttons a.follow .icon {
  background-image: url(icon-follow.svg);
} */

.buttons span.title {
  display: block;
  font-size: 22px;
  text-align: center;
  width: 100%;
}

/* content */
main {
  display: flex;
  flex-direction:row;
  padding: 20px 0;
  min-height: 60vh;
}
main.index {
  display: flex;
  padding: 20px 0;
  min-height: 60vh;
  margin:0 auto;
  width:100%;
}

section {
  display: block;
}

section.flex {
  display: flex;
  padding: 20px 0;
}

section.text-index{
display:flex;
flex-direction:row;
margin:0 auto;
min-width:1200px;
width:100%;
}


[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-90 {
  display: inline-block;
  padding: 10px 25px;
  margin-left: 150px;
  width:1000px;
}
.col-33 {
  display: flex;
  align-items: center;
  padding: 10px 25px;
}

.col-left {
  margin-right: 2%;
  padding: 10px 25px;
  width: 60%;
}

.col-right {
  padding: 10px 25px;
  width: 38%;
}

#epEmergency {
  padding: 10px 0;
  text-align: center;
}

#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;
}


#epPhone {}


select {
  font: normal 400 14px "Roboto", sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
}

button,
.submit {
  background: var(--color-blue);
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  margin: 15px 0;
  padding: 6px 24px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  border: 1px solid transparent;
}

button:disabled,
button:disabled:hover,
input.submit:disabled,
input.submit:disabled:hover {
  background: #ccc;
  cursor: default;
}

button:hover,
.submit:hover {
  color: var(--color-black);
  background: var(--color-yellow);
  border-color: var(--color-black);
}

.nowrap {
  white-space: nowrap;
}

/* faq */
h2.faq-head{
  margin-top: 50px;
}
.faq-subhead{
  text-decoration: underline;
}
.faq-index{
  font-size: 18px;
}

/* issues */

#epIssues {
  width: 100%;
}

#epIssues .category {
  display: flex;
  margin-bottom: 20px;
}

#epIssues .category {
  background: #1f3667;
}


#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: #fff;
  font: normal 700 20px "Roboto", sans-serif;
  padding: 20px 20px 20px 30px;
  width: 24%;
}

#epIssues .details {
  font: italic 400 11px "Roboto", 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 {
  background: #eee;
}

#epIssues .issuebox {
  background: #fff;
  padding-left: 20px;
  width: 76%;
}

#epIssues .name {
  font: normal 400 16px/20px "Roboto", sans-serif;
  padding: 5px 0;
}

#epIssues .desc {
  color: #777;
  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: 20px 0;
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

footer .line1 {
  float: left;
  padding-left: 10px;
}

footer .line2 {
  color: var(--color-black);
  float: right;
  padding-right: 10px;
}

footer .line2 a {
  color: var(--color-black);
}

footer .line2 a:hover {}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1200px !important;
}