:root {
    --navbarHeight: 76px;
    --primaryColor: #32FCA7;
    --primaryGradient: linear-gradient(89.95deg, #32FCA7 0.69%, #049A5B 66.35%);

    --gradient1: linear-gradient(89.95deg, #32FCA7 0.69%, #049A5B 66.35%);
    --gradient3: linear-gradient(89.95deg, #FFFFFF 0.69%, #CCCCCC 66.35%);

    /* Green Component */
    --greenText: #32FCA7;
    --greenGradientText: linear-gradient(91.37deg, #32FBA6 -1.35%, #049A5B 102.29%);
    --greenBackground: rgba(50, 252, 167, 0.1);

    /* Yellow Component */
    --yellowText: #F8D90F;
    --yellowGradientText: linear-gradient(267.17deg, #F8D90F 1.13%, #C4AC10 96.4%);
    --yellowBackground: rgba(248, 217, 15, 0.1);

    /* White Component */
    --whiteText: #FFFFFF;
    --whiteGradientText: linear-gradient(92.03deg, #FFFFFF 2.09%, #2C2C2C 229.97%);
    --whiteBackground: rgba(255, 255, 255, 0.1);
}

@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Thin.ttf');
    font-weight: 100;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-ExtraLight.ttf');
    font-weight: 200;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Bold.ttf');
    font-weight: 700;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-ExtraBold.ttf');
    font-weight: 800;
}
@font-face {
    font-family: Inter ;
    src: url('/assets/Inter/Inter-Black.ttf');
    font-weight: 900;
}

body, html {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: Inter, sans-serif;
}

body {
    background: linear-gradient(0.02deg, #050505 2.1%, #232323 33.81%, #000000 114.87%);
}

.navbar {
    width: 100%;
    height: var(--navbarHeight);
    background: linear-gradient(90deg, #151515 10.52%, #000000 88.68%);
    position: fixed;
    z-index: 99;
    top: 0;
}

.navbarContent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navbarElement {
    flex: 1;
}

.navbarElement:nth-of-type(2) {
    display: flex;
    justify-content: center;
}

.navbarElement:nth-of-type(3) {
    display: flex;
    justify-content: end;
}

.navbarLink {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #32FCA7;
    text-decoration: none;
}

.navbarLink i {
    margin-left: 10px;
} 

.navButton {
    width: 176px;
    height: 53px;
    border: solid 3px #32FCA7;
    box-sizing: border-box;
    border-radius: 18px;
    background-color: transparent;
    color: #32FCA7;
    margin-right: 45px;
    transition: color 0.4s, background-color 0.4s;
}

.navButton:hover {
    background-color: #32FCA7;
    color: black;
    transition: color 0.4s, background-color 0.4s;

}

.onpageNavigation {
    display: flex;
    justify-content: center;
    margin-top: 130px;
    margin-bottom: 130px;
}

.b2bHeaderContainer {
    width: 100%;
    padding-top: var(--navbarHeight);
    background: radial-gradient(91.79% 91.79% at 50% 59.3%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.apiHeaderContainer {
    width: 100%;
    padding-top: var(--navbarHeight);
    background: radial-gradient(91.79% 91.79% at 50% 59.3%, #2C2C2C 0%, rgba(19, 19, 19, 0) 100%);
    mix-blend-mode: normal;
    text-align: center;
}

.b2bHeaderContainer img {
    width: 100%;
    margin-top: 30px;
}

.apiHeaderContainer img {
    width: 50%;
    margin-top: 50px;
}

.preHeadline {
    margin-top: 130px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-align: center;

    background: var(--primaryGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    text-align: center;

    background: linear-gradient(89.95deg, #FFFFFF 0.69%, #CCCCCC 66.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2 {
    margin-top: 50px;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 200%;
    text-align: left;
    padding-bottom: 30px;
}

.greenComponent h2 {
    background: var(--greenGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.yellowComponent h2 {
    background: var(--yellowGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.whiteComponent h2 {
    background: var(--whiteGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.onpageNavigation a {
    text-decoration: none;
}

.navigationTab, .activeNavigationTab {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 134px;
    height: 46px;
    border-radius: 30px;
    font-size: 20px;
    margin-left: 20px;

    background: rgba(50, 252, 167, 0.1);
    color: rgb(50, 252, 167, 0.5);
}

.navigationTab:hover {
    cursor: pointer;
    background: rgba(50, 252, 167, 0.3);
    color: rgb(50, 252, 167);
}

.activeNavigationTab {
    background: rgba(50, 252, 167, 0.3);
    color: rgb(50, 252, 167);
}

.footer {
    width: 100%;
    height: 272px;
    background: linear-gradient(272.75deg, #151515 0%, #2C2C2C 100%);
}

/* Canvas */

.offcanvas-button {
    -webkit-appearance: none;
    appearance: unset;
}

.menu-icon div {
    width: 27px;
    height: 3px;
    background-color: #32FBA6;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 2px;
  }

  .nav-links-offcanvas a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    letter-spacing: 1.4px;
    font-size: 16px;
    margin-bottom: 18px;
    transition: color 0.5s;
}

.nav-links-offcanvas a div{
    margin-left: 10px;
    margin-bottom: 2px;
}

.nav-links-offcanvas a:hover {
    color: #32FCA7;
    transition: color 0.5s;
}

/* Contact Form */

#contact-form-submit-button {
    width: 100%;
    background-color: rgba(0,0,0,0);
    border: 2px solid #32FCA7;
    color: #32FCA7;
    border-radius: 9px;
}

#contact-form-submit-button:hover {
    color: #000;
    background-color: #32FCA7;
    transition: background-color 0.5s, color 0.5s;
}

/* Footer */

.footerSections {
    height: 272px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.footerSocialIcons {
    width: 52px; 
    height: 52px; 
    background-color: #1D1D1D; 
    border-radius: 10px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.footerLinks {
    font-size: 20; 
    font-weight: 200; 
    color: white; 
    text-decoration: none;
}

.footerLinks:hover {
    color: #32FCA7;
}

.footerCopyright {
    text-align:end; 
    border-top: 1px solid white; 
    padding-top: 30px; 
    font-weight: 200; 
    font-size: 12px !important;
}

/* Component Transition */

.hiddenText {
    opacity: 0;
    transition: all 0.6s;
    transition-delay: 0.3s;
    transform: translateY(-80px);
    
}

.hiddenImage {
    opacity: 0;
    transition: all 0.6s;
    transition-delay: 0.3s;
    position: relative;
}

.float-in-text {
    opacity: 1;
    transform: translateY(-150px);
}

.float-in-image {
    opacity: 1;
    top: -230px;
    transform: translateY(80px);
}

/* Others */

.gradientHeading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(94.24deg, #FFFFFF 4.22%, #2C2C2C 144.02%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradientText {
    background: linear-gradient(90.32deg, #32FCA7 0.84%, rgba(5, 190, 112, 0.8) 99.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 20px; 
    font-weight: 300; 
    line-height: 24px;
}

.halfComponent {
    height: 800px;
    display: flex;
    align-items: center;
}

.divider {
    height: 10px;
}

.appStoreButtons {
    width: 175px; 
    padding-bottom: 10px;
}

.appStoreButtons:hover {
    opacity: 0.75;
    cursor: pointer;
  }

.plainLink:hover {
    color: #32FCA7;
    opacity: 0.5;
}

/* Responsive Design */

@media only screen and (max-width: 500px) {
    .navButton {
        display: none;
    }

    .footerSections:nth-of-type(1), .footerSections:nth-of-type(2) {
        height: 200px;
        width: 100%;
    }

    .footer {
        height: 700px !important;
    }
}

@media only screen and (max-width: 991px) {
    .halfComponent {
        height: 50vh !important;
        text-align: center;
    }

    .footer {
        height: 600px;
    }

    .icons {
        margin: 0 auto; 
    }

    .footerSections:nth-of-type(3) {
        align-items: center !important;
    }

    .idScoreIcon {
        width: 75px !important;
    }

    .fundamentalIcon {
        width: 100px !important;
    }

    .halfComponent:nth-child(even) {
        justify-content: center !important;
    }

    .thirdComponentImage {
        width: 30%;
    }

    .secondComponentImageContainer {
        justify-content: center !important;
        margin-top: 50px;
    }

    .thirdComponentImageContainer {
        margin-top: 50px;
    }

    .firstContainer {
        padding-top: 250px !important;
    }

    .secondContainer, .thirdContainer {
        margin-top: 200px;
    }

    .navButton {
        width: 150px;
        height: 40px;
    }

    .appStoreButtons {
        width: 140px;
    }
  }

  @media only screen and (max-width: 1200px) and (min-width: 992px)  {
    .firstContainerImage {
        width: 100% !important;
    }
  }

  @media only screen and (min-width: 319px) {
        .bannerButtons:nth-of-type(2) {
            margin-left: 10px;
        }
    }


/* Reusable Component */

.reusableHeader {
    border: 4px solid #494949;
    border-radius: 30px;
    position: relative;
    text-align: center;
}

/* Gradients left and right of image container */

.greenComponent .reusableHeader {
    -webkit-box-shadow: -111px 0px 150px -33px rgba(50,252,167,0.1);
    -moz-box-shadow: -111px 0px 150px -33px rgba(50,252,167,0.1);
    box-shadow: -111px 0px 150px -33px rgba(50,252,167,0.1);
}

.yellowComponent .reusableHeader {
    -webkit-box-shadow: 111px 0px 150px -33px rgba(248,217,15,0.1);
    -moz-box-shadow: 111px 0px 150px -33px rgba(248,217,15,0.1);
    box-shadow: 111px 0px 150px -33px rgba(248,217,15,0.1);
}

.whiteComponent .reusableHeader {
    -webkit-box-shadow: -111px 0px 150px -33px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: -111px 0px 150px -33px rgba(255, 255, 255, 0.1);
    box-shadow: -111px 0px 150px -33px rgba(255, 255, 255, 0.1);
}

.reusableHeader img {
    width: 100%;
    filter: grayscale(100%) brightness(50%);
    border-radius: 30px;
}

.imageHeading {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.imageHeadingMobile {
    z-index: 9;
    position: absolute;
    bottom: -5px;
    padding-left: 5%;
    text-align: left;

    font-style: normal;
    font-weight: 600;
    font-size: 20px;
}

.greenComponent .imageHeadingMobile {
    background: var(--greenGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.yellowComponent .imageHeadingMobile {
    background: var(--yellowGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.whiteComponent .imageHeadingMobile {
    background: var(--whiteGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.reusableHeadlineMobile {
    padding-left: 20.35px;
}

.reusableHeadlineMobile span:nth-of-type(1) {
    margin-top: 25px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
}

.reusableHeadlineMobile span:nth-of-type(2) {
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.15px;
    margin-right: 0px;
    display: inline-block;
    margin-bottom: 25px;
    color: #ffffff;
}

.greenComponent > .reusableHeadlineMobile span:nth-of-type(1) {
    background: var(--greenGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.yellowComponent > .reusableHeadlineMobile span:nth-of-type(1) {
    background: var(--yellowGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.whiteComponent > .reusableHeadlineMobile span:nth-of-type(1) {
    background: var(--whiteGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.reusableHeader p span:nth-of-type(1) {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
}

.reusableHeader p span:nth-of-type(2) {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    color: #fff
}

/* Top heading of text above image */

.greenComponent > .reusableHeader p span:nth-of-type(1) {
    background: var(--greenGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.yellowComponent > .reusableHeader p span:nth-of-type(1) {
    background: var(--yellowGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.whiteComponent > .reusableHeader p span:nth-of-type(1) {
    background: var(--whiteGradientText);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.ctaButton {
    width: 50px;
    height: 29px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Arrow-Button in outterContentCard */

.greenComponent .ctaButton {
    border: 1px solid var(--greenText);
    color: var(--greenText);
}

.yellowComponent .ctaButton, .apiArrow {
    border: 1px solid var(--yellowText);
    color: var(--yellowText);
}

.whiteComponent .ctaButton {
    border: 1px solid var(--whiteText);
    color: var(--whiteText);
}

.buttonContainer a:nth-of-type(1) .contentCTA .ctaButton {
    border: 1px solid var(--whiteText);
    color: var(--whiteText);
    margin-left: 30px;
}

.buttonContainer a:nth-of-type(2) .contentCTA .ctaButton {
    border: 1px solid var(--whiteText);
    color: var(--whiteText);
    margin-right: 30px;
}

.buttonContainer a:nth-of-type(3) .contentCTA .ctaButton {
    border: 1px solid var(--whiteText);
    color: var(--whiteText);
    margin-left: 30px;
}

/* Array-Button on header-image */

.reusableHeaderCTA {
    position: absolute;
    right: 2%;
    bottom: 5%;
    z-index: 20;
}

.reusableContent {
    margin-top: 50px;
}

.contentCard{
    background: #2C2C2C;
    border-radius: 30px;
}

.innerContentCard {
    border-radius: 30px;
    padding: 30px;
}

.leftCard {
    background: linear-gradient(90.69deg, rgba(29, 29, 29, 0) 0.64%, #1D1D1D 99.46%), linear-gradient(90.38deg, rgba(29, 29, 29, 0) 0.32%, #1D1D1D 98.77%), linear-gradient(90deg, rgba(29, 29, 29, 0) 0%, #1D1D1D 100%);
}

.rightCard {
    background: linear-gradient(90.69deg, #1D1D1D 0.64%, rgba(29, 29, 29, 0) 99.46%), linear-gradient(90.38deg, #1D1D1D 0.32%, rgba(29, 29, 29, 0) 98.77%), linear-gradient(90deg, #1D1D1D 0%, rgba(29, 29, 29, 0) 100%);
}

.innerContentCard p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #cccccc;
}

.innerContentCard span:not(:first-child) {
    font-style: italic;
    font-size: 18px;
    color: var(--primaryColor)
}

.outerContentCard {
    padding: 30px;
    margin-bottom: 20px;
}

.outerContentCard div:hover {
    cursor: pointer;
}

.contentCTA, .apiCTA {
    border-radius: 15px;
    padding: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.greenComponent .contentCTA {
    background: var(--greenBackground);
    border: 1px solid var(--greenText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--greenText);
}

.yellowComponent .contentCTA {
    background: var(--yellowBackground);
    border: 1px solid var(--yellowText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--yellowText);
}

.whiteComponent .contentCTA {
    background: var(--whiteBackground);
    border: 1px solid var(--whiteText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--whiteText);
}

.buttonContainer a:nth-of-type(1) .contentCTA {
    background: var(--whiteBackground);
    border: 1px solid var(--whiteText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--whiteText);
    margin-right: 10px;
}

.buttonContainer a:nth-of-type(2) .contentCTA {
    background: var(--whiteBackground);
    border: 1px solid var(--whiteText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--whiteText);
    margin-right: 10px;
}

.buttonContainer a:nth-of-type(3) .contentCTA {
    background: var(--whiteBackground);
    border: 1px solid var(--whiteText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--whiteText);
    margin-left: 10px;
}

.buttonContainer a:nth-of-type(1) .contentCTA:hover ,
.buttonContainer a:nth-of-type(2) .contentCTA:hover,
.buttonContainer a:nth-of-type(3) .contentCTA:hover {
    background: var(--greenBackground);
    border: 1px solid var(--greenText);
    color: var(--greenText);
}

.buttonContainer a:nth-of-type(1) .contentCTA:hover .ctaButton, 
.buttonContainer a:nth-of-type(2) .contentCTA:hover .ctaButton,
.buttonContainer a:nth-of-type(3) .contentCTA:hover .ctaButton {
    border: 1px solid var(--greenText);
    color: var(--greenText);
}

.contentCardWithImage {
    display: flex; 
    flex-direction: row;
}

.contentInfo {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #cccccc;
}

.contentCardText {
    padding-top: 30px;
    color: #ffffff !important;
}

.contentCardTextContainer h6 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    padding-bottom: 20px;
    color: #ffffff;
}

.contentCardTextContainer p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    padding-bottom: 20px;
    color: #cccccc;
}

.contentCardImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentCardImage img {
    width: 100%;
}

.contentCardImage2 {
    width: 80%; 
    padding-top: 25px;
}

.reusableComponent {
    margin: 0;
}

.reusableComponent:not(:first-of-type) {
    margin-top: 300px;
}

.reusableComponent:nth-of-type(even) > h2.reusableHeadline {
    justify-content:end;
}

@media only screen and (max-width: 991px) {
    .reusableHeader p {
        width: 100%;
    }

    .reusableHeader p span:nth-of-type(1) {
        font-size: 15px;
    }

    .reusableHeader p span:nth-of-type(2) {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1200px) {
    .contentCardText {
        padding-top: 0px;
    }

    .contentCardImage {
        margin: auto;
    }

    .contentCardImage2 {
        width: 60%; 
        padding-top: 25px;
    }
}

.primaryColor {
    color: var(--primaryColor)
}

.greenText {
    color: var(--greenText)
}

.yellowText {
    color: var(--yellowText)
}

.whiteText {
    color: var(--whiteText)
}

.logo {
    height: 25px;
}

.naroApiContainer h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.15px;
    line-height: 55px;
    color: #ccc;
}

.naroApiContainer p:nth-of-type(1) {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.15px;
    color: #F8D90F
}

.naroApiContainer p:nth-of-type(2) {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0.15px;
    color: #CCCCCC;
}

.overviewContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.overviewContainer a {
    text-decoration: none;
    width: 23%;
}

.overviewElementContainer {
    border-radius: 20px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.greenContainer {
    background: var(--greenBackground);
    border: 1px solid var(--greenText);
    color: var(--greenText);
}

.yellowContainer {
    background: var(--yellowBackground);
    border: 1px solid var(--yellowText);
    color: var(--yellowText);
}

.whiteContainer {
    background: var(--whiteBackground);
    border: 1px solid #FFFFFF;
    color: var(--whiteText)
}

.overviewContainerHeading {
    width: 100%;
    height: 60%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overviewContainerHeading p {
    margin: 0;
    font-size: 20px;
}

.overviewContainerImage {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.overviewContainer a:nth-of-type(1) .overviewContainerImage {
    background-image: url("../assets/ID Score.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center; 
}


.overviewContainer a:nth-of-type(2) .overviewContainerImage {
    background-image: url("../assets/scores.png");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center; 
    background-color: rgba(0, 0, 0, 0.2);
}

.overviewContainer a:nth-of-type(3) .overviewContainerImage {
    background-image: url("../assets/raw-Data-Header.png");
    background-size:cover;
}

.overviewContainer a:nth-of-type(4) .overviewContainerImage {
    background-image: url("../assets/construction-Diagram.png");
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: top;
    background-position-y: 10px;
}

/* Responsive Design */

@media only screen and (max-width: 576px) {
    .reusableHeader {
        border: 2px solid #494949;
        border-radius: 15px;
    }

    .innerContentCard, .contentCard {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .logo {
        height: 18px;
    }

    .navbarLink, .preHeadline, .contentCTA, .apiCTA {
        font-size: 14px;
    }

    .contentCTA {
        padding: 10px;
        border-radius: 10px;
    } 

    .contentInfo {
        font-size: 18px;
    }

    .contentCardTextContainer p, .innerContentCard p {
        font-size: 18px;
    }

    .navigationTab, .activeNavigationTab {
        font-size: 14px;
        width: 95px;
        height: 38px;
        margin: 2px;
    }

    .navbarLink i {
        margin-left: 5px;
    }

    .menu-icon div {
        width: 20px;
        height: 2px;
        background-color: #32FBA6;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 2px;
    }

    h1, .contentCardTextContainer h6 {
        font-size: 26px;
    }

    .reusableHeaderCTA {
        right: 4%;
        bottom: 10px;
    }

    .contentCardWithImage {
        display: flex; 
        flex-direction: row;
    }

    .contentCardImage {
        text-align: center;
    }

    .contentCardImageMobile {
        width: 150px;
    }

    .contentCardImage2 {
        width: 100%; 
        padding-top: 25px;
    }

    .ctaButton {
        width: 40px;
        height: 24px;
    }

    .submitButton {
        margin-top: 25px;
    }

    .reusableComponent:not(:first-of-type) {
        margin-top: 150px;
    }

    .preHeadline {
        margin-top: 50px;
    }

    .onpageNavigation {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .reusableHeader img {
        border-radius: 15px;
    }

    .buttonContainer a:nth-of-type(1) .contentCTA {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    
    .buttonContainer a:nth-of-type(3) .contentCTA {
        margin-left: 0px;
        margin-top: 10px;
    }

    .overviewContainer a {
        width: 60%;
        margin-bottom: 15px;
    }

    .overviewElementContainer {
        height: 100px;
    }

    .overviewContainerHeading p {
        font-size: 16px;
    }

    .overviewContainer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
    .reusableHeader {
        border: 2px solid #494949;
        border-radius: 15px;
    }
    
    .contentCard, .contentCard {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .logo {
        height: 20px;
    }

    .navbarLink, .preHeadline, .navigationTab, .contentCTA, .apiCTA, .activeNavigationTab {
        font-size: 16px;
    }

    .contentCTA {
        padding: 10px;
        border-radius: 10px;
    } 

    .navigationTab:not(:last-of-type) {
        margin-right: 14px;
    }

    .contentCardTextContainer p, .innerContentCard p {
        font-size: 18px;
    }

    h1, .contentCardTextContainer h6 {
        font-size: 32px;
    }

    .contentCardImage2 {
        width: 100%; 
        padding-top: 25px;
    }

    .ctaButton {
        width: 43px;
        height: 26px;
    }

    .contentInfo {
        font-size: 18px;
    }

    .submitButton {
        margin-top: 25px;
    }

    .reusableComponent:not(:first-of-type) {
        margin-top: 150px;
    }

    .preHeadline {
        margin-top: 50px;
    }

    .reusableHeader img {
        border-radius: 15px;
    }

    .buttonContainer a:nth-of-type(1) .contentCTA {
        margin-right: 0px;
        margin-bottom: 10px;
    }
    
    .buttonContainer a:nth-of-type(3) .contentCTA {
        margin-left: 0px;
        margin-top: 10px;
    }

    .overviewContainer a {
        width: 48%;
        margin-bottom: 15px;
    }

    .overviewElementContainer {
        height: 120px;
    }

    .overviewContainerHeading p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
    .logo {
        height: 22px;
    }

    .navbarLink, .preHeadline, .navigationTab, .contentCTA, .apiCTA, .activeNavigationTab {
        font-size: 18px;
    }

    .navigationTab:not(:last-of-type) {
        margin-right: 16px;
    }

    h1, .contentCardTextContainer h6 {
        font-size: 36px;
    }

    .ctaButton {
        width: 46px;
        height: 28px;
    }

    .onpageNavigation {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .overviewContainer a {
        width: 48%;
        margin-bottom: 15px;
    }

    .overviewElementContainer {
        height: 120px;
    }

    .overviewContainerHeading p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
    .contentCardImage img {
        width: 75%;
    }

    .overviewElementContainer {
        height: 120px;
    }

    .overviewContainerHeading p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1200px) {
    .contentCardHeading {
        width: 50%; 
        margin-right: 10%;
    }
}

.contactForm label {
    font-family: 'Inter';
    color: rgba(255, 255, 255, 0.5);
}

.contactForm input, .contactForm textarea {
    background: #1D1D1D;
    border: 2px solid #494949;
    border-radius: 10px;
    color: white !important;
}

.contactForm input:focus:not([type=checkbox]), .contactForm textarea:focus {
    background: #1D1D1D !important;
    border-color: #049A5B;
    box-shadow: none;
    outline: 0 none;
}

.submitContainer {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}

.submitButton {
    width: 100%;
    background: rgba(50, 252, 167, 0.1);
    border: 1px solid var(--primaryColor);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--primaryColor);

    border-radius: 15px;
    padding: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

::-webkit-scrollbar {
    background: transparent;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
    width: 0.1px;
}

.apiCodeContainer {
    position: relative;
}

.apiCTA {
    background: rgba(248, 217, 15, 0.1);
    border: 1px solid var(--yellowText);
    box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.5);
    color: var(--yellowText);
}

.apiCTA:hover {
    cursor: pointer;
}

.apiArrow {
    width: 50px;
    height: 29px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--yellowText);
    margin-left: 15px;
}

.contentContainer h2, .contactContainer h2 {
    color: #ccc;
    line-height: 55px;
}

.topContainer {
    height: calc(50vh - var(--navbarHeight));
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: var(--navbarHeight)
}

.bottomContainer {
    height: 50vh;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items:end;
}

a {
    text-decoration: none;
}

