Hi There,
Please update above CSS to this:
.x-section.down-arrow {
position: relative;
}
.x-section.down-arrow:before {
content: "";
display: block;
position: absolute;
top: 100%;
left: 50%;
z-index: 1;
margin-left: -40px;
width: 0;
height: 0;
border-style: solid;
border-width: 40px 40px 0 40px;
border-color: #0e3f7a transparent transparent transparent;
}
Then add class down-arrow on x-section-2 class field.

Feel free to change this #0e3f7a
from this line border-color: #0e3f7a transparent transparent transparent;
to your preferred color.
Hope this helps.