html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background:#bcbcbc;
}
.canvas-container{
    position: relative;
    top: 0;
    left: 0;
    height: 300vh; 
    background:#bcbcbc;
    display: grid;
}
canvas{
    grid-column: 1/-1;
    grid-row: 1/-1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: opacity .5s linear;
}
#riveCanvas1{
    z-index: 1;
}
.min-h-dvh{
    min-height: 100dvh;
}


.execution {
    background: radial-gradient(at bottom center, #f0f0f0 18%, #c7c7c7 100%);
    padding-block: 60px;
    min-height: 100dvh;
    display: grid;
    position: relative;
    z-index: 1;
}
.h-full {
    height: 100%;
}
.relative {
    position: relative;
}
.container-inner {
    max-width: 1140px;
    margin: 0 auto;
}
.execution-group {
    text-align: center;
}
.flex {
    display: flex;
}
.jcc {
    justify-content: center;
}
.flex-column {
    flex-direction: column;
}
.gp-20 {
    gap: 20px;
}
.execution-title {
    font-size: 18px;
    color: #616161;
    font-family: "Montserrat-SemiBold";
    letter-spacing: 1.76px;
}
.execution-heading {
    font-size: 50px;
    font-weight: 600;
    color: #fafafa;
    letter-spacing: 2px;
    line-height: 1;
}
.m-0 {
    margin: 0;
}
.execution-des {
    font-size: 12px;
    margin-block-start: 60px;
    font-family: "Inter-Medium";
    max-width: 163px;
}
.execution-text {
    font-size: 12px;
    max-width: 625px;
}
.fill {
    background: #fff;
    color: #383838;
    display: flex;
    align-items: center;
}
.fill-secondary, .outline, .fill {
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
    white-space: nowrap;
    font-size: 16px;
    padding: 7px 18px;
    font-family: "Inter-Medium";
    transition: all 0.4sease-in-out;
}
.mt-10 {
    margin-block-start: 10px;
}