@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

Inside media queries 1em is always 16px i.e 1em = 16px at every screen size only inside media queries
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  font-family: inherit; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 59%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 56%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 65%; } }

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5;
  font-family: sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: 'Noto Sans TC', sans-serif;
  background-color: #082c85;
  background-position: center; }

.wrapper {
  margin: auto;
  background-image: url(../assets/images/main-bg-b.png), url(../assets/images/main-bg.jpg);
  background-repeat: repeat-x , repeat-y;
  background-position: bottom center ,top center; }

a {
  text-decoration: none;
  color: inherit; }

ul {
  padding-left: 3rem; }

p {
  font-size: 2rem; }
  @media only screen and (max-width: 37.5em) {
    p {
      font-size: 1.8rem; } }

ol {
  list-style-type: decimal !important; }

input:focus,
button:focus,
a:focus,
textarea:focus {
  outline: none; }

button {
  border: none;
  cursor: pointer; }

textarea {
  resize: none; }

.heading-primary {
  font-size: 6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .heading-primary {
      font-size: 4.5rem; } }

.heading {
  background-color: #dbc9ab;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 6rem; }

.color-blue {
  color: #0b5a8e !important; }

.color-red {
  color: #bc2021 !important; }

.color-w {
  color: #f7f9f9 !important; }

.color-mt {
  color: #7D4E22 !important; }

.color-bg-gray {
  background-color: #d3b488 !important; }

.icon-box {
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 1.5rem 2rem; }

.heading-sec {
  text-align: left;
  display: inline-block;
  padding-bottom: 1rem;
  position: relative;
  color: #201512; }
  .heading-sec::after {
    content: "";
    background-image: url(../assets/images/title_line.png);
    background-repeat: repeat-x;
    background-position: right bottom;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 0;
    position: absolute;
    -webkit-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    transform: skew(-20deg); }
    @media only screen and (max-width: 37.5em) {
      .heading-sec::after {
        background-image: url(../assets/images/title_line2.png);
        height: 6px; } }
  .heading-sec__mb-bg {
    margin-bottom: 11rem; }
    @media only screen and (max-width: 56.25em) {
      .heading-sec__mb-bg {
        margin-bottom: 8rem; } }
  .heading-sec__mb-med {
    margin-bottom: 1.5rem; }
    @media only screen and (max-width: 56.25em) {
      .heading-sec__mb-med {
        margin-bottom: 1rem;
        padding-bottom: 1rem; } }
  .heading-sec__main {
    text-align: left;
    display: inline-block;
    font-size: 5rem;
    letter-spacing: .5rem;
    position: relative; }
    @media only screen and (max-width: 56.25em) {
      .heading-sec__main {
        font-size: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-sec__main {
        font-size: 3rem;
        letter-spacing: 0rem; } }
    .heading-sec__main b {
      font-size: 8rem; }
      @media only screen and (max-width: 37.5em) {
        .heading-sec__main b {
          font-size: 4rem; } }
  .heading-sec__mainsub {
    color: #201512;
    text-align: left;
    font-size: 5rem;
    font-weight: 700;
    max-width: 80rem;
    margin: auto;
    margin-left: 1rem;
    line-height: 1.6;
    letter-spacing: .2rem;
    display: inline-block; }
    @media only screen and (max-width: 56.25em) {
      .heading-sec__mainsub {
        font-size: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-sec__mainsub {
        line-height: 1.2;
        font-size: 3rem;
        letter-spacing: 0rem; } }
    .heading-sec__mainsub--lt {
      color: #eee; }
  .heading-sec__mainsub2 {
    color: #ffdb00;
    display: block;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    max-width: 80rem;
    margin: auto;
    line-height: 1.6;
    letter-spacing: .2rem;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.75);
    margin-top: 0rem;
    margin-bottom: 4rem; }
    @media only screen and (max-width: 37.5em) {
      .heading-sec__mainsub2 {
        font-size: 2.5rem;
        margin-bottom: 2rem; } }
    .heading-sec__mainsub2--lt {
      color: #eee; }
  .heading-sec__sub {
    text-align: center;
    margin-bottom: 8rem; }
    .heading-sec__sub div {
      color: #00c364;
      display: inline-block;
      width: auto;
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin: auto;
      letter-spacing: .2rem;
      background-color: #0d267d;
      border-radius: 20px;
      padding: 5px 20px; }
    @media only screen and (max-width: 37.5em) {
      .heading-sec__sub {
        margin-bottom: 4rem; }
        .heading-sec__sub div {
          font-size: 2rem;
          letter-spacing: .1rem;
          display: block; } }
    .heading-sec__sub--lt {
      color: #eee; }

.heading-sm {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

.main-container {
  max-width: 120rem;
  margin: auto;
  width: 100%; }
  @media only screen and (max-width: 37.5em) {
    .main-container {
      width: 100%; } }

.btn {
  background: #fff;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 700;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }
  .btn:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px); }
  .btn--bg {
    padding: 1.5rem 8rem;
    font-size: 2rem; }
  .btn--med {
    padding: 1.5rem 5rem;
    font-size: 1.6rem; }
  .btn--theme {
    background: #102d84;
    color: #fff; }
  .btn--theme-inv {
    color: #102d84;
    background: #fff;
    border: 2px solid #102d84;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: calc(1.5rem - 2px) calc(5rem - 2px); }

.text-w {
  color: #fff !important; }

.text-primary {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  width: 100%;
  line-height: 1.6; }
  @media only screen and (max-width: 37.5em) {
    .text-primary {
      font-size: 2rem; } }

.visible_m {
  display: none !important; }

@media only screen and (max-width: 37.5em) {
  .visible_pc {
    display: none !important; }
  .visible_m {
    display: block !important; } }

.d-none {
  display: none; }

.pos-r {
  position: relative; }

.pos-a {
  position: absolute !important; }

.t0 {
  top: 0; }

.op0 {
  opacity: 0; }

.rwd-img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-fluid-center {
  max-width: 100%;
  height: auto;
  margin: auto; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right !important; }

.note-txt {
  color: #585757;
  font-size: 1.5rem;
  text-align: left; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

.pr-2, .px-2 {
  padding-right: 0.5rem !important; }

.pr-3, .px-3 {
  padding-right: 1rem !important; }

.z99 {
  z-index: 99; }

@media only screen and (max-width: 37.5em) {
  .db-xs {
    display: block; } }

.heading-amine .heading-sec__icon img {
  opacity: 0;
  -webkit-animation: heading-am-icon .8s 1s forwards;
  animation: heading-am-icon .8s 1s forwards; }
  @media only screen and (max-width: 37.5em) {
    .heading-amine .heading-sec__icon img {
      -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
      transform: scale(0.95); } }

.heading-amine .heading-sec__icon::after {
  -webkit-animation: heading-am-circle 1s .5s forwards;
  animation: heading-am-circle 1s .5s forwards;
  opacity: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  left: 11%; }
  @media only screen and (max-width: 37.5em) {
    .heading-amine .heading-sec__icon::after {
      left: 18.5%; } }

@-webkit-keyframes heading-am-icon {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes heading-am-icon {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes heading-am-circle {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1); }
  50% {
    opacity: .5;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heading-am-circle {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1); }
  50% {
    opacity: .5;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

.dot::before {
  content: "•";
  color: #7D4E22;
  font-size: 1.2em; }

.flex-column {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* 控制容器内部的元素在垂直方向上居中 */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* 控制容器内部的元素在水平方向上居中 */ }

.flex-column > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* 控制每行内的元素在垂直方向上居中 */ }

.block {
  display: block !important; }

@media only screen and (max-width: 56.25em) {
  .block-pad {
    display: block; } }

@media only screen and (max-width: 37.5em) {
  .block-m {
    display: block; } }

.dib {
  display: inline-block; }

.pt10 {
  padding-top: 10rem; }

.pt1 {
  padding-top: 1rem; }

.pt2 {
  padding-top: 2rem; }

.mt2 {
  margin-top: 2rem; }

.pb10 {
  padding-bottom: 10rem; }

.underline {
  border-bottom: 4px solid #e50012; }

.underline-blue {
  border-bottom: 1px solid #0031ff; }

.txt-lg {
  font-size: 1.2em;
  position: relative;
  top: 1px;
  font-weight: normal; }
  @media only screen and (max-width: 37.5em) {
    .txt-lg {
      font-size: 1.2em; } }

.txt-xl {
  font-size: 1.25em;
  position: relative;
  top: 1.5px;
  font-weight: normal; }
  @media only screen and (max-width: 37.5em) {
    .txt-xl {
      font-size: 1.3em; } }

h2.title {
  font-size: 5rem;
  color: #231815;
  padding-bottom: 2rem;
  margin-bottom: 2rem; }
  @media only screen and (max-width: 56.25em) {
    h2.title {
      font-size: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    h2.title {
      font-size: 3rem; } }
  h2.title .dib {
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 6px solid #dbc9ab; }
  h2.title .text-liner::after {
    content: " |";
    font-weight: normal;
    font-size: 2.7rem;
    position: relative;
    top: -3px;
    color: #201512; }
  h2.title small {
    margin-left: 2rem;
    font-size: 3.5rem;
    color: #201512; }

h3.title {
  font-size: 3.5rem;
  color: #e50012;
  padding-bottom: 2rem; }
  h3.title small {
    margin-left: 2rem;
    font-size: 3.5rem;
    color: #201512; }
    @media only screen and (max-width: 37.5em) {
      h3.title small {
        font-size: 2rem;
        margin-left: 1rem; } }
  @media only screen and (max-width: 37.5em) {
    h3.title {
      font-size: 2rem; } }

.content-main {
  padding: 4rem 5rem; }
  @media only screen and (max-width: 37.5em) {
    .content-main {
      padding: 2rem 1rem; } }
  .content-main li {
    font-size: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .content-main li {
        font-size: 1.8rem; } }

.chartbox {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.ta-c {
  text-align: center; }

.pb2 {
  padding-bottom: 2rem; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #fff;
  background-color: #0088a3;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  right: -14px;
  top: -15px;
  opacity: 1; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.home-hero {
  text-align: right;
  position: relative; }
  @media only screen and (max-width: 37.5em) {
    .home-hero {
      height: unset;
      min-height: unset; } }
  .home-hero__socials {
    position: absolute;
    top: 50%;
    border: 2px solid #eee;
    border-left: 2px solid #eee;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .home-hero__mouse-scroll-cont {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .home-hero__social {
    width: 5rem; }
  .home-hero__social-icon-link {
    width: 100%;
    display: block;
    border-bottom: 0px solid #eee;
    -webkit-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s; }
    .home-hero__social-icon-link:hover {
      background: rgba(255, 255, 255, 0.1); }
    .home-hero__social-icon-link--bd-none {
      border-bottom: 0; }

@-webkit-keyframes star-rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    /* 初始狀態，旋轉角度 0deg，大小縮放比例 1 */
    opacity: 0;
    /* 透明度 0 */ }
  30% {
    -webkit-transform: rotate(180deg) scale(1.5);
    transform: rotate(180deg) scale(1.5);
    /* 中間狀態，旋轉角度 180deg，大小縮放比例 1.5 */
    opacity: 1;
    /* 透明度 1 */ }
  60% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    /* 結束狀態，旋轉角度 360deg，大小縮放比例 1 */
    opacity: 0;
    /* 透明度 0 */ }
  100% {
    opacity: 0;
    /* 透明度 0 */ } }

@keyframes star-rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    /* 初始狀態，旋轉角度 0deg，大小縮放比例 1 */
    opacity: 0;
    /* 透明度 0 */ }
  30% {
    -webkit-transform: rotate(180deg) scale(1.5);
    transform: rotate(180deg) scale(1.5);
    /* 中間狀態，旋轉角度 180deg，大小縮放比例 1.5 */
    opacity: 1;
    /* 透明度 1 */ }
  60% {
    -webkit-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    /* 結束狀態，旋轉角度 360deg，大小縮放比例 1 */
    opacity: 0;
    /* 透明度 0 */ }
  100% {
    opacity: 0;
    /* 透明度 0 */ } }
  .home-hero .logo {
    position: absolute;
    z-index: 999999;
    top: 0; }
    .home-hero .logo.logo-tena {
      left: 0; }
    .home-hero .logo.logo-egd {
      right: 0; }
  .home-hero__content__title {
    position: absolute;
    top: calc(50% + 40px);
    -webkit-transform: translateY(-54%);
    -ms-transform: translateY(-54%);
    transform: translateY(-54%);
    left: 3%;
    z-index: 99;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    text-align: center; }
    @media (max-height: 680px) {
      .home-hero__content__title {
        width: 50%;
        left: 5%; } }
    @media (min-height: 681px) and (max-height: 800px) {
      .home-hero__content__title {
        width: 48%;
        left: 5%; } }
    @media (min-height: 801px) {
      .home-hero__content__title {
        left: 8%;
        width: 45%; } }
    @media only screen and (max-width: 56.25em) {
      .home-hero__content__title {
        top: 100px;
        width: 80%;
        left: 10%;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%); } }
    @media only screen and (max-width: 37.5em) {
      .home-hero__content__title {
        position: relative;
        top: 12vh;
        width: 90%;
        left: 5%;
        height: calc(87vh - 120px); } }
    .home-hero__content__title .sub {
      text-align: center;
      padding: 1.5rem 0; }
      @media (max-height: 800px) {
        .home-hero__content__title .sub {
          top: 90px;
          padding: 1rem 0 0rem 0; } }
      @media only screen and (max-width: 56.25em) {
        .home-hero__content__title .sub {
          width: 70%;
          margin-left: 15%; } }
      @media only screen and (max-width: 37.5em) {
        .home-hero__content__title .sub {
          padding-top: 2vh;
          width: 100%;
          margin-left: 0%; } }
  .home-hero__info {
    margin: 3rem auto 0 auto;
    max-width: 80rem; }
  .home-hero__cta {
    margin-top: 5rem;
    text-align: center; }

h2.title {
  text-align: center;
  padding-bottom: 50px; }
  h2.title .title-L1 {
    position: absolute;
    text-align: left; }
  @media only screen and (max-width: 75em) {
    h2.title {
      padding-bottom: 10px; }
      h2.title .title-L1 img {
        width: 80%; }
      h2.title .txt img {
        width: 50%; } }
  @media only screen and (max-width: 56.25em) {
    h2.title {
      padding-top: 0px;
      padding-bottom: 0;
      margin-bottom: 20px; }
      h2.title .title-L1 img {
        width: 68%; }
      h2.title .txt img {
        width: 40%; } }
  @media only screen and (max-width: 46.8em) {
    h2.title .title-L1 img {
      width: 55%; }
    h2.title .txt img {
      width: 50%; } }
  @media only screen and (max-width: 37.5em) {
    h2.title {
      padding-top: 10px;
      padding-bottom: 0;
      margin-bottom: 20px; }
      h2.title .title-L1 img {
        display: none; }
      h2.title .txt img {
        width: 60%; }
      h2.title .title-sub {
        width: 30%; } }
  @media only screen and (max-width: 24em) {
    h2.title {
      padding-top: 10px;
      padding-bottom: 0;
      margin-bottom: 5px; }
      h2.title img {
        width: 50%; } }

h3.title {
  padding-left: 40px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 37.5em) {
    h3.title {
      padding-top: 10px;
      padding-bottom: 0;
      margin-bottom: 5px; }
      h3.title img {
        width: 50%; } }

.txt-red {
  color: #f95568; }

.txt-blue {
  color: #066dba; }

p a {
  color: #066dba; }

@media only screen and (max-width: 37.5em) {
  .btn-df {
    max-width: 50% !important;
    display: block;
    margin: auto; } }

.sec-pad {
  position: relative;
  padding-bottom: 50px; }
  @media only screen and (max-width: 37.5em) {
    .sec-pad {
      padding: 0rem 0 0rem 0;
      margin-bottom: 0px; } }

@-webkit-keyframes slideBackground {
  from {
    background-position: 400% 0; }
  to {
    background-position: -400% 0; } }

@keyframes slideBackground {
  from {
    background-position: 400% 0; }
  to {
    background-position: -400% 0; } }

@-webkit-keyframes slideBackgroundM {
  from {
    background-position: 200% 0; }
  to {
    background-position: -200% 0; } }

@keyframes slideBackgroundM {
  from {
    background-position: 200% 0; }
  to {
    background-position: -200% 0; } }

.wbox {
  background-color: #ffF;
  border-radius: 15px;
  padding: 10px;
  position: relative;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  z-index: 10; }
  @media only screen and (max-width: 56.25em) {
    .wbox {
      padding: 3rem 2rem; } }
  @media only screen and (max-width: 37.5em) {
    .wbox {
      padding: 2rem 1rem; } }

.grid1-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr); }
  @media only screen and (max-width: 37.5em) {
    .grid1-2 {
      -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr); } }

.grid-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem; }

.modal-1 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8); }
  .modal-1 iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    display: block; }
  .modal-1 .modal-close {
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px;
    color: #444;
    background-color: #fff; }

.winner-list {
  font-size: 18px;
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .winner-list {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  .winner-list .item {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc; }

.is-hide {
  display: none; }

@media only screen and (max-width: 37.5em) {
  .form-fin {
    text-align: center; }
    .form-fin .infotxt {
      padding-top: 2rem; } }

.form-fin .con {
  padding: 10px 20px; }

.sec1 .list_nav {
  text-align: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  width: 70%;
  margin: auto; }
  @media only screen and (max-width: 37.5em) {
    .sec1 .list_nav {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      width: 100%; } }
  .sec1 .list_nav a img {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .sec1 .list_nav a:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px); }

.sec1 h2.title {
  padding-bottom: 20px; }
  @media only screen and (max-width: 56.25em) {
    .sec1 h2.title img.title-img {
      width: 80%; } }
  @media only screen and (max-width: 37.5em) {
    .sec1 h2.title img.title-img {
      width: 90%; } }

.sec1 .v-main {
  background-image: url(../assets/images/sec1-bg.png?v=1.2);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 0;
  margin-bottom: 120px; }
  @media only screen and (max-width: 56.25em) {
    .sec1 .v-main {
      background-size: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .sec1 .v-main {
      margin-bottom: 10px;
      padding: 20px 0; } }

.sec1 .vbox {
  background-color: #fff;
  width: 76%;
  margin-left: 12%;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid #ffc000;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5); }

.sec2 {
  background-color: #023e84;
  background-image: url(../assets/images/main-rule-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  padding-top: 80px; }
  @media only screen and (max-width: 75em) {
    .sec2 {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media only screen and (max-width: 56.25em) {
    .sec2 h3.title {
      width: 70%;
      margin-left: 15%; } }
  @media only screen and (max-width: 37.5em) {
    .sec2 h3.title {
      width: 100%;
      margin-left: 0;
      margin-top: 8px; }
      .sec2 h3.title img {
        width: 70%; } }
  .sec2__content {
    background-image: url(../assets/images/title-bg-sec2.png?v=1.2);
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 20px; }
    @media only screen and (max-width: 56.25em) {
      .sec2__content {
        padding-top: 0px; } }
  .sec2 .wbox {
    width: 92%;
    margin-left: 4%; }
  .sec2 p {
    font-size: 2.4rem;
    line-height: 1.8; }
    @media only screen and (max-width: 37.5em) {
      .sec2 p {
        font-size: 2rem; } }
  .sec2__content-main {
    padding: 5rem 5rem; }
    @media only screen and (max-width: 37.5em) {
      .sec2__content-main {
        padding: 2rem 1rem; } }

.sec3 {
  padding-top: 220px;
  padding-bottom: 0px;
  margin-bottom: 0; }
  @media only screen and (max-width: 75em) {
    .sec3 {
      padding-bottom: 0px;
      padding-top: 40px; } }
  @media only screen and (max-width: 56.25em) {
    .sec3 h3.title {
      width: 70%;
      margin-left: 15%; } }
  @media only screen and (max-width: 37.5em) {
    .sec3 h3.title {
      width: 100%;
      margin-left: 0;
      margin-top: 8px; }
      .sec3 h3.title img {
        width: 70%; } }
  .sec3__content {
    background-image: url(../assets/images/title-bg-sec3.png?v=1.2);
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 20px; }
    @media only screen and (max-width: 56.25em) {
      .sec3__content {
        padding-top: 0px; } }
  .sec3 .main-con {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
    grid-gap: 5rem; }
    @media only screen and (max-width: 37.5em) {
      .sec3 .main-con {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-gap: 0rem; } }
    .sec3 .main-con .pic-dr {
      position: relative; }
      .sec3 .main-con .pic-dr img {
        position: absolute;
        top: -200px; }
  .sec3 a.btn-dr {
    position: relative;
    left: 50px;
    top: -15px;
    z-index: 10; }
    @media only screen and (max-width: 37.5em) {
      .sec3 a.btn-dr {
        left: auto; } }
  .sec3 .wbox {
    width: 100%;
    margin-left: 4%;
    padding: 30px; }
    @media only screen and (max-width: 37.5em) {
      .sec3 .wbox {
        width: 92%; } }
  .sec3 p {
    font-size: 2rem;
    line-height: 1.8; }
    @media only screen and (max-width: 37.5em) {
      .sec3 p {
        font-size: 2rem; } }
  .sec3__content-main {
    padding: 5rem 5rem; }
    @media only screen and (max-width: 37.5em) {
      .sec3__content-main {
        padding: 2rem 1rem; } }

.sec4 {
  padding-bottom: 100px;
  margin-bottom: 0;
  padding-top: 150px; }
  @media only screen and (max-width: 75em) {
    .sec4 {
      padding-bottom: 80px;
      padding-top: 80px; } }
  @media only screen and (max-width: 56.25em) {
    .sec4 h3.title {
      width: 70%;
      margin-left: 15%; } }
  @media only screen and (max-width: 37.5em) {
    .sec4 h3.title {
      width: 100%;
      margin-left: 0;
      margin-top: 8px; }
      .sec4 h3.title img {
        width: 70%; } }
  .sec4__content {
    background-image: url(../assets/images/title-bg-sec4.png?v=1.2);
    background-position: center 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 20px; }
    @media only screen and (max-width: 56.25em) {
      .sec4__content {
        padding-top: 0px; } }
  .sec4 h4 {
    font-size: 2rem;
    padding-top: 15px;
    padding-bottom: 10px; }
  .sec4 .wbox {
    margin: auto;
    max-width: 800px; }
    @media only screen and (max-width: 37.5em) {
      .sec4 .wbox {
        width: 92%; } }
  .sec4 p {
    font-size: 2rem;
    line-height: 1.8;
    padding-bottom: 15px; }
    @media only screen and (max-width: 37.5em) {
      .sec4 p {
        font-size: 1.8rem; } }
  .sec4__content-main {
    padding: 5rem 5rem; }
    @media only screen and (max-width: 37.5em) {
      .sec4__content-main {
        padding: 2rem 1rem; } }

@media only screen and (max-width: 37.5em) {
  .sharebar {
    text-align: center !important; } }

.telbox {
  text-align: center;
  background-image: url(../assets/images/telbox-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 12rem 0; }
  @media only screen and (max-width: 37.5em) {
    .telbox {
      padding: 6rem 0; } }

.itembox {
  background-color: #f3fafe;
  border-radius: 15px;
  overflow: hidden; }

.tab_nav {
  width: 90%;
  margin-left: 5%;
  margin-bottom: 15px;
  position: relative;
  top: 0px;
  z-index: 9;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    .tab_nav {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      grid-gap: .1rem;
      width: 100%;
      margin-left: 0%;
      margin-top: 10px;
      margin-bottom: 10px;
      place-items: center;
      text-align: center; } }
  .tab_nav .tab_nav_btn {
    display: inline-block;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    margin-left: 2%; }
    @media only screen and (max-width: 37.5em) {
      .tab_nav .tab_nav_btn {
        max-width: 30vw; } }
    .tab_nav .tab_nav_btn .btn-img {
      opacity: 1;
      width: 300px; }
    .tab_nav .tab_nav_btn .btn-img-hover {
      opacity: 0;
      position: absolute;
      width: 100%;
      left: 50%;
      top: 0px;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
    .tab_nav .tab_nav_btn.active .btn-img, .tab_nav .tab_nav_btn:hover .btn-img {
      opacity: 0; }
    .tab_nav .tab_nav_btn.active .btn-img-hover, .tab_nav .tab_nav_btn:hover .btn-img-hover {
      opacity: 1; }

.list_btn {
  width: 96%;
  margin-left: 2%;
  margin-top: 3rem;
  place-items: center;
  text-align: center; }
  @media only screen and (max-width: 65.7em) {
    .list_btn {
      font-size: 1.4em;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 37.5em) {
    .list_btn {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 1rem; } }
  .list_btn .list_btn_a {
    display: inline-block;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 8px; }
  .list_btn .tab_nav_btn {
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative; }
    .list_btn .tab_nav_btn .btn-img {
      opacity: 1; }
    .list_btn .tab_nav_btn .btn-img-hover {
      opacity: 0;
      position: absolute;
      left: 50%;
      top: 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
    .list_btn .tab_nav_btn.active .btn-img, .list_btn .tab_nav_btn:hover .btn-img {
      opacity: 0; }
    .list_btn .tab_nav_btn.active .btn-img-hover, .list_btn .tab_nav_btn:hover .btn-img-hover {
      opacity: 1; }

.homebtnlist {
  background-color: #f6fbff;
  position: fixed;
  width: 100%;
  z-index: 9; }
  .homebtnlist .homebtnlist-con {
    margin-top: 20px;
    width: 80%;
    margin-left: 10%;
    display: -ms-grid;
    display: grid;
    top: -50px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    position: absolute; }

.fix_btn {
  position: fixed;
  right: 0%;
  z-index: 99;
  top: 30%;
  z-index: 999;
  min-width: 65px; }
  .fix_btn a {
    display: block; }
    @media only screen and (max-width: 37.5em) {
      .fix_btn a {
        display: inline-block;
        width: 60%;
        margin: auto;
        padding-top: 0px;
        padding-bottom: 0px; } }
  @media only screen and (max-width: 56.25em) {
    .fix_btn {
      top: 45%;
      width: 50px;
      min-width: auto;
      right: 0; } }
  @media only screen and (max-width: 37.5em) {
    .fix_btn {
      top: auto;
      bottom: 0;
      text-align: center;
      width: 100%;
      padding-top: 5px;
      background-color: rgba(255, 255, 255, 0.8); } }

.fix_btn_b {
  position: fixed;
  right: 1%;
  z-index: 99;
  bottom: 10px;
  z-index: 999;
  min-width: 70px; }
  .fix_btn_b a {
    display: block; }
  @media only screen and (max-width: 37.5em) {
    .fix_btn_b {
      bottom: 8%;
      right: 0;
      min-width: 60px; } }

.slick-arrow {
  top: 50%;
  line-height: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  padding: 10px;
  background-color: #7f7f7f;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }
  @media only screen and (max-width: 37.5em) {
    .slick-arrow {
      width: 30px;
      height: 30px;
      background-size: 70%; } }
  .slick-arrow::before {
    color: #3365c2;
    font-size: 30px;
    display: none; }
  .slick-arrow.slick-prev {
    left: -13%;
    background-image: url(../assets/images/slick-prev.png?v=1.2);
    background-color: #7f7f7f;
    background-repeat: no-repeat;
    background-position: center center; }
    @media only screen and (max-width: 37.5em) {
      .slick-arrow.slick-prev {
        left: -12%; } }
    .slick-arrow.slick-prev:hover {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .slick-arrow.slick-next {
    right: -13%;
    background-image: url(../assets/images/slick-next.png?v=1.2);
    background-color: #7f7f7f;
    background-repeat: no-repeat;
    background-position: center center; }
    .slick-arrow.slick-next:hover {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
    @media only screen and (max-width: 56.25em) {
      .slick-arrow.slick-next {
        right: -30px; } }
    @media only screen and (max-width: 37.5em) {
      .slick-arrow.slick-next {
        right: -12%; } }

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

.cherry-blossoms {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; }

@-webkit-keyframes float {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes float {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.banner-p1-obj {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 0;
  width: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .banner-p1-obj img {
    -webkit-animation: float 2s ease-out;
    animation: float 2s ease-out; }

.banner-logo {
  position: absolute;
  left: 2%;
  z-index: 99;
  top: 1%; }
  @media only screen and (max-width: 37.5em) {
    .banner-logo {
      width: 18%; } }

.banner-egd-logo {
  position: absolute;
  right: 0%;
  top: 0;
  z-index: 99; }
  @media only screen and (max-width: 37.5em) {
    .banner-egd-logo {
      width: 30%; } }

.banner {
  text-align: center;
  background-position: center 0;
  background-repeat: no-repeat;
  background-color: #4594d5;
  position: relative;
  overflow: hidden; }
  .banner .info {
    position: relative;
    display: block;
    max-width: 1400px;
    margin: auto;
    padding: 0;
    line-height: 0; }
  .banner a.btn {
    position: absolute;
    z-index: 2;
    width: 60%;
    top: 60%;
    right: 0;
    z-index: 99;
    height: 150px;
    opacity: 0;
    background-color: #f0f; }
    @media only screen and (max-width: 37.5em) {
      .banner a.btn {
        width: 35%; } }
    .banner a.btn a {
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
      transform: scale(0.95);
      display: block; }
  .banner__pro {
    position: absolute;
    z-index: 9;
    width: 70%;
    bottom: 0%;
    right: 3%; }
    @media only screen and (max-width: 37.5em) {
      .banner__pro {
        width: 50%; } }
  .banner__title {
    position: absolute;
    z-index: 9;
    width: 70%;
    top: 5%;
    left: 15%; }
    @media only screen and (max-width: 37.5em) {
      .banner__title {
        width: 70%;
        left: 15%; } }

.w-box {
  border: 2px solid #fff;
  border-radius: 15px;
  padding: 30px 15px; }
  @media only screen and (max-width: 37.5em) {
    .w-box {
      margin: 0 15px;
      padding: 30px 15px; } }

.sec2 {
  padding-bottom: 120px; }

.btn-event {
  display: inline-block; }
  @media only screen and (max-width: 56.25em) {
    .btn-event {
      max-width: 40%;
      margin: auto;
      padding-bottom: 80px; } }
  @media only screen and (max-width: 37.5em) {
    .btn-event {
      padding: 10px;
      padding-bottom: 10px;
      display: block;
      max-width: 80%;
      margin: auto; } }

@media only screen and (max-width: 37.5em) {
  .con3 {
    padding-top: 30px; } }

.con3-p1 {
  position: relative; }

.con2, .con3, .con4 {
  margin: auto;
  max-width: 1050px;
  position: relative; }
  .con2 .title, .con3 .title, .con4 .title {
    position: relative;
    top: 4px;
    max-width: 40%;
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .con2 .title, .con3 .title, .con4 .title {
        max-width: 35%;
        margin: auto; } }
  .con2 .btn-link, .con3 .btn-link, .con4 .btn-link {
    position: absolute;
    width: 31%;
    height: 180px;
    right: 0;
    bottom: 0;
    opacity: 0; }
    @media only screen and (max-width: 37.5em) {
      .con2 .btn-link, .con3 .btn-link, .con4 .btn-link {
        width: 50%;
        height: 120px; } }
    .con2 .btn-link.btn-link1, .con3 .btn-link.btn-link1, .con4 .btn-link.btn-link1 {
      background-color: #f0f;
      right: 31%; }
      @media only screen and (max-width: 37.5em) {
        .con2 .btn-link.btn-link1, .con3 .btn-link.btn-link1, .con4 .btn-link.btn-link1 {
          right: 50%; } }
    .con2 .btn-link.btn-link2, .con3 .btn-link.btn-link2, .con4 .btn-link.btn-link2 {
      background-color: #f00; }

.con4 {
  position: relative; }
  .con4 .btn-link {
    position: absolute;
    width: 50%;
    height: 150px;
    left: 25%;
    bottom: 0; }

.date-mode {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff1c1c), to(#ff9a35));
  background: -webkit-linear-gradient(bottom, #ff1c1c, #ff9a35);
  background: -o-linear-gradient(bottom, #ff1c1c, #ff9a35);
  background: linear-gradient(to top, #ff1c1c, #ff9a35);
  padding: .6rem 2rem;
  border-radius: 40px;
  position: relative;
  font-size: 2rem;
  text-shadow: 0 0 5px rgba(200, 15, 15, 0.8); }
  .date-mode::after {
    content: '';
    width: 100%;
    height: 96%;
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    left: 0%;
    top: 5%;
    border-radius: 40px;
    position: absolute;
    opacity: 0.8; }

.btn-step {
  border: 2px solid #182987;
  background-color: #fff;
  color: #182987 !important;
  border-radius: 30px;
  padding: .3rem 2rem;
  display: inline-block;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s; }
  @media only screen and (max-width: 37.5em) {
    .btn-step {
      text-align: center; } }
  .btn-step::before {
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 2px;
    display: inline-block; }
  .btn-step:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); }
  .btn-step.btn-download::before {
    background-image: url(../assets/images/icon-down.png?v=1.2);
    width: 20px;
    height: 20px; }
    @media only screen and (max-width: 56.25em) {
      .btn-step.btn-download::before {
        width: 20px;
        height: 20px; } }
  .btn-step.btn-search::before {
    background-image: url(../assets/svg/icon-search.svg);
    width: 19px;
    height: 19px; }
    @media only screen and (max-width: 56.25em) {
      .btn-step.btn-search::before {
        width: 15px;
        height: 15px; } }

#advantage {
  position: absolute;
  top: 70vh;
  width: 1px;
  height: 1px; }
  @media only screen and (max-width: 56.25em) {
    #advantage {
      top: 55vh; } }
  @media only screen and (max-width: 37.5em) {
    #advantage {
      top: 25vh; } }

.advantage {
  position: absolute;
  top: 95vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
  max-width: 110rem;
  margin: auto;
  width: 92%;
  padding-top: 10rem; }
  @media only screen and (max-width: 56.25em) {
    .advantage {
      top: 75vh; } }
  @media only screen and (max-width: 37.5em) {
    .advantage {
      top: 38vh;
      padding-top: 10rem; } }
  @media only screen and (max-width: 56.25em) {
    .advantage .title {
      width: 70%;
      margin-left: 15%; } }
  .advantage .list-adv {
    margin-top: 5rem;
    width: 80%;
    margin-left: 10%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem; }
    .advantage .list-adv a {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      transform: scale(0.9);
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .advantage .list-adv a:hover {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
    @media only screen and (max-width: 56.25em) {
      .advantage .list-adv {
        width: 60%;
        margin-left: 20%;
        grid-gap: 5rem 10rem; }
        .advantage .list-adv a {
          -webkit-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); } }
    @media only screen and (max-width: 37.5em) {
      .advantage .list-adv {
        width: 80%;
        margin-left: 10%;
        margin-top: 2rem;
        grid-gap: 2rem 10rem; }
        .advantage .list-adv a {
          -webkit-transform: scale(1);
          -ms-transform: scale(1);
          transform: scale(1); } }

.fix_scroll-top {
  position: fixed;
  right: 1%;
  bottom: 2%;
  z-index: 1000;
  width: 60px;
  height: 60px; }
  @media only screen and (max-width: 56.25em) {
    .fix_scroll-top {
      display: none; } }
  .fix_scroll-top a {
    width: 60px;
    height: 60px;
    display: block;
    padding: .5rem 1rem;
    border-radius: 5px;
    opacity: 0.7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
    .fix_scroll-top a:hover {
      opacity: 1; }

.collapse-header {
  background-color: #c29b61;
  color: #fff;
  font-size: 2.2rem;
  padding: 10px 25px 10px 15px;
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative; }
  @media only screen and (max-width: 37.5em) {
    .collapse-header {
      padding: 10px 30px 10px 10px;
      font-size: 2rem; } }
  .collapse-header::after {
    content: ' ';
    background-image: url(../assets/svg/icon-collapse-down.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media only screen and (max-width: 56.25em) {
      .collapse-header::after {
        width: 30px;
        height: 30px; } }
    @media only screen and (max-width: 37.5em) {
      .collapse-header::after {
        width: 22px;
        height: 22px;
        right: 10px; } }

.collapse-content {
  font-size: 2rem;
  max-height: 0px;
  padding: 0px 10px 0px 10px;
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: all .2s  ease-out;
  -o-transition: all .2s  ease-out;
  transition: all .2s  ease-out; }
  @media only screen and (max-width: 37.5em) {
    .collapse-content {
      font-size: 1.8rem; } }

.show .collapse-header::after {
  content: '';
  background-image: url(../assets/svg/icon-collapse-up.svg); }

.show .collapse-content {
  padding: 10px 10px 30px 10px;
  opacity: 1;
  max-height: 1000px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }

.grid-container.grid-s .th {
  padding: 0.3em; }

.grid-container.grid-s .td {
  padding: 0.3em; }

.grid-container .row {
  display: -ms-grid;
  display: grid;
  grid-gap: 0rem .5rem;
  margin-bottom: .5rem;
  font-size: 1.6rem; }
  @media only screen and (max-width: 37.5em) {
    .grid-container .row {
      font-size: 1.4rem; }
      .grid-container .row ul {
        padding-left: 1rem; } }
  .grid-container .row li {
    font-size: 1.6rem;
    text-align: left; }
  .grid-container .row.cell-2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .grid-container .row.cell-2 {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr); } }
  .grid-container .row.cell-3 {
    -ms-grid-columns: 60% 20% 20%;
    grid-template-columns: 60% 20% 20%; }
  .grid-container .row.cell-4 {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr); }
  .grid-container .row.cell-7 {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr); }

.grid-container b {
  font-size: 1.8rem; }
  @media only screen and (max-width: 37.5em) {
    .grid-container b {
      font-size: 1.5rem; } }

.grid-container .place-c {
  display: -ms-grid;
  display: grid;
  place-items: center;
  grid-auto-flow: dense; }

@media only screen and (max-width: 37.5em) {
  .grid-container .place-c-m {
    display: -ms-grid;
    display: grid;
    place-items: center; } }

.grid-container .th {
  background-color: #dfccae;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.65rem; }
  @media only screen and (max-width: 37.5em) {
    .grid-container .th {
      padding: .3rem 0;
      font-size: 1.4rem; } }
  @media only screen and (max-width: 24em) {
    .grid-container .th {
      padding: .2rem 0;
      font-size: 1rem; }
      .grid-container .th .txt-xl {
        font-size: 1.5em; } }

.grid-container .td {
  background-color: #eeeeef;
  text-align: center;
  padding: 1rem;
  position: relative; }
  .grid-container .td .db {
    width: 100%; }
  @media only screen and (max-width: 37.5em) {
    .grid-container .td {
      padding: .3rem; } }
  .grid-container .td.icon-l {
    padding-left: 4rem;
    padding-top: 3rem;
    padding-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .grid-container .td.icon-l {
        padding-left: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .grid-container .td.icon-l {
        padding-left: 0rem;
        padding-top: 5rem; } }
    .grid-container .td.icon-l::before {
      content: '';
      background-image: url(../assets/svg/icon-l.svg);
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      top: 50%;
      left: 5px;
      width: 50px;
      height: 50px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 56.25em) {
        .grid-container .td.icon-l::before {
          width: 40px;
          height: 40px; } }
      @media only screen and (max-width: 37.5em) {
        .grid-container .td.icon-l::before {
          top: 10px;
          left: 50%;
          width: 30px;
          height: 30px;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); } }
  .grid-container .td.icon-h {
    padding-left: 6rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    text-align: left; }
    @media only screen and (max-width: 56.25em) {
      .grid-container .td.icon-h {
        padding-left: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .grid-container .td.icon-h {
        padding-left: 0rem;
        padding-top: 5rem; } }
    .grid-container .td.icon-h::before {
      content: '';
      background-image: url(../assets/svg/icon-h.svg);
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      top: 50%;
      left: 5px;
      width: 50px;
      height: 50px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 56.25em) {
        .grid-container .td.icon-h::before {
          width: 40px;
          height: 40px; } }
      @media only screen and (max-width: 37.5em) {
        .grid-container .td.icon-h::before {
          top: 10px;
          left: 50%;
          width: 30px;
          height: 30px;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); } }
  .grid-container .td.icon-king-l {
    padding-left: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .grid-container .td.icon-king-l {
        padding-left: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .grid-container .td.icon-king-l {
        padding-left: 0rem;
        padding-top: 5rem; } }
    .grid-container .td.icon-king-l::before {
      content: '';
      background-image: url(../assets/svg/icon-kingl.svg?v=0.58);
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      top: 47%;
      left: 0px;
      width: 60px;
      height: 60px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 56.25em) {
        .grid-container .td.icon-king-l::before {
          width: 50px;
          height: 50px; } }
      @media only screen and (max-width: 37.5em) {
        .grid-container .td.icon-king-l::before {
          width: 40px;
          height: 40px;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); } }
  .grid-container .td.icon-king-h {
    padding-left: 4rem;
    padding-top: 3rem;
    padding-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .grid-container .td.icon-king-h {
        padding-left: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .grid-container .td.icon-king-h {
        padding-left: 0rem;
        padding-top: 5rem; } }
    .grid-container .td.icon-king-h::before {
      content: '';
      background-image: url(../assets/svg/icon-kingh.svg?v=0.58);
      background-repeat: no-repeat;
      background-size: cover;
      position: absolute;
      top: 47%;
      left: 0px;
      width: 60px;
      height: 60px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 56.25em) {
        .grid-container .td.icon-king-h::before {
          width: 50px;
          height: 50px; } }
      @media only screen and (max-width: 37.5em) {
        .grid-container .td.icon-king-h::before {
          top: 0;
          left: 50%;
          width: 40px;
          height: 40px;
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); } }

.grid-container.bg-event .row:nth-child(even) .td {
  background-color: #f7f9f9; }

.table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 2rem;
  overflow: hidden; }
  .table-container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-bottom: 1px solid #fff;
    background-color: #f3fafe; }
    .table-container .row:last-child {
      border-bottom: 0px solid #fff; }
    @media only screen and (max-width: 37.5em) {
      .table-container .row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 0px solid #fff; }
        .table-container .row:last-child .th, .table-container .row:last-child td {
          border-bottom: 0px solid #fff; } }
  .table-container .th {
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(linear, right top, left top, from(#dfccae), to(#dfccae));
    background: -webkit-linear-gradient(right, #dfccae, #dfccae);
    background: -o-linear-gradient(right, #dfccae, #dfccae);
    background: linear-gradient(to left, #dfccae, #dfccae);
    color: #231815;
    padding: 16px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media only screen and (max-width: 37.5em) {
      .table-container .th {
        font-size: 1.8rem;
        border-bottom: 1px solid #fff; } }
  .table-container .td {
    text-align: left;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    padding: 16px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #231815;
    background-color: #eeeeef; }
    @media only screen and (max-width: 37.5em) {
      .table-container .td {
        font-size: 1.8rem;
        border-bottom: 1px solid #fff; } }
  .table-container .cell-4.th {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%; }
    @media only screen and (max-width: 37.5em) {
      .table-container .cell-4.th {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%; } }
  .table-container .cell-4.td {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%; }
    @media only screen and (max-width: 37.5em) {
      .table-container .cell-4.td {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%; } }
  .table-container .cell-2.th {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%; }
    @media only screen and (max-width: 37.5em) {
      .table-container .cell-2.th {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%; } }
  .table-container .cell-2.td {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%; }
    @media only screen and (max-width: 37.5em) {
      .table-container .cell-2.td {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%; } }
  .table-container.table-style2 {
    background-color: #ece3d4;
    padding: 5px; }
    @media only screen and (max-width: 37.5em) {
      .table-container.table-style2 {
        padding: 8px 5px; } }
    .table-container.table-style2 .row {
      margin: 3px 3px;
      border-bottom: 0px;
      background-color: #ece3d4; }
      @media only screen and (max-width: 37.5em) {
        .table-container.table-style2 .row {
          margin: 0px 3px; } }
    .table-container.table-style2 .th {
      background: -webkit-gradient(linear, right top, left top, from(#d8c6a8), to(#d8c6a8));
      background: -webkit-linear-gradient(right, #d8c6a8, #d8c6a8);
      background: -o-linear-gradient(right, #d8c6a8, #d8c6a8);
      background: linear-gradient(to left, #d8c6a8, #d8c6a8); }
      @media only screen and (max-width: 37.5em) {
        .table-container.table-style2 .th {
          margin-bottom: .5rem;
          border-bottom: 0px; } }
    .table-container.table-style2 .td {
      background-color: #fff; }
      @media only screen and (max-width: 37.5em) {
        .table-container.table-style2 .td {
          margin-bottom: .5rem;
          border-bottom: 0px; } }

.dn {
  display: none; }

.white-popup-ifram {
  position: relative;
  background: #FFF;
  padding: 20px 10px;
  width: auto;
  max-width: 900px;
  margin: 20px auto;
  color: #333;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 10px;
  min-height: 90vh; }
  @media only screen and (max-width: 37.5em) {
    .white-popup-ifram {
      width: 94%; } }
  .white-popup-ifram iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    display: block;
    width: 96%;
    height: 96%; }
  .white-popup-ifram .title {
    border-radius: 10px; }
  .white-popup-ifram h4 {
    font-size: 2.5rem;
    padding-bottom: 1rem; }
    .white-popup-ifram h4 a {
      color: #b51e23;
      border-bottom: 1px solid #b51e23; }
  .white-popup-ifram p {
    color: #333; }

.white-popup {
  position: relative;
  background: #FFF;
  padding: 40px 20px;
  width: auto;
  max-width: 800px;
  margin: 20px auto;
  color: #333;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border-radius: 10px; }
  @media only screen and (max-width: 37.5em) {
    .white-popup {
      width: 92%;
      padding: 20px 0px; } }
  .white-popup h3 {
    font-size: 3rem; }
  .white-popup .title {
    border-radius: 10px; }
  .white-popup h4 {
    font-size: 2.5rem;
    padding-bottom: 1rem; }
    .white-popup h4 a {
      color: #b51e23;
      border-bottom: 1px solid #b51e23; }
  .white-popup p {
    color: #333; }

.white-popup .contact {
  font-weight: normal; }
  .white-popup .contact__title {
    color: #fff;
    font-size: 3rem;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #c82822;
    margin-bottom: 3rem; }
  .white-popup .contact__form-container {
    padding: 2rem;
    max-width: 80rem;
    text-align: left;
    width: 96%;
    margin-left: 2%;
    border-radius: 5px; }
    @media only screen and (max-width: 37.5em) {
      .white-popup .contact__form-container {
        padding: 2rem; } }
  .white-popup .contact__user-info {
    background-color: #f2f2f2;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem; }
  .white-popup .contact__form-field {
    position: relative;
    margin-bottom: 1.5rem; }
  .white-popup .contact__form-title {
    font-weight: 700;
    padding-bottom: 1rem;
    color: #148665;
    border-bottom: 1px solid #148665;
    margin-bottom: 1rem; }
  .white-popup .contact__form-checkbox {
    display: inline-block;
    margin-bottom: 1.4rem;
    top: .8rem;
    position: absolute; }
    @media only screen and (max-width: 37.5em) {
      .white-popup .contact__form-checkbox {
        position: absolute;
        top: 0rem;
        margin-bottom: 1.5rem;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px); } }
    .white-popup .contact__form-checkbox + .contact__form-label {
      margin-left: 2rem;
      display: inline-block;
      font-size: 1.7rem; }
      @media only screen and (max-width: 37.5em) {
        .white-popup .contact__form-checkbox + .contact__form-label {
          margin-left: 2.5rem; } }
  .white-popup .contact__form-radio {
    display: inline-block;
    margin-bottom: 1.4rem; }
    @media only screen and (max-width: 37.5em) {
      .white-popup .contact__form-radio {
        position: absolute;
        margin-bottom: 1.5rem;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px); } }
    .white-popup .contact__form-radio + .contact__form-label {
      margin-left: .5rem;
      margin-right: 1.5rem;
      display: inline-block; }
      @media only screen and (max-width: 37.5em) {
        .white-popup .contact__form-radio + .contact__form-label {
          margin-left: 2rem; } }
  .white-popup .contact__form-label {
    color: #666;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline;
    text-align: left; }
  .white-popup .contact__form-select {
    padding: 1rem;
    border: 1px solid #a3a3a3;
    border-radius: 5px;
    font-size: 1.7rem;
    color: #666; }
    @media only screen and (max-width: 37.5em) {
      .white-popup .contact__form-select {
        width: 100%; } }
  .white-popup .contact__form-input {
    color: #333;
    margin-top: .5rem;
    padding: 1rem;
    width: 100%;
    border: 1px solid #a3a3a3;
    font-size: 2rem;
    letter-spacing: 0px;
    background: #fafafa;
    border-radius: 5px;
    /* Code for Modern Browsers */
    /* Code for WebKit, Blink, Edge */
    /* Code for Internet Explorer 10-11 */
    /* Code for Microsoft Edge */
    /* Code for Mozilla Firefox 4 to 18 */
    /* Code for Mozilla Firefox 19+ */ }
    .white-popup .contact__form-input::-webkit-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input:-ms-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input::-ms-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input::placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input::-webkit-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input:-ms-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input::-ms-input-placeholder {
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input:-moz-placeholder {
      opacity: 1;
      color: #999;
      font-size: 1.6rem; }
    .white-popup .contact__form-input::-moz-placeholder {
      opacity: 1;
      color: #999;
      font-size: 1.6rem; }
  .white-popup .contact__btn {
    width: 30%;
    padding: 2rem 4rem;
    font-size: 1.6rem; }
    @media only screen and (max-width: 37.5em) {
      .white-popup .contact__btn {
        width: 100%; } }

main {
  background-image: url(../assets/images/main-bg.jpg?v=1.2);
  background-position: center 0;
  background-repeat: no-repeat;
  background-color: #5594c0;
  background-size: 100%; }

.blue-box {
  background-color: #c6dbec;
  -webkit-box-shadow: inset 0 0px 10px rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0px 10px rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 20px;
  padding: 30px 15px;
  max-width: 1100px;
  margin: auto; }
  @media only screen and (max-width: 37.5em) {
    .blue-box {
      padding: 5% 5%;
      margin-left: 5%;
      margin-right: 5%; } }

.rule-btn {
  display: block; }
  @media only screen and (max-width: 37.5em) {
    .rule-btn {
      width: 80%;
      margin-left: 10%; } }

#form-popup2 .mfp-close {
  display: none; }

.project-cs-hero {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 45, 132, 0.8)), to(rgba(16, 45, 132, 0.8))), url(../../assets/svg/common-bg.svg);
  background: -webkit-linear-gradient(left, rgba(16, 45, 132, 0.8), rgba(16, 45, 132, 0.8)), url(../../assets/svg/common-bg.svg);
  background: -o-linear-gradient(left, rgba(16, 45, 132, 0.8), rgba(16, 45, 132, 0.8)), url(../../assets/svg/common-bg.svg);
  background: linear-gradient(to right, rgba(16, 45, 132, 0.8), rgba(16, 45, 132, 0.8)), url(../../assets/svg/common-bg.svg);
  background-size: cover;
  background-position: center;
  position: relative; }
  @media only screen and (max-width: 37.5em) {
    .project-cs-hero {
      height: unset;
      min-height: unset; } }
  .project-cs-hero__content {
    padding: 25rem 0 17rem 0;
    max-width: 90rem;
    width: 92%;
    margin: auto; }
    @media only screen and (max-width: 37.5em) {
      .project-cs-hero__content {
        padding: 19rem 0 13rem 0;
        margin: auto;
        position: static;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0); } }
  .project-cs-hero__info {
    margin: 3rem auto 0 auto;
    max-width: 80rem; }
  .project-cs-hero__cta {
    margin-top: 5rem;
    text-align: center; }

.project-details__content {
  padding: 8rem 0;
  max-width: 90rem;
  margin: auto; }
  .project-details__content-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 37.5em) {
      .project-details__content-title {
        font-size: 2.4rem; } }

.project-details__showcase-img-cont {
  width: 100%;
  margin-bottom: 6rem; }

.project-details__showcase-img {
  width: 100%; }

.project-details__content-main {
  width: 100%;
  max-width: 70rem;
  margin: auto; }

.project-details__desc {
  margin: 0 0 7rem 0; }
  .project-details__desc-para {
    font-size: 1.8rem;
    line-height: 1.7;
    color: grey;
    margin-bottom: 2rem; }

.project-details__tools-used {
  margin: 0 0 7rem 0; }
  .project-details__tools-used-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .project-details__tools-used-item {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    font-weight: 600;
    color: #777; }

.project-details__links {
  margin: 0 0; }
  .project-details__links-btn {
    margin-right: 2rem; }
    @media only screen and (max-width: 37.5em) {
      .project-details__links-btn {
        margin-right: 0;
        width: 70%;
        margin-bottom: 2rem;
        text-align: center; } }
    .project-details__links-btn:last-child {
      margin: 0; }
      @media only screen and (max-width: 37.5em) {
        .project-details__links-btn:last-child {
          margin: 0; } }

.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #000;
  background: #fff;
  -webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1); }
  .header__logo {
    width: 200px;
    padding: 0rem 1rem; }
    .header__logo img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      -o-object-position: center;
      object-position: center;
      display: block; }
    @media only screen and (max-width: 37.5em) {
      .header__logo {
        width: 28%; } }
  .header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 5rem; }
    @media only screen and (max-width: 56.25em) {
      .header__content {
        padding: 0 1.5rem; } }
  .header__logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #333;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .header__logo-container:hover {
      color: #102d84; }
  .header__logo-img-cont {
    width: 5rem;
    height: 5rem;
    border-radius: 50px;
    overflow: hidden;
    margin-right: 1.5rem;
    background: #102d84; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-img-cont {
        width: 4.5rem;
        height: 4.5rem;
        margin-right: 1.2rem; } }
  .header__logo-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block; }
  .header__logo-sub {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px; }
  .header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style-type: none;
    padding-left: 0; }
    @media only screen and (max-width: 37.5em) {
      .header__links {
        display: none; } }
  .header__link {
    padding: 1.5rem 2rem 0rem 2rem;
    font-size: 1.7rem;
    color: #231815;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    position: relative; }
    @media only screen and (max-width: 75em) {
      .header__link {
        font-size: 1.8rem;
        text-align: center; } }
    .header__link::after {
      position: absolute;
      content: '';
      width: 90%;
      height: 30px;
      left: 5%;
      top: 31%;
      z-index: -1;
      background-color: #bc2021;
      border-radius: 30px;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
      @media only screen and (max-width: 75em) {
        .header__link::after {
          height: 85%;
          top: 22%;
          border-radius: 20px; } }
      @media only screen and (max-width: 56.25em) {
        .header__link::after {
          height: 60%; } }
      @media only screen and (max-width: 46.8em) {
        .header__link::after {
          height: 60%; } }
    .header__link:hover, .header__link.active {
      color: #fff; }
      .header__link:hover::after, .header__link.active::after {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1); }
    @media only screen and (max-width: 65.7em) {
      .header__link {
        font-size: 1.4em; } }
    @media only screen and (max-width: 56.25em) {
      .header__link {
        padding: 3rem 1.5rem;
        font-size: 1.8rem; } }
  .header__link-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .header__btnlink {
    padding: 1.4rem 2rem 0rem 2rem;
    display: inline-block;
    font-size: 1.6rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    @media only screen and (max-width: 56.25em) {
      .header__btnlink {
        padding: 3rem 1rem;
        font-size: 1.8rem; }
        .header__btnlink img {
          position: relative;
          top: -3px; } }
  .header__main-ham-menu-cont {
    display: none;
    width: 4rem;
    background-color: #ccc;
    padding: 5px 6px 2px 6px;
    border-radius: 5px; }
    @media only screen and (max-width: 37.5em) {
      .header__main-ham-menu-cont {
        display: block; } }
  .header__main-ham-menu {
    width: 100%; }
  .header__main-ham-menu-close {
    width: 100%; }
  .header__sm-menu {
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 100%;
    visibility: hidden;
    padding-top: 5%;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 5px 5px rgba(0, 0, 0, 0.1); }
    .header__sm-menu--active {
      visibility: hidden;
      opacity: 0; }
      @media only screen and (max-width: 37.5em) {
        .header__sm-menu--active {
          visibility: visible;
          opacity: 1; } }
  .header__sm-menu-links {
    padding: 0; }
  .header__sm-menu-link {
    width: 60%;
    margin-left: 20%;
    border-bottom: 1px solid #ffc000;
    padding: 2rem 3rem 2rem 3rem;
    color: #000;
    list-style-type: none; }
    .header__sm-menu-link a {
      border-radius: 30px;
      padding: 1rem;
      display: block;
      text-decoration: none;
      font-size: 2.5rem;
      color: #000;
      text-align: center;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      -webkit-transition: color .3s;
      -o-transition: color .3s;
      transition: color .3s; }
      @media only screen and (max-width: 37.5em) {
        .header__sm-menu-link a {
          font-size: 2rem; } }
      .header__sm-menu-link a.btn-og {
        background-image: -webkit-gradient(linear, left top, right top, from(#d53f07), to(#fa7443));
        background-image: -webkit-linear-gradient(left, #d53f07, #fa7443);
        background-image: -o-linear-gradient(left, #d53f07, #fa7443);
        background-image: linear-gradient(to right, #d53f07, #fa7443); }
  .header__sm-menu-link-last {
    border-bottom: 0; }

.main-footer {
  background: #1e1f1c;
  color: #fff; }
  @media only screen and (max-width: 37.5em) {
    .main-footer {
      padding-left: 15px;
      padding-right: 15px; } }
  .main-footer h2 {
    margin-bottom: 1rem; }
    .main-footer h2 span {
      background-color: #fff;
      color: #ac2025;
      display: inline-block;
      border-radius: 30px;
      font-size: 2rem;
      padding: 8px 15px;
      min-width: 200px;
      text-align: center; }
  .main-footer h3 {
    font-size: 1.9rem;
    margin-top: 10px;
    padding-bottom: 10px; }
  @media only screen and (max-width: 37.5em) {
    .main-footer .sharebar img {
      min-width: 50px; } }
  .main-footer p, .main-footer li {
    color: #fff;
    font-size: 1.6rem;
    text-align: justify;
    line-height: 1.5; }
  .main-footer a {
    color: #b2e0ff; }
  .main-footer__title {
    font-size: 2.2rem;
    position: relative; }
    .main-footer__title small {
      font-size: 0.7em; }
    @media only screen and (max-width: 37.5em) {
      .main-footer__title {
        text-align: center;
        padding-bottom: 10px; }
        .main-footer__title small {
          display: block; } }
    .main-footer__title .sharebar {
      position: absolute;
      right: 0;
      top: 0; }
      @media only screen and (max-width: 37.5em) {
        .main-footer__title .sharebar img {
          min-width: 150px; } }
  @media only screen and (max-width: 37.5em) {
    .main-footer {
      padding-bottom: 7rem; } }
  .main-footer__upper {
    padding: 4rem 0; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__upper {
        padding: 3rem 0; } }
    @media only screen and (max-width: 37.5em) {
      .main-footer__upper {
        display: block; } }
  .main-footer__short-desc {
    margin-top: 2rem;
    color: #231815;
    font-size: 1.5rem;
    text-align: left;
    font-weight: bold; }
    .main-footer__short-desc span.txt-blue {
      color: #0099ff; }
  .main-footer__info-cont {
    margin-top: 2rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 1.3fr 1fr 1fr;
    grid-template-columns: 1.5fr 1.3fr 1fr 1fr;
    grid-gap: 1rem;
    line-height: 1.8; }
    .main-footer__info-cont h3 {
      font-size: 2.2rem; }
    .main-footer__info-cont h4 {
      font-size: 1.5rem;
      font-weight: normal;
      font-weight: bold; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__info-cont {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (max-width: 37.5em) {
      .main-footer__info-cont {
        margin-top: 0rem;
        display: block;
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr); } }
  .main-footer__item {
    border-right: 1px solid #ccc;
    padding-right: 5px;
    padding-left: 5px; }
    .main-footer__item:first-child {
      padding-left: 0; }
    .main-footer__item.last-c {
      border-right: 0px solid #ccc; }
    @media only screen and (max-width: 37.5em) {
      .main-footer__item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-right: 0px solid #ccc;
        border-bottom: 1px solid #ccc;
        text-align: center; }
        .main-footer__item.last-c {
          border-bottom: 0px solid #ccc; } }
  .main-footer .ctxt {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    margin-bottom: 10px; }
  .main-footer__lower {
    padding: 4rem 0;
    border-top: 1px solid #444;
    color: #eee;
    font-size: 1.2rem;
    text-align: left;
    text-align: center; }
    .main-footer__lower a {
      text-decoration: underline;
      font-weight: bold;
      margin-left: 2px; }
    @media only screen and (max-width: 56.25em) {
      .main-footer__lower {
        padding: 3.5rem 0; } }

.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .skills__skill {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
    font-size: 1.6rem;
    background: rgba(153, 153, 153, 0.2);
    border-radius: 5px;
    font-weight: 600;
    color: #777; }

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #eee;
  border-radius: 60px;
  position: relative;
  overflow: hidden; }
  .mouse::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    top: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #eee;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 1.3s infinite;
    -webkit-animation: wheel 1.3s infinite; }

@keyframes wheel {
  to {
    opacity: 0;
    top: 27px; } }

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 27px; } }

.mouse-scroll-cont {
  position: absolute;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  animation: wheel2 1.6s infinite;
  -webkit-animation: wheel2 1.6s infinite; }
  @media only screen and (max-width: 56.25em) {
    .mouse-scroll-cont {
      bottom: 1%; } }
  @media only screen and (max-width: 37.5em) {
    .mouse-scroll-cont {
      left: 48%;
      bottom: 1%; }
      .mouse-scroll-cont img {
        width: 40px; } }

@keyframes wheel2 {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px); }
  50% {
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px); } }

@-webkit-keyframes wheel2 {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(-10px);
    transform: translateX(-50%) translateY(-10px); }
  50% {
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px); } }

.modal {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-overflow-scrolling: touch;
  outline: 0;
  display: none; }
  .modal .modal-dialog {
    margin: 0;
    position: relative;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out;
    width: 600px;
    margin: 30px auto; }
    @media only screen and (max-width: 37.5em) {
      .modal .modal-dialog {
        width: 90%; } }
    .modal .modal-dialog .modal-content {
      margin-top: 10rem;
      border-radius: 15px;
      background-color: #f3fafe;
      border: 0;
      padding: 3rem 2rem;
      -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

.modal-open {
  overflow: hidden; }

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040; }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e9ecef; }
  .modal-header .modal-title {
    margin-bottom: 0;
    font-size: 4rem;
    text-align: center;
    color: #3365c2; }
    @media only screen and (max-width: 37.5em) {
      .modal-header .modal-title {
        font-size: 3rem; } }
  .modal-header .close {
    margin: -15px;
    position: absolute;
    background-color: #5781dd;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    top: 0;
    right: 0; }

.modal-body {
  position: relative;
  padding: 15px;
  text-align: center;
  font-size: 2rem;
  padding: 6rem 0; }

.modal-footer {
  padding: 15px;
  border-top: 1px solid #e9ecef;
  text-align: right; }
  .modal-footer .btn {
    margin-left: 5px; }

#modal-listlink a::after {
  content: "、"; }

#modal-listlink a:last-child::after {
  content: ''; }

#modal-listlink a:nth-of-type(4):before {
  content: "";
  display: block;
  clear: both; }
