<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-- -------------------------- --&gt;
&lt;---             HERO          --&gt;
&lt;--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
	#page-locations {
		background-color: #f7f7f7;
		overflow: hidden;
		position: relative;
		z-index: 1;
	}
	#page-locations .cs-container {
		width: 100%;
		margin: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		/* 48px - 64px */
		gap: clamp(3rem, 5vw, 4rem);
		position: relative;
		z-index: 1;
		max-width: 100%;
		padding: 0;
	}
	#page-locations .cs-content {
		/* aligns text centrally. set to left to left-align text */
		text-align: center;
		padding: var(--sectionPadding);
		/* 60px - 150px */
		padding-top: clamp(3.75rem, 8.82vw, 15.375rem);
		padding-bottom: clamp(3.75rem, 8.82vw, 15.375rem);
		pointer-events: none;
		display: flex;
		flex-direction: column;
		justify-content: center;
		/* centrally aligns items. set to flex-start to left-align items */
		align-items: center;
		z-index: 2;
		width: 100%;
		min-height: 601px;
	}
	#page-locations .cs-title {
		/* 31px - 39px */
		font-size: 35px;
		letter-spacing: 0.15em;
		color: var(--bodyTextColorWhite);
		font-family: var(--secondaryFont);
		max-width: 100%;
	}
	#page-locations .cs-text {
		margin: 0 0 2rem;
		color: var(--bodyTextColorWhite) !important;
		font-weight: 700;
		font-size: 14px;
		letter-spacing: 0.2em;
	}
	#page-locations .cs-button-outline {
		font-size: 1rem;
		font-weight: 700;
		/* 46px - 56px */
		line-height: clamp(2.875rem, 5.5vw, 3.5rem);
		text-align: center;
		text-decoration: none;
		min-width: 12.5rem;
		margin: 0;
		/* prevents padding from adding to the width */
		box-sizing: border-box;
		/* 32px - 48px */
		padding: 0 clamp(2rem, 4vw, 3rem);
		pointer-events: auto;
		color: var(--bodyTextColorWhite);
		border: 1px solid var(--bodyTextColorWhite);
		display: inline-block;
		position: relative;
		transition: color 0.3s;
	}
	#page-locations .cs-button-outline:before {
		content: "";
		width: 0%;
		height: 100%;
		background: var(--primary);
		opacity: 1;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		transition: width 0.3s;
	}
	#page-locations .cs-button-outline:hover {
		color: var(--headerColor);
	}
	#page-locations .cs-button-outline:hover:before {
		width: 100%;
	}
	#page-locations .cs-video-wrapper {
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
	}
	#page-locations .cs-video-wrapper:hover {
		cursor: pointer;
	}
	#page-locations .cs-video-wrapper:hover .cs-play {
		transform: translate(-50%, -50%) scale(1.2);
	}
	#page-locations .cs-video-wrapper video,
	#page-locations .cs-video-wrapper .cs-picture {
		width: 100%;
		height: 100%;
		/* makes image act as a background image */
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
	}
	#page-locations .cs-video-wrapper video img,
	#page-locations .cs-video-wrapper .cs-picture img {
		width: 100%;
		height: 100%;
		/* makes image act as a background image */
		object-fit: cover;
		position: absolute;
		top: 0;
		left: 0;
	}
}
#locations {
	padding: 0 20px;
}
.location-title {
    font-size: 40px;
    text-align: center;
    margin: 80px 0;
    font-weight: 500;
	font-family: var(--secondaryFont);
  }

/* Container for the columns */
.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual column item */
.column-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background: white;
    border-radius: 0; /* Remove border radius */
    overflow: hidden;
    box-shadow: none; /* Remove box shadow */
    margin-bottom: 30px;
    border: none; /* Ensure no border */
    max-width: 50%;
    text-decoration: none;
}

/* Image styling - full width */
.item-image {
    width: 100%;
    height: 250px; /* Adjust height as needed */
    object-fit: cover;
    display: block;
}

.item-icon {
    display: block;
    margin: 0 auto;
    height: 92px;
}

/* Content container */
.item-content {
    padding: 20px 0; /* Adjusted padding */
}

/* Title styling */
.item-title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #100944;
    font-weight: 400;
    text-align: center;
	font-family: var(--secondaryFont);
}

/* Icon and address container */
.item-location {
    text-align: center;
    color: #100944;
    font-size: 14px;
    font-weight: 600;
}

/* Description styling */
.item-description {
    color: #555;
    line-height: 1.5;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .column-item {
        flex: 1 1 100%;
		margin: 0;
		max-width: 100%;
    }
	.columns-container {
		gap: 0px !important;
	}
	.location-title {
		font-size: 25px;
	}
}</pre></body></html>