.pod .flex-grid-half {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pod .flex-grid-half .col {
  width: 50%;
  padding:15px;
}
@media (max-width: 640px) {
  .pod .flex-grid-half {
    display: block;
  }
  .pod .flex-grid-half .col {
    width: 100%;
  }
}

{###################################}

.modal {
  /* This way it could be display flex or grid or whatever also. */
  display: block;

  /* Probably need media queries here */
  width: 600px;
  max-width: 100%;

  min-height: 580px;
  max-height: 100%;

  position: fixed;

  z-index: 100;

  left: 50%;
  top: 50%;

  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);

  /* If known, negative margins are probably better (less chance of blurry text). */
  /* margin: -200px 0 0 -200px; */

  background: white;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
}
.closed {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;

  background: rgba(0, 0, 0, 0.6);
}
.modal-guts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /*padding: 20px 50px 20px 20px;*/
}



.modal .close-button {
  position: absolute;

  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 1;

  top: 10px;

  /* needs to look OK with or without scrollbar */
  right: 20px;

  border: 0;
  background: black;
  color: white;
  padding: 5px 10px;
  font-size: 1.3rem;
}

{################################}

.resource-button{
  border-top:1px solid #dddddd;;
  padding-top:8px;
  padding-bottom:8px;
  color: #00c8ff;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  line-height: 1.5rem;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.resource-button-group .resource-button:nth-last-child(1){
  border-bottom:1px solid #dddddd;;
}
.pod-content .resource-button a{
    font-size: 0.9375rem;
}

.cmModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99990;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:all 0.4s;
}
.cmModal.cmModal_open {
  opacity: 1;
  visibility: visible;
}
.cmModal .cmModal_container {
  max-width: 1025px;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: calc(100% - 80px);
  width:95%;
}
.cmModal .cmModal_container .cmModal_section {
  width: 100%;
}
.cmModal .mediaHolder {
  position: relative;
  padding-bottom: 66%;
}
.cmModal .mediaHolder > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border: none;
}
.cmModal .cmModal_section {
  position:relative;
}
.cmModal .modalClose {
  position: relative;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 30px;
  z-index: 3;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #fff;
  color: #000;
  display: flex;
  margin-left: auto;
}


