.breadcrumb-section {
    padding: 150px 0px 75px 0px;
}
.breadcrumb-section h2 {
    font-size: 76px;
    font-weight: bold;
    line-height: 86px;
}
.breadcrumb-section p {
    width: 60%;
}

.breadcrumb-section .hero-img {
    display: none;
}

.top-area {
    padding: 170px 0px 100px 0px;
}

@media (max-width: 992px) {
    .breadcrumb-section h2 {
        font-size: 56px;
        line-height: 66px;
    }
    .breadcrumb-section p {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 150px 0px 50px 0px;
    }
    .breadcrumb-section .hero-img {
        display: inline;
    }
    .breadcrumb-section h2 {
        font-size: 42px;
        line-height: 52px;
    }
    .breadcrumb-section p {
        width: 90%;
    }
    .top-area {
        padding: 100px 0px 50px 0px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 100px 0px 50px 0px;
    }
    .breadcrumb-section h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .breadcrumb-section p {
        width: 100%;
    }
}

.magnetic-wrapper {
    display: flex;
    flex-shrink: 3;
    justify-content: center;
    align-items: center;
    width: 975px;
    height: 300px;
    /* margin: 0 auto 2rem; */
    perspective: 1200px;
    margin-top: 25px;
}

.magnetic-card {
    position: absolute;
    top: 0px; /* small vertical offset for all cards */
    left: calc(var(--i) * 175px); /* horizontal spread */
    width: 275px;
    height: 275px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    z-index: calc(10 - var(--i));
    transform: rotate(
        calc(var(--i) * 5deg - 7deg)
    ); /* initial creative rotation */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Individual hover animation */
.magnetic-card:hover {
    transform: translateY(-20px) rotate(calc(var(--i) * 10deg - 10deg))
        scale(1.1);
}

/* Non-hovered cards subtly shift when hovering another card */
.magnetic-wrapper:hover .magnetic-card:not(:hover) {
    transform: translateY(calc(var(--i) * 5px))
        rotate(calc(var(--i) * 2deg - 5deg)) scale(1);
}

.magnetic-card img {
    border-radius: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .magnetic-wrapper {
        width: 770px;
        height: 250px;
    }
}
@media (max-width: 992px) {
    .magnetic-card {
        width: 220px;
        height: 220px;
        left: calc(var(--i) * 140px);
    }
}

@media (max-width: 768px) {
    .magnetic-wrapper {
        display: none;
    }
    .magnetic-card {
        width: 180px;
        height: 180px;
        left: calc(var(--i) * 120px);
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .magnetic-wrapper {
        display: none;
    }
    .magnetic-card {
        width: 80px;
        height: 150px;
        left: calc(var(--i) * 50px);
        font-size: 12px;
        border-radius: 15px;
    }
}

.ticker-wrapper {
    overflow: hidden; /* hide overflow for smooth scrolling */
    white-space: nowrap;
    width: 100%;
    margin-top: 50px;
    position: relative;
}
.ticker-wrapper span {
    color: #f6921e;
}

.ticker {
    display: inline-block;
    padding-left: 0; /* start off-screen */
    animation: tickerAnim 500s linear infinite; /* loop infinitely */
    color: #262626;
    font-weight: bold;
    font-size: 140px;
}

@keyframes tickerAnim {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 576px) {
    .ticker {
        font-size: 50px;
    }
}

.cta-title {
    color: #262626;
    font-size: 64px;
    font-weight: bold;
    line-height: 74px;
    text-transform: uppercase;
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 30px;
        line-height: 40px;
    }
}

/* 404 */
.pagenot-title {
    font-size: 200px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .page-not {
        padding: 100px 0px;
    }
    .pagenot-title {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    /* .filter-menu .input-item{
    width: 100%;
  } */
    .filter-menu .input-item .content {
        width: 100%;
    }
    #magic-cursor {
        display: none;
    }
}

.awards {
    padding-top: 0px;
}
