.containerWide {
    display: flex;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
  }

.row {
    display: flex;
    justify-content: space-between;
  }

.pageTitle {
    font-family: 'Pacifico', cursive;
    color: rgb(19, 41, 65);
    font-size: 2.8em;
    font-weight: 200;
}

.pageContent {
    max-width: 1050px;
    margin: 0px auto;
    padding: 30px 60px 60px 60px;
    display: block;
    background-color: white;
    margin-top: 10px;
}

.pageText {
    padding: 0px 5px 15px 0px;
    line-height: 160%;
    font-size: 1.2em;
    text-align: left;
}

.boxDiv {
  width: 48%;
  float: left;
  border: 1px solid rgba(49, 131, 203, 0.2);
}

.subhead1 {
    font-size: 1.5em;
    padding: 10px;
    display: block;
    font-weight: bold;
    color: rgb(49, 131, 203);
    background-color: rgba(49, 131, 203, 0.2);
    clear: both;
    line-height: 120%;
    text-align: center;
}

.Column {
  width: 50%;
  text-align: center;
  float: left;
  padding: 10px;
}

.listText {
    line-height: 175%;
    font-size: 1.05em;
    padding-inline-start: 0px;
    list-style: none;
}

.thumbText {
    position: absolute;
    top: 170px;
    z-index: 1;
    font-size: .9em;
    background-color: #ffffff;
    padding: 5px;
    text-align: center;
    width: 100%;
    color: rgb(23, 105, 177);
}

/* The grid: Four equal columns that floats next to each other */
.imgColumn {
    position: relative;
    float: left;
    width: 25%;
    padding: 10px;
  }
  
  /* Style the images inside the grid */
.imgColumn img {
    opacity: 0.8; 
    cursor: pointer; 
    width: 100%;
  }
  
.imgColumn img:hover {
    opacity: 1;
  }
  
.imgRow {
    height: 195px;
    overflow: hidden;
}

/* Clear floats after the columns */
.imgRow:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
.expandedContainer {
    display: none; /* Hidden by default */
	  position: fixed; /* Stay in place */
	  z-index: 4; /* Sit on top */
	  left: 0;
    top: 0;
	  width: 100%; /* Full width */
    height: 100%; /* Full height */
	  overflow: hidden; /* Enable scroll if needed */
	  background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    text-align: center;
  }

#expandedImg {
    position: relative;
    background-color: #fefefe;
	  margin: 10% auto 0 auto; /* 15% from the top and centered */
	  padding: 20px;
	  width: 650px; /* Could be more or less, depending on screen size */
  }
  
  /* Expanding image text */
#imgtext {
    position: relative;
    color: rgb(23, 105, 177);
    top: 0;
    width: 650px;
    background-color: #fefefe;
    font-size: 20px;
    margin: -8px auto 10% auto;
    padding-bottom: 15px;
  }
  
  /* Closable button inside the image */
.closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
  }

.leftColumn {
    width: 60%;
    float: left;
    margin-right: 20px;
    text-align: left;
}

.rightColumn {
    width: 35%;
    float: right;
    margin-left: 20px;
    text-align: left;
}

@media only screen and (max-width: 890px) {

.containerWide {
        margin-bottom: 20px;
  }
  
.pageContent {
      padding: 20px;
  }

.row {
    flex-direction: column;
}

.leftColumn {
    width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.rightColumn {
    width: 100%;
    float: none;
    margin-left: 0px;
    text-align: center;
}

#expandedImg {
  margin: 5% auto 0 auto; /* 15% from the top and centered */
  padding: 10px;
  width: 80%; /* Could be more or less, depending on screen size */
}

#imgtext {
  width: 80%;
  padding-bottom: 5px;
}

.subhead1 {
  text-align: center;
}

.boxDiv {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  margin: 10px 0px 10px 0px;
}

.listText {
  line-height: 180%;
  font-size: 1.2em;
}

.Column {
  width: 100%;
  text-align: center;
  float: none;
  clear: both;
  padding: 0;
}

.thumbText {
  width: 100%;
  top: 90%;
  padding: 10px 10px 40px 10px;
  font-size: 1em;
}

.imgRow {
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.imgColumn {
  width: 50%;
}

}  
