@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');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


@font-face {
  font-family:SpaceGroteskVariable;
  src: url(SpaceGrotesk-VariableFont_wght.ttf);
}

@font-face {
  font-family: PlusJakartaSansRegular;
  src: url(PlusJakartaSans-Regular.ttf);
}

@font-face {
  font-family: PlusJakartaSansSemiBold;
  src: url(PlusJakartaSans-SemiBold.ttf);
}

:root {
    --header: #141416;
    --text: #314235;
    --green: #00ad7d;
    --dark-green: #00ab88;
    --light: #f8f8f8;
}

body {
    background: #eef1ef url(bg.png) repeat left top;
    color: var(--text);
    font: normal 400 14px PlusJakartaSansRegular, sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--text);
    outline: none;
    text-decoration: underline;
}

a:hover {
    color: var(--green);
}

a.logo {
    background: url(logo1.svg) no-repeat center / contain;
    display: block;
    height: 50px;
    width: 150px;
}

h1 {
    color: var(--header);
    font: normal 400 30px SpaceGroteskVariable, sans-serif;
    padding: 0;
}

h2 {
    /* color: var(--header); */
    color: var(--light);
    font: normal 400 24px SpaceGroteskVariable, sans-serif;
    margin-bottom: 15px;
    padding: 0;
}

h3 {
    color: var(--header);
    font: normal 700 22px SpaceGroteskVariable, 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;
    height: 90px;
}

header > .contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding: 0 25px;
}

header .flex {
    display: flex;
    justify-content: space-between;
}

#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 600 16px PlusJakartaSansRegular, sans-serif;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav a {
    color: var(--green);
    display: grid;
    place-items: center;
    padding: 0 15px;
    text-decoration: none;
    height: 100%;
}

nav a:hover {
    color: var(--green);
    background: var(--light);
}

.banner {
    background: var(--green);
    min-width: 1200px;
    height: 300px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    height: 300px;
    width: 674px;
}

#index .hero {
    background: url(banner-landing.jpg) no-repeat center / cover;
}
#notice .hero,
#report .hero {
    background: url(banner-report.jpg) no-repeat center / cover;
}
#phone .hero {
    background: url(banner-phone.jpg) no-repeat center / cover;
}
#faq .hero,
#follow .hero {
    background: url(banner-follow.jpg) no-repeat center / cover;
}

.banner .contain {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.banner .text {
    color: #fff;
    display: flex;
    flex-direction: column;
    font: normal 700 18px PlusJakartaSansSemiBold, sans-serif;
    justify-content: center;
    height: 300px;
    padding-left: 20px;
    padding-right: 70px;
    width: 525px;
    text-align: left;
    z-index: 100;
}

/* .banner .speak {
    background: url(speakup-logo.png);
    background-size: cover;
    height: 110px;
    width: 110px;
    position: absolute;
    top: 245px;
    right: 30px;
    z-index: 100;
} */

#phone .text {
    font-size: 16px;
}
#phone h2 {
    margin-bottom: 0;
}
#notice h2 {
    color: var(--header);
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 1000px;
}

.buttons a {
    color: #4d4d4d;
    display: block;
    width: 300px;
    align-items: center;
    text-align: center;
    text-decoration: none;
    height: 250px;
    padding: 120px 0 0 0;
}

.buttons h3 {
    color: #4d4d4d;
}

.buttons #report {
    background: url(button-online.png) no-repeat center top / 44%;
}
.buttons #report:hover {
    background-image: url(button-online-hover.png);
}

.buttons #phone {
    background: url(button-phone.png) no-repeat center top / 40%;
}
.buttons #phone:hover {
    background-image: url(button-phone-hover.png);
}

.buttons #folloup {
    background: url(button-follow.png) no-repeat center top / 44%;
}
.buttons #folloup:hover {
    background-image: url(button-follow-hover.svg);
}

.buttons a:hover h3 {
    color: var(--green);
}

.buttons a:hover p {
    color: var(--green);
}

.banner-bg {
    min-width: 1200px;
    padding: 10px 0px;
    background-color: #f1f3f4;
}

.banner-bg h3 {
    color: var(--green);
    text-align: center;
}

.timeline {
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 50px 0 100px 0;
}

.timeline::after {
    content: '';
    background-color: #333;
    width: 1000px;
    height: 1px;
    position: absolute;
    top: 175px;
    left: 100px;
    z-index: 1;
}
.timeline .dot {
    background-color: #f1a400;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    margin: auto;
    z-index: 10;
    position: relative;
}
.timeline .event {
    width: 200px;
    height: 200px;
    text-align: center;
}

#confidential {
    background: url(icon-confidentiality.png) center;
    background-size: cover;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px auto;
}
#concern {
    background: url(icon-concern.png) center;
    background-size: cover;
    height: 100px;
    width: 99px;
    margin: 0 auto 20px auto;
}
#assessment {
    background: url(icon-assessment.png) center;
    background-size: cover;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px auto;
}
#investigation {
    background: url(icon-investigation.png) center;
    background-size: cover;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px auto;
}
#outcome {
    background: url(icon-outcome.png) center;
    background-size: cover;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px auto;
}
#reporter {
    background: url(icon-closed.png) center;
    background-size: cover;
    height: 100px;
    width: 100px;
    margin: 0 auto 20px auto;
}

#faq .faqTitle {
    font-weight: 700;
}

#faq .border {
    border: 1px solid #060f76;
    padding: 0px 5px;
    border-radius: 15px;
    margin: 0 auto 30px;
    padding: 0 10px;
    position: relative;
    width: 960px;
}

.expand-button {
    position: absolute;
    right: 20px;
    top: 15px;
    transform: scaleX(2);
    font-weight: 700;
}

.notice {
    height: 600px;
    overflow-y: scroll;
    padding: 20px;
    border: 1px var(--green) solid;
    margin-bottom: 30px;
  }

/* 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: 60%;
}

.col-right {
    padding: 10px 25px;
    width: 38%;
}

#epAttention {
    padding: 10px 0;
    text-align: center;
}

#epEmergency {
    padding: 10px 0;
    text-align: center;
    margin: 0;
}

#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 {
    color: #1f3667;
}

#epPhone {
}

select {
    font: normal 400 14px PlusJakartaSansRegular, sans-serif;
    margin: 5px 0 15px;
    min-width: 355px;
    padding: 5px;
}

button,
.submit {
    background: var(--dark-green);
    border: none;
    border-radius: 5px;
    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: var(--green);
}

.nowrap {
    white-space: nowrap;
}

/* issues */

body#issues .banner {
    background: none;
    height: inherit;
}

body#issues .banner .contain {
    width: 1000px;
    margin: 0 auto;
}

body#issues .banner .contain h2 {
    color: var(--green);
    font-weight: bold;
}

#epIssues {
    width: 100%;
  }
  
  #epIssues .category {
    display: flex;
    border: 1px solid var(--green);
    margin-top: 20px;
  }
  #epIssues .catname {
    padding: 20px 40px;
    color: #fff;
    background-color: var(--green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 350px;
    font: normal 700 16px/22px PlusJakartaSansSemiBold, sans-serif;
  }
  #epIssues .catdesc {
    display: none;
  }
  
  #epIssues .issuebox {
    padding: 20px;
  }
  #epIssues .details {
    font-size: 12px;
    margin-left: auto;
    position: absolute;
    right: -40px;
  }
  
  #epIssues .issue {
    color: var(--green);
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    position: relative;
    width: 700px;
    padding: 5px;
  }
  
  #epIssues .issue:hover {
    color: #333;
  }
  
  #epIssues .name {
    font: normal 400 14px/20px PlusJakartaSansRegular, sans-serif;
  }
  
  #epIssues .desc {
    flex-basis: 100%;
    padding: 5px 0;
  }

input.text-input {
    margin: 5px 0 20px;
    min-width: 300px;
    padding: 5px;
}

input.followUp {
    min-height: 30px;
    border-radius: 20px;
    padding: 4px 0 4px 15px;
}

#epFollow h4 {
    margin-bottom: 12px;
}

#followSubmit {
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 28px;
    position: relative;
    display: block;
    margin-top: 22px;
}

.follow-page section span {
    font-size: 18px;
}

/* footer */

.footer {
    background-color: var(--green);
    color: var(--light);
    min-width: 1200px;
    margin-top: 100px;
    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 {
    color: var(--light);
}

footer .line2 a:hover {
    color: var(--light);
}

footer table {
    font-size: 12px;
    margin: 15px auto 0 !important;
    width: 1200px !important;
}
