#banner{background-image: url('/image/beautiful-young.jpg'); background-size: 100%;}


#cg-section{
    .cg-items{
        display: flex;
        flex-wrap: wrap;
        margin-left: -7px;
        margin-right: -7px;

        .cg-item{
            padding-left: 7px;
            padding-right: 7px;
            margin-bottom: 10px;

            .cg-box{
                text-align: center;
                box-shadow: 0 0 2px 0px #333;
            
                .cg-imgd{
                    display: flex;
                    height: 175px;

                    a {
                        margin: auto;

                        img {
                            max-height: 175px;
                            display: block;
                        }
                    }
                }

                .cg-title {
                    font-weight: 400;
                    background: #fff;
                    text-align: center;

                    a{
                        position: relative;
                        display: block;
                    }
                }
            }
        }
    }

    @media(min-width: 768px){

        .cg-items{    
            .cg-item{
                .cg-box{
                    .cg-title {
                        padding: 5px 15px 15px 15px;
                    }
                }


            }
        }
    }




    @media(max-width: 768px){

        margin-top: -40px;

        .cg-items{    
            .cg-item{
                .cg-box{

                    .cg-imgd{
                       display: none;
                    }

                    .cg-title {
                        padding: 15px 15px;
                        text-align: left;

                        a:after {
                            content: '';
                            display: inline-block;
                            height: 8px;
                            width: 8px;
                            border-right: 2px solid #707070;
                            border-bottom: 2px solid #707070;
                            transform: rotate(-45deg);
                            position: absolute;
                            top: 5px;
                            right: 0;
                        }
                    }
                }


            }
        }
    }


}

