/**
 * Image Block Styles
 */

.image-block-wrapper.center .subtitle, 
.image-block-wrapper.center .h2,
.image-block-wrapper.center .pre-title {
    text-align: center !important;
}

.image-block-wrapper.center .buttons-line {
    justify-content: center;
}

.image-block-wrapper.left .subtitle, 
.image-block-wrapper.left .h2,
.image-block-wrapper.left .pre-title {
    text-align: left !important;
}

.image-block-wrapper.left .buttons-line {
    justify-content: flex-start;
}

.image-block-wrapper.right .subtitle, 
.image-block-wrapper.right .h2,
.image-block-wrapper.right .pre-title {
    text-align: right !important;
}

.image-block-wrapper.right .buttons-line {
    justify-content: flex-end;
}

.image-block .h2 {
    margin-bottom: 40px;
}

.image-block .pre-title {
    font-family: "Panama", sans-serif;
    display: block;
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 41px;
}

.image-block-img {
    overflow: hidden;
    margin-bottom: 30px;
}

.image-block-img img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.image-block-img:hover img {
    transform: scale(1.15);
}

@media only screen and (min-width: 960px) {
    .image-block .pre-title {
        font-size: 52px;
    }
}