  /* 2 or 3 Column Content Section - Redesign */
/* For 2-column layouts */
.column--two .column__img {
	height: 400px;
}

/* For 3-column layouts */  
.column--three .column__img {
	height: 350px;
}

/* Ensure images don't exceed container */
.column__col {
	max-width: 100%;
}
.column__img {
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: #f5f5f5; /* Fallback color while images load */
}

.column__img img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
	object-position: center;
	transition: transform 0.3s ease; 
}

.column__img:hover img {
	transform: scale(1.05);
}
@media (max-width: 768px) {
	.column__img {
		height: 350px; 
	}
}

@media (max-width: 480px) {
	.column__img {
		height: 300px; 
	}
}
/* END 2 or 3 Column Content Section - Redesign */

/* Ultimate CTA */

.cta-section {
	margin: 60px 0 60px 0;
    padding: 77px 71px 77px;
	width: 100vw;
    left: 50%;
    position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 360px;
	-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	overflow: hidden;
}
/* Dark overlay - created by JavaScript */
.cta-overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 36.5%),linear-gradient(180deg, rgba(0, 0, 0, 0) 50.5%, rgba(0, 0, 0, 0.3) 76.5%),linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
	
}
.cta-section::before {
	background-image: url(/_resources/assets/img/highlight-gallery-background-texture-lg.png);
    width: 40%;
    height: 100%;
	top: 0;
    right: 0;
	content: "";
    position: absolute;
    z-index: 1;
	display: none; 
}
.cta-section::after {
	background-image: url(/_resources/assets/img/paper-tear-white-bottom-xl.png);
	height: 50px;
	content: "";
    position: absolute;
	width: 100vw;
    bottom: 0;
    left: 0;
	z-index: 3;
	display: none; 
}
.cta-overlay {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	text-decoration: none;
    text-transform: capitalize;
	 max-width: 1458px;
    margin: 0 auto;
	padding-bottom: 40px;
	z-index: 2;
    position: relative;
}
.cta-buttons {
	z-index: 2;
	display: flex;
    flex-wrap: wrap;
    max-width: 1458px;
    justify-content: flex-start;
}
a.cta-button {
	background-color: #b691e6;
    border-radius: 30px;
    list-style-type: none;
    padding: 12.5px 20px;
	text-decoration: none;
    text-transform: capitalize;
	margin: 10px 20px 10px 0;
    text-align: center;
}
a.cta-button:hover {
	color: #2a1c37;
    -webkit-text-decoration-color: #2a1c37;
    -moz-text-decoration-color: #2a1c37;
    text-decoration-color: #2a1c37;
    text-underline-offset: 3px;
	text-decoration: underline;
	transition: color .3s, text-decoration-color .3s, text-underline-offset .3s, -webkit-text-decoration-color .3s, -moz-text-decoration-color .3s;
}
/* Dark Button */
a.cta-button-dark-btn {
    background-color: #2a1c37;
    color: #fff;
	border-radius: 30px;
    list-style-type: none;
    padding: 12.5px 20px;
	text-decoration: none;
    text-transform: capitalize;
    margin: 10px;
}
a.cta-button-dark-btn:hover {
    color: #fff;
	-webkit-text-decoration-color: #2a1c37;
    -moz-text-decoration-color: #2a1c37;
    text-decoration-color: #2a1c37;
    text-underline-offset: 3px;
	text-decoration: underline;
	transition: color .3s, text-decoration-color .3s, text-underline-offset .3s, -webkit-text-decoration-color .3s, -moz-text-decoration-color .3s;
}
.cta-section p {
	padding-bottom: 40px;
	font-size: 1.625rem;
    line-height: 1.4;
	padding: 0 0 16px;
	margin: 0;
}
.cta-section h2 {
	margin: 20px 0 20px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.cta-section {
        padding: 60px 49px 70px;
		margin-left: 0;
	}
	.cta-section::before {
        width: 450px;
        height: 400px;
    }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 767px) {
	.cta-section {
        padding: 40px 20px 50px;
	}
}
@media only screen 
  and (min-device-width: 220px) 
  and (max-device-width: 480px) {
.cta-section {
        padding: 60px 20px 70px;
		margin-left: 0;
	}
	    .cta-section::before {
        width: 400px;
        height: 400px;
    }
	.cta-buttons {
		flex-direction: column;
	}
	a.cta-button {
		text-align: center;
	}
	.cta-overlay {
    	justify-content: center;
	}
}
/* END Ultimate CTA */

/* Ultimate CTA ALT */
.cta-section-alt {
	margin: 60px 0 60px 0;
    padding: 77px 71px 77px;
	width: 100vw;
    left: 50%;
    position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 360px;
	-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	overflow: hidden;
}
/* Dark overlay - created by JavaScript */
.cta-overlay-bg-alt {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 36.5%),linear-gradient(180deg, rgba(0, 0, 0, 0) 50.5%, rgba(0, 0, 0, 0.3) 76.5%),linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
	
}
.cta-section-alt::before {
	background-image: url(/_resources/assets/img/highlight-gallery-background-texture-lg.png);
    width: 40%;
    height: 100%;
	top: 0;
    right: 0;
	content: "";
    position: absolute;
    z-index: 1;
	display: none; 
}
.cta-section-alt::after {
	background-image: url(/_resources/assets/img/paper-tear-white-bottom-xl.png);
	height: 50px;
	content: "";
    position: absolute;
	width: 100vw;
    bottom: 0;
    left: 0;
	z-index: 3;
	display: none; 
}
.cta-overlay-alt {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	text-decoration: none;
    text-transform: capitalize;
	 max-width: 1458px;
    margin: 0 auto;
	padding-bottom: 40px;
	z-index: 2;
    position: relative;
}
.cta-buttons-alt {
	z-index: 2;
	display: flex;
    flex-wrap: wrap;
    max-width: 1458px;
    justify-content: flex-start;
}
a.cta-button-alt {
	background-color: #b691e6;
    border-radius: 30px;
    list-style-type: none;
    padding: 12.5px 20px;
	text-decoration: none;
    text-transform: capitalize;
	margin: 10px 20px 10px 0;
    text-align: center;
}
a.cta-button-alt:hover {
	color: #2a1c37;
    -webkit-text-decoration-color: #2a1c37;
    -moz-text-decoration-color: #2a1c37;
    text-decoration-color: #2a1c37;
    text-underline-offset: 3px;
	text-decoration: underline;
	transition: color .3s, text-decoration-color .3s, text-underline-offset .3s, -webkit-text-decoration-color .3s, -moz-text-decoration-color .3s;
}
/* Dark Button */
a.cta-button-dark-btn-alt {
    background-color: #2a1c37;
    color: #fff;
	border-radius: 30px;
    list-style-type: none;
    padding: 12.5px 20px;
	text-decoration: none;
    text-transform: capitalize;
    margin: 10px;
}
a.cta-button-dark-btn-alt:hover {
    color: #fff;
	-webkit-text-decoration-color: #2a1c37;
    -moz-text-decoration-color: #2a1c37;
    text-decoration-color: #2a1c37;
    text-underline-offset: 3px;
	text-decoration: underline;
	transition: color .3s, text-decoration-color .3s, text-underline-offset .3s, -webkit-text-decoration-color .3s, -moz-text-decoration-color .3s;
}
.cta-section-alt p {
	padding-bottom: 40px;
	font-size: 1.625rem;
    line-height: 1.4;
	padding: 0 0 16px;
	margin: 0;
}
.cta-section-alt h2 {
	margin: 20px 0 20px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.cta-section-alt {
        padding: 60px 49px 70px;
		margin-left: 0;
	}
	.cta-section-alt::before {
        width: 450px;
        height: 400px;
    }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 767px) {
	.cta-section-alt {
        padding: 40px 20px 50px;
	}
}
@media only screen 
  and (min-device-width: 220px) 
  and (max-device-width: 480px) {
.cta-section-alt {
        padding: 60px 20px 70px;
		margin-left: 0;
	}
	    .cta-section-alt::before {
        width: 400px;
        height: 400px;
    }
	.cta-buttons-alt {
		flex-direction: column;
	}
	a.cta-button-alt {
		text-align: center;
	}
	.cta-overlay-alt {
    	justify-content: center;
	}
}

/* END Ultimate CTA ALT */

/* Social Media Link Component */
.social-media-section {
    padding: 0 0 4em;
    text-align: left;
}

.social-media-title {
    margin-bottom: 1.5rem;
}

.social-media-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-media-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-media-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    color: #532e83;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px;
}

.social-media-link:hover {
    transform: translateY(-2px);
	color: #cfb987;
}

.social-media-link svg {
    width: 52px;
    height: 52px;
    fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-media-list {
        gap: 0.75rem;
    }
    
    .social-media-link {
        width: 44px;
        height: 44px;
        padding: 4px;
    }
    
    .social-media-link svg {
        width: 32px;
        height: 32px;
    }
}
/* END Social Media Link Component */


	/* Honeycomb  CSS */
.honeycomb {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.honeycomb > a {
	width: 100%;
	height: 50vw;
	position: relative;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.honeycomb > a img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	-webkit-filter: brightness(0.5);
	filter: brightness(0.5);
	transition: all .5s;
}
.honeycomb a .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	padding: 5vw;
}
.honeycomb .box-hover {
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
	vertical-align: middle;
}
.honeycomb .box-hover:before, .box-hover:after {
	box-sizing: inherit;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
}
.honeycomb .draw {
	transition: color 0.25s;
	padding: 10px;
	display: block;
}
.honeycomb .draw::before, .draw::after {
	border: 2px solid transparent;
	width: 0;
	height: 0;
}
.honeycomb .draw::before {
	top: 0;
	left: 0;
}
.honeycomb .draw::after {
	top: 0;
	left: 0;
}
.honeycomb a .overlay p {
	margin: 0px;
	text-transform: uppercase;
	font-size: .8vw;
	line-height: 1em;
	margin-bottom: 5px;
	color: white;
}
.honeycomb a .overlay h3 {
	text-transform: uppercase;
	/*font-size: 1.8vw;*/
	line-height: 1em;
	font-weight: 500;
	max-width: 430px;
	margin: auto;
	transition: all .3s;
	color: white;
}
.honeycomb a .overlay .button-more {
	opacity: 0;
	margin-top: 0px;
	margin-bottom: 5px;
	width: 100%;
	height: 0;
	transition: all .5s;
}
.honeycomb a .overlay span {
	padding: 5px 10px;
	border: none;
	font-weight: 500;
	margin: auto;
}
.honeycomb.gold a .overlay span {
	background: #CCB486;
	color: #343434;
}
.honeycomb.purple a .overlay span {
	background: #592c88;
	color: white;
}
.honeycomb a:hover h3 {
	color: white;
}
@media (min-width: 500px) {
	.honeycomb > a {
		width: 50%;
		height: 35vw;
	}
	.honeycomb a .overlay {
		padding: 30px 40px;
	}
	.honeycomb a .overlay h3 {
		font-size: 20px;
	}
}
@media (min-width: 700px) {
	.honeycomb a .overlay h3 {
		font-size: 26px;
	}
	.honeycomb a .overlay .button-more {
		height: auto;
	}
	.honeycomb:hover a img {
		-webkit-filter: brightness(.3);
		filter: brightness(.3);
		transition: all .5s;
	}
	.honeycomb > a:hover img {
		-webkit-filter: brightness(.5);
		filter: brightness(.5);
		transition: all .5s;
	}
	.honeycomb > a:hover h3 {
		text-shadow: 0px 1px 1px rgba(0,0,0, .7);
		transition: all .5s;
	}
	.honeycomb > a:hover .draw {
		color: white;
	}
	.honeycomb > a:hover .draw::before, .honeycomb > a:hover .draw::after {
		width: 100%;
		height: 100%;
	}
	.honeycomb > a:hover .draw::before {
		border-top-color: white;
		border-right-color: white;
		transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
	}
	.honeycomb > a:hover .draw::after {
		border-bottom-color: white;
		border-left-color: white;
		transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
	}		
	.honeycomb > a:hover .overlay .button-more {
		opacity: 1;
		margin-top: 20px;
		transition: all .5s;
	}
}
@media (min-width: 900px) {
	.honeycomb a .overlay h3 {
		font-size: 30px;
	}
	.honeycomb a .overlay p {
		font-size: 16px;
	}
}
@media (min-width: 1200px) {
	.honeycomb.third > a {
		width: calc(100% * 0.33333);
		height: 24vw;
	}
	.honeycomb.quarter > a {
		width: 25%;
		height: 20vw;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
	.honeycomb.quarter a .overlay h3 {
		font-size: 24px;
	}
	.honeycomb.quarter a .overlay p {
		font-size: 14px;
	}
}
@media (min-width: 1500px) {
	.honeycomb a .overlay h3 {
		font-size: 2vw;
	}
	.honeycomb a .overlay p {
		font-size: .9vw;
	}
	.honeycomb.quarter a .overlay h3 {
		font-size: 1.7vw;
	}
	.honeycomb.quarter a .overlay p {
		font-size: .8vw;
	}
}
/* End Honeycomb css */
/* Image Component */
.caption.quarter-left {
	width: 100%;
}
.caption.third-left {
	width: 100%;
}
@media (min-width: 769px) {
	.caption.quarter-left {
		width: 25%;
	}
	.caption.third-left {
		width: 33%;
	}
}
/* End Image Component */
/* Carousel Title Add for H5 no top Margin */ 
   .carousel__caption h5 {
        margin: 5px 0 20px;
    }
/* End Carousel Adjustment */