#commonHeader,
.heading-menu,
#customers,
#allFea,
.btmBar,
#meCommonFooterNew,
#scroll {
    display: none;
}

/* Styles for 20 Years of Endpoint Central */
/* Smooth scrolling for snap functionality */
html {
    scroll-behavior: smooth;
}

:root {
    /* Milestone scroll images */
    --sysadmin-image: url('images/sysadmin-1.png');
    --agent-image: url('images/agent-1.png');
    --hero-bg: url('images/hero-bg.svg');
}

body {
    padding: 0;
    margin: 0;
}

.ec20 {
    font-family: ZohoPuvi;
    padding: 80px 40px;
    position: relative;
}

.ec20 a {
    color: inherit;
    text-decoration: none;
}

.ec20 a:focus {
    text-decoration: none;
}

.ec20 .cta {
    display: flex;
    padding: 4px 12px 40px;
    margin: auto;
    background-image: url(images/button-blue.svg);
    height: 50px;
    width: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    color: #fff;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: all ease-in 100ms;
}

.ec20 .cta-red {
    background-image: url(images/button-red.svg);
}

.ec20 .cta.disabled {
    filter: grayscale(100%);
    cursor: not-allowed;
    pointer-events: none;
}

.ec20 .cta:hover {
    transform: scale(1.051);
}

.ec20 h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    color: #000;
    margin: 0 0 20px;
    text-align: center;
}

.ec20 h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #000;
    margin: 0 0 20px;
}

.ec20 .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.ec20.menu {
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 4;
}

.ec20.menu .flex {
    /* background: rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 40px;
    border-radius: 24px;
    justify-content: space-between;
}

.ec20.menu .ec-logo {
    width: 200px;
}

.ec20.menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.ec20.menu ul a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    /* text-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 0, 0, 0.4); */
    transition: all 0.3s ease;
    position: relative;
}

.ec20.menu ul a:hover {
    color: #ffcc00;
    transform: translateY(-2px);
}

.ec20.menu ul a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.ec20.menu ul a:hover::before {
    opacity: 1;
}

.ec20.hero {
    position: relative;
    background-image: var(--hero-bg), linear-gradient(to bottom, #00329e, #0140c9, #FFAD8C);
    background-repeat: no-repeat, no-repeat;
    background-size: 70%, auto;
    background-position: bottom center, center;
    height: calc(100dvh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec20.hero .hero-image {
    width: 60dvh;
    margin: auto;
    display: block;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    transform: rotateY(0deg);
    filter: drop-shadow(0px 0px 0px transparent);
    animation: wind 6s cubic-bezier(0.4, 0, 0.2, 1) 0s infinite;
}

@keyframes wind {
    0% {
        transform: rotateY(-24deg);
        filter: drop-shadow(48px 0px 12px #00000072);
    }

    50% {
        transform: rotateY(24deg);
        filter: drop-shadow(-48px 0px 12px #00000072);
    }

    100% {
        transform: rotateY(-24deg);
        filter: drop-shadow(48px 0px 12px #00000072);
    }
}

.ec20.how {
    padding: 0;
    margin-top: -220px;
    /* Add extra height for scroll space */
    height: 250vh;
    /* This allows for extended scrolling */
}

.ec20.how .arc-bg {
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    z-index: 1;
}

.ec20.how .how-container {
    position: sticky;
    top: 0;
    z-index: 2;
    background-image: url(images/2005-illustration.jpg);
    background-size: 100% auto;
    background-position: center center;
    width: 100%;
    height: calc(100vh - 140px);
    text-align: center;
    padding: 140px 0 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, background-image 2s ease-in-out;
}

.ec20.how .how-container.bg-visible {
    opacity: 1;
}

.ec20.how .how-container .how-title {
    font-size: 24px;
    font-weight: 500;
    color: #C91300;
    margin: 0 0 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.ec20.how .how-container .how-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ec20.how .how-container .how-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-image: url(images/number-board.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 300px;
    height: 100px;
    font-size: 64px;
    color: #000;
    margin: 0 0 24px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    line-height: 150%;
}

.ec20.how .how-container .how-number.animate-in {
    opacity: 1;
    transform: scale(1);
}

.ec20.how .how-container .how-number b {
    width: 56px;
    font-weight: 600;
    background: linear-gradient(360deg, #464646 5%, #424242 16%, #020202 40.93%, #1C1C1C 42.4%, #323232 43.87%, #434343 45.33%, #4F4F4F 46.8%, #565656 49.73%, #585858 57.8%, #515151 61.47%, #3F3F3F 65.87%, #222222 72.47%, #000000 77.6%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.ec20.how .how-container .how-text {
    display: flex;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin: 0 auto;
    max-width: fit-content;
    background-color: #000000c1;
    padding: 20px 40px;
    border-radius: 8px;
    gap: 12px;
    opacity: 0;
    transform: scale(.8);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
}

.ec20.how .how-container .how-text.animate-in {
    opacity: 1;
    transform: scale(1);
}

.ec20.how .how-container .how-text-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.ec20.how .how-container .how-text-item[data-item="1"] {
    transition-delay: 0.4s;
}

.ec20.how .how-container .how-text-item[data-item="2"] {
    transition-delay: 0.5s;
}

.ec20.how .how-container .how-text-item[data-item="3"] {
    transition-delay: 0.6s;
}

.ec20.how .how-container .how-text-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.ec20.how .how-container .how-stat {
    background-image: url(images/number-bg.svg);
    display: inline-flex;
    width: 200px;
    height: 166px;
    background-size: contain;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
    margin: 0 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out;
}

.ec20.how .how-container .how-stat.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ec20.how .how-container .how-stat.step2.animate-in {
    transform: translate(0px, -40px);
}

.ec20.how .how-container .how-stat .how-stat-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.ec20.how .how-container .how-stat .how-stat-number {
    font-weight: 700;
    font-size: 46px;
    font-weight: 600;
    line-height: normal;
    width: 100%;
    background: linear-gradient(180deg, #FFEE00 0%, #FF9100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.ec20.how .how-container .how-stat .how-stat-text {
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
}

/* Animation for stat background images */
.ec20.how .how-container .how-stat .how-stat-wrapper {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease-out;
}

.ec20.how .how-container .how-stat .how-stat-wrapper.animate-in {
    opacity: 1;
    transform: scale(1);
}

.ec20.difference .difference-bg {
    width: 90%;
    margin: auto;
}

.ec20.dashboard {
    display: block;
    padding: 0;
    position: relative;
    height: 300vh;
    /* Add height for scroll space */
}

.ec20.dashboard.sticky .flex {
    position: sticky;
    top: 0px;
    z-index: 3;
}

.ec20.dashboard .flex {
    background-image: url(images/dashboard-bg.svg), url(images/dashboard-floor.svg);
    background-size: 100% auto ,100% auto;
    background-position: top center, bottom center;
    background-repeat: no-repeat, no-repeat;
    flex-wrap: wrap;
    height: 100vh;
    /* Fixed height for content */
    width: 100%;
    max-width: none;
}

.ec20.dashboard h2 {
    text-align: center;
    padding: 60px 0 40px;
    width: 100%;
}

.ec20.dashboard .slider {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: calc(100vh - 70px);
    position: relative;
}

.ec20.dashboard .slider li {
    flex: 0 0 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.ec20.dashboard .slider li.active {
    opacity: 1;
}

.ec20.dashboard .slider li:before {
    content: '2005';
    position: absolute;
    top: -40px;
    font-size: 20px;
    font-weight: 500;
    background-image: url(images/year-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 12px;
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
    text-align: center;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ec20.dashboard .slider li:nth-child(1):before {
    content: '2005';
}

.ec20.dashboard .slider li:nth-child(2):before {
    content: '2015';
}

.ec20.dashboard .slider li:nth-child(3):before {
    content: '2025';
}

.ec20.dashboard .slider li:nth-child(4):before {
    content: 'Up next';
}

.ec20.dashboard .slider img {
    width: auto;
    height: 100%;
    max-width: 100%;
    top: -20px;
    position: relative;
}

.ec20.dashboard .slider [data-slide="0"] img {
    height: 89%;
    top: 10px;
}

/* Optional: Slide indicators */
.ec20.dashboard .slide-indicators {
    position: absolute;
    right: 0;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
    flex-direction: column;
    top: 50%;
    margin: auto;
}

.ec20.dashboard .slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(204, 148 ,57 ,0.5);
}

.ec20.dashboard .slide-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.ec20.dashboard .slide-indicator.active {
    background: #cc9439;
    border-color: rgb(204 148 57);
    transform: scale(1.1);
}

.ec20.milestone {
    padding: 80px 40px 0;
    height: 600vh;
    background-image: url(images/milestones-bg.svg);
    background-size: 100% auto;
    background-position: top center;
}

.ec20.milestone:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 400px;
    background-image: url(images/arc-bg-1.svg);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 3;
}

.ec20.milestone .sticky {
    position: sticky;
    top: 80px;
    max-width: 1200px;
    margin: auto;
}

.ec20.milestone[data-step] .sticky:before {
    content: '2005';
    position: absolute;
    top: 80px;
    font-size: 20px;
    font-weight: 500;
    background-image: url(images/year-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 12px;
    left: 0;
    right: 0;
    margin: auto;
    width: 140px;
    text-align: center;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ec20.milestone[data-step="1"] .sticky:before {
    content: '2004 - 2008';
}

.ec20.milestone[data-step="2"] .sticky:before {
    content: '2009 - 2016';
}

.ec20.milestone[data-step="3"] .sticky:before {
    content: '2017 - 2019';
}

.ec20.milestone[data-step="4"] .sticky:before {
    content: '2020- 2022';
}

.ec20.milestone[data-step="5"] .sticky:before {
    content: '2023 - 2025';
}

.ec20.milestone .sysadmin {
    position: relative;
    width: 100%;
    margin: auto;
    height: calc(100vh - 140px);
}

.ec20.milestone .sysadmin.non-mobile,
.ec20.newspaper .non-mobile,
.ec20.industries .non-mobile,
.ec20.difference .non-mobile {
    display: block;
}

.ec20.difference .non-mobile {
    display: flex;
}

.ec20.milestone .sysadmin.mobile,
.ec20.newspaper .mobile,
.ec20.industries .mobile,
.ec20.difference .mobile {
    display: none;
}

.ec20.milestone .sysadmin .sysadmin-image {
    width: 100%;
    height: 100%;
    margin: auto;
    background-image: var(--sysadmin-image);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    transition: background-image 0.3s ease;
}

.ec20.milestone .sysadmin .sysadmin-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.ec20.milestone .sysadmin .sysadmin-text h3 {
    border-top: 1px dashed #c80100;
    border-bottom: 1px dashed #c80100;
    padding: 4px 0;
    max-width: fit-content;
}

.ec20.milestone .sysadmin .sysadmin-text ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px;
    left: 0;
    margin: auto;
    max-width: 300px;
    max-height: 300px;
    align-items: flex-end;
    justify-content: center;
}

.ec20.milestone .sysadmin .sysadmin-text ul li {
    background-color: #ffffff8a;
    border: 1px solid #c80000;
    max-width: 200px;
    margin: 20px 0;
    padding: 4px 18px 4px 12px;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    backdrop-filter: blur(20px);
    transition: 350ms;
    opacity: 0;
}

.ec20.milestone .sysadmin .sysadmin-text ul.show li {
    opacity: 1;
}

.ec20.milestone .sysadmin .sysadmin-text ul li:before {
    content: '';
    background-image: url(images/alert-icon.svg);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -30px;
    top: 4px;
}

.ec20.milestone .sysadmin .sysadmin-text ul li:nth-child(1) {
    transform: translateX(20%);
    transition-delay: 100ms;
}

.ec20.milestone .sysadmin .sysadmin-text ul li:nth-child(2) {
    transform: translateX(100%);
    transition-delay: 200ms;
}

.ec20.milestone .sysadmin .sysadmin-text ul li:nth-child(3) {
    transform: translateX(10%);
    transition-delay: 300ms;
}

.ec20.milestone .sysadmin .sysadmin-text ul li:nth-child(4) {
    transform: translateX(90%);
    transition-delay: 400ms;
}

.ec20.milestone .sysadmin .agent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    margin: auto;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
}

.ec20.milestone .sysadmin .agent .agent-image {
    width: 100%;
    height: 320px;
    background-image: var(--agent-image);
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
    background-size: contain;
}

.ec20.milestone .sysadmin .agent .agent-text {
    background-color: #ffffff8a;
    backdrop-filter: blur(20px);
    border: 1px solid #6b9c0a;
    padding: 20px;
    border-radius: 8px;
    min-width: 270px;
    position: relative;
}

.ec20.milestone .sysadmin .agent .agent-text:before {
    content: '';
    background-image: url(images/ec-logo-black.svg);
    display: block;
    width: 120px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 0 12px;
}

.ec20.milestone .sysadmin .agent .agent-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #6b9c0a;
    transform: rotate(45deg) translate(-44px, 60px);
    border-left: 0;
    border-top: 0;
    background: #fff;
}

.ec20.milestone .sysadmin .agent .agent-text h3 {
    margin: 0 0 10px;
    border-top: 1px dashed #6b9c0a;
    border-bottom: 1px dashed #6b9c0a;
    padding: 4px 0;
    max-width: fit-content;
}

.ec20.milestone .sysadmin .agent .agent-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin: 0;
}

/* Milestone content transitions */
.ec20.milestone [data-item] {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show data-item="1" by default */

.ec20.milestone [data-item].show {
    display: block;
    opacity: 1;
}

.ec20.industries {
    padding: 0px 0 0;
    background: #032cac;
    display: flex;
    flex-wrap: wrap;
}

.ec20.industries h2 {
    margin: 0;
    color: #fff;
    width: 100%;
    /* background: linear-gradient(to bottom, #032cac, #2551b1); */
    top: 80px;
    position: relative;
}

.ec20.industries img {
    width: 100%;
}

.ec20.leaders>p {
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.ec20.leaders .leader-cards {
    display: flex;
    margin: 80px auto 0;
    max-width: 1200px;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.ec20.leaders .leader-cards .card {
    position: relative;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.ec20.leaders .leader-cards .card:nth-child(1) {
    transform: rotate(-36deg) translate(60px, 140px);
    z-index: 4;
}

.ec20.leaders .leader-cards .card:nth-child(2) {
    transform: rotate(-14deg) translate(40px, 0px);
    z-index: 3;
}

.ec20.leaders .leader-cards .card:nth-child(3) {
    transform: rotate(14deg) translate(-40px, 0px);
    z-index: 2;
}

.ec20.leaders .leader-cards .card:nth-child(4) {
    transform: rotate(36deg) translate(-60px, 140px);
    z-index: 1;
}

.ec20.leaders .leader-cards .card img {
    height: 400px;
    width: auto;
    padding: 0 0 0 12px;
}

.ec20.leaders .leader-cards .card p {
    font-family: "Zilla Slab", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
}

.ec20.leaders .leader-cards .card:nth-child(1) p {
    transform: rotate(36deg) translate(-140px, 0px);
}

.ec20.leaders .leader-cards .card:nth-child(2) p {
    transform: rotate(16deg) translate(-140px, -360px);
}

.ec20.leaders .leader-cards .card:nth-child(3) p {
    transform: rotate(-16deg) translate(300px, -320px);
}

.ec20.leaders .leader-cards .card:nth-child(4) p {
    transform: rotate(-36deg) translate(350px, 80px);
}

.ec20.leaders .leader-cards .card p:before {
    content: '';
    display: inline-block;
    background-image: url(images/arrow.svg);
    width: 100px;
    height: 44px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.ec20.leaders .leader-cards .card:nth-child(1) p:before {
    transform: rotate(280deg) translate(80px, 0px);
}

.ec20.leaders .leader-cards .card:nth-child(2) p:before {
    transform: rotate(356deg) translate(130px, 10px);
}

.ec20.leaders .leader-cards .card:nth-child(3) p:before {
    transform: rotate(128deg) translate(58px, -38px);
}

.ec20.leaders .leader-cards .card:nth-child(4) p:before {
    transform: rotate(161deg) translate(116px, 16px);
}

.ec20.tribute {
    background: linear-gradient(to bottom, #fff, #FEFABB);
    padding-top: 0;
}

.ec20.tribute .tribute-card {
    text-align: center;
    border: 2px solid #DBBB6E;
    border-radius: 12px;
    max-width: 500px;
    overflow: hidden;
}

.ec20.tribute .flex {
    gap: 40px;
}

.ec20.tribute .tribute-card img {
    width: 100%;
}

.ec20.tribute .tribute-card .content {
    padding: 40px 40px 0;
    background: linear-gradient(226.7deg, #ECE6E4 18.16%, #F0EBEA 22.36%, #FBFAF9 35.83%, #FFFFFF 45.93%, #FBFAF9 54.35%, #F1ECEB 64.45%, #ECE6E4 68.66%, #ECE6E4 88.86%, #D9D4C7 98.11%, #D0CCBA 102.32%);
}

.ec20.tribute .tribute-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px;
}

.ec20.tribute .tribute-card p {
    font-family: "Zilla Slab", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 24px;
    color: #000;
    margin: 0 0 16px;
}

.ec20.newspaper img {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: auto;
}

.ec20.letter {
    background-image: url(images/tree.svg), url(images/ruled-paper-bg.svg);
    background-size: auto 60%, 100% auto;
    background-position: right bottom, top center;
    background-repeat: no-repeat;
    padding: 160px 40px 80px;
    background-color: #fefabb;
}

.ec20.letter .wrapper {
    max-width: 1200px;
    margin: auto;
}

.ec20.letter p {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 52px;
    color: #222;
    max-width: 900px;
}

.ec20.letter p.red {
    color: #EC3535;
    margin: 0;
}

.ec20.letter .signature {
    width: 240px;
    height: auto;
}

.ec20.footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 300;
    background-color: #231F20;
    color: #fff;
    max-width: -webkit-fill-available;
}

.ec20 .scroll-down {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 20px;
    margin: auto;
    width: 60px;
    height: auto;
}

.ec20.hero .scroll-down,
.ec20.how .scroll-down,
.ec20.milestone .scroll-down {
    left: 20px;
}

@media (max-width: 1024px) {
    .ec20.letter {
        background-size: 50% 53%, 170% auto;
        background-position: bottom right, top left;
    }

    .ec20.letter p {
        max-width: 760px;
    }

    .ec20.how {
        margin-top: -150px;
    }

    .ec20.how .how-container {
        height: calc(100vh - -20px);
    }

    .ec20.how .how-container .how-number.animate-in {
        transform: translate(-260px, -30px);
    }

    .ec20.how .how-container .how-stat.right.animate-in {
        transform: translate(360px, -90px);
    }

    .ec20.how .how-container .how-stat.left.animate-in {
        transform: translate(-230px, 70px);
    }

    .ec20.how .how-container .how-stat.step2.right.animate-in {
        transform: translate(280px, 50px);
    }

    .ec20.how .how-container .how-stat.step2.left.animate-in {
        transform: translate(-130px, 220px);
    }

    .ec20.dashboard.sticky .flex {
        top: 150px;
    }
}

@media (max-width: 768px) {
    .ec20.menu {
        left: 16px;
        top: 16px;
        right: 16px;
        border-radius: 16px;
    }

    .ec20.menu .ec-logo {
        width: 140px;
        margin: auto;
    }

    .ec20.menu ul {
        display: none;
    }

    .ec20.leaders .leader-cards .card p {
        transform: none !important;
        text-align: center;
        width: auto;
        position: static;
        margin: 0 0 20px;
    }

    .ec20.leaders .leader-cards .card p:before {
        display: none;
    }

    .ec20.milestone .sysadmin .sysadmin-text ul li {
        transform: none !important;
        opacity: 1 !important;
        max-width: none;
        width: auto;
    }

    .ec20.milestone .sysadmin .sysadmin-text {
        position: static;
    }

    .ec20.milestone .sysadmin .sysadmin-text ul {
        position: static !important;
        opacity: 1 !important;
        display: block !important;
        max-height: none !important;
        max-width: none;
    }

    .ec20.milestone .sysadmin {
        height: auto;
    }

    .ec20.milestone .sysadmin .agent .agent-text {
        min-width: auto;
    }

    .ec20.milestone .sysadmin .agent {
        position: static;
        width: auto;
    }

    .ec20.milestone .sysadmin .agent .agent-text p {
        opacity: 1 !important;
        display: block !important;
    }

    .ec20.milestone .sticky {
        position: static;
    }

    .ec20.milestone .sysadmin .sysadmin-text ul li:before {
        position: static;
    }

    .ec20.milestone {
        height: auto;
    }

    .ec20.dashboard .slider img {
        height: auto;
        width: 100%;
        top: 0px;
        position: relative;
    }

    .ec20.difference .difference-bg {
        width: 100%;
    }

    .ec20.milestone[data-step] .sticky:before {
        display: none;
    }

    .ec20.leaders {
        padding-bottom: 0;
    }

    .ec20.tribute .flex {
        flex-wrap: wrap;
    }

    .ec20 .cta {
        width: auto;
        height: 40px;
        font-size: 14px;
        background-position: center -3px;
        background-size: 90% 100%;
    }

    .ec20.letter {
        background-size: 50% auto, auto 100%;
        background-position: bottom right, top center;
    }

    .ec20.letter p {
        font-size: 20px;
        line-height: normal;
        color: #555;
    }

    .ec20.tribute .tribute-card .content {
        padding: 40px 0 0;
    }

    .ec20.tribute .tribute-card p {
        padding: 0 40px;
    }

    .ec20.leaders .leader-cards .card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        transform: none !important;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        width: 100%;
    }

    .ec20.leaders .leader-cards .card img {
        height: auto;
        width: 100%;
        max-width: 300px;
        padding: 0;
        margin: auto;
        left: 8px;
        position: relative;
    }

    .ec20.leaders .leader-cards .card p {
        position: relative;
        transform: none !important;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .ec20.leaders .leader-cards .card p:before {
        display: none;
    }

    .ec20.leaders {
        position: relative;
        padding-top: 0px;
        top: -40px;
    }

    .ec20.leaders .leader-cards,
    .ec20.difference .mobile.flex {
        padding: 0px;
        margin: 40px auto 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        --webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 20px;
        justify-content: flex-start;
        align-items: center;
    }

    .ec20.leaders .leader-cards .card:active {
        transform: scale(0.98) !important;
    }

    /* Custom scrollbar styling */
    .ec20.leaders .leader-cards::-webkit-scrollbar {
        height: 6px;
    }

    .ec20.leaders .leader-cards::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .ec20.leaders .leader-cards::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    .ec20.leaders .leader-cards::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .ec20.difference .mobile.flex::-webkit-scrollbar {
        height: 6px;
    }

    .ec20.difference .mobile.flex::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .ec20.difference .mobile.flex::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    .ec20.difference .mobile.flex::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .ec20.milestone .sysadmin.non-mobile,
    .ec20.newspaper .non-mobile,
    .ec20.industries .non-mobile,
    .ec20.difference .non-mobile {
        display: none;
    }

    .ec20.newspaper .mobile,
    .ec20.industries .mobile,
    .ec20.difference .mobile {
        display: block;
    }

    .ec20.difference .mobile.flex {
        display: flex;
        gap: 15px;
        align-items: stretch;
        justify-content: flex-start;
        text-align: left;
        overflow: scroll;
        margin-left: 20px;
    }

    .ec20.difference .mobile.flex .industry-box {
        border-radius: 8px;
        background: #F1F3FE;
        padding: 30px;
        min-width: 200px !important;
        margin: 0 0 20px;
    }

    .ec20.difference .mobile.flex .industry-box:nth-child(1) {
        /* margin-left: 50px; */
    }

    .ec20.difference .mobile.flex .industry-box img {
        margin: 0 0 8px;
        width: 32px;
        height: 32px;
    }

    .ec20.difference .mobile.flex .industry-box h3 {
        text-align: left;
        margin: 0px;
        font-size: 34px;
    }

    .ec20.difference .mobile.flex .industry-box p {


        /* 15px */
        margin: 0px;
        font-size: 20px;
        font-weight: 300;
        line-height: 150%;
    }

    .ec20.difference h3 {
        color: #231F20;
        text-align: center;
        font-size: 30px;
        font-weight: 600;
        line-height: 120%;
        /* 24px */
        margin: 0 20px 30px;
    }

    .ec20.difference .mobile h3 {
        background: linear-gradient(112deg, #035BE3 7.42%, #1603C6 71.35%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .ec20.industries h2 {
        z-index: 2;
        padding: 30px 0 0px;
        font-size: 24px;
        top: 0px;
    }

    .ec20.industries .mobile {
        position: relative;
        top: -89px;
    }

    .ec20.industries {
        background-color: transparent;
        padding: 0px;
    }



    .ec20.milestone .sysadmin.mobile {
        display: block;
        padding: 0px 0px 20px;
    }

    .ec20.milestone {
        height: auto;
        padding: 40px 20px;
    }

    .ec20.milestone .mobile-milestone-step {
        display: block;
        margin-bottom: 40px;
        opacity: 1;
    }

    .ec20.milestone .mobile-milestone-step[data-step="1"] .agent-image {
        height: 130px;
    }

    .ec20.milestone .mobile-milestone-step .step-header {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        padding: 8px 0;
        background-image: url(images/year-bg.svg);
        background-size: 79% 100%;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto 20px;
        width: 200px;
        height: 35px;
        line-height: 32px;
    }

    .ec20.milestone .mobile-milestone-step .sysadmin-image {
        width: 100%;
        height: 200px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 10px;
    }

    .ec20.milestone .mobile-milestone-step .sysadmin-text {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        padding: 0px 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .ec20.milestone .mobile-milestone-step .sysadmin-text h3 {
        color: #c80100;
        border-color: #c80100;
        margin: 0 auto 20px;
    }

    .ec20.milestone .mobile-milestone-step .sysadmin-text ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ec20.milestone .mobile-milestone-step .sysadmin-text ul li {
        background-color: #ffffff8a;
        border: 1px solid #c80000;
        padding: 12px 16px;
        border-radius: 8px;
        margin: 10px 0px;
        font-size: 14px;
        line-height: 1.4;
        backdrop-filter: blur(20px);
    }

    .ec20.milestone .mobile-milestone-step .agent-text {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #6b9c0a;
        border-radius: 12px;
        padding: 20px;
        margin: 0px 20px 20px;
        position: relative;
    }

    .ec20.milestone .mobile-milestone-step .agent-text h3 {
        color: #6b9c0a;
        border-color: #6b9c0a;
    }

    .ec20.milestone .mobile-milestone-step .agent-image {
        width: 70%;
        height: 200px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: auto;
    }

    .ec20.milestone [data-item] {
        margin: 0px;
        transition: none;
        display: block;
        opacity: 1;
    }

    .ec20.milestone .mobile-milestone-step .agent-text:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 20px;
        height: 20px;
        border: 1px solid #6b9c0a;
        transform: rotate(45deg) translate(-96px, 110px);
        border-left: 0;
        border-top: 0;
        background: #fff;
    }

    .ec20.dashboard {
        height: 90vh;
    }

    .ec20.dashboard .slider {
        height: 50vh;
    }

    .ec20.dashboard .flex {
        height: 90vh;
    }

    .ec20.difference {
        padding: 80px 0px;
    }

    .ec20.hero {
        background-position: 0px 70dvh, 0px -120px;
        background-size: 100%, auto;
        height: 79dvh;
    }

    .ec20.how .how-container {
        padding: 0px;
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        height: 100dvh;
    }

    .ec20.how .how-container .how-number {
        position: relative;
        top: -240px;
        transform: none !important;
    }

    .ec20.how .how-container .how-stat.left.step1.animate-in {
        position: relative;
        left: -90px;
        top: 200px;
        transform: none;
    }

    .ec20.how .how-container .how-stat {
        min-width: 175px;
        width: 175px;
    }

    .ec20.how .how-container .how-stat.right.step1.animate-in {
        position: relative;
        right: -90px;
        width: 175px;
        top: -90px;
        transform: none;
    }

    .ec20.how .how-container .how-title.animate-in {
        top: -570px;
        position: relative;
        margin: 0px;
    }

    .ec20.how .how-container .how-text {
        font-size: 16px;
    }

    .ec20.how .how-container .how-stat .how-stat-text {
        font-size: 17px;
    }

    .ec20.how .how-container .how-stat.step2.animate-in {
        transform: translate(0px, 0px);
    }

    .ec20.how .how-container .how-stat.step2.animate-in.left {
        bottom: -497px;
        position: relative;
        left: -90px;
        transform: none;
    }

    .ec20.how .how-container .how-stat.step2.animate-in.right {
        position: relative;
        right: -90px;
        bottom: 125px;
        transform: none;
    }

    .ec20.how .scroll-down {
        bottom: -80px;
        display: none;
    }

    .ec20.hero .hero-image {
        top: -5%;
    }

    .ec20.how .arc-bg {
        top: 50px;
    }

    .ec20 h2 {
        font-size: 30px;
    }

    .ec20.dashboard h2 {
        padding: 20px 0 0px;
        max-width: 90%;
    }

    .ec20.dashboard .slider li:before {
        top: -50px;
    }

    .ec20.dashboard .slide-indicators {
        bottom: 30px;
    }

    .ec20.dashboard .scroll-down,
    .ec20.milestone .scroll-down {
        display: none;
    }

    .ec20.tribute .tribute-card p {
        font-family: "Zilla Slab", serif;
        font-weight: 200;
        font-style: normal;
        font-size: 22px;
        line-height: 32px;
        color: #000;
        margin: 0 0 30px;
    }

    .ec20.how .how-container .how-stat .how-stat-number {
        font-weight: 700;
        font-size: 40px;
    }

    .ec20.how .how-container .how-stat .how-stat-wrapper {
        margin: 0 0 54px;
    }

    .ec20.how .how-container .how-text.animate-in {
        position: relative;
        top: -550px;
        margin: 0px auto;
        font-size: 15px;
        padding: 20px;
        max-width: 85%;
        justify-content: center;
        width: fit-content;
        gap: 10px;
    }
    .ec20.how{
        margin-top: -220px;
    }
}