/* ============================================
   CSS Variables (Custom Properties)
   ============================================ */
:root {
    /* Font Families */
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Quicksand", sans-serif;
    --font-body: "Open Sans", sans-serif;
    
    /* Colors */
    --color-primary: #1F2C34;
    --color-primary-rgba: rgba(31, 44, 52, 1);
    --color-primary-rgba-20: rgba(31, 44, 52, 0.20);
    --color-primary-rgba-70: rgba(31, 44, 52, 0.70);
    --color-orange: #CF490A;
    --color-light-pink: #FFF3F3;
    --color-white: #ffffff;
    --color-white-alt: #fff;
    --color-yellow: #F7B519;
    --color-gray-menu: #48545C;
    --color-gray-menu-rgba: rgba(72, 84, 92, 1);
    --color-black: #000;
    --color-gray-dark: #333;
    --color-gray-medium: #666;
    --color-gray-light: #888;
    --color-gray-lighter: #999;
    --color-gray-soft: #555;
    --color-red: #e74c3c;
    --color-blue: #0073aa;
    --color-blue-dark: #005f8a;
    --color-form-bg: #F9EDED;
    --color-border-gray: rgba(175, 174, 174, 1);
    --color-scrollbar-track: #f1f1f1;
    --color-scrollbar-thumb: #ddd;
    --color-scrollbar-thumb-hover: #ccc;
    --color-green: #BBD976;
    --color-purple: #50538A;
    --color-blue-light: #E1ECF7;
    
    /* Border Radius */
    --radius-small: 5px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --radius-xl: 32px;
    --radius-xxl: 50%;
    --radius-button: 25px;
    --radius-scrollbar: 10px;
    
    /* Border Width */
    --border-thin: 1px;
    --border-medium: 2px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 40px;
    
    /* Font Sizes */
    --font-size-base: 20px;
    --font-size-small: 18px;
    --font-size-medium: 26px;
    --font-size-large: 28px;
    
    /* Widths */
    --width-container: 100%;
    --width-full: 100%;
    --container-padding-left:175px;
    --container-padding-right:175px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.6s;
}
@media only screen and (max-width:1600px) 
{
    :root 
    {
           /* Font Sizes */
        --font-size-base: 16px;
        --font-size-small: 14px;
        --font-size-medium: 22px;
        --font-size-large: 24px;
    }
}
@media only screen and (max-width:1024px) 
{
    :root 
    {
           /* Font Sizes */
           --container-padding-left:20px;
           --container-padding-right:20px;
    }
}
body {
    font-family: var(--font-secondary);
    color: var(--color-primary);
    font-size: var(--font-size-base);
    margin: 0 !important;
    padding: 0 !important;
}

h1 {
    font-family: var(--font-primary) !important;
    font-size: 60px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 110% !important;
    letter-spacing: 0.6px !important;
	text-transform:none !important;
    margin-top: -70px !important;
}
h2 {
    font-family: var(--font-primary) !important;
    font-size: 48px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 110% !important;
    letter-spacing: 0.48px !important;
    margin-bottom: 24px !important;
	text-transform:none !important;
}
h3 {
    font-family: var(--font-primary) !important;
    font-size: 2.5rem !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 120% !important;
    letter-spacing: 0.22px;
    margin-bottom: 8px !important;
	text-transform:none !important;
}
h4 {
    font-family: var(--font-primary) !important;
    font-size: 2rem !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 120% !important;
    letter-spacing: 0.22px;
    margin-bottom: 8px !important;
	text-transform:none !important;
}
h5 {
    font-family: var(--font-primary) !important;
    font-size: 1.375rem !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 130% !important;
    letter-spacing: 0.22px;
    margin-bottom: 8px !important;
	text-transform:none !important;
    color: var(--color-primary);
}
h6 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-small) !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 130% !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}
p 
{
	margin-bottom:24px;
	line-height:130%;
	font-size: var(--font-size-base);
    font-weight: 500;
}

li,ol, a, span:not(.elementor-button-text), p, div 
{
    font-family: var(--font-secondary);
    font-weight: inherit;
}
div 
{
    font-size: var(--font-size-base);
    line-height:130%;
}
.mobile-menu {
    display:none !important ;
}
.page-margin
{
    padding-left: 175px!important;
    padding-right: 175px!important;
}
.o-que-boxes > div 
{
    min-height: 215px!important;
}
.elementor-582 .elementor-element.elementor-element-424e255 .owl-subtitle
{
    width:100%;
}
@media only screen and (max-width: 1360px) 
{
    .o-que-boxes > div 
{
    min-height: 225px!important;
}
.page-margin
{
    padding-left:110px!important;
    padding-right: 110px!important;
}
	body h1 {   
/*     font-size: 5rem !important; */
	margin-top: -50px !important;
}
body h2 {
/*     font-size: 3.75rem !important; */
    margin-bottom: 16px !important;
}
body h3 {   
    font-size: 1.375rem !important;
}
body h4 {
   
    font-size: 1.275rem !important;
}
.elementor-19 .elementor-element.elementor-element-238bf1a.elementor-element
{
    max-width: 800px !important;
    width: 100%;
}

}
@media only screen and (max-width: 1024px) 
{	
    .o-que-boxes > div 
    {
        min-height: 210px!important;
    }
  
	body h1 
	{ 
    	font-size:2rem !important;
        margin-top: 0 !important;
	}
	
	body h2
	{ 
    	font-size:1.5rem !important;
	}
	body h3 {   
    font-size: 1.25rem !important;
	}
	body h4 {   
    font-size:18px !important;
	}
	.yellow-bg 
	{
		flex-wrap:wrap;
	}
	.yellow-bg > div ,.yellow-bg p
	{
		width:100% !important;
		text-align:left;
		line-height: 24px !important;
	}
	body.menu_open:before 
	{
		position:fixed;
		content:'';
		left:0;
		top:0;
		width:100%;
		height:100%;
		background-color:rgba(0,0,0,0.65);
		z-index:99;
	}
    .mobile-menu {
        left:-150% !important;
		transition: all var(--transition-slow) !important;
		z-index:9990;
		display:flex !important;
		justify-content:space-between;
		padding:0 !important;
    }
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 22px;
        position: absolute;
        z-index: 999;
        right: 0;
        top: -38px;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #1F2C34; /* change color if needed */
        margin: 5px 0;
        transition: 0.3s;
    }
}

/* Hamburger → "X" animation 
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}*/

/* Show menu when active */
@media (max-width: 1024px) {
    .mobile-menu.active {
       left:0 !important;  
		z-index:999;
    }
    .mobile-menu ul {
        display: block;
		list-style:none;
		margin-top:0;
    }
    .mobile-menu ul li {
        margin: 15px 0;
		width:100%;
    }
	.mobile-menu li a 
	{
		color: var(--color-gray-menu-rgba) !important;
		font-weight:500;
	}
	.mobile-menu .mobile-menu-toggle
	{
		top:8px !important;
		position:relative;
	}
	/* Hamburger → "X" animation */
	.mobile-menu  .mobile-menu-toggle span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.mobile-menu  .mobile-menu-toggle span:nth-child(2) {
		opacity: 0;
	}
	 .mobile-menu .mobile-menu-toggle span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
	
}
strong, bold 
{
    font-weight: 600 !important;
}
.primary-color, .primary-color * 
{
	color: var(--color-primary) !important;
}
.site-btn a, 
.site-btn button,  
.site-btn input, 
.view-gallery-btn, 
.view-video-btn, 
#menu-item-1054 a
{
    display: flex;
    width: auto;
    padding: 8px 38px 9px 38px;
    justify-content: center;
    align-items: center;
    gap: 8.17px;
    align-self: stretch;
    border-radius: var(--radius-xl);
    border: var(--border-medium) solid var(--color-light-pink);
    font-size: var(--font-size-base);
    font-style: normal;
    font-weight: 700 !important;
    line-height: 110%;
    letter-spacing: -0.16px;
    transition: all var(--transition-normal);
    box-shadow:none !important;
    text-transform: none;
}
.site-btn.orange a, #menu-item-1054 a {
    background-color: var(--color-orange);
	border: solid var(--border-medium) var(--color-orange);
/* 	min-width:150px; */
	min-width:158px;
	padding: 0.875rem 38px;
}
.site-btn.trans a, .view-gallery-btn.trans {
    background-color: transparent;
    border: solid var(--border-medium) var(--color-light-pink);
	color: #ffffff;
}
.site-btn.filled a {
    background-color: var(--color-white);
	border: solid var(--border-medium) var(--color-white);
    color: var(--color-primary);
}
.site-btn.border a, .view-gallery-btn.border, .site-btn.border input,  .view-video-btn.border {
    background-color: transparent !important;
    border: solid var(--border-medium) var(--color-primary);
    color: var(--color-primary) !important;
}
.site-btn a:hover, .view-gallery-btn:hover, .view-video-btn:hover, .site-btn button:hover, .site-btn input:hover, #menu-item-1054 a:hover {
    background-color: var(--color-white-alt) !important;
    border-color: var(--color-orange) !important;
    color: var(--color-orange) !important;
    box-shadow:none !important;
}
.site-btn input
{
	margin-top:50px;
	width:auto;
	min-width:180px;
}
.site-btn input.wpcf7-submit
{
    padding: 12px 16px !important;
    text-transform: none !important;
        letter-spacing: 0 !important;
    font-size: 16px !important;
}
@media (max-width: 390px) 
{
    .site-btn a
    {
        padding: 15px 20px 15px 20px !important;
    }
}
select 
{
    border: solid 1px var(--color-primary) !important;
    font-size: 16px !important;
    color: var(--color-primary) !important;
    padding: 10px 40px 10px 15px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M5.575 6.55C5.44167 6.55 5.31667 6.52917 5.2 6.4875C5.08333 6.44583 4.975 6.375 4.875 6.275L0.275 1.675C0.0916667 1.49167 0 1.25833 0 0.975C0 0.691667 0.0916667 0.458333 0.275 0.275C0.458333 0.0916667 0.691667 0 0.975 0C1.25833 0 1.49167 0.0916667 1.675 0.275L5.575 4.175L9.475 0.275C9.65833 0.0916667 9.89167 0 10.175 0C10.4583 0 10.6917 0.0916667 10.875 0.275C11.0583 0.458333 11.15 0.691667 11.15 0.975C11.15 1.25833 11.0583 1.49167 10.875 1.675L6.275 6.275C6.175 6.375 6.06667 6.44583 5.95 6.4875C5.83333 6.52917 5.70833 6.55 5.575 6.55Z' fill='%231F2C34'/%3E%3C/svg%3E") !important;
}
 #menu-item-1054 a
{
	color: var(--color-white-alt) !important;
	padding:12px 40px !important;
	text-align:center;
	display:inline-block !important;
	margin-top:60px;
}
.full-width > img {
    width: 100% !important;
}
.banner-layer {
    position: relative !important;
	background-size: cover !important;
	background-position: center center !important;
}
.banner-layer::after {
    content:' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(270deg, rgba(31, 44, 52, 0.0) 50.18%, rgba(31, 44, 52, 0.30) 92.27%);
    z-index: 1;
}
.yellow-bg {
    background-color: var(--color-yellow);
}
.no-margin, .no-margin * {
    margin: 0 !important;
}
.orange-box h2 
{
	margin-bottom:13px !important;
}

#menu-1-d5170ad
{
	list-style:none;
	margin:0;
	padding:0;
	display:flex;
	gap:28px;
	justify-content:space-between;
}
#menu-1-d5170ad li , #menu-footer-menu li 
{
	margin:0;
	padding:0;
}
#menu-1-d5170ad li  a 
{
	color: var(--color-gray-menu);
	text-decoration:none;
	padding:10px;
	font-weight:500;
	position:relative;
}
#menu-1-d5170ad li  a:hover 
{
    color: rgba(207, 73, 10, 1);
}
/*#menu-1-d5170ad li  a:after 
{
	content:'';
	width:calc(100% - 20px);
	left:10px;
	bottom:0;
	height:2px;
	background-color: var(--color-gray-menu);
	position:absolute;
	max-width:0;
	transition: all var(--transition-normal)
}
#menu-1-d5170ad li  a:hover:after 
{
	max-width:100%;
}*/
#menu-footer-menu
{
	list-style:none;
	margin:0;
	padding:0;
	display:flex;
	gap:24px;
	justify-content:space-between;
	flex-wrap:wrap;
}

#menu-footer-menu li a
{
	font-size: var(--font-size-base);
	color:#fff;
	text-decoration:none;
}
#menu-footer-menu li
{
	width:100%;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
	padding:10px 0;
}

.marquee-track,
.marquee-track-rtl {
  display: inline-flex;
  gap: 20px;
  width: max-content;
}

.marquee-track {
  animation: scroll-left 25s linear infinite;
}

.marquee-track-rtl {
  animation: scroll-right 25s linear infinite;
}
.marquee-track > div ,
.marquee-track-rtl > div 
{
	width: 245px;
    height: 195px;
    padding:20px;
    display: flex;
    background-color: var(--color-white-alt);
    border-radius: var(--radius-large);
    align-items: center;
    text-align: center;
    justify-content: center;
}
.marquee img {
  max-width: 245px;
  width: auto;
  height: auto;
  flex-shrink: 0;
  max-height: 150px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.owce-carousel-container
{
	padding:0 !important;
}
#owce-carousel-2faa629 
{
	display:flex;
	flex-wrap:wrap;
}
#owce-carousel-2faa629 strong 
{
    display: inline-block;
    margin-bottom: 15px;
}
#owce-carousel-2faa629  .owl-content
{
    min-height: 160px;
}
#owce-carousel-2faa629 .owl-stage-outer
{
	order:2;
}
#owce-carousel-2faa629 .owl-item .item 
{
    height: 100%;
}
#owce-carousel-cc2763a .owl-item 
{
	position:relative;
	display:flex;
	flex-wrap:wrap;
	
	align-content:space-between;
}
#owce-carousel-cc2763a .owl-item .owl-thumb
{
	position:absolute;	
	right:32px;
	top:32px;
	width: auto;
    height: 60px;
	border-radius:0;
}
#owce-carousel-cc2763a .owl-item .owl-thumb img 
{
	height:60px;
	width:auto !important;
	border-radius:0 !important;
}
#owce-carousel-cc2763a .owl-item p 
{
	font-style:normal;
}
.owce-carousel .owl-rating-icon i
{
	 width: 17px;
  height: 16px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'><path d='M8.45479 0.5L10.2622 6.06275H16.1113L11.3793 9.50072L13.1867 15.0635L8.45479 11.6255L3.72283 15.0635L5.53028 9.50072L0.798316 6.06275H6.64734L8.45479 0.5Z' fill='%23CF490A'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
	text-align:left;
	order:1;
}
.owce-carousel .owl-rating-icon
{
	display:flex;
	margin:0 0 15px !important;
}
#owce-carousel-cc2763a h3 
{
	font-size:20px !important;
	font-weight:600!important;
	margin-bottom:0!important;
	line-height:25px!important;
/*     padding-right: 50px; */
	width:61%;
    height: auto !important;
    letter-spacing: 0.16px;
	text-align:left;
	order:2!important;
	color: var(--color-primary) !important;
    font-family: var(--font-secondary);
}
#owce-carousel-cc2763a h5 
{
    font-size: 16px !important
}
#owce-carousel-cc2763a 
{
	order:1;
}
#owce-carousel-cc2763a  .owl-content
{
	order:3;
	color: var(--color-primary) !important;
	margin:45px 0 32px !important;
    font-weight:500!important;
}
#owce-carousel-cc2763a .owl-subtitle
{
	order:4;
	color: var(--color-primary) !important;
	font-size: var(--font-size-small);
	margin:0 !important;
	line-height:100% !important;
    font-family: var(--font-secondary);
    font-weight:700!important;
}
#owce-carousel-cc2763a .item 
{
	display:flex;
	flex-wrap:wrap;
	min-height:100%;
padding:32px;
	align-content:flex-start;
}
#owce-carousel-cc2763a .owl-stage
{
	display:flex;
}

#owce-carousel-cc2763a .owl-nav 
{
	max-width:86px;
	display:block !important;
	height: 35px;
	margin:40px auto 0!important;
	position:relative !important;
}
#owce-carousel-cc2763a .owl-nav > button 
{
	top:0 !important;
}
#owce-carousel-cc2763a .owl-nav i:before
{
	display:none;
}
.owl-nav .owl-prev i, .owl-nav .owl-next i,
.owl-nav .owl-prev span, .owl-nav .owl-next span
{
	width: 12px !important;
    height: 12px !important;
    line-height: normal;
    display: inline-block;
   background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%23FFF3F3' stroke='%23FFF3F3' stroke-width='0.20991'/></svg>");
    background-size: 12px;
    background-repeat: no-repeat;
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    font-size: 0 !important;
    padding: 0 !important;
    background-position: center;
}
.owl-nav .owl-prev:hover i, .owl-nav .owl-next:hover i,
.owl-nav .owl-prev:hover span, .owl-nav .owl-next:hover span
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%23FFF3F3' stroke='%23FFF3F3' stroke-width='0.20991'/></svg>");
}
.owl-nav .owl-next i,
.owl-nav .owl-next span,
.owl-nav .owl-next:hover i,
.owl-nav .owl-next:hover span
{
	transform:rotate(180deg); 
}
.owl-nav >button:hover
{
	background-color: var(--color-primary);
}
#owce-carousel-2faa629 .owl-nav span,
#owce-carousel-cc2763a .owl-nav i
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%231F2C34' stroke='%231F2C34' stroke-width='0.20991'/></svg>");
}
#owce-carousel-2faa629 .owl-nav button:hover span,
#owce-carousel-cc2763a .owl-nav button:hover i
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%23E1ECF7' stroke='%23E1ECF7' stroke-width='0.20991'/></svg>");
}

.spl-carousel .owl-nav,
.event-carousel .owl-nav,
.activities-carousel  .owl-nav
{
	order:1;
	position:relative;
	    margin: 0 auto;
    max-width: var(--width-container);
	width: var(--width-container);
    margin-top: -83px;	
    margin-left: var(--container-padding-left);
    margin-right: var(--container-padding-right);
}

.event-carousel .owl-nav button
{
    position: absolute;
}
#owce-carousel-2faa629 .owl-nav
{
	order:1;
	position:relative;
    max-width: var(--width-container);
	width: var(--width-container);
    margin: -64px auto 0;
    margin-left: var(--container-padding-left);
    margin-right: var(--container-padding-right);
}
.owl-nav > button 
{
	width:35px;
	height:35px;
	border-radius: var(--radius-xxl) !important;
	border: solid var(--border-thin) var(--color-primary) !important;
	right:0!important;
	left:auto!important;	
	display: flex !important;
    color: var(--color-white-alt) !important;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
body .owce-carousel .owl-prev:hover, body .owce-carousel .owl-next:hover
{	
	background-color: var(--color-primary) !important;
}
.owl-nav > button.owl-prev 
{
	right:50px !important;
}

.spl-carousel .owl-content 
{
	font-style:normal !important;
	padding:32px 32px 42px 32px;
	margin:0 !important;
	min-height:260px;
}
.spl-carousel .owl-content strong 
{
	font-size: var(--font-size-base);
	font-weight:600;
	display:block;
	width:100%;
	margin-bottom:10px;
}
.spl-carousel:not(.img-icon) .owl-thumb {
  background: white; /* background needed for mask */
  width: 100%;  
	border-radius: 16px 16px 0 0 !important;	
	overflow:hidden;
	/* Mask the top corners and create the bottom curve */ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H100 A15,15 0 0 1 100,15 V100 H0 V15 A15,15 0 0 1 0,0' fill='white'/%3E%3C/svg%3E"); /* SVG mask for the shape - this is complex */ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 A15,15 0 0 1 15,0 H85 A15,15 0 0 1 100,0 V90 Q50,110 0,90 Z' fill='white'/%3E%3C/svg%3E"); mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
}
.spl-carousel:not(.img-icon) .owl-thumb img 
{
	width:100% !important;
}
.spl-carousel .owl-carousel
{
	display:flex!important;
	flex-wrap:wrap;
}
.spl-carousel .owl-stage-outer
{
	order:2;
}
.spl-carousel .owl-nav
{
	margin-top:-95px!important;
}

.spl-carousel.dark .owl-nav > button ,
.event-carousel .owl-nav > button
{
	border: solid var(--border-thin) var(--color-primary) !important;
}
.spl-carousel.dark .owl-nav > button:hover ,
.event-carousel .owl-nav > button:hover
{
	background-color: var(--color-primary) !important;
}
.spl-carousel.dark .owl-nav > button i ,
.spl-carousel.dark .owl-nav > button span,
.event-carousel .owl-nav > button span
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%231F2C34' stroke='%231F2C34' stroke-width='0.20991'/></svg>");
}
.spl-carousel.dark .owl-nav > button:hover i ,
.spl-carousel.dark .owl-nav > button:hover span,
.event-carousel .owl-nav > button:hover span
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%23BBD976' stroke='%23BBD976' stroke-width='0.20991'/></svg>");
}
.spl-carousel .owl-nav > button ,
.activities-carousel  .owl-nav  > button,
.text-carousel .owl-nav  > button
{
	border: solid var(--border-thin) var(--color-white) !important;
}
.spl-carousel .owl-nav > button:not(.disabled):hover ,
.activities-carousel  .owl-nav  > button:not(.disabled):hover,
.text-carousel .owl-nav  > button:not(.disabled):hover
{
	background-color: var(--color-light-pink) !important;
}
.activities-carousel  .owl-nav  > button span,
.text-carousel .owl-nav  > button span,
.text-carousel .owl-nav  > button i
{
	background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%23FFF3F3' stroke='%23FFF3F3' stroke-width='0.20991'/></svg>");
}
.spl-carousel .owl-nav > button:not(.disabled):hover span ,
.event-carousel .owl-nav > button:not(.disabled):hover span ,
.activities-carousel  .owl-nav  > button:not(.disabled):hover span,
.text-carousel .owl-nav  > button:not(.disabled):hover span,
.text-carousel .owl-nav  > button:not(.disabled):hover i
{
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'><path d='M6.34082 1.21094L3.56445 4.00391L3.38672 4.18262H3.63867L15.3955 4.17773V5.78125H3.38574L3.56445 5.95996L6.4209 8.82422L5.39941 9.84961L0.645508 4.90039L5.30078 0.149414L6.34082 1.21094Z' fill='%2350538A' stroke='%2350538A' stroke-width='0.20991'/></svg>");
}
.owl-nav button.disabled 
{
	opacity:0.5 !important;
	cursor:default!important;
}
.event-carousel .owl-item,
.activities-carousel .owl-item
{
	background-color: #FFF3F3;
	border-radius: var(--radius-large);	
}
#history-carousel .owl-item 
{
    background-color: transparent !important;
}
.event-carousel .owl-item h4 
{
	color: var(--color-primary-rgba);
	line-height:110% !important;
	margin-bottom:10px !important;
}
.event-carousel:not(.history-carousel) .owl-item p 
{
	color: var(--color-primary-rgba);
}
.event-carousel .owl-item .event-item .thumb > img ,
.activities-carousel .owl-item .thumb img
{
	height:225px;
	width:100%;
	border-radius:16px 16px 0 0;
}
#ft-event .content-div h5 
{
    color: var(--color-primary) !important;
}
#ft-event .owl-stage
{
    min-width: 100%;
}
@media (min-width: 1280px) {
    /* * If the total number of items is low (e.g., 2 or 3), Owl Carousel
     * shrinks them. We force them to 364px. 
     * This relies on the total width not exceeding the container width.
     */
    .fut-events .owl-item {
        /* This will break the carousel if 364px * item_count exceeds stage width */
        width: 364px !important; 
    }
}
.event-carousel .owl-item .event-item h4,
.activities-carousel .owl-item h4
{
	font-size: var(--font-size-medium);
	line-height:120%;
	font-weight:600;
	color: var(--color-primary);
	margin-bottom:10px;
}
.event-carousel .owl-item .content-div
{
	padding: var(--spacing-xl) var(--spacing-xl) 108px;
	min-height:300px;
}
.activities-carousel .owl-item .content-div
{
	padding: var(--spacing-xl);
	min-height:120px;
	    padding-bottom: 100px;
}
.event-carousel .owl-item .content-div p ,
.activities-carousel .owl-item .content-div p
{
	margin:0px;
	color: var(--color-primary-rgba);
}
.event-carousel .owl-item .content-div p.event-dt
{
	font-weight:600;
	margin-bottom:4px;
	margin-top:10px;
}
.event-carousel .owl-item .event-item .thumb ,
.activities-carousel .owl-item  .thumb-wrap
{
	background: white; /* background needed for mask */
  width: 100%;  
	border-radius: 16px 16px 0 0 !important;	
	overflow:hidden;
	/* Mask the top corners and create the bottom curve */ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H100 A15,15 0 0 1 100,15 V100 H0 V15 A15,15 0 0 1 0,0' fill='white'/%3E%3C/svg%3E"); /* SVG mask for the shape - this is complex */ mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 A15,15 0 0 1 15,0 H85 A15,15 0 0 1 100,0 V90 Q50,110 0,90 Z' fill='white'/%3E%3C/svg%3E"); mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
}
.event-carousel .owl-stage,
.f-width-carousel .owl-stage
{
	display:flex !important;
}
.event-carousel .event-action-buttons 
{
	display:flex;
	 position: absolute;
    bottom: 32px;
	justify-content:space-between;
	gap:20px;
}
@media screen and (max-width:1480px)
{
	
.event-carousel .event-action-buttons 
	{
		flex-wrap:wrap;
	}
}
.event-carousel .view-gallery-btn,
.event-carousel .view-video-btn
{
	display: inline-block;
    margin: 0;
    min-height: 45px;
    line-height: 28px;
   
    padding: 8px 30px;
    font-size: 16px;
}
.event-carousel 
{
	display:flex !important;
	flex-wrap:wrap!important;
    width: 100% !important;
}
.event-carousel  .owl-nav 
{
	display: flex;
    justify-content: flex-end;
    gap: 20px;	
}
.event-carousel  .owl-stage-outer
{
	order:2;
}
.spl-carousel.img-icon .owl-thumb img
{
	    width: 54px !important;
    height: 54px !important;
	margin:32px 0 0 32px !important;
	display:inline-block;
}
.spl-carousel.img-icon .view-gallery-btn
{
	line-height:30px;
	display:block;
	width:210px;
	text-align:center;
	margin:32px 0 16px;
    padding: 10px 16px;
    white-space: nowrap;
	align-self: flex-end;
}
.spl-carousel.img-icon .owl-content
{
	padding-top:16px;
	    display: flex;
    flex-wrap: wrap;
	min-height:275px;
}

.support-us.spl-carousel.img-icon .owl-content a 
{
    margin-bottom: 0;
}
ul[role="list"] li
{
    font-weight: 600;
}
/* contact form */
.small-message {
    height: 100px !important;
    min-height: 100px !important;
    resize: none; /* optional: stop resizing drag */
}
.wpcf7 form {
    max-width: 100%;
    margin: 0 auto;
}
.wpcf7 label 
{
	color: var(--color-primary-rgba);
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 16px;
    border: var(--border-thin) solid var(--color-border-gray) !important;
    border-radius: var(--radius-medium);
    background-color: var(--color-form-bg);
    font-size: var(--font-size-base);
	border-radius: var(--radius-medium);
    color: var(--color-gray-dark);
    box-sizing: border-box;
}

.wpcf7 textarea {
    min-height: 120px;
    resize: none;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    
    outline: none;
}

.wpcf7-submit {
    background-color: var(--color-white-alt);
    border: var(--border-medium) solid var(--color-black);
    padding: 12px 35px;
    border-radius: var(--radius-button);
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    background-color: var(--color-black);
	color: var(--color-white-alt);
}
.wpcf7-form > p
{
	margin:0 !important;
		color: var(--color-primary);
        margin-bottom: 0;
}
.wpcf7-form > p.label 
{
	margin:24px 0 8px!important;
}

.wpcf7-form > p input ,.wpcf7-form > p select ,.wpcf7-form > p textarea 
{
    margin:0 !important
}
.wpcf7-form > p span 
{
	display:inline-block;
	width:100%;
}
.wpcf7-form .site-btn
{
    margin-top:24px !important;
}
.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title .e-n-accordion-item-title-header:before
{
	display:none !important;
}
.elementor-widget-n-accordion  div[role="region"]
{
	border:0 !important;
}
.hdr-info p ,
.hdr-info p  a
{
    font-size: 13px !important;
}
.hdr-info .elementor-element-547c7bd p a 
{
	text-decoration:underline;
}

/* -------------------------------------- */
/* 1. Body/Overlay Control                */
/* -------------------------------------- */

body.modal-open {
    overflow: hidden !important;
    padding-right: 15px; /* Adjust if your scrollbar width is different */
}

#event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Slightly darker, more subtle overlay */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* Allows scrolling within the modal if content is long */
    padding: 20px 15px; /* Add some padding on smaller screens */
    animation: fadeIn 0.3s ease-out forwards; /* Fade in animation for overlay */
}

/* -------------------------------------- */
/* 2. Modal Content Box                   */
/* -------------------------------------- */

#event-popup-content {
    background: #ffffff; /* Clean white background */
    border-radius: var(--radius-large); /* Softer, rounded corners */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Deeper, more noticeable shadow */
    max-width: var(--width-container); /* Optimized width for content, adjust as needed */
    width: 90%; /* Take full width up to max-width */
    position: relative;
    display: flex; /* Use flex for layout (image above text) */
    flex-direction: column; /* Stack elements vertically */
    transform: translateY(-30px) scale(0.98); /* Initial slightly off-center and scaled down */
    opacity: 0;
    animation: slideUpFadeIn 0.3s ease-out forwards 0.1s; /* Animation for content box */
    overflow: hidden; /* Ensures rounded corners apply to image */
    max-height: 90vh; /* Limit height to viewport for scrollability */
}

/* Hide content until loaded for AJAX, prevent showing "Loading..." as HTML */
#event-popup-content #event-details-area {
    opacity: 0;
    transition: opacity var(--transition-normal) ease-in 0.1s;
}
#event-popup-content:not([style*="display: none"]) #event-details-area {
    opacity: 1;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpFadeIn {
    from { transform: translateY(-30px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}


/* -------------------------------------- */
/* 3. Close Button                        */
/* -------------------------------------- */

.close-popup-btn {
    position: absolute;
    top: 15px; /* Slightly more prominent position */
    right: 15px;
    background: none;
    border: none;
    font-size: 32px; /* Larger for better tap target */
    line-height: 1;
    color: var(--color-gray-soft); /* Softer dark grey */
    cursor: pointer;
    padding: 0; /* Remove default padding */
    transition: color var(--transition-fast), transform var(--transition-fast);
    z-index: 100; /* Ensure it's above content */
    opacity: 0.8;
}

.close-popup-btn:hover {
    color: var(--color-red); /* Red on hover for clear action */
    transform: rotate(90deg); /* Little spin effect */
    opacity: 1;
}

/* -------------------------------------- */
/* 4. AJAX Content Styling                */
/* -------------------------------------- */

/* Container for the content loaded via AJAX */
#event-details-area {
    padding:  30px; /* Generous padding around text content */
    overflow-y: auto; /* Enable internal scrolling for text content if it's too long */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #ddd #f1f1f1; /* Firefox */
}
/* Webkit scrollbar for Chrome/Safari */
#event-details-area::-webkit-scrollbar {
    width: 8px;
}
#event-details-area::-webkit-scrollbar-track {
    background: var(--color-scrollbar-track);
    border-radius: var(--radius-scrollbar);
}
#event-details-area::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar-thumb);
    border-radius: var(--radius-scrollbar);
}
#event-details-area::-webkit-scrollbar-thumb:hover {
    background: var(--color-scrollbar-thumb-hover);
}


/* Styling for the image */
.event-popup-full-details .wp-post-image,
.event-popup-full-details img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
    margin: 0; /* Remove default margins */
  
    object-fit: cover; /* Ensures image fills space without distorting */
    max-height: 300px; /* Limit image height to prevent dominance */
    width: 100%;
}

/* Title Styling */
.event-popup-full-details  {
   display:flex;
	gap:30px;
}
.event-popup-full-details h3 
	{
		color: var(--color-primary);
	}
.event-popup-full-details .img-wrap
	{
		width:400px;
	}
	.event-popup-full-details .img-wrap img 
	{
		border-radius: var(--radius-medium);
	}

/* Date Styling */
.event-popup-full-details .event-dt-full {
    font-family: var(--font-body); /* Example: Use a readable font */
    font-size: 0.95em;
    color: var(--color-gray-medium); /* Softer color */
    margin-bottom: 25px; /* More space below date */
    display: flex; /* Use flexbox for icon alignment */
    align-items: center;
    gap: 8px; /* Space between icon and text */
	margin-bottom:36px;
}

/* Icon for date (if using dashicons or similar) */
.event-popup-full-details .event-dt-full .dashicons {
    font-size: 1.2em;
    color: var(--color-gray-light);
}

/* Event Content Styling */
.event-popup-full-content {
    font-family: var(--font-body);
    line-height: 1.7;
    color: #444;
    font-size: 1em;
    margin-bottom: 30px; /* Space before button */
}

.event-popup-full-content p {
    margin-bottom: 1em; /* Standard paragraph spacing */
}

/* "Ver na página" Button Styling */
.event-popup-full-details .view-details-btn {
    display: inline-block; /* Allow padding and margin */
    padding: 12px 25px;
    background-color: var(--color-blue); /* WordPress default blue */
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-small);
    font-size: 1em;
    font-weight: 600;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    border: none; /* Remove border from previous style */
    text-align: center;
}

.event-popup-full-details .view-details-btn:hover {
    background-color: var(--color-blue-dark); /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
.hide 
{
	display:none;
}
/* -------------------------------------- */
/* 5. Loading Indicator                   */
/* -------------------------------------- */
.loading-spinner {
    text-align: center;
    padding: 60px;
    font-size: 1.3em;
    color: var(--color-gray-lighter);
    font-style: italic;
    letter-spacing: 0.5px;
}

.top-call-info {
	display:flex;
	gap:22px;
	justify-content:end;
}

.p-0 {
		padding:0 !important;
	}

.f-16 {
	font-size:16px;
}

.f-16 p {
	font-size:16px;
}

.f-22 {
	font-size:22px;
	line-height:120%;
}

.f-48 {
	font-size:48px;
}

.pb-0 {
	padding-bottom:0 !important;
}

.e-n-accordion-item-title-icon {
	top:-6px !important;
}

details {
	border-radius:0 !important;
}

.email-txt {
	color:#1F2C34;
	font-weight:600;
	border-bottom: 1px solid #1F2C34;
}

.txt-edit-mb-0 > p {
	margin-bottom:0 !important;
}


.events-mrg {
	margin-right:126px !important;
	top: 4px;
}


	.res-btm-rounded {
		border-radius: 0 16px 16px 0;
    	overflow: hidden;
	}


@media (max-width: 1360px) {
	.events-mrg {
		margin-right: 186px !important;
		top: -4px;
	}
}




/* -------------------------------------- */
/* 6. Responsive Adjustments              */
/* -------------------------------------- */


.owl-item h5 
{
    color: var(--color-primary) !important;
}

@media (max-width: 1280px) {
	.font-22 {
        gap: 12px !important;
        background: transparent !important;
	}
	.txt-edit  p {
		margin-bottom:12px !important;
	}
}


@media (max-width: 1110px) { 
	.font-22 {
        padding-left: 40px !important;
	}
}

@media (max-width: 1024px) {
    .page-margin
    {
        padding-left:20px!important;
        padding-right: 20px!important;
    }
    .page-margin.title-margin
    {
        padding-left:0px!important;
        padding-right: 0px!important;
    }
    .spl-carousel .owl-nav, .event-carousel .owl-nav, .activities-carousel .owl-nav
    {
        margin-top: -70px
    }

    #ft-event
    {
        top: -15px;
    }
    #ft-event .owl-nav 
    {
        bottom:0 !important
    }
    #ft-event .owl-nav > button
    {
        position: relative !important;
        right: auto !important;
        margin:0 !important;
    }
	 .events-mrg {
        margin-right: 140px !important;
        top: 6px;
    }
	.f-wd {
	width: 100% !important;
        max-width: 100% !important;
	}
}


@media (max-width: 768px) {
    #event-popup-content {
        max-width: 95%; /* Make it wider on smaller screens */
        margin: 10px; /* Ensure some margin from viewport edges */
    }

    #event-details-area {
        padding: 0 25px 25px; /* Reduce horizontal padding */
        padding-top: 15px; /* Ensure spacing from image */
    }

    .event-popup-full-details h2 {
        font-size: 1.8em; /* Adjust title size */
        margin-top: 20px;
    }

    .event-popup-full-details .event-dt-full {
        font-size: 0.9em; /* Adjust date size */
    }

    .close-popup-btn {
        font-size: 28px;
        top: 10px;
        right: 10px;
    }
	#history-carousel .owl-stage
	{
		display:flex;
	}
	body #history-carousel .owl-nav
    {
        margin-top: -68px !important;
        width: 100% !important;
        /* display: block; */
        max-width: 100% !important;
        margin-right: 0 !important;
        bottom:-10px;
    }
    .spl-carousel .owl-nav, .event-carousel .owl-nav, .activities-carousel .owl-nav
    {
        margin-top: -68px !important;
    }
    #history-carousel .owl-nav > button
    {
        margin-top: 0;
    }
	.event-carousel .owl-nav
    {
        margin-right: 0!important;
        bottom: 0!important;
    }
   
    .events-list #main-events-lis .owl-nav
    {
        margin: 48px 0 0 !important;
    }
    .events-list #main-events-lis .owl-nav > button
    {
        position: relative;
        margin-top: 0;
        right: auto !important;
    }
	
	    .events-mrg {
        margin-right: 0px !important;
        top: 10px;
    }
}

@media (max-width: 767px) {
	.txt-edit > p {
	margin-bottom:24px !important;
}
		.res-btm-rounded {
		border-radius: 0 0 16px 16px;
    	overflow: hidden;
	}
		    .events-mrg {
        top: -10px;
    }
	.font-22 {
		gap:20px !important;
	}
	.txt-edit-mb-0 > p {
    margin-bottom: 24px !important;
}
}

/* @media (min-width: 481px) and (max-width: 762px) {
		.res-btm-rounded {
		border-radius: 0;
			overflow:visible;
	}
			.res-btm-rounded img{
		border-radius: 0;
			overflow:visible;
	}
} */

@media (max-width: 480px) {
    .page-margin.title-margin.elementor-element-0be7d1a
    {
        margin:0 !important;
    }

    #event-popup-content {
        border-radius: var(--radius-small); /* Less rounded on very small screens */
    }
    .event-popup-full-details img {
        border-radius: 5px 5px 0 0;
    }
    #event-details-area {
        padding: 0 15px 15px; /* Even less padding */
    }
    .event-popup-full-details h2 {
        font-size: 1.5em;
    }
    .event-popup-full-details .event-dt-full {
        font-size: 0.85em;
    }
    .event-popup-full-details .view-details-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    #owce-carousel-cc2763a h3
    {
        position: unset;
        margin: 0;
    }
    .footer-text p
    {
        font-size: 12px !important;
    }
	.res-m-t-20 {
		margin-top:20px !important;
	}

	.full-img {
		grid-template-columns: repeat(1, 1fr)  !important;
	}
	

 .res-neg-m-t-50 {
	 border-radius: 0 0 36px 36px !important;
		top: 15px;
	} 
	#owce-carousel-cc2763a .item {
    padding: 32px 20px 32px 20px;
}  

	#owce-carousel-cc2763a .owl-content {
    margin: 24px 0 32px !important;
}
	#owce-carousel-cc2763a .owl-item img {
    top: 24px;
}

}
	@media (min-width: 1100px) {
		/*.f-width-carousel
		{
			margin-right: calc(-50vw + 540px);
			width: calc(100% + 50vw - 540px);
			margin-left:auto;
		}
		.f-width-carousel .owl-nav 
		{
			margin-right: calc(50vw - 118px);
		}*/
		/* =========================================
		   1. Default Breakout State (Before Sticky)
		   (This makes it start at container left and stretch to page right)
		   ========================================= 
		#activity-carousel {
			/* Half of 1060px is 530px 
			margin-right: calc(-50vw + 530px); 
			width: calc(100% + 50vw - 530px);

			/* Ensure no residual padding pushes the element 
			padding-left: 0; 
			padding-right: 0; 
		}
*/
		/* =========================================
		   2. Sticky Breakout State (The FIX for snapping to page left)
		   ========================================= */
		#activity-carousel.sticky-breakout {
			/* --- Positioning --- */
			/* This is what makes it snap to the viewport */
			position: fixed; 
			top: 0; 
			left: 0; /* <--- THIS is what snaps it to the page's left edge */

			/* --- Dimensions --- */
			width: 100vw; /* Full viewport width */
			margin-left: 0;
			margin-right: 0;

			/* --- Layering --- */
			z-index: 999; /* Ensure it stays above everything else */
		}
	}
	

    .owce-carousel .item.elementor-animation-float:active, 
    .owce-carousel .item.elementor-animation-float:focus, 
    .owce-carousel .item.elementor-animation-float:hover
    {
        transform: translateY(-0px) !important;
    }

    .text-carousel .owl-stage-outer
    {
        padding: 0 !important;
    }
    .text-carousel .item
    {
        display: flex;
        flex-wrap: wrap;
    }
    .text-carousel .item h6
    {
        order:1;
    }
    .text-carousel .item h2
    {
        order:2;
    }
    .text-carousel .item p
    {
        order:3;
    }
    .owce-carousel-testimonial-two .owl-nav .owl-prev, .owce-carousel-testimonial-two .owl-nav .owl-next
    {
        top: auto !important;
    }
    .owl-theme .owl-nav
    {
        margin-top: 0 ;
        margin-bottom: 0 ;
    }
    .text-carousel .owl-nav
    {
        width:100px !important;
        left: 50%;
        position: absolute;
        transform:translateX(-50%);
        margin-top: 20px !important;
    }
    #ft-event .owl-item 
    {
        max-width: 33%;
    }
    @media (min-width: 1580px) {
        #ft-event .owl-item 
        {
            min-width: 460px;
            max-width: 33%;
        }
    }
    @media (min-width: 1280px) {
        #ft-event .owl-item 
        {
            min-width: 250px;
            max-width: 305px;
        }
    }



@media (min-width:992px)
{
	.event-carousel  .owl-nav 
	{	
		width: 100px;
		right: 0;
		position: absolute;
	}
	
}
@media (max-width:991px)
{
	
	#menu-footer-menu li
	{
		width:45%;
	}
}

#ft-event .owl-stage-outer
{
min-width: 100%;
}

/* Prevent scrolling when carousel has few items */
.owl-carousel.owl-disabled .owl-stage-outer {
    overflow: hidden !important;
    cursor: default !important;
}

.owl-carousel.owl-disabled .owl-stage {
    cursor: default !important;
}

.owl-carousel.owl-disabled .owl-item {
    cursor: default !important;
}
.wp-image-3132
{
	position: relative;
    top: -15px;
}
.u-decoration
{
	text-decoration:underline !important;
	color: inherit;
}
.elementor a
{
	color: inherit;
}
.history-carousel .elementor-widget-text-editor p
{
	font-size:16px;
	font-weight:500;
}
.history-carousel .elementor-widget-text-editor p:first-child
{
	margin-bottom:12px;
	font-weight:600;
}
.mobile-menu .elementor-element-351278a a 
{
	text-decoration:underline;
	color:inherit;
}

.activities-carousel.owl-drag .owl-item .view-gallery-btn
{
	position:absolute;
	bottom:32px;
}
#owce-carousel-73cda4b .owl-item
{
display: flex;
}

@media (max-width:640px)
{
	
	.activities-carousel.owl-drag .owl-item
	{		
		padding-bottom:32px;
	}
	
}
@media (max-width:360px)
{
	
	
	.activities-carousel .owl-item .content-div {
    padding: 32px 32px 70px;
	}
	.elementor-element-8cdb15f h2 
	{
		font-size:22px !important;
	}
	.elementor-582 .elementor-element.elementor-element-7bb280b
	{
		padding:24px !important;
	}
}