/* @group Our residences
------------------------------------ */
.our-residences {
	position: relative;
	z-index: 2;
	isolation: isolate;
	padding: 8rem 0 0;
	color: var(--white);
}
.our-residences h2,
.our-residences h3,
.our-residences p {
	margin: 0 0 2rem;
}
.our-residences h3 {
	border-color: var(--beige);
	color: var(--beige);
}
.our-residences .col-content {
	margin: 0 0 4rem 0;
}
.our-residences .col-figure::before,
.our-residences .col-figure::after {
	content: '';
	position: absolute;
	z-index: 2;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}
.our-residences .col-figure::before {
	top: 20.7rem;
	left: 47.4%;
	width: 9.8rem;
	height: 9.8rem;
	background-image: url('../../img/layout/frontpage/our-reidences-shape-bottom.svg');
}
.our-residences .col-figure figure {
	width: calc(100% - 5rem);
	margin-left: 5rem;
	height: 25.6rem;
}
.our-residences .col-figure .bird {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 5rem;
	height: 5rem;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url('../../img/layout/frontpage/bird-residences.svg');
}
@media only screen and (min-width: 961px) {
	.our-residences {
		padding: 0;
	}
	.our-residences .col-content {
		margin-left: 30vh;
        margin-top: 25vh;
		margin-right: 3.4vh;
		width: 55vh;
	}
	.our-residences h2 {
		max-width: 40vh;
	}
	.our-residences .col-content .box {
		padding-left: 10.7vh;
	}
	.our-residences .col-figure {
		padding: 0;
		margin-top: 8.9vh;
		width: 79vh;
	}
	.our-residences .col-figure figure {
		margin: 0;
		width: 121vh;
		height: 81.19vh;
	}
	.our-residences .col-figure .shape-right {
		position: absolute;
		top: -9.1vh;
		right: -50.9vh;
		display: inline-block;
		width: 17.9vh;
		height: 17.9vh;
		background-position: top right;
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url('../../img/layout/frontpage/update/square-residence-top-left.svg');
	}
	.our-residences .col-figure::after {
		top: -8.9vh;
		right: -8.4vh;
		background-image: url('../../img/layout/frontpage/update/square-residence-top.svg');
		width: 26.8vh;
		height: 26.8vh;
	}
	.our-residences .col-figure::before {
		background-image: url('../../img/layout/frontpage/update/square-residence-bot.svg');
		width: 26.8vh;
		height: 17.9vh;
		top: 72.3vh;
		right: 0;
		left: auto;
	}
}
@media only screen and (min-width: 961px) and (max-width: 1440px) {
}
@media only screen and (min-width: 0) and (max-width: 960px) {
	.our-residences .col-figure {
		padding: 0;
	}
	.our-residences .col-content,
	.our-residences .col-figure {
		flex: 0 1 100%;
		max-width: 100%;
	}
}

/* @end */

/* Animations */
.our-residences .col-content h2,
.our-residences .col-content h3,
.our-residences .col-content p,
.our-residences .col-content .bttn,
.our-residences .col-figure img,
.our-residences .col-figure::before,
.our-residences .col-figure::after,
.our-residences .col-figure .bird,
.our-residences .col-figure .bird-right,
.our-residences .col-figure .shape-right {
	opacity: 0;
}
.our-residences .col-content.animateActive h2,
.our-residences .col-content.animateActive h3,
.our-residences .col-content.animateActive p,
.our-residences .col-content.animateActive .bttn,
.our-residences .col-figure.animateActive img,
.our-residences .col-figure.animateActive::before,
.our-residences .col-figure.animateActive::after,
.our-residences .col-figure.animateActive .bird,
.our-residences .col-figure.animateActive .bird-right,
.our-residences .col-figure.animateActive .shape-right {
	animation: fade var(--fade-animation) forwards;
}

.our-residences .col-content.animateActive h2 {
	animation-delay: 0.3s;
}
.our-residences .col-content.animateActive h3 {
	animation-delay: 0.5s;
}
.our-residences .col-content.animateActive p {
	animation-delay: 0.7s;
}
.our-residences .col-content.animateActive .bttn {
	animation-delay: 0.9s;
}

.our-residences .col-figure.animateActive img {
	animation-delay: 0.5s;
}
.our-residences .col-figure.animateActive::before {
	animation-delay: 0.7s;
}
.our-residences .col-figure.animateActive::after {
	animation-delay: 0.7s;
}
.our-residences .col-figure.animateActive .bird {
	animation-delay: 0.5s;
}
.our-residences .col-figure.animateActive .bird-right {
	animation-delay: 0.9s;
}
.our-residences .col-figure.animateActive .shape-right {
	animation-delay: 1.1s;
}
