.elementor-17 .elementor-element.elementor-element-db64bee{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-a074681{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-36eeac6{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-8f10761{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-faad9ec{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-17 .elementor-element.elementor-element-18bc5a5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-17 .elementor-element.elementor-element-d8bdcbe{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-80f8e48 *//* ================================
   BOX HERO SLIDER
   
   STACKING ORDER:
   .slide::before  z-index: 0  ← ken burns (BOTTOM)
   .overlay        z-index: 1  ← dark overlay
   .hero-content   z-index: 2  ← text
   .hero-buttons   z-index: 3  ← buttons (TOP — always clickable)
   ================================ */

.box-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* ── SLIDES ── */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 20s ease-in-out infinite;
}
.slide:nth-child(2) {
    animation-delay: 10s;
}

/* ── KEN BURNS ──
   THE BUTTON FIX: z-index: 0 keeps this pseudo-element
   BEHIND the overlay and content. Without this line it
   auto-stacks on top and blocks all clicks on the buttons. */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s linear infinite;
}
.slide:nth-child(2)::before {
    animation-delay: 10s;
}

/* ── OVERLAY ── */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.50)
    );
}

/* ── CONTENT ── */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 700px;
    color: #fff;
    z-index: 2;
    opacity: 0;
    animation: contentReveal 20s ease infinite;
}
.slide:nth-child(2) .hero-content {
    animation-delay: 10s;
}

/* ── TAG ── */
.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.4);
    color: #00d084;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ── HEADING ── */
.hero-content h1 {
    font-size: clamp(42px, 6vw, 90px);
    line-height: 1.05;
    margin: 0 0 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow:
        0 2px 6px  rgba(0, 0, 0, 0.60),
        0 6px 24px rgba(0, 0, 0, 0.45);
}

/* ── PARAGRAPH ── */
.hero-content p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
    color: #f0f0f0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* ── BUTTONS ── */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: #00a86b;
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
}
.btn-primary:hover {
    background: #00c97e;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 168, 107, 0.40);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
}
.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

/* ================================
   KEYFRAMES
   ================================ */

@keyframes slideFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    45%  { opacity: 1; }
    55%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes kenBurns {
    0%   { transform: scale(1.15); }
    100% { transform: scale(1); }
}

@keyframes contentReveal {
    0%  {
        opacity: 0;
        transform: translateY(calc(-50% + 50px));
    }
    8%  {
        opacity: 1;
        transform: translateY(-50%);
    }
    42% {
        opacity: 1;
        transform: translateY(-50%);
    }
    50% {
        opacity: 0;
        transform: translateY(-50%);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%);
    }
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .hero-content {
        left: 5%;
        right: 5%;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: clamp(38px, 7vw, 62px);
    }
    .hero-content p {
        font-size: 17px;
    }
}

/* ================================
   MOBILE  ( ≤ 768px )
   ================================ */
@media (max-width: 768px) {
    .hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.1;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.7;
    }
    .hero-tag {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
}

/* ================================
   SMALL MOBILE  ( ≤ 480px )
   ================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(28px, 9vw, 36px);
    }
    .hero-content p {
        font-size: 14px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-68e6829 */.about-box-cricket {
    padding: 120px 5%;
    background: #071b2f;
}

.about-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* ── IMAGE ── */
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    display: block;
    border-radius: 25px;
    object-fit: cover;
}

/* ── BADGE ── */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #00a86b;
    color: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.experience-badge span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
.experience-badge p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 6px 0 0;
    line-height: 1.4;
}

/* ── SECTION TAG ── */
.section-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.12);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00d084;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* ── HEADING ── */
.about-content h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 60px);
    line-height: 1.1;
    margin-bottom: 25px;
}

/* ── PARAGRAPH ── */
.about-content p {
    color: #c9d4df;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* ── FEATURES GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.feature-item {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.feature-item .fi-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── BUTTONS ── */
.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.about-btn-primary {
    background: #00a86b;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}
.about-btn-primary:hover {
    transform: translateY(-3px);
    background: #00c97e;
}
.about-btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
}
.about-btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .about-box-cricket {
        padding: 80px 5%;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 18px 22px;
    }
    .experience-badge span {
        font-size: 34px;
    }
    .about-content h2 {
        font-size: clamp(30px, 5vw, 48px);
    }
    .about-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }
}

/* ================================
   MOBILE  ( ≤ 600px )
   ================================ */
@media (max-width: 600px) {
    .about-box-cricket {
        padding: 60px 20px;
    }
    .about-container {
        gap: 36px;
    }
    .about-image {
        max-width: 100%;
    }
    .about-image img {
        border-radius: 16px;
    }
    .experience-badge {
        right: 12px;
        bottom: 12px;
        padding: 14px 18px;
        border-radius: 14px;
    }
    .experience-badge span {
        font-size: 28px;
    }
    .experience-badge p {
        font-size: 11px;
    }
    .section-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
    .about-content h2 {
        font-size: clamp(26px, 7vw, 38px);
        margin-bottom: 18px;
    }
    .about-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }
    .feature-item {
        font-size: 14px;
        padding: 14px 16px;
    }
    .about-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .about-btn-primary,
    .about-btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9c5d6f5 */.why-choose-section {
    padding: 120px 5%;
    background: #041d38;
    text-align: center;
}

.why-choose-section .container {
    max-width: 1400px;
    margin: auto;
}

/* ── TAG ── */
.section-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.12);
    border: 1px solid rgba(0, 208, 132, 0.35);
    color: #00d084;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ── HEADING ── */
.why-choose-section h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 65px);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* ── DESCRIPTION ── */
.section-desc {
    color: #c9d4df;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-size: 18px;
}

/* ── GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ── CARD ── */
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 24px;
    transition: 0.4s ease;
    text-align: left;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 208, 132, 0.08);
    border-color: rgba(0, 208, 132, 0.35);
}

/* ── ICON ── */
.feature-icon {
    font-size: 55px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

/* ── CARD HEADING ── */
.feature-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* ── CARD PARAGRAPH ── */
.feature-card p {
    color: #c9d4df;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 5%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
    .why-choose-section h2 {
        font-size: clamp(30px, 5vw, 50px);
    }
    .section-desc {
        font-size: 16px;
        margin-bottom: 44px;
    }
    .feature-card {
        padding: 30px 24px;
    }
    .feature-icon {
        font-size: 44px;
    }
    .feature-card h3 {
        font-size: 20px;
    }
}

/* ================================
   MOBILE  ( ≤ 600px )
   ================================ */
@media (max-width: 600px) {
    .why-choose-section {
        padding: 60px 20px;
    }
    .section-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
    .why-choose-section h2 {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 14px;
    }
    .section-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .feature-card {
        padding: 24px 20px;
        border-radius: 18px;
        /* disable hover lift on touch — no hover on mobile */
        transition: none;
    }
    .feature-card:hover {
        transform: none;
    }
    .feature-icon {
        font-size: 38px;
        margin-bottom: 14px;
    }
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .feature-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}
3 breakpoints: desktop · tabl/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-faad9ec */.stats-section {
    position: relative;
    padding: 120px 5%;
    background: url('https://www.daynightboxcricket.in/wp-content/uploads/2026/06/Box-slider02.png')
                center center / cover no-repeat;
    overflow: hidden;
}

/* ── OVERLAY ── */
.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 29, 56, 0.85);
}

/* ── CONTAINER ── */
.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* ── DIVIDER BETWEEN BOXES ── */
.stat-box {
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-box:last-child {
    border-right: none;
}

/* ── NUMBER ── */
.stat-box h2 {
    font-size: clamp(48px, 6vw, 70px);
    color: #00d084;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1;
}

/* ── LABEL ── */
.stat-box p {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .stats-section {
        padding: 80px 5%;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .stat-box {
        padding: 40px 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    /* remove right border on every 2nd box */
    .stat-box:nth-child(2n) {
        border-right: none;
    }
    /* remove bottom border on last row */
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .stat-box h2 {
        font-size: clamp(42px, 7vw, 60px);
    }
    .stat-box p {
        font-size: 16px;
    }
}

/* ================================
   MOBILE  ( ≤ 600px )
   ================================ */
@media (max-width: 600px) {
    .stats-section {
        padding: 60px 20px;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .stat-box {
        padding: 28px 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .stat-box:nth-child(2n) {
        border-right: none;
    }
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .stat-box h2 {
        font-size: clamp(36px, 9vw, 48px);
        margin-bottom: 8px;
    }
    .stat-box p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d35f142 */.arena-gallery {
    padding: 120px 5%;
    background: #071b2f;
}

/* ── HEADER ── */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 208, 132, 0.12);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00d084;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.gallery-header h2 {
    color: #fff;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 15px;
}

.gallery-header p {
    color: #c9d4df;
    font-size: 18px;
    line-height: 1.7;
}

/* ── GRID ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* ── ITEM ── */
.gallery-item {
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    min-height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

/* ── LARGE ITEM (spans 2 rows) ── */
.large {
    grid-row: span 2;
    min-height: 460px;
}

/* ================================
   TABLET  ( ≤ 991px )
   ================================ */
@media (max-width: 991px) {
    .arena-gallery {
        padding: 80px 5%;
    }
    .gallery-header {
        margin-bottom: 40px;
    }
    .gallery-header h2 {
        font-size: clamp(28px, 5vw, 44px);
    }
    .gallery-header p {
        font-size: 16px;
    }
    /* 2 column grid — large still spans but reset row span */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .large {
        grid-column: span 2;
        grid-row: auto;
        min-height: 300px;
    }
    .gallery-item {
        min-height: 200px;
    }
    /* disable hover zoom on touch */
    .gallery-item:hover img {
        transform: none;
        filter: none;
    }
}

/* ================================
   MOBILE  ( ≤ 600px )
   ================================ */
@media (max-width: 600px) {
    .arena-gallery {
        padding: 60px 20px;
    }
    .gallery-header {
        margin-bottom: 30px;
    }
    .gallery-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
    .gallery-header h2 {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 10px;
    }
    .gallery-header p {
        font-size: 14px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .large {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
    }
    .gallery-item {
        min-height: 200px;
        border-radius: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1841849 */.pricing-section{
    padding:120px 5%;
    background:#041d38;
}

.pricing-header{
    text-align:center;
    margin-bottom:70px;
}

.pricing-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(0,208,132,.12);
    border:1px solid rgba(0,208,132,.3);
    color:#00d084;
    margin-bottom:20px;
}

.pricing-header h2{
    color:#fff;
    font-size:60px;
    margin-bottom:15px;
}

.pricing-header p{
    color:#c9d4df;
}

.pricing-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.price-card{
    position:relative;
    background:#082544;
    border-radius:25px;
    padding:45px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:2px solid #00d084;
    transform:scale(1.05);
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#00d084;
    color:#041d38;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.price-card h3{
    color:#fff;
    margin-bottom:25px;
}

.price{
    color:#00d084;
    font-size:55px;
    font-weight:800;
    margin-bottom:30px;
}

.price span{
    font-size:18px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.price-card li{
    color:#d7e3ee;
    margin:15px 0;
}

.price-btn{
    display:inline-block;
    background:#00a86b;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
}

@media(max-width:991px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

}/* End custom CSS */