#cmi-specials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmi-specials__item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

@media only screen and (min-width: 930px) {
    .cmi-specials__item {
        display: flex;
        text-align: left;
    }
}

.cmi-specials__item.gold {
    background-color: #F6F7F1;
}

.cmi-specials__item.silver {
    background-color: #E9ECEE;
}

.cmi-specials__name {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.cmi-specials__image-wrapper {
    min-width: 300px;
    margin: 0 auto 20px;
}

.cmi-specials__image-wrapper img {
    max-width: 100%;
}

@media only screen and (min-width: 930px) {
    .cmi-specials__image-wrapper {
        margin: 0 20px 0 0;
        max-width: 300px;
    }
}

.cmi-specials__call-now {
    font-weight: bold;
    display: inline-block;
    background-color: #081C57;
    padding: 10px;
    border-radius: 5px;
    color: #fff !important;
    text-transform: uppercase;
    transition-property: background-color;
    transition-delay: 0s;
    transition-timing-function: ease;
    margin-top: 20px;
}

.cmi-specials__call-now:hover {
    background-color: #1b56a4;
    text-decoration: none;
}