#g-header {
    color: $header-text-color;
    background: $header-background;

    // Simplecontent on Left side
    .g-simplecontent {
        h2.g-title {
            text-align: left;
            text-transform: none;
            @include responsive-font($responsive-font-size + 1.4, $core-font-size + 1, false, false);
            line-height: $core-line-height*.9;
            margin-bottom: 2rem;
            padding: 0;
            letter-spacing: 0;

            .dir-rtl & {
                text-align: right;

                @include breakpoint(mobile-only) {
                    text-align: center;
                }
            }

            @include breakpoint(mobile-only) {
                text-align: center;
            }
        }

        .g-simplecontent-item-readmore-container {
            @include breakpoint(mobile-only) {
                text-align: center;
            }

            a {
                background: transparent;
                color: $accent-color-1;
                padding-left: 0;
                padding-bottom: 0.2rem;
                position: relative;
                transition: .3s ease;
                font-size: $core-font-size + .3;
                z-index: 3;
                box-shadow: 0 3px 0 $accent-color-1;

                &:hover {
                    color: $accent-color-2;
                    box-shadow: 0 3px 0 $accent-color-2;
                }
            }
        }
    }

    // Infolist on the right side
    .g-infolist-particle {
        @include breakpoint(mobile-only) {
            text-align: center;
        }

        .g-infolist-item-icon {
            color: $accent-color-2;
            font-size: $core-font-size + 1.3;
            @include breakpoint(mobile-only) {
                text-align: center;
            }
        }

        .g-infolist-item-title {
            font-size: $core-font-size * .8;
            color: $accent-color-2;
            margin-top: $content-margin * 1.5;
            font-weight: $font-weight-medium;
            letter-spacing: 1px;
        }

        .g-infolist-item-desc {
            width: 90%;
            font-weight: $font-weight-medium;
            font-size: $core-font-size * 1.6;
            line-height: $core-line-height * .8;

            @include breakpoint(mobile-only) {
                width: 100%;
            }
        }
    }

}

@media print {
    #g-header {
        background: #fff !important;
        color: #000 !important;
    }
}
