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;
}

html, body {
  height: 100%;
}
@media (max-width: 768px) {
    html, body {
        height: initial;
    }
}

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;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  position: relative;
}

html, body, textarea, select, input, button {
  font-family: Helvetica, sans-serif;
  color: black;
}

html {
  overflow-x: hidden;
  font-size: 10px;
  font-weight: 400;
  color: white;
}

body {
  font-size: 1.6rem;
  background-color: white;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.page-content-container {
  overflow: hidden;
  min-height: calc(100vh - 7rem - 7rem);
  height: calc(100vh - 7rem - 7rem);
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .page-content-container {
    min-height:initial;
    height:100%;
  }
}

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 7rem;
  padding: 0 5rem;
  z-index: 99;
  background-color: #e4e4e4;
}

@media (max-width: 768px) {
  .page-header {
    padding: 0 4rem;
  }
}

.page-header__logo-container {
  width: 7rem;
  height: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.page-header__logo-container img {
  margin: 0 1rem 0 0;
  height: 100%;
  width: 100%;
}

.page-header__brand-title {
  display: none;
  color: orange;
  font-weight: bold;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-header__brand-title {
    display: initial;
    font-size: 2rem;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.page-header__nav {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .page-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.page-header__nav.open {
  right: 0;
}

.page-header__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .page-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: end;
    height: 100%;
    width: 90%;
    padding: 12rem 2rem 2rem 1rem;
    background-color: white;
  }
}

.page-header__openClose {
  position: absolute;
  top: 1rem;
  right: 4rem;
  width: 3rem;
  height: 3rem;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

@media (max-width: 768px) {
  .page-header__openClose {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 1rem;
  }
}

.page-header__openClose.open .main-header__brgr-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 25%;
  line-height: 1;
}

.page-header__openClose.open .main-header__brgr-2 {
  display: none;
}

.page-header__openClose.open .main-header__brgr-3 {
  position: absolute;
  top: 25%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  line-height: 1;
}

.page-header__brgr-1, .page-header__brgr-2, .page-header__brgr-3 {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  border-bottom: solid 0.2rem black;
  font-size: 1rem;
}

.page-header__item {
  font-size: 2rem;
  margin: 0 2rem 0 0;
  padding: 1rem;
  cursor: pointer;
  color: black;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .page-header__item {
    width: 100%;
    margin: 0 0 1rem 0;
    text-align: right;
  }
}

.page-header__item:last-of-type {
  margin: 0;
}

@media (max-width: 768px) {
  .page-header__item:last-of-type {
    margin: 0 0 1rem 0;
  }
}

.page-header__link:hover {
  color: coral;
  border-bottom: solid 0.2rem coral;
}

.page-header__link.active {
  color: coral;
  border-bottom: solid 0.2rem coral;
}

.page-footer {
  height: 7rem;
  background-color: #e4e4e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-footer__link {
  background-image: url("../../img/icon/icon-facebook-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
}

.page-landing-container {
  height: calc(100vh);
}

.landing {
  width: 100vw;
  background-color: #e4e4e4;
  background-image: url("../img/bg/home-unsplash-low.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.landing__title {
  text-align: center;
  font-weight: bold;
  font-size: 16rem;
  color: #f7ad40;
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .landing__title {
    font-size: 10rem;
  }
}

@media (max-width: 576px) {
  .landing__title {
    font-size: 7rem;
  }
}

.main-header__nav {
  width: 100%;
}

.main-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .main-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main-header__item {
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 768px) {
  .main-header__item {
    margin: 0 0 2rem 0;
  }
}

.main-header__item:hover {
  color: #f7ad40;
}

.main-footer {
  position: absolute;
  bottom: 0;
  height: 7rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5rem;
}

.main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-footer__link {
  background-image: url("../../img/icon/icon-facebook-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
}

.pub__page-content {
  background-image: url("../../img/bg/history-unsplash-low.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pub__swipers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .pub__swipers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.pub__swiper-years {
  width: 30%;
}

@media (max-width: 768px) {
  .pub__swiper-years {
    width: 100%;
    height: 10rem;
  }
}

.pub__swiper-years .swiper-slide {
  height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d3d3d3;
}

@media (max-width: 768px) {
  .pub__swiper-years .swiper-slide {
    height: 100%;
  }
}

.pub__swiper-years .swiper-slide-active {
  color: black;
}

.pub__swiper-years .swiper-button-next {
  position: absolute;
  left: 50%;
  top: initial;
  bottom: 1.3rem;
  color: white;
  width: 100%;
  background: black;
  -webkit-transform: rotate(0deg) translate(0, 30%);
          transform: rotate(0deg) translate(0, 30%);
  left: 0;
}

@media (max-width: 768px) {
  .pub__swiper-years .swiper-button-next {
    -webkit-transform: none;
            transform: none;
    left: auto;
    height: 100%;
    width: 4rem;
    right: 0;
    top: 2.2rem;
  }
}

.pub__swiper-years .swiper-button-next::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 768px) {
  .pub__swiper-years .swiper-button-next::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.pub__swiper-years .swiper-button-prev {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  color: white;
  width: 100%;
  background: black;
  -webkit-transform: rotate(0deg) translate(0, 30%);
          transform: rotate(0deg) translate(0, 30%);
  left: 0;
}

@media (max-width: 768px) {
  .pub__swiper-years .swiper-button-prev {
    -webkit-transform: none;
            transform: none;
    left: 0;
    height: 100%;
    width: 4rem;
    top: 2.2rem;
  }
}

.pub__swiper-years .swiper-button-prev::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 768px) {
  .pub__swiper-years .swiper-button-prev::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.pub__yearCat {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 7rem;
}

@media (max-width: 768px) {
  .pub__yearCat {
    font-size: 4rem;
  }
}

.pub__swiper-years2 {
  width: 70%;
}

@media (max-width: 768px) {
  .pub__swiper-years2 {
    width: 100%;
    height: calc(100% - 10rem);
  }
}

.pub__swiper-years2 .swiper-slide {
  height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pub__swiper-years2 .swiper-slide {
    height: 100%;
  }
}

.pub__swiper-inner {
  width: 100%;
  height: 100%;
}

.pub__swiper-inner .swiper-slide {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: inset 0rem 0rem 15rem -11rem;
          box-shadow: inset 0rem 0rem 15rem -11rem;
}

@media (max-width: 768px) {
  .pub__swiper-inner .swiper-slide {
    padding: 10rem 4rem 0;
    display:block;
  }
}

.pub__swiper-inner .swiper-button-next,
.pub__swiper-inner .swiper-button-prev {
  top: unset;
  width: 4.5rem;
  height: 4.5rem;
  bottom: 10rem;
  border-radius: 100%;
  opacity: 0.6;
  background: url("../../img/icon/arrow_circle_back.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pub__swiper-inner .swiper-button-next::after,
.pub__swiper-inner .swiper-button-prev::after {
  content: '';
}

@media (max-width: 768px) {
  .pub__swiper-inner .swiper-button-next,
  .pub__swiper-inner .swiper-button-prev {
    bottom: unset;
    top: 6rem;
  }
}

.pub__swiper-inner .swiper-button-next.swiper-button-disabled,
.pub__swiper-inner .swiper-button-prev.swiper-button-disabled {
  display: none;
}

.pub__swiper-inner .swiper-button-next {
  background: url("../../img/icon/arrow_circle_forward.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pub__swiper-pub {
  width: 70%;
}

.pub__container-title {
  width: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 2rem 0;
}

@media (max-width: 768px) {
  .pub__container-title {
    width: initial;
    /*height: 10rem;*/
  }
}

.pub__title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 2rem 0;
}

.pub__subtitle {
  letter-spacing: 0.2rem;
}

.pub__yearShield {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.pub__list {
  margin: 0 auto;
  min-width: none;
}

.pub__item {
  height: 70%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pub__link {
  width: 32rem;
  height: 46rem;
}

@media (max-width: 768px) {
  .pub__link {
    width: initial;
    height: auto;
  }
}

.pub__container-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pub__container-up {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1rem 0.5rem;
}

.pub__title {
  font-weight: bold;
}

.pub__date {
  position: absolute;
  width: 100%;
  padding: 1rem;
  text-align: center;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}