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

body {
    background: #0088aa;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
}

.buttonicon {
    display: block;
}

.skw-pages {
    position: relative;
    height: 100dvh;
    overflow: hidden;
}

.skw-page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.skw-page__half--left {
    position: absolute;
    transition: transform 1s;
    height: 100dvh;
    width: 60dvw;
    transform: translate3d(0, 100%, 0);
}
.skw-page__half--right {
    position: absolute;
    transition: transform 1s;
    height: 100dvh;
    width: 40dvw;
    left: 60%;
    transform: translate3d(0, -100%, 0);
}
.skw-page.active .skw-page__half {
    transform: translate3d(0, 0, 0);
}
.skw-page__skewed {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.skw-page__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    transition: transform 1s, opacity 1s;
    background-size: cover;
}
.skw-page__half--left .skw-page__content {
    transform-origin: 100% 0;
}
.skw-page__half--right .skw-page__content {
    transform-origin: 0 100%;
}
.skw-page.inactive .skw-page__content {
    opacity: 0.5;
}
.skw-page__heading {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
}

.skw-page__description {
    margin-block: 20px;
    width: 100%;
    max-width: 600px;
    overflow-y: scroll;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


.skw-page__description p {
    font-size: 22px;
    text-align: start;
}

h3 {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    background-color: white;
    color: black;
    font-size: 20px;
    padding: 20px;
}

.critical {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-self: flex-start;
    gap: 10px;
}

.critical a {
    max-width: 600px;
    width: 100%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: ease-in-out 0.3s;
}

.skw-page__description i {
    margin-top: 20px;
    outline: white solid 1px;
    padding: 20px;
    margin: 5px;
    border-radius: 20px 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: #bbdbe3;
}

.skw-page__link {
    width: 100%;
    font-size: 20px;
    text-decoration: none;
    color: white;
    transition: ease-in-out 0.3s;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 20px;
    text-transform: uppercase;
}

.hrnew {
    border: 1px solid #61b5cb;
    width: 50%;
    margin: 0 auto;
}
.skw-page-1 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-1);

    background-size: cover;
    background-repeat: no-repeat;
}
.skw-page-1 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-2 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-2);

    background-size: cover;

    background-repeat: no-repeat;
}
.skw-page-2 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-3 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-3);
    background-size: cover;

    background-repeat: no-repeat;
}
.skw-page-3 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-4 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-4 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-4);
    background-size: cover;
    background-repeat: no-repeat;
}
.skw-page-5 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-5 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-5);
    background-size: cover;
    background-repeat: no-repeat;
}
.skw-page-6 .skw-page__half--right .skw-page__content {
    background: #0088aa;
}
.skw-page-6 .skw-page__half--left .skw-page__content {
    background-image: var(--IMAGE-6);
    background-size: cover;
    background-repeat: no-repeat;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}

.buttons button {
    width: 100%;
    max-width: 300px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    padding: 15px;
    transition: ease-in-out 0.3s;
}

.buttons button.active {
    background-color: #6ac3da;
    color: black;
}

.buttons button:hover,
.skw-page__link:hover {
    border-radius: 10px;
    background-color: #6ac3da;
    color: black;
}

.icon-tabler-arrow-back {
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background-color: white;
    transition: ease-in-out 0.3s;
}

.icon-tabler-arrow-back:hover {
    background-color: #6ac3da;
}
.interactive-button-gif {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    width: 80px;
}

.button-container {
    display: inline-block;
}

.button-container:hover .interactive-button-gif,
.button-container button.active + .interactive-button-gif {
    display: block;
}

.arrows {
    display: flex;
    width: 100%;
    padding: 20px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
}

.arrows .icon {
    width: 40px;
    cursor: pointer;
    transition: ease-in-out 0.1s;
}

.arrows .icon:hover {
    transform: scale(1.1);
}

@media (max-width: 2000px) {
    .skw-page__half--right .skw-page__content {
        padding: 20px 50px;
    }
    .skw-page__heading {
        margin-bottom: 15px;
        text-transform: uppercase;
        font-size: 18px;
        text-align: center;
    }


    .skw-page__description p {
        font-size: 20px;
        text-align: start;
    }

    .buttons button {
        font-size: 18px;
    }

    .critical a {
        font-size: 19px;
    }

    .interactive-button-gif {
        width: 70px;
    }
}

@media (max-width: 1000px) {
    .buttonicon {
        display: none;
    }
    .skw-page__half--left:nth-child(even) {
        display: none;
    }

    .skw-page__half--right {
        left: 0;
        width: 100dvw;
    }

    .skw-page__half--left {
        display: none;
    }

    .skw-page__skewed {
        width: 100dvw;
    }

    .skw-page__half--right .skw-page__content {
        width: 100dvw;
    }

    .skw-page-1 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-1);

        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .skw-page-1 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        flex: 1;
        width: 100%;
        height: 100dvh;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .skw-page-2 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-2);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height: 100%;
    }

    .skw-page-2 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .skw-page-3 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-3);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .skw-page-3 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .skw-page-4 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-4);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .skw-page-4 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .skw-page-5 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-5);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .skw-page-5 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .skw-page-6 .skw-page__half--right .skw-page__content {
        background-image: var(--IMAGE-6);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .skw-page-6 .skw-page__half--right .skw-page__content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 136, 170, 0.706);
        pointer-events: none;
    }

    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .skw-page__description{
        max-height: calc(100vh - 300px);
    }
}

@media (max-width: 550px) {
    .skw-page__half--right .skw-page__content {
        padding: 30px 20px;
    }
    .buttons button {
        font-size: 15px;
    }
    .interactive-button-gif {
        width: 70px;
    }
    .skw-page__description p {
        font-size: 16px;
    }

    h3 {
        font-size: 16px;
    }
    .critical a {
        max-width: 100%;
        font-size: 15px;
    }
    .skw-page__description i {
        font-size: 16px;
    }
}
