.home-hero-section {
    position: relative;
    background-color: var(--green-100);
    /*padding-block: 96px 48px;*/
    padding-block: 48px;
}

@media (min-width: 991.8px) {
    .home-hero-section {
        padding-block: 100px;
    }
}

@media (min-width: 1280px) {
    .home-hero-section {
        height: 886px;
    }
}

.home-hero-section .container-new {
    position: relative;
    min-height: 500px;
}

.home-hero-section .row-new {
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 1280px) {
    .home-hero-section .row-new {
        gap: 80px;
    }
}

.home-hero-section .text-wrapper {
    padding-inline: 24px;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 9;
    text-align: center;
}

@media (min-width: 991.8px) {
    .home-hero-section .text-wrapper {
        text-align: left;
    }
}

@media (min-width: 991.8px) {
    .home-hero-section .text-wrapper {
        width: 585px;
        flex-basis: 585px;
    }
}

.home-hero-section .text-wrapper > * {
    width: 100%;
    flex-basis: 100%;
}

.home-hero-section .text-wrapper .product-subtitle {
    background-color: var(--green-10);
    border-radius: 40px;
    padding: 6px 12px;
    margin-block: 0;
    display: block;
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}

@media (min-width: 575.8px) {
    .home-hero-section .text-wrapper .product-subtitle {
        display: inline-flex;
        width: auto;
        flex-basis: auto;
    }
}

.home-hero-section .text-wrapper .product-short-text {
    margin-block: 24px;
}

.home-hero-section .text-wrapper .product-short-text p {
    margin-bottom: 12px;
}

.home-hero-section .text-wrapper .product-short-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.home-hero-section .text-wrapper .product-short-text ul li {
    padding-left: 34px;
    position: relative;
    margin-bottom: 5px;
}

.home-hero-section .text-wrapper .product-short-text ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    mask: url('./images/check.svg') no-repeat center;
    -webkit-mask: url('./images/check.svg') no-repeat center;
    background-color: #00b290;
    background: contain;
}

.home-hero-section .text-wrapper .exam-start-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    gap: 10px;
    width: 100%;
    flex-basis: 100%;
    z-index: 20;
}

.home-hero-section .text-wrapper .exam-start-wrapper .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-hero-section .text-wrapper .exam-start-wrapper .btn.disabled:hover {
    background-color: var(--orange-10);
    color: var(--white);
}

.home-hero-section .text-wrapper .exam-select-value, .home-hero-section .text-wrapper .series-select-value {
    width: 100%;
    background-color: var(--green-30);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    font-size: 16px;
    line-height: 20px;
    color: var(--white);
    gap: 10px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration-line: none;
}

@media (min-width: 575.8px) {
    .home-hero-section .text-wrapper .exam-select-value, .home-hero-section .text-wrapper .series-select-value {
        width: 400px;
        padding: 18px 32px;
        font-size: 22px;
        line-height: 28px;
    }
}

.home-hero-section .text-wrapper .exam-select-value .icon, .home-hero-section .text-wrapper .series-select-value .icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-wrap: wrap;
    mask: url("./images/arrow-down.svg");
    -webkit-mask: url('./images/arrow-down.svg') no-repeat center;
    background-color: var(--white);
    background: contain;
}

.home-hero-section .text-wrapper .exam-select-value .text, .home-hero-section .text-wrapper .series-select-value .text {
    width: calc(100% - 36px);
}

.home-hero-section .text-wrapper .exam-select-value:hover, .home-hero-section .text-wrapper .series-select-value:hover, .home-hero-section .text-wrapper .exam-select-value.active, .home-hero-section .text-wrapper .series-select-value.active {
    background-color: var(--orange-10);
}

.home-hero-section .text-wrapper .series-wrapper {
    position: relative;
    flex: 1;
}

@media (max-width: 575.8px) {
    .home-hero-section .text-wrapper .series-wrapper {
        width: 100%;
        flex-basis: 100%;
    }
}

.home-hero-section .text-wrapper .exam-select-list {
    position: absolute;
    top: 70px;
    width: 100%;
    border: 1px solid var(--grey-30);
    border-radius: 16px;
    height: 350px;
    /* Fixed height */
    background-color: #fafafa;
    padding: 24px;
    flex-wrap: wrap;
    z-index: 2;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 0.4s, visibility 0.4s;
    /* Smooth transition */
    overflow-y: auto;
    /* Enable scrolling */
}

@media (max-width: 575.8px) {

    .home-hero-section .text-wrapper .exam-select-list {
        top: 55px;
    }
}

@media (max-width: 575.8px) {
    .home-hero-section .text-wrapper .exam-select-list {
        height: 300px;
    }
}

.home-hero-section .text-wrapper .exam-select-list .list-inner {
    display: block;
    z-index: 2;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    pointer-events: auto; /* Ensure the element is scrollable */
    width: 100%;
    height: 100%;
    padding-right: 10px;
}

.home-hero-section .text-wrapper .exam-select-list .list-inner::-webkit-scrollbar {
    width: 7px;
    /* Adjust width as needed */
    height: 7px;
    border-radius: 30px;
    padding-block: 30px;
}

.home-hero-section .text-wrapper .exam-select-list .list-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    /* Track color */
    border-radius: 10px;
    /* Rounded track */
    height: 30%;
    top: 5%;
    border: none;
}

.home-hero-section .text-wrapper .exam-select-list .list-inner::-webkit-scrollbar-thumb {
    background: var(--orange-10);
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Rounded scrollbar */
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    height: 10px;
}

.home-hero-section .text-wrapper .exam-select-list .list-inner .item {
    display: flex;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-block: 20px;
}

.home-hero-section .text-wrapper .exam-select-list .list-inner .exam-item {
    width: auto;
    text-decoration-line: none;
    color: var(--black);
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);

}

.home-hero-section .text-wrapper .exam-select-list .list-inner .exam-item.active {
    color: var(--orange-10);
}

@media (min-width: 767.8px) {
    .home-hero-section .text-wrapper .exam-select-list .list-inner .exam-item:hover {
        color: var(--orange-10);
    }
}

.home-hero-section .text-wrapper .exam-select-list .list-inner .exam-item.active {
    cursor: not-allowed;
}

.home-hero-section .text-wrapper .exam-select-list.active {
    opacity: 1;
    /* Visible */
    visibility: visible;
    /* Visible */
}

.home-hero-section .text-wrapper .exams-bottom-wrapper {
    /*display: none;
    */
    position: relative;
    overflow: hidden;
    height: 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    z-index: 9;
}

.home-hero-section .text-wrapper .exams-bottom-wrapper::-webkit-scrollbar {
    display: none;
}

.home-hero-section .text-wrapper .exams-bottom-wrapper.active {
    height: auto;
    overflow: inherit;
}

.home-hero-section .text-wrapper .exams-bottom-wrapper.active .holder {
    transform: translateY(0);
}

.home-hero-section .text-wrapper .exams-bottom-wrapper p {
    width: 100%;
    flex-basis: 100%;
    max-width: 400px;
    font-size: 22px;
    color: var(--black);
    text-align: center;
    margin-block: 10px;
}

.home-hero-section .text-wrapper .exams-bottom-wrapper p.hidden {
    display: none;
}

.home-hero-section .text-wrapper .exams-bottom-wrapper.next {
    margin-top: 20px;
}

.home-hero-section .text-wrapper .exams-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    gap: 10px;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.home-hero-section .text-wrapper .exams-wrapper .btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-hero-section .text-wrapper .exams-wrapper .btn.disabled:hover {
    background-color: var(--purple-10);
    color: var(--white);
}

.home-hero-section .text-wrapper .study-guide-list {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--grey-30);
    border-radius: 16px;
    height: 330px;
    display: none;
    background-color: #fafafa;
    padding: 24px;
    flex-wrap: wrap;
    z-index: 2;
    opacity: 0;
    transition: 0.4s all;
}

@media (max-width: 575.8px) {
    .home-hero-section .text-wrapper .study-guide-list {
        height: 300px;
    }
}

.home-hero-section .text-wrapper .study-guide-list .list-inner {
    display: block;
    z-index: 2;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding-right: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    pointer-events: auto; /* Ensure the element is scrollable */
}

.home-hero-section .text-wrapper .study-guide-list .list-inner::-webkit-scrollbar {
    width: 7px;
    /* Adjust width as needed */
    height: 7px;
    border-radius: 30px;
    padding-block: 30px;
}

.home-hero-section .text-wrapper .study-guide-list .list-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
    /* Track color */
    border-radius: 10px;
    /* Rounded track */
    height: 30%;
    top: 5%;
    border: none;
}

.home-hero-section .text-wrapper .study-guide-list .list-inner::-webkit-scrollbar-thumb {
    background: var(--orange-10);
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Rounded scrollbar */
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    height: 10px;
}

.home-hero-section .text-wrapper .study-guide-list .list-inner .item {
    display: flex;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-block: 20px;
}

.home-hero-section .text-wrapper .study-guide-list .list-inner .study-item {
    width: auto;
    text-decoration-line: none;
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
}

.home-hero-section .text-wrapper .study-guide-list .list-inner .study-item:hover, .home-hero-section .text-wrapper .study-guide-list .list-inner .study-item.active {
    color: var(--orange-10);
}

.home-hero-section .text-wrapper .study-guide-list .list-inner .study-item.active {
    cursor: not-allowed;
}

.home-hero-section .text-wrapper .study-guide-list.active .holder {
    transform: translateY(0);
}

.home-hero-section .text-wrapper .study-guide-list.active.visible {
    display: block;
    opacity: 1;
}

.home-hero-section .text-wrapper #start-study-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    gap: 10px;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    z-index: 2;
}

.home-hero-section .text-wrapper #start-study-wrapper::-webkit-scrollbar {
    display: none;
}

.home-hero-section .text-wrapper #start-study-wrapper.active {
    height: auto;
    overflow: inherit;
}

.home-hero-section .text-wrapper #start-study-wrapper p {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    font-size: 22px;
    color: var(--black);
    text-align: center;
    margin-block: 10px;
}

@media (min-width: 991.8px) {
    .home-hero-section .text-wrapper #start-study-wrapper p {
        max-width: 400px;
    }
}

.home-hero-section .text-wrapper #start-study-wrapper a {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 991.8px) {
    .home-hero-section .text-wrapper #start-study-wrapper a {
        max-width: 400px;
    }
}

.home-hero-section .text-wrapper #start-study-wrapper.active {
    height: auto;
}

.home-hero-section .text-wrapper #start-study-wrapper.active .holder {
    transform: translateY(0);
}

.home-hero-section .text-wrapper #series-button {
    display: flex;
}

@media (max-width: 575.8px) {
    .home-hero-section .text-wrapper .button-wrapper {
        width: 100%;
        flex-basis: 100%;
    }
}

.home-hero-section .text-wrapper #series-button.hidden {
    display: none;
}

.home-hero-section .text-wrapper #start-studying-button {
    font-size: 22px;
}

.home-hero-section .text-wrapper #series-button {
    padding: 15px 20px;
}

@media (min-width: 575.8px) {
    .home-hero-section .text-wrapper #series-button {
        padding: 23px 32px;
    }
}

.home-hero-section .text-wrapper .holder {
    display: block;
    width: 100%;
    transform: translateY(100%);
    transition: 1.2s all;
}

.home-hero-section .image-wrapper {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-inline: 24px;
}

@media (min-width: 991.8px) {
    .home-hero-section .image-wrapper {
        width: calc(100% - 665px);
        flex-basis: calc(100% - 665px);
    }
}

.home-hero-section .image-wrapper .founder-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero-section .image-wrapper .founder-inner img {
    aspect-ratio: 600 / 588; /* Maintain aspect ratio */
    width: 100%; /* Make the image responsive */
    height: auto; /* Allow height to adjust */
    display: block; /* Prevent inline spacing issues */
}

.home-hero-section .image-wrapper .founder-inner .teacher-info {
    max-width: 270px;
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 16px;
    display: inline-flex;
    margin-inline: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: -80px;
}

.home-hero-section .image-wrapper .founder-inner .teacher-info > * {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 0;
    text-align: center;
}

.home-hero-section .image-wrapper .founder-inner .teacher-info h4 {
    font-size: 20px;
}

.home-hero-section .image-wrapper .founder-inner .teacher-info .teacher-experience {
    font-size: 16px;
    line-height: 20px;
}

.home-hero-section .image-wrapper .founder-inner .teacher-info .teacher-position {
    font-size: 16px;
    line-height: 20px;
}

.home-hero-section .small-dot {
    position: absolute;
    z-index: 2;
    display: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
    /* Add color to make it visible */
}

@media (min-width: 991.8px) {
    .home-hero-section .small-dot {
        display: block;
    }
}

.home-hero-section .md-cir-animation {
    animation-name: md-circle-rotate;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.home-hero-section .md-cir-animation-2 {
    animation-name: md-circle-rotate-2;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.home-hero-section .orange-dot {
    background-color: #f37038;
}

.home-hero-section .purple-dot {
    background-color: #273269;
}

.home-hero-section .green-dot {
    background-color: #c9e265;
}

.home-hero-section .blue-dot {
    background-color: #6adcff;
}

.home-hero-section .dot-1 {
    top: -115px;
    left: 36px;
}

.home-hero-section .dot-2 {
    top: -89px;
    left: 293px;
}

.home-hero-section .dot-4 {
    top: 0;
    left: 796px;
}

.home-hero-section .dot-5 {
    top: -115px;
    right: 100px;
}

.home-hero-section .dot-6 {
    top: 0;
    right: 80px;
}

.home-hero-section .dot-7 {
    bottom: 60px;
    left: 15px;
}

.home-hero-section .dot-8 {
    bottom: 90px;
    left: 560px;
}

.home-hero-section .dot-9 {
    bottom: 70px;
    right: 15px;
}

.home-hero-section .trust-holder {
    margin-top: 40px;
    min-height: 28px;
}

@media (min-width: 767.8px) {
    .home-hero-section .trust-holder {
        margin-top: 80px;
    }
}

@keyframes md-circle-rotate {
    0% {
        transform: translate(0px, 25px);
    }
    12.5% {
        transform: translate(-20px, 15px);
    }
    25% {
        transform: translate(-25px, 0px);
    }
    37.5% {
        transform: translate(-20px, -15px);
    }
    50% {
        transform: translate(0px, -25px);
    }
    62.5% {
        transform: translate(20px, -15px);
    }
    75% {
        transform: translate(25px, 0px);
    }
    87.5% {
        transform: translate(20px, 15px);
    }
    100% {
        transform: translate(0px, 25px);
    }
}

@keyframes md-circle-rotate-2 {
    0% {
        transform: translate(0px, -25px);
        /* Opposite of 0% in original */
    }
    12.5% {
        transform: translate(20px, -15px);
        /* Opposite of -20px, 15px */
    }
    25% {
        transform: translate(25px, 0px);
        /* Opposite of -25px, 0px */
    }
    37.5% {
        transform: translate(20px, 15px);
        /* Opposite of -20px, -15px */
    }
    50% {
        transform: translate(0px, 25px);
        /* Opposite of 0px, -25px */
    }
    62.5% {
        transform: translate(-20px, 15px);
        /* Opposite of 20px, -15px */
    }
    75% {
        transform: translate(-25px, 0px);
        /* Opposite of 25px, 0px */
    }
    87.5% {
        transform: translate(-20px, -15px);
        /* Opposite of 20px, 15px */
    }
    100% {
        transform: translate(0px, -25px);
        /* Opposite of 0px, 25px */
    }
}

#editor .heroSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

#editor .heroPaginationSwiper {
    display: none;
}

#editor .product-hero-v2 .row-new {
    gap: 0;
}

.trust-holder {
    position: relative;
}

.iframe-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0);
    padding: 0;
    border-radius: 8px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--orange-10);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.home-hero-section .trustpilot-widget {
    display: none; /* Hide the widget initially */
}
