@charset "UTF-8";
body {
  background-color: #0C2E71;
}

/***common***/
@-webkit-keyframes movingY {
  from {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  to {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@keyframes movingY {
  from {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  to {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
*:focus-visible {
  outline: auto;
  outline-offset: 0.1em;
}

[data-device=mobile] .only-pc,
[data-device=pc] .only-mobile {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

[data-device=mobile] .only-mobile,
[data-device=pc] .only-pc {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

html,
body {
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  overflow: visible !important;
}

.color-green {
  color: #0C2E71 !important;
}

.color-gray {
  color: #6c6c6c !important;
}

.color-orange {
  color: #ff5a00 !important;
}
.color-orange:is(a, .link):hover {
  color: rgb(229.5, 81, 0) !important;
}

.color-blue {
  color: #0096ff !important;
}

.text-center {
  text-align: center;
}

/***common***/
/***content***/
#header {
  background: #0C2E71;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(12, 46, 113)), to(rgb(18, 66, 136)));
  background: linear-gradient(180deg, rgb(12, 46, 113) 0%, rgb(18, 66, 136) 100%);
}

#main {
  font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
  overflow: hidden;
  position: relative;
  padding-bottom: clamp(90px, 10vh, 120px);
  z-index: 1;
}
#main::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #4080e0;
  pointer-events: none;
  position: absolute;
  top: 2.15em;
  left: 0;
  z-index: -1;
}
#main .showbtn {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#main .showbtn:hover {
  color: #a10050;
}
#main .whiteBorder {
  position: relative;
  border: 2px solid #c8f2fd;
  border-radius: 1em;
  background-color: white;
  width: 95%;
  margin: 0 auto 0.4em;
  -webkit-box-shadow: 0px 0px 42px #39b6ff inset;
          box-shadow: 0px 0px 42px #39b6ff inset;
  text-align: center;
  font-size: 0.85em;
  margin-top: -0.5em;
  margin-bottom: 1em;
}
#main .whiteBorder b {
  position: relative;
  border-bottom: 0.1em solid;
  font-weight: bold;
  cursor: pointer;
}
#main .whiteBorder .name {
  font-weight: bold;
  font-size: 0.8em;
  margin-top: 0.3em;
}
#main .whiteBorder .text {
  position: relative;
}
#main .whiteBorder:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  #main #socials {
    padding: 0.75em 0.25em;
    position: static;
  }
  #main #socials .side-nav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    left: auto;
  }
}

.bg-area {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
}
.bg-area img {
  display: block;
  min-width: 32em;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#bannerBox {
  margin-top: 0;
  position: relative;
  z-index: 5;
  height: 12em;
}
#bannerBox.active #banner {
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  opacity: 1;
}
#bannerBox.active .tip {
  opacity: 1;
}
#bannerBox #banner {
  width: 14.3em;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  top: 5.8em;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%) scale(1.2);
          transform: translateX(-50%) scale(1.2);
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#bannerBox .tip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.5em;
  height: 4.5em;
  margin-left: 4em;
  margin-top: -1.6em;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 1s ease 0.5s;
  transition: opacity 1s ease 0.5s;
  -webkit-animation: scale 1.2s infinite ease-in-out alternate;
          animation: scale 1.2s infinite ease-in-out alternate;
}
#bannerBox #bg {
  width: 32em;
}
@media (min-width: 1850px) {
  #bannerBox #banner {
    height: auto;
  }
}

.side-container {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  top: 2.25em;
  z-index: 5;
  pointer-events: none;
  width: 100%;
  max-width: 24em;
  opacity: 1;
}
.side-container > * {
  pointer-events: all;
}

.side-btn {
  display: block;
  margin-left: auto;
  margin-right: 0.25em;
  width: 3.15em;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (max-width: 1280px) {
  .side-btn {
    opacity: 0;
    pointer-events: none;
  }
}

:root {
  --outline-color: #a10050;
  --outline-width: .08em;
}

.text-outline {
  text-shadow: calc(0.7 * var(--outline-width)) calc(0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), calc(0.7 * var(--outline-width)) calc(-0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), calc(-0.7 * var(--outline-width)) calc(0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), calc(-0.7 * var(--outline-width)) calc(-0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), calc(1 * var(--outline-width)) 0 calc(0.25 * var(--outline-width)) var(--outline-color), calc(-1 * var(--outline-width)) 0 calc(0.25 * var(--outline-width)) var(--outline-color), 0 calc(1 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), 0 calc(-1 * var(--outline-width)) calc(0.25 * var(--outline-width)) var(--outline-color), calc(0.9 * var(--outline-width)) calc(0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(0.9 * var(--outline-width)) calc(-0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(-0.9 * var(--outline-width)) calc(0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(-0.9 * var(--outline-width)) calc(-0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(0.4 * var(--outline-width)) calc(0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(0.4 * var(--outline-width)) calc(-0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(-0.4 * var(--outline-width)) calc(0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color), calc(-0.4 * var(--outline-width)) calc(-0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) var(--outline-color);
}

.text-outline-white {
  text-shadow: calc(0.7 * var(--outline-width)) calc(0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, calc(0.7 * var(--outline-width)) calc(-0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, calc(-0.7 * var(--outline-width)) calc(0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, calc(-0.7 * var(--outline-width)) calc(-0.7 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, calc(1 * var(--outline-width)) 0 calc(0.25 * var(--outline-width)) white, calc(-1 * var(--outline-width)) 0 calc(0.25 * var(--outline-width)) white, 0 calc(1 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, 0 calc(-1 * var(--outline-width)) calc(0.25 * var(--outline-width)) white, calc(0.9 * var(--outline-width)) calc(0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(0.9 * var(--outline-width)) calc(-0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(-0.9 * var(--outline-width)) calc(0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(-0.9 * var(--outline-width)) calc(-0.4 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(0.4 * var(--outline-width)) calc(0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(0.4 * var(--outline-width)) calc(-0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(-0.4 * var(--outline-width)) calc(0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) white, calc(-0.4 * var(--outline-width)) calc(-0.9 * var(--outline-width)) calc(0.3 * var(--outline-width)) white;
}

#article {
  width: calc(100% - 40px);
  max-width: 860px !important;
  margin: 0 auto 0;
  position: relative;
  z-index: 5;
}
#article .top-title {
  margin-top: 0;
  position: relative;
  top: -1.18em;
  padding-top: 0;
  font-size: 0.5em;
}

@-webkit-keyframes btnPointer {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
  }
  50% {
    -webkit-transform: rotate(10deg) scale(1.1) translate(0.25em, 0.1em);
            transform: rotate(10deg) scale(1.1) translate(0.25em, 0.1em);
    -webkit-filter: drop-shadow(0.1em 0.3em 0.1em rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0.1em 0.3em 0.1em rgba(0, 0, 0, 0.25));
  }
}

@keyframes btnPointer {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
            transform: scale(1) translate(0, 0);
    -webkit-filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
  }
  50% {
    -webkit-transform: rotate(10deg) scale(1.1) translate(0.25em, 0.1em);
            transform: rotate(10deg) scale(1.1) translate(0.25em, 0.1em);
    -webkit-filter: drop-shadow(0.1em 0.3em 0.1em rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0.1em 0.3em 0.1em rgba(0, 0, 0, 0.25));
  }
}
section {
  margin-top: 0.4em;
  position: relative;
  color: #18318c;
}
section.sectionBlock {
  margin-bottom: 2em;
}
section .imgBox {
  position: relative;
}
section .imgBox .mail {
  position: absolute;
  right: 3em;
  width: 21%;
  top: 0.1em;
  -webkit-animation: movingY 1s ease-in-out infinite alternate;
          animation: movingY 1s ease-in-out infinite alternate;
}
section .only-pc {
  position: relative;
}
section #EventQR {
  margin-top: 1em;
  position: relative;
  padding: 0.18em;
  width: 22%;
  top: 0;
  background: white;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #254bb0;
}
section .btn-pointer::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: calc(90% - 1.5em);
  top: 70%;
  width: 1.75em;
  height: 1.75em;
  background: url("/img/Event/202510-Hilifebeer/pointer.png") center/contain no-repeat;
  -webkit-filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
  -webkit-animation: btnPointer 1.2s infinite ease-in-out;
          animation: btnPointer 1.2s infinite ease-in-out;
  pointer-events: none;
}
section#sectionRules {
  margin-bottom: 1em;
  color: white;
}
section#sectionRules .border {
  padding-bottom: 0.3em;
  font-size: 0.76em;
}
section#sectionRules .top-title {
  top: -1.45em;
}
section#sectionRules ul,
section#sectionRules ol {
  max-width: 100%;
  counter-reset: rules-counter;
  font-size: 0.5em;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 auto;
  padding-top: 0em;
  padding-left: 1.725em;
  text-align: left;
}
section .border {
  border-radius: 0.5em;
  -o-border-image: url("/img/Event/202510-Hilifebeer/border.png?v=2") 180 fill/3em/0.75em;
     border-image: url("/img/Event/202510-Hilifebeer/border.png?v=2") 180 fill/3em/0.75em;
  padding-bottom: 0.5em;
}
section .border.short {
  -o-border-image: url("/img/Event/202510-Hilifebeer/border2.png") 180 fill/3em/0.75em;
     border-image: url("/img/Event/202510-Hilifebeer/border2.png") 180 fill/3em/0.75em;
}
section .border.style3 {
  -o-border-image: url("/img/Event/202510-Hilifebeer/border3.png") 180 fill/3em/0.75em;
     border-image: url("/img/Event/202510-Hilifebeer/border3.png") 180 fill/3em/0.75em;
  width: 96%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section .border {
    border-width: 3px;
  }
}
section .gift {
  position: relative;
  margin-top: -1em;
}
section .section-title {
  width: 100%;
}
section .section-title img {
  width: 8.9334em;
}
section .box .box-title {
  width: 14.267em;
  height: 1.4em;
  color: #fff;
  font-size: 0.75em;
  font-weight: 400;
  margin: auto;
  text-shadow: 0 3px 8px #000;
  position: relative;
}
section .box .border {
  background: url("/img/Event/202510-Hilifebeer/box_bg.png") top center/cover no-repeat;
  border: 4px solid #00c573;
  border-radius: 0.725em;
  position: relative;
  padding-bottom: 0.4em;
  margin: 0 auto;
}
section .box .border img {
  margin: 0 auto;
}
section .text {
  font-size: 0.5em;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.4em;
  margin-bottom: 0.45em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
section .text .small {
  font-size: 0.8em;
  position: relative;
  top: -0.45em;
}
section .link {
  color: #0083ff;
  text-decoration: underline;
}
section .link:hover {
  color: #ff5a00;
}

.modal.old {
  font: 400 60px/1.5 "Noto Sans TC", Arial, Helvetica, sans-serif !important;
  font-size: clamp(16px, 6vw, 60px) !important;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  -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;
}
.modal.old.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal.old .mask {
  position: fixed;
  top: -50vh;
  left: -50vw;
  bottom: -50vh;
  right: -50vw;
  background: rgba(0, 0, 0, 0.75);
  -webkit-animation: fade 0.4s ease-out;
          animation: fade 0.4s ease-out;
}
@supports (backdrop-filter: blur(0.1rem)) {
  .modal.old .mask {
    backdrop-filter: blur(0.15rem);
    background: rgba(8, 8, 8, 0.8);
    -webkit-transition: backdrop-filter 0.5s ease-out;
    transition: backdrop-filter 0.5s ease-out;
  }
}
.modal.old .btn-close {
  font: inherit;
  font-size: 1em;
  font-weight: 400;
  display: block;
  position: absolute;
  z-index: 2;
  right: -0.5em;
  top: -1em;
  width: 1.6em;
  height: 1.6em;
  max-width: none;
  max-height: none;
  border-radius: 100%;
  -webkit-filter: brightness(1) drop-shadow(0 0.1em 0.05em rgba(24, 8, 24, 0.5));
          filter: brightness(1) drop-shadow(0 0.1em 0.05em rgba(24, 8, 24, 0.5));
  background-size: contain;
  -webkit-transition: -webkit-filter 0.2s, -webkit-transform 0.2s ease-in-out;
  transition: -webkit-filter 0.2s, -webkit-transform 0.2s ease-in-out;
  transition: filter 0.2s, transform 0.2s ease-in-out;
  transition: filter 0.2s, transform 0.2s ease-in-out, -webkit-filter 0.2s, -webkit-transform 0.2s ease-in-out;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  background: url("/img/Event/202510-Hilifebeer/close.png");
  background-size: 100% 100%;
}
.modal.old .btn-close::before, .modal.old .btn-close::after {
  display: none;
}
.modal.old .btn-close:hover, .modal.old .btn-close:focus, .modal.old .btn-close:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: brightness(1.1) drop-shadow(0 0.15em 0.1em rgba(24, 8, 24, 0.65));
          filter: brightness(1.1) drop-shadow(0 0.15em 0.1em rgba(24, 8, 24, 0.65));
}

.modal-overflow {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  max-height: 100vh;
  scrollbar-width: none;
}
.modal-overflow::-webkit-scrollbar {
  width: 0px;
}

.modal .modal-window {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
  text-align: center;
  width: 97.5%;
  max-width: 16.25em;
  margin: 1.5em auto 1.25em;
  line-height: 1.4;
  -webkit-animation: pop 0.3s;
          animation: pop 0.3s;
  background: rgba(0, 0, 0, 0.4509803922);
  border-radius: 0.3em;
}

.modal-content {
  padding: 0.25em 0.5em;
  padding: 0.5em 0;
  background: #3a408c;
  border: 2px solid #4c4948;
  color: white;
}
.modal-content h3 {
  color: white;
  font-weight: bold;
  margin-top: -0.9em;
  z-index: 6;
  position: relative;
}
.modal-content .bottomtext {
  display: block;
  font-size: 0.52em;
  background-color: #4c53ac;
  padding: 1em 0;
  margin-bottom: -0.4em;
  border-radius: 0 0 0.3em 0.3em;
  color: #ffea01;
}
.modal-content .bottomtext.yellow {
  color: #ffea01;
  margin: 0;
}
.modal-content.hashr {
  padding-top: 1em;
  padding-bottom: 0.2em;
}

#event4 .border h2 {
  background-color: #6063ba;
  margin-bottom: 1em;
}
#event4 .text-outline-white {
  position: relative;
  color: var(--outline-color);
  display: block;
  margin-bottom: 0;
}
#event4 .title {
  font-size: 0.8em;
  color: #feff8b;
}
#event4 .btn-pointer {
  position: relative;
  display: block;
  width: 70%;
  margin: 0 auto;
}
#event4 .btn-pointer::after {
  left: calc(104% - 1.5em);
  top: 70%;
  width: 0.9em;
  height: 0.9em;
}
#event4 .step {
  background-color: #a10050;
  margin-top: 0.5em;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-left: 3em;
  padding-left: 2.2em;
  border-radius: 2em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
#event4 .step .step-count {
  background: #a10050;
  border-color: #3c40a8;
  position: absolute;
  left: -0.3em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #feff8b;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.2em;
}

#Modal-infoEcard.modal .modal-window,
#Modal-brone.modal .modal-window {
  margin: 1.5em auto 1.25em;
}
#Modal-infoEcard.is-active .modal-content,
#Modal-brone.is-active .modal-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#Modal-infoEcard .modal-content,
#Modal-brone .modal-content {
  background: transparent;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#Modal-infoEcard .modal-content .border,
#Modal-brone .modal-content .border {
  width: 100%;
  margin: 0;
  padding-bottom: 0.8em;
  padding-top: 0.2em;
}
#Modal-infoEcard .modal-content .box:last-child,
#Modal-brone .modal-content .box:last-child {
  margin-bottom: 0;
}

#Modal-brone .modal-window {
  background: transparent;
}
#Modal-brone .brone-text {
  position: absolute;
  top: 4.3em;
  left: 0;
  text-align: center;
  font-size: 0.6em;
  width: 100%;
  font-weight: bold;
}
#Modal-brone .brone-text a {
  color: #ef00ba;
  border-bottom: 0.06em solid;
}

#footer {
  background-color: transparent;
  z-index: 3;
}

.btn-play,
.btn-login {
  font: inherit;
  color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  cursor: pointer;
  width: 15em;
  height: 4em;
  display: inline-block;
  background: url("/img/Event/202510-Hilifebeer/btn_donwload.png") top/100% auto;
  position: relative;
  max-width: 74%;
  background-repeat: no-repeat;
  margin-top: 0.2em;
}
.btn-play:hover,
.btn-login:hover {
  background-image: url("/img/Event/202510-Hilifebeer/btn_donwload_hover.png");
  background-repeat: no-repeat;
}
.loadingAnimation {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  position: absolute;
  inset: 0;
}
.loadingAnimation .bouncingDots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.35em;
}
.loadingAnimation .bouncingDots .dot {
  width: 0.45em;
  height: 0.45em;
  background-color: #ff5a00;
  border-radius: 50%;
  -webkit-animation: bounce 1.25s infinite ease-in-out;
          animation: bounce 1.25s infinite ease-in-out;
}
.loadingAnimation .bouncingDots .dot:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loadingAnimation .bouncingDots .dot:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.dui {
  width: 100%;
  height: clamp(90px, 10vh, 120px);
  background-color: #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}
@media (max-width: 1200px) {
  .dui img {
    width: 100%;
    height: 95%;
    margin: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}/*# sourceMappingURL=main.css.map */