.show-candidate {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  width: 75%;
}

@media (max-width: 800px) {
  .candidate-desc {
    margin-bottom: 10px;
  }

.candidate-pic {
    margin-bottom: 10px;
  }
  
  .show-candidate {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.body-wrapper {
  padding-bottom: 40px;
}
#sp-footer {
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  bottom: 0px;
  z-index: 99;
}

article.item{}

.gallery {
	display: flex;
	flex-wrap: wrap;
	max-width: 704px;
	
}

.pic {
	max-width : 156px;
    max-height: 208px;
    width: 42%;
    height: auto;
    margin: 10px;
	overflow: hidden;
	flex-shrink: 0;
    position: relative;
  	text-align: center;
  	color: white;
    font-weight: bold;
  	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5);
}

img {
	max-width : 100%;
}

.caption {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}