:root {}

.header-logo {
    height: 60px;
}

.header-outer,
.float-header-outer {
    width: 100%;
    background-color: var(--Header_Colour);
    color: var(--Header_Text_Colour);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner,
.float-header-inner {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1002;
    position: relative;
    background-color: var(--Header_Colour);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-btn {
    background-color: var(--Button_Colour);
    border-color: var(--Button_Text_Colour);
    color: var(--Button_Text_Colour);
    font-size: var(--Button_Text-Size);
    padding: 1rem 1.5rem;
    border-radius: 9999px;
}

.header-btn:hover {
    background-color: var(--Button_Text_Colour);
    border-color: var(--Button_Colour);
    color: var(--Button_Colour);
}

.header-item {
    font-size: 1.2rem;
}

.hero-inner {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    border-radius: 1.25rem;
    min-height: 40vh;
    position: relative;
}

.hero-background .hero-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    color: var(--Hero_Text_Colour);
    min-height: 40vh;
    width: 100%
}

.hero-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-outer {
    width: 100%;
}

.main-inner {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 768px) {
    .hero-text-main {
        font-size: 5rem !important;
        line-height: 4.8rem !important;
    }
    .hero-text-secondary {
        font-size: 2rem !important;
        line-height: 1.8rem !important;
    }
    .team-member-pad:nth-child(2 of .team-member-pad) {
        padding: 0 !important;
        padding-left: 0.5rem !important;
    }
    .team-member-pad:nth-child(1 of .team-member-pad) {
        padding: 0 !important;
        padding-right: 0.5rem !important;
    }
    .team-member-pad-sm:nth-child(1 of .team-member-pad-sm) {
        padding: 0 !important;
        padding-right: 0.5rem !important;
    }
    .team-member-pad-sm:nth-child(2 of .team-member-pad-sm) {
        padding: 0 !important;
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .team-member-pad-sm:nth-child(3 of .team-member-pad-sm) {
        padding: 0 !important;
        padding-left: 0.5rem !important;
    }
    .hero-video-outer {
        width: 100%;
        max-width: 1280px;
        height: 720px;
        background: transparent;
        color: var(--Hero_Text_Colour);
        margin: 20px auto;
    }
    .bg-video {
        position: absolute;
        width: 100%;
        max-width: 1280px;
        height: 720px;
        object-fit: cover;
        border-radius: 50px;
    }
    .bg-overlay {
        position: absolute;
        width: 100%;
        max-width: 1280px;
        border-radius: 50px;
        height: 720px;
        background-color: rgba(25, 25, 25, .5);
        z-index: 2;
    }
    .hero-video-inner {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 1.25rem;
        height: 720px;
        position: relative;
        z-index: 3;
    }
}

.hero-text-main {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 3.5rem;
}

.hero-text-secondary {
    font-size: 1.2rem;
    line-height: 1.2rem;
}

.hero-outer {
    width: 100%;
}

.hero-cta-btn {
    background-color: var(--Button_Colour);
    border-color: var(--Button_Text_Colour);
    color: var(--Button_Text_Colour);
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
}

.hero-cta-btn:hover {
    background-color: var(--Button_Text_Colour);
    border-color: var(--Button_Colour);
    color: var(--Button_Colour);
}

.services-body-text {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    border-radius: 1.25rem;
}

.request-call-outer {
    background-color: var(--Alt_Background_Colour);
    color: var(--Alt_Text_Colour);
    border-radius: 1.25rem;
}

.featured-services-text-outer {
    background-color: var(--Alt_Background_Colour);
    color: var(--Alt_Text_Colour);
    border-radius: 1.25rem;
}

.featured-service-text-main {
    font-size: 3rem;
    line-height: 3.2rem;
}

.featured-service-text-secondary {
    font-size: 1.5rem;
}
/* ── Service image dynamic height chain ──
   Row (flex, align-items:stretch) 
   → col (flex-column, no vertical margin)
   → outer (flex:1, overflow:hidden)
   → img (height:100%)
   Result: image auto-matches adjacent text card height.
*/

/* Step 1: Row stretches all columns to same height */
.main-inner .row:has(.featured-services-image-outer) {
    align-items: stretch;
}

/* Step 2: Image column — flex-column, no my-2 vertical gaps */
.col-md-5:has(.featured-services-image-outer),
.col-md-6:has(.featured-services-image-outer) {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Step 3: Outer container grows to fill full column height */
.featured-services-image-outer {
    border-radius: 1.25rem;
    overflow: hidden;
    flex: 1;
    min-height: 320px;
}

/* Step 4: Image fills outer container completely */
.featured-services-image {
    width: 100%;
    height: 100% !important;
    min-height: 320px;
    object-fit: cover;
    object-position: center center;
    border-radius: 1.25rem;
    display: block;
}

.text-right-image {
    max-height: 100% !important;
    object-fit: cover;
    border-radius: 1.25rem;
}

.featured-service-cta-btn,
.cta-btn {
    background-color: var(--Button_Colour);
    color: var(--Button_Text_Colour);
    border-radius: 9999px;
    font-size: 1.3rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--Button_Text_Colour);
}

.featured-service-cta-btn:hover,
.cta-btn:hover {
    background-color: var(--Button_Text_Colour);
    border-color: var(--Button_Colour);
    color: var(--Button_Colour);
}

.menu-link {
    color: inherit;
    border-radius: 1.2rem;
    cursor: pointer;
}

.menu-inner-link {
    color: inherit;
    border-radius: 0;
}

.menu-inner-link:hover {
    color: inhert;
    border-radius: 1.2rem;
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    text-decoration: none;
}

.side-menu-link,
.side-menu-link:hover {
    color: inherit;
    border-radius: 0;
}

.menu-link:hover {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    text-decoration: none;
}

.cta-outer {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
}

.cta-smaller {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    border-radius: 1.2rem;
}

.hand {
    cursor: pointer;
}

.bank-logo {
    max-height: 90px;
}

.three-block-inner {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    border-radius: 1.25rem;
}

.callout-icon {
    height: 50px;
    filter: invert(35%) sepia(63%) saturate(6323%) hue-rotate(145deg) brightness(90%) contrast(101%);
}

.cta-outer {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
}

.service-header-outer,
.service-header-outer-offset {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
}

.cta-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.review-outer {
    border-radius: 7px;
    background-color: #FFF;
    color: #000;
}

.review-avatar {
    border-radius: 50%;
    background-color: #e2e2e2;
    height: 50px;
    width: 50px;
}

.box-shadow {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.rating-star {
    color: #ffe137;
    font-size: 1.2rem;
    margin-right: 3px;
}

.rating-logo {
    height: 30px;
}

.info-box-outer {
    border-radius: 1.25rem;
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
}

.service-body-offset {
    max-width: 1100px;
    margin-top: -1.5rem;
    background-color: #FFF;
}

#sidebar {
    width: 350px;
    position: fixed;
    right: -350px;
    height: 100vh;
    z-index: 1001;
    background: var(--Header_Colour);
    color: var(--Header_Text_Colour);
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    top: 76px;
    padding-bottom: 50px;
}

.sidebar-inner {
    padding-bottom: 50px;
}

#sidebar.active {
    right: 0;
}

#dismiss {
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#dismiss:hover {
    background: #fff;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #000;
}

.logos-outer {
    border-radius: 7px;
}

.logos-outer {
    height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.logos-inner {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    white-space: nowrap;
    animation: bannermove 60s linear infinite;
}

.logos-inner .bank-logo {
    margin: 0 0.5em;
}

.bank-logo {
    max-height: 120px;
}

@keyframes bannermove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

.service-outer {
    border-radius: 1.2rem;
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
}

.service-outer:hover {
    transform: scale(1.02);
}

.service-outer-link,
.service-outer-link:hover {
    color: inherit;
}

.review-outer {
    background-color: #FFF;
    border-radius: 1.2rem;
}

.footer-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: cover
}

.footer-outer {
    background-color: var(--Footer_Colour);
    color: var(--Footer_Text_Colour);
}

.footer-link,
.footer-link:hover {
    color: inherit;
}

.footer-hr {
    border-bottom: 1px solid #FFFFFF;
}

.no-style,
.no-style:hover {
    text-decoration: none;
    color: inherit;
}

.small-cta-outer {
    border-radius: 1.2rem;
}

.dropdown-menu {
    border: none;
    border-radius: 1.2rem;
    top: 100% !important;
    transform: none !important;
}

.hero-stars {
    color: #ffcb37;
    font-size: 0.8rem;
}

.rating-outer {
    border-radius: 1.2rem;
    width: fit-content !important;
}

.main-outer {
    transition: opacity 0.4s ease-in;
    /*opacity:0;*/
}

.maree-input {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.75rem;
    border-radius: 0.8rem;
    padding: 25px;
}

.fadeOut {
    opacity: 0;
}

.fadeIn {
    opacity: 1;
}

.hero-image {
    height: 390px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-us-image {
    border-radius: 1.2rem;
    height: 150px;
}

.about-us-outer {
    border-radius: 1.2rem;
    height: 100%;
}

.lt-experience {
    width: 90vw !important;
}

.awards-img {
    max-width: 80%;
}

.highlight-video {
    max-width: 80%;
}

.hero-video-outer {
    width: calc(100% - 1rem);
    height: 790px;
    background: transparent;
    color: var(--Hero_Text_Colour);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bg-video {
    position: absolute;
    width: calc(100% - 1rem);
    height: 790px;
    object-fit: cover;
    border-radius: 50px;
}

.bg-overlay {
    position: absolute;
    width: calc(100% - 1rem);
    max-width: 1280px;
    border-radius: 50px;
    height: 790px;
    background-color: rgba(25, 25, 25, .5);
    z-index: 2;
}

.hero-video-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.25rem;
    height: 790px;
    position: relative;
    z-index: 3;
}

.custom-form-inner {
    background-color: var(--Hero_Background_Colour);
    color: var(--Hero_Text_Colour);
    border-radius: 1.25rem;
}

@media screen and (min-width: 992px) {
    .header-outer-floating {
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: none !important;
        background-color: transparent !important;
        padding-top: 10px;
        z-index: 5;
    }
    .header-inner-floating {
        max-width: 1400px;
        border-radius: 5px;
        padding: 0 10px;
        background-color: var(--Header_Colour) !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    }
}

.bp-logo {
    fill: var(--Footer_Text_Colour);
    height: 20px;
}

.services-image {
    border-radius: 1.2rem;
    max-height: 300px;
    max-width: 100%;
    object-fit: contain;
}

div[data-iris-id] {
    .btn-primary {
        border-radius: 9999px !important;
        font-size: 1.3rem !important;
        padding: 0.5rem 1.5rem !important;
        border: 1px solid var(--Button_Text_Colour) !important;
    }
    .btn-secondary {
        padding: 1rem 1.5rem !important;
        border-radius: 9999px !important;
    }
}

.request-call-outer div[data-iris-id] {
    h5 {
        text-align: center !important;
        font-size: 1.75rem !important;
    }
}

.recent-article-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.article-link,
.article-link:hover {
    text-decoration: none;
    color: inherit;
}

.recent-article-headline {
    font-size: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-article-subtitle {
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cta-image-right {
    object-fit: cover;
    border-radius: 1.25rem;
}

.Base_Class_A {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.Base_Class_B {
    background-color: #243a5b !important;
    color: #ffffff !important;
}

.Base_Class_C {
    background-color: #dedede !important;
    color: #000000 !important;
}

.Base_Class_D {
    background-color: #243a5b !important;
    color: #ffffff !important;
}

.Base_Class_E {
    background-color: #dedede !important;
    color: #000000 !important;
}