.tab-panel {
	position: relative;
	padding-top: 50px;
}

.tab-panel .background {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

/*.tab-panel .background::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
}*/

.tab-panel .panel-info {
	position: relative;
	padding: 45px 50px 0;
    margin-bottom: var(--space-12);
}

.tab-panel .panel-info .panel-title {
	position: relative;
	/* text-align: center; */
	z-index: 1;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	color: #FFF;
	max-width: 270px;
	margin: 0 auto 18px;
}

.tab-panel .tab-container {
	display: flex;
	flex-direction: column;
	align-items: baseline;
	/* padding-left: 15px; */
	gap: 17px;
}

.tab-panel .tab-container .tab-select {
	width: 275px;
	height: 40px;
	text-indent: 15px;
    text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-5);
}

.tab-panel .tab-container .tabs {
	/* display: none; */
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}
.tab-panel .tab-container .tab-label {
	/* display: none; */
}
.tab-panel .tab-container .tab-label.weather {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: var(--font-body);
}
.tab-panel .tab-container .tab-label.weather .icon {
	width: 95px;
}
.tab-panel .tab-container .tab-label.weather span {
	line-height: 1.1;
	font-weight: 100;
}
.tab-panel .tab-container .tab-label.active {
	/* text-decoration: underline; */
}

.tab-panel .tab-container .view-all {
	display: flex;
	align-items: center;
	position: relative;
	color: var(--black-29);
	background: var(--yellow-de);
	border: 2px solid var(--cream-fb);
	border-radius: var(--rounded-lg);
	font-size: 12px;
	letter-spacing: 0.05em;
	font-family: var(--font-body);
	font-weight: 900;
	padding: 10px 20px;
	padding-right: 25px;
}



.tab-panel .tab-container .view-all .btn-accent::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border-radius: var(--rounded-circle);
    opacity: 0;
    transition: opacity 200ms ease;
}

.tab-panel .panel-slides {
	position: relative;
	width: 100%;
	display: block;
}

.tab-panel .panel-slides > div.contentRender {  display: none; }

.tab-panel .panel-slides > div.contentRender.active {  display: block;}

.tab-panel .panel-slides > div {
	opacity: 1;
	transition: opacity 500ms ease;
}

.tab-panel .panel-slides.loading > div  {
	opacity: 0;
	transition: opacity 500ms ease;
}


@media (min-width: 40em) {
	.tab-panel .background {
		height: calc(400px + (505 - 400) * ((100vw - 640px) / (1024 - 640)));
	}
	.tab-panel .panel-info .panel-title {
		max-width: 500px;
	}

	.tab-panel .tab-container .tab-select {
		display: none;
	}
	.tab-panel .tab-container .tabs {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: var(--space-4);
		position: relative;
		z-index: 2;
		background-color: var(--white);
		padding: 0 13px;
	}

	.tab-panel .tab-container .tab-label {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.2em;
		color: var(--dark-gray);
		transition: color .3s ease, border-color .3s ease;
		text-align: center;
		text-transform: uppercase;
		background-color: transparent;
		margin-right: 4px;
		padding: 10px 12px;
		cursor: pointer;
	}
	.tab-panel .labels .tab-label.active::after { content: none; }
}

@media (min-width: 64em) {
	.tab-panel {
		margin-bottom: var(--space-32);
	}

	.tab-panel::before {
		top: 22px;	
		width: calc(220px + (370 - 220) * ((100vw - 1025px) / (1440 - 1025)));
		aspect-ratio: 380 / 833;
		height: auto;
	}

	.tab-panel .background {
		height: calc(560px + (620 - 560) * ((100vw - 1025px) / (1440 - 1025)));
		background-size: cover;
		background-attachment: fixed;
	}

	.tab-panel .panel-info {
		padding: 120px 35px 0;
		width: calc(100% - 45px);
		max-width: 1309px;
		margin: 0 auto var(--space-1);
		min-height: 365px;
		z-index: 2;
	}

	.tab-panel .tab-container {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 30px;
		margin-bottom: var(--space-16);
	}

	.tab-panel .tab-container .tabs {
		margin-bottom: 0;
	}

	.tab-panel .panel-info .panel-title {
		font-size: 65px;
		line-height: 1.2em;
		max-width: 800px;
		margin-bottom: var(--space-12);
	}

	.tab-panel .panel-slides {
		padding: 0 15px 0;
	}

	

	@media (hover : hover) {
		.tab-panel .tab-container .tab-label:not(.active):hover {
		}

		.tab-panel .tab-container .view-all:hover .btn-accent {
			width: 24px;
			right: -12px;
		}
		
		.tab-panel .tab-container .view-all:hover .btn-accent::after {
			opacity: 1;
		}
	}
}

@media (min-width: 1440px) {
	.tab-panel .background {
		max-height: 620px;
	}
}


/*--Customization--*/
/*--GENERAL--*/
.tab-panel .background {
	background: transparent;
}
/*--HEADER--*/
.tab-panel .panel-info {
	padding: 20px 30px 0;
	max-width: 1160px;
	background: url("/includes/public/assets/shared/trees.svg");
	background-repeat: no-repeat;
	background-position: 118% 63%;
	background-size: 50% 48%;
	margin-bottom: 24px;
}
.tab-panel .panel-info .panel-pretitle {
	font-family: var(--font-montana);
	font-size: 34px;
	color: var(--green-5e);
	/* padding: 0px 15px; */
	line-height: 1;
	transform: rotate(352deg) translateY(-9px);
	margin-bottom: 10px;
	position: absolute;
	top: 0px;
}
.tab-panel .panel-info .panel-title {
	font-family: var(--font-smithsonian);
	font-size: 30px;
	color: var(--green-5e);
	max-width: none;
	text-align: left;
	line-height: 1.2;
	/* padding-left: 15px; */
	margin-bottom: 10px;
	text-transform: lowercase;
}
.tab-panel .panel-info .panel-description {
	font-family: var(--font-montserrat);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.5px;
	color: var(--black-29);
	padding-right: 20px;
	/* padding-left: 15px; */
	margin-bottom: 6px;
}
.tab-panel .panel-info .tab-container .tabs {
	display: flex;
	font-weight: 900;
	width: 100%;
	letter-spacing: 1px;
	background: transparent;
	justify-content: space-between;
	/* margin: 0 auto; */
}
.tab-panel .panel-info .tab-container .tab-label {
	font-family: var(--font-smithsonian);
	font-size: 14.5px;
	color: var(--gray-e0);
	gap: 10px;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-position: under;
	text-decoration-thickness: 2px;
	text-transform: lowercase;
	cursor: pointer;
}
.tab-panel .tab-container .tab-label.weather .icon {
	width: 46px;
}
.tab-panel .panel-info .tab-container .tab-label .icon {
	display: none;
}
.tab-panel .panel-info .tab-container .tab-label .icon.gray {
	display: block;
}
.tab-panel .panel-info .tab-container .tab-label.active {
	color: var(--blue-32);
	
	text-decoration-color: var(--orange-d7);
	
	
	gap: 10px;
}
.tab-panel .panel-info .tab-container .tab-label.active .icon {
	display: block;
}
.tab-panel .panel-info .tab-container .tab-label.active .icon.gray {
	display: none;
}
.tab-panel .panel-info .tab-container .tab-select {
	display: none;
}
/*--IMAGE--*/
.core-slider.slider-3-across .slide .img-cont {
	border-radius: var(--rounded-lg);
}
/*--CONTENT--*/
.core-slider.slider-3-across {
	padding: 0px 65px;
	max-width: 1160px;
}
.core-slider.slider-3-across .slide .content-section {
	position: absolute;
	bottom: 0;
	left: 0;
	/* width: 100%; */
	/* height: auto; */
	background: transparent;
	padding: 14px 16px;
	z-index: 2;
}
.core-slider.slider-3-across .slide .slide-title,
.core-slider.slider-3-across .slide .slide-title a {
	font-size: 19px;
	font-family: var(--font-montserrat);
	color: var(--white);
	font-weight: 900;
	line-height: 1.1;
}
.core-slider.slider-3-across .slide .content-section .description,
.core-slider.slider-3-across .slide .content-section .slide-footer {
	display: none;
}
/*--BUTTON--*/
.tab-panel .panel-info .tab-container .btn-wrap {
    font-family: var(--font-family-body);
    font-weight: 800;
    line-height: var(--leading-tight);
    position: relative;
    background-color: var(--visit-btn-bg);
    font-size: var(--text-lg);
    margin: var(--space-3) 0;
    border-radius: 10px;
    z-index: 0;
}
.tab-panel .panel-info .tab-container .btn-wrap:hover .hover-border {
    border: 2px solid var(--orange-d7);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: auto;
    right: auto;
    left: 46px;
    bottom: -23px;
    border-radius: 10px;
    z-index: -2;
}
.tab-panel .panel-info .tab-container .btn-wrap:hover .hover-border {
    border: 2px solid var(--orange-d7);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: auto;
    right: auto;
    left: 5px;
    bottom: -5px;
    border-radius: 10px;
    z-index: -2;
}
.core-slider.slider-3-across .glide__bullets {
	display: none;
}
/*--ARROW--*/
.core-slider.slider-3-across .glide__arrows {
	top: 50% !important;
	left: -60px;
	width: calc(100% + 120px );
}
.core-slider.slider-3-across .glide__arrows .glide__arrow {
	font-size: 40px;
	border-radius: 0px;
	box-shadow: none;
	color: var(--blue-32);
	background: transparent;
	}

@media screen and (min-width:40em) {
    /*--GENERAL--*/
	.core-slider.slider-3-across {
		padding: 0px 40px;
	}
    /*--HEADER--*/
	.tab-panel .panel-info {
		padding: 0px 20px;
	}
	.tab-panel .panel-info .panel-pretitle {
		font-size: 60px;
		transform: rotate(354deg) translateY(-38px);
		padding: 0;
		top: -12px;
	}
	.tab-panel .panel-info .panel-title {
		font-size: 56px;
		padding-left: 0px;
		margin-bottom: 4px;
	}
	.tab-panel .panel-info .panel-description {
		font-size: 16px;
		width: 80%;
		padding-left: 4px;
		line-height: 1.58;
	}
	.tab-panel .panel-info .tab-container {
		padding: 0px;
		margin-bottom: 0px;
	}
	.tab-panel .panel-info .tab-container .tabs {
		justify-content: center;
		padding: 0px;
	}
	.tab-panel .panel-info .tab-container .tab-label {
		font-size: 20px;
		line-height: 1.5;
		text-decoration-thickness: 4px;
	}
    /*--IMAGE--*/
    /*--CONTENT--*/
	.core-slider.slider-3-across .slide .content-section {
		padding: 20px;
	}
	.core-slider.slider-3-across .slide .slide-title,
	.core-slider.slider-3-across .slide .slide-title a {
		font-size: 26px;
		letter-spacing: 1.7px;
	}
	.core-slider.slider-3-across .glide__track {
		margin-bottom: 42px;
	}
    /*--BUTTON--*/
	.core-slider.slider-3-across .glide__bullets {
		text-align: center;
		display: block;
		margin: 0 auto;
	}
	.core-slider.slider-3-across .glide__bullets .glide__bullet {
		background: var(--gray-e0);
		padding: 5px;
		margin: 0px 8px;
		border-radius: var(--rounded-circle);
	}
	.core-slider.slider-3-across .glide__bullets .glide__bullet.glide__bullet--active {
		background: var(--black-29);

	}
    /*--ARROW--*/
	.core-slider.slider-3-across .glide__arrows {
		top: 43% !important;
		left: -40px;
		width: calc(100% + 80px );
	}
	.core-slider.slider-3-across .glide__arrows .glide__arrow  {
		font-size: 40px;
		margin: 0px;
	}
}
@media screen and (min-width:64em) {
    /*--GENERAL--*/
    /*--HEADER--*/
	.tab-panel .panel-info {
		padding: 0px;
		background-size: 48% 90%;
		background-position: 118% 79%;
		margin-bottom: -47px;
		padding-top: 107px;
		padding-bottom: 78px;
		z-index: 1;
	}
	.tab-panel .panel-info .panel-pretitle {
		font-size: 60px;
		transform: rotate(354deg) translateY(-38px);
		padding: 0;
		top: 90px;
	}
	.tab-panel .panel-info .panel-description  {
		width: 56%;
		font-weight: 700;
	}
	.tab-panel .panel-info .tab-container .btn-wrap {
		order: 1;
		transform: translate(-45px, 0px);
	}
	.tab-panel .panel-info .tab-container .tabs {
		justify-content: space-between;
		padding: 0px;
		width: 705px;
		
	}
	.tab-panel .panel-info .tab-container .tab-label {
		font-size: 30px;
		align-items: center;
	}
	.tab-panel .panel-info .tab-container .tab-label.weather {

	}
	.tab-panel .panel-info .tab-container .tab-label.active {
		
/* text-decoration-thickness: 4px; */
		
/* padding: 10px 6px; */
	}
	.tab-panel .tab-container .tab-label.weather .icon {
		width: 95px;
	}
	.tab-panel .tab-container .view-all {
		order: 1;
		white-space: nowrap;
		font-size: 18px;
		padding: 22px 32px;
		border: 3px solid var(--cream-fb);
	}
    /*--IMAGE--*/
    /*--CONTENT--*/
    /*--BUTTON--*/
	.tab-panel .panel-info .tab-container .btn-wrap:hover .hover-border {
		
border: 3px solid var(--orange-d7);
		
left: 6px;
		
bottom: -6px;
	}
    /*--ARROW--*/
	.core-slider.slider-3-across .glide__arrows {
		top: 43% !important;
		left: -50px;
		width: calc(100% + 100px);
	}
}
@media screen and (min-width:1440px) {
	/*--ARROWS--*/
	.core-slider.slider-3-across .glide__arrows {
		top: 42% !important;
		left: -83px;
		width: calc(100% + 166px);
	}
	.core-slider.slider-3-across .glide__arrows .glide__arrow  {
		font-size: 60px;
	}

}