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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

a {
  color: #FFF;
  text-decoration: none;
}

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: padding-box transparent;
}

::-webkit-scrollbar-thumb {
  background: padding-box #0093BE;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: padding-box #00BFD6;
}

::-webkit-scrollbar-thumb:active {
  background: padding-box #00BFD6;
}

.swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

body {
  color: #FFF;
  background-color: #0C264B;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 16px;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.wrapper {
  position: relative;
  background-image: url("../images/header_bg_mobile.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 568px) {
  .wrapper {
    background-image: url("../images/header_bg.jpg");
  }
}

.mainContent {
  margin: 5% auto 30px;
  padding: 20px 15px 20px 15px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.mainContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("../images/container_bg.jpg");
  opacity: 0.3;
  z-index: -1;
}

.mainContent_notice {
  margin-bottom: 40px;
  padding: 15px 10px;
  border-radius: 20px;
  background-color: rgba(12, 38, 75, 0.5);
  text-align: center;
}

.mainContent_notice > b {
  display: inline-block;
  padding: 5px 0;
  font-weight: 900;
}

.mainContent_notice .highlight {
  color: #F7A800;
}

.mainContent_header {
  margin-bottom: 0px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mainContent_header h1 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

@media (min-width: 1024px) {
  .mainContent_header h1 {
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .mainContent_header {
    margin-bottom: 30px;
  }
}

.mainContent_timezone {
  padding: 5px 10px;
  background-color: rgba(0, 147, 190, 0.3);
  border-radius: 15px;
  font-size: 0.75rem;
}

@media (min-width: 1024px) {
  .mainContent {
    padding: 40px 25px;
    width: 95%;
  }
  .mainContent:before {
    border-radius: 15px;
  }
  .mainContent_notice {
    padding: 20px 15px;
    font-size: 1.3125rem;
  }
  .mainContent_header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .mainContent_header h1 {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .mainContent_timezone {
    margin-left: auto;
    padding: 5px 15px;
    font-size: 0.875rem;
  }
}

@media (min-width: 1600px) {
  .mainContent {
    padding: 40px 100px;
    max-width: 1500px;
  }
}

.button {
  position: relative;
  padding: 10px;
  min-width: 70px;
  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;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 5px;
  background-image: linear-gradient(-40deg, #0093BE 50%, #00BFD6 50%);
  background-size: 300% 100%;
  background-position: 0 0;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

@media (pointer: fine) {
  .button:hover {
    background-position: 100% 0%;
  }
}

.button._special {
  background-image: linear-gradient(-40deg, #f0d437 50%, #ffe13a 50%);
  color: #0C264B;
  font-weight: 900;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.54);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.54);
}

.button._special::before, .button._special::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  pointer-events: none;
}

.button._special::before {
  background-image: linear-gradient(45deg, rgba(255, 225, 58, 0.8), rgba(255, 225, 58, 0) 80%);
  -webkit-transform: translate(-0.3em, 0.3em);
      -ms-transform: translate(-0.3em, 0.3em);
          transform: translate(-0.3em, 0.3em);
  -webkit-animation: nav_animate_right 2s infinite linear;
          animation: nav_animate_right 2s infinite linear;
}

.button._special::after {
  background-image: linear-gradient(225deg, rgba(255, 225, 58, 0.8), rgba(255, 225, 58, 0) 80%);
  -webkit-transform: translate(0.3em, -0.3em);
      -ms-transform: translate(0.3em, -0.3em);
          transform: translate(0.3em, -0.3em);
  -webkit-animation: nav_animate_left 2s infinite linear;
          animation: nav_animate_left 2s infinite linear;
}

.button._disabled {
  opacity: 0.5;
  cursor: default;
}

@media (pointer: fine) {
  .button._disabled:hover {
    background-position: 0% 0%;
  }
}

.button._collapse {
  background-image: none;
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  border: none;
}

.button._collapse:after {
  content: '';
}

@media (min-width: 1024px) {
  .button {
    font-size: 0.875rem;
  }
}

.copyright {
  margin-bottom: 30px;
  text-align: center;
  font-size: 0.75rem;
}

.header {
  position: relative;
  height: 100vw;
}

@media (min-width: 568px) {
  .header {
    height: calc(100vw * 0.3);
  }
}

.header_slogan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.header_slogan > img {
  width: 132%;
  height: auto;
  -webkit-transform: translateX(-12%);
      -ms-transform: translateX(-12%);
          transform: translateX(-12%);
}

@media (min-width: 568px) {
  .header_slogan > img {
    width: 53%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.header_logo {
  float: left;
  width: 20vw;
  height: auto;
  margin: 2vw 3vw 0;
}

@media (min-width: 568px) {
  .header_logo {
    width: 8.5vw;
  }
}

.header_account {
  margin: 2vw 3vw 0;
  padding: 8px;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0C264B;
  border-radius: 50px;
  border: 1px solid #0093BE;
}

.header_account > span {
  margin-left: 10px;
  position: relative;
  font-size: 12px;
}

.header_account > span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: #002e6d;
}

@media (min-width: 1024px) {
  .header_account {
    padding: 12px;
  }
  .header_account > svg {
    width: 18px;
    height: 18px;
  }
  .header_account > span {
    margin-left: 14px;
    font-size: 16px;
  }
  .header_account > span:before {
    left: -7px;
  }
}

.header_cta {
  position: absolute;
  bottom: 31%;
  left: 50%;
  padding: 10px 20px;
  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;
  text-align: center;
  color: #0C264B;
  font-size: 12px;
  border-radius: 5px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: background-position 0.3s 0.1s, -webkit-transform 0.3s;
  transition: background-position 0.3s 0.1s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-position 0.3s 0.1s;
  transition: transform 0.3s, background-position 0.3s 0.1s, -webkit-transform 0.3s;
}

@media (pointer: fine) {
  .header_cta:hover {
    -webkit-transform: translateX(-50%) scale(1.2);
        -ms-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
  }
}

@media (min-width: 568px) {
  .header_cta {
    padding: 0.7% 1.5%;
    min-width: 9.5%;
    left: 50.5%;
    bottom: 12%;
  }
}

@media (min-width: 1024px) {
  .header_cta {
    bottom: 14%;
  }
}

@media (min-width: 1360px) {
  .header_cta {
    font-size: 16px;
  }
}

@media (min-width: 1600px) {
  .header_cta {
    font-size: 21px;
  }
}

.header_date {
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 90%;
  color: #D1D3D3;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 568px) {
  .header_date {
    left: 5%;
    bottom: -10%;
    text-align: left;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

@media (min-width: 1024px) {
  .header_date {
    font-size: 18px;
  }
}

.menu {
  margin: 5% auto 3.5%;
  max-width: 1000px;
  z-index: 100;
  background: rgba(0, 147, 190, 0.9);
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

.menu._fixed {
  margin: 0;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 568px) {
  .menu {
    width: 90%;
    border-radius: 10px;
  }
  .menu._fixed {
    top: 0.8em;
    width: 90%;
  }
}

@media (min-width: 1024px) {
  .menu {
    font-size: 21px;
  }
}

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

.menu_item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.333%;
          flex: 1 0 33.333%;
  text-align: center;
  color: #FFF;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu_item > a {
  padding: 0.5em 1em;
  min-height: 40px;
  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;
}

.menu_item._active {
  font-weight: bold;
  background: #00BFD6;
  border-radius: 10px;
  text-shadow: 0 0 0.3em #0091a3;
}

.menu_item._active::before, .menu_item._active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
}

.menu_item._active::before {
  background-image: linear-gradient(45deg, rgba(0, 191, 214, 0.6) 0%, rgba(0, 191, 214, 0) 80%);
  -webkit-transform: translate(-0.3em, 0.3em);
      -ms-transform: translate(-0.3em, 0.3em);
          transform: translate(-0.3em, 0.3em);
}

.menu_item._active::after {
  background-image: linear-gradient(225deg, rgba(0, 191, 214, 0.6) 0%, rgba(0, 191, 214, 0) 80%);
  -webkit-transform: translate(0.3em, -0.3em);
      -ms-transform: translate(0.3em, -0.3em);
          transform: translate(0.3em, -0.3em);
}

.menu_item._active:hover {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 1024px) {
  .menu_item > a {
    min-height: 60px;
  }
}

@media (pointer: fine) {
  .menu_item:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@-webkit-keyframes nav_animate_right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-0.3em, 0.3em);
            transform: translate(-0.3em, 0.3em);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes nav_animate_right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-0.3em, 0.3em);
            transform: translate(-0.3em, 0.3em);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes nav_animate_left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0.3em, -0.3em);
            transform: translate(0.3em, -0.3em);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes nav_animate_left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0.3em, -0.3em);
            transform: translate(0.3em, -0.3em);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
  }
}
