#logo{
    width: 200px;
    margin: 0px auto;
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
}
.fg-container {
    /**
     * Flex display is the key point to make images grow.
     */
    display: flex;
    flex-wrap: wrap;
	max-width: 1600px;
	margin: 0px auto !important;
}
.fg-container::after {
    /**
     * Creates a blank element after the last image.
     */
    content: '';
    /**
     * Prevents the images in the last row to grow.
     * In case they become too large.
     */
    flex-grow: 99999;
    /**
     * Well... If the left space is less than (screenHeight / 4), make them grow!
     */
    min-width: calc(100vw / 4);
}
.fg-item {
    /**
     * So that the text inside can be positioned absolutely.
     */
	background: #ededf8 !important;
    position: relative;
	border-radius: 6px;
}

.fg-item:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(5, 17, 108, 0.2);
    box-shadow: 0 4px 8px 0 rgba(5, 17, 108, 0.2);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.fg-img {
    /**
     * Makes images undraggable.
     */
    user-select: none;
    /**
     * Lets widths of images fit their parents (<a>s)
     */
    width: 100%;
    /**
     * Eliminates paddings images below images.
     */
    /*display: block;*/
    /**
     * Equivalent to "display: block;"
     */
    vertical-align: middle;
    opacity: 0.8;
}
.fg-text {
	font-size: 16px;
	font-family: 'Open Sans';
    position: absolute;
    left: 1em;
    bottom: 1em;
    z-index: 2;
    color: #0b3676;
    background: #ffffff9e;
    padding: 5px 10px;
    border-radius: 5px;
}

#container > div.fg-item:first-child span.fg-text{
    opacity: 1 !important;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
}

#description{
    margin: 0px auto;
    width: 600px;
    text-align: center;
    font-size: 18px;
    padding-bottom: 16px;
    color: #0b3676;
    font-family: Open Sans;
}
