.office {
	overflow: hidden;
}

.office__container {
	position: relative;
}

.office__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.office__nav {
	margin-bottom: 0;
	justify-content: flex-start;
}

.office__content {
	clip-path: inset(-100vw -100vw -100vw 0);
}

.office__slider {
/* 	overflow: visible; */

}

.office__slider .swiper-wrapper {
	align-items: stretch;
}

.office__slide {
/* 	width: 420px;
	height: 350px; */
	flex-shrink: 0;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16 / 12;
}

.office__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


@media (max-width: 990px) {
/* 	.office__slide {
		width: 350px;
		height: 290px;
	} */
}

@media (max-width: 768px) {

	.office__meta {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
		align-items: flex-start;
	}



/* 	.office__slide {
		width: 300px;
		height: 250px;
	} */

}

@media (max-width: 480px) {
/* 	.office__slide {
		width: 280px;
		height: 230px;
	} */

	.office__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.office__nav {
		justify-content: center;
	}
}