.homepage-hero .column {
    display: none;
}

    .homepage-hero .column.active, .homepage-hero.no-js .column {
        display: initial;
    }
/* Top homepage section expandable images + description */
@media only screen and (min-width: 1024px) {
    .homepage-hero {
        display: flex;
        flex-flow: row wrap;
        overflow: hidden;
    }

        .homepage-hero .home-img-description {
            padding: 25px 25px 0px 25px;
        }

        .homepage-hero .column {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            max-width: 1280px;
            width: 20%;
            transition: 0.5s ease-in-out width;
        }

        .homepage-hero .home-img-description {
            min-height: 265px;
        }

        .homepage-hero .column .title-description h2 {
            font-size: 1.25em;
            font-weight: normal;
        }

        .homepage-hero .column.active .title-description h2 {
            font-size: 1.5em;
            font-weight: bold;
            transition-delay: 0.5s;
            transition: all 0.5s ease-in-out;
        }

        .homepage-hero .column.active {
            width: 60%;
        }

        .homepage-hero .column .button.button-inverse-white {
            border: none;
            font-weight: normal;
            padding: 0;
        }

        .homepage-hero .column.active .button.button-inverse-white {
            border: 2px solid #fff;
            font-weight: bold;
            padding: 8px 24px;
        }

        .homepage-hero .column.active .description {
            opacity: 1;
            transition: opacity 0.5s linear;
            transition-delay: 0.5s;
        }

        .homepage-hero .column .description {
            opacity: 0;
        }

        .homepage-hero .column.active .button-wrap {
            opacity: 1;
            transition: opacity 0.4s linear;
            transition-delay: 0.8s;
        }

        .homepage-hero .description {
            height: 1.5em;
            overflow: hidden;
            opacity: 0;
        }

        .homepage-hero .active .description {
            transition: opacity 0.5s ease;
            transition-delay: 0.5s;
            overflow: visible;
        }

    @keyframes fadeIn {
        to {
            height: auto;
            opacity: 1;
        }
    }

    .homepage-hero.no-js .column {
        display: flex;
    }
}

.body {
    margin-top: 160px;
}

.hero {
    overflow: hidden;
}

.homepage-hero .column .hero-img {
    overflow: hidden;
    position: relative;
    max-height: 420px;
}

.homepage-hero img {
    position: relative;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-width: none;
    width: auto;
    height: auto;
    max-height: 480px;
}

.homepage-hero .home-img-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 25px;
}

.homepage-hero h2 {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.5;
    min-height: 1.5em;
    margin-bottom: 0px;
}

.homepage-hero .button-wrap {
    margin: 0;
}

.homepage-hero .button {
    display: inline-block;
}
