:root {
    --banner-bg: #42437D;
    --banner-color: #f9fafb;
    --banner-heading-fontsize: 32px;
    --banner-heading-fontweight: 700;
    --banner-description-fontsize: 17px;
    --banner-description-fontweight: 500;
    --banner-description-lineheight: 24px;
    --page-heading-color: inherit;
    --page-heading-fontsize: 24px;
    --page-heading-fontweight: 600;
    --page-description-color: #575757;
    --page-description-fontsize: 16px;
    --page-description-fontweight: 400;
    --service-item-color: #575757;
    --service-item-fontsize: 18px;
    --service-item-fontweight: 600;
}

@media only screen and (max-width: 768px) {
    :root {
        --banner-heading-fontsize: 24px;
        --banner-description-fontsize: 14px;
        --banner-description-lineheight: 18px;
        --page-heading-fontsize: 18px;
        --page-description-fontsize: 14px;
        --service-item-fontsize: 12px;
    }
}

.banner-section {
    min-height: 550px;
    position: relative;
    background-color: var(--banner-bg);
    background-image: url(../images/landingpage-bg.svg);
    background-repeat: no-repeat;
    -webkit-background-size: cover!important;
    background-size: cover!important;
    background-position: bottom right;
}


.banner-main-heading {
    color: var(--banner-color);
    font-size: var(--banner-heading-fontsize);
    font-weight: var(--banner-heading-fontweight);
    letter-spacing: 0;
}

.banner-main-description {
    color: var(--banner-color);
    font-size: var(--banner-description-fontsize);
    font-weight: var(--banner-description-fontweight);
    letter-spacing: 0;
    line-height: var(--banner-description-lineheight);
}

.digitalwealth_image {
    width: 450px;
    height: 250px;
}

@media only screen and (max-width: 576px) {
    .digitalwealth_image {
        max-width: 375px;
    }
}

.get-started-button {
    color: var(--navbutton-color);
    font-weight: var(--navbutton-fontWeight);
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 32px;
    line-height: 48px;
    padding: 16px 20px;
    text-align: center;
}

a.get-started-button  {
    color: var(--navbutton-color);
}

.api-engine-section .heading {
    color: var(--page-heading-color);
    font-size: var(--page-heading-fontsize);
    font-weight: var(--page-heading-fontweight);
}

.api-engine-section .description {
    color: var(--page-description-color);
    font-size: var(--page-description-fontsize);
    font-weight: var(--page-description-fontweight);
}

.services-section {
    margin-top: 80px;
}

.front-office__services {
    margin-top: 68px;
}

.services-section .heading {
    color: var(--page-heading-color);
    font-size: var(--page-heading-fontsize);
    font-weight: var(--page-heading-fontweight);
    margin-bottom: 32px;
}

.services-items-section .row {
    row-gap: 24px;
}

.service-info {
    box-shadow: 0 2px 30px 4px rgb(15 142 148 / 10%);
    background-color: #fff;
    height: 96px;
    border-radius: 19.2px;
    display: flex;
    align-items: center;
}

.service-info .logo img {
    width: 48px;
    height: 48px;
    margin: 0 16px 0 24px;
}

.service-info .name {
    color: var(--service-item-color);
    font-size: var(--service-item-fontsize);
    font-weight: var(--service-item-fontweight);
}

.left-mid {
    position: relative;
    top: -2px;
}

.left-bottom-md {
    position: relative;
    top: -6px;
}

.api-page-view-btn {
    width: 250px;
    height: 72px;
    border-radius: 34.5px;
    border: #e3eded;
    background-color: #e3eded;
    font-size: 24px;
    font-weight: bold;
    margin-top: 80px;
    color: var(--service-item-color);
}

@media only screen and (max-width: 768px) {
    .left-top, .left-mid, .left-bottom {
        width: 35px;
    }

    .services-section {
        margin-top: 34px;
    }

    .front-office__services {
        margin-top: 24px;
    }

    .service-info {
        height: 48px;
    }

    .services-section .heading {
        margin-bottom: 12px;
    }

    .service-info .logo img {
        width: 24px;
        height: 24px;
        margin: 0 8px 0 12px;
    }

    .api-page-view-btn {
        width: 200px;
        height: 60px;
        margin-top: 24px;
        font-size: 18px;
    }

    .left-mid {
        top: -3px;
    }
}