:root {
	--color-primary: #2AC7BD;
	--color-primary-highlight: #2FD4C9;
	--color-secondary: #091a19;
	--color-white: #fefefe;
	--color-shade: #f0faf9;
	--color-shade-2: #e6f6f5;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	min-width: 350px;
}
body.nav-open {
	overflow: hidden;
}
.blur:after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.container {
	position: relative;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: calc(var(--bs-gutter-x) * .7);
	padding-left: calc(var(--bs-gutter-x) * .7);
}
#wrapper {
	transition: all 0.2s ease;
}
section {
	position: relative;
}
.shade {
	background-color: var(--color-shade)!important;
}

h1, h2, h3, h4, h5, h6, .lg-text {
	font-weight: 700;
	letter-spacing: -0.02em;
}
h1 {
	font-size: 1.65rem;
	line-height: 1.9rem;
	font-weight: 800;
}
h2 {
	font-weight: 800;
	font-size: 1.45rem;
	line-height: 1.8rem;
}
h3 {
	font-size: 1.1rem;
	line-height: 1.55rem;
}
h4 {
	font-size: 1rem;
}
.lg-text {
	font-size: 1.5rem!important;
	line-height: 1.45rem;
}
@media (min-width: 992px) {
	h1 {
		font-size: 2.8rem;
		line-height: 3.1rem;
	}
	h2 {
		font-size: 1.8rem;
		line-height: 2.2rem;
	}
	h3 {
		font-size: 1.45rem;
		line-height: 1.55rem;
	}
	h4 {
		font-size: 1.5rem;
	}
}

a .fa-caret-right {
	position: relative;
	top: 1px;
}

hr {
	border-top: 2px dotted rgba(0,0,0,0.5);
	margin: 2rem 0;
}

.navbar,
.btn,
.small,
.text-muted {
	font-weight: 600;
}
.text-white {
	color: var(--color-white);
}
.text-primary {
	color: var(--color-primary)!important;
}
.text-secondary {
	color: var(--color-secondary)!important;
}
.bg-primary {
	background-color: var(--color-primary)!important;
}
.bg-secondary {
	background-color: var(--color-secondary)!important;
}

.btn {
	border-radius: 15px;
	border-radius: 25px;
	position: relative;
	font-size: 0.85rem;
	font-weight: 700;
	padding: 0.4rem 15px 0.4rem 15px;
	width: 100%;
	transition: all 0.3s ease;
}
@media (min-width: 768px) {
	.btn {
		width: auto;
	}
}
.btn i {
	border-radius: 50%;
	position: absolute;
	top: 3px;
	right: 3px;
	width: 33px;
	height: 33px;
	line-height: 29px;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	padding: 0.55rem 46px 0.55rem 15px;
	font-size: 0.95rem;
}
.btn-primary i {
	top: 4px;
	right: 4px;
	background-color: rgba(9,26,25,0.2);
}
.btn-primary:hover {
	background-color: var(--color-primary-highlight);
	border-color: var(--color-primary-highlight);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20);
}
.btn-primary:active {
	outline: none;
	background-color: #2FD4C9!important;
	border-color: #2FD4C9!important;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
	color: var(--color-secondary);
	background-color: var(--color-white);
	border-color: var(--color-white);
}
.btn-secondary i {
	top: 4px;
	right: 4px;
	background-color: rgba(9,26,25,0.1);
}
.btn-secondary:hover {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn-lg {
	font-size: 1.05rem;
	border-radius: 25px;
	padding: 0.6rem 55px 0.67rem 25px;
}
.btn-lg i {
	width: 38px;
	height: 38px;
	line-height: 38px;
	font-size: 0.9rem;
}

.navbar {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	padding: 15px 0;
	transition: all 0.3s ease;
}
.navbar #mainNav {
	background-color: rgba(255,255,255,0.2);
	width: calc(100vw - 20px)!important;
	position: absolute;
	top: 62px;
	left: 10px;
	border-radius: 15px;
}
.navbar-nav {
	background-color: var(--color-secondary);
	margin: 5px;
	border-radius: 10px;
	width: calc(100% - 10px);
	min-height: calc(100dvh - 100px);
	padding: 10px 20px;
}
.navbar .dropdown-toggle::after {
	content: none;
}
.navbar .dropdown-menu {
	background-color: transparent;
}
.navbar .dropdown-menu ul {
	position: relative;
	height: 164px;
	overflow-y: scroll;
}
.navbar .dropdown-menu ul li a {
	color: var(--color-white);
	transition: all 0.3s ease;
	margin-bottom: 10px;
}
.navbar .dropdown-menu ul li a .fa-solid {
	display: block;
	width: 45px;
	text-align: center;
	position: relative;
	top: 1px;
}
.navbar-brand img {
	height: 38px;
	transition: all 0.3s ease;
}
.navbar-dark li {
	position: unset;
}
.navbar-dark .nav-link {
	color: var(--color-white);
	font-size: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding: 15px 0;
	position: relative;
	width: 100%;
	text-align: left;
}
.navbar-dark .nav-link i {
	position: absolute;
	top: 25px;
	right: 0;
}
.navbar-dark .nav-item:last-child .nav-link {
	border-bottom: none;
}
.navbar-dark .nav-link:first-child {
	padding-left: 0;
}
.navbar-dark li .nav-link:hover {
	color: var(--color-primary);
}
.navbar-dark .telephone {
	font-size: 0.9em;
	margin: -2px 0;
}
.navbar-dark .telephone small {
	margin-bottom: 7px;
}
.navbar-dark .btn {
	border-width: 2px;
}
.navbar.fixed-top {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	background-color: rgba(9,26,25, 0.7);
	max-height: 64px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100vw!important;
}
.navbar.fixed-top .navbar-brand {
	padding: 0;
}
.navbar.fixed-top .flex-column {
	align-items: start;
	flex-direction:unset!important;
}
.navbar.fixed-top .w-100 {
	padding: 0!important;
}
.navbar.fixed-top .d-lg-flex {
	display: none!important;
}
.navbar.fixed-top #mainNav {
	border: none;
}
.navbar.fixed-top .navbar-brand img {
	height: 34px;
}
.navbar.fixed-top #mainNav .navbar-nav {
	width: unset;
}
.navbar.fixed-top #mainNav.no-border {
	margin-top:50px;
}
.navbar .navbar-toggler {
	background-color: rgba(255,255,255,0.25);
	color: var(--color-white);
	border: none;
	height: 44px;
	width: 44px;
	border-radius: 50%;
	z-index: 1;
	font-size: 1.3rem;
	position: relative;
}
.navbar.fixed-top .navbar-toggler {
	background-color: rgba(255,255,255,0);
}
.navbar .navbar-toggler span {
	position: absolute;
	height: 3px;
	width: 22px;
	background: var(--color-white);
	left: 11px;
	transition: all 0.3s ease;
	border-radius: 2px;
}
.navbar .navbar-toggler span:nth-child(1) {
	top: 14px;
}
.navbar .navbar-toggler span:nth-child(2) {
	top: 21px;
}
.navbar .navbar-toggler span:nth-child(3) {
	top: 28px;
}
.navbar .navbar-toggler.active span {
	width: 20px;
	left: 12px;
}
.navbar .navbar-toggler.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 21px;
}
.navbar .navbar-toggler.active span:nth-child(2) {
	opacity: 0;
}
.navbar .navbar-toggler.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 21px;
}
.navbar .navbar-toggler:focus {
	box-shadow: none;
}
@media (min-width: 992px) {
	.navbar {
		padding: 20px 0;
	}
	.navbar.fixed-top {
		padding-top: 13px;
		padding-bottom: 13px;
	}
	.navbar.fixed-top .w-100 {
		width: unset !important;
	}
	.navbar.fixed-top .navbar-nav {
		margin-right: 0!important;
		margin-left: auto!important;
	}
	.navbar-brand img {
		height: 46px;
	}
	.navbar #mainNav {
		background-color: transparent;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		position: static;
		width: 100%!important;
		border-radius: 0;
	}
	.navbar-nav {
		background-color: transparent;
		margin: 0;
		width: unset;
		min-height: unset;
		border-radius: 0;
		padding: 0;
	}
	.navbar #mainNav.no-border {
		border-bottom: 1px solid transparent;
	}
	.navbar-dark li {
		padding-right: 40px;
	}
	.navbar-dark li:last-child {
		margin-right: 0;
	}
	.navbar .dropdown:hover .dropdown-menu {
		display: block;
		margin-top: 0;
	}
	.navbar-dark .nav-link {
		font-size: 0.9rem;
		border-bottom: none;
		padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	}
	.navbar-dark .nav-link i {
		position: static;
	}
	.navbar #mainNav.no-border .dropdown-toggle {
		padding-bottom: 60px;
	}
	.navbar .dropdown-menu {
		width: calc(100% - 30px);
		position: absolute;
		top: 120px;
		left: 15px;
		background-color: rgba(255,255,255,0.2);
		z-index: 999;
		padding: 10px;
		border-radius: 30px;
		border: none;
		box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
	}
	.navbar .dropdown-menu .shadow-lg {
		border-radius: 25px;
		background-color: var(--color-secondary);
	}
	.navbar .dropdown:hover .dropdown-toggle {
		color: var(--color-primary);
		height: 100%;
	}
	
	.navbar .dropdown-toggle i {
		font-size: 0.9em;
	}
	.navbar .dropdown-menu ul {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 15px;
		overflow-y: visible;
		height: unset;
	}
	.navbar .dropdown-menu ul li a {
		line-height: 1.25rem;
		font-size: 0.85em;
		margin: 0;
	}
	.navbar .dropdown-menu ul li a:hover {
		color: var(--color-primary);
		background-color: transparent;
	}
	.navbar .dropdown-menu ul li a .fa-solid {
		font-size: 1.04rem;
		margin: 2px 10px 0 0;
		width: 20px;
		color: var(--color-primary);
		display: inline;
		position: static;
	}
	.navbar .dropdown-menu ul li a:hover .fa-solid,
	.navbar .dropdown-menu ul li a:hover small {
		color: var(--color-white);
	}
	.navbar .dropdown-menu ul li a small {
		font-size: 0.85em;
		font-weight: normal;
	}
	.navbar .dropdown-menu ul + p {
		margin-left: 30px;
	}
	.navbar .dropdown-menu .thumb-grid {
		gap: 15px;
	}
	.navbar .dropdown-menu .thumb-grid .thumb {
		min-height: 122px;
		max-height: 122px;
	}
	.navbar .dropdown-menu .thumb-grid .thumb img {
		margin-top: -50px;
	}
	.navbar .dropdown-menu .thumb-grid .thumb p {
		top: 35px;
		left: 35px;
	}
	.navbar .dropdown-menu .thumb-grid .thumb p small {
		font-size: 0.85rem!important;
	}

	.navbar-dark li:nth-child(3) {
		position: relative;
	}
	.navbar-dark li:nth-child(3) .dropdown-menu {
		width: 300px;
		top: 54px;
		left: -15px;
	}
	.navbar-dark li:nth-child(3) .dropdown-menu ul {
		display: block;
	}
}

#breadcrumb {
	margin-top: 20px;
	position: relative;
	z-index: 999;
	border-bottom: 1px solid #eee;
	padding: 0 0 25px 0;
	font-size: 0.95rem;
}
#breadcrumb ul li {
	position: relative;
}
#breadcrumb ul li:after {
	content: '>';
	position: absolute;
	right: -16px;
	top: 1px;
	color: #ccc;
	font-weight: 600;
}
#breadcrumb ul li:last-child {
	opacity: 0.7;
}
#breadcrumb ul li:last-child:after {
	display: none;
}
@media (min-width: 768px) {
	#breadcrumb {
		margin-top: -20px;
	}
	#Hero.small + #breadcrumb {
		padding: 20px 0;
		margin-top: 0;
	}
}

#Hero {
	width: 100%;
	min-height: 730px;
	position: relative;
	overflow: hidden;
	text-align: center;
	background-color: var(--color-secondary);
}
#Hero.small {
	min-height: auto;
	background-image: url(/Content/images/63/climbing-activity.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#Hero.small:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,0.3);
}
#Hero .container {
	padding-top: 120px;
	position: relative;
	z-index: 1;
	min-height: 730px;
}
#Hero.small .container {
	padding-top: 100px;
	min-height: auto;
	z-index: 2;
}
#Hero .card {
	min-height: auto;
	text-align: left;
	margin: 0 auto;
	overflow: hidden;
	background-color: rgba(9,26,25,0.6);
	border: 1px solid rgba(255,255,255,0.25);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
#Hero .card hr {
	border-top-color: rgba(255,255,255,1);
}
#Hero .card .badge-ring {
    position: absolute;
    top: 0;
    right: 0;
	z-index: 1;
    width: 62px;
    height: 62px;
	background-color: rgba(9,26,25,0.5);
    border-radius: 50%;
}
#Hero .card .badge-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
#Hero .card .ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.25);
    stroke-width: 5;
}
#Hero .card .ring-seg {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;

    stroke-dasharray: 83.78 167.55;
}
#Hero .card .seg-1 {
    stroke: var(--color-primary);
    stroke-dashoffset: 0;
}
#Hero .card .seg-2 {
    stroke: var(--color-primary);
    stroke-dashoffset: -83.78;
}
#Hero .card .seg-3 {
    stroke: var(--color-primary);
    stroke-dashoffset: -167.55;
}
#Hero .card .ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#Hero .card .ring-center img {
    width: 28px;
}
#Hero .card a {
	position: relative;
	z-index: 1;
}
#Hero .card:before {
	content: '';
	background-image: linear-gradient(180deg, rgba(9, 26, 25, 0) 5%, rgba(9, 26, 25, 0.7) 90%);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: 200px;
	width: 100%;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
#Hero .card:after {
	content: '';
	background: radial-gradient(circle,rgba(42, 199, 189, 0.3) 0%, rgba(255, 255, 255, 0) 60%);
	width: 300px;
	height: 300px;
	position: absolute;
	top: calc(50% - 150px);
	right: -150px;
	z-index: 0;
}
#Hero .merge-box {
	position: absolute;
	bottom: 0;
	left: 1rem;
	z-index: 1;
	padding-bottom: 20px;
	width: calc(100% - 2rem);
}
#Hero .merge-box:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 100%;
	width: 60px;
	height: 60px;
	background: transparent;
	border-bottom-right-radius: 30px;
	box-shadow: 30px 30px 0 0 #ffffff;
}
#Hero .merge-box:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 100%;
	width: 60px;
	height: 60px;
	background: transparent;
	border-bottom-left-radius: 30px;
	box-shadow: -30px 30px 0 0 #ffffff;
}
#Hero .merge-box .highlight {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	height: 0;
	pointer-events: none;
}
#Hero .merge-box .highlight.active {
	opacity: 1;
	height: unset;
	pointer-events: auto;
	position: relative;
}
#Hero .merge-box .highlight .as-icon {
	background-color: transparent;
}
#Hero .merge-box .highlight:nth-child(1) {
	z-index: 2;
}
#Hero #HeroCarousel {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}
#Hero #HeroCarousel .carousel-inner,
#Hero #HeroCarousel .carousel-item {
	width: 100%;
	height: 100%;
}
#Hero #HeroCarousel .carousel-item img {
	object-fit: cover;
	width: 115%;
	height: 100%;
	margin-left: -15%;
}
#Hero #HeroCarousel .carousel-item:before {
	content: '';
	background-image: linear-gradient(0deg, rgba(9, 26, 25, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	height: 70%;
	width: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
#Hero #HeroCarousel .carousel-inner::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 220px;
	z-index: 1;
	background-image: linear-gradient(180deg, rgba(9, 26, 25, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
#Hero .carousel-indicators {
	bottom: 74px;
	z-index: 999;
}
#Hero .carousel-indicators [data-bs-target] {
	border-radius: 50%;
	width: 8px;
	height: 8px;
}
#Hero .btn:after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	border: 2px solid var(--color-white);
	width: calc(100% + 30px);
	height: calc(100% + 30px);
	border-radius: 60px;
	opacity: 0.1;
	background-color: rgba(255,255,255,0.75);
}
#Hero p.fs-5 {
	font-size: 1rem !important;
}
#Hero .btn-primary {
	width: calc(100% - 2rem);
}

.hero-next-card {
	padding: 0.6rem;
	border-radius: 13px;
	background: rgba(9, 26, 25, .5);
	border: 1px solid rgba(255,255,255,0.1);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.hero-next-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: inherit;
}
.hero-next-thumb {
	width: 55px;
	height: 55px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 5px;
	background: #d9f7f5;
}
.hero-next-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-next-content {
	min-width: 0;
	flex: 1;
}
.hero-next-content strong {
	display: block;
	font-size: .9rem;
	font-weight: 700;
	color: #10252b;
	margin-bottom: .2rem;
}
.hero-next-content small {
	display: -webkit-box;
	font-size: .78rem;
	line-height: 1.35;
	color: rgba(16,37,43,.72);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (min-width: 768px) {
	#Hero {
		text-align: left;
		min-height: 680px;
	}
	#Hero .card {
		margin: 100px 0 -10px;
	}
	#Hero:before,
	#Hero:after {
		content: '';
		background-color: white;
		height: 42px;
		width: 33.33%;
		position: absolute;
		bottom: 0;
		z-index: 1;
	}
	#Hero.small:before {
		display: none;
	}
	#Hero:before {
		left: 0;
	}
	#Hero:after {
		right: 0;
	}
	#Hero .container {
		min-height: 678px;
		padding-top: 200px;
	}
	#Hero.small .container {
		padding-top: 160px; 
	}
	#Hero .merge-box {
		position: relative;
		bottom: auto;
		left: auto;
		height: 95px;
		padding-bottom: 0;
		width: 100%;
	}
	#Hero .carousel-indicators {
		bottom: 70px;
	}
	#Hero p.fs-5 {
		font-size: 1.2rem !important;
	}
	#Hero .btn-primary {
		width: unset;
	}
	#Hero .col-lg-10 {
		min-height: 438px;
	}

	#Hero .card:before {
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
	.hero-next-card {
		margin-top: 1.25rem;
		padding: 0.7rem;
	}
	.hero-next-thumb {
		width: 65px;
		height: 65px;
	}

	@keyframes heroNextProgress {
		from {
			width: 0;
		}

		to {
			width: 100%;
		}
	}
}

#Hero + .usp {
	color: var(--color-white);
}
.hero-divider {
	display: none;
}
.usp {
	position: relative;
	z-index: 999;
	line-height: 1.7rem;
	text-align: center;
	color: var(--color-white);
}
.usp .d-flex {
	border-right: 1px dotted rgba(255,255,255,0.5);
}
.usp small {
	font-size: 0.7em;
	font-weight: 600;
}
.usp .col-lg-5 {
	margin-top: -180px;
	height: 50px;
}
@media (min-width: 768px) {
	.hero-divider {
		position: absolute;
		left: 50%;
		margin: 0 0 0 -720px;
		bottom: -1px;
		line-height: 0;
		z-index: 10;
		pointer-events: none;
		height: 43px;
		display: block;
	}
	.hero-divider svg {
		display: block;
		width: 100%;
		height: 140px;
	}
	.hero-divider i {
		position: absolute;
		top: 0;
		left: 50%;
		width: 20px;
		height: 20px;
		margin: 0 0 0 -10px;
		color: var(--color-white);
	}

	.usp {
		text-align: left;
	}
	.usp .col-lg-5 {
		margin-top: -130px;
	}
	.usp .fs-5 {
		line-height: 1.6rem;
	}
	.usp .customers span {
		border-radius: 50%;
		width: 44px;
		height: 44px;
		background-color: #000;
		margin-right: -20px;
		text-indent: -9999px;
		background-size: 70px;
		background-position: center;
		background-image: url(https://media.istockphoto.com/id/638756792/photo/beautiful-woman-posing-against-dark-background.jpg?s=612x612&w=0&k=20&c=AanwEr0pmrS-zhkVJEgAwxHKwnx14ywNh5dmzwbpyLk=);
	}
	.usp .customers span:nth-child(2) {
		background-image: url(https://headshotcompany.co.uk/wp-content/uploads/2024/05/transform-your-linkedin-profile.jpg);
	}
	.usp .customers span:nth-child(3) {
		background-image: url(https://marszalstudio.pl/wp-content/uploads/2024/01/fajne-zdjecia-profilowe-19.webp);
	}
}

.merge-box {
	background-color: var(--color-white);
	padding: 10px;
}
@media (min-width: 768px) {
	.merge-box {
		padding: 15px;
	}
}

.slider .overflow-auto {
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; 
	-ms-overflow-style: none;
	display: flex;
}
.slider .thumb-3 {
	flex: 0 0 auto;
	display: flex;
}
.slider .thumb-3 .thumb {
	width: calc(100vw - 60px);
}
.slider .slider-buttons .btn {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	line-height: 44px;
	padding: 0;
	background-color: rgba(255,255,255,0.5);
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
}
.slider .slider-buttons .btn i {
	width: unset;
	height: unset;
	position: static;
}
.slider .slider-buttons .btn:hover {
	border: 2px solid var(--color-secondary);
	color: var(--color-secondary);
}
.slider .merge-box {
	background-color: var(--color-shade);
}
@media (min-width: 768px) {
	.slider .thumb-3 .thumb {
		width: unset;
		max-width: 200px;
		min-width: 394px;
	}
}

.highlight {
	background-color: var(--color-white);
	line-height: 1.2rem;
	font-size: 0.9rem;
	position: relative;
	overflow: hidden;
	text-align: left;
	padding: 5px;
}
.highlight * {
	position: relative;
	z-index: 1;
}
.highlight p.fs-6 {
	margin: 10px 0 0;
	font-size: 0.85rem!important;
	line-height: 1.18rem;
}
.highlight.active {
	background-color: var(--color-secondary);
	color: var(--color-white);
	position: relative;
	z-index: 9999;
}
.highlight .as-icon {
	background-color: var(--color-white);
}
.highlight .as-icon i {
	color: var(--color-primary);
	
}
.highlight .as-icon i:nth-child(2) {
	color: var(--color-white);
}
.highlight:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(64, 191, 181, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
} 

.as-icon {
	background-color: var(--color-primary);
	text-align: center;
	display: block;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.as-icon i {
	color: var(--color-white);
	font-size: 1.5rem;
	line-height: 40px;
}
.as-icon i:last-child {
color: var(--color-primary);
	font-size: 0.8rem;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: -10px 0 0 -10px;
}
.as-icon img {
	margin: 10px;
}
.as-icon.sm {
	width: 38px;
	height: 38px;
}

#Intro p:last-of-type {
	/*margin-right: 200px;*/
}
#Intro .highlight {
	position: absolute;
	bottom: 50px;
	right: 0;
	max-width: 190px;
	padding: 50px 20px 20px;
	display: none;
}
#Intro .highlight p {
	margin-right: 0;
}
#Intro .highlight:before {
	content: 'quick tip';
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(255,255,255,0.3);
	border-radius: 3px;
	color: var(--color-secondary);
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.72rem;
	padding: 0 6px;
}
@media(min-width: 768px) {
	#Intro .intro-img {
		margin-left: -35px;
	}
}


.activity-info-card {
	background-image: url(/Content/images/63/tips_background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 2rem;
	padding: clamp(1.5rem, 3vw, 3rem);
	border: 6px solid #fff;
	box-shadow: 0 24px 70px rgba(5, 30, 35, 0.08);
}
.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .85rem;
	color: #26c7bd;
	font-weight: 800;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.activity-copy {
	position: relative;
}
.activity-copy h2 {
	margin-bottom: 1rem;
}
.activity-copy h3 {
	border-top: 2px dotted rgba(0,0,0,0.15);
	padding-top: 1.75rem;
	margin-top: 1.75rem;
	margin-bottom: .85rem;
	padding-left: 100px;
	font-size: 1.35rem;
	color: #071c24;
}
.activity-copy p {
	color: #344b53;
	font-size: 1.03rem;
	line-height: 1.75;
	max-width: 760px;
}
.activity-copy p:last-of-type {
	padding-left: 100px;
}
.activity-copy .badge-ring {
	position: absolute;
	bottom: 80px;
	left: 0;
	z-index: 1;
	width: 70px;
	height: 70px;
	background-color: var(--color-shade);
	border-radius: 50%;
}
.activity-copy .badge-ring svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.activity-copy .ring-bg {
	fill: none;
	stroke: rgba(255,255,255,0.25);
	stroke-width: 5;
}
.activity-copy .ring-seg {
	fill: none;
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 83.78 167.55;
}
.activity-copy .seg-1 {
	stroke: var(--color-primary);
	stroke-dashoffset: 0;
}
.activity-copy .seg-2 {
	stroke: var(--color-primary);
	stroke-dashoffset: -83.78;
}
.activity-copy .seg-3 {
	stroke: var(--color-primary);
	stroke-dashoffset: -167.55;
}
.activity-copy .ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.activity-copy .ring-center img {
    width: 30px;
}
.tips-card {
	background: linear-gradient(180deg, #082d2b 0%, #061f22 100%);
	color: #fff;
	border-radius: 1.5rem;
	padding: 1.5rem;
	box-shadow: 0 18px 45px rgba(5, 30, 35, 0.18);
	position: relative;
	overflow: hidden;
}
.tips-card::after {
	content: "";
	position: absolute;
	inset: auto -30% -30% auto;
	width: 220px;
	height: 220px;
	background: rgba(41, 199, 190, 0.16);
	border-radius: 999px;
}
.tips-card-header {
	display: flex;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
	border-bottom: 1px dotted var(--color-primary);
}
.tips-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}
.tips-card li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 1rem;
	color: rgba(255,255,255,.86);
	line-height: 1.55;
}
.tips-card li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: .1rem;
	color: var(--color-primary);
}


.thumb-grid {
	display: grid;
	gap: 15px;
	position: relative;
}
.thumb-grid .thumb {
	position: relative;
	color: var(--color-white);
	overflow: hidden;
	background-color: var(--color-secondary);
	max-height: 300px;
}
.thumb-grid .thumb img {
	opacity: 0.75;
	transition: transform 0.3s ease;
}
.thumb-grid .thumb:hover img {
	transform: scale(1.1);
}
.thumb-grid .thumb a,
.thumb-grid .thumb h3,
.thumb-grid .thumb h4,
.thumb-grid .thumb p,
.thumb-grid .thumb .merge-box {
	position: absolute;
	z-index: 1;
}
.thumb-grid .thumb h3,
.thumb-grid .thumb h4 {
	left: 25px;
	top: 30px;
}
.thumb-grid .thumb h4 small {
	font-size: 0.9rem!important;
	font-weight: 600;
}
.thumb-grid .thumb a {
	left: 25px;
	bottom: 30px;
	width: unset;
}
.thumb-grid .thumb p {
	top: 95px;
	left: 25px;
	font-size: 0.9em;
	font-weight: 500;
	width: 70%;
}
.thumb-grid .thumb .merge-box {
	right: 0;
	bottom: 0;
	border-top-left-radius: 15px;
}
.thumb-grid .thumb .merge-box:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 100%;
	width: 30px;
	height: 30px;
	background: transparent;
	border-bottom-right-radius: 15px;
	box-shadow: 15px 15px 0 0 #ffffff;
}
.thumb-grid .thumb .merge-box:before {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 0;
	width: 30px;
	height: 30px;
	background: transparent;
	border-bottom-right-radius: 15px;
	box-shadow: 15px 15px 0 0 #ffffff;
}
.thumb-grid .thumb .merge-box .as-icon {
	background-color: var(--color-secondary);
	width: 60px;
	height: 60px;
}
.thumb-grid .thumb .merge-box .as-icon img,
.thumb-grid .thumb:hover .merge-box .as-icon img {
	margin: 10px;
	transform: scale(1);
	opacity: 1;
}
.thumb-grid .thumb:has(.merge-box) {
	border-bottom-right-radius: 0;
}
.thumb-grid .thumb.text-overlay {
	min-height: 240px;
}
.thumb-grid .thumb.text-overlay img {
	transform: scale(1.35);
	margin-left: 20px;
	margin-top: 20px
}
.thumb-grid .thumb.text-overlay:after {
	background: linear-gradient(90deg,rgba(9, 26, 25, 0.7) 20%, rgba(9, 26, 25, 0) 100%);
} 
.thumb-grid .thumb:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(90deg,rgba(9, 26, 25, 0.4) 20%, rgba(9, 26, 25, 0) 100%);
}
@media (min-width: 768px) {
	.thumb-grid {
		gap: 30px;
	}
	.thumb-grid .thumb h3,
	.thumb-grid .thumb h4 {
		top: 40px;
		left: 30px;
	}
	.thumb-grid .thumb a {
		bottom: 40px;
		left: 30px;
	}
	.thumb-grid .thumb p {
		top: 120px;
		left: 30px;
		font-size: 0.95em;
		width: 50%;
	}
	.thumb-grid .thumb .merge-box {
		border-top-left-radius: 30px;
	}
	.thumb-grid .thumb .merge-box:after {
		box-shadow: 30px 30px 0 0 var(--color-shade) !important;
		width: 60px;
		height: 60px;
		border-bottom-right-radius: 30px;
	}
	.thumb-grid .thumb .merge-box:before {
		box-shadow: 30px 30px 0 0 var(--color-shade) !important;
		width: 60px;
		height: 60px;
		border-bottom-right-radius: 30px;
	}
	.thumb-grid .thumb .merge-box .as-icon {
		width: 70px;
		height: 70px;
	}
	.thumb-grid .thumb .merge-box .as-icon img,
	.thumb-grid .thumb:hover .merge-box .as-icon img {
		margin: 15px;
	}
	.thumb-grid .thumb.text-overlay img {
		transform: scale(1);
		margin-left: 0;
		margin-top: 0;
	}
}

.thumb-2 {
	grid-template-columns: repeat(1, 1fr);
}
.thumb-3 {
	grid-template-columns: repeat(1, 1fr);
}
.thumb-4 {
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
	.thumb-2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.thumb-3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.thumb-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card {
	background-color: var(--color-white);
	border-color: transparent;
	min-height: 230px;
}
.card.active {
	background-color: var(--color-secondary);
	color: var(--color-white)!important;
}

#jumpMenuTrigger {
	border-top: 2px dotted rgba(0,0,0,0.08);
}
.jump-menu-wrap {
	position: sticky;
	top: 64px;
	z-index: 99;
	min-height: 116px;
}
.jump-menu-inner {
	padding: 2.5rem 0;
	transition: padding 0.25s ease, box-shadow 0.25s ease;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(10px);
}
.jump-menu-wrap.is-sticky .jump-menu-inner {
	padding: 0.6rem 0;
	box-shadow: 0px 20px 25px 0px rgba(0,0,0,0.05);
}
.jump-menu {
	gap: 4.8rem;
	white-space: nowrap;
	scrollbar-width: none;
}
.jump-menu::-webkit-scrollbar {
	display: none;
}
.jump-menu .nav-link {
	border-radius: 999px;
	padding: 0.65rem 0;
	transition: all 0.25s ease;
	background: transparent;
	color: var(--color-secondary);
	font-weight: 600;
	font-size: 0.95rem;
}
.jump-menu-wrap.is-sticky .nav-link {
	font-size: 0.85rem;
}
.jump-menu .nav-link:hover {
	color: #000;
	text-decoration: underline;
}
.jump-menu .nav-link.active {
	background: transparent;
	color: var(--color-primary);
	text-decoration: underline;
}
.jump-section {
	scroll-margin-top: 120px;
}

@media (max-width: 767.98px) {
	body.has-bottom-jump-menu {
		padding-bottom: 90px;
	}
	.jump-menu-wrap {
		position: relative;
		top: auto;
		bottom: auto;
		padding: 1rem 0;
		min-height: auto;
	}
	.jump-menu-wrap.is-sticky {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: -1rem;
		width: 100%;
		padding: 1rem 0;
	}
	.jump-menu-wrap.is-sticky .jump-menu-inner {
		box-shadow: 0px -20px 25px 0px rgba(0,0,0,0.05);
	}
	.jump-menu-wrap .btn-primary {
		width: calc(70% - 30px);
	}
}

.benefits {
	z-index: 1;
}
.benefits .container {
	padding: 0;
}
.benefits .card {
	background-color: transparent;
	border: none;
}
.benefits .benefitImg {
	background-color: #0f0f0f; 
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.benefits .benefitImg * {
	position: relative;
	z-index: 1;
}
.benefits .benefitImg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
.benefits .flex-fill:nth-child(2) .card-body,
.benefits .flex-fill:nth-child(2) ul li:first-child {
	border-right: 2px solid #eef2f6;
}
.benefits .flex-fill:nth-child(3) .card-body,
.benefits .flex-fill:nth-child(3) ul li:first-child {
	border-right: none;
}
.benefits .badge {
	border-radius: 3px;
	padding: 4px 6px 5px 6px;
	font-size: 0.8rem;
}
.benefits ul {
	margin: 0 0 1rem;
}
.benefits ul li {
	padding: 8px 40px 12px;
	position: relative;
}
.benefits ul li p {
	font-size: 0.98rem;
}
.benefits .flex-fill:nth-child(1) ul li:nth-child(even) {
	background-color: rgba(249, 236, 226, 0.6);
	border-right: 2px solid #fff;
}
.benefits .flex-fill:nth-child(2) ul li:nth-child(even) {
	background-color: rgba(238, 242, 246, 0.6);
	border-right: 2px solid #fff;
}
.benefits .flex-fill:nth-child(3) ul {	
	margin: 0 1rem 0 0;
}
.benefits .flex-fill:nth-child(3) ul li:nth-child(even) {
	background-color: rgb(251, 246, 227, 0.6);
}
.benefits .flex-fill:nth-child(1) ul li:last-child {
	border-bottom-left-radius: 7px;
}
.benefits .flex-fill:nth-child(3) ul li:last-child {
	border-bottom-right-radius: 7px;
}
.benefits ul li label {
	line-height: normal;
	display: block;
}
.benefits ul li small {
	font-size: 0.8rem;
	color: rgba(0,0,0,0.5);
}
.benefits ul li ul {
	margin: 12px -2.5rem -12px!important;
	padding: 0 2.5rem;
	background: linear-gradient(180deg,rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.6) 40%);
	height: 0;
	position: relative;
	overflow: hidden;
}
.benefits ul li ul li {
	background-color: transparent!important;
	border-right: none!important;
	border-bottom: 1px dotted rgba(0,0,0,0.1);
}
.benefits ul li ul li:first-child {
	padding-top: 20px!important;
}
.benefits ul li ul li:last-child {
	padding-bottom: 20px!important;
}
.benefits ul li .expand {
	position: absolute;
	top: 0;
	left: -1px;
	z-index: 1;
	width: 100%;
	height: 65px;
	line-height: 65px;
	text-indent: 11px;
	text-align: left;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.4rem;
	border-left: 0;
	background: none;
	border: none;
}
.benefits ul li .expand:hover {
	color: var(--color-primary);
}
.benefits ul li .expand:before {
	content: '';
	width: 30px;
	height: 30px;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	position: absolute;
	top: 0;
	left: -30px;
	background-color: #fff;
}
.benefits ul li.extra {
	background-color: var(--color-secondary);
	color: var(--color-white);
	border-right: 2px solid var(--color-white);
}
.benefits .flex-fill:nth-child(3) ul li.extra:last-child {
	border-right: none;
}
.benefits ul li.extra small {
	color: var(--color-white);
}
.benefits ul li.extra .fa-solid {
	background-color: transparent;
	border-radius: 0;
	position: static;
	color: var(--color-primary);
	width: auto;
	height: auto;
	font-size: 1rem;
	line-height: normal;
}
.benefits .flex-fill {
    position: relative;
}
.benefits .card-body.is-fixed {
    position: fixed;
    top: 64px;
    z-index: 20;
    background: #fff;
	padding-bottom: 15px!important;
}
.benefits .card-body.is-stopped {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: #fff;
	padding-bottom: 15px!important;
}
.benefits .card-body.is-fixed hr,
.benefits .card-body.is-stopped hr {
	display: none;
}
@media (min-width: 768px) {
	.benefits .container {
		padding-right: calc(var(--bs-gutter-x) * .7);
		padding-left: calc(var(--bs-gutter-x) * .7);
	}
	.benefits .flex-fill .card-body,
	.benefits .flex-fill ul li:first-child {
		border-right: 2px solid var(--color-shade);
	}
	.benefits .flex-fill:nth-child(1) ul {
		margin: 0 0 0 1rem;
	}
}

.trip-tab-content {
	display: none;
}
.trip-tab-content.active {
	display: block;
}

#faqAccordion .accordion-item {
	border-bottom: 2px dotted #e6e6e6;
}
.accordion {
	--bs-accordion-body-padding-x: 0;
	--bs-accordion-body-padding-y: 1.4rem;
}
.accordion-button:not(.collapsed) {
	background-color: transparent;
	border-bottom: 2px dotted rgba(0,0,0,0.09);
	box-shadow: none;
	color: var(--color-primary);
}
.accordion-button::after {
	background-image: none !important;
}
.accordion-button {
	position: relative;
	padding-right: 3rem;
	padding-bottom: 1.4rem;
	padding-top : 1.4rem;
	box-shadow: none!important;
}
.accordion-button {
	padding-left: 0;
	padding-right: 0;
	font-weight: 600;
	color: var(--color-secondary);
}
.accordion-button::before {
	content: "+";
	position: absolute;
	right: 1rem;
	font-weight: 700;
	font-size: 1.7rem;
	line-height: 1;
}
.accordion-button:not(.collapsed)::before {
	content: "–";
}

.payment-icon-list img {
	background-color: var(--color-white);
	padding: 0 10px;
	width: 54px;
	border-radius: 3px;
	margin: 0 0 0 10px;
}

.banner {
	height: 200px;
	width: 100%;
	background-image: url(/content/images/63/climbing-activity.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
	z-index: 1;
}
footer {
	color: var(--color-white);
	background-color: var(--color-secondary);
	position: relative;
	font-size: 0.9rem;
}
footer:before {
	content: '';
	background-color: var(--color-secondary);
	height: 42px;
	width: 33.33%;
	position: absolute;
	top: -42px;
	left: 0;
	z-index: 999;
}
footer:after {
	content: '';
	background-color: var(--color-secondary);
	height: 42px;
	width: 33.33%;
	position: absolute;
	top: -42px;
	right: 0;
	z-index: 999;
}
footer .container {
	position: relative;
	z-index: 2;
}
footer ul li {
	margin: 0 0 17px;
}
footer ul li a {
	color: var(--color-white);
	text-decoration: none;
}
footer .footer-divider {
	position: absolute;
	left: 50%;
	margin: 0 0 0 -720px;
	top: -42px;
	line-height: 0;
	z-index: 1;
	pointer-events: none;
	height: 43px;
}
footer .footer-divider svg {
	display: block;
	width: 100%;
	height: 140px;
}
footer .footer-divider i {
	position: absolute;
	top: 0;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: 0 0 0 -10px;
	color: var(--color-white);
}
footer hr {
	border-top: 2px dotted rgba(255,255,255,0.5);
}
footer a:hover {
	color: var(--color-primary);
}

.claims-panel{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    overflow:hidden;
    background:var(--color-secondary);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.claims-image{
    position:relative;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.52) 0%,
            rgba(0,0,0,.25) 40%,
            rgba(0,0,0,.15) 100%
        ),
        url('/content/images/63/claims_background.jpg');

    background-size:cover;
    background-position:center;
}
.claims-overlay{
    position:relative;
    z-index:2;
    padding:4rem;
    max-width:540px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
}
.claims-badge{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    color: var(--color-primary);
    width:max-content;
    margin-bottom:.7rem;
    font-weight:700;
	font-size: 0.85rem;
}
.claims-intro{
    font-size:1rem;
    line-height:1.8;
    opacity:.92;
    margin-bottom:3rem;
}
.claims-actions{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
}
.claims-side{
    background:
        radial-gradient(
            circle at top,
            rgba(45,212,207,.16),
            transparent 45%
        ),
        #02292a;

    padding:3rem;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.claims-card{
    display:flex;
    gap:1.25rem;
    padding:1.5rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.claims-card:last-of-type {
	border-bottom: none;
}
.claims-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--color-primary);
    font-size:1.3rem;
    border:1px solid rgba(45,212,207,.2);
    background:rgba(255,255,255,.03);
}
.claims-card strong{
    display:block;
    font-size:1.2rem;
    margin-bottom:.4rem;
}
.claims-card span{
    color:rgba(255,255,255,.7);
    line-height:1.7;
    display:block;
}
.claims-trust{
    margin-top:2rem;
    padding:1.5rem;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);

    display:flex;
    gap:1rem;
    align-items:flex-start;

    color:rgba(255,255,255,.88);
}
.claims-trust i{
    color:#2dd4cf;
    margin-top:.2rem;
}
@media(max-width:991px){

    .claims-panel{
        grid-template-columns:1fr;
    }

    .claims-overlay,
    .claims-side{
        padding:2rem;
    }

    .claims-overlay h2{
        font-size:3rem;
    }
}


.featured-activities {
	background: #eaf8f6;
	border-radius: 28px;
	padding: 38px;
	margin: 28px 0 42px;
}

.featured-activities__header {
	margin-bottom: 22px;
}

.activity-eyebrow {
	color: #16c7bd;
	font-weight: 800;
	margin-bottom: 8px;
}

.featured-activities h2 {
	color: #062f2d;
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 6px;
}

.featured-activity-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.featured-activity-card {
	position: relative;
	min-height: 145px;
	overflow: hidden;
	border-radius: 18px;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	color: #fff;
	text-decoration: none;
	font-weight: 900;
	background: #062f2d;
}

	.featured-activity-card img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.featured-activity-card::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(0,0,0,.68), rgba(0,0,0,.05));
	}

	.featured-activity-card span {
		position: relative;
		z-index: 2;
	}

.activity-tools {
	margin-bottom: 18px;
}

	.activity-tools input {
		width: 100%;
		border: 1px solid #d7e8e6;
		border-radius: 999px;
		padding: 14px 18px;
	}

.activity-az-nav {
	display: flex;
	gap: 10px;
	padding: 14px;
	background: var(--color-secondary);
	border-radius: 18px;
}

	.activity-az-nav a {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 34px;
		color: var(--color-white);
		text-decoration: none;
		font-weight: 700;
	}

		.activity-az-nav a:hover {
			color: var(--color-primary);
			transform: translateY(-2px);
		}

@media (max-width: 768px) {

	.activity-az-nav {
		overflow-x: auto;
		overflow-y: hidden;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

		.activity-az-nav::-webkit-scrollbar {
			display: none;
		}

		.activity-az-nav a {
			flex: 0 0 auto;
			min-width: 24px;
		}
}

.activity-letter-group {
	margin-bottom: 36px;
}

	.activity-letter-group h2 {
		color: #062f2d;
		font-size: 2.2rem;
		font-weight: 900;
		margin-bottom: 14px;
	}

.activity-letter-group {
	margin: 0 0 56px;
}

	.activity-letter-group h2 {
		font-size: 3rem;
		line-height: 1;
		font-weight: 800;
		color: #073b4c;
		margin: 0 0 24px;
	}

.activity-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 32px;
}

	.activity-list a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid #dbe8e7;
		color: #073b4c;
		text-decoration: none;
		font-weight: 600;
		font-size: 1rem;
		transition: color .2s ease, transform .2s ease, border-color .2s ease;
	}

		.activity-list a:hover {
			color: #12c7c0;
			border-color: #12c7c0;
			transform: translateX(4px);
		}

@media (max-width: 991px) {
	.activity-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.activity-list {
		grid-template-columns: 1fr;
	}

	.activity-letter-group h2 {
		font-size: 2.4rem;
	}
}

.activity-letter-group {
	margin-bottom: 42px;
}

	.activity-letter-group h2 {
		margin-bottom: 14px;
		font-size: 2rem;
		color: #062f2d;
	}

.is-hidden {
	display: none !important;
}

@media (max-width: 991px) {
	.featured-activity-grid,
	.activity-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.featured-activity-grid,
	.activity-list {
		grid-template-columns: 1fr;
	}

	.featured-activities {
		padding: 24px;
	}
}






.r-1 {
	border-radius: 3px;
}
.r-tl-1 {
	border-top-left-radius: 3px;
}
.r-tr-1 {
	border-top-right-radius: 3px;
}
.r-br-1 {
	border-bottom-right-radius: 3px;
}
.r-bl-1 {
	border-bottom-left-radius: 3px;
}
@media (min-width: 768px) {
	.r-1 {
		border-radius: 7px;
	}

	.r-tl-1 {
		border-top-left-radius: 7px;
	}

	.r-tr-1 {
		border-top-right-radius: 7px;
	}

	.r-br-1 {
		border-bottom-right-radius: 7px;
	}

	.r-bl-1 {
		border-bottom-left-radius: 7px;
	}
}

.r-2 {
	border-radius: 7px;
}
.rtl-2 {
	border-top-left-radius: 7px;
}
.rtr-2 {
	border-top-right-radius: 7px;
}
.rbr-2 {
	border-bottom-right-radius: 7px;
}
.rbl-2 {
	border-bottom-left-radius: 7px;
}
@media (min-width: 768px) {
	.r-2 {
		border-radius: 15px;
	}
	.rtl-2 {
		border-top-left-radius: 15px;
	}
	.rtr-2 {
		border-top-right-radius: 15px;
	}
	.rbr-2 {
		border-bottom-right-radius: 15px;
	}
	.rbl-2 {
		border-bottom-left-radius: 15px;
	}
}

.r-3 {
	border-radius: 15px;
}
.rtl-3 {
	border-top-left-radius: 15px;
}
.rtr-3 {
	border-top-right-radius: 15px;
}
.rbr-3 {
	border-bottom-right-radius: 15px;
}
.rbl-3 {
	border-bottom-left-radius: 15px;
}
@media (min-width: 768px) {
	.r-3 {
		border-radius: 30px;
	}
	.rtl-3 {
		border-top-left-radius: 30px;
	}
	.rtr-3 {
		border-top-right-radius: 30px;
	}
	.rbr-3 {
		border-bottom-right-radius: 30px;
	}
	.rbl-3 {
		border-bottom-left-radius: 30px;
	}
}

.svg-white {
	filter: invert(1);
}


/* Temp page layout */
.container.main ul,
.container.main ul li {
	padding: 0;
	list-style: none;
}