/*
 * Painted by CANDY.
 */
/* ==========================================================================
   Mixin
============================================================================= */
/* ==========================================================================
   Variables
============================================================================= */
/* ==========================================================================
   Base styles
============================================================================= */
@import "fonts.css";
body, html {
  -webkit-font-smoothing: antialiased;
  background-color: #77d9f1;
  color: #ffffff;
  letter-spacing: 1px;
  font-family: roboto, source-han-sans-traditional, sans-serif;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a {
  color: black;
  text-decoration: none;
}
a:hover, a:after, a:focus {
  color: black;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  line-height: 1;
  font-family: roboto, source-han-sans-traditional, sans-serif;
}

p {
  font-size: 16px;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1.9;
}
p.caption {
  font-size: 14px;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

.regular {
  font-weight: 400;
}

.chin-light {
  font-weight: 200;
}

.eng-light {
  font-weight: 300;
}

h1 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1px;
}

.overall-wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;
}

.text-underline {
  position: relative;
  color: black;
  display: inline-block;
  /* margin: auto; */
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  margin-bottom: 60px;
}
.text-underline::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 3px;
  height: 4px;
  width: 100%;
  z-index: 1;
  background-color: #00D198;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  position: relative;
}

.triphana-logo {
  background-image: url("../images/icon-triphana-logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 34px;
  display: block;
  margin-bottom: 25px;
}

.hero-flight {
  background-image: url("../images/icon-flight.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 155px;
  height: 52px;
  top: 6vh;
  -webkit-animation: flightAnim 10s linear infinite;
  -moz-animation: flightAnim 10s linear infinite;
  -o-animation: flightAnim 10s linear infinite;
  animation: flightAnim 10s linear infinite;
}
@-webkit-keyframes flightAnim {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes flightAnim {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes flightAnim {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
@keyframes flightAnim {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

.hero-small-cloud {
  background-image: url("../images/icon-cloud.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 36px;
  height: 22px;
  left: 14vw;
  top: 18vh;
  opacity: 0.5;
}

.hero-small-cloud-1 {
  top: 66vh;
  left: 12vw;
}

.hero-small-cloud-2 {
  left: 68vw;
  top: 14vh;
}

.hero-small-cloud-3 {
  left: 90vw;
  top: 73vh;
  opacity: 0.3;
}

.hero-small-cloud-4 {
  left: -20%;
  top: 30vh;
  -webkit-animation: cloudAnim 30s linear infinite;
  -moz-animation: cloudAnim 30s linear infinite;
  -o-animation: cloudAnim 30s linear infinite;
  animation: cloudAnim 30s linear infinite;
}
@-webkit-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}

.hero-small-cloud-5 {
  left: -20%;
  top: 80vh;
  -webkit-animation: cloudAnim 25s linear infinite;
  -moz-animation: cloudAnim 25s linear infinite;
  -o-animation: cloudAnim 25s linear infinite;
  animation: cloudAnim 25s linear infinite;
}
@-webkit-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-moz-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-o-keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes cloudAnim {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.hero-flight-air {
  background-color: #ffffff;
  background-position: left;
  width: 100%;
  height: 2px;
  top: 174px;
  left: 0%;
  opacity: 0;
  position: absolute;
  -webkit-animation: flightAirAnim 10s linear infinite;
  -moz-animation: flightAirAnim 10s linear infinite;
  -o-animation: flightAirAnim 10s linear infinite;
  animation: flightAirAnim 10s linear infinite;
}
@-webkit-keyframes flightAirAnim {
  0% {
    left: -150%;
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-moz-keyframes flightAirAnim {
  0% {
    left: -150%;
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@-o-keyframes flightAirAnim {
  0% {
    left: -150%;
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes flightAirAnim {
  0% {
    left: -150%;
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.hero-diving-left {
  background-image: url("../images/icon-hero-diving-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  left: 7px;
  top: 61vh;
  width: 97px;
  height: 114px;
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
  -o-transform: rotate(-10deg);
  transform: rotate(-10deg);
  -webkit-animation: divingRotate 3s ease-in-out infinite alternate;
  -moz-animation: divingRotate 3s ease-in-out infinite alternate;
  -o-animation: divingRotate 3s ease-in-out infinite alternate;
  animation: divingRotate 3s ease-in-out infinite alternate;
}
@-webkit-keyframes divingRotate {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@-moz-keyframes divingRotate {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@-o-keyframes divingRotate {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes divingRotate {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

.hero-diving-right {
  background-image: url("../images/icon-hero-diving-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 113px;
  height: 147px;
  top: 50vh;
  right: 0px;
  position: fixed;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  transform: rotate(20deg);
  -webkit-animation: divingRotate2 5s ease-in-out infinite alternate;
  -moz-animation: divingRotate2 5s ease-in-out infinite alternate;
  -o-animation: divingRotate2 5s ease-in-out infinite alternate;
  animation: divingRotate2 5s ease-in-out infinite alternate;
}
@-webkit-keyframes divingRotate2 {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@-moz-keyframes divingRotate2 {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@-o-keyframes divingRotate2 {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
@keyframes divingRotate2 {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}

.hero-cloud {
  background-image: url("../images/icon-hero-cloud.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60vw;
  height: 50vw;
  max-width: 1010px;
  position: absolute;
  bottom: -22vw;
  left: -9vw;
}

.hero-mountain {
  background-image: url("../images/icon-hero-mountain.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60%;
  height: 10%;
  position: absolute;
  bottom: -2vh;
  right: 0px;
}

.btn-cfa-wrapper {
  background-color: #ffffff;
  width: 280px;
  padding: 9px 6px;
  margin-bottom: 17px;
  display: inline-block;
  color: black;
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  text-align: center;
  z-index: 1;
  box-shadow: 0 1px 0 #cbcbcb, 0 5px 1px 1px #DDDDDD;
  margin-right: 15px;
}
.btn-cfa-wrapper:active {
  margin-top: -18;
}
.btn-cfa-wrapper span.icon-flag {
  background-image: url("../images/icon-flag-33x39.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}

.fadein {
  opacity: 0;
}

.point-section-wrapper {
  background-color: #245DA0;
  position: relative;
  z-index: 9999;
}

section.fadein-section {
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(0, 20px);
  transition: all 1s;
}
section.fadein-section.visible {
  opacity: 1;
  transform: translate(0, 0);
}
section.hero-wrapper {
  background-color: #77d9f1;
  height: 85vh;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
}
section.hero-wrapper .hero-content-wrapper {
  position: relative;
  text-align: center;
  z-index: 1;
}
section.hero-wrapper .hero-content-wrapper h1 {
  margin-bottom: 30px;
}
section.hello-wrapper {
  background-image: url("../images/bg-ocean.svg");
  width: 100%;
  padding: 130px 0px 100px 0px;
  background-repeat: repeat-x;
  background-position: top;
  background-size: cover;
  height: 700px;
  position: relative;
}
section.mission-wrapper {
  background-color: #29B3D9;
  width: 100%;
  padding: 100px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: -20px;
}
section.mission-wrapper .bubble {
  background-color: #F1F2F9;
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 100px;
  bottom: -10%;
  left: 5%;
  opacity: 0;
  z-index: 999;
  -webkit-animation: bubbleAnim 18s ease-in-out infinite;
  -moz-animation: bubbleAnim 18s ease-in-out infinite;
  -o-animation: bubbleAnim 18s ease-in-out infinite;
  animation: bubbleAnim 18s ease-in-out infinite;
}
@-webkit-keyframes bubbleAnim {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.4;
    transform: scale(1);
  }
  75% {
    opacity: 0.2;
    transform: scale(1.6);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}
@-moz-keyframes bubbleAnim {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.4;
    transform: scale(1);
  }
  75% {
    opacity: 0.2;
    transform: scale(1.6);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}
@-o-keyframes bubbleAnim {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.4;
    transform: scale(1);
  }
  75% {
    opacity: 0.2;
    transform: scale(1.6);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes bubbleAnim {
  0% {
    bottom: -10%;
    opacity: 0;
    transform: scale(1);
  }
  25% {
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.4;
    transform: scale(1);
  }
  75% {
    opacity: 0.2;
    transform: scale(1.6);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}
section.mission-wrapper .bubble-1 {
  left: 10%;
  -webkit-animation: bubbleAnim 15s ease-in-out infinite 2s;
  -moz-animation: bubbleAnim 15s ease-in-out infinite 2s;
  -o-animation: bubbleAnim 15s ease-in-out infinite 2s;
  animation: bubbleAnim 15s ease-in-out infinite 2s;
}
section.mission-wrapper .bubble-2 {
  left: 15%;
  -webkit-animation: bubbleAnim 8s linear infinite;
  -moz-animation: bubbleAnim 8s linear infinite;
  -o-animation: bubbleAnim 8s linear infinite;
  animation: bubbleAnim 8s linear infinite;
}
section.mission-wrapper .bubble-3 {
  left: 30%;
  -webkit-animation: bubbleAnim 10s linear infinite;
  -moz-animation: bubbleAnim 10s linear infinite;
  -o-animation: bubbleAnim 10s linear infinite;
  animation: bubbleAnim 10s linear infinite;
}
section.mission-wrapper .bubble-4 {
  left: 40%;
  -webkit-animation: bubbleAnim 20s linear infinite 2s;
  -moz-animation: bubbleAnim 20s linear infinite 2s;
  -o-animation: bubbleAnim 20s linear infinite 2s;
  animation: bubbleAnim 20s linear infinite 2s;
}
section.mission-wrapper .bubble-5 {
  left: 50%;
  -webkit-animation: bubbleAnim 12s linear infinite 4s;
  -moz-animation: bubbleAnim 12s linear infinite 4s;
  -o-animation: bubbleAnim 12s linear infinite 4s;
  animation: bubbleAnim 12s linear infinite 4s;
}
section.mission-wrapper .bubble-6 {
  left: 60%;
  -webkit-animation: bubbleAnim 10s linear infinite 2s;
  -moz-animation: bubbleAnim 10s linear infinite 2s;
  -o-animation: bubbleAnim 10s linear infinite 2s;
  animation: bubbleAnim 10s linear infinite 2s;
}
section.mission-wrapper .bubble-7 {
  left: 70%;
  -webkit-animation: bubbleAnim 10s linear infinite 4s;
  -moz-animation: bubbleAnim 10s linear infinite 4s;
  -o-animation: bubbleAnim 10s linear infinite 4s;
  animation: bubbleAnim 10s linear infinite 4s;
}
section.mission-wrapper .bubble-8 {
  left: 80%;
  -webkit-animation: bubbleAnim 18s linear infinite 2s;
  -moz-animation: bubbleAnim 18s linear infinite 2s;
  -o-animation: bubbleAnim 18s linear infinite 2s;
  animation: bubbleAnim 18s linear infinite 2s;
}
section.mission-wrapper .bubble-9 {
  left: 90%;
  -webkit-animation: bubbleAnim 10s linear infinite 4s;
  -moz-animation: bubbleAnim 10s linear infinite 4s;
  -o-animation: bubbleAnim 10s linear infinite 4s;
  animation: bubbleAnim 10s linear infinite 4s;
}
section.mission-wrapper .bubble-10 {
  left: 100%;
  -webkit-animation: bubbleAnim 10s linear infinite 2s;
  -moz-animation: bubbleAnim 10s linear infinite 2s;
  -o-animation: bubbleAnim 10s linear infinite 2s;
  animation: bubbleAnim 10s linear infinite 2s;
}
section.mission-wrapper .paper-top {
  background-image: url("../images/bg-paper-mobile-top@2x.png");
  height: 62px;
  top: -32px;
  left: 0px;
  right: 0px;
  width: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
section.mission-wrapper .paper-bottom {
  background-image: url("../images/bg-paper-mobile-bottom@2x.png");
  height: 103px;
  bottom: -47px;
  left: 0;
  width: 100%;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
}
section.mission-wrapper .mission-paper-wrapper {
  background-color: #ffffff;
  padding: 30px 20px;
  margin: auto;
  position: relative;
  width: calc(100% - 30px);
}
section.mission-wrapper .mission-paper-wrapper h1 {
  color: black;
  text-align: center;
  margin-bottom: 30px;
}
section.mission-wrapper .mission-paper-wrapper h1:last-of-type {
  margin-bottom: 10px;
}
section.mission-wrapper .mission-content-wrapper {
  position: relative;
}
section.trip-details-wrapper .details-wrapper {
  margin-right: 0px;
}
section.trip-details-wrapper {
  background-color: #245DA0;
  padding: 80px 15px;
}
section.trip-details-wrapper h1 {
  text-align: center;
}
section.trip-details-wrapper h1 span {
  margin-bottom: 0px;
}
section.trip-details-wrapper h1 .text-underline {
  left: auto;
  color: #ffffff;
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  -ms-transform: translate(0, 0%);
  -o-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
section.trip-details-wrapper .details-wrapper {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
section.trip-details-wrapper .details-wrapper img {
  display: inline-block;
  width: calc(50% - 15px);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
section.point-section {
  position: relative;
  padding: 30px 0px;
  color: #ffffff;
}
section.point-section .point-section-content h1, section.point-section .point-section-content p {
  position: relative;
  z-index: 999;
}
section.point-section.point-section-2 {
  padding: 120px 0px 140px 0px;
}
section.point-section.point-section-3 {
  padding: 0px 0px 0px 0px;
}
section.point-section.point-section-3 .point-section-content {
  margin-top: -170px;
}
section.point-section.point-section-4 {
  padding: 0px 0px 50px 0px;
}
section.point-section.point-section-4 .point-section-content {
  margin-top: -100px;
}
section.point-section h1 {
  text-align: center;
  text-shadow: 0 0 16px #000000a1;
  margin-bottom: 15px;
}
section.point-section p {
  color: #ffffff;
  text-shadow: 0 0 16px #000000;
}
section.point-section .point-image {
  position: relative;
  z-index: 999;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: auto;
}
section.point-section .point-image.point-image-1 {
  background-image: url("../images/point1-image@2x.png");
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
}
section.point-section .point-image.point-image-3 {
  background-image: url("../images/icon-othertools@2x.png");
  width: 100%;
  height: 412px;
  margin-bottom: 50px;
}
section.point-section .point-image.point-image-4 {
  background-image: url("../images/icon-map@2x.png");
  width: 100%;
  height: 300px;
  margin-bottom: 50px;
}
section.point-section .graphic-elem {
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
section.point-section .graphic-elem.left-green-leaf {
  background-image: url("../images/icon-green-leaf.svg");
  width: 229px;
  height: 276px;
  top: 240px;
  left: -140px;
  -webkit-transform: rotate(-28deg);
  -moz-transform: rotate(-28deg);
  -ms-transform: rotate(-28deg);
  -o-transform: rotate(-28deg);
  transform: rotate(-28deg);
  -webkit-transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -ms-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
}
section.point-section .graphic-elem.left-green-leaf.on {
  -webkit-transform: rotate(28deg);
  -moz-transform: rotate(28deg);
  -ms-transform: rotate(28deg);
  -o-transform: rotate(28deg);
  transform: rotate(28deg);
}
section.point-section .graphic-elem.left-yellow-leaf {
  background-image: url("../images/icon-yellowleaf.svg");
  width: 108px;
  height: 245px;
  top: 310px;
  left: -60px;
  -webkit-transform: rotate(-28deg);
  -moz-transform: rotate(-28deg);
  -ms-transform: rotate(-28deg);
  -o-transform: rotate(-28deg);
  transform: rotate(-28deg);
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transition: 1.8s ease-in-out;
  -moz-transition: 1.8s ease-in-out;
  -ms-transition: 1.8s ease-in-out;
  -o-transition: 1.8s ease-in-out;
  transition: 1.8s ease-in-out;
}
section.point-section .graphic-elem.left-yellow-leaf.on {
  -webkit-transform: rotate(55deg);
  -moz-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  -o-transform: rotate(55deg);
  transform: rotate(55deg);
}
section.point-section .graphic-elem.right-green-leaf {
  background-image: url("../images/icon-right-leaf.svg");
  width: 166px;
  height: 246px;
  top: 20px;
  right: -10px;
  -webkit-transform: rotate(75deg);
  -moz-transform: rotate(75deg);
  -ms-transform: rotate(75deg);
  -o-transform: rotate(75deg);
  transform: rotate(75deg);
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: 1.2s ease-in-out;
  -moz-transition: 1.2s ease-in-out;
  -ms-transition: 1.2s ease-in-out;
  -o-transition: 1.2s ease-in-out;
  transition: 1.2s ease-in-out;
}
section.point-section .graphic-elem.right-green-leaf.on {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
section.point-section .graphic-elem.left-book {
  background-image: url("../images/icon-travel-book-edit@2x.png");
  width: 100%;
  height: 250px;
  position: relative;
  background-position: center;
}
section.point-section .graphic-elem.right-pencil {
  background-image: url("../images/icon-pencil.svg");
  width: 740px;
  height: 444px;
  bottom: 0px;
  right: -260px;
  background-position: right;
}
section.call-for-action {
  background-color: #245DA0;
  padding: 0px 0px 70px 0px;
  margin: auto;
}
section.call-for-action .cfa-bg {
  background-color: #00A9F0;
  border-radius: 28px;
  overflow: hidden;
  padding: 40px 0px 0px 0px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
section.call-for-action h1 {
  text-align: center;
  margin-bottom: 10px;
}
section.call-for-action p {
  margin-bottom: 25px;
}
section.call-for-action h1, section.call-for-action p {
  color: #ffffff;
}
section.call-for-action .cfa-partner-wrapper {
  background-color: #F1F2F9;
  overflow: hidden;
  bottom: 0px;
  width: 100%;
  border-radius: 0px 0px 28px 28px;
  margin-top: 40px;
  padding: 30px 0px;
}
section.call-for-action .cfa-partner-wrapper h1 {
  text-align: center;
}
section.call-for-action .cfa-partner-wrapper h1, section.call-for-action .cfa-partner-wrapper p {
  color: #5D5D5D;
}
section.call-for-action a.btn-cfa-wrapper {
  display: block;
  width: 100%;
  margin: auto;
}

.lang-scm-wrapper {
  position: absolute;
  bottom: 40px;
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
.lang-scm-wrapper .scroll-down {
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-lang-scm {
  background-size: contain;
  width: 48px;
  height: 54px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  float: left;
}
.btn-lang-scm.btn-lang {
  background-image: url("../images/btn-eng.svg");
}
.btn-lang-scm.btn-facebook {
  background-image: url("../images/btn-facebook.svg");
}
.btn-lang-scm.btn-ig {
  background-image: url("../images/btn-instagram.svg");
}

.hello-word-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  color: #ffffff;
}

.hello-word {
  position: absolute;
  color: #ffffff;
  text-align: center;
  text-transform: lowercase;
  letter-spacing: 0px;
}

.hello-word-1 {
  font-size: 57px;
  font-weight: 700;
  right: -50%;
  top: 20%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat1 10s linear infinite 5s;
  -moz-animation: forwardRepeat1 10s linear infinite 5s;
  -o-animation: forwardRepeat1 10s linear infinite 5s;
  animation: forwardRepeat1 10s linear infinite 5s;
}
@-webkit-keyframes forwardRepeat1 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat1 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat1 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat1 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-2 {
  font-size: 30px;
  font-weight: 300;
  right: -50%;
  top: 0%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat2 13s linear infinite;
  -moz-animation: forwardRepeat2 13s linear infinite;
  -o-animation: forwardRepeat2 13s linear infinite;
  animation: forwardRepeat2 13s linear infinite;
}
@-webkit-keyframes forwardRepeat2 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat2 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat2 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat2 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-3 {
  font-size: 30px;
  font-weight: 300;
  right: -50%;
  top: 50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat3 13s linear infinite 8s;
  -moz-animation: forwardRepeat3 13s linear infinite 8s;
  -o-animation: forwardRepeat3 13s linear infinite 8s;
  animation: forwardRepeat3 13s linear infinite 8s;
}
@-webkit-keyframes forwardRepeat3 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat3 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat3 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat3 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-4 {
  font-size: 25px;
  font-weight: 300;
  bottom: 15%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat4 13s linear infinite 3s;
  -moz-animation: forwardRepeat4 13s linear infinite 3s;
  -o-animation: forwardRepeat4 13s linear infinite 3s;
  animation: forwardRepeat4 13s linear infinite 3s;
}
@-webkit-keyframes forwardRepeat4 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat4 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat4 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat4 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-5 {
  font-size: 25px;
  font-weight: 300;
  bottom: 20%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat5 10s linear infinite 2s;
  -moz-animation: forwardRepeat5 10s linear infinite 2s;
  -o-animation: forwardRepeat5 10s linear infinite 2s;
  animation: forwardRepeat5 10s linear infinite 2s;
}
@-webkit-keyframes forwardRepeat5 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat5 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat5 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat5 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-6 {
  font-size: 20px;
  font-weight: 300;
  top: 48%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat6 13s linear infinite;
  -moz-animation: forwardRepeat6 13s linear infinite;
  -o-animation: forwardRepeat6 13s linear infinite;
  animation: forwardRepeat6 13s linear infinite;
}
@-webkit-keyframes forwardRepeat6 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat6 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat6 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}
@keyframes forwardRepeat6 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    right: 50%;
  }
}

.hello-word-7 {
  font-size: 22px;
  font-weight: 300;
  top: 10%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat7 15s linear infinite 0.5s;
  -moz-animation: forwardRepeat7 15s linear infinite 0.5s;
  -o-animation: forwardRepeat7 15s linear infinite 0.5s;
  animation: forwardRepeat7 15s linear infinite 0.5s;
}
@-webkit-keyframes forwardRepeat7 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    right: 50%;
  }
}
@-moz-keyframes forwardRepeat7 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    right: 50%;
  }
}
@-o-keyframes forwardRepeat7 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    right: 50%;
  }
}
@keyframes forwardRepeat7 {
  0% {
    opacity: 0;
    right: -50%;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    right: 50%;
  }
}

.hello-word-8 {
  font-size: 20px;
  font-weight: 300;
  top: 20%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat7 15s linear infinite 2s;
  -moz-animation: forwardRepeat7 15s linear infinite 2s;
  -o-animation: forwardRepeat7 15s linear infinite 2s;
  animation: forwardRepeat7 15s linear infinite 2s;
}

.hello-word-9 {
  font-size: 20px;
  font-weight: 300;
  top: 70%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat7 18s linear infinite 5s;
  -moz-animation: forwardRepeat7 18s linear infinite 5s;
  -o-animation: forwardRepeat7 18s linear infinite 5s;
  animation: forwardRepeat7 18s linear infinite 5s;
}

.hello-word-10 {
  font-size: 20px;
  font-weight: 300;
  top: 10%;
  right: -50%;
  width: 100%;
  opacity: 0;
  -webkit-animation: forwardRepeat7 18s linear infinite 8s;
  -moz-animation: forwardRepeat7 18s linear infinite 8s;
  -o-animation: forwardRepeat7 18s linear infinite 8s;
  animation: forwardRepeat7 18s linear infinite 8s;
}

.hello-content-wrapper {
  position: relative;
  text-align: center;
}
.hello-content-wrapper h1 {
  margin-bottom: 15px;
}
.hello-content-wrapper p {
  color: #ffffff;
}

.mouse {
  background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  position: relative;
  width: 52px;
  height: 88px;
  border-radius: 100px;
  background-size: 100% 200%;
  animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.mouse:before, .mouse:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.mouse:before {
  width: 46px;
  height: 82px;
  background-color: #222a30;
  border-radius: 100px;
}
.mouse:after {
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation: trackBallSlide 5s linear infinite;
}

@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #4e5559;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #4e5559;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #4e5559;
  }
  90%, 100% {
    background-color: #ffffff;
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}
@keyframes nudgeMouse {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(8px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(8px);
  }
  90% {
    transform: translateY(0);
  }
}
@keyframes nudgeText {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(2px);
  }
  30% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(2px);
  }
  90% {
    transform: translateY(0);
  }
}
@keyframes colorText {
  21% {
    color: #4e5559;
  }
  30% {
    color: #ffffff;
  }
  51% {
    color: #4e5559;
  }
  60% {
    color: #ffffff;
  }
  81% {
    color: #4e5559;
  }
  90% {
    color: #ffffff;
  }
}
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
  margin-left: -14px;
}

.icon-scroll {
  width: 28px;
  height: 48px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
  bottom: 120px;
  position: absolute;
}

.icon-scroll:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  margin-left: -3px;
  top: 3px;
  border-radius: 4px;
  -webkit-animation: icon-scroll 2s infinite;
  -moz-animation: icon-scroll 2s infinite;
  -o-animation: icon-scroll 2s infinite;
  animation: icon-scroll 2s infinite;
}

@keyframes icon-scroll {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
/* ==========================================================================
	Mobile styles
============================================================================= */
/* ==========================================================================
	Small devices
============================================================================= */
@media (min-width: 768px) {
  section.mission-wrapper {
    padding: 130px 0px 100px 0px;
  }
  section.mission-wrapper .mission-paper-wrapper {
    background-image: url("../images/bg-paper.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    width: calc(100% - 30px);
    margin: auto;
    height: 440px;
    background-size: contain;
    background-position: center;
    padding: 60px 20px;
  }
  section.mission-wrapper .mission-paper-wrapper h1 {
    margin-bottom: 35px;
  }
  section.mission-wrapper .mission-content-wrapper {
    position: absolute;
    width: 39%;
    min-width: 590px;
    max-width: 660px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}
/* ==========================================================================
	Medium devices
============================================================================= */
@media (min-width: 992px) {
  h1 {
    font-size: 40px;
  }

  p {
    font-size: 20px;
  }

  .triphana-logo {
    height: 44px;
  }

  .hero-small-cloud {
    width: 72px;
    height: 37px;
  }

  .hero-flight {
    width: 185px;
    height: 62px;
    top: 120px;
  }

  .hero-diving-left {
    left: 58px;
    top: 260px;
    width: 178px;
    height: 212px;
  }

  .hero-diving-right {
    width: 133px;
    height: 147px;
    top: 480px;
    right: 83px;
  }

  .btn-lang-scm {
    width: 54px;
    height: 54px;
  }

  .btn-cfa-wrapper {
    font-size: 24px;
    width: auto;
    padding: 8px 25px;
    margin-bottom: auto;
  }
  .btn-cfa-wrapper span.icon-flag {
    width: 26px;
    height: 35px;
    margin-right: 20px;
  }

  section.hero-wrapper {
    height: 100vh;
  }
  section .hero-content-wrapper h1 {
    margin-bottom: 50px;
  }
  section.hello-wrapper {
    background-size: contain;
  }
  section.mission-wrapper .mission-paper-wrapper {
    height: 500px;
  }
  section.trip-details-wrapper .details-wrapper img {
    width: 23%;
    margin-right: 15px;
    float: left;
  }
  section.point-section {
    padding: 120px 0px;
  }
  section.point-section.point-section-2 {
    padding: 120px 0px 180px 0px;
  }
  section.point-section.point-section-3 {
    padding: 0px 0px 120px 0px;
  }
  section.point-section.point-section-4 {
    padding: 0px 0px 120px 0px;
  }
  section.point-section .graphic-elem.left-green-leaf {
    width: 487px;
    height: 599px;
    top: 50px;
    left: -320px;
  }
  section.point-section .graphic-elem.left-yellow-leaf {
    width: 249px;
    height: 566px;
    top: 90px;
    left: -220px;
  }
  section.point-section .graphic-elem.right-green-leaf {
    width: 311px;
    height: 466px;
    top: 290px;
    right: -60px;
  }
  section.point-section .graphic-elem.left-book {
    position: absolute;
    width: 520px;
    height: 420px;
    top: -10px;
    left: -130px;
    background-position: left;
  }
  section.point-section .graphic-elem.right-pencil {
    width: 740px;
    height: 444px;
    bottom: auto;
    top: 70px;
    right: -260px;
  }
  section.point-section .point-image.point-image-1 {
    width: 100%;
    height: 230px;
    margin-bottom: 50px;
  }
  section.point-section .point-image.point-image-3 {
    width: 100%;
    height: 612px;
    margin-bottom: 50px;
  }
  section.point-section .point-image.point-image-4 {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
  }
  section.call-for-action .cfa-bg {
    border-radius: 48px;
    padding: 80px 0px 0px 0px;
  }
  section.call-for-action a.btn-cfa-wrapper {
    display: block;
    width: max-content;
    margin: auto;
  }
  section.call-for-action .cfa-partner-wrapper {
    border-radius: 0px 0px 48px 48px;
    margin-top: 70px;
  }

  .lang-scm-wrapper .scroll-down {
    font-size: 20px;
  }

  .hero-mountain {
    width: 40%;
    height: 13%;
  }

  .hello-word-1 {
    font-size: 90px;
  }

  .hello-word-2 {
    font-size: 43px;
  }

  .hello-word-3 {
    font-size: 33px;
  }

  .hello-word-4 {
    font-size: 30px;
  }

  .hello-word-5 {
    font-size: 50px;
  }

  .hello-word-6 {
    font-size: 30px;
    top: 40%;
  }

  .hello-word-8, .hello-word-9, .hello-word-10 {
    font-size: 30px;
  }

  .text-underline::after {
    height: 8px;
  }
}
/* ==========================================================================
	Large devices
============================================================================= */
