.white{color:#fff !important;}
.logo-img{ height: auto !important;
	    width: 100px !important;
}

/* SLICK DOTS FIX */

.slick-dots{
    position:absolute;
    bottom:-40px;

    width:100%;

    display:flex !important;
    justify-content:center;
    align-items:center;

    gap:10px;

    padding:0;
    margin:0;

    list-style:none;
}

/* DOT ITEM */
.slick-dots li{
    margin:0 !important;
    width:auto !important;
    height:auto !important;

    display:flex !important;
    align-items:center;
    justify-content:center;
}

/* REMOVE NUMBER */
.slick-dots li button{
    font-size:0 !important;
    line-height:0 !important;

    width:12px;
    height:12px;

    padding:0;
    border:none;
    border-radius:50%;

    background:#d1d1d1;

    cursor:pointer;

    transition:0.3s ease;
}

/* REMOVE DEFAULT SLICK ICON */
.slick-dots li button:before{
    display:none !important;
}

/* ACTIVE DOT */
.slick-dots li.slick-active button{
    background:#000;
    transform:scale(1.2);
}

/* =========================
   SLICK ARROWS FIX
========================= */
.slick-prev, .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #757575 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: 0.3s ease;
}

/* LEFT ARROW */
.slick-prev{
    left:8px !important;
}

/* RIGHT ARROW */
.slick-next{
    right:8px !important;
}

/* ICON */
.slick-prev:before,
.slick-next:before{
    font-size:22px !important;
    color:#fff !important;
    opacity:1 !important;
}

/* HOVER */
.slick-prev:hover,
.slick-next:hover{
    background:#333 !important;
    transform:scale(1.1);
}

/* MOBILE */
@media(max-width:768px){

    .slick-prev,
    .slick-next{
        width:38px;
        height:38px;
    }

    .slick-prev{
        left:-10px !important;
    }

    .slick-next{
        right:-10px !important;
    }

    .slick-prev:before,
    .slick-next:before{
        font-size:18px !important;
    }

}
 

.event-plan{overflow:hidden;}
.dual-heading  {
    display: block;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
		color:#fff !important;
}
#dual-color span{		color:#fff !important;
}
.dual-heading .outline-w {
    display: block;
    -webkit-text-stroke: 2px #ffff !important;
    color: transparent !important;
    margin-top: 5px;
}
/* card link hover */
.main-hover-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-hover-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color:#F26A64;
    transition: width 0.35s ease-in-out;
    z-index: -1;
}

.main-hover-fill:hover::before {
    width: 100%;
}

.main-hover-fill:hover {
    color: #fff;
}




/* MAIN CONTAINER */
.pink-hover-card {
    position: relative;
    overflow: hidden;
}

/* BORDER OVERLAY */
.pink-hover-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 0 solid #F26A64;
    transition: border-width 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

/* IMAGE (Elementor image widget) */
.pink-hover-card .elementor-widget-image img {
    transition: filter 0.4s ease, transform 0.5s ease;
}

/* CONTENT */
.max-content {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
    z-index: 4;
}

/* HOVER EFFECTS */
.pink-hover-card:hover::before {
    border-width: 20px;
}

.pink-hover-card:hover .max-content {
    opacity: 1;
    transform: translateY(0);
}

.pink-hover-card:hover .elementor-widget-image img {
    filter: brightness(0.5);
    transform: scale(1.08);
}

/* footer */

/* WRAPPER */
.footer-marquee {
  background: #0F2A3F;
  overflow: hidden;
  white-space: nowrap;
}

/* MOVING TRACK */
.marquee-track {
  display: inline-flex;
  gap: 20px;
  animation: marquee 18s linear infinite;
}

/* TEXT STYLE */
.marquee-track span {
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

/* COLORS */
.yellow { color: #d7eb2f; }
.red { color: #ff6b5f; }
.blue { color: #6ec1e4; }

/* OUTLINE TEXT */
.outline {
  color: transparent;
  -webkit-text-stroke: 2px #6ec1e4;
}

/* ANIMATION */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer-marquee {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
}
/*  */
/* poppup */
:root{
  --navy:#0b2c3d;
}

/* ================= POPUP ================= */
#custom-popup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;

  /* CONTINUOUS MOVING BACKGROUND */
  background: linear-gradient(
    120deg,
    #ff6f61,
    #ff9671,
    #ffc75f,
    #ff6f61
  );
  background-size: 300% 300%;
  animation: popupBGMove 14s linear infinite;
}

#custom-popup.active{
  display: block;
}

/* BACKGROUND ANIMATION */
@keyframes popupBGMove{
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0% 50%;
  }
}

/* CLOSE BUTTON */
.close-popup {
    position: absolute;
    top: 15px;
    right: 18%;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

/* ================= LOGO ================= */
#custom-popup .popup-logo-wrap{
  padding: 15px 0px;
		margin-left:200px;

  width: auto !important;
  max-width: none !important;
  background: transparent !important;
}
#custom-popup .popup-logo {
    width: auto !important;
    max-width: 100px;
    height: auto;
    display: inline-block;
}

/* ================= MENU ================= */
.menu-main-menu-container{
  padding: 40px 0;
	margin-left:100px;
  min-height: 100vh;
}

.nav{
  list-style: none;
}

.nav > li{
  position: relative;
  margin-bottom: 24px;
}

.nav > li > a{
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  width: 240px;
  display: inline-block;
}

/* RIGHT SIDE POPUP MENU */
.menu-item-link{
  position: absolute;
  top: 50%;
  left: 140px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.nav > li:hover .menu-item-link{
  opacity: 1;
  visibility: visible;
}

/* CONNECTOR LINE */
.menu-item-link .rule{
  position: absolute;
  top: 50%;
  left: 60px;
  width: 170px;
  height: 3px;
  background: var(--navy);
}

/* SUB MENU */
.sub-menu{
  list-style: none;
  margin-left: 200px;
  padding-left: 30px;
  border-left: 3px solid var(--navy);
}

.sub-menu a{
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
/* FORCE TRANSPARENT INNER CONTAINERS */
#custom-popup *{
  background-color: transparent !important;
}

/* MENU CONTAINER TRANSPARENT */
#custom-popup .menu-main-menu-container{
  background: transparent !important;
}

/* SAFETY: ELEMENTOR COLUMN / SECTION FIX */
#custom-popup .elementor-section,
#custom-popup .elementor-column,
#custom-popup .elementor-widget-wrap{
  background: transparent !important;
}



.dual-heading .elementor-heading-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
}

/* First line */
.dual-heading .elementor-heading-title {
    color:#0F2A3F!important;
}

/* Second line (after <br>) */
.dual-heading .elementor-heading-title br + * {
    -webkit-text-stroke:2px #0F2A3F!important;
    color:transparent!important;
    display: inline-block;
    margin-top: 5px;
}

.dual-heading .outline-w {
    display: block;
    -webkit-text-stroke: 2px #ffff !important;
    color: transparent !important;
    margin-top: 5px;
}


.testimonial-slider .slick-dots li button:before{
    color: #fff !important;
    opacity: 1;
}

.testimonial-slider .slick-dots li.slick-active button:before{
    color: #fff !important;
	background:unset !important;
}

.my-slick-wrapper .slick-dots li button:before{
    color: #fff !important;
    opacity: 1;
}

.my-slick-wrapper .slick-dots li.slick-active button:before{
    color: #fff !important;
	background:unset !important;
}


.custom-footer{
    background:#082945;
    padding:70px 40px 0;
    color:#fff;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-widget{
    margin-bottom:20px;
}

.footer-widget h2,
.footer-widget h3{
    color:#d7f000;
    margin-bottom:20px;
    font-size:24px;
}

.footer-widget ul{
    list-style:none;
    padding:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget a{
    color:#fff;
    text-decoration:none;
}

.footer-widget a:hover{
    color:#d7f000;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:20px 0;
    margin-top:40px;
}

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
}

}
