.ContentContainer > .ContentFrame {
    display: block;
    margin: 0px;
    padding: 0px;
    padding-bottom: 15px;
    width: 100%;
    height: auto;
    background-image: linear-gradient(to bottom left, #fff1e6, #ffffff, #fff9ed);
}                
    .ContentContainer > .ContentFrame > .GroupHeaderFrame {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0px;
        padding: 0px;
        width: 100%;
        height: auto;
        font-size: 30px;
        font-weight: 400;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);  
        transition: 0.5s;
/*                            background-color: aquamarine;*/
    }
    .ContentContainer > .ContentFrame > .GroupIndexFrame {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin-bottom: 5%;
        padding: 0px;
        width: 100%;
        height: auto;
        border: 0px solid red;
        box-sizing: border-box;
/*                            background-color: coral;*/
    }
        .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame {
            display: flex;
            justify-content: center;
            position: relative;
            width: 50%;
            height: auto;
            padding: 0px;
            margin: 0px;
            margin-bottom: 30px;  
            transition: 0.5s;
            border: 0px solid green;
            box-sizing: border-box;
        }
            .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a {
                margin: 0px;
                padding: 0px;
                width: 100%;
                margin: 0% 5%;
                height: auto;
                transition: 0.5s;
            }                                     
                .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .AlignImageFrame {
                    width: 100%;
                    height: auto;
                    margin-bottom: 8%;
                    overflow: hidden;
                }
                    .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .AlignImageFrame > img {
                        width: 100%;
                        height: auto;
                        border: 1px solid rgba(0,0,0,0.1);
                        box-sizing: border-box;
                        transition: 0.5s;
                    }
            .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer {
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                right: 0%;
                top: 83%;                                
                width: 100%;
                height: 15%;
                margin: 0px 0px;                                
                border: 0px solid black;
                box-sizing: border-box;
                transition: 0.5s;   
            }
                .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer > .GroupTextFrame {
                    display: inline-block;
                    width: 82%;
                    height: 100%;
                    background-color: #fffaf0;
                    border: 1px solid rgba(0,0,0,0.1); 
                    border-radius: 10px;
                    box-sizing: border-box;
                    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.1); 
                    transition: 0.5s;
                }               
                    .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer > .GroupTextFrame > .GroupTextBox {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 100%;
                        height: 100%;
                    }
                        .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer > .GroupTextFrame > .GroupTextBox > .GroupText {
                            display: inline-block;
                            width: auto;
                            height: auto;
                            font-size: 20px;
                            transition: 0.5s;
                        }
                .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a:hover img {
                    border: 1px solid rgba(0,0,0,0.3);
                }                                    
                .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a:hover .GroupTextFrame {
                    background-color: #fff6e4;   
                    border: 1px solid rgba(0,0,0,0.3);  
                    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.2);                                                                                                        
                }                                            
                .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a:hover .GroupText {
/*                                        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);  */
                }
        .ContentContainer > .ContentFrame > .GroupIndexFrame > .ChangeVisibility {
            display: flex;
        }

@media screen and (max-width: 1000px) {

    .ContentContainer > .ContentFrame > .GroupHeaderFrame {
        font-size: 34px;
    }
                    .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer > .GroupTextFrame > .GroupTextBox > .GroupText {
                        font-size: 2.3vw;
                    }
}

@media screen and (max-width: 800px) {

    .ContentContainer > .ContentFrame > .GroupHeaderFrame {
        font-size: 32px;
    }

}

@media screen and (max-width: 600px) {

    .ContentContainer > .ContentFrame > .GroupHeaderFrame {
        font-size: 30px;
    }

}

@media screen and (max-width: 500px) {

        .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame {
            width: 100%;
        }
                    .ContentContainer > .ContentFrame > .GroupIndexFrame > .GroupFrame > a > .GroupAlignContainer > .GroupTextFrame > .GroupTextBox > .GroupText {
                        font-size: 4.5vw;
                    }

}

@media screen and (max-width: 400px) {

    .ContentContainer > .ContentFrame > .GroupHeaderFrame {
        font-size: 28px;
    }

}