:root {
    --primaryColor: #9454b4;
    --secondaryColor: #0086cc;
    --textColor: #222;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-size: 17px;
    line-height: 1.6;
    font-family: 'Ubuntu', sans-serif;
    font-display: swap;
    color: var(--textColor);
    font-weight: 300;
}

img {
    height: auto;
}

.text-alt {
    font-family: 'Inter', sans-serif;
}

.site-btn {
    background: #fff;
    padding: 1em 2.5em;
    border-radius: 40px 40px 40px 0;
    border: none;
    outline: none;
    word-spacing: 0.2em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    box-shadow: 0 1px 5px rgba(2, 3, 3, 0.15);
    transition: all 0.4s ease-in-out;
}

.site-btn:hover,
.site-btn:active,
.site-btn:focus {
    box-shadow: 0 3px 25px rgba(2, 3, 3, 0.25);
    border: none;
    outline: none;
}

.site-btn span {
    color: white;
    position: relative;
    z-index: 2;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.site-btn:hover span,
.site-btn:focus span,
.site-btn:active span {
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    color: transparent;
}

.site-btn-alt span {
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
    background-clip: border-box;
    -webkit-background-clip: text;
    color: transparent;
}

.site-btn-alt:hover span,
.site-btn-alt:focus span,
.site-btn-alt:active span {
    color: #fff;
}

.site-btn::before {
    position: absolute;
    inset: -10px;
    content: "";
    width: auto;
    z-index: 1;
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.site-btn:hover::before,
.site-btn:focus::before,
.site-btn:active::before {
    opacity: 0;
}

.site-btn-alt {
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
}

.site-btn-alt::before {
    background: #fff;
}

.site-heading {
    color: var(--primaryColor);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.25;
    text-transform: capitalize;
}

.bg-light1 {
    background: #f6e8ff;
}


/*-------------------- HEADER --------------------*/

.site-header-topbar {
    border-bottom: 1px solid #eaeaea;
    padding: 0.5rem 0;
}

.site-header-topbar span.headsep {
    display: inline-block;
    height: 2.2rem;
    width: 1px;
    background: var(--textColor);
}

.site-header-contact img {
    width: auto;
    height: 2rem;
}

.site-header-contact h5 {
    font-size: 0.9rem;
    margin: 0;
    padding-left: 1em;
    line-height: 1.1;
}

.site-header-contact a,
.site-header-contact a * {
    color: var(--textColor);
    text-decoration: none;
}

.site-header-contact a strong {
    color: var(--primaryColor);
}

.site-logo {
    height: auto;
    width: 14rem;
}

.hamburger-menu {
    cursor: pointer;
}

.site-header .site-btn {
    padding: 0.6em 1.5em;
    font-size: 0.9rem;
}


/*------------- FIXED NAVIGATION --------------*/

@keyframes menuEntry {
    0% {
        height: 0;
        width: 2px;
        background: var(--secondaryColor);
    }
    35% {
        height: 100%;
        width: 2px;
        background: var(--secondaryColor);
    }
    100% {
        height: 100%;
        width: 100%;
        background: var(--primaryColor);
    }
}

@keyframes animateLinks {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes animateCloseBtn {
    0% {
        opacity: 0;
        top: -6rem;
    }
    100% {
        opacity: 1;
        top: 2rem;
    }
}

.site-navigation {
    position: fixed;
    z-index: 9990;
    inset: 0;
    overflow: hidden;
    display: none;
}

.site-navigation.active {
    display: block;
}

.site-navigation::after {
    position: absolute;
    z-index: -1;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: var(--secondaryColor);
    width: 2px;
    height: 0;
}

.site-navigation.active::after {
    animation: 1s menuEntry ease-in-out forwards;
}

.site-navigation-close {
    position: absolute;
    z-index: 3;
    top: -6rem;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.25);
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    cursor: pointer;
}

.site-navigation.active .site-navigation-close {
    animation: 0.5s animateCloseBtn 1s ease-out forwards;
}

.site-navigation-close::after,
.site-navigation-close::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 65%;
    border-radius: 2px;
    background: #f0f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-navigation-close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-navigation-links ul {
    opacity: 0;
    transform: translateY(-100px);
    list-style-type: none;
    margin: 0;
    padding: 50px 0 0 0;
}

.site-navigation-links ul a {
    pointer-events: none;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0.4em;
    width: 100%;
    min-width: 300px;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.site-navigation-links ul a::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: 0;
    background: var(--secondaryColor);
    transform: scaleX(0);
    transition: all 0.4s ease-in-out;
}

.site-navigation-links ul a:hover::after,
.site-navigation-links ul a:focus::after,
.site-navigation-links ul a:active::after {
    transform: scaleX(1);
}

.site-navigation-links ul li {
    padding: 0.2rem;
}

.site-navigation.active .site-navigation-links ul {
    animation: 1s animateLinks 1s ease-out forwards;
}

.site-navigation.active .site-navigation-links ul a {
    pointer-events: all;
}

.sticky-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    background: white;
    transform: translateY(-120%);
    transition: all 0.4s ease-in-out;
}

.sticky-header.active {
    transform: translateY(0);
}

.sticky-header .site-header-topbar {
    display: none !important;
}

.siteHeaderMenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.siteHeaderMenu ul li {
    display: inline-block;
    padding-left: 1rem;
}


.siteHeaderMenu ul li a {
    text-decoration: none;
    color: var(--textColor);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.5em;
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}

.siteHeaderMenu ul li a:hover {
    opacity: 1;
}

.siteHeaderMenu ul li a.active {
    color: var(--secondaryColor);
}


/*----------------- BANNER ------------------*/

.carousel-item {
    height: 38vw;
    z-index: 1;
    min-height: 450px;
    max-height: 700px;
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
}

.carousel-item img {
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center center;
    object-position: center center;
    position: relative;
    z-index: 1;
}

.carousel-item .carousel-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(-45deg, rgba(207, 15, 217, 0.8) 0%, rgba(0, 134, 204, 0.8) 100%);
}

.carousel-item .carousel-content .container,
.carousel-item .carousel-content .row {
    height: 100%;
}

.carousel-content h1 {
    font-weight: 700;
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    color: white;
    text-shadow: 1px 1px 4px rgba(2, 3, 3, 0.25);
}

.carousel-content h1 span {
    font-weight: 900;
    color: var(--primaryColor);
    font-size: 1.3em;
}

.item-one .carousel-content h1 span {
    color: #fff
}

.item-one .carousel-content {
    background: rgba(0, 0, 0, 0.3);
}


/*---------------- HOW IT WORKS ----------------*/

.video-section {
    background-color: #0086cc;
    background-image: url(../assets/images/HowItWorksVideoBack.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.openVideo {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.openVideo img {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.openVideo::after {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

.openVideo::before {
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
    z-index: -1;
}

@-webkit-keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    to {
        opacity: 0;
        transform: scale3d(2, 2, 1);
    }
}

.video-section h5 {
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: capitalize;
}


/*--------------- SEGMENTS -------------------*/

.segments-section,
.pink-bg,
.pink-bg .download-link::before {
    background-color: #f6e8ff;
}

.segment-wrap {
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.25);
    border-radius: 1em 1em 1em 0;
    overflow: hidden;
    transform: translateY(0);
    background: white;
    transition: all 0.45s ease-in-out;
}

.segment-wrap .segment-image {
    width: 100%;
    aspect-ratio: 1;
    background: #e0e0e0;
    position: relative;
    z-index: 1;
}

.segment-wrap .segment-image img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    -webkit-object-fit: cover;
    object-fit: cover;
}

.segment-wrap .segment-title {
    width: 100%;
    aspect-ratio: 1/0.4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 10px;
}

.segment-wrap .segment-title h6 {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0;
}

.segment-wrap .segment-title small {
    position: absolute;
    z-index: 2;
    top: -200px;
    right: 6px;
    display: inline-block;
    background: white;
    border-radius: 30px;
    border-bottom-right-radius: 0;
    line-height: 1;
    color: #000;
    padding: 0.5em 1em;
    font-size: 0.75rem;
    font-weight: 400;
    box-shadow: 0 1px 5px rgba(2, 3, 3, 0.15);
}


/*---------------- INSIGHT ----------------*/

.img250722 {
    height: auto;
    width: 100%;
}


/*------------ CONTACT ------------*/

.contact-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-section::after {
    position: absolute;
    z-index: -1;
    content: "";
    inset: auto 0 0 0;
    height: 250px;
    background: #2b2e30;
}

.form-wrap {
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
    border-radius: 2rem;
    border-bottom-left-radius: 0;
    box-shadow: 0 25px 20px -15px rgba(0, 0, 0, 0.2);
}

.inputBox {
    position: relative;
    z-index: 1;
}

.inputBox .form-control {
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    color: #fff;
    box-shadow: none !important;
    padding-left: 0;
}

.inputBox span {
    color: #fff;
    font-size: 0.95rem;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: left top;
    transform: translateY(-50%) scale(1);
    transition: all 0.3s ease-in-out;
}

.inputBox .form-control:focus~span,
.inputBox .form-control.hasValue~span,
.inputBox .form-control.error~span {
    opacity: 0.8;
    top: 0;
    transform: translateY(-50%) scale(0.7);
    letter-spacing: 2px;
}

.inputBox .form-control.error {
    border-color: #f00;
}

label.error {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    line-height: 1.8;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
}

.enquiry-form label.error,
.modal-body label.error {
    color: #f00;
    left: auto;
    right: 15px;
    padding: 0px 5px;
    background: #fff;
    transform: translateY(50%);
}

.form-group {
    position: relative;
}


/*---------------- FOOTER ------------*/

.site-footer {
    background: #323437;
}

.footer-logo {
    width: 90%;
    height: auto;
    max-width: 300px;
}

.site-footer .download-link::before {
    background-color: #333538;
}

.page-title {
    background: url(../assets/images/pageTitleBG.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-title::before {
    position: absolute;
    content: "";
    z-index: 1;
    inset: -2px;
    background: linear-gradient(-45deg, rgba(207, 15, 217, 0.75) 0%, rgba(0, 134, 204, 0.75) 100%);
}

.page-title .container {
    position: relative;
    z-index: 3;
}

.page-title h5 {
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(2, 3, 3, 0.25);
}

.page-title h1 {
    font-weight: 300;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(2, 3, 3, 0.25);
}


/*------------ Team Member ---------------*/

.team-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1/1.2;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.25);
    transition: all 0.6s ease-in-out;
}

.team-wrap:hover {
    box-shadow: 0 30px 20px -15px rgba(0, 134, 204, 0.2);
}

.team-wrap .img-fluid {
    width: 100%;
    aspect-ratio: 1;
    position: absolute;
    z-index: 1;
    inset: 0;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center center;
    object-position: center center;
}

.team-wrap .team-desc {
    position: absolute;
    z-index: 2;
    background: var(--secondaryColor);
    inset: auto 0 0;
    padding: 20px;
    height: 85px;
    transition: all 0.6s ease-in-out;
}

.team-wrap:hover .team-desc {
    height: 100%;
    padding: 40px 20px 20px;
    pointer-events: none;
}

.team-wrap:hover .team-desc a {
    pointer-events: all;
}

.team-wrap .team-desc h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.team-desc h5 {
    font-size: 0.8rem;
    margin: 0;
}

.team-desc p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(50px);
}

.team-desc p a {
    color: white !important;
    text-decoration: none !important;
}

.team-wrap:hover .team-desc p {
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.8s ease-in-out;
    transition-delay: 0.4s;
}

.team-social {
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.team-social li {
    display: inline-block;
    padding: 0 7px;
}

.team-social img {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 15%;
    background: #fff;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.25);
}

.team-wrap:hover .team-social img {
    box-shadow: none;
}

.insights-ait {
    background: #eff9ff;
    position: relative;
    z-index: 1;
}

.insights-ait::after {
    position: absolute;
    inset: -10px 0 auto 0;
    content: "";
    background: #fff;
    height: 200px;
    z-index: -1;
}

.case-wrap {
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 0.9rem 0.9rem 0.9rem 0;
}

.case-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.55;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-object-position: center center;
    object-position: center center;
}

.case-wrap .case-data {
    padding: 20px 20px 30px;
}

.case-wrap .case-data h2 {
    font-size: 1.3rem;
    font-weight: 700;
}

.case-wrap .case-data p {
    font-size: 0.8rem;
    margin: 0;
}

.testimonial-wrap {
    border: 1px solid #d0d0d0;
    border-radius: 0.9rem 0.9rem 0.9rem 0;
    padding: 30px 30px 30px 50px;
    position: relative;
    z-index: 1;
}

.testimonial-wrap::after {
    position: absolute;
    z-index: 2;
    top: -20px;
    left: -20px;
    content: "";
    background: #fff;
    width: 80px;
    height: 80px;
}

.testimonial-wrap::before {
    position: absolute;
    z-index: 3;
    top: -20px;
    left: -30px;
    content: "";
    background: url(../assets/images/quote.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 70px;
    height: 70px;
    opacity: 0.1;
}

.testimonial-wrap p {
    position: relative;
    z-index: 5;
}

.testimonial-wrap h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-wrap h5 {
    font-size: 0.9rem;
    margin: 0;
}

.cta-wrap {
    background: linear-gradient(-45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
}

.cta-wrap h3 {
    font-weight: 700;
}


/*---------- INFOGRAPHICS ---------*/

.info-box {
    padding: 1rem 2.6rem 1rem 1.6rem;
    border-radius: 0.8rem;
    border-bottom-left-radius: 0;
    position: relative;
    z-index: 1;
    background: #fff;
    min-height: 125px;
    display: flex;
    align-items: center;
}

.info-box::after {
    position: absolute;
    content: "";
    z-index: -1;
    inset: -0.5rem auto -0.5rem -0.5rem;
    background: #000;
    width: 75%;
    border-radius: 1.2rem;
    border-bottom-left-radius: 0;
}

.info-box::before {
    position: absolute;
    content: "";
    z-index: 0;
    inset: 0;
    background: #ffffff;
    border-radius: 0.8rem;
    box-shadow: 6px 6px 15px -3px rgba(0, 0, 0, 0.2);
}

.info-box h6 {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 3;
}

.info-box span {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
}

.info-box span.span-left {
    left: 0;
    display: block;
    width: 15px;
    height: 20px;
    -webkit-clip-path: polygon(0% 0%, 64% 0, 100% 50%, 64% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 64% 0, 100% 50%, 64% 100%, 0% 100%);
}

.info-box span.span-right {
    right: 0;
    display: flex;
    align-items: center;
    text-align: center;
    width: 20px;
    height: 40px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.info-box span.span-right::before {
    position: absolute;
    content: "";
    inset: 0 0 0 -10px;
    z-index: -1;
    -webkit-clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 35% 100%, 0% 50%);
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 35% 100%, 0% 50%);
}

.info-box span.span-right::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    transform: translateY(-50%) translateX(15px);
    z-index: 2;
    border-left: 15px solid;
    border-top: 30px solid;
    border-bottom: 30px solid;
    border-right-width: 0;
}

.infographics-wrap .col-md-4:nth-child(1) .info-box::after,
.infographics-wrap .col-md-4:nth-child(1) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(1) .info-box span.span-right::before {
    background: #009ef3;
}

.infographics-wrap .col-md-4:nth-child(1) .info-box span.span-right::after {
    border-color: #009ef3;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.infographics-wrap .col-md-4:nth-child(2) .info-box::after,
.infographics-wrap .col-md-4:nth-child(2) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(2) .info-box span.span-right::before {
    background: #0682d1;
}

.infographics-wrap .col-md-4:nth-child(2) .info-box span.span-right::after {
    border-color: #0682d1;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.infographics-wrap .col-md-4:nth-child(3) .info-box::after,
.infographics-wrap .col-md-4:nth-child(3) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(3) .info-box span.span-right::before {
    background: #3478be;
}

.infographics-wrap .col-md-4:nth-child(3) .info-box span.span-right::after {
    border-color: #3478be;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.infographics-wrap .col-md-4:nth-child(4) .info-box::after,
.infographics-wrap .col-md-4:nth-child(4) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(4) .info-box span.span-right::before {
    background: #4d71b8;
}

.infographics-wrap .col-md-4:nth-child(4) .info-box span.span-right::after {
    border-color: #4d71b8;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.infographics-wrap .col-md-4:nth-child(5) .info-box::after,
.infographics-wrap .col-md-4:nth-child(5) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(5) .info-box span.span-right::before {
    background: #6969b1;
}

.infographics-wrap .col-md-4:nth-child(5) .info-box span.span-right::after {
    border-color: #6969b1;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.infographics-wrap .col-md-4:nth-child(6) .info-box::after,
.infographics-wrap .col-md-4:nth-child(6) .info-box span.span-left,
.infographics-wrap .col-md-4:nth-child(6) .info-box span.span-right::before {
    background: #8262aa;
}

.infographics-wrap .col-md-4:nth-child(6) .info-box span.span-right::after {
    border-color: #8262aa;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.benefit-img {
    transform-origin: center bottom;
    transform: scale(1.15);
}

.benefit-box {
    padding: 2rem 2rem 2rem 2.6rem;
    border-radius: 0.8rem;
    border-bottom-left-radius: 0;
    position: relative;
    z-index: 1;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 6px 6px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 8px solid var(--primaryColor);
    border-top: 1px solid var(--primaryColor);
}

.benefit-box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--secondaryColor);
    background-image: url(../assets/icons/tick\ mark.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60% 60%;
    border-radius: 50%;
    transform: translateX(-34px) translateY(20px);
}

.benefit-box h5 {
    margin-bottom: 0;
    padding-bottom: 0.6em;
}

.benefit-box p {
    font-size: 0.95rem;
}

.rate-box {
    background: linear-gradient(45deg, var(--secondaryColor), var(--primaryColor));
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.rate-box::after {
    position: absolute;
    inset: 0 0 auto 0;
    content: "";
    height: 20px;
    z-index: 1;
    background: linear-gradient(-135deg, #fff 12px, transparent 0%), linear-gradient(135deg, #fff 12px, transparent 0%);
    background-size: 20px;
    background-position: center;
}

.rate-box::before {
    position: absolute;
    inset: auto 0 0 0;
    content: "";
    height: 20px;
    z-index: 1;
    background: linear-gradient(-45deg, #fff 12px, transparent 0%), linear-gradient(45deg, #fff 12px, transparent 0%);
    background-size: 20px;
    background-position: center;
}

.rate-box h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.rate-box h1 {
    font-size: 4.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}


/*------- Grow mindshare -----------*/

.infographics-wrap.alt .info-box {
    padding: 2rem !important;
    height: 100%;
}

.infographics-wrap.alt .info-box::after {
    inset: -0.5rem -0.5rem auto -0.5rem !important;
    height: 75%;
    width: auto !important;
    border-radius: 1.2rem !important;
}

.infographics-wrap.alt .info-box::before {
    border-bottom-left-radius: 0.8rem !important;
}

.infographics-wrap.alt .info-box h6 {
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
}


/*---------- MODAL ---------------*/

.modal-dialog {
    max-width: 750px;
    margin: 1.75rem auto;
}

.requestModal h6,
.enquiry-form h6 {
    font-size: 0.85rem;
}

.requestModal .form-group,
.enquiry-form .form-group {
    padding-top: 20px;
}

.requestModal .form-control,
.enquiry-form .form-control {
    box-shadow: none !important;
    min-height: 45px;
}

.requestModal .btn-request,
.enquiry-form .btn-request {
    background: var(--secondaryColor);
    box-shadow: none;
    height: 45px;
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.insightDescBox {
    border: 4px solid #fff;
    height: 100%;
    background: #fafafa;
    padding: 30px;
    box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.2), inset 5px 5px 20px rgba(83, 83, 83, 0.1), inset -4px -4px 15px rgba(255, 255, 255, 1);
    border-radius: 1.5rem 1.5rem 1.5rem 0;
}

.insightDescBox h3 {
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    color: white;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 8px 1rem 8px 0;
    margin-bottom: 15px;
}

.insightDescBox h3::after {
    position: absolute;
    content: "";
    z-index: -1;
    background: var(--secondaryColor);
    inset: 0 0 0 -44px;
    box-shadow: 8px 8px 8px -4px rgba(0, 134, 204, 0.2);
}

.insightDescBox h3::before {
    position: absolute;
    content: "";
    z-index: -2;
    background: var(--secondaryColor);
    background: #000;
    left: -44px;
    top: 0;
    bottom: 0;
    width: 10px;
    transform-origin: left top;
    transform: skewY(45deg);
}

.insightDescBox ul {
    list-style-type: none;
}

.insightDescBox ul li {
    position: relative;
    z-index: 1;
    line-height: 1.2;
    padding: 6px 0px 6px 12px;
}

.insightDescBox ul li::before {
    position: absolute;
    content: "";
    top: 13px;
    left: -7px;
    width: 7px;
    height: 7px;
    border: 2px solid #009ef3;
    z-index: -1;
    border-radius: 50%;
}

.insightDescBox ul li::after {
    position: absolute;
    content: "";
    top: 14px;
    left: -30px;
    z-index: -1;
    background: linear-gradient(to right, #fff 25%, #009ef3);
    height: 4px;
    width: 24px;
    transform-origin: right top;
    transform: skewY(30deg);
}

.sealImage {
    position: relative;
    z-index: 1;
}

.sealImage .row {
    position: relative;
    z-index: 2;
}

.sealImage img.seal {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 250px;
    height: 250px;
    transform: translateY(60%);
}

.sealImage .sealimg {
    transform-origin: right top;
    transform: scale(2.5) translate(13%, -20%);
}

.intro .sealimg {
    transform-origin: left top;
    transform: translate(25%, -70%) scale(2.5)
}

.footer-menu,
.footer-bottom {
    background: #2b2e30;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.footer-menu ul li {
    display: inline-block;
    padding: 10px 20px;
}

.footer-menu ul li a {
    color: white !important;
    text-decoration: none !important;
    line-height: 1;
    padding: 0.6em 0;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-bottom small {
    font-size: 0.75rem;
}

.solutionBox {
    border: 1px solid #f6e8ff;
    border-radius: 2em 2em 2em 0;
    height: 100%;
}

.solutionBox.alt {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.2);
    border: none;
}

.solutionBox .site-heading {
    font-size: 2rem;
    color: #6e388a;
}

.solutionPage .solutionBox .site-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ctaSep {
    width: 1px;
    height: 50px;
    background: white;
}

.cta-wrap .site-btn {
    width: 335px;
    max-width: 100%;
}


/*-------- HOW IT WORKS STEPS ------------*/

.step-box {
    position: relative;
    z-index: 2;
    min-height: 200px;
    padding: 55px 20px 30px;
    background: white;
    border-radius: 1.5rem 1.5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondaryColor);
}

.step-box h5 {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #cd0fd8 0%, var(--secondaryColor) 100%);
    transform: translate(-50%, -60%);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.2), inset 5px 5px 20px rgba(83, 83, 83, 0.1), inset -4px -4px 15px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.step-box h5::before {
    position: absolute;
    inset: 7px;
    background: #fdfdfd;
    z-index: 1;
    content: "";
    border-radius: 50%;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5), inset 5px 5px 20px rgba(83, 83, 83, 0.1), inset -4px -4px 15px rgba(255, 255, 255, 0.5);
}

.step-box h5 span {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.step-box h5 span span {
    position: relative;
    inset: auto;
    font-size: 1.8em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1;
}

.step-box h6 {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}