.es-wrapper {
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.es-track {
    display: flex;
    transition: transform 0.6s ease;
}

.es-slide {
    flex: 0 0 85%;
    background: #E5F1F2;
    border-radius: 12px;
    padding: 15px 30px;
    margin-right: 20px;
}

.es-inline {
    display: flex;
    align-items: center;
    gap: 20px;
}

.es-number {
    color: #FBAE24;
    font-family: "Montserrat", Sans-serif;
    font-size: 48px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.es-highlight {
    color: #79aab9;
}

.es-text {
    color: #000000;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.es-dots {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.es-dots span {
    width: 10px;
    height: 10px;
    background: #B5D1D8;
    border-radius: 50%;
    cursor: pointer;
}

.es-dots span.active {
    background: #FBAE24;
}

@media (max-width: 768px) {
    .es-slide {
        flex: 0 0 100%;
    }
    /*.es-inline {*/
    /*    flex-direction: column;*/
    /*    align-items: flex-start;*/
    /*}*/
    
    .es-dots{
        /*justify-content: center;*/
        margin-left: 5px;
    }
}