@import "main.css";

/* big sliders */
.glb-slide2 {
    height: 100%;
    width: 110vw;
    background-color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.glb-slide3 {
    height: 100%;
    width: 210vw;
    background-color: var(--main-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* introduction slide */

.glb-mid-txt-add {
    width: 35%;
    margin-top: 15vh;
}

.glb-mid-body-add {
    width: 80%;
}

.glb-side-fig {
    width: 55%;
    height:auto;
}

/* main content slide */
.glb-full-img {
    height: 100%;
    width: auto
}

.glb-main-txt-wrap {
    width: 35vw;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 3vw;
    margin-left: 5vw;
    padding-top: 15vh;
}

.glb-acc {
    color: var(--accent-color);
}

.glb-main-head {
    font-weight: 500;
    width: 90%;
    font-size: 4em;
    padding-bottom: 5vh;
    line-height: 2ch;
}

.glb-main-txt {
    font-size: 1.2em;
    width: 90%;
    height: 20%;
    line-height: 2.5ch;
    text-align: justify;
    font-weight: 300;
}

.glb-image {
    height: 65%;
    margin: 1vw;
    width: auto;
}

.glb-image2 {
    height: 65%;
    margin: 1vw;
    width: auto;
}

@media (max-width: 600px) and (orientation: portrait) {
    .glb-slide2 {
        height: calc(1.1*var(--fix-mob-height));
        width: 100vw;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .glb-slide3 {
        height: calc(2.7*var(--fix-mob-height));
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
        overflow-x: hidden;
    }
    
    /* ---------------------------------------------- */
    
    .glb-mid-txt-add {
        width: 35%;
        margin-top: 5vh;
    }
    
    .glb-mid-body-add {
        width: 80%;
    }
    
    .glb-side-fig {
        width: 100%;
        height:auto;
    }
    
    .glb-full-img {
        height: auto;
        width: 100vw;
    }
    
    .glb-main-txt-wrap {
        width: 100vw;
        height: auto;
        margin-right: 0vw;
        margin-left: 0vw;
        padding-top: 3vh;
    }
    
    .glb-acc {
        color: var(--accent-color);
    }
    
    .glb-main-head {
        width: 90%;
        font-size: 3.5em;
    }
    
    .glb-main-txt {
        font-size: 1.1em;
        width: 90%;
        height: auto;
        margin-bottom: 5vh;
    }
    
    .glb-image {
        height: auto;
        margin: 0vw;
        width: 180vw;
        transform: translate(7vw);
    }

    .glb-image2 {
        height: auto;
        margin: 0vw;
        width: 160vw;
        transform: translate(3vw);
    }


}