/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 08 2022 | 09:20:03 */
#home-two-col-section {
    overflow-x: clip;
    position: relative;
}
	.row {
		display: flex;
		flex-wrap: wrap;
	}
		.half-width {
			width: 50%;
		}
		.col.half-width.image-holder{
			background-size: cover !important;
			background-repeat: no-repeat !important;
			position: relative;
		}
			#home-two-col-section .col.half-width.text-holder * {
				max-width: 435px;
				margin: 0 auto;
			}
			#home-two-col-section .col.half-width.text-holder {
				padding: 75px 20px;
				background-color:white;
			}
			#home-two-col-section .col.half-width.text-holder h2, #home-two-col-section .col.half-width.text-holder p:not(:last-child) {
				padding-bottom: 20px;
			}
			#home-two-col-section .col.half-width.text-holder h2 {
				font-size: 4.25rem;
				line-height: 1;
			}
			#home-two-col-section .col.half-width.text-holder a {
				color: black;
				text-decoration: none;
				font-weight: 700;
				letter-spacing: 0.1em;
				font-size: 0.813rem;
			}
			#home-two-col-section .col.half-width.text-holder a:hover {
				color: var(--coral-color);
			}
			#home-two-col-section .col.half-width.image-holder svg {
				fill: var(--coral-color);
				height: 165px;
			}
			#home-two-col-section .col.half-width.image-holder.right svg {
				position: absolute;
				right: -31px;
				top: -83px;
			}
			#home-two-col-section .col.half-width.image-holder.left svg {
				position: absolute;
				left: -59px;
				bottom: -37px;
			}

@media screen and (max-width:960px){
	#home-two-col-section .col.half-width.text-holder h2 {
		font-size: 3.25rem;
	}
}

@media screen and (max-width:700px){
	.col.half-width {
		width: 100%;
	}
	.col.half-width.image-holder{
		height:400px;
	}
	#home-two-col-section .col.half-width.image-holder.left svg {
		position: absolute;
		right: -103px;
		top: -83px;
		left: auto;
	}
	#home-two-col-section .col.half-width.image-holder.right svg {
		right: -40px;
	}
	#home-two-col-section .col.half-width.text-holder{
		padding: 40px 20px;
	}
	#home-two-col-section {
		padding-bottom: 100px;
	}
}

