.text-on-image {
	margin-right: -50vw;
    margin-left: -50vw;
    max-width: 100vw;
    width: 100vw;
    right: 50%;
    left: 50%;
    position: relative;
}

.text-on-image .text-on-image-image {
	height: 720px;
	width: 100%;
}

.text-on-image .text-on-image-image img {
  width: 100%;
  height: auto;
}

.text-on-image .text-on-image-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-size: 34px;
    font-family: 'Cormorant Garamond';
    background-color: rgba(0,0,0,0.2);
}

/*
.text-on-image .text-on-image-image.paralax-image img{
  height: 720px;
  margin-top: 200px;
  position: relative;
}
*/

/**********************************************************************/
/*------------------------------ Mobile ------------------------------*/
/**********************************************************************/

@media (max-width: 813px) {
	.text-on-image {
	    margin-right: 0;
    	margin-left: -15px;
    	max-width: 100vw;
    	left: unset;
    	right: unset;
    	width: 100vw;
	}

	.text-on-image-image {
		height: 600px !important;
		width: auto !important;
	}

	.text-on-image .text-on-image-image {
	  display: flex;
	  justify-content: center;
	}

	.text-on-image .text-on-image-image img {
	  height: 100%;
	  width: auto;
	  max-width: unset;
	}

}