.righttutor {
    padding: 20px 24px !important;
}

.herowords {
    color: var(--base-color);
    text-align: center;

    font-weight: 800 !important;
    line-height: 120%;
    /* 96px */
}

.shortText {
    color: var(--base-color);
    text-align: center;

    font-family: 'Alexandria Light';
    line-height: 150%;
    /* 33px */
}

.popularSubjects {
    color: var(--base-color);

    font-family: 'Alexandria Bold';
    line-height: normal;
}

.righttutorline {
    border-radius: 6px;
    border: 2px solid #2C5EFF;
    padding: 20px 24px !important;
}

.popularSubjectsDescription {
    color: var(--base-color);

    font-family: 'Alexandria Light';
    line-height: normal;
}

.TryforFree::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.20);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}


.TryforFree:hover::before {
    transform: translateX(100%);
    opacity: 1;
}

.TryforFree {
    position: relative;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}