@font-face {
    font-family: 'Glypha LT Std';
    src: url('GlyphaLTStd-Thin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Glypha LT Std';
    src: url('GlyphaLTStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Glypha LT Std';
    src: url('GlyphaLTStd.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Glypha LT Std';
    src: url('GlyphaLTStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Glypha LT Std';
    src: url('GlyphaLTStd-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

body {
    color: #121212;
    font: normal 400 16px 'Glypha LT Std', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.index {
    color: #121212;
}

* {
    box-sizing: border-box;
}

a {
    color: #085280;
    outline: none;
    text-decoration: underline;
}

a:hover {
    color: #121212;
}

a.logo {
    background: url(logo1.jpg) center top no-repeat;
    background-size: contain;
    display: block;
    height: 80px;
    width: 268px;
}

.index h1 {
    color: unset;
    font: normal 700 38px 'Glypha LT Std', sans-serif;
    padding: 0;
}

h1 {
    color: #121212;
    font: normal 400 30px 'Glypha LT Std', sans-serif;
    padding: 0;
}

h2 {
    color: #121212;
    font: normal 700 24px 'Glypha LT Std', sans-serif;
    padding: 0;
}

h3 {
    font: normal 700 1.17em/1.27em 'Glypha LT Std', 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: 2px solid #085280 !important;
    display: block;
    background-color: #05314d;
}

header .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index header {
    border: none;
}

header > .contain {
}

#epLang {
    display: none;
    /*
  display: flex;
  justify-content: space-between;
  padding: 15px;
  */
}

#epLang a {
    color: #121212;
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
}

#epLang a:hover {
    color: #05bbda;
}

nav {
    display: flex;
    align-items: stretch;
    font: normal 400 13px 'Glypha LT Std', sans-serif;
}

nav a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 12px;
    text-decoration: none;
    text-align: center;
    position: relative;
    max-width: 145px;
    overflow: hidden;
}

nav a:hover {
    color: #fff;
    text-decoration: underline;
    overflow: visible;
}

nav a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #fff;
}

#epResources {
    /*Dropdown Box*/
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 210px;
    z-index: 10;
    text-align: left;
}
#epResources span {
    background: #085280;
    color: white;
    cursor: pointer;
    display: block;
    line-height: 30px;
    padding: 5px 10px;
    width: 210px;
}
#epResources span:hover {
    background: #238196;
    color: white;
}

#epAttention {
    padding: 10px 0;
    margin: 0px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #085280;
}

#epAttention strong {
    color: red;
}

/* Hero Section (3 columns) */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 500px;
    padding-top: 60px;
    background: url(banner.jpg) bottom no-repeat;
    background-size: cover;
}

.hero-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #121212;
}

.quote {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0 0 10px;
    font-style: italic;
}

.ceo {
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-buttons a {
    background: #085280 no-repeat center left 15px;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 100px;
    padding: 10px 15px 10px 85px;
    transition: 0.2s ease;
    border-radius: 45px;
    width: 300px;
}

.hero-buttons a:hover {
    background-color: #238196;
}

.hero-buttons a::after {
    content: '\276F';
    margin-left: auto;
    font-size: 40px;
    color: #fff;
    display: inline-block;
}

.hero-buttons a:hover::after {
}

.hero-buttons a.report {
    background-image: url(report.png);
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: 17px center;
}

.hero-buttons a.question {
    background-image: url(question.png);
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: 17px center;
}

.hero-buttons a.follow {
    background-image: url(follow.png);
    background-size: 55px 55px;
    background-repeat: no-repeat;
    background-position: 17px center;
}

.hero-buttons span.title {
    display: block;
    font-size: 16px;
    width: 100%;
    font-weight: 400;
}

.hero-buttons a:hover span.title {
}

/*report.html*/
.phone-contact {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.phone-contact p {
    font-size: 20px;
}

.phone-contact img.phone-icon {
    width: 50px;
    height: 50px;
    margin-right: 40px;
}

#thirdParty {
    font-size: 14px;
}

.strong {
}

/* content */

main {
    display: block;
    padding: 30px 20px 50px;
}

section {
    display: block;
}

section.flex {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 600px;
}

main .flex {
    display: flex;
    justify-content: space-between;
}

div.col-left {
    margin-right: 2%;
    padding: 0 10px;
    width: 60%;
}

div.col-right {
    padding: 0 10px;
    width: 38%;
}

#epEmergency {
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    max-width: 1000px;
    text-align: center;
}

#epEmergency br {
}

#epEmergency strong {
    display: inline-block;
    margin-right: 7px;
}

#epDDN {
    font-weight: bold;
    white-space: nowrap;
}

.listor {
    list-style: none;
    margin: 1em 0;
}

#epDataPrivacy .online,
#epDataPrivacy .phone,
#epDataPrivacy .output {
    display: block;
}

#epDataPrivacy ol.dropDowns {
    list-style: none;
    margin: 0;
    padding: 0;
}

#epDataPrivacy .text {
    color: #121212;
}

select {
    font: normal 400 14px 'Glypha LT Std', sans-serif;
    margin: 5px 0 15px;
    min-width: 355px;
    padding: 8px;
    border: 2px solid #085280;
    border-radius: 7px;
}

button.cont {
    float: right;
    margin-right: 210px;
}

.continue-btn{
    display: inline-block;
    background: #05314d;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    margin: 8px 0;
    padding: 15px 40px;
    text-decoration: none;
    font-family: Arial;
}

.continue-btn:hover {
    background: #085280;
    color: #fff;
}

button,
input.submit {
    background: #05314d;
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    margin: 8px 0;
    padding: 15px 40px;
    text-decoration: none;
}

button:disabled,
button:disabled:hover,
input.submit:disabled,
input.submit:disabled:hover {
    background: #edebe9;
    cursor: default;
}

button:hover,
input.submit:hover {
    background: #085280;
    color: #fff;
}

.nowrap {
    white-space: nowrap;
}

#epIssues {
    width: 100%;
}

#epIssues .category {
    display: flex;
    margin-bottom: 20px;
    background-color: #05314d;
}

#epIssues .catdesc {
    display: none;
}

#epIssues .catname {
    color: #fff;
    font: normal 700 18px 'Glypha LT Std', sans-serif;
    padding: 20px 20px 20px 30px;
    width: 24%;
}

#epIssues .details {
    font: italic 300 13px 'Glypha LT Std', sans-serif;
    position: absolute;
    right: 7px;
    text-decoration: none;
    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: #edebe9;
}

#epIssues .issuebox {
    background: #fff;
    padding-left: 20px;
    width: 76%;
}

#epIssues .name {
    font: normal 400 16px/20px 'Glypha LT Std', sans-serif;
    padding: 5px 0;
}

#epIssues .desc {
    color: #121212;
    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_upper {
    background: #085280;
    min-width: 1200px;
    margin-top: auto;
}
footer {
    border: 2px solid #085280;
    font-size: 14px;

    background-color: #085280;
    color: #fff;
}

footer th {
    display: none;
}

footer td {
    padding: 10px 0 !important;
}

footer .line1 {
    float: right;
    padding-right: 10px;
}

footer .line2 {
    color: #fff;
    float: left;
    padding-left: 10px;
}

footer .line2 a {
    color: #fff;
}

footer .line2 a:hover {
    color: #fff;
}

footer table {
    font-size: 12px;
    margin: 0 auto !important;
    width: 1200px !important;
}

.faq-links a {
    font-weight: bold;
    margin-right: 15px; /* Adjust as needed for desired spacing */
}

.faq-links {
    padding-top: 1em;
    padding-bottom: 1em;
}

.faq-links a:last-child {
    margin-right: 0;
}
