.hide-on-desktop { display: block; }
.hide-on-tablet { display: block; }
.hide-on-mobile { display: block; }

.has-custom-responsive-font-size {
    font-size: var(--font-size-large);
}

.is-style-blue-btn a{
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    transition: 0.3s;
}
.is-style-blue-btn a{
    padding: 15px 30px;
}
.is-style-blue-btn a:hover{
    background-color: #2200CC;
}

.is-style-red-btn a{
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    transition: 0.3s;
}
.is-style-red-btn a{
    padding: 15px 34px;
}
.is-style-red-btn a:hover{
    background-color: #D40C10;
}
.is-style-red-btn:disabled{
    background-color: #E76B63;
}
.is-style-red-border-btn a{
    background: #fff;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    transition: 0.3s;
}
.is-style-red-border-btn a{
    padding: 15px 28px;
}
.is-style-red-border-btn a:hover{
    background-color: #D40C10;
    color:#fff;
}
.is-style-red-border-btn:disabled{
    background-color: #E76B63;
}

/* Default to desktop image */
.responsive-cover-block {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Tablet override */
@media screen and (max-width: 1024px) {
    .responsive-cover-block {
        background-image: var(--tablet-image,none) !important;
    }
    .responsive-cover-block .wp-block-cover__image-background{
        display: none;
    }
}

/* Mobile override */
@media screen and (max-width: 576px) {
    .responsive-cover-block {
        background-image: var(--mobile-image,none) !important;
    }
    .responsive-cover-block .wp-block-cover__image-background{
        display: none;
    }
}

@media (max-width: 767px) {
    .hide-on-mobile { display: none !important; }
    .has-custom-responsive-font-size {
        font-size: var(--font-size-small);
    }
    li{
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hide-on-tablet { display: none !important; }
}

@media (min-width: 1025px) {
    .hide-on-desktop { display: none !important; }
}

@media (max-width: 1024px) {
    .has-custom-responsive-font-size {
        font-size: var(--font-size-medium);
    }

}

