.cta-container{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.widget_1730784513949 .container {
  padding: 0px;
}

.box{
  width: 160px;
  height: 170px;
  background-color: #ffffff;
  margin: 10px;
  padding: 20px;
  border-radius: 25px;
  border: 5px solid #FFCE58;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content:center;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}

.box img{
  display: block;
  margin: 0 auto;
  width: 150px;
}

.box h4{
  color: #000000;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  font-size: 12px;
}

.box:hover{
  background-color: #FFCE58;
  transform: translateY(-5px);
}

.box:hover svg .st0{
  fill: #ffffff;
}

@media (max-width: 800px){
  .box{
    flex-basis: calc(50% - 20px);
    margin: 10px;
  }
  .box h4{
    font-size: 14px;
  }