.new-promo {
	font-family: "Montserrat", sans-serif;
	background: transparent;
	display: flex;
	align-items: stretch;
	min-height: 440px;
	margin-bottom: 55px;
	position: relative;
}

.new-promo.image-right {
	flex-direction: row-reverse;
}

.new-promo .promo__media {
	width: 50%;
	min-height: 440px;
	position: relative;
	z-index: 1;
	border-radius: 24px 0 0 24px;
	overflow: hidden;
}

.new-promo.image-right .promo__media {
	border-radius: 0 24px 24px 0;
}

.new-promo .promo-swiper,
.new-promo .swiper-wrapper,
.new-promo .swiper-slide,
.new-promo .promo-single-image {
	width: 100%;
	height: 100%;
	min-height: 440px;
}

.new-promo .swiper-slide,
.new-promo .promo-single-image {
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.new-promo .promo__media video {
	width: 100%;
	height: 100%;
	min-height: 440px;
	object-fit: cover;
	display: block;
}

.new-promo .promo__content {
	width: calc(50% + 24px);
	min-height: 380px;
	background: var(--text-background-colour, #fff);
	padding: 60px 50px;
	border-radius: 24px;
	position: relative;
	z-index: 2;
	margin-left: -24px;
	box-sizing: border-box;
}

.new-promo.image-right .promo__content {
	margin-left: 0;
	margin-right: -24px;
}

.new-promo .small-title {
	color: var(--small-title-colour);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	margin: 0 0 16px;
}

.new-promo .large-title {
	color: var(--large-title-colour);
	font-size: 38px;
	line-height: 38px;
	font-weight: 600;
	margin: 0 0 20px;
	max-width: 350px;
}

.new-promo .promo-copy {
	color: var(--auto-text-colour, #000);
	font-size: 16px;
	line-height: 1.6;
}

.new-promo .promo-copy p:last-child {
	margin-bottom: 0;
}

.new-promo a {
	color: var(--links-colour);
	font-weight: 700;
}

.new-promo a.link {
	font-size: 16px;
	line-height: 20px;
	display: block;
	margin-top: 16px;
	text-decoration: none;
}

.new-promo a.link::after {
	content: "›";
	margin-left: 10px;
}

/* Swiper Pagination */

.new-promo .swiper-pagination {
	bottom: 20px !important;
}

.new-promo .swiper-pagination-bullets {
    width: fit-content !important;
    background: rgba(0, 0, 0, .7);
    border-radius: 22px;
    bottom: 30px !important;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    left: 40% !important;
}

.new-promo .swiper-pagination-bullet {
	background-color: transparent;
    height: 20px;
    width: 20px;
    border-radius: 12px;
    border: 1px solid #fff;
	margin: 0 6px !important;
}

.new-promo .swiper-pagination-bullet-active {
	background: #fff;
}

/* Tablet */

@media (max-width: 1024px) {

	.new-promo {
		padding: 16px 20px;
	}

	.new-promo .promo__content {
		padding: 40px 35px;
		margin-left: -24px;
	}

	.new-promo.image-right .promo__content {
		margin-right: -24px;
	}
}

/* Mobile */
@media (max-width: 768px) {

	.new-promo.is-frontend,
	.new-promo.is-frontend.image-right {
		flex-direction: column;
		padding: 16px;
	}

	.new-promo.is-frontend .promo__media,
	.new-promo.is-frontend .promo__content,
	.new-promo.is-frontend.image-right .promo__content {
		width: 100%;
		margin: 0;
		border-radius: 24px;
	}

	.new-promo.is-frontend .promo__media,
	.new-promo.is-frontend .promo-swiper,
	.new-promo.is-frontend .swiper-wrapper,
	.new-promo.is-frontend .swiper-slide,
	.new-promo.is-frontend .promo-single-image {
		min-height: 300px;
	}

	.new-promo.is-frontend .promo__content {
		min-height: auto;
		padding: 30px 25px;
		margin-top: -40px;
		position: relative;
		z-index: 3;
	}
}