/* button-raise-effect */

.raise-primary:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #4738f5;
    transform: translateY(-0.25em);
    transition: all 0.2s linear 0s;
}

.raise-secondary:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #ff5c2e;
    transform: translateY(-0.25em);
    transition: all 0.2s linear 0s;
}

.raise-tertiary:hover {
    box-shadow: 0 0.5em 0.5em -0.4em #1f1f1f;
    transform: translateY(-0.25em);
    transition: all 0.2s linear 0s;
}

/* button-raise-effect--end */

/* card-hover-effect-start */
.btn-posnawr {
    position: relative;
    /* display: block; */
    overflow: hidden;
    height: 100%;
    /* text-align: center; */
    text-decoration: none;
}
.btn-posnawr span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: none;
}
.btn-posnawr:hover {
    /* color: #eee; */
}

.btn-posnawr:hover span {
    width: 500%;
    height: 10000px;
    -webkit-transition:
        width 0.6s ease-in-out,
        height 0.6s ease-in-out;
    transition:
        width 0.6s ease-in-out,
        height 0.6s ease-in-out;
}

.btn-posnawr:hover h3 {
    opacity: 0.75;
    z-index: 10;
    position: inherit;
    transition: all 0.4s ease-in-out;
}

.btn-posnawr:hover img {
    z-index: 10;
    position: inherit;
    /* transition: all 0.4s ease-in-out; */
}

.btn-posnawr:hover h2 {
    z-index: 10;
    position: inherit;
    opacity: 100;
    /* transition: all 0.4s ease-in-out; */
}

.btn-posnawr:hover lottie-player {
    z-index: 10;
    position: inherit;
    opacity: 100;
}

@media screen and (max-width: 1024px) {
    .btn-posnawr span {
        width: 225%;
        height: 2500px;
    }

    .btn-posnawr h3 {
        opacity: 0.75;
        z-index: 10;
        position: inherit;
        transition: all 0.4s ease-in-out;
    }

    .btn-posnawr img {
        z-index: 10;
        position: inherit;
        /* transition: all 0.4s ease-in-out; */
    }

    .btn-posnawr h2 {
        z-index: 10;
        position: inherit;
        opacity: 100;
        /* transition: all 0.4s ease-in-out; */
    }

    .btn-posnawr lottie-player {
        z-index: 10;
        position: inherit;
        opacity: 100;
    }
}
#hubspot-messages-iframe-container {
    color-scheme : light;
}
/* card-hover-effect-start */
