/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* By Authot Post */
.bypostauthor {
  display: inline-block;
}

/* Screen Reader Text */
.screen-reader-text {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}

.footer-item .csgve-useful-links li a:before {
    content: "\f101";
    color: #fff;
    font-family: "FontAwesome";
    font-size: 14px;
    list-style-position:inside;
    margin-right:10px;
}


.gallery-list {
    clear: both;
    display: table;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

    .gallery-list li {
        float: left;
        margin-bottom: 6px;
        margin-right: 6px;
        height: 100px;
        width: 100px;
        overflow: hidden;
        text-align: center;
        position: relative;
        padding: inherit;
    }

        .gallery-list li:last-child {
            margin-right: 0;
        }

        .gallery-list li a {
            position: relative;
            left: 100%;
            margin-left: -200%;
        }

            .gallery-list li a:after {
                text-shadow: none;
                -webkit-font-smoothing: antialiased;
                font-family: 'fontawesome';
                speak: none;
                font-weight: normal;
                font-variant: normal;
                line-height: 1;
                text-transform: none;
                -moz-transition: 0.6s;
                -o-transition: 0.6s;
                -webkit-transition: 0.6s;
                transition: 0.6s;
                filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
                opacity: 0;
                -moz-border-radius: 50%;
                -webkit-border-radius: 50%;
                border-radius: 50%;
                color: #fff;
                content: "\f06e";
                display: inline-block;
                font-size: 16px;
                position: absolute;
                width: 30px;
                height: 30px;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                background-color: #252525;
                padding-top: 6px;
                margin-top: -6px;
            }

            .gallery-list li a:hover:after {
                filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
                opacity: 1;
            }

            .gallery-list li a:hover img {
                -moz-transform: scale(1.08, 1.08);
                -ms-transform: scale(1.08, 1.08);
                -webkit-transform: scale(1.08, 1.08);
                transform: scale(1.08, 1.08);
            }

            .gallery-list li a img {
                -moz-transition: 0.3s;
                -o-transition: 0.3s;
                -webkit-transition: 0.3s;
                transition: 0.3s;
                height: 100%;
                width: auto;
            }

