#main-content {
    z-index: 10;
}

h1 {
    margin-top: 120px;
    font-size: 46px;
    text-transform: uppercase;
    color: var(--black);
    text-transform: uppercase;
}

.empty_state {
    text-align: center;
    margin-bottom: 130px;
}

.press_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin: 20px auto 120px;
}

.press {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 40px) / 3);
    margin-top: 20px;
    box-sizing: border-box;
    background-color: var(--form-field);
    padding: 20px;
    transition: 0.2s all ease-in-out;
}

.press .square_icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    background-color: var(--gold);
    color: var(--white);
    box-sizing: border-box;
    margin-right: 20px;
}

.press h4 {
    margin: 15px 0 0 0;
    color: var(--black);
}

.press p {
    margin: 5px 0 0 0;
    color: var(--black);
}

.press p i {
    width: 24px;
}

.press .button {
    margin-top: 20px;
    margin-left: auto;
}

.press:hover {
    background-color: var(--gold);
    transition: 0.2s all ease-in-out;
}

.press:hover .square_icon {
    background-color: var(--black);
}

.press:hover h4,
.press:hover p {
    color: var(--white);
}

.dog_illustration,
.dog_illustration svg {
    position: relative;
    width: 300px;
    height: 200px;
}

.dog_illustration {
    display: flex;
    margin: 0 auto -30px;
    z-index: 10;
}

.press_button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
}

@media (max-width: 1330px) {
    .press {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 750px) {
    .press_wrapper {
        flex-direction: column;
    }

    .press {
        width: 100%;
    }
}