.ha-btn {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: all .3s;
    transition: all .3s
}

.ha-btn:not(.ha-btn--link) {
    padding: 15px 25px;
    border-radius: 5px;
    background-color: #562dd4;
    color: #fff
}

.ha-btn:not(.ha-btn--link):focus,
.ha-btn:not(.ha-btn--link):hover {
    background-color: #e2498a
}

.ha-btn.ha-btn--link {
    color: #562dd4
}

.ha-btn.ha-btn--link:focus,
.ha-btn.ha-btn--link:hover {
    color: #e2498a
}

.ha-btn-icon+.ha-btn-text,
.ha-btn-text+.ha-btn-icon {
    margin-left: 5px
}

.ha-btn-icon--svg {
    display: inline-block
}

.ha-btn-icon--svg svg {
    width: auto;
    height: 1em;
    fill: currentColor
}

@-webkit-keyframes ha-member-lightbox-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes ha-member-lightbox-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.ha-member>.elementor-widget-container {
    padding: 25px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 40px rgba(36, 36, 36, .1);
    box-shadow: 0 3px 40px rgba(36, 36, 36, .1)
}

.ha-member:not(:has(.elementor-widget-container)) {
    padding: 25px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 40px rgba(36, 36, 36, .1);
    box-shadow: 0 3px 40px rgba(36, 36, 36, .1)
}

.ha-member-figure {
    position: relative;
    display: inline-block;
    margin: 0 0 25px !important
}

.ha-member-figure img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    -o-object-fit: cover;
    object-fit: cover
}

.ha-member.ha-member-hover-image-on .ha-member-figure img:nth-of-type(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0
}

.ha-member.ha-member-hover-image-on .ha-member-figure:hover img:nth-of-type(1) {
    z-index: -1;
    opacity: 0
}

.ha-member.ha-member-hover-image-on .ha-member-figure:hover img:nth-of-type(2) {
    z-index: 2;
    opacity: 1
}

.ha-member-name {
    margin-top: 0;
    margin-bottom: 10px;
    color: #151515;
    font-size: 18px
}

.ha-member-position {
    margin-bottom: 25px;
    color: #7f7f7f;
    font-size: 14px
}

.ha-member-bio {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6
}

.ha-member-links>a {
    display: inline-block;
    color: #9895ad;
    text-align: center;
    line-height: 1;
    -webkit-transition: all .2s;
    transition: all .2s
}

.ha-member-links>a:focus,
.ha-member-links>a:hover {
    color: #222
}

.ha-member-links>a>i {
    width: 1em;
    height: 1em
}

.ha-member-links>a:not(:last-child) {
    margin-right: 10px
}

.ha-member .ha-btn {
    margin-bottom: 15px;
    cursor: pointer
}

.ha-member-body .ha-btn:last-child {
    margin-top: 15px;
    margin-bottom: 0
}

.ha-member-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999999;
    display: none;
    visibility: hidden;
    width: 0;
    height: 0
}

.ha-member-lightbox.ha-member-lightbox-show {
    z-index: 999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    overflow: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6)
}

.ha-member-lightbox.ha-member-lightbox-show .ha-member-lightbox-close {
    position: absolute;
    z-index: 99999;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #9ec8f0;
    font-size: 30px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    transition: transform .3s;
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.ha-member-lightbox.ha-member-lightbox-show .ha-member-lightbox-inner {
    width: 100%;
    -webkit-animation-name: ha-member-lightbox-zoomIn;
    animation-name: ha-member-lightbox-zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInUp {
    0% {
        visibility: visible;
        opacity: 0;
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    0% {
        visibility: visible;
        opacity: 0;
        -webkit-transform: translate3d(0, 110%, 0);
        transform: translate3d(0, 110%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes noAnimation {
    0% {
        visibility: visible;
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes noAnimation {
    0% {
        visibility: visible;
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.ha-image-accordion-horizontal .ha-ia-gallery-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.ha-image-accordion-horizontal .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-right: var(--ha-ia-gutter-margin)
}

.ha-image-accordion-vertical .ha-ia-gallery-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.ha-image-accordion-vertical .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-bottom: var(--ha-ia-gutter-margin)
}

.ha-image-accordion-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    --ha-ia-gutter-margin: 0
}

.ha-image-accordion-wrapper a:focus {
    outline: 0
}

.ha-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.ha-ia-container {
    width: 100%
}

.ha-ia-content-wrapper,
.ha-ia-gallery-wrap,
.ha-ia-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.ha-ia-gallery-wrap {
    overflow: hidden;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 70vh
}

.ha-ia-content-wrapper,
.ha-ia-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.ha-ia-item {
    position: relative;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: -webkit-box-flex .4s, -webkit-flex .4s;
    transition: flex .4s;
    transition: flex .4s, -webkit-box-flex .4s, -webkit-flex .4s, -ms-flex .4s
}

.ha-ia-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.ha-image-accordion-click .ha-ia-item.active,
.ha-image-accordion-hover .ha-ia-item:hover {
    -webkit-box-flex: 3;
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3
}

.ha-image-accordion-hover .ha-ia-item:hover .ha-overlay {
    background-color: rgba(0, 0, 0, .29)
}

.ha-image-accordion-hover .ha-ia-item:not(:hover) .ha-ia-content-wrapper {
    display: none
}

.ha-image-accordion-click .ha-ia-item.active .ha-overlay {
    background-color: rgba(0, 0, 0, .29)
}

.ha-image-accordion-click .ha-ia-item:not(.active) .ha-ia-content-wrapper {
    display: none
}

.ha-ia-actions,
.ha-ia-actions .ha-ia-link a,
.ha-ia-actions .ha-ia-popup a,
.ha-ia-content-icon-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.ha-ia-actions .ha-ia-link,
.ha-ia-actions .ha-ia-popup {
    width: 1.9em;
    height: 1.9em;
    border: 1px solid #fff;
    border-radius: 100%;
    font-size: 16px
}

.ha-ia-actions .ha-ia-link a i,
.ha-ia-actions .ha-ia-popup a i {
    padding: .5em;
    color: #fff;
    font-size: .9em
}

.ha-ia-content-icon-title {
    font-size: 30px
}

.ha-ia-content-icon-title.ha-ia-icon-left,
body[data-elementor-device-mode=tablet] .ha-image-accordion-tablet-horizontal .ha-ia-gallery-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.ha-ia-content-icon-title.ha-ia-icon-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.ha-ia-content-label {
    font-size: 16px
}

.ha-ia-content-description,
body[data-elementor-device-mode=tablet] .ha-ia-content-icon-title {
    font-size: 20px
}

.ha-ia-content-button {
    margin: 10px 0;
    padding: 5px 15px;
    border-radius: 5px;
    background-color: #6d39ef;
    color: #fff;
    font-size: 16px
}

.ha-ia-content-button:hover {
    background-color: #e2498a;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.ha_fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s
}

.ha_noAnimation {
    -webkit-animation-name: noAnimation;
    animation-name: noAnimation;
    -webkit-animation-duration: .3s;
    animation-duration: .3s
}

body[data-elementor-device-mode=tablet] .ha-image-accordion-tablet-horizontal .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-right: var(--ha-ia-gutter-margin);
    margin-bottom: 0
}

body[data-elementor-device-mode=tablet] .ha-image-accordion-tablet-vertical .ha-ia-gallery-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

body[data-elementor-device-mode=tablet] .ha-image-accordion-tablet-vertical .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: var(--ha-ia-gutter-margin)
}

body[data-elementor-device-mode=tablet] .ha-ia-content-label {
    font-size: 14px
}

body[data-elementor-device-mode=tablet] .ha-ia-content-description {
    font-size: 18px
}

body[data-elementor-device-mode=tablet] .ha-ia-content-button {
    font-size: 14px
}

body[data-elementor-device-mode=mobile] .ha-image-accordion-mobile-horizontal .ha-ia-gallery-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

body[data-elementor-device-mode=mobile] .ha-image-accordion-mobile-horizontal .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-right: var(--ha-ia-gutter-margin);
    margin-bottom: 0
}

body[data-elementor-device-mode=mobile] .ha-image-accordion-mobile-vertical .ha-ia-gallery-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

body[data-elementor-device-mode=mobile] .ha-image-accordion-mobile-vertical .ha-ia-gallery-wrap .ha-ia-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: var(--ha-ia-gutter-margin)
}

body[data-elementor-device-mode=mobile] .ha-ia-content-icon-title {
    font-size: 20px
}

body[data-elementor-device-mode=mobile] .ha-ia-content-label {
    font-size: 12px
}

body[data-elementor-device-mode=mobile] .ha-ia-content-description {
    font-size: 16px
}

body[data-elementor-device-mode=mobile] .ha-ia-content-button {
    font-size: 12px
}

.ha-dual-btn,
.ha-dual-btn-connector {
    display: inline-block
}

.ha-dual-btn-wrapper {
    position: relative;
    text-align: center;
    font-weight: 400
}

.ha-dual-btn {
    padding: 1.3rem 2.3rem;
    max-width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1
}

.ha-dual-btn--left {
    background-color: #562dd4
}

.ha-dual-btn--left:focus,
.ha-dual-btn--left:hover {
    background-color: #4423ab;
    color: #fff
}

.ha-dual-btn--right {
    background-color: #e2498a
}

.ha-dual-btn--right:focus,
.ha-dual-btn--right:hover {
    background-color: #d6226e;
    color: #fff
}

.ha-dual-btn-connector {
    position: absolute !important;
    z-index: 9;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .3);
    color: #27374c;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
}

.ha-dual-btn-icon>svg {
    width: 1em;
    height: auto;
    vertical-align: top;
    fill: currentColor
}

.ha-dual-btn-icon>i {
    font-size: 1em
}

.ha-dual-btn-icon--before {
    margin-right: 5px
}

.ha-dual-btn-icon--after {
    margin-left: 5px
}

.ha-dual-button>.elementor-widget-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.ha-dual-button--mobile-layout-stack>.elementor-widget-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.ha-dual-button--mobile-layout-stack .ha-dual-btn-wrapper {
    max-width: 100%
}

.ha-dual-button--mobile-layout-stack .ha-dual-btn-connector {
    top: 100%;
    right: 50%
}

.ha-dual-button--mobile-layout-stack .ha-dual-btn--left {
    border-radius: 30px 30px 0 0
}

.ha-dual-button--mobile-layout-stack .ha-dual-btn--right {
    border-radius: 0 0 30px 30px
}

.ha-dual-button--mobile-layout-stack.ha-dual-button--mobile-align-left>.elementor-widget-container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start
}

.ha-dual-button--mobile-layout-stack.ha-dual-button--mobile-align-center>.elementor-widget-container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center
}

.ha-dual-button--mobile-layout-stack.ha-dual-button--mobile-align-right>.elementor-widget-container {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-align: end
}

.ha-dual-button--mobile-layout-queue.ha-dual-button--mobile-align-left>.elementor-widget-container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start
}

.ha-dual-button--mobile-layout-queue.ha-dual-button--mobile-align-center>.elementor-widget-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.ha-dual-button--mobile-layout-queue.ha-dual-button--mobile-align-right>.elementor-widget-container {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.ha-dual-button--mobile-layout-queue>.elementor-widget-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.ha-dual-button--mobile-layout-queue .ha-dual-btn-wrapper {
    max-width: 63%
}

.ha-dual-button--mobile-layout-queue .ha-dual-btn-connector {
    top: 50%;
    right: 0
}

.ha-dual-button--mobile-layout-queue .ha-dual-btn--left {
    border-radius: 50px 0 0 50px
}

.ha-dual-button--mobile-layout-queue .ha-dual-btn--right {
    border-radius: 0 50px 50px 0
}

@media (min-width:768px) {
    .ha-dual-button--tablet-layout-stack.ha-dual-button--tablet-align-left>.elementor-widget-container {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -ms-flex-align: start
    }

    .ha-dual-button--tablet-layout-stack.ha-dual-button--tablet-align-center>.elementor-widget-container {
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center
    }

    .ha-dual-button--tablet-layout-stack.ha-dual-button--tablet-align-right>.elementor-widget-container {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
        -ms-flex-align: end
    }

    .ha-dual-button--tablet-layout-queue.ha-dual-button--tablet-align-left>.elementor-widget-container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    .ha-dual-button--tablet-layout-queue.ha-dual-button--tablet-align-center>.elementor-widget-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .ha-dual-button--tablet-layout-queue.ha-dual-button--tablet-align-right>.elementor-widget-container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end
    }

    .ha-dual-button--tablet-layout-stack>.elementor-widget-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .ha-dual-button--tablet-layout-stack .ha-dual-btn-wrapper {
        max-width: 100%
    }

    .ha-dual-button--tablet-layout-stack .ha-dual-btn-connector {
        top: 100%;
        right: 50%
    }

    .ha-dual-button--tablet-layout-stack .ha-dual-btn--left {
        border-radius: 30px 30px 0 0
    }

    .ha-dual-button--tablet-layout-stack .ha-dual-btn--right {
        border-radius: 0 0 30px 30px
    }

    .ha-dual-button--tablet-layout-queue>.elementor-widget-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .ha-dual-button--tablet-layout-queue .ha-dual-btn-wrapper {
        max-width: 50%
    }

    .ha-dual-button--tablet-layout-queue .ha-dual-btn-connector {
        top: 50%;
        right: 0
    }

    .ha-dual-button--tablet-layout-queue .ha-dual-btn--left {
        border-radius: 50px 0 0 50px
    }

    .ha-dual-button--tablet-layout-queue .ha-dual-btn--right {
        border-radius: 0 50px 50px 0
    }
}

@media (min-width:1025px) {
    .ha-dual-button--layout-stack.ha-dual-button--align-left>.elementor-widget-container {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -ms-flex-align: start
    }

    .ha-dual-button--layout-stack.ha-dual-button--align-center>.elementor-widget-container {
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -ms-flex-align: center
    }

    .ha-dual-button--layout-stack.ha-dual-button--align-right>.elementor-widget-container {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
        -ms-flex-align: end
    }

    .ha-dual-button--layout-queue.ha-dual-button--align-left>.elementor-widget-container {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    .ha-dual-button--layout-queue.ha-dual-button--align-center>.elementor-widget-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .ha-dual-button--layout-queue.ha-dual-button--align-right>.elementor-widget-container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end
    }

    .ha-dual-button--layout-stack>.elementor-widget-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .ha-dual-button--layout-stack .ha-dual-btn-wrapper {
        max-width: 100%
    }

    .ha-dual-button--layout-stack .ha-dual-btn-connector {
        top: 100%;
        right: 50%
    }

    .ha-dual-button--layout-stack .ha-dual-btn--left {
        border-radius: 30px 30px 0 0
    }

    .ha-dual-button--layout-stack .ha-dual-btn--right {
        border-radius: 0 0 30px 30px
    }

    .ha-dual-button--layout-queue>.elementor-widget-container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .ha-dual-button--layout-queue .ha-dual-btn-wrapper {
        max-width: 50%
    }

    .ha-dual-button--layout-queue .ha-dual-btn-connector {
        top: 50%;
        right: 0
    }

    .ha-dual-button--layout-queue .ha-dual-btn--left {
        border-radius: 50px 0 0 50px
    }

    .ha-dual-button--layout-queue .ha-dual-btn--right {
        border-radius: 0 50px 50px 0
    }
}

.ha-pricing-table>.elementor-widget-container {
    position: relative;
    overflow: hidden;
    padding: 3em 4em;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 40px rgba(36, 36, 36, .1);
    box-shadow: 0 3px 40px rgba(36, 36, 36, .1)
}

.ha-pricing-table:not(:has(.elementor-widget-container)) {
    position: relative;
    overflow: hidden;
    padding: 3em 4em;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 40px rgba(36, 36, 36, .1);
    box-shadow: 0 3px 40px rgba(36, 36, 36, .1)
}

.ha-pricing-table-badge {
    position: absolute;
    top: -1px;
    padding: .8rem 1rem;
    background-color: #e2498a;
    color: #fff;
    line-height: 1
}

.ha-pricing-table-badge--left {
    left: 0;
    -webkit-transform: rotate(-90deg) translateX(-100%);
    -ms-transform: rotate(-90deg) translateX(-100%);
    transform: rotate(-90deg) translateX(-100%);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.ha-pricing-table-badge--right {
    right: 0;
    -webkit-transform: rotate(-90deg) translateY(-100%);
    -ms-transform: rotate(-90deg) translateY(-100%);
    transform: rotate(-90deg) translateY(-100%);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.ha-pricing-table-title {
    margin-top: 0;
    margin-bottom: .5rem;
    color: #242424;
    font-weight: 400;
    font-size: 24px
}

.ha-pricing-table-price {
    margin-bottom: 3rem
}

.ha-pricing-table-price-tag {
    margin-bottom: .5rem;
    color: #242424;
    font-weight: 700;
    font-size: 60px;
    line-height: normal
}

.ha-pricing-table-currency {
    font-size: 24px
}

.ha-pricing-table-period {
    color: #8c8c8c;
    font-size: 16px
}

.ha-pricing-table-body {
    margin-bottom: 3rem
}

.ha-pricing-table-features-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 16px
}

.ha-pricing-table-features-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.ha-pricing-table-features-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    margin-bottom: 1rem;
    font-size: 16px
}

.ha-pricing-table-features-list li>i,
.ha-pricing-table-features-list li>svg {
    margin-right: .5rem;
    min-width: 15px;
    text-align: center;
    font-size: .8em
}

.ha-pricing-table-features-list li>svg {
    width: auto;
    height: 1em;
    fill: currentColor
}

.ha-pricing-table-feature-text {
    display: inline-block
}

.ha-pricing-table-btn {
    display: inline-block;
    padding: .8rem 2rem;
    border-radius: 40px;
    background-color: #e2498a;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.ha-pricing-table-btn:hover {
    background-color: #562dd4;
    color: #fff
}

.ha-carousel .slick-vertical .slick-slide,
.ha-slider .slick-vertical .slick-slide {
    border: 0
}

.ha-carousel .slick-next,
.ha-carousel .slick-prev,
.ha-slider .slick-next,
.ha-slider .slick-prev {
    z-index: 999;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .8);
    color: #8c8c8c;
    font-size: 15px;
    opacity: 1
}

.ha-carousel .slick-next:focus,
.ha-carousel .slick-next:hover,
.ha-carousel .slick-prev:focus,
.ha-carousel .slick-prev:hover,
.ha-slider .slick-next:focus,
.ha-slider .slick-next:hover,
.ha-slider .slick-prev:focus,
.ha-slider .slick-prev:hover {
    background-color: #fff;
    color: #8c8c8c
}

.ha-carousel .slick-next:before,
.ha-carousel .slick-prev:before,
.ha-slider .slick-next:before,
.ha-slider .slick-prev:before {
    display: none;
    content: ""
}

.ha-carousel .slick-next>svg,
.ha-carousel .slick-prev>svg,
.ha-slider .slick-next>svg,
.ha-slider .slick-prev>svg {
    width: auto;
    height: 1em;
    fill: currentColor
}

.ha-carousel .slick-disabled,
.ha-slider .slick-disabled {
    opacity: .7
}

.ha-carousel .slick-prev,
.ha-slider .slick-prev {
    right: auto;
    left: 25px
}

.ha-carousel .slick-next,
.ha-slider .slick-next {
    right: 25px
}

.ha-carousel .slick-dots,
.ha-slider .slick-dots {
    bottom: -40px
}

.ha-carousel .slick-dots li,
.ha-slider .slick-dots li {
    margin-right: 2px;
    margin-left: 2px
}

.ha-carousel .slick-dots li button:focus,
.ha-carousel .slick-dots li button:hover,
.ha-slider .slick-dots li button:focus,
.ha-slider .slick-dots li button:hover {
    background-color: transparent
}

.ha-carousel .slick-dots li button:before,
.ha-slider .slick-dots li button:before {
    color: #1b1b1b;
    opacity: 1
}

.ha-carousel .slick-dots .slick-active button:before,
.ha-carousel .slick-dots li button:hover:before,
.ha-slider .slick-dots .slick-active button:before,
.ha-slider .slick-dots li button:hover:before {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5)
}

.ha-carousel .slick-next,
.ha-carousel .slick-prev {
    width: 2.66em;
    height: 2.66em
}

.ha-slider .slick-next,
.ha-slider .slick-prev {
    width: 3.33em;
    height: 3.33em
}

.ha-carousel .slick-slider:not(.slick-vertical) .slick-slide {
    padding-right: 5px;
    padding-left: 5px
}

.ha-carousel .slick-slider.slick-vertical .slick-slide {
    padding-top: 5px;
    padding-bottom: 5px
}

.ha-slick-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom
}

.ha-slick-content {
    position: absolute;
    bottom: 0;
    padding: 1.5rem;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .3)));
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .3));
    background: linear-gradient(transparent, rgba(0, 0, 0, .3))
}

.ha-slick-title {
    display: block;
    margin-top: 0;
    margin-bottom: .2rem;
    color: #fff;
    font-size: 20px
}

.ha-slick-subtitle {
    margin: 0;
    color: #fff
}

/** Widgets: member, image-accordion, dual-button, pricing-table, carousel **/