/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto Condensed', sans-serif;
	
}

.content {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	background: #f5f5f5;
}
.content:nth-child(odd) {
	flex-direction: row-reverse;
}
.content > div {
	flex: 1 1 calc(992px / 2);
}
.img,.video-playback {
	height: 100vh;
	position: sticky;
	top: 0;
}
.img img,video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.text {
	padding: 1.25rem;
}
.images {
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.images img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
.title {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
p {
	margin-bottom: 1rem;
}
.sub-title {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 2rem;
	font-weight: 600;
}


@media screen and (max-width: 991px) {
	.img {
		position: static;
	}
}

button{
	color:#000;
	border-radius: 50px;
	padding: 6px 35px;
	border:1px solid #000;
	transition: 0.3s;
	background: transparent;
	cursor: pointer;
	margin-top: 30px;
}
button:hover{
	color:#00c7c8;
	border: 1px solid #00c7c8;
}