html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: url('../imgs/background.jpg') center top fixed #FFFFFF;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.submit-button {
  background-color: #db252c;
  border: none;
  padding: 1rem 2rem;
  margin: 1rem auto;
  border-radius: 1rem;
  color: #FFFFFF;
}

/*************** ****************/
.header-top {
  background:#222222;
  font-size:13px;
  font-weight:500;
  margin-bottom: 2.5rem;
}
.header-top a {
  color:#ffffff;
}
.header-top a:hover {
  text-decoration:none;
  color:#ffffff;
}
.languages {
  background-color: #db252c;
  margin-bottom: 0;
}

.languages li {
  display: inline-block;
  padding: 10px;
  border-right: #ffffff dashed 1px;
}
.languages li:last-child {
  border: 0;
}
.logo {
  margin-bottom: 2.5rem;
}
.home-svg {
  max-width: 35%;
  margin: auto 0 auto auto;
  display: block;
  color: #db252c;
}
.menu-image {
  display: block;
  max-width: 100%;
  border-radius: 50%;
  margin: 2rem auto;
  height: auto;
}
main .featured {
  margin-bottom: 2.5rem;
}
main .featured img {
  max-width: 100%;
  height: auto;
}
.pmk-layout {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 10% auto;
  grid-template-areas:
  "header header header"
  "content content content"
  "link link link";
  grid-gap: 1rem;
}
.pmk-layout h2:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.pmk-layout h2:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.pmk-layout h2:nth-child(7) {
  grid-column: 3;
  grid-row: 1;
}

.pmk-layout .pmk-layout__list:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.pmk-layout .pmk-layout__list:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.pmk-layout .pmk-layout__list:nth-child(8) {
  grid-column: 3;
  grid-row: 2;
}
.pmk-layout__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: #db252c;
  color: #ffffff;
  border-radius: 1rem;
}
.pmk-layout__button:hover {
  color: #ffffff;
}
.space-between {
  justify-content: space-between;
}
footer {
  background-color: #222222;
  color: #ffffff;
  padding: 2rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .pmk-layout {
    display: block;
  }
  .pmk-layout__button {
    margin: 3rem auto;
    display: inline-block;
  }
  .home-svg {
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .logo img {
    margin: auto auto 2rem;
    display: block;
  }
}
