.side-by-side-offset-background {
	margin-bottom: 60px;
}

.side-by-side-offset-background .img-wrapper {
	position: relative;
	padding: 30px 20px 0;
}

.side-by-side-offset-background .img-wrapper::after {
	content: '';
	position: absolute;
	top:0;
	left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(/includes/client_public/assets/redesign_assets/blue-bg-burst-parallax.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	border-bottom: 30px solid #fff;
}

.side-by-side-offset-background .widget-header {
    width: 100%;
}

.side-by-side-offset-background .widget-subtitle {
	font-family:'Inter', sans-serif;
    color: #373737;
    font-size: 34px;
	line-height: 1;
	letter-spacing: 0.5px;
}

.side-by-side-offset-background .widget-title {
	color: var(--Teal);
	font-family: var(--font-body);
	font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
}

.side-by-side-offset-background .slide > .inner {
	display: block;
}

.side-by-side-offset-background .slide .img-cont {
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.side-by-side-offset-background .slide > .inner {
	padding: 0;
}

.side-by-side-offset-background .content-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
}

.side-by-side-offset-background .slide .content-section > .inner {
	width: 100%;
	padding: 0;
	margin: auto;
}

.side-by-side-offset-background p {
	font-family:'Inter', sans-serif;
	color: #373737;
	font-size: 17px;
	line-height: 1.6;
	margin-bottom: 5px;
}

.side-by-side-offset-background .read-more {
	font-family:'Inter', sans-serif;
	color: #fff;
	font-size: 17px;
}

.side-by-side-offset-background .read-more i {
	margin-left: 2px;
	position: relative;
	top: 2px;
}

.side-by-side-offset-background .widget-header-inner {
	border-bottom: none;
	display: flex;
	flex-direction: column;
	padding-bottom: 12px;

	.widget-title { order: 2; }
	.widget-subtitle { order: 1; }
}

.side-by-side-offset-background img {
	display: block;
    width: 100%;
    height: auto;
}

.side-by-side-offset-background .custom-button {
	display: flex;
	justify-content: flex-start;
	margin-left: -20px;
}

.side-by-side-offset-background .custom-button .button-link {
    display: inline-block;
	padding: 20px 65px 10px 35px;
    color: #373737;
    text-decoration: none;
    position: relative;
	font-family:'Inter', sans-serif;
    font-size: 27px;
    letter-spacing: 0.02em;
}

.side-by-side-offset-background .custom-button .bg {
    position: absolute;
    left: 4px;
    top: 25%;
    width: 80%;
    height: 65%;
    background-color: var(--white);
    border-radius: 50px;
}

.side-by-side-offset-background .custom-button .button-link:hover .bg {
    transform: scale(1.05);
}
.side-by-side-offset-background .custom-button .content {
    display: inline-block;
    color: #FFF;
    background-color: var(--Teal);
    text-decoration: none;
    border-radius: 25px;
    position: relative;
    font-family: 'Inter';
    font-size: 20px;
    padding: 8px 37px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.side-by-side-offset-background .custom-button .button-link:focus {
    outline: none;
}

@media screen and (min-width: 40em) {
	.side-by-side-offset-background .img-wrapper {
		padding: 50px 0px 0 80px;
	}
	
	.side-by-side-offset-background.reverse .img-wrapper {
		padding: 50px 80px 0 0px;
	}

	.side-by-side-offset-background .img-wrapper::after {
		width: calc(100% - 75px);
		border-bottom: 50px solid #fff;
	}
	
	.side-by-side-offset-background.reverse .img-wrapper::after {
		width: calc(100% - 75px);
		left: unset;
		right: 0;
		border-bottom: 50px solid #fff;
	}

	.side-by-side-offset-background .slide .content-section > .inner {
		width: 100%;
	}
}

@media screen and (min-width: 64em) {

	.side-by-side-offset-background .slides {
		padding: 0;
	}

	.side-by-side-offset-background .img-wrapper {
		padding: 0;
		max-width: 530px;
		margin-left: auto;
		margin-right: -75px;
		margin-top: 50px;
	}
	
	.side-by-side-offset-background.reverse .img-wrapper {
		padding: 0;
		order: 1;
		margin-right: auto;
		margin-left: -150px;
	}
	.side-by-side-offset-background.reverse .content-section { order: 0; }

	.side-by-side-offset-background .img-wrapper::after {
		display: none;
	}

	.side-by-side-offset-background .slide > .inner {
		display: grid;
		position: relative;
	}

	.side-by-side-offset-background .slide > .inner::after {
		content: '';
		position: absolute;
		top:0;
		left: 0;
		z-index: -1;
		width: 50%;
		height: 100%;
		max-height: 510px;
        background-image: url(/includes/client_public/assets/redesign_assets/blue-bg-burst-parallax.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		pointer-events: none;
		border-bottom: 30px solid #fff;
	}
	
	.side-by-side-offset-background.reverse .slide > .inner::after {
		left: unset;
		right: 0;
	}

	.side-by-side-offset-background .content-section {
		padding: 0 80px 0 40px;
		margin-top: 45px;
		align-items: flex-start;
	}
	.side-by-side-offset-background.reverse .content-section {
		padding: 0 112px 0 40px;
	}

	.side-by-side-offset-background .content-section::before {
		display: none;
	}

	.side-by-side-offset-background .slide > .inner {
		display: grid;
		gap: 0 80px;
	}

	.side-by-side-offset-background .widget-header {
		top: 30px;
		bottom: auto;
		right: -280px;
		width: auto;
	}

	.side-by-side-offset-background .widget-subtitle {
		font-size: 45px;
	}
	
	.side-by-side-offset-background .widget-title {
		font-size: 45px;
	}

	.side-by-side-offset-background .slide .content-section > .inner {
		padding: 0;
	}

	.side-by-side-offset-background p {
		font-size: 16px;
	}
	.side-by-side-offset-background.reverse p {
		font-size: 18px;
		text-align: justify;
	}
	
	.side-by-side-offset-background .custom-button .button-link {
		font-size: 41px;
		margin-left: -60px;
		padding: 20px 65px 10px 85px;
	}

	.side-by-side-offset-background .slide > .inner {
		grid-template-columns: 50% 1fr;
	}

}

@media screen and (min-width: 1200px) {
	.side-by-side-offset-background .img-wrapper {
		max-width: 580px;
	}
}
