.subscribe{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: none;
    max-width: 1024px;
    background-color: #f0f0f0;
    padding: 2rem;
    margin: 15px auto;
}

.entry-content .subscribe h2{
    font-family: "Merriweather", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    size: 1.4rem;
    text-align: center;
}

.entry-content .subscribe h3{
    font-family: "Merriweather", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; 
    size: 1.32rem;
}

.entry-content .subscribe h4{
    size: 1.2rem;
}

.rate h5{
    size: 1.7rem;
}

ul{
    list-style-position: inside;
    padding-left: 0;
    list-style-type: none;
    size: .8rem;
}

.entry-content ul{
    margin-bottom: 20px !important;
}

.entry-content li{
    margin-bottom: .3rem !important
}

.subscribe section{
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 20px 0;
}

.sub-card{
    width: 40%;
    text-align: center;
    box-shadow: 0 1px 6px 2px rgb(115 115 115 / 30%);
    background-color: #ffffff;
    padding: 1rem;
}

.small-text{

    font-size: .7rem;
}
#valid-zip{
    position: relative;
    top:25px;
    font-size: .7rem;
}

.sub-button {
  align-items: center;
  background-color: #105981;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 6px 2px rgb(115 115 115 / 30%);
  color: rgb(241, 241, 241);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin-bottom: 20px;
  min-height: 3rem;
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  padding: .85em 1.2em;
}

.sub-button:hover,
.sub-button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.85);
}

.sub-button:hover {
  transform: translateY(-1px);
}

.sub-button:active {
  background-color: #105981;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.85);
  transform: translateY(0);
}

.fas{
    margin-left: 1rem;
    font-size: 20px;
}

.entry-content .rate p{
    font-size: 1.5rem;
}

.sub-card form input{
    border: 1px solid rgb(190, 190, 190);
    text-align: center;
    padding: .85em 1.2em;
}

.sub-card form input:focus{
    outline: none !important;
    box-sizing: border-box;
    border: 2px solid #105981;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; 
}

@media screen and (max-width: 768px){

    .subscribe section{
        flex-direction: column;

    }

    .sub-card{
        width: 100%;
        margin-bottom: 20px;
    }

}