.hero-section {
    width: 100%;
    display: flex;
    background: #fff;
    padding: 100px 16px 40px;
    border-radius: 0 0 48px 48px;
    justify-content: center;
}

.hero-section .hero-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: content-box;
    max-width: 1432px;
}

#hero-image-container {
    display: flex;
    position: relative;
}

.hero-image-cont {
    display: flex;
    position: relative;
}

.hero-image-business-cont {
    background: #8287FF;
}
.hero-image-education-cont {
    background: #00A882;
}
.hero-image-leader-cont {
    background: #009EE0;
}

#hero-image-container div {
    transition: opacity 0.7s;
    border-radius: 32px;
    overflow: hidden;
}

#hero-image-container div img {
    width: 100%;
    height: 100%;
}

#hero-image-container div:not(:first-child) {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    font-style: normal;
    font-weight: 400;
    max-width: 100%;
}

.hero-text .note {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    color: #919199;
}

.hero-text p.hero-description {
    font-size: 20px;
    line-height: 24px;
    color: #56565B;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 40px;
    color: #313134;
    padding: 8px 0;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 48px;
}

#learn-button {
    border: 1px solid #C4C4CE;
    margin-right: 8px;
}

.customers-logos {
    gap: 20px;
    display: flex;
    justify-content: space-between;
}

.customers-logos img {
    max-height: 24px;
}

.customers-note {
    margin: 0 0 20px 0;
}
.dbi-logo {
    width: auto;
    height: 20px;
}

.mcgill-logo {
    width: auto;
    height: 20px;
}

.oregon-logo {
    display: none;
    height: 28px;
    width: auto;
}

.kindustry-logo {
    width: auto;
    height: 20px;
}

@media only screen and (min-width: 768px) {
    .hero-text {
        padding: 24px 0;
    }

    .dbi-logo {
        width: auto;
        height: 28px;
    }

    .mcgill-logo {
        width: auto;
        height: 28px;
    }

    .kindustry-logo {
        width: auto;
        height: 28px;
    }
}

@media only screen and (min-width: 992px) {
    .hero-section {
        padding: 156px 40px 40px;
        margin: 0 -40px 0 -40px;
    }

    .hero-section .hero-section-wrapper {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-end;
        flex-grow: 1;
    }

    .hero-text {
        flex: 50%;
        padding-bottom: 0;
        max-width: unset;
        margin-right: 16px;
    }

    #hero-image-container {
        margin-left: 16px;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 52px;
        color: #313134;
        padding: 8px 0;
    }

    .hero-buttons {
        margin-bottom: 80px;
    }

    .customers-logos {
        justify-content: flex-start;
    }

    .customers-logos img {
        max-height: unset;
    }

    .oregon-logo {
        display: flex;
    }
}

@media only screen and (min-width: 1200px) {
    .hero-text h1 {
        font-size: 64px;
        line-height: 64px;
        color: #313134;
        padding: 8px 0;
    }

    .hero-buttons {
        margin-bottom: 126px;
    }

    .customers-logos {
        gap: 38px;
    }
}