.savings-module {

    padding: 20px;
    display: flex;
    justify-content: center;
}

.savings-container {
    display: flex;
    justify-content: space-between;
  
}

.savings-item {
    background: rgba(255, 255, 255, 0.1);
   background:  url('https://22766748.fs1.hubspotusercontent-na1.net/hubfs/22766748/Group%20588.png') no-repeat center center;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    text-align: center;
    margin: 10px;
    flex: 1;
    color: #ffffff;
   text-decoration: none; /* Removes the underline */
    transition: transform 0.2s ease-in-out;
  border:1px solid #fff;
 
}

.savings-item:hover {
    transform: scale(1.05);
   text-decoration: none; /* Removes the underline */
}

.percentage {
    font-size: 64px;
    font-weight: bold;

}

.description {
    font-size: 16px;
    margin-top: 10px;
}

/* Tablet devices */
@media only screen and (min-width: 400px) and (max-width: 1024px) {
  /* Add your styles for tablet devices here */
.percentage {
  font-size: 45px !important; }
}

/* Devices with screen size 580px and smaller */
@media only screen and (max-width: 670px) {
  /* Add your styles for devices 580px and down here */
.percentage {
  font-size: 20px !important; }
}
.description { font-size: 12px;}
}

