.homecommunity--section {
	background: var(--theme-black);
	color: var(--theme-cream);
	overflow: hidden;
}

.homecommunity--container {
	padding: 185px 30px 30px;
}

.homecommunity--rotating-text {
	position: absolute;
	width: 250px;
	height: auto;
	left: 50%;
	margin-left: -125px;
	margin-top: -125px;
	animation: rotate-infinitely 20s linear infinite;
}

@keyframes rotate-infinitely {
  from {
    transform: rotate(0deg); /* Starting rotation */
  }
  to {
    transform: rotate(360deg); /* Ending rotation (one full turn) */
  }
}

.homecommunity--title {
	color: var(--theme-brown);
}

.homecommunity--copy {
	margin-bottom: 60px;
}

.homecommunity--copy > ul > li {
	margin-bottom: 1em;
}

.homecommunity--image-2 {
	position: relative;
	margin-top: 90px;
	max-width: 550px;
}

.homecommunity--image-2 img {
	position: relative;
}

.homecommunity--image-2:before {
	content: "";
	position: absolute;
	right: -60px;
	top: -30px;
	bottom: -30px;
	left: 80px;
	background-image: url(../../images/dot-pattern.png);
	background-size: cover;
	z-index: 0;
}

@media (min-width: 992px) {
	
	.homecommunity--image-1 {
		position: relative;
	}
	
	.homecommunity--image-1:after {
        content: "";
        position: absolute;
        bottom: -317px;
        left: -350px;
        width: 560px;
        height: 496px;
        background-image: url(../../images/stripes.svg);
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: contain;
	}
	
	.homecommunity--title {
		margin-top: 100px;
	}
}