.ex-hero-basic .inner-wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 4rem;
	background-color: #fff;
	position: relative;
}

.ex-hero-basic .image-one{
	width: 58.333%;
	position: relative;
	z-index: 2;
}

.img-con{
	padding-left: 16px;
	position: relative;
}

.ex-hero-basic .image-two{
	width: 33.333%;
	margin: 20% 0 0;
	position: relative;
}

.ex-hero-basic .color-box{
    background-color: #490a0d;
    width: 115%;
    height: 95%;
    top: -24%;
    left: -40%;
    position: absolute;
}

.ex-hero-basic .image-one img{
	max-width: 900px;
}

.ex-hero-basic .image-two img{
	max-width: 507px;
}

.ex-hero-basic .image-one-text{
	width: 18rem;
    height: 6rem;
    padding: 2rem;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
    align-items: center;
    justify-content: center;
    position: absolute;
    display: flex;
}

.ex-hero-basic .image-two-text{
	font-weight: 600;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
	align-items: center;
    justify-content: center;
    position: absolute;
	display: flex;
	width: 18rem;
	height: 6rem;
	padding: 2rem;
	bottom: 1.5rem;
	right: 1.5rem;
	font-size: 0.875rem;
}

.ex-hero-basic .image-main-text{
	padding-top: 48px;
	padding-left: 16px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.444;
	max-width: 81%;
}

.ex-hero-basic .image-main-text .heading{
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	font-style: italic;
	margin-bottom: 16px;
}

.ex-hero-basic .mobile-text{
	display: none;
	width: 100%;
}

@media only screen and (max-width: 1440px) {
    .ex-hero-basic .image-one img,
    .ex-hero-basic .image-two img{
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
	.ex-hero-basic .inner-wrap{
		flex-wrap: wrap;
	}
	.ex-hero-basic .image-one,
	.ex-hero-basic .image-two{
		width: 100%;
	}
	.ex-hero-basic .mobile-text{
		display: block;
	}
	
	.ex-hero-basic .image-one .image-main-text{
		display: none;
	}
	.ex-hero-basic .image-main-text{
		text-align: center;
		padding-left: 0;
		max-width: 100%;
	}
	.img-con{
		padding-left: 0px;
	}
	.ex-hero-basic .color-box{
		left: 50%;
		transform: translateX(-50%);
	}

	.ex-hero-basic .image-one-text,
	.ex-hero-basic .image-two-text{
		left: 50%;
		transform: translateX(-50%);
	}
}