.ol-carousel {
	--ol-yellow: #ffda30;
	--ol-aqua: #addce6;
	--ol-text: #c6cdd3;
	--ol-heading: #e9ecef;
	--ol-dark: #17222e;
	--ol-card-bg: rgba(255, 255, 255, 0.02);
	--ol-focus-bg: rgba(255, 255, 255, 0.05);
	--ol-border: rgba(255, 255, 255, 0.15);
	--ol-border-subtle: rgba(255, 255, 255, 0.12);
	--ol-border-focus: rgba(255, 255, 255, 0.2);
	color: var(--ol-text);
	font-family: Inter, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
}

.ol-carousel *,
.ol-carousel *::before,
.ol-carousel *::after {
	box-sizing: border-box;
}

.ol-carousel__inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.ol-carousel__focus {
	display: flex;
	gap: 20px;
	align-items: stretch;
	width: 100%;
}

.ol-map {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	min-height: 300px;
	background: #2a2a2a;
}

.ol-map__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.ol-map__frame.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ol-focus-card {
	position: relative;
	width: 600px;
	height: 300px;
	flex-shrink: 0;
	border-radius: 10px;
	border: 0.57px solid var(--ol-border-focus);
	background: var(--ol-focus-bg);
	overflow: hidden;
}

.ol-focus-card__panel {
	position: absolute;
	inset: 0;
	display: flex;
	gap: 2.5rem;
	align-items: stretch;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.ol-focus-card__panel.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ol-focus-card__image {
	width: 300px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #2a3440, #17222e);
	background-size: cover;
	background-position: center;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.ol-focus-card__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1em;
	padding: 2em 1em 2em 0;
	min-width: 225px;
	flex: 1;
	min-height: 0;
}

.ol-focus-card__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.ol-focus-card__title {
	margin: 0;
	font-size: 22px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--ol-heading);
}

.ol-focus-card__panel .ol-address,
.ol-focus-card__panel .ol-phone {
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -1%;
	color: var(--ol-text);
	font-weight: 300;
}

.ol-row {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.ol-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
}

.ol-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ol-icon--gold {
	color: var(--ol-yellow);
}

.ol-address {
	margin: 0;
	font-style: normal;
	font-weight: 400;
	padding-top: 0;
	margin-top: -3px;
}

.ol-phone,
.ol-address-link {
	color: var(--ol-text);
	text-decoration: none;
}

.ol-phone:hover,
.ol-address-link:hover {
	color: var(--ol-heading);
}

.ol-address-link {
	display: inline-flex;
}

.ol-cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border: 1px solid var(--ol-yellow);
	border-radius: 4px;
	background: linear-gradient(116.56deg, rgba(255, 218, 48, 0.8) 27.86%, #ffda30 52.77%, rgba(255, 218, 48, 0.8) 75.76%);
	color: var(--ol-dark) !important;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-decoration: none;
	box-shadow: 5px 2px 10px 5px rgba(0, 0, 0, 0.1);
	transition: filter 0.15s ease, transform 0.15s ease;
	cursor: pointer;
}

.ol-cta:hover {
	color: var(--ol-dark) !important;
}

.ol-cta__icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
}

.ol-cta__icon svg {
	width: 100%;
	height: 100%;
}

.ol-carousel__swiper {
	width: 100%;
	padding: 2px;
	box-sizing: border-box;
	-webkit-mask-image: linear-gradient(to right, #030712 90%, transparent 100%);
	mask-image: linear-gradient(to right, #030712 90%, transparent 100%);
}

.ol-carousel__slide {
	width: 300px;
	height: auto;
	box-sizing: border-box;
}

.ol-thumb {
	width: 300px;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px 20px;
	text-align: left;
	background: var(--ol-card-bg);
	border: 0.57px solid var(--ol-border);
	border-radius: 10px;
	color: var(--ol-heading);
	cursor: pointer;
	font: inherit;
	transition: border-color 0.2s ease, background 0.2s ease;
	height: 100%;
}

.ol-thumb__image {
	display: none;
}

.ol-thumb__content {
	display: contents;
}

.ol-thumb:hover {
	border-color: rgba(255, 255, 255, 0.55);
}

.swiper-slide-active .ol-thumb {
	border: 1px solid var(--ol-aqua);
}

.ol-thumb__title {
	margin: 0;
	font-size: 20px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	color: var(--ol-heading);
}

.ol-thumb .ol-address,
.ol-thumb .ol-phone {
	font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.4em;
    letter-spacing: -1%;
    word-spacing: 0px;
	color: var(--ol-text);
}

.ol-thumb .ol-address:hover, .ol-thumb .ol-phone:hover, .ol-focus-card__panel .ol-address:hover, .ol-focus-card__panel .ol-phone:hover {
	color: var(--ol-text) !important;
}

.ol-thumb .ol-row {
	align-items: center;
}

.ol-thumb .ol-row:first-of-type {
	align-items: flex-start;
}

.ol-address--sm {
	padding-top: 0;
	margin-top: -3px;
}

.ol-carousel__nav {
	display: flex;
	gap: 8px;
	padding-top: 16px;
}

.ol-nav-btn {
	width: 48px;
	height: 48px;
	padding: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 100px;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.ol-nav-btn:hover{
	background: rgba(255, 255, 255, 0.16);
}

.ol-nav-btn:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid var(--ol-border-subtle);
	outline: 1px solid var(--ol-aqua);
	outline-offset: 2px;
}

.ol-nav-btn:focus:not(:focus-visible) {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--ol-border-subtle);
	outline: none;
	box-shadow: none;
}

.ol-nav-btn:focus:not(:focus-visible):hover {
	background: rgba(255, 255, 255, 0.16);
}

.ol-nav-btn[disabled],
.ol-nav-btn--disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.ol-nav-btn svg {
	width: 23px;
	height: 20px;
}

/*
@media (max-width: 1100px) {
	.ol-carousel__focus {
		flex-direction: row;
	}

	.ol-map {
		min-width: 300px;
	}

	.ol-focus-card {
		width: 100%;
	}
}
*/
@media (max-width: 1024px) {

	.swiper-slide-active .ol-thumb{
		border: 1px solid rgba(255,255,255,0.3);
	}
	.ol-carousel__inner{
		gap:1em;
	}

	.ol-carousel__swiper {
		padding-left: 0;
	}

	.ol-focus-card__panel.is-active {
		display: none;
	}

	.ol-focus-card {
		display: none;
	}

	.ol-carousel__focus{
    	padding: 0 0;
	}

	.ol-map{
		min-height: 400px;
	}

	.ol-carousel__slide {
		width: 325px;
		max-width: 94%;
	}

	.ol-thumb {
		width: 100%;
		flex-direction: row;
		gap: 16px;
		padding: 0;
		overflow: hidden;
		align-items: stretch;
	}

	.ol-thumb__image {
		display: block;
		width: 125px;
		height: 100%;
		flex-shrink: 0;
		background-color: #1f2937;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: 10px 0 0 10px;
	}

	.ol-thumb__title{
		font-size: 1.25rem !important;
		line-height: 1 !important;
		padding-bottom: 3px;
	}
	.ol-thumb__content {
		display: flex;
		flex-direction: column;
		gap: 8px;
		padding: 16px 12px 12px 0;
		min-width: 0;
		flex: 1;
	}

	.ol-row{
		gap: 8px;
	}

	.ol-icon{
		width: 14px;
		height: 14px;
	}
	.ol-thumb .ol-address, .ol-thumb .ol-phone{
		font-size: 0.75rem;
        line-height: 1.5em;		
	}

	.ol-carousel__nav {
		width: calc(100% - 2.25em);
		justify-content: center;
		padding: 1em 0 0 0;
    	border-top: 1px solid #374151;
        margin-top: 0.5em;
	}

}

@media (max-width: 767px) {
	
	.ol-nav-btn{
		width: 38px;
		height: 38px;
	}

	.ol-nav-btn svg{
		width: 14px;
	}
	
	.ol-carousel__focus{
    	padding: 0 1em;
	}
	.ol-carousel__swiper {
		padding-left: 1em;
	}
	.ol-map{
		min-height: 200px;
	}

}