.aboutHeroSection {
    background: url(../img/img_landing_hero_desktop.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutTextWrapper {
    color: var(--white);
}

.aboutTextWrapper h1 {
    font-size: 3rem;
    line-height: 1.8;
    font-weight: 800;
}

.aboutTextWrapper p {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

.aboutSection {
    background: url(../img/img_landing_about.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}

.sectionHeaderWrapper {
    text-align: center;
}

.sectionLabel {
    color: var(--green-dark);
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.sectionTitle {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sectionSubtitle {
    font-size: 1.125rem;
    color: var(--font-steel-grey);
    line-height: 1.5;
}

.aboutFigureWrapper {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 200px;
}

.aboutFigureWrapper li {
    text-align: center;
}

.aboutFigureWrapper li .figureContent {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--font-primary);
}

.aboutFigureWrapper li .figureTitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--font-steel-grey);
}

.exclusiveContentWrapper {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    gap: 5rem;
    margin: 120px 0;
}

.exclusiveContentWrapper li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.exclusiveIconWrapper {
    width: 48px;
    height: 48px;
    background: var(--green-dark);
    padding: .75rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.exclusiveTitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--font-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.exclusiveSubtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--font-steel-grey);
    line-height: 1.8;
    text-align: center;
}

.solutionSection {
    background: url(../img/img_landing_solutions.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    background-color: #020B11;
    padding: 200px 0;
}

.solutionSection .sectionTitle,
.solutionSection .sectionSubtitle {
    color: var(--white);
}

.solutionWrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 120px 0;
}

.solutionWrapper li {
    flex: 1 1 calc(50% - 2rem);
    background: #031119;
    padding: 1.5rem;
    border-radius: 16px;
}

.solutionTitleContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.solutionIconWrapper {
    width: 48px;
    height: 48px;
    background: #00C28C;
    padding: .75rem;
    border-radius: 10px;
    min-width: 48px;
}

.solutionTitle {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .25rem;
    line-height: 1.25;
}

.solutionSubtitle {
    font-size: .85rem;
    color: #00C28C;
    font-weight: 500;
    text-transform: uppercase;
}

.solutionWrapper li.risk .solutionIconWrapper {
    background: #005EC2;
}

.solutionWrapper li.risk .solutionSubtitle {
    color: #005EC2;
}

.solutionWrapper li.procurement .solutionIconWrapper {
    background: #FE2D62;
}

.solutionWrapper li.procurement .solutionSubtitle {
    color: #FE2D62;
}

.solutionWrapper li.sales .solutionIconWrapper {
    background: #445BCB;
}

.solutionWrapper li.sales .solutionSubtitle {
    color: #445BCB;
}

.solutionContent {
    color: var(--white);
}

.solutionContentTitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.solutionContent p {
    color: #a3a3a3;
    font-weight: 400;
    font-size: .85rem;
    line-height: 1.5;
}

.startWrapper {}

.start {
    display: flex;
    background: var(--white);
    padding: .5rem;
    border-radius: 16px;
    gap: .5rem;
    width: 50%;
    margin: 4rem auto 0;
}

.start .form-control {
    border: none;
    padding: .5rem .75rem;
    border-radius: 0;
}


.start .form-control:focus {
    box-shadow: none;
}

.start button {
    white-space: nowrap;
    border: none;
    padding: .75rem 2rem;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 10px;
    font-weight: 500;
}

@media only screen and (max-width: 992px) {
    .aboutHeroSection {
        background: url(../img/img_landing_hero_tablet.png);
        background-size: cover;
        height: 400px;
    }

    .aboutTextWrapper {
        margin: 0 auto;
    }

    .aboutSection {
        background-size: 150%;
        padding: 120px 0;
    }

    .aboutFigureWrapper li .figureContent {
        font-size: 3rem;
    }

    .exclusiveContentWrapper {
        width: 90%;
        margin: 120px auto;
        gap: 3rem;
    }

    .start {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .aboutSection {
        background-size: 200%;
        padding: 120px 0;
    }

    .sectionHeaderWrapper {
        width: 90%;
        margin: 0 auto;
    }

    .sectionTitle {
        font-size: 2.6rem;
    }

    .sectionSubtitle {
        font-size: .95rem;
        line-height: 2;
    }

    .aboutFigureWrapper {
        flex-wrap: wrap;
        margin-top: 100px;
    }

    .aboutFigureWrapper li {
        width: 50%;
        margin-bottom: 4rem;
    }

    .aboutFigureWrapper li .figureContent {
        font-size: 2.6rem;
    }

    .exclusiveContentWrapper {
        flex-direction: column;
        gap: 5rem;
        width: 60%;
    }

    .solutionSection {
        padding: 100px 0;
    }

    .solutionWrapper {
        margin: 80px 0;
    }

    .solutionWrapper li {
        flex: unset;
        width: 90%;
        margin: 0 auto;
    }

    .startWrapper {
        width: 90%;
        margin: 0 auto;
    }

    .start {
        width: 90%;
    }

}

@media only screen and (max-width: 600px) {
    .aboutHeroSection {
        background: url(../img/img_landing_hero_mobile.png);
        height: 60vh;
        background-size: cover;
    }

    .sectionTitle {
        font-size: 2.25rem;
    }

    .aboutTextWrapper h1 {
        line-height: 1.125;
        margin-bottom: 1rem;
    }

    .aboutFigureWrapper li .figureContent {
        font-size: 2.25rem;
    }

    .exclusiveContentWrapper {
        width: 75%;
    }
}