:root {
  --light-blue: #3BBBEA;
  --light-blue-hover: #2aa3d4;
  --dark-blue: #1f3667;
}

body {
  color: var(--dark-blue);
  font: normal 400 16px sans-serif;
  margin: 0;
}

body.index {
  color: #333;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--light-blue);
  outline: none;
  text-decoration: underline;
}

a:hover {
  color: var(--light-blue-hover);
}

a.logo {
  background: url(logo1.svg) center top no-repeat;
  background-size: contain;
  display: block;
  height: 70px;
  width: 185px;
}

h1 {
  color: var(--dark-blue);
  font: normal 400 30px sans-serif;
  padding: 0;
}

h2 {
  color: var(--dark-blue);
  font: normal 400 24px sans-serif;
  margin-bottom: 15px;
  padding: 0;
}

h2.online {
  color: var(--dark-blue) !important;
  font: normal 400 24px sans-serif !important;
  margin-bottom: 15px !important;
  padding: 0 !important;
}

body.report h2 {
  font-size: 20px;
  color: white;
  justify-content: center;
  padding-top: 3px;
}

body.question h2 {
  font-size: 20px;
  color: white;
  justify-content: center;
  padding-top: 3px;
}

h3 {
  font: normal 700 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 {
  border-bottom: 1px solid var(--dark-blue);
  display: block;
}

.index header {
  border: none;
}

header>.contain {
  display: flex;
  justify-content: space-between;
  padding: 20px 25px;
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

#epLang {
  display: none;
  /* 
  display: flex;
  justify-content: space-between;
  padding: 15px;
  */
}

#epLang a {
  color: var(--dark-blue);
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
}

#epLang a:hover {
  color: #05bbda;
}

nav {
  display: flex;
  font: normal 700 18px sans-serif;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: var(--dark-blue);
  display: inline-block;
  line-height: 1.2;
  padding: 12px .5em;
  position: relative;
  text-decoration: none;
}

nav a::before {
  bottom: 0;
  border-bottom: 4px solid #3bbbea;
  box-sizing: border-box;
  content: "";
  left: 1px;
  position: absolute;
  transition: width .35s ease;
  width: 0;
}

nav a:hover {
  color: var(--dark-blue);
}

nav a:hover::before {
  width: 100%;
}



.banner {
  background: #ccc url(banner.jpg) no-repeat bottom center;
  background-size: cover;
  min-height: 400px;
  display: block;
  padding: 50px 0 100px;
}

.banner-alt {
  background: #ccc url(banner2.svg) no-repeat bottom center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0 100px;
}

.banner-button {
  background-color: var(--light-blue);
  color: white;
  font-size: 18px;
  padding: 10px 24px;
  width: 640px;
  border-radius: 0px;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
}

.buttons a {
  align-items: center;
  background: var(--dark-blue) url() no-repeat center 30px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  margin: 10px 0;
  padding: 115px 15px 20px;
  text-decoration: none;
  width: 22%;
}

.buttons a:hover {
  background-image: none !important;
  font-size: 21px;
  padding: 15px 30px;
  text-align: center;
}

.buttons a.report {
  background-image: url(report.svg);
  background-size: 32%;
}

.buttons a.question {
  background-image: url(question.svg);
  background-size: 32%;
}

.buttons a.follow {
  background-image: url(follow.svg);
  background-size: 32%;
}

.buttons span.title {
  display: block;
  font-size: 20px;
  text-align: center;
  width: 100%;
}

.buttons span.roll-text {
  display: none;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  width: 100%;
}

.buttons a:hover span.title {
  display: none;
}

.buttons a:hover span.roll-text {
  display: block;
}

/* content */

main {
  display: block;
  padding: 30px 0 70px;
}

.mainHome {
  padding: 50px 0 70px;
}

section {
  display: block;
}

section.flex {
  display: flex;
  padding: 20px 0;
}

.text-index {
  margin-top: 50px;
}

[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: 49%;
}

.question .phoneColumn {
  display: flex;
  flex-direction: column;
  align-items: end;

  .compdeptWrapper {
    width: 370px;
    border: 1px solid black;
    margin-top: 20px;
  }

  h2.phoneHeader.compdeptHeader {
    height: 54px;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
  
  .compdeptContent{
    padding: 0 5px;
  }
}

body.follow-page .col-left {
  width: 40%;
}

body.follow-page .col-right {
  width: 60%;
}

.col-right {
  padding: 10px 25px;
  width: 49%;
}

#epEmergency {
  padding: 10px 0;
  text-align: center;
  color: red;
  font-size: 17px;
}

#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;
  flex: 1;
}

#epDataPrivacy .text {
  color: var(--dark-blue);
}

#epDataPrivacy {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#epPhoneTable {
  border: 1px solid black;
  flex: 1;
  margin-left: auto;
  padding: 5px;
  width: 370px;
}

.output {
  border: 1px solid black;
  width: 370px;
  padding: 5px;
}

h2.phoneHeader {
  text-align: center;
  width: 370px;
  background-color: var(--dark-blue);
  margin: 16.6px 0 0 auto;
  color: white;
  height: 30px;
}

#epPhone {}

.report-box {
  border: 1px solid black;
  width: 370px;
  padding: 5px;
}

.report-title {
  text-align: center;
  width: 370px;
  background-color: var(--dark-blue);
  margin: 0;
  color: white;
  height: 30px;
}


select {
  font: normal 400 14px sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
}

button,
.submit {
  background: var(--light-blue);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  margin: 15px 0;
  padding: 6px 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-color: var(--light-blue-hover);
}

.nowrap {
  white-space: nowrap;
}

/* issues */

#epIssues {
  margin: 0 auto;
  width: 75%;
}

#epIssues .category {
  margin-bottom: 20px;
}

#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: var(--dark-blue);
  display: block;
  font: normal 700 25px sans-serif;
  padding: 20px 20px 20px 30px;
  width: 100%
}

#epIssues .details {
  color: var(--dark-blue);
  font: italic 400 16px sans-serif;
  position: absolute;
  right: 7px;
  text-decoration: underline;
  top: 3px;
}

#epIssues .issue {
  border: 1px solid var(--dark-blue);
  display: flex;
  margin-bottom: 10px;
  position: relative;
  flex-basis: auto;
  color: #fff;
}

#epIssues .issue:last-of-type {
  margin-bottom: 0;
}

#epIssues .issue:hover {}

#epIssues .issuebox {
  background: #fff;
  padding-left: 20px;
}

#epIssues .name {
  align-items: center;
  background-color: var(--dark-blue);
  color: #fff;
  display: flex;
  font: normal 400 20px/30px sans-serif;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 40%;
}

#epIssues .name:hover {}

#epIssues .desc {
  color: #777;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  padding: 15px;
  align-content: center;
  width: 59%;
}

#epIssues div.issue:hover .desc {
  color: var(--dark-blue);
}

input.text-input {
  margin: 5px 0 20px;
  min-width: 300px;
  padding: 5px;
}

.follow-page section span {
  font-size: 18px;
}

/* footer */

footer {
  border-top: 1px solid var(--dark-blue);
  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: #fff;
  float: right;
  padding-right: 10px;
}

footer .line2 a {}

footer .line2 a:hover {}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1200px !important;
}

.centered {
  text-align: center;
}