/*
 Theme Name: Hello Elementor Child
 Theme URI: https://elementor.com/
 Description: Child theme for Hello Elementor
 Author: Bitogrid Technologies
 Author URI: https://bitogrid.com
 Template: hello-elementor
 Version: 1.0.0
*/

/*Fonts*/


@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('assets/fonts/grift/grift-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



body, button, input, textarea, select, h1, h2, h3, h4, h5, h6, span, a, p {
    font-family: 'Grift', sans-serif !important;
}


h1{
	font-size: 96px;
}h2{
	font-size: 70px;
}h3{
	font-size: 40px;
}h4{
	font-size: 28px;
}h5{
	font-size: 20px;
}h6{
	font-size: 18px;
}




.page-title,
.entry-title,
.elementor-page-title {
    display: none !important;
}

.single-post{
	margin-top: 200px;
	width:100%;
	    background-color: #020510;
    background-image: url(https://haven.bitogrid.com/wp-content/uploads/2026/02/red_abstract_geometric_shape_with_grid_line_pattern-01-2-1-scaled.png);
    background-position

: top center;
    background-repeat: no-repeat;
    background-size: contain;
	
}

.single-post .site-main{
	padding: 100px 0;
}
.single-post .site-main .page-header .entry-title{
	display: block !important;
	font-size: 60px;
	color: #fff;
}
.single-post .site-main .page-content{
	color: #fff;
}
.single-post .site-main .page-content img{
	max-width: 600px;
}
/* Main header wrapper */
.ha-header {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 999;
    /*background: rgb(44 123 202 / 71%);*/
    background: transparent;
    backdrop-filter: blur(2px);
    border-bottom: 1px solid #01efff;
	 transition: transform 0.35s ease;

}


/* Sticky header (only active on scroll up) */
.ha-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%); /* hidden until scrolling up */
}

/* Sticky header becomes visible */
.ha-header.sticky.show {
    transform: translateY(0);
	background: #001d3aad;
}



/* Inner container */
.ha-header-inner {
    max-width: 1440px;
    margin: auto;
    padding: 5px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.ha-logo img {
    width: 200px;
	filter: invert;
}

/* MENU */
.ha-nav{
    list-style: none !important;
    display: flex;
    gap: 20px;
	padding-left: 0;
}
.ha-nav li a {
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s;
}

/* Active menu styling */
/* Active (current page) menu item with gradient border */
.ha-nav .current-menu-item > a {
    color: #fff;
    background: #1e1e1e;
    border-radius: 30px;
    padding: 10px 18px;
    position: relative;
    overflow: hidden;
}

/* Gradient border effect */
.ha-nav .current-menu-item > a:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px; /* border thickness */
    background: linear-gradient(100deg, #00F0FF, #002E31B2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; 
            mask-composite: exclude;
    pointer-events: none;
}

/* Hover */
.ha-nav li a:hover {
    color: #fff;
        color: #fff;
    background: #1e1e1e;
    border-radius: 30px;
    padding: 10px 18px;
    position: relative;
    overflow: none;
	
}

.ha-nav li a:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(100deg, #00F0FF, #002E31B2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}


/* RIGHT SIDE */
.ha-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ha-signin {
    color: #00eaff;
    font-size: 17px;
    text-decoration: none;
    padding: 10px 0;
    transition: 0.3s;
}
.ha-signin:hover {
    color: #fff;
}

/* Contact Button */
.ha-btn {
    padding: 5px 20px;
    background: linear-gradient(180deg, #007bff, #0273d2);
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    font-size: 17px;
    transition:  0.3s ;
}
.ha-btn:hover {
    opacity: 0.85;
    color: #fff;
	background: linear-gradient(90deg, #00c3ff, #007bff);
}

/* MOBILE HEADER FIXES */
@media (max-width: 991px) {

    .ha-header-inner {
        padding: 15px 20px;
    }

    /* Show hamburger, hide menu and right side */
    .ha-mobile-toggle {
        display: block !important;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 1001;
    }

    .ha-menu {
        display: none;
    }

    .ha-right {
        display: none;
    }

    /* Mobile menu dropdown */
    .ha-nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #01efff;
    }

    .ha-nav li a {
        display: block;
        padding: 15px 10px;
        font-size: 18px;
        border-radius: 8px;
    }
}

/* HIDE BURGER ON DESKTOP */
.ha-mobile-toggle {
    display: none;
}


/*Footer */

/* Footer area */
.custom-footer {
    background: #101012;
    color: #fff;
    padding: 70px 60px 20px;
    font-family: 'Inter', sans-serif;
}
.footer-nav{
    list-style: none;
    padding: 0;
}
.footer-nav a{
    padding: 8px 20px;
}
.custom-footer a{
    color: #fff;
}
.custom-footer a:hover{
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.6fr;
    gap: 60px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 30px;
}

/* Headings */
.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text */
.footer-col a {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}
.footer-col a:hover{
    color: #fff;
} 
.footer-middle{
    display: flex;
    flex-direction: column;
}


/* Policy links */
.footer-policy-links a {
    margin-right: 20px;
    color: #aaa;
    font-size: 14px;
}

.footer-policy-links a:hover {
    color: #fff;
}

/* Right menu */
.footer-menu a {
    display: block;
    font-size: 18px;
    margin-bottom: 18px;
    color: #ccc;
		    width: fit-content;
	    border-radius: 25px;


	transition:  .3s ease;
}

.footer-menu a:hover {
    color: #fff;
}


.footer-menu a:hover {
    background: #c6ff2a;
    padding: 8px 20px;
    border-radius: 25px;
    color: #000;
    font-weight: 600;

}

.footer-menu .active {
    background: #c6ff2a;
    padding: 8px 20px;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
}

.footer-nav .current-menu-item > a,
.footer-nav .current_page_item > a {
    background: #c6ff2a;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    width: fit-content;
}


/* Divider */
.footer-divider {
    margin: 50px 0 20px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom span {
    color: #aaa;
    font-size: 14px;
}

/* Social icons */
.footer-social a {
    margin-left: 20px;
    color: #fff;
    font-size: 20px;
    opacity: 0.7;
}

.footer-social a:hover {
    opacity: 1;
}

@media (max-width: 991px) {
	.custom-footer .footer-container{
		    grid-template-columns: 1fr;
	}
	.custom-footer{
		padding: 50px 20px
	}
	.footer-bottom{
		flex-direction: column;
		align-items: flex-start;
	}
	.copy-symbol{
		font-size: 18px !important;
	}
	.footer-bottom a{
		font-size: 18px ;
	}
	.footer-social{
		gap: 20px;
		display:flex;
	}
	.footer-social a{
	margin-left: 0
	}
	
.footer-divider {
	margin: 10px 0 20px;
	}
	
}
 
/*Footer End*/

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 10px;
    background: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.sticky-whatsapp:hover {
    background: #1EBE5D;
    transform: scale(1.05);
}

/* Scroll To Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #c6ff2a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
	justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s;
}

#scrollTopBtn i {
    font-size: 20px;
    color: #000;
}

#scrollTopBtn:hover {
    transform: scale(1.1);
}

/* HOME PAGE */

.gradient-title{
	background: linear-gradient(180deg, #D2FF52 -20%, #1C46F5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
	
	.title-gradient{
	background: linear-gradient(180deg,  #1C46F5 -20%,#D2FF52 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-reverse{
	background: linear-gradient(180deg, #D2FF52 37%, #1C46F5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.stock-slider{
	background: #141414 !important;
	pointer-events: none !important;
}
/* Card Base */

.border-gradient {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background: #1a1a1a;
  overflow: hidden;
}

/* Exact Figma-like gradient border */
.border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* thickness */
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    #d2ff52 24%,
    #1C46F5 100%
  );

  /* hollow center */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.border-gradient h4{
	font-size: 22px;
	line-height: 33px;
	color: #d3d3d3;
}

.border-gradient svg {
    fill: #d2ff52 !important;  
}

.left-radial, .right-radial{
	filter: blur(40px);
}

@media(max-width:998px){
	.left-radial, .right-radial, .sets-apart .right-radial , .sets-apart .left-radial{
		width: 100% !important;
	}
}

.left-radial {
  position: absolute;
  top: 0%;
  left: 0;
  width: 50%;        /* how far the gradient spreads horizontally */
  height: 100%;
  pointer-events: none;
 background: radial-gradient(
    circle at left center,
    rgba(0, 102, 204, 0.45),  
    rgba(0, 40, 80, 0.35),     
    rgba(0, 0, 0, 0.0) 70%    
  ); 
  z-index: -10;
    overflow: visible;
	
}
.right-radial{
    position: absolute;
    top: 30%;
    right: 0;
    width: 30%;
    height: 70%;
    pointer-events: none;
    background: radial-gradient(circle at right center, rgba(210, 255, 82, 0.25), rgba(210, 255, 82, 0.10), rgba(0, 0, 0, 0) 60%);
    z-index: -1;
    overflow: visible;
}

.why-haven .right-radial,.why-haven .left-radial{
	z-index:1;
    width: 30%;
  height: 80%;
	
	
}

.sets-apart .right-radial{
    top: 0%;
    left: 0;
    right: auto;
    width: 30%;
	height: 70%;
	background: radial-gradient(circle at left, rgba(210, 255, 82, 0.30), rgba(210, 255, 82, 0.20), rgba(0, 0, 0, 0) 70%);

}

.sets-apart .left-radial{
top: 30%;
    right: 0px ;
    width: 30% ;
		height: 100%;
    left: auto !important;
	background: radial-gradient(circle at right, rgba(0, 102, 204, 0.40), rgba(0, 40, 80, 0.30), rgba(0, 0, 0, 0.0) 100%);
}

.sets-apart li::marker{
	color: #BEF264;
}

.sets-apart{
	position: relative;
}

@media (max-width: 991px) {
.sets-apart .mobile-hidden{
	display: none
}
}


  :root {
            --green: #00e676;
            --red: #ff3b5c;
            --cyan: #00d4ff;
            --lime: #c6f135;
            --bg: #060d11;
            --card-bg: rgba(8, 22, 32, 0.92);
        }


/* ── TIMELINE ── */
        .timeline {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px 0px;
        }

        /* ── VERTICAL TRACK ── */
        .track {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            transform: translateX(-50%);
            width: 3px;
            background: rgba(255, 255, 255, 0.04);
            z-index: 1;
            border-radius: 2px;
        }

        .track-fill {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 0%;
            border-radius: 2px;
            background: var(--green);
            /* height animates, color flips INSTANT */
            transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ── STICKY CANDLE ── */
        .candle-wrap {
            position: sticky;
            top: 60vh;
            height: 100%;
            display: flex;
            justify-content: center;
            z-index: 30;
            pointer-events: none;
        }

        .candle {
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateY(-50%);
            /* no transition on color – instant */
        }

        .candle__wick {
            width: 2px;
            height: 22px;
            border-radius: 2px;
            background: var(--green);
        }

        .candle__body {
            width: 22px;
            height: 50px;
            border-radius: 4px;
            background: var(--green);
            border: 2px solid rgba(0, 0, 0, 0.4);
            position: relative;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .candle__body::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 4px;
            width: 4px;
            height: 14px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.18);
        }

        /* ── COLOR STATES (instant, no transition) ── */
        .candle.green .candle__wick,
        .candle.green .candle__body {
            background: var(--green);
        }

        .candle.green {
            filter: drop-shadow(0 0 18px var(--green)) drop-shadow(0 0 6px var(--green));
        }

        .track-fill.green {
            background: var(--green);
        }

        .candle.red .candle__wick,
        .candle.red .candle__body {
            background: var(--red);
        }

        .candle.red {
            filter: drop-shadow(0 0 18px var(--red)) drop-shadow(0 0 6px var(--red));
        }

        .track-fill.red {
            background: linear-gradient(to bottom, var(--green) 0%, var(--red) 100%);
        }

        /* ── BOUNCE on jump ── */
        @keyframes candleBounce {
            0% {
                transform: translateY(-50%) scaleY(1) scaleX(1);
            }

            20% {
                transform: translateY(-50%) scaleY(0.68) scaleX(1.35);
            }

            50% {
                transform: translateY(-50%) scaleY(1.22) scaleX(0.88);
            }

            75% {
                transform: translateY(-50%) scaleY(0.94) scaleX(1.04);
            }

            100% {
                transform: translateY(-50%) scaleY(1) scaleX(1);
            }
        }

        .candle.bounce {
            animation: candleBounce 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        /* ── ROWS ── */
        .rows {
            position: relative;
            z-index: 2;
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            min-height: 320px;
            align-items: center;
            padding: 100px 0;
        }

        /* ── CENTER DOT ── */
        .row__center {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #0d2030;
            border: 3px solid #1a3548;
            z-index: 5;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            /* color: instant */
        }

        .dot.active {
            transform: scale(1.75);
        }

        .dot.lit-green {
            background: var(--green);
            border-color: var(--green);
            box-shadow: 0 0 14px var(--green);
        }

        .dot.lit-red {
            background: var(--red);
            border-color: var(--red);
            box-shadow: 0 0 14px var(--red);
        }

        /* Connector line from dot → card */
        .connector {
            position: absolute;
            top: 50%;
            height: 1px;
            width: 0%;
            transition: width 0.5s ease;
        }

        .connector.to-right {
            left: 50%;
            transform: translateY(-50%);
            background: rgba(0, 230, 118, 0.35);
        }

        .connector.to-left {
            right: 50%;
            transform: translateY(-50%);
            background: rgba(0, 230, 118, 0.35);
        }

        .connector.red-line {
            background: rgba(255, 59, 92, 0.4) !important;
        }

        .connector.full {
            width: 220px;
        }

        /* ── CARD ── */
        .card {
            max-width: 500px;
            width: 100%;
            background: var(--card-bg);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 14px;
            padding: 20px 20px;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s;
        }
.center-row{
	display: flex;
	justify-content:flex-end;
}


        .row:nth-child(odd) .card {
            transform: translateX(50px);
            margin-left: 0;
        }

        .row:nth-child(even) .card {
            transform: translateX(-50px);
            margin-right: 0;
					justify-content: flex-end;
        }

        .card.visible {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        .card.border-green {
            border-color: rgba(0, 230, 118, 0.28);
        }

        .card.border-red {
            border-color: rgba(255, 59, 92, 0.28);
        }

        .card__tag {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 3px 11px;
            border-radius: 20px;
            margin-bottom: 14px;
        }

        .tag-green {
            background: rgba(0, 230, 118, 0.1);
            color: var(--green);
            border: 1px solid rgba(0, 230, 118, 0.25);
        }

        .tag-red {
            background: rgba(255, 59, 92, 0.1);
            color: var(--red);
            border: 1px solid rgba(255, 59, 92, 0.25);
        }

        .card__title {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            color:  var(--lime);
            line-height: 1.25;
            margin-bottom: 0px;
        }

        .card__weeks {
            font-size: 1.2rem;
            font-weight: 500;
            background: linear-gradient(90deg, #B6EEFC -20%, #15C7F4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .card__text {
            font-size: 1rem;
            line-height: 1.3;
            color: #fff;
					font-weight:300
        }

        /* ── SIDE NAV ── */
        .sidenav {
            position: sticky;
            right: 24px;
					float:right;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 100;
        }

        .sidenav__dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #1e3545;
            border: 2px solid #2a4a60;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s, border-color 0.3s;
        }

        .sidenav__dot.active {
            transform: scale(1.9);
        }

        .sidenav__dot.active.g {
            background: var(--green);
            border-color: var(--green);
        }

        .sidenav__dot.active.r {
            background: var(--red);
            border-color: var(--red);
        }

        /* ── ORBS ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .orb1 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(0, 80, 130, 0.2) 0%, transparent 70%);
            top: -200px;
            left: -200px;
        }

        .orb2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 50, 100, 0.18) 0%, transparent 70%);
            bottom: -100px;
            right: -100px;
        }

        /* ── MOBILE ── */
        @media (max-width: 680px) {
            .timeline {
                padding: 0 16px 120px;
            }

            .row {
                grid-template-columns: 1fr;
                padding: 48px 0;
            }

            .row__center,
           
            .sidenav {
                display: none;
            }
					.track{
						left: 18px;
					}
					.candle-wrap{
						justify-content: flex-start;
						margin-left: -10px;
					}
					
					.candle.green, .candle.red{
						filter: none;
					}
					
					
					
            .card {
                max-width: 100%;
                transform: none !important;
                margin: 0 !important;
            }
					
					
.orbit-circles{
	display: none;
}
					.orbit-circle-mobile{
						display:flex !important;
						left: 11%;
    position: relative;
    top: 13%;
					}
/* 					.bubble-1{
						left:-130px !important;
						top:-50px !important
					}
					 */
					.bubble-1,.bubble-2,	.bubble-3{
						display:none;
					}
        }

/* .dot, .connector{
	display:none
}
 */


.border-gradient.card{
	transition: .3s;
	z-index:9
}

.border-gradient.card:hover{
	box-shadow: 0px 0px 50px -25px  #D2FF52
}

.flip-box{
	  position: relative;
  padding: 10px 10px;
  border-radius: 10px;
  background: #1a1a1a;
  overflow: hidden;
	border: 1px solid #505E27;
		transition: .4s;
}

.flip-box:hover::before{
	 content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* thickness */
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    #d2ff52 24%,
    #1C46F5 100%
  );

  /* hollow center */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}


.flip-box h4{
	font-size: 22px;
	line-height: 33px;
	color: #d3d3d3;
}

@media (max-width:998px){
	.flip-box h4{
	font-size: 18px;
	line-height: 25px;
	color: #d3d3d3;
}
	.flip-box h3{
		font-size: 26px !important;
	}
	.cursor-glow{
		display: none;
	}

}

.flip-box:hover .icon-flip {
  transform: scalex(-1);

}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
	border: 1px solid #D2FF52;
    border-radius: 50%;
    pointer-events: none;
/*     background: radial-gradient(circle, rgba(210,255,82,0.35) 0%, rgba(210,255,82,0) 100%); */
/*     mix-blend-mode: screen; */
    transform: translate(-50%, -50%);
    transition: transform 0.07s linear;
    filter: blur(0px);
    z-index: 9999;
}


.counter-box .elementor-counter-title{
	text-align: center;
}

.counter-box .elementor-counter-number-wrapper span{
	    background: linear-gradient(180deg, #D2FF52 40%, #1C46F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.team-sec img{
	height: 340px;
	object-fit: cover;
}

.floating {
    animation: float3d 5s ease-in-out infinite;
}

@keyframes float3d {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(10px, -10px); }
    50%  { transform: translate(0, -20px); }
    75%  { transform: translate(-10px, -10px); }
    100% { transform: translate(0, 0); }
}


@media (min-width:1100px){
	.test-1{
transform: translateY(-8rem);
}
.test-2{
transform: translateY(1rem);
	margin-top: -5.5rem;
}

.test-3{
transform: translateY(-9rem);
}
.test-4{
transform: translateY(0rem);
}
.test-5{
transform: translateY(-9rem);
}
.test-6{
transform: translateY(-5rem);
	
}

.test-7{
transform: translateY(-7rem);
	
}
	.test-reviews{
margin-top:-22rem;
	}
}



@media (min-width:590px) and (max-width:1100px){
	.test-1{
transform: translateY(-6rem);
}
.test-2{
transform: translateY(-5.5rem);
}

.test-3{
transform: translateY(-6rem);
}
.test-4{
transform: translateY(0rem);
}
.test-5{
transform: translateY(-6rem);
}
.test-6{
transform: translateY(-4rem);
}

.test-7{
transform: translateY(-7rem);
	z-index: -10;
}
	.test-reviews{
		margin-top:-22rem;


}
}

/* .rotator{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    padding: 0;
	z-index:1;
} */

/* .mastery .e-con-inner{
	padding:0 !important;
} */
.pdf-btn .elementor-button-content-wrapper{
	align-items: center;
}
.pdf-btn .elementor-button-icon{
	font-size: 2rem;
	font-weight: 900;
}

.gradient-shadow{
	height:9% !important;
		position: absolute !important;
	top: 0;
	left:0;
	
	background:linear-gradient(180deg, #000000 10%, #FFFFFF00 100%);
	    pointer-events: none;

}

.gradient-shadow::before{
	content:"";
	height:280vh;
	width:20%;

		position: absolute;
	top: 0;
	left:0;
	background:linear-gradient(90deg, #000000 0%, #FFFFFF00 80%);
	    pointer-events: none;

}

.gradient-shadow::after{
	content:"";
	height:280vh;
	width:20%;

		position: absolute;
	top: 0;
	right:0;
	background:linear-gradient(270deg, #000000 0%, #FFFFFF00 80%);
	    pointer-events: none;

}

.app-exp .elementor-button-content-wrapper{
	align-items: center
}

.app-exp .elementor-button-icon svg{
	fill: #000 !important;
	height:1.5rem;
	width: 1.5rem;
}

.orbit-circle-mobile{
	display: none;
}
.online-program{
	display:block;
}

.offline-program {
	display: none;
}

.program-toggle {
  display: flex;
/*   gap: 10px; */
  margin-bottom: 20px;
	border-radius:6px;
	overflow: hidden;
}

.program-toggle .toggle-btn {
  padding: 20px 30px;
  border: none;
  background: #1e1e1e;
	color: #fff;
	border-radius:0;
  cursor: pointer;
  font-weight: 400;
	font-size: 22px
}

.program-toggle .toggle-btn.active {
  background: #1c46f5;
  color: #fff;
}

.contact_form label, .contact_form input{
	width: 100%;
}

.contact_form .wpcf7-response-output{
	color: #999;
	border:1px solid #999 !important;
	border-radius: 8px
}