.section__container {
    width: 100vw;
    height: 80dvh;
    padding-top: 10dvh;
    background: var(--main-color-1);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section {
    height: 60dvh;
    text-align: justify;
    margin-left: 5vw;
    margin-right: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section__1 {
    width: 30vw;
    justify-content: center;
}

.section__1 h2 {
    font-size: 10dvh;
    line-height: 10dvh;
    margin: 10px 0px;
    text-align: left;
}

.section__1 p {
    font-size: 2.5dvh;
    line-height: 2.5dvh;
    margin: 10px 0px;
    color: var(--main-color-2);
}

.section__focus {
    font-size: 4dvh;
    font-weight: 600;
}

.section__connect {
    width: 60vw;
    height: 90dvh;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color-2);
    color: var(--accent-color-1);
}

.section__2 {
    width: 25vw;
}

.section__2 h2 {
    font-size: 6dvh;
    line-height: 6dvh;
    text-align: left;
    margin: 10px 0px;
    border-bottom: 2px solid var(--accent-color-1);
}

.section__2 p {
    font-size: 2.5dvh;
    line-height: 2.5dvh;
    margin: 10px 0px;
    color: var(--text-color-2);
}

.section__3 {
    width: 30vw;
}

.section__3 h2 {
    font-size: 6dvh;
    line-height: 6dvh;
    text-align: left;
    margin: 10px 0px;
    border-bottom: 2px solid var(--accent-color-1);
}

.section__3 p {
    font-size: 2.5dvh;
    line-height: 2.5dvh;
    margin: 10px 0px;
    color: var(--text-color-2);
}

@media (max-width: 1150px) {
    .section__2 h2 {
        font-size: 5dvh;
        line-height: 5dvh;
    }

    .section__2 p {
        font-size: 2dvh;
        line-height: 2dvh;
    }

    .section__3 h2 {
        font-size: 5dvh;
        line-height: 5dvh;
    }

    .section__3 p {
        font-size: 2dvh;
        line-height: 2dvh;
    }
}

@media (max-width: 1024px) {
    .page {
        width: 100vw;
        height: 80%;
        padding-left: 15vw;
        position: absolute;
        top: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .first__page {
        z-index: 3;
    }
    
    .second__page {
        z-index: 2;
        opacity: 0;
    }

    .third__page {
        z-index: 1;
        opacity: 0;
    }

    .page__title__container {
        position: absolute;
        top: 10%;
        left: 0;
        width: 15vw;
        height: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page__title {
        margin: auto;
        width: 100%;
        height: 70%;
        border-right: 2px solid black;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page__title .page__title__text {
        letter-spacing: 2dvh;
        font-size: 3dvh;
        font-weight: 600;
        text-transform: uppercase;
        transform: rotateZ(-90deg);
        color: var(--main-color-2);
    }

    .page__content {
        width: 85vw;
        height: 70%;
        margin: 0dvh 5vw;
        padding: 2vw;
        background-color: var(--main-color-2);
        color: var(--accent-color-1);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page__content .content__title {
        margin: 0px 7px;
        font-size: 6dvh;
        line-height: 6dvh;
        border-bottom: 2px solid var(--accent-color-1);
    }

    .page__content p {
        font-size: 3dvh;
        line-height: 3dvh;
        text-align: justify;
        margin: 7px;
        color: var(--text-color-2);
    }

    .indicator {
        width: 25px;
        opacity: 0.75;
        position: absolute;
    }

    .indicator__up {
        top: 7%;
        transform: rotateZ(180deg);
    }

    .indicator__down {
        bottom: 5%;
    }

    .footer {
        position: fixed;
        bottom: 0;
    }

    .anim__in {
        animation: anim__in 0.35s linear forwards;
    }

    .anim__out {
        animation: anim__out 0.35s linear forwards;
    }

    @keyframes anim__in {
        0% {
            opacity: 0;
            z-index: -1;
        }

        100% {
            opacity: 1;
            z-index: 10;
        }
    }

    @keyframes anim__out {
        0% {
            opacity: 1;
            z-index: 10;
        }

        100% {
            opacity: 0;
            z-index: -1;
        }
    }
}

@media (max-width: 768px) {
    .page__title .page__title__text {
        letter-spacing: 2dvh;
        font-size: 2.5dvh;
        font-weight: 600;
    }

    .page__content .content__title {
        font-size: 5dvh;
        line-height: 5dvh;
    }

    .page__content p {
        font-size: 2.2dvh;
        line-height: 2.2dvh;
    }
}