.main_imgParallaxA_container,
.main_imgParallaxSmallA_container {
    /* The image used */
    background-image: url("/assets/img/bg1.jpg");
  
    /* Set a specific height */
    min-height: 80vh;
    width: 100vw;
    
    /* Text pos */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Create the parallax scrolling effect */
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow: 1px 1.2vh 1vh black;
}
.main_imgParallaxSmallA_container{
  /* Set a specific height */
  min-height: 40vh; 
}

.main_imgParallax_Title {
    width: auto;
    font-size: 3.4vh;
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 800;
    color: orange;
    border-bottom:0.4vh solid orange;
    padding: 0vh 0.5vh 0.2vh 0.5vh;
}
.main_imgParallax_Desc {
    width: auto;
    font-size: 2.2vh;
    font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 500;
    color: rgb(255, 220, 180);
    padding: 1vh 0;
    text-align: center;
}
col_y {
    color: yellow; 
}
col_w {
    color: whitesmoke; 
}

@media screen and (orientation: landscape) { /* 19/9 DeskTop/Mobile */ 

    @media screen and (min-device-width: 1000px) and (orientation: landscape) { /* 19/9 DeskTop*/
  
    }
    @media screen and (max-device-width: 1000px) and (orientation: landscape) { /* 19/9 mobile*/
        .main_imgParallax_Title {
            font-size: 3.4vw;
        }
        .main_imgParallax_Desc {
            font-size: 2.0vw;
        }
    }
}