
.franchise_item {
    width: 280px;
    flex-basis: 280px;

    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.franchise_item:hover, .franchise_item:hover .franchise_item_head {
    transform: translateY(-2px);
}

.franchise_item_head {
    position: relative;
    top: 17px;
    z-index: 2;
    justify-content: center;
}

.franchise_item_body {
    box-sizing: border-box;
    height: 160px;
    align-items: center;
    justify-content: center;
    padding: 52px 30px 30px 30px;
    background: linear-gradient(to bottom, #FFE0DF 22px, #fff 0%);
    border-radius: 15px;

    box-shadow: 25px 25px 80px rgb(224 197 196 / 29%);

    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.franchise_item:hover .franchise_item_body {
    transform: translateY(-2px);
    box-shadow: 25px 25px 80px rgb(224 197 196 / 60%);
}

.franchise_item_body p, .franchise_item_body a  {
    font-family: "Lato Regular";
    text-align: center;
    margin-bottom: 5px;
}

.franchise_item_body b {
    font-family: "Lato Bold";
}

@media screen and (max-width: 767px){
    .franchise_item {
        width: 100%;
        flex-basis: 100%;
    }
}