#big_project {
    /*border: solid 1px red;*/
}
#big_project_container {
    margin: 0 0;
}
#big_project_content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
#big_project-title-container {
    padding: 20px 10px;
}
#big_project-main-text-container {
    text-align: center;
}
#big_project-main-text h2 {
    font-size: 3em;
    font-weight: 700;
    color: var(--our-black-color);
    line-height: 1.2em;
}
#big_project-sub-text {
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.8em;
    color: var(--our-grey-color);
}
#big_project-contact-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*border: solid 1px red;*/
}
.big_project-button {
    height: 80px;
    width: 90%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--our-white-color);
    background-color: var(--our-black-color);
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    box-shadow: 6px 6px 0 0 #e0e0e0;
    /*border: solid 1px blue;*/
}
.big_project-button:hover {
    color: var(--our-white-color);
}
@media (min-width: 768px) {
    #big_project-contact-buttons-container {
        flex-direction: row;
        align-items: flex-start;
        /*border: solid 1px red;*/
    }
    .big_project-button {
        margin: 0 50px;
        height: 90px;
    }
}