<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500;700;900&amp;display=swap");
body {
  margin: 0;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main label {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: #d7f0ff;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  body {
    background-image: url(../images/bg--mb.jpg);
    background-position: top;
  }
}

main {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}
main img,
main video {
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}
main ul {
  padding: 0;
}
main ul li {
  list-style: none;
}
main h2,
main h3 {
  color: white;
  line-height: 1.2em;
}
main form {
  margin: 0;
  width: 100%;
}

.show-pc,
.show-mb {
  display: none;
}

@media screen and (min-width: 768px) {
  .show-pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .show-mb {
    display: block;
  }
}
.menu {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1.5rem;
  z-index: 999;
}
@media (max-width: 767px) {
  .menu {
    padding: 0 16px;
  }
}
.menu .garmin-logo {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  width: 140px;
}
@media (max-width: 992px) {
  .menu .garmin-logo {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .menu .garmin-logo {
    width: 120px;
  }
}
.menu .garmin-logo svg {
  fill: #000;
  width: 100%;
  max-height: 18px;
}

.btn {
  padding: 17px 70px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  box-shadow: 2px 4px 12px rgba(21, 27, 53, 0.2901960784);
  text-align: center;
  border: 1px solid #16205c;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 1920px) {
  .btn {
    padding: 16px 60px;
  }
}
.btn:hover {
  box-shadow: 0px 2px 6px 0px rgba(22, 33, 92, 0.5);
  transform: scale3d(1.01, 1.01, 1.01);
  background-color: #fff;
  color: #16205c !important;
}

.btn-primary {
  background-color: #16205c;
  color: white !important;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.btn-secondary {
  background-color: rgba(242, 247, 252, 0.2784313725);
  color: #151B35 !important;
}

.fancybox-stage p img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .fancybox-stage .fancybox-slide--html .fancybox-content {
    width: 90%;
    padding: 44px 16px;
    padding-bottom: 16px;
    background-color: #d7f0ff;
    border-radius: 4px;
  }
}
.fancybox-stage .fancybox-slide--html .fancybox-button {
  background: #666;
  border-radius: 50%;
  cursor: pointer;
}
.fancybox-stage .fancybox-slide--html .fancybox-button svg {
  color: #fff;
}
@media (max-width: 767px) {
  .fancybox-stage .fancybox-slide--html .fancybox-close-small {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@keyframes slideFromDown {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideFromDown {
  animation-name: slideFromDown;
}
@keyframes slideFromUp {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideFromUp {
  animation-name: slideFromUp;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}

.deco-whaleshark {
  animation: swimcircle 10s linear infinite;
}

.deco-seaturtle {
  animation: swimrotate 4s ease-in-out infinite;
}

.deco-manta {
  animation: swim 3s ease-in-out infinite;
}

@keyframes swim {
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(8px, -15px);
  }
  60% {
    transform: translate(-8px, -5px);
  }
  100% {
    transform: translate(5, 5);
  }
}
@keyframes swimcircle {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  30% {
    transform: translateY(60px) translateX(5px) rotate(-30deg);
  }
  50% {
    transform: translateY(60px) translateX(5px) rotate(-180deg);
  }
  80% {
    transform: translateY(0px) translateX(0px) rotate(-210deg);
  }
  100% {
    transform: translateY(0px) translateX(0px) rotate(-360deg);
  }
}
@keyframes swimrotate {
  50% {
    transform: translateY(5px) translateX(5px) rotate(15deg);
  }
}
.intro {
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .intro {
    min-height: auto;
  }
}
.intro__kv {
  position: absolute;
  z-index: 9;
  mix-blend-mode: multiply;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61%;
}
.intro__kv &gt; img {
  visibility: hidden;
}
.intro__kv &gt; img.ani-on {
  animation: slideFromUp 1s ease-in-out;
  visibility: visible;
}
@media (max-width: 992px) {
  .intro__kv {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .intro__kv {
    position: relative;
    top: -4px;
    transform: translate(-50%, 0);
    mix-blend-mode: normal;
    width: 98%;
    max-width: 408px;
  }
}
.intro__content {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  z-index: 10;
}
@media (max-width: 767px) {
  .intro__content {
    width: 100%;
    padding: 0 16px;
    position: relative;
    top: -70px;
  }
}
.intro__form {
  visibility: hidden;
}
.intro__form.ani-on {
  animation: slideFromDown 1.5s ease-in-out;
  visibility: visible;
}
.intro .subtitle {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 8px;
  text-shadow: 0px 1px 8px rgba(21, 27, 53, 0.9);
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .intro .subtitle {
    font-size: 30px;
    font-size: 2vw;
    margin-bottom: 6px;
  }
}
@media (max-width: 1200px) {
  .intro .subtitle {
    font-size: 2.2vw;
    margin-bottom: 4px;
  }
}
@media (max-width: 767px) {
  .intro .subtitle {
    font-size: 20px;
    margin-bottom: 6px;
    text-shadow: 0px 2px 6px rgba(21, 27, 53, 0.5);
    font-weight: 400;
  }
}
.intro .title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 26px;
  text-shadow: 0px 1px 8px rgba(21, 27, 53, 0.9);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1em;
}
@media (max-width: 1440px) {
  .intro .title {
    font-size: 42px;
    font-size: 2.8vw;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .intro .title {
    font-size: 3vw;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .intro .title {
    font-size: 34px;
    margin: 0 auto;
    margin-bottom: 18px;
    text-shadow: 0px 2px 6px rgba(21, 27, 53, 0.4);
  }
}
.intro .username {
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 14px;
  width: 280px;
  text-align: center;
  border-radius: 6px;
  display: block;
  font-size: 16px;
  margin: 0 auto;
  margin-bottom: 26px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.intro .username::-moz-placeholder {
  color: white;
}
.intro .username::placeholder {
  color: white;
}
@media (max-width: 767px) {
  .intro .username::-moz-placeholder {
    color: #adadad;
  }
  .intro .username::placeholder {
    color: #adadad;
  }
}
.intro .username:focus {
  background-color: rgb(255, 255, 255);
  box-shadow: none !important;
  border: none;
}
@media (max-width: 1440px) {
  .intro .username {
    margin-bottom: 20px;
    width: 240px;
    padding: 13px;
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .intro .username {
    margin-bottom: 14px;
    width: 200px;
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .intro .username {
    background-color: rgb(255, 255, 255);
    padding: 13px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 280px;
  }
}
.intro .btn-start {
  line-height: 1;
  padding: 20px 64px;
  border-radius: 100px;
  background-color: white;
  border: none;
  color: #1190FF;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  box-shadow: 2px 4px 12px rgba(21, 27, 53, 0.2901960784);
  text-transform: uppercase;
}
.intro .btn-start:hover {
  background-color: #1190FF;
  color: white;
  box-shadow: 2px 4px 16px rgba(21, 27, 53, 0.1607843137);
  transform: scale3d(1.05, 1.05, 1.05);
}
@media (max-width: 1440px) {
  .intro .btn-start {
    font-size: 16px;
    padding: 18px 54px;
  }
}
@media (max-width: 1200px) {
  .intro .btn-start {
    font-size: 15px;
    padding: 14px 40px;
  }
}
@media (max-width: 767px) {
  .intro .btn-start {
    font-size: 16px;
    padding: 20px 64px;
    background-color: #0041A0;
    color: white;
  }
}

h1.subject {
  color: #151B35;
  font-weight: bold !important;
  font-size: 70px;
  position: absolute;
  line-height: 1em;
  top: 28.6%;
  visibility: hidden;
  z-index: 10;
  text-transform: uppercase;
}
h1.subject.ani-on {
  animation: slideFromUp 1.5s ease-in-out;
  visibility: visible;
}
@media (max-width: 1920px) {
  h1.subject {
    font-size: 3.6vw;
  }
}
@media (max-width: 767px) {
  h1.subject {
    font-size: 32px;
    top: 19%;
  }
}

h2.kv-title {
  color: #151B35;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9;
  font-size: 68px;
  margin-bottom: 60px;
  padding-top: 44px;
  text-transform: uppercase;
}
@media (max-width: 1920px) {
  h2.kv-title {
    font-size: 3.5vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 1440px) {
  h2.kv-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  h2.kv-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  h2.kv-title {
    padding-top: 48px;
    font-size: 32px;
    margin-bottom: 28px;
  }
}

.choice {
  padding-bottom: 40px;
}
@media (max-width: 1440px) {
  .choice {
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .choice {
    height: auto;
    padding-bottom: 90px;
  }
}
.choice__content {
  margin: 0 auto;
  width: 630px;
  text-align: center;
  padding: 16px;
}
@media (max-width: 767px) {
  .choice__content {
    width: 100%;
  }
}
.choice .subtitle {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 10px;
  letter-spacing: -0.05em;
  text-shadow: 0px 2px 6px rgba(22, 32, 92, 0.4);
}
@media (max-width: 1440px) {
  .choice .subtitle {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media (max-width: 1200px) {
  .choice .subtitle {
    font-size: 26px;
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .choice .subtitle {
    text-shadow: 0px 1px 5px rgba(14, 60, 129, 0.7);
  }
}
.choice .deco-line {
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 12px;
  box-shadow: 0px 2px 6px 0px rgba(22, 32, 92, 0.4);
}
@media (max-width: 1440px) {
  .choice .deco-line {
    width: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .choice .deco-line {
    width: 50px;
    height: 2px;
    margin-bottom: 8px;
  }
}
.choice .title {
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 30px;
  text-shadow: 0px 2px 6px rgba(22, 32, 92, 0.4);
}
@media (max-width: 1440px) {
  .choice .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .choice .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .choice .title {
    font-size: 22px;
  }
}
.choice__list {
  max-width: 450px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.choice__item {
  background-color: #fff;
  border-radius: 48px;
  box-shadow: 0px 2px 6px 0px rgba(22, 32, 92, 0.3);
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
  overflow: hidden;
}
.choice__item input[type=radio] {
  display: none;
}
.choice__item input[type=radio]:checked + label {
  background-color: #151B35;
  color: white;
}
.choice__item label {
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  padding: 14px 22px;
  font-size: 15px;
}
@media (max-width: 1440px) {
  .choice__item label {
    padding: 13px 20px;
  }
}
.choice__item:hover, .choice__item:active, .choice__item:focus {
  background-color: #151B35;
  color: white;
  box-shadow: 0px 2px 6px 0px rgba(22, 33, 92, 0.5);
  transform: scale3d(1.01, 1.01, 1.01);
}
.choice__item h4 {
  color: #1190FF;
  font-size: 22px;
  margin-right: 12px;
  line-height: 1em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .choice__item h4 {
    font-size: 18px;
  }
}

.result h2.kv-title {
  margin-bottom: 36px;
}
@media (max-width: 1440px) {
  .result h2.kv-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 992px) {
  .result h2.kv-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .result h2.kv-title {
    margin-bottom: 16px;
  }
}
.result__content {
  max-width: 692px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .result__content {
    max-width: 600px;
  }
}
.result__card {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px rgba(14, 129, 210, 0.6);
  padding: 24px;
  color: #16205c;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .result__card {
    padding: 18px 14px;
    margin-bottom: 10px;
  }
}
.result__body {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.result__top {
  color: #1190FF;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.result__top span {
  border-bottom: 2px solid;
  font-weight: bold;
}
@media (max-width: 767px) {
  .result__top {
    font-size: 15px;
    margin-bottom: 6px;
  }
}
.result__main {
  display: flex;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .result__main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
}
.result__img {
  width: 54.6%;
  max-width: 280px;
  display: block;
}
@media (max-width: 767px) {
  .result__img {
    width: 78%;
    margin-bottom: 4px;
  }
}
.result__text {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .result__text {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
}
.result__text h2,
.result__text h3 {
  color: #16205c;
}
.result__text .creature-title {
  font-size: 42px;
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .result__text .creature-title {
    font-size: 32px;
  }
}
.result__text .creature-subtitle {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .result__text .creature-subtitle {
    font-size: 17px;
  }
}
.result__intro {
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .result__intro {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.result__detail {
  padding-top: 12px;
  border-top: 1px solid #1190FF;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .result__detail {
    padding-top: 7px;
  }
}
.result__detail .head {
  color: #1190FF;
  margin-bottom: 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .result__detail .head {
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .result__detail .head {
    font-size: 12px;
    margin-bottom: 2px;
  }
}
.result__side {
  width: calc(50% - 14px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .result__side {
    width: calc(50% - 12px);
  }
}
.result__side p {
  font-size: 15px;
}
@media (max-width: 767px) {
  .result__side p {
    font-size: 13px;
  }
}
.result__skill {
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .result__skill {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .result__skill {
    margin-bottom: 8px;
  }
}
.result__friend {
  padding-top: 12px;
  border-top: 1px solid #1190FF;
}
@media (max-width: 767px) {
  .result__friend {
    padding-top: 7px;
  }
}
.result__device {
  width: 50%;
  display: flex;
  padding: 0 14px;
  border-left: 1px solid #1190FF;
}
@media (max-width: 767px) {
  .result__device {
    width: 50%;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 12px;
  }
}
.result__device .head {
  width: 50%;
  font-weight: 400;
}
@media (max-width: 767px) {
  .result__device .head {
    width: 100%;
  }
}
.result__device .product {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .result__device .product {
    width: 100%;
    height: 100%;
  }
}
.result__device .product .product-img {
  margin-bottom: 6px;
  max-width: 100px;
}
@media (max-width: 767px) {
  .result__device .product .product-img {
    margin-bottom: 4px;
    max-width: 60px;
  }
}
.result__device .product .product-name {
  text-decoration: underline;
  font-family: "Oswald", "Roboto", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #16205c;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .result__device .product .product-name {
    font-size: 14px;
  }
}
.result__btnlist {
  display: flex;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .result__btnlist {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .result__btnlist .btn-primary {
    margin-bottom: 12px;
  }
}
.result__btnlist .btn-secondary {
  margin-right: 12px;
}
@media (max-width: 767px) {
  .result__btnlist .btn-secondary {
    margin-right: 0px;
  }
}
.result__saying {
  font-size: 20px;
  text-align: center;
  line-height: 1.8em;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0px 1px 4px rgba(255, 255, 255, 0.5);
  margin-bottom: 64px;
  color: #151B35;
}
@media (max-width: 1200px) {
  .result__saying {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .result__saying {
    max-width: 320px;
    font-size: 15px;
    margin-bottom: 160px;
  }
}

.capture {
  padding: 16px;
  background-size: cover;
  background-position: top right;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .capture {
    max-width: 450px;
    margin: 0 auto;
  }
}
.capture .capture-logo {
  position: absolute;
  right: 0;
  top: 20px;
  width: 34px;
  display: none;
}
@media (max-width: 767px) {
  .capture .capture-logo {
    width: 32px;
  }
}
.capture.active .capture-logo {
  display: block;
}

@media (max-width: 767px) {
  .message h2 {
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    color: black;
  }
}

.fancybox-stage p img {
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  z-index: -1;
}
.bg__side {
  display: flex;
  justify-content: space-between;
  height: 100vh;
  overflow: hidden;
}
.bg__side &gt; div {
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1200px) {
  .bg__side &gt; div {
    background-size: cover;
    width: 40%;
  }
}
.bg__side .bg__left {
  background-image: url(../images/island-left.png);
  background-position: left;
}
@media (max-width: 1200px) {
  .bg__side .bg__left {
    background-position: right;
  }
}
@media (max-width: 992px) {
  .bg__side .bg__left {
    background-position: right;
  }
}
.bg__side .bg__right {
  background-image: url(../images/island-right.png);
  background-position: right;
}
@media (max-width: 1200px) {
  .bg__side .bg__right {
    background-position: left;
  }
}
@media (max-width: 992px) {
  .bg__side .bg__right {
    background-position: left;
  }
}
@media (max-width: 767px) {
  .bg__side {
    display: none;
  }
}
.bg__top {
  display: none;
}
@media (max-width: 767px) {
  .bg__top {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    max-width: 265px;
  }
}
.bg__bottom {
  display: none;
}
@media (max-width: 767px) {
  .bg__bottom {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    max-width: 265px;
  }
}
.bg__deco {
  position: absolute;
  width: 6.5%;
}
.bg__deco img {
  filter: drop-shadow(1px 4px 5px rgba(0, 61, 126, 0.6));
}
@media (max-width: 767px) {
  .bg__deco {
    width: 20%;
  }
}
.bg__deco.deco-whaleshark {
  top: 49.1%;
  left: 9.3%;
}
@media (max-width: 767px) {
  .bg__deco.deco-whaleshark {
    left: 4%;
    top: 60%;
  }
}
.bg__deco.deco-seaturtle {
  top: 6.9%;
  left: 26.1%;
}
@media (max-width: 767px) {
  .bg__deco.deco-seaturtle {
    display: none;
  }
}
.bg__deco.deco-manta {
  top: 45.8%;
  right: 5.5%;
}
@media (max-width: 767px) {
  .bg__deco.deco-manta {
    top: unset;
    bottom: 3%;
  }
}

.bg.question .bg__side {
  height: 100%;
}
@media (max-width: 767px) {
  .bg.question .bg__deco {
    width: 18%;
  }
}
@media (max-width: 767px) {
  .bg.question .bg__top {
    width: 66%;
  }
}
@media (max-width: 767px) {
  .bg.question .bg__bottom {
    width: 66%;
    bottom: -65px;
  }
}
@media (max-width: 767px) {
  .bg.question .deco-manta {
    top: 19.5%;
    bottom: unset;
  }
}
@media (max-width: 767px) {
  .bg.question .deco-seaturtle {
    display: block;
    right: 2%;
    left: unset;
    bottom: 2%;
    top: unset;
  }
}
@media (max-width: 767px) {
  .bg.question .deco-whaleshark {
    top: unset;
    bottom: 19%;
  }
}

.bg.final .bg__side {
  height: 100%;
}
@media (max-width: 1200px) {
  .bg.final .bg__side &gt; div {
    background-size: cover;
  }
}
.bg.final .bg__side .bg__left {
  background-position-x: -5%;
}
@media (max-width: 1920px) {
  .bg.final .bg__side .bg__left {
    background-position-x: -20%;
  }
}
@media (max-width: 1200px) {
  .bg.final .bg__side .bg__left {
    background-position: right;
  }
}
@media (max-width: 767px) {
  .bg.final .bg__bottom {
    bottom: -65px;
  }
}/*# sourceMappingURL=all-style.css.map */</pre></body></html>