.container_ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.container_ .heading {
    width: 50%;
    padding-bottom: 50px;
    color: var(--brandBlueSecondary);
}

.container_ .heading h3 {
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 6px solid var(--brandBluePrimary);
}

.container_ .heading h3 span {
    font-weight: 100;
}

.container_ .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container_ .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.container_ .box .dream img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}

.container_ .btn {
    margin: 40px 0 40px 0;
    background: #222;
    padding: 15px 40px;
    border-radius: 5px;
}

.container_ .btn a {
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bolder;
    letter-spacing: 3px;
}

@media only screen and (max-width: 769px) {
    .container_ .box {
        flex-direction: column;
    }

    .container_ .box .dream {
        width: 100%;
    }

}

@media only screen and (max-width: 643px) {
    .container_ .heading {
        width: 100%;
    }

    .container_ .heading h3 {
        font-size: 1em;

    }

}