/*black*/
.bg-black {
  background-color: #333333;
}

.text-black {
  color: #333333 !important;
}

.border-black {
  border-color: #333333;
}

/*black end*/
/*white*/
.bg-white {
  background-color: white;
}

.text-white {
  color: white !important;
}

.border-white {
  border-color: white;
}

/*white end*
/*blue*/
.bg-blue {
  background-color: #4083A0;
}

.text-blue {
  color: #4083A0 !important;
}

.border-blue {
  border-color: #4083A0;
}

/*blue end*
/*yellow*/
.bg-yellow {
  background-color: #F2A303;
}

.text-yellow {
  color: #F2A303 !important;
}

.border-yellow {
  border-color: #F2A303;
}

/*yellow end*/
/*green*/
.bg-green {
  background-color: #00FF00;
}

.text-green {
  color: #00FF00 !important;
}

.border-green {
  border-color: #00FF00;
}

/*yellow end*/
@font-face {
  font-family: "Fredoka-Bold";
  src: url("../fonts/Fredoka-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka-SemiBold";
  src: url("../fonts/Fredoka-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka-Medium";
  src: url("../fonts/Fredoka-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka-Regular";
  src: url("../fonts/Fredoka-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka-One";
  src: url("../fonts/Fredoka-One.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fredoka-Light";
  src: url("../fonts/Fredoka-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
.fredoka-bold {
  font-family: "Fredoka-Bold", sans-serif;
}

.fredoka-semibold {
  font-family: "Fredoka-Semibold", sans-serif;
}

.fredoka-semibold-italic {
  font-family: "Fredoka-SemiboldItalic", sans-serif;
}

.fredoka-medium {
  font-family: "Fredoka-Medium", sans-serif;
}

.fredoka-regular {
  font-family: "Fredoka-Regular", sans-serif;
}

.fredoka-light {
  font-family: "Fredoka-Light", sans-serif;
}

.fredoka-one {
  font-family: "Fredoka-One", sans-serif;
}

.inter-regular {
  font-family: "Inter-Regular", sans-serif;
}

.mt0 {
  margin-top: 0;
}

.mt1 {
  margin-top: 10px;
}

.mt2 {
  margin-top: 20px;
}

.mt4 {
  margin-top: 40px;
}

.mt6 {
  margin-top: 60px;
}

.mx1 {
  margin-left: 10px;
  margin-right: 10px;
}

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

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-column {
  flex-direction: column;
}

.display-flex {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}

.display-block {
  display: block;
}

.display-none {
  display: none;
}

.center-flex {
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  /* TWEENER - IE 10 */
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
  align-items: center;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 1102px) {
  .desktop-hide {
    display: none !important;
  }
}
@media (max-width: 1102px) {
  .mobile-hide {
    display: none !important;
  }
}
.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.moveLeft {
  left: -100%;
}

.moveRight {
  right: -100%;
}

.pushRight {
  left: 0;
}

.pushLeft {
  left: 100%;
}

.moveDown {
  top: 0;
}

.moveTop {
  top: -100%;
}

.pushUp {
  bottom: 0;
}

.moveUp {
  bottom: -100%;
}

.opac0 {
  opacity: 0;
}

.opac1 {
  opacity: 1;
}

.heightFull {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.m-0 {
  margin: 0;
}

.checkbtn {
  z-index: 999;
}

.bodyzoom {
  transform: scale(2.5) translateY(-8%) translateX(-1%);
}

.text-end {
  text-align: end;
}

.c-pointer {
  cursor: pointer;
}

.scroll-guide {
  position: absolute;
  bottom: 25px;
  right: 25px;
  flex-direction: column;
  z-index: 999;
  color: #FFFFFF;
  font-size: 12px;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .scroll-guide {
    bottom: 20px;
    font-size: 14px;
  }
}
.scroll-guide .icon-scroll {
  width: 15px;
  height: 25px;
}

@media (min-width: 768px) {
  .scroll-guide .icon-scroll {
    width: 20px;
    height: 32px;
  }
}
.scroll-guide .icon-scroll:before {
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 5px;
  height: 6px;
}

.icon-scroll {
  position: relative;
  border-radius: 50px;
  width: 14px;
  height: 20px;
  border: 2px solid #FFFFFF;
}

.icon-scroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 5px;
  margin-left: -1px;
  background-color: #FFFFFF;
  border-radius: 10px;
  animation: scrolldown 2s infinite;
}
@keyframes scrolldown {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.graphic-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1040; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.graphic-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  animation-name: animatetop;
  animation-duration: 0.7s;
}

.graphic-content {
  padding: 30px;
  background-color: #333333;
  border-radius: 10px;
}

/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}
/* The Close Button */
.close-graphic {
  text-align: center;
  position: absolute;
  top: 0;
  right: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .close-graphic {
    right: -15px;
    top: -20px;
  }
}
.close-graphic span {
  display: block;
}

.close-graphic:hover,
.close-graphic:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.z6 {
  z-index: 6 !important;
}

.z4 {
  z-index: 4 !important;
}

.z8 {
  z-index: 8 !important;
}

.transform-none {
  transform: none !important;
}

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

body {
  font-family: "Fredoka-regular", sans-serif;
  margin: 0;
  padding: 0;
  transition: transform 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.child-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.fullpage {
  z-index: 7;
}

.bgcolor-wrap .bgcolor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bgcolor-wrap .bgcolor-blue {
  background-color: #4083A0;
}
.bgcolor-wrap .bgcolor-dark {
  background-color: #333333;
}

.bgstatic-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bgstatic-wrap .bgcover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .bgstatic-wrap .bgcover picture {
    height: 70vh;
  }
}
.bgstatic-wrap .bgcover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .bgstatic-wrap .bgcover img {
    -o-object-position: 25% 0;
       object-position: 25% 0;
  }
}
.bgstatic-wrap .bgroad {
  width: 100%;
  height: 23%;
  background-color: #333333;
  position: absolute;
  transition: bottom 0.3s;
}
.bgstatic-wrap .bgroad .btn-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.bgstatic-wrap .bgroad .btn-container .checkbtn {
  position: absolute;
  top: -20px;
  right: 10%;
  border: 3px solid white;
  background-color: #333333;
  text-align: center;
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  border-radius: 15px;
}
.bgstatic-wrap .bgcity {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (max-width: 992px) {
  .bgstatic-wrap .bgcity {
    overflow-x: hidden;
  }
}
.bgstatic-wrap .bgcity picture {
  position: absolute;
  bottom: 23%;
}
@media (max-width: 992px) {
  .bgstatic-wrap .bgcity picture {
    bottom: 27%;
    scale: 1.5;
  }
}
.bgstatic-wrap .bgcity picture img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.content-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.content-wrap .bgroad {
  width: 100%;
  height: 23%;
  background-color: #333333;
  position: absolute;
  transition: bottom 0.3s;
}
.content-wrap .content {
  width: 100%;
  height: 100%;
  position: relative;
}
.content-wrap .content .cover-container {
  position: absolute;
  right: 5%;
  bottom: 0;
  padding: 25px 50px;
  transition: opacity 0.3s;
}
@media (max-width: 992px) {
  .content-wrap .content .cover-container {
    padding: 25px;
    background-color: #333333;
    right: 0;
    left: 0;
    margin: auto;
    height: 30vh;
  }
}
.content-wrap .content .cover-container p {
  color: white;
  font-size: 20px;
  margin: 0;
  text-align: center;
  margin-bottom: 5px;
}
.content-wrap .content .cover-container p span {
  font-size: 12px;
}
.content-wrap .content .cover-container h1 {
  font-size: 42px;
  color: #F2A303;
  margin: 0;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .content-wrap .content .cover-container h1 {
    font-size: 32px;
    text-align: center;
  }
}
.content-wrap .content .cover-container .logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.content-wrap .content .cover-container .logo img {
  max-width: 30%;
}
.content-wrap .content .content-container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}
.content-wrap .content .content-container .content {
  width: 100%;
  height: 100%;
  position: relative;
}
.content-wrap .content .content-container .content .terra-container {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
}
.content-wrap .content .content-container .content .terra-container .terra {
  transition: opacity 0.5s;
}
.content-wrap .content .content-container .content .terra-container-main {
  left: -4%;
  bottom: 3%;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .terra-container-main {
    left: 10px;
    top: 10px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
  }
}
.content-wrap .content .content-container .content .terra-container-main .terra {
  max-width: 90%;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container .content .terra-container-main .terra {
    max-width: 80%;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .terra-container-main .terra {
    width: 170px;
    position: relative;
    z-index: 2;
    left: -34px;
    top: -10px;
    max-width: unset;
    background-color: white;
  }
}
.content-wrap .content .content-container .content .text-container {
  position: absolute;
  bottom: 5%;
  width: 60%;
  left: 10%;
  right: 0;
  margin: 0 auto;
  transition: opacity 0.5s;
  height: 90px;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .text-container {
    position: absolute;
    bottom: unset;
    top: 25%;
    text-align: center;
    top: 25%;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: opacity 0.5s;
    height: auto;
  }
}
.content-wrap .content .content-container .content .text-container p {
  margin: 0;
  font-size: 24px;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container .content .text-container p {
    font-size: 20px;
  }
}
.content-wrap .content .content-container .content .title-container {
  position: absolute;
  top: 10%;
  width: 100%;
  left: 0%;
  right: 0;
  margin: 0 auto;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .title-container {
    top: 25%;
  }
}
.content-wrap .content .content-container .content .title-container p {
  max-width: 55%;
  margin: 0;
  font-size: 28px;
  text-align: center;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container .content .title-container p {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .title-container p {
    font-size: 16px;
    max-width: 80%;
  }
}
.content-wrap .content .content-container .content .title-container p span {
  color: #F2A303;
  font-size: 48px;
  margin-top: 25px;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container .content .title-container p span {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .title-container p span {
    font-size: 20px;
  }
}
.content-wrap .content .content-container .content .title-container .title-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .title-container .title-img {
    width: 100%;
    flex-wrap: wrap;
  }
}
.content-wrap .content .content-container .content .title-container .title-img img {
  margin: 0 25px;
  max-width: 190px;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container .content .title-container .title-img img {
    max-width: 150px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .title-container .title-img img {
    max-width: 70px;
  }
}
.content-wrap .content .content-container .content .charger-container {
  position: absolute;
  width: 100%;
  bottom: 22%;
  height: 23%;
}
.content-wrap .content .content-container .content .charger-container .charger-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.content-wrap .content .content-container .content .charger-container .charger-wrap img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container .content .charger-container .charger-wrap img {
    max-height: 100%;
  }
}
.content-wrap .content .content-container1 {
  transition: opacity 0.7s;
}
.content-wrap .content .content-container1 .content1 .terra-container {
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container1 .content1 .terra-container {
    right: 15%;
  }
  .content-wrap .content .content-container1 .content1 .terra-container .introterra1 {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container1 .content1 .terra-container {
    right: 0;
    left: 0;
    bottom: 20%;
  }
}
.content-wrap .content .content-container1 .content1 .terra-container .introterra1 {
  position: relative;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container1 .content1 .terra-container .introterra1 {
    width: 70%;
    margin: auto;
  }
}
.content-wrap .content .content-container1 .content1 .terra-container .introterra1 img {
  position: absolute;
  left: -50%;
  top: 0;
  width: 70%;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container1 .content1 .terra-container .introterra1 img {
    left: -40%;
    top: 0;
    width: 65%;
  }
}
.content-wrap .content .content-container1 .content1 .bubblem-container {
  margin: auto;
  padding-top: 45%;
  width: 65%;
}
.content-wrap .content .content-container2 .content2 .terra-container {
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container2 .content2 .terra-container {
    right: 15%;
  }
  .content-wrap .content .content-container2 .content2 .terra-container .introterra2 {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .terra-container {
    width: 100px;
    height: 100px;
    left: 10px;
    top: 10px;
    right: unset;
    border-radius: 50%;
    overflow: hidden;
  }
}
.content-wrap .content .content-container2 .content2 .terra-container .introterra2 {
  position: relative;
  transition: opacity 0.7s;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .terra-container .introterra2 {
    width: 150px;
    position: relative;
    left: -22%;
    background: white;
  }
}
.content-wrap .content .content-container2 .content2 .terra-container .introterra2 img {
  position: absolute;
  left: -50%;
  top: 0;
  width: 70%;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .terra-container .introterra2 img {
    display: none;
  }
}
.content-wrap .content .content-container2 .content2 .bubblem-container {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 65%;
}
.content-wrap .content .content-container2 .content2 .start-button {
  position: absolute;
  bottom: 12%;
  right: 10%;
  display: none;
  opacity: 0;
  transition: all 0.7s;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 999;
}
.content-wrap .content .content-container2 .content2 .start-button img {
  width: 70%;
}
.content-wrap .content .content-container2 .content2 .car-wrap {
  position: absolute;
  bottom: 18%;
  transition: opacity 0.7s;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .car-wrap {
    bottom: 19%;
  }
}
.content-wrap .content .content-container2 .content2 .car-wrap .car {
  position: relative;
  height: 202px;
  width: 300px;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car {
    height: 170px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car {
    height: 110px;
  }
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-body {
  position: absolute;
  left: 0;
  z-index: 1;
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-body img {
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-body img {
    width: 240px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-body img {
    width: 150px;
  }
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left, .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left {
  left: 8px;
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
  right: 16px;
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .rotate {
  animation: rotatewheel 3s infinite;
}
.content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .rotate-back {
  animation: rotatewheelback 3s infinite;
}
@media (max-width: 1400px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left, .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
    width: 65px;
  }
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left {
    left: 4px;
  }
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
    right: 70px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left, .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
    width: 45px;
  }
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .left {
    left: 0px;
  }
  .content-wrap .content .content-container2 .content2 .car-wrap .car .car-wheel .right {
    right: 150px;
  }
}
@media (max-width: 992px) {
  .content-wrap .content .content-container6 .content6 #text7 {
    top: 10%;
  }
}
.content-wrap .content .content-container9 {
  transition: opacity 0.7s;
}
.content-wrap .content .content-container9 .content9 {
  background-color: transparent;
}
.content-wrap .content .content-container9 .content9 .terra-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container9 .content9 .terra-container {
    right: 0px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.content-wrap .content .content-container9 .content9 .terra-container .outroterra1 {
  position: relative;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container9 .content9 .terra-container .outroterra1 {
    max-width: 70%;
    margin-left: auto;
    right: -60px;
  }
}
.content-wrap .content .content-container9 .content9 .terra-container .outroterra1 img {
  position: absolute;
  left: -63%;
  max-width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.content-wrap .content .content-container10 {
  transition: opacity 0.7s;
}
.content-wrap .content .content-container10 .content10 .terra-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container10 .content10 .terra-container {
    right: 0;
  }
}
.content-wrap .content .content-container10 .content10 .terra-container .outroterra2 {
  position: relative;
}
@media (max-width: 992px) {
  .content-wrap .content .content-container10 .content10 .terra-container .outroterra2 {
    max-width: 70%;
    margin-left: auto;
    right: -20%;
  }
}
.content-wrap .content .content-container10 .content10 .terra-container .outroterra2 img {
  position: absolute;
  left: -70%;
  top: 0;
  max-width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.end-page {
  width: 100%;
  height: 100%;
  background-color: #4083A0;
  position: relative;
  z-index: 3;
}
.end-page .quotes-section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.end-page .quotes-section .quotes .quotes-img {
  margin: auto;
  margin-bottom: 35px;
  text-align: center;
}
@media (max-width: 1400px) {
  .end-page .quotes-section .quotes .quotes-img img {
    max-width: 100%;
    height: auto;
    width: 200px;
  }
}
@media (max-width: 992px) {
  .end-page .quotes-section .quotes .quotes-img img {
    max-width: 100%;
    height: auto;
  }
}
.end-page .quotes-section .quotes blockquote {
  color: white;
  font-size: 36px;
  font-style: italic;
  margin: auto;
  margin-bottom: 30px;
  text-align: center;
  max-width: 65%;
}
@media (max-width: 1400px) {
  .end-page .quotes-section .quotes blockquote {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .end-page .quotes-section .quotes blockquote {
    font-size: 18px;
    max-width: 90%;
  }
}
.end-page .quotes-section .quotes .quotes-name h5 {
  font-weight: normal;
  color: #F2A303;
  font-size: 28px;
  text-align: center;
  margin: 0;
}
@media (max-width: 1400px) {
  .end-page .quotes-section .quotes .quotes-name h5 {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .end-page .quotes-section .quotes .quotes-name h5 {
    font-size: 20px;
  }
}
.end-page .quotes-section .quotes .quotes-name p {
  color: white;
  text-align: center;
  margin: 0;
}
@media (max-width: 992px) {
  .end-page .quotes-section .quotes .quotes-name p {
    font-size: 16px;
  }
}
.end-page .credit-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .end-page .credit-section {
    align-items: start;
  }
}
.end-page .credit-section .credit-wrap {
  text-align: center;
}
.end-page .credit-section .credit-wrap .credit {
  font-size: 20px;
  margin-bottom: 35px;
}
@media (max-width: 1400px) {
  .end-page .credit-section .credit-wrap .credit {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
@media (max-width: 992px) {
  .end-page .credit-section .credit-wrap .credit {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.end-page .credit-section .credit-wrap .credit h5 {
  color: #F2A303;
  margin: 0;
  font-weight: normal;
}
.end-page .credit-section .credit-wrap .credit p {
  color: white;
  margin: 0;
}
.end-page .credit-section .credit-wrap .credit-desc {
  width: 50%;
  text-align: center;
  margin: auto;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .end-page .credit-section .credit-wrap .credit-desc {
    margin-bottom: 10px;
    width: 90%;
  }
}
.end-page .credit-section .credit-wrap img {
  width: 300px;
}
@media (max-width: 992px) {
  .end-page .credit-section .credit-wrap img {
    width: 200px;
  }
}
@keyframes rotatewheel {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}
@keyframes rotatewheelback {
  0% {
    transform: rotate(720deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media only screen and (min-width: 1140px) and (max-width: 1399px) {
  .content-container3 .content3 #text3 p {
    margin-bottom: 20px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .content-container3 .content3 #text3 p {
    margin-bottom: 20px !important;
  }
  .content-container5 .content5 #text5 p {
    margin-bottom: 20px !important;
  }
  .content-container6 .content6 #text6 p {
    margin-bottom: 20px !important;
  }
  .content-container6 .content6 #text7 p {
    margin-bottom: 40px !important;
  }
  .content-container8 .content8 #text9 p {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 1900px) {
  .content-wrap .content .cover-container {
    padding: 50px;
  }
  .content-wrap .content .cover-container p {
    font-size: 40px;
    margin: 0;
    margin-bottom: 5px;
  }
  .content-wrap .content .cover-container p span {
    font-size: 32px;
  }
  .content-wrap .content .cover-container h1 {
    font-size: 62px;
    margin-bottom: 30px;
  }
}
.child {
  position: absolute;
  width: 100%;
  height: 100%;
}
.child .content-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.child .content-container .content-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
.child .content-container .content-wrap .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.child1 {
  background-color: #4083A0;
}
.child1 .content1 .text-wrap {
  width: 75%;
}
@media (max-width: 992px) {
  .child1 .content1 .text-wrap {
    width: 90%;
  }
}
.child1 .content1 .text-wrap p {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child1 .content1 .text-wrap p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .child1 .content1 .text-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .child1 .content1 .text-wrap p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .child1 .content2::before {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #333333;
    left: 0;
    height: 200px;
  }
}
.child1 .content2 .img-container {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .child1 .content2 .img-container {
    bottom: 200px;
  }
}
.child1 .content2 .img-container img {
  width: 100%;
  max-height: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .child1 .content3::before {
    content: " ";
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #333333;
    left: 0;
    height: 200px;
  }
}
.child1 .content3 .bgroad {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: transparent;
}
@media (max-width: 992px) {
  .child1 .content3 .bgroad {
    bottom: 200px;
  }
}
.child1 .content3 .bgroad picture {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.child1 .content3 .bgroad picture img {
  width: 100%;
}
.child1 .content3 .text-wrap {
  width: 75%;
  margin: auto;
  padding-top: 6rem;
  position: relative;
}
@media (max-width: 992px) {
  .child1 .content3 .text-wrap {
    width: 90%;
    padding-top: 1rem;
  }
}
.child1 .content3 .text-wrap p {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child1 .content3 .text-wrap p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .child1 .content3 .text-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .child1 .content3 .text-wrap p {
    font-size: 12px;
  }
}
.child1 .content3 .coindrop {
  width: -moz-fit-content;
  width: fit-content;
  /* max-width: 100%; */
  /* max-height: 100%; */
  height: 100%;
  top: 0;
  position: absolute;
  padding: 50px 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 992px) {
  .child1 .content3 .coindrop {
    left: 0;
    right: 0;
    top: 100px;
    margin: auto;
    padding: 0;
    height: auto;
  }
}
.child1 .content3 .whitemap {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  padding: 100px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 992px) {
  .child1 .content3 .whitemap {
    height: auto;
    padding: 100px 0;
    top: 100px;
  }
}
.child1 .content4 .bgroad1 {
  width: 100%;
  height: 23%;
  background-color: #333333;
  position: absolute;
  bottom: 0;
}
.child1 .content4 .bgbike {
  width: 25%;
  position: absolute;
  bottom: 7%;
  right: 7%;
}
@media (max-width: 992px) {
  .child1 .content4 .bgbike {
    width: 50%;
  }
}
.child1 .content4 .bgbike picture img {
  width: 100%;
}
.child1 .content4 .text-wrap {
  width: 75%;
  padding-left: 6rem;
  padding-top: 6rem;
  position: relative;
}
@media (max-width: 992px) {
  .child1 .content4 .text-wrap {
    width: 90%;
    padding-left: 0;
    padding-top: 5rem;
    margin: auto;
  }
}
.child1 .content4 .text-wrap p {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child1 .content4 .text-wrap p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .child1 .content4 .text-wrap p {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .child1 .content4 .text-wrap p {
    font-size: 12px;
  }
}
.child1 .content4 .graph-wrap {
  padding-top: 3rem;
  margin: auto;
  width: 60%;
}
@media (max-width: 992px) {
  .child1 .content4 .graph-wrap {
    width: 90%;
    padding-top: 6rem;
  }
}
.child1 .content4 .graph-wrap h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 1400px) {
  .child1 .content4 .graph-wrap h3 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .child1 .content4 .graph-wrap h3 {
    font-size: 24px;
  }
}
.child1 .content4 .graph-wrap img {
  width: 90%;
  display: block;
  margin: auto;
}
.child1 .content5 {
  background-color: #333333;
}
.child1 .content5 .terra-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .child1 .content5 .terra-container {
    top: 60%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.child1 .content5 .terra-container .childoutroterra1 {
  position: relative;
}
@media (max-width: 1400px) {
  .child1 .content5 .terra-container .childoutroterra1 {
    width: 80%;
    margin: auto;
  }
}
.child1 .content5 .terra-container .childoutroterra1 img {
  position: absolute;
  left: -55%;
  top: 20%;
  width: 80%;
}
@media (max-width: 992px) {
  .child1 .content5 .terra-container .childoutroterra1 img {
    left: 0;
    right: 0;
    margin: auto;
    top: -45%;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1139px) {
  .child2 .content2 .main-content .greenline {
    width: 80%;
    margin: auto;
  }
}
.child2 {
  background-color: #333333;
}
.child2 .content1 .text-wrap {
  width: 75%;
}
@media (max-width: 992px) {
  .child2 .content1 .text-wrap {
    width: 90%;
  }
}
.child2 .content1 .text-wrap p {
  font-size: 24px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child2 .content1 .text-wrap p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .child2 .content1 .text-wrap p {
    font-size: 14px;
  }
}
.child2 .content1 .text-wrap img {
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child2 .content1 .text-wrap img {
    max-width: 100px;
  }
}
@media (max-width: 992px) {
  .child2 .content1 .text-wrap img {
    max-width: 80px;
  }
}
@media (max-width: 992px) {
  .child2 .content2 .main-content {
    width: 100% !important;
  }
}
.child2 .content2 .main-content h1 {
  font-size: 48px;
  margin: 0;
  margin-bottom: 20px;
}
.child2 .content2 .main-content .greenline {
  width: 90%;
}
@media (max-width: 992px) {
  .child2 .content2 .main-content .greenline {
    width: 100% !important;
  }
}
.child2 .content2 .bg-mining {
  position: absolute;
  bottom: 20%;
  right: 15%;
  max-width: 300px;
}
.child2 .content3 h1 {
  font-size: 48px;
  margin: 0 auto;
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
}
@media (max-width: 992px) {
  .child2 .content3 h1 {
    font-size: 32px;
    top: 10%;
  }
}
.child2 .content3 .main-container {
  height: 100%;
}
.child2 .content3 .main-container .arrow-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .child2 .content3 .main-container .arrow-container {
    display: none !important;
  }
}
.child2 .content3 .main-container .arrow-container img {
  cursor: pointer;
}
@media (max-width: 992px) {
  .child2 .content3 .main-container .arrow-container img {
    width: 20px;
  }
}
.child2 .content3 .main-container .main-content {
  width: 70%;
}
.child2 .content3 .main-container .main-content .slider-wrap {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 50px;
}
@media (max-width: 992px) {
  .child2 .content3 .main-container .main-content .slider-wrap {
    padding: 10px;
  }
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-container .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-container .slider-content .process svg {
  max-height: 300px;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-container .slider-content .process-desc {
  margin-top: -15%;
  z-index: 2;
  position: relative;
  max-width: 100%;
}
@media (max-width: 992px) {
  .child2 .content3 .main-container .main-content .slider-wrap .slider-indicator {
    display: none;
  }
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-indicator .individual-indicators {
  display: flex;
  position: relative;
  width: 100%;
  padding: 0;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-indicator .individual-indicators .active-indicator {
  position: absolute;
  content: "";
  height: 21px;
  vertical-align: middle;
  background-color: white;
  top: -8px;
  width: 28px;
  transition: 0.8s ease;
  left: 40px;
  border-radius: 10px;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-indicator .individual-indicators .slide {
  height: 11px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background-color: #333;
  width: 200px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-indicator .individual-indicators .slide:last-child {
  border-right: 3px solid #fff;
  border-radius: 0 10px 10px 0;
}
.child2 .content3 .main-container .main-content .slider-wrap .slider-indicator .individual-indicators .first-child {
  border-left: 3px solid #fff;
  border-radius: 10px 0 0 10px;
}
.child2 .content4 .terra-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .child2 .content4 .terra-container {
    top: 60%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.child2 .content4 .terra-container .childoutroterra2 {
  position: relative;
}
@media (max-width: 1400px) {
  .child2 .content4 .terra-container .childoutroterra2 {
    width: 80%;
    margin: auto;
  }
}
.child2 .content4 .terra-container .childoutroterra2 img {
  position: absolute;
  left: -55%;
  top: 20%;
  width: 80%;
}
@media (max-width: 992px) {
  .child2 .content4 .terra-container .childoutroterra2 img {
    left: 0;
    right: 0;
    margin: auto;
    top: -45%;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1139px) {
  .child2 .content2 .main-content .greenline {
    width: 80%;
  }
}
.child3 {
  background-color: #333333;
}
.child3 .content {
  width: 100%;
  height: 100%;
  position: relative;
}
.child3 .content .bgroad {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 992px) {
  .child3 .content .bgroad {
    display: none;
  }
}
.child3 .content .terra-container {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
}
.child3 .content .terra-container .terra {
  transition: opacity 0.5s;
}
.child3 .content .terra-container-main {
  left: -4%;
  bottom: 3%;
}
@media (max-width: 992px) {
  .child3 .content .terra-container-main {
    left: 10px;
    top: 10px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
  }
}
.child3 .content .terra-container-main .terra {
  max-width: 70%;
}
@media (max-width: 1400px) {
  .child3 .content .terra-container-main .terra {
    max-width: 70%;
  }
}
@media (max-width: 992px) {
  .child3 .content .terra-container-main .terra {
    width: 170px;
    position: relative;
    z-index: 2;
    left: -34px;
    top: -10px;
    max-width: unset;
    background-color: white;
  }
}
.child3 .content .text-container {
  position: absolute;
  bottom: 15%;
  width: 60%;
  left: 10%;
  right: 0;
  margin: 0 auto;
  transition: opacity 0.5s;
}
@media (max-width: 992px) {
  .child3 .content .text-container {
    position: absolute;
    width: 60%;
    left: unset;
    right: 5%;
    top: 25px;
    bottom: unset;
    margin: 0 auto;
    transition: opacity 0.5s;
  }
}
.child3 .content .text-container p {
  margin: 0;
  font-size: 28px;
}
@media (max-width: 1400px) {
  .child3 .content .text-container p {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .child3 .content .text-container p {
    font-size: 16px;
  }
}
.child3 .content1 .text-wrap {
  width: 70%;
  margin: auto;
  padding-top: 6rem;
}
@media (max-width: 992px) {
  .child3 .content1 .text-wrap {
    width: 90%;
    padding-top: 10rem;
  }
}
.child3 .content1 .text-wrap p {
  font-size: 21px;
  margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
  .child3 .content1 .text-wrap p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .child3 .content1 .text-wrap p {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .child3 .content1 .text-wrap p {
    font-size: 12px;
  }
}
.child3 .content1 .text-wrap button {
  background-color: transparent;
  border: none;
  float: right;
}
@media (max-width: 1400px) {
  .child3 .content1 .text-wrap button {
    margin-top: 25px;
  }
}
@media (max-width: 992px) {
  .child3 .content1 .text-wrap button {
    float: none;
    margin: auto;
    width: 100%;
    padding-top: 10px;
  }
}
.child3 .content1 .text-wrap button .mapbtnimg {
  max-width: 100px;
}
@media (max-width: 992px) {
  .child3 .content1 .text-wrap button .mapbtnimg {
    max-width: 90px;
  }
}
.child3 .content2 {
  padding-top: 50px;
}
.child3 .content2 .map-container {
  max-width: 1000px;
  margin: auto;
  border-radius: 18px;
  border: 6px solid black;
  background-color: #4083A0;
}
@media (max-width: 1400px) {
  .child3 .content2 .map-container {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .child3 .content2 .map-container {
    max-width: 370px;
    margin-top: 100px;
  }
}
.child3 .content2 .map-container .map-close {
  top: 0;
  right: -100px;
}
@media (max-width: 992px) {
  .child3 .content2 .map-container .map-close {
    right: 0;
  }
}
@media (max-width: 992px) {
  .child3 .content2 .map-container .map-close img {
    width: 50px;
    height: 50px;
  }
}
.child3 .content2 .map-container .map-wrap {
  padding: 30px 50px;
  border-radius: 18px;
  border: 6px solid white;
}
@media (max-width: 992px) {
  .child3 .content2 .map-container .map-wrap {
    padding: 30px 10px;
    overflow: hidden;
    max-height: 370px;
  }
}
.child3 .content2 .map-container .map-wrap .map-title {
  color: #FFAB00;
  font-size: 48px;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .child3 .content2 .map-container .map-wrap .map-title {
    font-size: 20px;
  }
}
.child3 .content2 .map-container .map-wrap svg {
  max-width: 100%;
  height: 300px;
}
@media (max-width: 992px) {
  .child3 .content2 .map-container .map-wrap svg {
    scale: 2.4;
    margin-left: -29%;
  }
}

.map-modal .modal-close {
  top: 60px;
  right: 120px;
}
@media (max-width: 992px) {
  .map-modal .modal-close {
    top: 10px;
    right: 10px;
  }
}
.map-modal .modal-dialog {
  max-width: 41.66666667%;
  min-height: unset;
  height: 100%;
}
@media (max-width: 992px) {
  .map-modal .modal-dialog {
    max-width: 100%;
    display: block;
    margin-top: 100px;
  }
}
.map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next, .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev {
  opacity: 1;
}
@media (max-width: 992px) {
  .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next, .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev {
    bottom: -45%;
    top: unset;
  }
  .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next img, .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev img {
    width: 30px;
  }
}
.map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev {
  left: -100px;
}
@media (max-width: 992px) {
  .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-prev {
    left: 0;
  }
}
.map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next {
  right: -100px;
}
@media (max-width: 992px) {
  .map-modal .modal-dialog .modal-content .modal-body .carousel .carousel-control-next {
    right: 0;
  }
}

.modal-backdrop {
  background-color: #333333 !important;
  opacity: 100% !important;
}

.child4 {
  background-color: #333333;
}
.child4 .content1 {
  background-image: url("../img/bg-cave.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.child4 .content2 h2 {
  font-size: 24px;
}
.child4 .content3 h2 {
  font-size: 24px;
}
.child4 .content4 h2 {
  font-size: 24px;
}
.child4 .content4 .main-container {
  height: 100%;
}
.child4 .content4 .main-container .arrow-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.child4 .content4 .main-container .arrow-container img {
  cursor: pointer;
}
.child4 .content4 .main-container .main-content {
  width: 70%;
}
.child4 .content4 .main-container .main-content .sliding-wrap {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 50px;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-container .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-container .sliding-content .process svg {
  max-height: 300px;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-container .sliding-content .process-desc {
  margin-top: -15%;
  z-index: 2;
  position: relative;
  max-width: 100%;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-indicator .point-indicators {
  display: flex;
  position: relative;
  width: 100%;
  padding: 0;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-indicator .point-indicators .pin-indicator {
  position: absolute;
  content: "";
  height: 21px;
  vertical-align: middle;
  background-color: white;
  top: -8px;
  width: 28px;
  transition: 0.8s ease;
  left: 40px;
  border-radius: 10px;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-indicator .point-indicators .slides {
  height: 11px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background-color: #333;
  width: 200px;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-indicator .point-indicators .slides:last-child {
  border-right: 3px solid #fff;
  border-radius: 0 10px 10px 0;
}
.child4 .content4 .main-container .main-content .sliding-wrap .sliding-indicator .point-indicators .first-child {
  border-left: 3px solid #fff;
  border-radius: 10px 0 0 10px;
}
.child4 .content9 .terra-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20%;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .child4 .content9 .terra-container {
    top: 60%;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.child4 .content9 .terra-container .childoutroterra4 {
  position: relative;
}
@media (max-width: 1400px) {
  .child4 .content9 .terra-container .childoutroterra4 {
    width: 80%;
    margin: auto;
  }
}
.child4 .content9 .terra-container .childoutroterra4 .chat-bubble {
  position: absolute;
  left: -50%;
  top: 25%;
  width: 80%;
}
@media (max-width: 992px) {
  .child4 .content9 .terra-container .childoutroterra4 .chat-bubble {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -35%;
    width: 80%;
  }
}
.child4 .content9 .terra-container .childoutroterra4 .back-btn4 {
  z-index: 5;
  top: 0;
  right: 0;
}
@media (max-width: 992px) {
  .child4 .content9 .terra-container .childoutroterra4 .back-btn4 {
    z-index: 5;
    top: -70%;
    right: 0;
  }
}
.child4 .content9 .terra-container .childoutroterra4 .back-btn4 img {
  width: 70px;
}
@media (max-width: 992px) {
  .child4 .content9 .terra-container .childoutroterra4 .back-btn4 img {
    width: 50px;
  }
}

.btn-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-wrap .btn-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.btn-wrap .btn-container .start-button {
  position: absolute;
  bottom: 12%;
  right: 10%;
  opacity: 0;
  display: none;
  transition: all 0.7s;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 992px) {
  .btn-wrap .btn-container .start-button {
    bottom: unset;
    right: 0;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    top: 25%;
  }
}
.btn-wrap .btn-container .start-button img {
  width: 70%;
}
.btn-wrap .btn-container .checkbtn {
  position: absolute;
  bottom: 20%;
  right: 10%;
  border: 3px solid white;
  background-color: #333333;
  text-align: center;
  padding: 10px 20px;
  color: white;
  font-size: 18px;
  border-radius: 15px;
  display: none;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .btn-wrap .btn-container .checkbtn {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .btn-wrap .btn-container .checkbtn {
    bottom: 8%;
    right: 0;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.btn-wrap .btn-container .cavebtn {
  right: 0;
  margin: 0 auto;
  bottom: 23%;
  width: 500px;
  height: 230px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
@media (max-width: 992px) {
  .btn-wrap .btn-container .cavebtn {
    width: 200px;
    height: 110px;
  }
}
.btn-wrap .btn-container .cavebtn .cave-container {
  width: 100%;
  height: 100%;
}
.btn-wrap .btn-container .cavebtn .cave-container .cave-tooltip {
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.3s;
}
@media (max-width: 992px) {
  .btn-wrap .btn-container .cavebtn .cave-container .cave-tooltip {
    width: 100px;
  }
}
.btn-wrap .btn-container .cavebtn .cave-container .cave-entrance {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  opacity: 0;
}
.btn-wrap .btn-container .back-btn {
  position: absolute;
  top: 10%;
  right: 10%;
  display: none;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
.btn-wrap .btn-container .back-btn img {
  width: 70px;
  height: 70px;
}
@media (max-width: 992px) {
  .btn-wrap .btn-container .back-btn img {
    width: 50px;
    height: 50px;
  }
}

.slider-child2m {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}
.slider-child2m .arrow-container {
  height: 100%;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-child2m .arrow-container img {
  cursor: pointer;
}
@media (max-width: 992px) {
  .slider-child2m .arrow-container img {
    width: 20px;
  }
}

.slider-child4m {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}
.slider-child4m .carousel-control-arrows {
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 35%;
}
.slider-child4m .carousel-control-arrows .carousel-control-next-icon, .slider-child4m .carousel-control-arrows .carousel-control-prev-icon {
  width: 5rem;
  height: 5rem;
}

@media (max-width: 992px) {
  #refresh {
    margin-bottom: -22%;
  }
}
#refresh svg {
  filter: brightness(5.5);
}

.overlay {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=styles.css.map */