/**
 * CSS Custom Properties for Impact Hub Elementor Addons
 * Centralized design tokens for better maintainability
 */
:root {
    /* Colors */
    --ih-primary-blue: #1C395C;
    --ih-primary-green: #7EBB55;
    --ih-primary-orange: #F78A3C;
    --ih-primary-cyan: #41BED0;
    --ih-neutral-white: #FFFFFF;
    --ih-neutral-light: #F8F8F8;
    --ih-neutral-gray: #6F6C90;
    --ih-neutral-dark: #170F49;
    --ih-neutral-black: #000000;

    /* Spacing */
    --ih-spacing-xs: 8px;
    --ih-spacing-sm: 16px;
    --ih-spacing-md: 20px;
    --ih-spacing-lg: 32px;
    --ih-spacing-xl: 50px;

    /* Border radius */
    --ih-radius-sm: 8px;
    --ih-radius-md: 20px;
    --ih-radius-lg: 50px;

    /* Transitions */
    --ih-transition-fast: 0.15s ease-in-out;
    --ih-transition-normal: 0.3s ease-in-out;
    --ih-transition-slow: 0.5s ease-in-out;

    /* Shadows */
    --ih-shadow-light: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    --ih-shadow-medium: 0px 8px 24px 0px rgba(8, 15, 52, 0.12);

    /* Focus indicators */
    --ih-focus-outline: 3px solid var(--ih-neutral-black);
    --ih-focus-offset: 2px;
}

html body {
    font-family: 'Poppins';
}

/* Accessibility improvements */
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
    word-wrap: normal !important;
}

/* Focus styles for better keyboard navigation */
.uly-image-link-template:focus,
/* .ih_toggle a:focus, */
.filter-reset:focus,
.my-category-filter__btn:focus,
select:focus,
input:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Ensure interactive elements have sufficient size for touch */
.my-category-filter__btn,
.filter-reset,
.ih_toggle a {
    min-height: 44px;
    min-width: 44px;
    padding: 8px 16px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .uly-image-link-template:focus,
    .ih_toggle a:focus,
    .filter-reset:focus,
    .my-category-filter__btn:focus,
    select:focus,
    input:focus {
        outline: 4px solid;
        outline-offset: 2px;
    }

    /* Ensure sufficient contrast in high contrast mode */
    .uly-image-link-template :is(span, h1, h2, h3, h4, h5, h6, p) {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .my-category-filter__btn.active,
    .my-category-filter__btn[aria-pressed="true"] {
        border: 2px solid;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .uly-image-link-template,
    .uly-background,
    .uly-image-link__text__wrapper,
    .ih_toggle__body,
    .team-modal {
        transition: none !important;
    }
}

/* Modal accessibility improvements */
.team-modal {
    outline: none;
    /* Remove default outline since we handle focus visually */
}

.team-modal[aria-hidden="true"] {
    display: none !important;
}

.team-modal .close:focus,
.team-modal .arrow-link:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* Ensure modal content is accessible */
.team-modal__wrapper {
    position: relative;
}

/* Style the team trigger button properly */
.uly-team {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;

}

button.uly-team.uly-image-link-template {
    /* color: #000; */
    padding: 0;
    border: none;
    background-color: #fff;
    white-space: initial;
    /* display: flex;
    flex-direction: column;
    align-items: flex-start; */
    text-align: inherit;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.uly-team:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
}

/* High contrast support for modals */
@media (prefers-contrast: high) {

    .team-modal .close:focus,
    .team-modal .arrow-link:focus,
    .uly-team:focus {
        outline: 4px solid;
        outline-offset: 2px;
    }
}

.uly-image-link-template:not(.uly-work) {
    display: flex;
    padding: 32px;
}

.ih_works_skin,
.ih_team_skin {
    box-shadow: 0px 0px 5Px #ccc;
}

.uly-image-link-template {
    z-index: 1;
    width: 100%;
    height: 100%;
    /* min-height: 300px; */
    margin-bottom: 0;
    position: relative;
}

@media screen and (max-width:980px) {
    .uly-image-link-template:not(.uly-team) {
        min-height: 100% !important;
    }
}

@media screen and (max-width:980px) {
    .uly-image-link-template {
        flex-direction: column;
    }
}

.uly-bottom {
    /* min-height: 300px; */
    align-items: flex-end;
}

.uly-top {
    /* min-height: 500px; */
    align-items: flex-start;
}

.uly-image-link .uly-image-link__description {

    font-size: 22px;

}


.uly-image-link-template__description {
    margin-top: 30px;
}


@media screen and (min-width:981px) {
    .uly-top .uly-image-link__description {
        margin-bottom: 70px;
    }
}


.uly-top .uly-def-arrow svg {
    transition: opacity 0.3s ease-in-out
}

.uly-top .uly-def-arrow {
    top: 32px;
    position: absolute;
    right: 32px;
}


.uly-image-link-template:not(.uly-work):before,
.uly-work:not(.uly-team) .abs-img-wrap:before {
    /* .uly-image-link-template:before{ */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 79.69%);
    z-index: 1;
}

.uly-image-link-template:hover::before,
.uly-work:hover .abs-img-wrap:before,
.uly-image-link-template.hover .abs-img-wrap:before,
.uly-image-link-template:focus::before,
.uly-work:focus .abs-img-wrap:before {
    opacity: 0;
}

.uly-background {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    transition: opacity 0.3s ease-in-out;
    z-index: 2;
}



@media screen and (max-width:980px) {
    .uly-image-link-template:not(.uly-work) .uly-background {
        opacity: 0.48;
    }

    .uly-work:not(.uly-team) .uly-background {
        opacity: 1;
    }

    .uly-team .uly-background {
        opacity: 0;
    }
}

@media screen and (min-width:981px) {
    .uly-background {
        opacity: 0;
    }
}


.uly-image-link-template :is(span, h1, h2, h3, h4, h5, h6, p) {
    color: #fff;
    bottom: 32px;
    display: block;
    margin: 0;
    word-break: break-word;
}

.uly-right-arrow.uly-def-arrow {
    /* position: absolute; */
    /* right: 32px; */
    transition: top 0.3s ease-in-out;
    display: block;
    height: 31Px;
    z-index: 2;
}


@media screen and (min-width:981px) {
    .uly-bottom .uly-def-arrow {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:980px) {
    .uly-bottom .uly-def-arrow {
        position: absolute;
        right: 32px;
    }
}


.uly-join-now {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: bold;
    z-index: 2;

    transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;

}

.uly-image-link .uly-join-now {
    font-size: 35px;
}

@media screen and (max-width:980px) {
    .uly-join-now {
        margin-top: 30px;
    }
}


.uly-image-link .uly-image-link__text {

    font-size: 54px;
    line-height: 1.2;
    font-weight: bold;


}



@media screen and (min-width:981px) {

    .uly-image-link__text__wrapper,
    .uly-join-now {
        position: absolute;
    }

    .uly-join-now {
        opacity: 0;
        bottom: 64px;
        left: 0;
        padding-left: 32px;
        padding-right: 32px;
    }
}



.uly-image-link__text__wrapper {
    bottom: 32px;
    /* left: 32px; */
    left: 0;


}

@media screen and (min-width:981px) {

    .uly-image-link__text__wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.top-text-wrap,
.uly-image-link__text__wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
}

@media screen and (max-width:980px) {
    .uly-image-link-template:not(.uly-work) .top-text-wrap {
        display: none;
    }
}



.uly-bottom .uly-image-link__text__wrapper {
    transition: bottom 0.3s ease-in-out;
}

.uly-top .uly-image-link__text__wrapper {
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.uly-image-link__description {


    line-height: 1.5;
}

.uly-image-link__description__wrapper {
    width: 100%;
    z-index: 2;
}

@media screen and (max-width:980px) {
    .uly-top .uly-image-link__description__wrapper {
        margin-bottom: auto;

    }
}

.uly-bottom :is(.uly-image-link__description, .uly-image-link__text) {
    padding-right: 64px;
}

@media screen and (min-width:981px) {
    .uly-top .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text) {

        max-width: 360px;

    }
}


@media screen and (min-width:981px) {
    .uly-image-link-template:not(.uly-work) .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text) {
        transition: opacity 0.3s ease-in-out;

        opacity: 0;
    }
}

/* .uly-image-link__description, .uly-image-link__text{
    max-width: 360px;
}  */

@media screen and (min-width:981px) {

    /* .uly-image-link-template:hover .uly-background{
    opacity: 0.48;
} */

    .uly-image-link-template:not(.uly-work:not(.uly-team)):hover .uly-background,
    .uly-image-link-template:not(.uly-work:not(.uly-team)):hover .uly-background,
    .uly-image-link-template:not(.uly-work:not(.uly-team)):focus .uly-background,
    .uly-image-link-template:not(.uly-work:not(.uly-team)):focus .uly-background {
        opacity: 0.48;
    }

    .uly-work:hover .uly-background,
    .uly-image-link-template.hover .uly-background,
    .uly-work:focus .uly-background {
        opacity: 1;
    }

    .uly-top:hover .uly-join-now,
    .uly-top.hover .uly-join-now,
    .uly-top:focus .uly-join-now {
        bottom: 32px;
        opacity: 1;

    }

    /* .elementor-88 .elementor-element.elementor-element-00d0cd4 .uly-image-link-template:hover .uly-image-link__text__wrapper */

    .elementor-widget-container a.uly-image-link-template.uly-top:hover div.uly-image-link__text__wrapper,
    .elementor-widget-container a.uly-image-link-template.uly-top.hover div.uly-image-link__text__wrapper,
    .elementor-widget-container a.uly-image-link-template.uly-top:focus div.uly-image-link__text__wrapper {
        opacity: 0;
        bottom: -32px;
    }

    .uly-top:hover .uly-def-arrow svg,
    .uly-top:focus .uly-def-arrow svg,
    .uly-top.hover .uly-def-arrow svg {
        opacity: 0;
    }

    .uly-image-link-template:hover .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text),
    .uly-image-link-template.hover .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text),
    .uly-image-link-template:focus .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text),
    .uly-image-link-template.hover .uly-image-link__description__wrapper :is(.uly-image-link__description, .uly-image-link__text) {

        opacity: 1;
    }

}

/* .uly-image-link-template.hover:focus{
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 20px;
}  */


/* .uly-image-link-template:not(.uly-post).hover{
    border:none;
}

.uly-image-link-template:not(.uly-post).hover:focus{
    outline: 2px solid rgba(0, 0, 0, 0.6);
}  */


/* .embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } */












.ih_toggle {
    padding: var(--ih-spacing-xl);
    border-radius: var(--ih-radius-lg);
    background: var(--ih-neutral-white);
    box-shadow: var(--ih-shadow-light);
}

.ih_toggle--default>.ih_toggle__heading a {
    display: flex;
    justify-content: space-between;
    align-items: center;


    color: #170F49;
}

.ih_toggle--default>.ih_toggle__heading a:after {
    content: "";
    position: relative;
    top: 1px;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: var(--ih-transition-normal);
    background: #F7F7FF;
    color: var(--ih-neutral-gray);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.69781rem;
    height: 2.69781rem;
    font-size: 2rem;
    padding-bottom: 0.3125rem;
}


.ih_toggle--default>.ih_toggle__heading a[aria-expanded="true"]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border-radius: 8px;
    background: #F78A3C;
    color: #fff;
}

.ih_toggle--default>.ih_toggle__heading a[aria-expanded="false"]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);


}

.ih_toggle__body {
    height: 0;
    /* transform:scaleY(0); */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    color: var(--neutral-600, #6F6C90);
    font-size: 1.125rem;
    font-family: Poppins;
    line-height: 1.875rem;
}

.ih_toggle.active .ih_toggle__body {
    height: 100%;
    opacity: 1;
    visibility: visible;
    /* transform:scaleY(1); */
}

.ih_skin.ih_posts_skin img {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ih_skin {
    position: relative;
    overflow: hidden;
}





.ih_skin .uly-image-link__text {

    font-size: 28px;
    font-weight: 700;
    line-height: normal;
}

.ih_skin .uly-join-now {
    font-size: 18px;
}

.ih_skin:nth-child(3n+1) .uly-background {
    /* background: rgba(126, 187, 85, 0.80); */
    background: rgb(126, 187, 85);
}

.ih_skin:nth-child(3n+2) .uly-background {
    /* background: rgba(247, 138, 60, 0.80); */
    background: rgb(247, 138, 60);

}

.ih_skin:nth-child(3n+3) .uly-background {
    /* background: rgba(65, 190, 208, 0.80); */
    background: rgb(65, 190, 208);

}

/* Works skin styles handled by existing rules */

.abs-img-wrap {
    position: relative;
    /* padding-bottom: 75%; */
}

div.abs-img-wrap img,
.elementor .abs-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uly-work span.uly-right-arrow {
    display: none;
}

.ih-work__front {
    z-index: 1;
    position: relative;

    background-color: #fff;
}

@media screen and (max-width:980px) {
    .uly-work:not(.uly-team) .ih-work__front {
        display: none;
    }

    .uly-work:not(.uly-team) .abs-img-wrap {
        display: none;
    }

    .uly-team .ih-work__front {
        z-index: 2;
    }

    .uly-team .abs-img-wrap {
        z-index: 2;
    }
}

.ih-work__front,
.ih-work__back {
    padding: 32px;
}

.ih-work__front .uly-image-link__description__wrapper :is(.uly-image-link__text, .uly-image-link__description) {
    color: #000;
}

.ih-work__back {

    z-index: 2;

    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width:981px) {
    .ih-work__back {
        opacity: 0;
        position: absolute;
    }
}

@media screen and (max-width:980px) {
    .ih-work__back {
        position: relative;
    }
}

.uly-work:hover .ih-work__back,
.uly-image-link-template.hover .ih-work__back {
    opacity: 1;
}

.my-other-posts-filter,
.my-category-filter {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 20px;
}

/* @media screen and (max-width:1024px) { */
.filter-reset {
    width: 100%;
}

/* } */

@media screen and (max-width:1279px) {
    .page-content .elementor-element.elementor-widget.elementor-widget-category_filter .ul-filter-wrapper {
        display: block;
    }
}





.my-other-posts-filter .myof-wrapper {
    /* display: inline-block; */
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.uly-custom-select {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 2;
    cursor: pointer;
    /* min-height: calc(100% - 20px); */
    min-height: 100%;
}

.uly-custom-select .isHover {
    /* font-weight: bold; */
    background-color: #222;
    color: #fff;
}

/* Category Filter Default Styles - Match widget control defaults */
.my-category-filter-select {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    /* margin: 0 0 20px 0; */
}

.my-category-filter__btn {
    padding: 20px 56px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    margin: 0 10px 20px 10px;
}

.ih-posts-order {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    margin: 0 0 20px 0;
}

.ih-posts-types {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    margin: 0 0 20px 0;
}

#search {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    margin: 0 0 20px 0;
}

.my-region-select {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    margin: 0 0 20px 0;
}

.my-language-select {
    padding: 20px 56px;
    border-radius: 50px;
    background: #F8F8F8;
    border: 0px solid #fff;
    color: #000;
    margin: 0 0 20px 0;
}

/* .myof-wrapper.uly-categories .js-uly-custom-select.uly-custom-select.my-category-filter-select{
    background-color: transparent;
} */

@media (hover: hover) {
    .uly-custom-select {
        display: block;
    }
}

@media (hover: hover) {
    .uly-normal-select:focus+.uly-custom-select {
        display: none;
    }
}

.uly-custom-select-options {
    display: none;
    /* margin-top:20px; */
    margin-top: 40px;
}

.uly-custom-select-options div {
    margin-left: -40px;
    margin-right: -40px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.uly-custom-select.isActive .uly-custom-select-options {
    display: block;
}

.uly-custom-select.isActive .uly-custom-select-options .isActive:before {
    content: '✔';
    position: absolute;
    transform: translateX(-20px);
    /* margin-right: 10px; */
}


.uly-def {
    /* position: relative; */
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    /* height: 100%; */

    padding: 20px;
}

.myof-wrapper:not(.uly-search, .uly-reset):after,
.uly-def:after {
    content: "";
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    z-index: 1;
    pointer-events: none;

    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: 25px;
    z-index: 1;
    pointer-events: none;
}

.uly-def:after {
    /* right: -25px; */
    pointer-events: none;
}

/* Make CSS more specific to override Elementor defaults */
.my-other-posts-filter select,
.my-category-filter-select.uly-custom-select,
.my-category-filter-select.uly-normal-select {
    font-size: 21px;
    /* font-weight: 700; */
    font-weight: 400;
    line-height: 30px;
    background-color: #F8F8F8;
    border-radius: 50px;
    padding: 20px 56px;
    border: none;
    /* width: auto; */
    width: 100%;

    text-align: center;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
}


@media screen and (min-width:1025px) {

    /* .my-other-posts-filter .myof-wrapper:not(:last-child), .my-category-filter button:not(:last-child){
    margin-right: 20px;

} */
    .my-other-posts-filter {
        gap: 20px;
    }
}

.my-category-filter__btn {
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    position: relative;
}

.my-category-filter__btn.active,
.my-category-filter__btn[aria-pressed="true"] {
    font-weight: 700;
    /* width: 100%; */
}

/* Conditional visual indicator for active state - controlled by widget settings */
/* These styles will be overridden by widget-specific CSS when the indicator is enabled */

/* Add visual indicator for focus state */
.my-category-filter__btn:focus::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid currentColor;
    border-radius: inherit;
    pointer-events: none;
}

@media screen and (max-width:1180px) {

    .my-other-posts-filter,
    .my-category-filter {
        flex-direction: column;
    }

    .myof-wrapper {
        margin-bottom: 20px;

    }

    .myof-wrapper,
    .myof-wrapper select {
        width: 100%;
    }
}




.uly-team .uly-image-link__description {
    margin-bottom: 0;
}

.team-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);

}

.team-modal__wrapper {
    background: #FAF9F6;
    border-radius: 50px;
    margin: 5% auto;


    width: 90%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.ih_skin button.close {


    font-size: 28px;
    /* font-weight: bold; */

    border-radius: 100%;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    padding: 0;
    border: none;
}

.ih_skin .close:hover,
.ih_skin .close:focus {
    background-color: red;
    text-decoration: none;
    cursor: pointer;
}

/* .ih_skin button.close{
    padding: 0;
    border: none;
} */

.ih_posts_skin .top-text-wrap{
    margin-bottom: 10px;
}

body .ih_skin button, body .ih_skin input[type="button"],body .ih_skin input[type="submit"], body .ih_skin .elementor-button{
    background-color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border-style: inherit;
    border-radius: inherit;
    padding: inherit;
    line-height: inherit;
}

.ih_skin > button{
    display: flex;
    flex-direction: column;
}

.ih_skin .ih-work__front, .ih_skin .ih-work__back, .abs-img-wrap{
    width: 100%;
}


.team-modal__left,
.team-modal__right {
    width: 50%;
}



.team-modal__left img {
    width: 100%;
    height: auto;
}

.team-modal__right {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.arrow-link {


    font-size: 24px;

    position: absolute;
    bottom: 32px;
    right: 32px;
    color: #7EBB55;

}

.team-modal__wrapper .team-modal__right .team-modal__texts .team-modal__title.uly-image-link__text {
    margin-bottom: 0;
}

.team-modal__wrapper .team-modal__left img {
    height: 100%;
    object-fit: cover;
}

.team-modal__subtitle {
    margin-bottom: 20px;
}

.team-modal__texts {
    padding: 52px;
}

@media screen and (max-width:980px) {

    .team-modal__left,
    .team-modal__right {
        width: 100%;
    }

    .team-modal__wrapper {
        flex-direction: column;
        width: 100%;
        /* height: 100%; */
        border-radius: 0;
        margin: 0;
    }

    .team-modal__texts {
        margin-bottom: 48px;
    }

    .team-modal__right {
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.uly-search {
    flex-grow: 1;
}

.uly-search .search-bar {
    width: 100%;
}



.input-wrapper {
    width: 100%;
    height: 100%;
    position: relative;

}

.input-wrapper i {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-wrapper input[type=text],
#search {
    width: 100% !important;
    height: 100% !important;

    /* padding: 28px 56px 28px 80px; */
    /* padding: 17px 56px 17px 80px; */
    padding: 21px 56px !important;
    background: #F8F8F8 !important;
    /* font-size: 24px; */
    font-size: 21px !important;

    /* box-sizing: border-box; */
    border: none !important;
    border-radius: 50px !important;
}

.input-wrapper input:focus {
    outline: none;
    border: 1px solid #007BFF;
}

.input-wrapper input::placeholder {
    color: #aaa;
}

/* i.{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */
.team-modal a svg {
    width: 1em;
}

.deactivate-anchor {
    opacity: 0.5;
    pointer-events: none;
}

.activate-anchor {
    opacity: 1;
    pointer-events: auto;
}

/**/

.elementor-kit-8 a {
    font-size: inherit;
    line-height: inherit;
}

/* Fix button text color - force white text */
.elementor-widget-posts .elementor-button .elementor-button-text .elementor-widget-posts .elementor-button:hover .elementor-button-text,
.elementor-widget-posts .elementor-button:focus .elementor-button-text,
.elementor-widget-posts .elementor-button:active .elementor-button-text {
    color: white;
}

/* Elementor Load More Button Fix */
.elementor-widget-posts .elementor-button,
.elementor-widget-posts .elementor-button-link {
    color: white !important;
}

.elementor-widget-posts .elementor-button:hover,
.elementor-widget-posts .elementor-button:focus,
.elementor-widget-posts .elementor-button:active,
.elementor-widget-posts .elementor-button-link:hover,
.elementor-widget-posts .elementor-button-link:focus,
.elementor-widget-posts .elementor-button-link:active {
    color: white !important;
}

/* Ensure button is visible and properly styled */
/* .elementor-widget-posts .elementor-button,
.elementor-widget-posts .elementor-button-link {
    background-color: #007cba; 
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
} */

/* Loading state styling */
.elementor-widget-posts .elementor-button.deactivate-anchor,
.elementor-widget-posts .elementor-button-link.deactivate-anchor {
    opacity: 0.5;
    pointer-events: none;
}