Is there a way to move the hero text down just on desktop?

Is there a way to move the hero text down just on desktop? pic below

website: www.ecogarby.com

password: garby

Try adding this code to the bottom of styles.css.

@media only screen and (min-width: 992px){
.caption.text-align-center.align-top {
margin-top:150px;
}
}

Adjust min screen width px and margins to your preference.