@import url('https://fonts.googleapis.com/css2?family=Gantari:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-primary: #860035;
  --color-secondary: #de817a;
  --color-dark: #000000;
  --color-light: #e1d4c3;

  --font: 'Gantari', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--color-dark);
  font: normal 400 18px/1.3 var(--font);
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--color-primary);
  outline: none;
  text-decoration: underline;
}

a:hover {
  /* color: var(--color-primary); */
}

div.logo {
  align-items: center;
  background: url(logo1.png) left center no-repeat;
  background-size: contain;
  display: flex;
  justify-content: flex-end;
  height: 50px;
  width: 525px;
}

div.logo h1 {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  color: var(--color-dark);
}

h1 {
  color: var(--color-primary);
  font: normal 500 28px var(--font);
  padding: 0;
}

.mainHome h1 {
  color: var(--color-dark);
  font-weight: 700;
}

h2 {
  color: var(--color-primary);
  font: normal 500 24px var(--font);
  margin-bottom: 15px;
  padding: 0;
}

h3 {
  color: var(--color-primary);
  font: normal 700 1.17em/1.27em var(--font);
  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;
}

.center {
  text-align: center;
}

.red {
  color: var(--color-primary);
}

.question span {
  font-weight: 600;
  color: var(--color-primary);
}

.ethics-image {
  margin: 1rem auto 0;
  max-height: 150px;
}

/* header */

header {
  border-bottom: 4px solid var(--color-dark);
  display: block;
}

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: #1f3667;
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
}

#epLang a:hover {
  color: #05bbda;
}

nav ul {
  display: flex;
  font: normal 500 18px var(--font);
  justify-content: space-between;
  gap: 60px;
  align-items: center;
  position: relative;
}

nav a {
  color: var(--color-dark);
  display: inline-block;
  text-decoration: none;
}

nav a:hover {
  color: var(--color-primary);
}

nav li {
  display: block;
  transition-duration: 0.5s;
}

nav li:hover {
  cursor: pointer;
}

nav ul li ul {
  background: #fff;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  right: 7px;
  display: none;
  width: 175px;
  padding-left: 10px;
  padding-top: .7rem;
  top: 2px;
}

nav ul li:hover>ul,
nav ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

nav li.open>ul {
  visibility: visible;
  opacity: 1;
  display: block;
}


nav ul li ul li {
  clear: both;
  width: 100%;
  padding: .4rem;
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  padding: 10px 25px;
}

.buttons a {
  align-items: center;
  background: var(--color-light) url() no-repeat center 30px;
  background-size: 40%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  margin: 10px 0;
  padding: 115px 15px 20px;
  text-decoration: none;
  width: 21%;
}

.buttons a:hover {
}

.buttons a.report {
  background-image: url(icon-report.png);
}

.buttons a.phone {
  background-image: url(icon-phone.png);
}

.buttons a.follow {
  background-image: url(icon-follow.png);
}

.buttons span.title {
  color: var(--color-dark);
  display: block;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

/* content */

main {
  display: block;
  padding: 0 0 70px;
}

.mainHome {
  padding: 30px 0 70px;
}
.mainPhone {
  padding: 50px 0 70px;
}

section {
  display: block;
}

section.flex {
  align-content: center;
  display: flex;
  justify-content: space-between;
}

section.flex-phone {
  align-content: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.text-index {
  margin-top: 50px;
}

.page-notice {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  padding: 10px 1rem;
  /* margin: .5rem 0; */
  flex-grow: 1;
}

.block p {
  margin: 0;
  font-size: 16px;
}

.primary-block {
  background: var(--color-primary);
  color: #fff;
}

.header {
  height: 45px;
  max-height: 45px;
}

.primary-block h2 {
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.primary-block h3 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.secondary-block {
  background: var(--color-secondary);
  color: #fff;
  max-height: 70%;
}

.light-block {
  background: var(--color-light);
  color: var(--color-primary);
}

.light-block h3 {
  margin: 0;
}

.report-button {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.report-button:hover {
  background: var(--color-dark);
}

.light-block hr {
  border: none;
  border-top: 2px dashed var(--color-primary);
  height: 2px;
  width: 60%;
}
.primary-block hr {
  border: none;
  border-top: 2px dashed #fff;
  height: 2px;
  width: 60%;
}

.col-block-38 {
  display: flex;
  flex-direction: column;
  width: 36%;
  gap: 1rem;
}

.col-block-25 {
  display: flex;
  flex-direction: column;
  width: 25%;
  gap: 1rem;
}

.flex-phone .col-block-25 {
  height: 300px;
}

[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%;
}

#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 16px var(--font);
  margin: 12px 0 15px;
  min-width: 355px;
  padding: 5px;
}

button,
.submit {
  background: var(--color-primary);
  border: none;
  color: #fff;
  cursor: pointer;
  font: normal 400 18px var(--font);
  margin: 15px 0;
  padding:7px 30px;
  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(--color-dark);
}

.nowrap {
  white-space: nowrap;
}

input.text-input {
  margin: 5px 0 20px;
  min-width: 400px;
  padding: 7px;
}

.follow-page section span {
  font-size: 18px;
}

/* location search */

#storeInput {
  padding: 7px;
  margin-right: 15px;
}

#epReportSearch .text {
  margin: 0;
}

#searchOutput {
  max-height: 400px;
  overflow-y: auto;
}

/* footer */

footer {
  background: var(--color-dark);
  color: #fff;
  font-size: 14px;
  padding: 20px 0;
  margin-top: auto;
}

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: #fff;
  text-decoration: none;
}

footer .line2 a:hover {}

footer table {
  font-size: 14px;
  font-weight: 700;
  margin: 15px auto 0 !important;
  width: 1000px !important;
}

.messageBanner {
  background-color:#de817a;
  color:#fff;
  margin-bottom:20px;
  padding:15px 30px;
  width:100%;
}

.messageBanner a {
  color:#fff;
}