body {
    cursor: none !important;
    background-color: #1f242d;
}

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

.slider_navi {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 999;
}

.slider_navi a {
    display: block;
    height: 40px; /* Adjust size if necessary */
    width: 40px;
    margin: 20px 0;
    text-indent: 0; /* No need to hide text anymore */
    box-shadow: none;
    border: none;
    background: none; /* No background, just icons */
    color: rgba(255, 255, 255, 0.7); /* Icon color */
    font-size: 24px; /* Adjust icon size */
    text-align: center;
}

.slider_navi a.active {
    color: #0b294d; /* Highlight active icon */
}

body {
    position: relative;
    font-size: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    min-height: 100vh;
}

.flex_container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -o-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start;
    height: 100vh;
    width: 100%;
    z-index: 1;
}

.flex_container.flex-active {
    z-index: 2;
}

.text-header {
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    font-weight: 700;
    line-height: 110px;
    margin-left: -8px;
}

.text-title {
    font-family: Arial, sans-serif;
    margin-left: -8px;
}

.text-normal {
    font-family: Arial, sans-serif;
    text-align: justify;
    text-justify: inter-word;
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 22px;
    margin-top: 25px;
}

.text_background {
    font-family: "Poppins", sans-serif;
    position: absolute;
    left: 72px;
    bottom: -60px;
    color: rgba(0, 0, 0, 0.05);
    font-size: 170px;
    font-weight: 700;
}

.flex_item {
    height: 100vh;
    color: #fff;
    transition: transform 0.1s linear;
}

.flex_item-left {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    align-items: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    width: 65%;
    transform-origin: left bottom;
    transition: transform 0.1s linear 0.4s;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.flex_item-right {
    width: 35%;
    transform-origin: right center;
    transition: transform 0.1s linear 0s;
    opacity: 0;
}

.flex-preStart .flex_item-left,
.flex-preStart .flex_item-right,
.flex-active .flex_item-left,
.flex-active .flex_item-right {
    opacity: 1;
}

/* Piplup */

.flex-blue1 .flex_item-left {
    background: #0166ff;
}

.flex-blue1 .flex_item-right {
    background: #478ffa;
}

.flex-blue2 .flex_item-left {
    background: #025de6;
}

.flex-blue2 .flex_item-right {
    background: #4081e2;
}

.flex-blue3 .flex_item-left {
    background: #0252c9;
}

.flex-blue3 .flex_item-right {
    background: #356bbd;
}

.flex-blue4 .flex_item-left {
    background: #0248b3;
}

.flex-blue4 .flex_item-right {
    background: #2f5fa7;
}

.flex-blue5 .flex_item-left {
    background: #013f9c;
}

.flex-blue5 .flex_item-right {
    background: #2c589b;
}

.flex-blue6 .flex_item-left {
    background: #013380;
}

.flex-blue6 .flex_item-right {
    background: #214375;
}

.flex_content {
    margin-left: 80px;
    width: 55%;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: transform 0.2s linear 0.2s, opacity 0.1s linear 0.2s;
}

.news-event_img {
    position: absolute;
    bottom: 120px;
    right: 5%;
    width: 50%;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.43s 0.6s, transform 0.4s 0.65s cubic-bezier(0, 0.88, 0.4, 0.93);
}

/* Animate-START point */

.flex_container.animate-start .flex_content {
    transform: translate3d(0, -200%, 0);
    opacity: 0;
}

.flex_container.animate-start .news-event_img {
    transform: translate3d(-200px, 0, 0);
    opacity: 0;
}

/* Animate-END point */

.flex_container.animate-end .flex_item-left {
    transform: scaleY(0);
}

.flex_container.animate-end .flex_item-right {
    transform: scaleX(0);
}

.flex_container.animate-end .flex_content {
    transform: translate3d(0, 200%, 0);
    opacity: 0;
}

.flex_container.animate-end .news-event_img {
    transform: translate3d(200px, 0, 0);
    opacity: 0;
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1366px) {
    .text-header {
        margin-bottom: 10px;
        font-family: "Poppins", sans-serif;
        font-size: 2.3em;
        font-weight: 700;
        line-height: 110px;
        margin-left: -48px;
    }

    .text-title {
        font-family: Arial, sans-serif;
        font-size: 2em;
        margin-left: -48px;
    }

    .text-normal {
        font-family: Arial, sans-serif;
        text-align: justify;
        text-justify: inter-word;
        font-size: 1.5em;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2; /* Adjust space between lines */
        letter-spacing: 0.05em; /* Adjust space between letters */
        margin-top: 25px;
        margin-left: -48px;
    }

    .news-event_img {
        width: 10%;
        right: 1px;

    }
}

/* MOBILE */
@media (max-width: 767px) {
    .text-header {
        margin-bottom: 10px;
        font-family: "Poppins", sans-serif;
        font-size: 1.3em;
        font-weight: 700;
        line-height: 1.2; /* Adjust space between lines */
        letter-spacing: 0.05em; /* Adjust space between letters */
        margin-left: -48px;
    }

    .text-title {
        font-family: Arial, sans-serif;
        font-size: 1.2em;
        margin-left: -48px;
        line-height: 1.2; /* Adjust space between lines */
        letter-spacing: 0.05em; /* Adjust space between letters */
    }

    .text-normal {
        font-family: Arial, sans-serif;
        text-align: justify;
        text-justify: inter-word;
        font-size: 0.9em;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2; /* Adjust space between lines */
        letter-spacing: 0.05em; /* Adjust space between letters */
        margin-top: 25px;
        margin-left: -48px;
    }

    .news-event_img {
        display: none;
    }
}
