.gcsg-content{font-size:14px; line-height:22px; color:#111;margin-bottom: 20px;}

.gcsg-content h1{display: block; margin:15px 0px; padding:0px 0px; color:#333; font-size:30px; line-height:34px;}
.gcsg-content h2{display: block; margin:15px 0px; padding:0px 0px; color:#333; font-size:24px; line-height:28px;}
.gcsg-content h3{display: block; margin:15px 0px; padding:0px 0px; color:#333; font-size:16px; line-height:20px;}
.gcsg-content i{font-style: italic;}
.gcsg-content strong, .iac-module > .content > b{font-weight: bold;}
.gcsg-content hr {display: block; margin:3px 0px; border: 0; height: 1px; background: #ccc;}
.gcsg-content ul{display: block;  margin:10px 0px 10px 0px; list-style-position: inside; padding:0px 0px 0px 15px; list-style-type:circle;}
.gcsg-content ul li{padding:2px 0px 2px 0px; line-height:22px;}
.gcsg-content ol{display: block;  margin:10px 0px 10px 0px; list-style-position: inside; padding:0px 0px 0px 15px; list-style-type:decimal;}
.gcsg-content ol li{padding:2px 0px 2px 0px; line-height:22px;}

.gcsg-galleries {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.gcsg-galleries .gcsg-gallery {
    flex: 1 1 auto;
    background-color: white;
    margin-right: 20px;
    margin-bottom: 20px;
    min-width: 300px;
    overflow: hidden;
    height: 100px;
}

.gcsg-galleries .gcsg-gallery .clear {
    clear: both;
}
.gcsg-galleries .gcsg-gallery img {
    float: left;
    margin-right: 10px;
}
.gcsg-galleries .gcsg-gallery a {
    padding: 10px;
    display: block;
    font-size: 20px;
}
.gcsg-galleries .gcsg-gallery p {
    padding: 0px 10px 5px 10px;
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #111;
}

.gcsg-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-between;
}
.gcsg-images img {
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.35);
    margin: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.gcsg-images img:hover {opacity: 0.7;}

/* The Modal (background) */
.gcsg-images .modal {
  display: block;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.gcsg-images .modal.hidden {
    display: none;
}

/* Modal Content (image) */
.gcsg-images .modal-content {
  margin: auto;
  display: block;
  width: 440px;
}

/* Caption of Modal Image */
.gcsg-images .caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.gcsg-images .modal-content, .gcsg-images .caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

/* The Close Button */
.gcsg-images .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.gcsg-images .close:hover,
.gcsg-images .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .gcsg-images .modal-content {
    width: 100%;
  }
}