/* General */
:root {
    --new-blue: #0f315a;
}
html {
    font-size: 16px;
}

h1, .h1 {
    color: var(--new-blue);
}

.btn-primary {
    --bs-btn-bg: #E08C18;
}

/* Header */
header {
    padding: 0;
    box-shadow: var(--bs-box-shadow-sm);
}
header > .container > .inner {
    transition: all .3s ease;
}
header.sticky > .container > .inner {
    padding: 0 !important;
}
#main-menu > .navbar-nav {
    align-items: center;
}
#main-menu .btn.menu-item {
    padding: 0;
    margin-left: 1rem;
}
#main-menu .btn.menu-item > .nav-link {
  padding: 0.625rem 1.75rem;
  color: inherit;
  font-weight: 600;
}

/* Banner */
.flex-content.banner {
    min-height: 1px;
}
.flex-content.banner .overlay {
    background: linear-gradient(90deg, #f6f4f5 30%, rgba(255, 255, 255, 0) 80%);
    mix-blend-mode: normal;
}
.flex-content.banner h1.main-title {
    font-weight: 700;
    color: var(--new-blue);
    font-size: clamp(1.875rem, 1.4761rem + 1.2766vw, 2.625rem);
}
.flex-content.banner .text {
    color: var(--new-blue);
    font-weight: 400;
}
.flex-content.banner .text::before {
    content: "";
    display: block;
    width: 90%;
    height: 2px;
    background-color: rgba(0, 0, 0, .15);
    margin: 1rem 0 1.25rem 0;
}
.flex-content.banner .trust-bar {
    position: relative;
    background-color: #FFF;
    margin-top: 2rem;
    padding: 1rem calc(var(--bs-gutter-x) * .5) .5rem;
    max-width: 100%;
    flex: 1 1 auto;
    max-width: fit-content;
}
.flex-content.banner .trust-bar::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    background-color: #FFF;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc(100% + 50dvw);
    z-index: 1;
    box-shadow: var(--bs-box-shadow-sm);
}
.flex-content.banner .trust-bar ul {
    position: relative;
    z-index: 3;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}
.flex-content.banner .trust-bar ul li {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--new-blue);
}
@media (min-width: 768px) {
    .flex-content.banner .trust-bar ul li + li {
        margin-left: 1rem;
    }
    .flex-content.banner .trust-bar ul li + li::before {
        content: "|";
        display: inline-block;
        margin-right: 1rem;
        color: var(--bs-secondary);
    }
}
.flex-content.banner .trust-bar ul li img {
    filter: invert(12%) sepia(77%) saturate(1325%) hue-rotate(189deg) brightness(100%) contrast(94%);
}
@media(min-width: 1200px) and (max-width: 1400px) {
    .flex-content.banner .trust-bar ul li {
        font-size: .875rem;
    }
}
@media(min-width: 992px) and (max-width: 1199px) {
    .flex-content.banner .trust-bar ul li {
        font-size: .675rem;
    }
}
@media(min-width: 768px) and (max-width: 991px) {
    .flex-content.banner .trust-bar ul li {
        font-size: .5rem;
    }
    .flex-content.banner .trust-bar ul li + li::before {
        margin-right: .5rem;
    }
}
@media (max-width: 767px) {
    .flex-content.banner .trust-bar ul {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: .5rem;
    }

}

/* badges */
.flex-content.trust-badges h2.main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--new-blue);
}
.flex-content.trust-badges .badges {
    margin: 3rem 0;
}
.flex-content.trust-badges .badges > div {
    text-align: center;
}
.flex-content.trust-badges .badges img {
    filter: grayscale(100%);
    width: 160px;
}
.flex-content.trust-badges .ctas a {
    text-decoration: none;
}
@media (max-width: 767px) {
    .flex-content.trust-badges h2.main-title {
        font-size: 24px;
    }
}

/* testimonial */
.flex-content.testimonials {
    background-color: rgba(var(--bs-secondary-rgb),1);
    padding: 50px 0;
}
.flex-content.testimonials .row {
    justify-content: center;
}
.flex-content.testimonials .card > .d-flex {
    display: none !important;
}
.flex-content.testimonials .cta {
    text-align: center;
    padding: 3rem .75rem 0;
}
@media (min-width: 768px) {
    .flex-content.testimonials .col-md-5 {
        width: 33.33333333%;
    }
}


#services {
    background: linear-gradient(135deg,rgba(2, 0, 36, 1) 0%, rgba(82, 127, 184, 1) 100%);
}
#services .container {
    max-width: 72rem;
}
#services .h1 {
    color: #FFF;
}
#services .items {
    --bs-gutter-x: 3rem;
}
#services .outer {
    display: flex;
    flex-direction: column;
}
#services .tile {
    padding: 2rem 3rem;
    box-shadow: var(--bs-box-shadow-sm);
    background-color: var(--bs-white);
    border-radius: var(--bs-border-radius);
    height: 100%;
}
#services .tile h4 {
    padding-bottom: 0 !important;
    margin-bottom: 1rem !important;
}
#services .tile h4::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--bs-secondary);
    margin-top: 1rem;
}
#services .tile a {
    text-decoration: none;
    font-weight: 600;
    /* color: #DB9D47; */
}


#why {
    background-color: rgba(var(--bs-secondary-rgb),1);
    padding-bottom: 42px;
}
#why .tile {
    /* background-color: #FFF !important; */
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
}
#why .tile .icon-wrap {
    flex: 1 0 60px;
    max-width: 60px;
    height: 60px;
    background-color: #FFF !important;
    box-shadow: var(--bs-box-shadow-sm);
    padding: .875rem;
}
#why .tile .icon-wrap img {
    filter: invert(31%) sepia(86%) saturate(594%) hue-rotate(176deg) brightness(89%) contrast(93%);
}
#why .tile .h5 {
    font-size: 18px;
}


#process .items > div:nth-child(1) .badge {
    background-color: #DE3C4B !important;
}
#process .items > div:nth-child(3) .badge {
    background-color: #08A045 !important;
}
#process .tile {
    text-wrap: balance;
    padding-top: 0;
    padding-bottom: 2rem;
}
#process .tile .badge {
    font-size: 42px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -30px;
    box-shadow: var(--bs-box-shadow-sm);
}
#process .tile .badge span {
    display: block;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: .8;
    margin-top: -5px;
}
#process .cta .btn {
    --bs-btn-padding-y: 0.785rem;
    --bs-btn-padding-x: 2rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-border-radius: var(--bs-border-radius-lg);
}
@media (max-width: 992px) {
    #process .main-title {
        margin-bottom: 2rem;
    }
}


#contact-bar {
    background: linear-gradient(315deg,rgba(2, 0, 36, 1) 0%, rgba(82, 127, 184, 1) 100%);
}