.image-buttons {
    position: relative;
    z-index: 1;
}

.image-buttons--yellow {
    background-color: #FEF5E2;
}

.image-buttons--top-svg {
    padding: 50px 0;
}

.image-buttons--top-svg svg {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.image-buttons-flex {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

.image-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(29,43,84,0.12);
}

.image-button.mint {
    background-color: #E6F3F2;
}

.image-button-item {
    margin-top: 20px;
}

.image-button__top {
    display: flex;
    align-items: center;
    height: 70px;
}

.image-button__top p {
    padding: 0 20px;
    text-align: center;
}

.image-button__img {
    width: 70px;
    height: 70px;
}

.image-button__details {
    width: calc(100% - 70px);
    padding: 0 20px;
}

.image-button__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}

.image-button__title {
    padding: 0;
    font-size: 16px;
    color: #00817B;
    position: relative;
}

.image-button__title::after {
    content: '\e914';
    font-family: 'icomoon';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0,-50%);
    color: #CB4E96;
    font-size: 14px;
    font-weight: normal;
}

.image-button__bottom {
    display: none;
}

.image-buttons__heading {
    max-width: 1172px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.image-buttons .fx-slide {
    display: block;
}

@media (min-width: 768px) {
    .image-buttons--top-svg {
        padding: 56px 0;
    }

    .image-buttons--top-svg--1 {
        padding-bottom: 30px;
    }

    .image-button-item {
        margin-top: 27px;
    }

    .image-buttons__heading {
        padding-bottom: 8px;
    }

    .image-button,
    .image-button__img  {
        border-bottom-right-radius: 60px;
    }
    

    .image-button__img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .image-button__top {
        display: block;
        height: auto;
      }

    .image-button__details {
        width: 100%;
        padding: 20px 20px 6px 20px;
        text-align: center;
    }

    .image-button__title::after {
        display: none;
    }

    .image-button__bottom {
        display: block;
        padding-bottom: 20px;
        text-align: center;
    }

    .image-button__cta {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        color: #CB4E96;
    }

    .image-button__cta::after {
        content: '\e914';
        font-family: 'icomoon';
        position: relative;
        color: #CB4E96;
        font-size: 12px;
        font-weight: normal;
        padding-left: 6px;
    }

    .js-image-button-item {
        padding: 16px 16px;
    }

    .js-image-buttons .slick-prev {
        left: -12px
    }

    .js-image-buttons .slick-next {
        right: -12px
    }
    
}

@media (min-width: 1200px) {
    .image-buttons--top-svg {
        padding: 64px 0;
    }

    .image-buttons--top-svg--1 {
        padding-bottom: 15px;
    }

    .js-image-button-item {
        padding: 0 16px;
    }

    .image-button {
        border-radius: 30px;
    }

    .image-button,
    .image-button__img  {
        border-bottom-right-radius: 80px;
    }
    
    .image-button__img {
        height: 293px;
    }

    .image-button__title {
        font-size: 20px;
    }

    .image-button__details {
        padding-bottom: 10px;
    }

    .image-button__bottom {
        padding-bottom: 24px;
    }

    .image-button__cta {
        font-size: 16px;
        padding-bottom: 4px;
    }

    .image-button:hover {
        background-color: #00817B;
    }

    .image-button:hover .image-button__title {
        color: #fff;
    }

    .image-button:hover .image-button__cta,
    .image-button:hover .image-button__cta::after {
        color: #F6C254;
    }

    .image-button:hover .image-button__cta {
        border-bottom: 2px solid  #F6C254;;
    }

}

.image-buttons + .module > svg path {
    fill: #fff !important;
}

.image-buttons.image-buttons--yellow + .module > svg path {
    fill: #FEF5E2 !important;
}

/*
*** -----------------------------------
** Screen Resizing -------------------------------------TEMP DISABLED
*** -----------------------------------

@media ( min-width: 1280px ) and ( max-width: 1799px ) {
    section.image-buttons {
        padding-top: 85px;
    }

    .image-button-item {
        margin: -30px;
    }

    .image-buttons__heading,
    .image-button-item {
        transform: scale( 0.8 ) !important;
        -moz-transform: scale( 0.8, 0.8 ) !important;
        -ms-transform: scale( 0.8 ) !important;
        -webkit-transform: scale( 0.8 ) !important;
    }
}*/