.ccta-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  transition: all .3s ease;
}
.ccta-item {
  flex: 1 0 calc(33.333% - 20px);
  background: #f4f8f0;
  border: 1px solid #c4e0a5;
  padding: 20px;
  text-align: center;
  transition: all .3s ease;
}
.ccta-item:hover {
  transform: scale(1.05);
  z-index: 2;
}
.ccta-section:hover .ccta-item:not(:hover) {
  filter: blur(2px);
  opacity: 0.7;
  transform: scale(0.95);
}
.cta-btn {
  display: inline-block;
  background: #8bc34a;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
}
.cta-popup-wrap {
  display: none;
}
.ccta-popup {
  background: rgba(0, 0, 0, .8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.ccta-popup .inner {
  width: 100%;
  max-width: 800px;
  height: 600px;
  max-height: 75vh;
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}
.ccta-popup .inner .cta-popup {

}
.ccta-close-popup {
    font-size: 12px;
    text-align: center;
    width: 50px;
    text-decoration: none;
    padding: 5px;
    display: block;
    cursor: pointer;
    color: #ffffff !important;
    background: red;
    font-weight: bold;
    border-radius: 15px;
    float: left;
}