.green {
    background: var(--green);
    padding: var(--space-xl) 0;
    position: relative;
    min-height: 735px;
    justify-content: center;
    display: flex;
    margin-bottom: var(--space-290);
}
.green .inner {
    width: 80%;
    margin: auto;
}
.green .titles {
    text-align: center;
}
.green .titles .italic {
    color: var(--black);
    font-family: var(--font);
    font-size: var(--size-153);
    font-style: italic;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -7.696px;
}
.green .titles .normal {
    color: var(--black);
    font-family: var(--font);
    font-size: var(--size-186);
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: -30px auto var(--space-80) 25%;
}

.green .text {
    color: var(--black);
    font-family: var(--font-second);
    font-size: var(--size-24);
    font-style: normal;
    font-weight: 300;
    line-height: 150%; 
    width: 80%;
    margin: auto;
}

.green::before {
    content: "";
    background: var(--black);
    height: var(--space-130);
    width: calc(100% / 10);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.green::after {
    content: "";
    background: var(--black);
    height: var(--space-130);
    width: calc(100% / 10);
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
}

@media (max-width: 992px) {
.green {
    min-height: 100%;
    margin-bottom: var(--space-90);
}
.green .titles .normal {
    margin: -10px auto var(--space-30) 0%;
}
.green::before, .green::after {
    height: var(--space-30);
}
.green .inner {
    width: 100%;
}
}