.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: -7px;
    margin-left: -15%;
}
.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: 0px auto var(--space-80) 30%;
}

.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: 90%;
    max-width: 890px;
    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: 1200px) {
.green {
    min-height: 100%;
}
}

@media screen and (max-width:667px) and (orientation: portrait) {
.green {
    min-height: 100%;
    margin-top: var(--space-175);
    margin-bottom: var(--space-175);
    padding: 80px 25px;
    position: relative;
    z-index: 1;
}
.green .titles .italic {
    letter-spacing: normal;
    margin-left: 0;
}
.green .titles .normal {
    margin: 0px auto var(--space-30) 0%;
    text-align: right;
}
.green::before, 
.green::after {
    height: var(--space-70);
}
.green .inner {
    width: 100%;
}
}

@media (max-width: 480px) {
.green {
    margin-top: var(--space-290);
}
}