.acard-wrap .acard-intro {
    padding: 0 1em;
    font-weight: 100;
}
.acard-ttl {
    padding: 0 .5em;
}

.acard-wrap {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
	 grid-template-rows: auto auto auto;
   grid-gap: 1rem;
   justify-content: center; 
   margin: 0 auto;
	 max-width:1600px;
	 margin: 0 auto;
}

.acard {
	width: 100%;
	margin: 1rem;
	border-radius: 4px;
	box-shadow: 0 -1px 1px 0 rgba(0,0,0,.05), 0 1px 2px 0 rgba(0,0,0,.2);
	transition: all .2s ease;
	background: #fff;
	position: relative;
	overflow: hidden;
	grid-column: span 4;
}
.acard:hover, .acard.hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.3), 0 0 1px 0 rgba(0, 0, 0, 0.25);
}
.acard:hover .acard-content, .acard.hover .acard-content {
  box-shadow: inset 0 3px 0 0 #c8b18b;
  border-color: #c8b18b;
}
.acard:hover .acard-img .overlay, .acard.hover .acard-img .overlay {
  background-color: rgba(25, 29, 38, 0.85);
  transition: opacity 0.2s ease;
  opacity: 1;
}
.acard-img {
  position: relative;
  height: 224px;
  width: 100%;
  background-color: #fff;
  transition: opacity 0.2s ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.acard-img .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.acard-img .overlay .overlay-content {
  line-height: 224px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.acard-img .overlay .overlay-content a {
  color: #fff;
  padding: 0 2rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}
.acard-img .overlay .overlay-content a:hover, .acard-img .overlay .overlay-content a.hover {
  background: #c8b18b;
  border-color: #c8b18b;
}
.acard-content {
  width: 100%;
  min-height: 104px;
  background-color: #fff;
  border-top: 1px solid #E9E9EB;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 1rem 2rem;
  transition: all 0.2s ease;
}
.acard-content a {
  text-decoration: none !important;
  color: #202927 !important;
  font-size: 1.2em;
  font-weight: 400;
  color: rgba(32,41,28,.8) !important;
  background: unset;
}

.acard-content a:after, .acard-img .overlay .overlay-content a:after{border:0 !important;}

.acard-content h2, .acard-content a h2 {
  font-size: 1.3rem;
  font-weight: 900;
}
.acard-content p, .acard-content a p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(32, 41, 28, 0.8);
}



  .acard:last-child {
    grid-column: 7 / span 4;
		 grid-column-start:7;
  }
	
 .acard-wrap .acard:nth-child(7) {
    grid-column: 3 / span 4;
		 grid-column-start: 3;
  }

@media (max-width:499px){
	.acard-wrap {
    display: block;
    overflow:hidden;
    padding:1em;
	}
	.acard{
		margin:0 0 1rem 0;
	}
}

@media (min-width:499px) and (max-width:1024px){
.acard-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 1060px;
    margin: 0 auto;
}

.acard-wrap > * {
    flex: 0 1 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}