html, body, pre, code, kbd, samp, input, button, select, option, textarea {
    font-family: var(--font-theme-1);
    font-weight: var(--font-regular);
    font-style: normal;
}
p {
    line-height: 165%;
    margin: 0px 0 1vw 0;
}
p a {
    text-decoration: underline; 
}
p a:hover {}
strong {
    font-weight: var(--font-semibold);
}
a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: var(--color-black);
    transition: var(--transition-all);
}
button, a, input[type="button"], .btn {
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-theme-2);
    font-size: 100%;
    line-height: 120%;
    font-weight: var(--font-regular);
    color: var(--color-black);
}
/*Theme CSS*/
html, body {
    background-color: var(--color-theme-1);
    font-size: 1.3vw;
    color: var(--color-black);
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    touch-action: pan-y;
    overscroll-behavior-y: auto;
}
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    pointer-events: none;
    z-index: 100;
}
.raindrop {
    position: absolute;
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50% 50% 0 0;
    transform: rotate(0deg);
    animation: fall linear infinite;
    opacity: 0.7;
}
@keyframes fall {
    0% {
        transform: translateY(-100vh);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}
.bg-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.bg-sky img {
    width: 100%;
    height: auto;
    max-height: inherit;
}
.content-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}
.intro-wrapper {
    padding-top: 60px;
    height: 100vh;
}
.intro-caption {
    color: var(--color-white);
    width: 60%;
    text-align: center;
    margin: 0 auto;
    user-select: none;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}
.intro-caption .headline {
    color: #fff;
    font-size: 400%;
    font-weight: 200;
    margin: 6vw 0 0.5vw 0;
    line-height: 100%;
    letter-spacing: 0.5vw;
}
.intro-caption .tagline {
    font-size: 180%;
    font-weight: 600;
    opacity: 0.8;
    line-height: 120%;
}
.about-cloudburst {
    padding: 4vw 10% 0 10%;
    /*    color: #FFEBCD;*/
}
.about-cloudburst p {
    font-weight: 500;
}
.intro-wrapper .intro-caption:nth-child(1) {
    z-index: 1;
}
.intro-wrapper .intro-caption:nth-child(2) {
    z-index: 3;
}
.cloud {
    position: absolute;
}
.cloud img {
    width: 100%;
    height: auto;
    max-width: inherit;
}
.cloud.is-cloud-1 {
    width: 30vw;
    top: 14vw;
    left: -10vw;
    z-index: 2;
    animation: cloud-1 10s infinite;
}
.cloud.is-cloud-2 {
    width: 30vw;
    top: 14vw;
    right: -10vw;
    z-index: 2;
    animation: cloud-2 15s infinite;
}
.cloud.is-cloud-3 {
    width: 50vw;
    bottom: -2vw;
    left: -10vw;
    z-index: 2;
    animation: cloud-3 12s infinite;
}
.cloud.is-cloud-4 {
    width: 50vw;
    bottom: -2vw;
    right: -10vw;
    z-index: 2;
    animation: cloud-4 14s infinite;
}
@keyframes cloud-1 {
    0% {
        transform: translateX(8vw)
    }
    50% {
        transform: translateX(4vw)
    }
    100% {
        transform: translateX(8vw)
    }
}
@keyframes cloud-2 {
    0% {
        transform: translateX(-8vw)
    }
    50% {
        transform: translateX(-4vw)
    }
    100% {
        transform: translateX(-8vw)
    }
}
@keyframes cloud-3 {
    0% {
        transform: translateX(8vw)
    }
    50% {
        transform: translateX(4vw)
    }
    100% {
        transform: translateX(8vw)
    }
}
@keyframes cloud-4 {
    0% {
        transform: translateX(-8vw)
    }
    50% {
        transform: translateX(-4vw)
    }
    100% {
        transform: translateX(-8vw)
    }
}
.mountain-banner {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}
.cloud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 250.625em;
    background: url('../images/cloud-overlay.png') 0 100% repeat-x;
    -webkit-animation: cloudLoop 80s linear infinite;
    animation: cloudLoop 80s linear infinite;
    z-index: 5;
    pointer-events: none;
    height: 43.75em;
}
@-webkit-keyframes cloudLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes cloudLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}
.cloudburst-wrapper {
    padding: 10vw 0 0 0;
    z-index: 2;
}
.cloudburst-container {
    width: 50%;
    margin: 0 auto;
}
.cloudburst-container .cloud-5 {
    z-index: 1;
}
.cloudburst-container .cloud-5 img {
    width: 100%;
}
.cloudburst-container .rain-1 {
    width: 80%;
    margin: 0 auto;
    margin-top: -10vw;
}
.rain-1 img {
    width: 100%;
    height: auto;
    opacity: 0.4;
}
.riverflow-wrapper {
    z-index: 1;
    margin-top: -51vw;
}
.river img {
    width: 100%;
    height: auto;
}
.smoke {
    position: absolute;
    bottom: -8vw;
    left: 0;
    width: 100%;
    height: auto;
}
.smoke img {
    width: 100%;
    height: auto;
}
.river img {
    width: 100%;
    height: auto;
}
.is-river-0 {
    z-index: 0;
}
.is-river-1 {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.is-river-2 {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.is-river-3 {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.is-river-4 {
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.text-container p {
    font-size: 90%;
    line-height: 140%;
    font-weight: 500;
    color: var(--color-white);
}
.text-container p:last-child {
    margin: 0;
    padding: 0;
}
.cloud-5 .text-container {
    width: 72%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -0%, 0);
    text-align: left;
    background-color: rgb(0 0 0 / 45%);
    padding: 1vw;
    border-radius: 1vw;
    backdrop-filter: blur(12px);
    z-index: 2;
}
.text-container-list {
    width: 90%;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate3d(-50%, 0%, 0);
    z-index: 2;
}
.rain-1 .text-container {
    text-align: left;
    background-color: rgb(0 0 0 / 45%);
    padding: 1vw;
    border-radius: 1vw;
    backdrop-filter: blur(12px);
    z-index: 2;
    margin-bottom: 3vw;
}
.reverflow-container {
    position: absolute;
    top: 91vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 50%;
}
.reverflow-container .text-container {
    padding-bottom: 5vw;
}
.incidents-container .text-container p, .reverflow-container .text-container p {
    color: var(--color-black);
    line-height: 150%;
}
.incidents-container h2, .infograph-container h2 {
    font-size: 150%;
    font-weight: 500;
    margin: 0 0 6vw 0;
}
.incidents-container h2 {
    margin: 0 0 3vw 0;
}
.infograph-img {
    padding: 10vw 1vw 0 1vw;
}
.infograph-img img {
    width: 100%;
    position: relative;
    z-index: 4;
}
.infograph-img .circle-text {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    z-index: 2;
    background-color: #fff;
    border-radius: 100%;
    border: 1px dashed #91cbff;
}
.circle-text::before {
    position: absolute;
    width: 102%;
    height: 48%;
    bottom: -1%;
    left: -1%;
    background-color: #fff;
    content: '';
    z-index: 2;
}
.circle-text-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
}
.circle-text-holder .circle-text-box {
    position: absolute;
}
.circle-text-box p {
    font-size: 80%;
    margin: 0;
    padding: 0;
    line-height: 140%;
    color: #000;
    font-weight: 500;
}
.circle-text-holder .circle-text-box {
    position: absolute;
    width: 10vw;
    background-color: #fff;
    z-index: 10;
    padding: 0.5vw;
}
.circle-text-holder .circle-text-box:nth-child(1) {
    bottom: 0%;
    left: -5%;
}
.circle-text-holder .circle-text-box:nth-child(2) {
    bottom: 60%;
    left: 1%;
}
.circle-text-holder .circle-text-box:nth-child(3) {
    top: -9%;
    left: 50%;
    transform: translateX(-50%);
}
.circle-text-holder .circle-text-box:nth-child(4) {
    bottom: 60%;
    right: 1%;
}
.circle-text-holder .circle-text-box:nth-child(5) {
    bottom: 0%;
    right: -10%;
}
.footer-ani {
    background-color: #fff;
}
.footer-ani img {
    width: 100%;
}
.circle-text-box.is-last {
    position: absolute;
    bottom: 2%;
    right: 5%;
    width: 45%;
    text-align: right;
    z-index: 100;
}
.circle-text-box.is-last p {
    color: #fff;
}
.incidents-wrapper {
    background-color: #fff;
    padding: 10vw 0 5vw 0;
}
.incidents-container {
    width: 50%;
    margin: 0 auto;
}
.storylab-widget {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0px 0px 4vw 0;
}
.widget-container {
    aspect-ratio: 4 / 3;
    width: 100%;
    max-width: 1024px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.widget-container .widget-item {
    border-radius: 20px;
    overflow: hidden;
}
.widget-container .widget-item, .widget-container .widget-item figure, .widget-container .widget-item figure a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
}
.widget-container .widget-item figure a {
    display: block;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    color: #fff;
}
.widget-container .widget-item figure a > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    transition-duration: 4s;
    transform-origin: center;
}
/*
.widget-container .widget-item.slick-current.slick-active figure a > img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
}
*/
.widget-container .widget-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10% 3% 5% 3%;
    background: -webkit-linear-gradient(bottom, rgb(0 0 0 / 85%) 28%, rgb(0 0 0 / 0%) 100%);
    background: -o-linear-gradient(bottom, rgb(0 0 0 / 85%) 28%, rgb(0 0 0 / 0%) 100%);
    background: linear-gradient(to top, rgb(0 0 0 / 85%) 28%, rgb(0 0 0 / 0%) 100%);
}
.caption-content {
    z-index: 2;
}
.widget-container .widget-item figcaption h2 {
    font-size: 130%;
    line-height: 120%;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
    color: #fff;
}
.widget-container .widget-item figcaption p {
    font-size: 90%;
    font-weight: 500;
    line-height: 150%;
    padding: 0;
    margin: 0;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
    display: block;
    color: #fff;
}
.widget-container .widget-item figcaption .bottom {
    display: block;
    padding-top: 5px;
}
.widget-container .widget-item figcaption .bottom span {
    font-size: 90%;
    line-height: 100%;
    font-weight: 600;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 2px;
    opacity: 0.8;
}
.logo-storylab {
    position: absolute;
    width: 15%;
    height: auto;
    top: 5%;
    right: 5%;
    z-index: 2;
    opacity: 1;
}
.logo-storylab img {
    width: 100%;
    height: auto;
    max-width: inherit;
}
.river-bg-space {
    background-color: #fff;
    position: absolute;
    bottom: -1%;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}