.amspecialoffers {
    display: grid;
    gap: 30px;
 }
 .amspecialoffers .single-offer {
    background: var(--nv-site-bg);
    padding-right: 10px;
 }
 .amspecialoffers .single-offer a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--nv-text-color);
 }
 .amspecialoffers .single-offer .single-offer-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-description {
    padding-right: 10px;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-description p {
    font-size: 12px;
    margin: 0;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-description span {
    color: var(--nv-primary-accent);
    font-weight: 600;
    padding-bottom: 30px;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-price {
    text-align: center;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-price p {
    margin: 5px 0;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-price p.offer-price {
    color: var(--nv-primary-accent);
    font-weight: 600;
 }
 .amspecialoffers .single-offer .single-offer-content .single-offer-price p.old-price {
    font-size: 12px;
    text-decoration: line-through;
 }
 .amspecialoffers .single-offer .single-offer-image {
    margin-right: 10px;
 }
 .amspecialoffers .single-offer .single-offer-image img {
    display: block;
    max-width: 100px;
    height: auto;
 }
 #amspecialoffers {
     padding-top: 2rem;
     padding-bottom: 2rem;
     padding-left: 0;
     padding-right: 0;
     margin-top: 0;
     margin-bottom: 0;
     justify-content: center;
     min-height: auto;
     border-width: 0;
     border-style: solid;
     border-radius: 0;
 }
 #amspecialoffers .wp-block-themeisle-blocks-advanced-column {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    border-width: 0;
    border-style: solid;
    border-radius: 0;
 }
 h2#amspecialoffers_title {
    color: var(--nv-primary-accent);
    font-size: 54px;
    --text-align: center;
    --text-align-tablet: center;
    --text-align-mobile: center;
    --padding: 0px 0px 50px;
    --margin: 0px;
 }
 @media(max-width: 600px) {
    .amspecialoffers {
       grid-template-columns: 1fr !important;
    }
 }
 @media(min-width: 601px) {
    .amspecialoffers.col-md-1 {
       grid-template-columns: 1fr;
    }
    .amspecialoffers.col-md-2 {
       grid-template-columns: 1fr 1fr;
    }
 }
 @media(min-width: 961px) {
    .amspecialoffers.col-lg-1 {
       grid-template-columns: 1fr;
    }
    .amspecialoffers.col-lg-2 {
       grid-template-columns: 1fr 1fr;
    }
    .amspecialoffers.col-lg-3 {
       grid-template-columns: 1fr 1fr 1fr;
    }
 }
 