.acc-layout .acc-header {
  display: block;
  background-color: #ececec;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 0;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.acc-layout .acc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.acc-layout .acc-item {
  width: 100%;
  padding: 5px;
}

.acc-layout .acc-item.acc-col-25 {
  width: 25%;
}

.acc-layout .acc-item.acc-col-33 {
  width: 33.333%;
}

.acc-layout .acc-item.acc-col-50 {
  width: 50%;
}

.acc-layout .acc-img {
  display: block;
  height: 0;
  padding-top: 50%;
  position: relative;
}

.acc-layout .acc-img > img {
  display: block;
    position: absolute;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


.acc-layout .acc-item-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #515151;
  margin: 0;
  padding:12px 8px 0;
}

.acc-layout .acc-item-text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #515151;
  padding:6px;
  margin: 0;
}

.acc-layout .acc-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  min-height: 100%;
}

.acc-layout .acc-btn {
  display: block;
  width: 94%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  color:#3b5c93;
  border: 1px solid #3b5c93;
  border-radius: 20px;
  padding:9px;
  margin: 0 auto 10px;
  text-align: center;
  text-transform: uppercase;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.acc-layout .acc-btn:hover {
  background-color: #3b5c93;
  color:#fff;
}

.acc-layout .acc-price {
  line-height: 1;
  font-weight: 700;
  color:#3b5c93;
  text-align: center;
  margin: 0;
  padding: 8px;
  font-size: 20px;
  text-transform: uppercase;

}

@media only screen and (max-width: 1280px) {
  .acc-layout .acc-item.acc-col-25 {
    width: 33%;
  }
}


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

  .acc-layout .acc-item.acc-col-25, 
  .acc-layout .acc-item.acc-col-33 {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .acc-layout{
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  
  .acc-layout .acc-list {
    margin: 0;
  }

  .acc-layout .acc-item {
    padding: 5px 0;
  }

  .acc-layout .acc-item.acc-col-25, 
  .acc-layout .acc-item.acc-col-33,
  .acc-layout .acc-item.acc-col-50 {
    width: 100%;
  }

}