.home_banner {
    background-color: #E6E7FD;
    overflow: hidden;
    /* padding-top: 30px; */
}

.home_banner .box_wrap:nth-of-type(1) {
    max-width: 804px;
    padding-top: 50px;
    padding-bottom: 85px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.homeBanner .slick-slide h1,
.homeBanner .slick-slide p,
.homeBanner .slick-slide .bbtn,
.homeBanner .slick-slide .box_wrap figure img {
    opacity: 0;
    visibility: hidden;
}

.lottie-hmbanner svg {
    height: 400px !important;
    width: 570px !important;
}

@keyframes zoom-out-down-cus {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, -100px, 0) scale(1.2);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0) scale(1);
    }
}


@keyframes zoom-in-cus {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
}

.homeBanner .slick-slide.slick-active .box_wrap figure img {
    animation: zoom-in-cus 0.9s ease forwards;
}

.homeBanner .slick-slide.slick-active h1,
.homeBanner .slick-slide.slick-active p,
.homeBanner .slick-slide.slick-active .bbtn {
    animation: zoom-out-down-cus 0.5s ease forwards;
}

.homeBanner .slick-slide.slick-active p {
    animation-delay: 0.2s;
}

.homeBanner .slick-slide.slick-active .bbtn {
    animation-delay: 0.3s;
}

.btn-join {
    min-width: 200px;
}

.explore_journey {
    padding: 40px 0;
}

.unlock_potential {
    background-image: url('../images_new/home/potential-bg.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    background-color: var(--purple200);
    overflow: hidden;
}

.unlock_potential .card {
    max-width: 270px;
    margin: 0 auto;
}

.unlock_potential .card .know_more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
}

.unlock_potential .card p {
    min-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.explore_grid {
    display: flex;
    gap: 20px;
}

.card_container {
    display: flex;
    gap: 20px;
    width: 50%;
}

.card_container .item {
    position: relative;
    flex: 1;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    color: var(--white);
    transition: flex 0.5s ease-in-out;
    padding: 24px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 360px;
}

.card_container .item button {
    min-width: 104px;
}

.card_container .item>img {
    position: absolute;
    transition: transform 0.5s ease;
    bottom: 0;
    max-width: 185px;
}

.card_container .item>img.studt {
    max-width: 255px;
}

.card_container .item:nth-of-type(1)>img {
    right: 50%;
    transform: translateX(50%);
}

.card_container .item:nth-of-type(2)>img {
    left: 50%;
    transform: translateX(-50%);
}

.card_container .item:nth-of-type(1)>img {
    right: 50%;
    transform: translateX(50%);
}

.card_container .box1 {
    width: 220px;
    position: absolute;
    transition: transform 0.5s ease;
    z-index: 1;
}

.card_container .item:nth-of-type(1) .box1 {
    left: 50%;
    transform: translateX(-50%);
}

.card_container .item:nth-of-type(2) .box1 {
    right: 50%;
    transform: translateX(50%);
}

.card_container .description {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
}

.card_container .item:nth-of-type(1) {
    /* background-color: #4BAE4F; */
    background-image: url('../images_new/home/teacher-bg.svg');
}

.card_container .item:nth-of-type(2) {
    background-image: url('../images_new/home/student-bg.svg');
    /* background-color: #2F327D; */
    background-size: cover;
}

.card_container .item:nth-of-type(1):hover {
    background-image: url('../images_new/home/teacher-bg-hover.svg');
    flex: 2;
}

.card_container .item:nth-of-type(2):hover {
    background-image: url('../images_new/home/student-bg-hover.svg');
    flex: 2;
    background-size: cover;
}

.card_container .item:nth-of-type(1):hover .description {
    opacity: 1;
    max-height: 120px;
    margin-bottom: 10px;
    margin-top: -5px;
}

.card_container .item:nth-of-type(2):hover .description {
    opacity: 1;
    max-height: 120px;
    margin-bottom: 10px;
    margin-top: -5px;
}

.card_container .item:nth-of-type(1):hover .box1 {
    right: 0;
    transform: translateX(0);
    padding-right: 20px;
}

.card_container .item:nth-of-type(2):hover .box1 {
    left: 0;
    transform: translateX(0);
    padding-left: 20px;
}

.card_container .item:nth-of-type(1):hover>img {
    left: 0;
    transform: translateX(0) translateY(-30px) scale(1.5);
}

.card_container .item:nth-of-type(2):hover>img {
    right: 0;
    transform: translateX(10px) translateY(-30px) scale(1.5);
}

.info_card {
    width: 50%;
    /* background-color: var(--cream200); */
    background-image: url('../images_new/home/explore_the_journey.svg');
    background-repeat: no-repeat;
    color: var(--white);
    border-radius: 28px;
    padding: 40px 90px 40px 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.read-more {
    border: 0;
}

.educators_categories {
    overflow: hidden;
}


.slick-dots {
    bottom: 15px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    text-indent: -999px;
    opacity: 0.75;
    transition: background-color 0.3s, opacity 0.3s;
}

.slick-dots li.slick-active button {
    background-color: var(--primary);
    opacity: 1;
}

.slick-dots li button:hover {
    background-color: var(--primary);
    opacity: 1;
}

.hmstudy_list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hmstudy_list li::before {
    content: '';
    width: 8px;
    height: 8px;
    display: block;
    background: #f47920;
    border-radius: 50%;
}

.arrow_ani img {
    width: 70px;
    margin: 10px auto 0;
}

.shepherd-element {
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 500px !important;
    max-width: 100% !important;
}

.shepherd-arrow {
    display: none; /* Hide arrow if not needed */
}


/* <!--Walk In Tutorial--> */

.signin_dropdown .dropdown-menu-new.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: 100% !important;
    left: 0px !important;
    z-index: 10001 !important;
}

.shepherd-element.welcome_box {
    background: #fff;
}

/* .shepherd-element.transparent_box * {
    background: transparent !important;
} */

.shepherd-element.transparent_box .stepper {
    width: fit-content;
    position: absolute;
    bottom: 75px;
}

.shepherd-element.transparent_box .stepper-text {
    color: #111;
}

.circular-profile {
    width: 150px !important;
    height: 150px !important;
    position: absolute;
    top: 10px;
    left: 36%;
    background-color: transparent;
}

.circluar-profile .drop-down {
    margin: auto;
    display: flex;
    justify-content: center;
    background-color: transparent !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.circluar-profile .drop-down button {
    margin: auto !important;
}

.circular-profile .dropdown-menu-new {
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 200ms ease !important;
    z-index: 3 !important;
    right: -24px;
    box-shadow: none;
    background-color: transparent;
}

.circular-profile .dropdown-menu-new ul li:first-child a {
    background: #F47920;
    color: #fff;
}

.shepherd-element.transparent_box .shepherd-header {
    display: none;
}

.shepherd-element .transparent_title {
    color: #111;
    font-weight: 400;
    font-size: 30px;
    line-height: normal;
}

.shepherd-element .transparent_descrip {
    color: #111;
    font-size: 16px;
    line-height: normal;
    margin: 5px 0;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible {
    opacity: 0.8 !important;
}

.shepherd-header {
    border-bottom: 0;
    background: none !important;
    position: none !important;
    right: 0 !important;
}

.shepherd-content * {
    font-family: "Poppins" !important;
}

.shepherd-content {
    overflow: hidden !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.9) !important;
}

.shepherd-content .welcome_img {
    /* width: 155px;
    max-width: 155px; */
    display: block;
    margin: 0 auto 32px;
    height: 100px;
    border-radius: 100%;
}

.shepherd-content .shepherd_title {
    color: #111;
    font-size: 1.9rem;
    text-align: center;
    line-height: normal;
    font-weight: 500;
}

.shepherd-content .welcome_content {
    color: #111;
    font-size: 1.125rem;
    text-align: center;
    line-height: normal;
}

.shepherd-content,
.shepherd-footer {
    background: rgba(255, 255, 255, 0.0);
}
.shepherd-footer{
    padding: 0 !important;
    border-radius: 0 !important;
}

.welcome_box .shepherd-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.welcome_box .shepherd-footer {
    padding: 15px 0 30px !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-left: 0 !important;
}

.transparent_box .shephered-footer {
    margin-top: 20px;
}

.welcome_box .shepherd-footer .shephered-primary {
    margin: 0;
    font-size: 1rem;
    border-radius: 16px;
}

.welcome_box .shepherd-footer .shephered-secondary {
    border-color: var(--primary);
    margin-top: 0;
    justify-content: center;
    font-size: 1rem;
    border-radius: 16px;
    padding: 14px 20px;
}

.welcome_box .shepherd-button:not(:disabled):hover {
    color: hsla(0, 0%, 100%, 0.75);
    background: var(--primary) !important;
}

.welcome_box .shepherd-button .shepherd-secondary {
    font-size: 16px;
}

.transparent_box {
    padding: 50px !important;
    width: 500px !important;
    max-width: 100% !important;
    border-radius: 30px !important;
}
/* .transparent_box.darkBg{
    background: rgba(0, 0, 0, 0.8) !important;
} */
@media screen and (max-width: 768px){
    /* .transparent_box.darkBg_mobile{
        background: rgba(0, 0, 0, 0.8) !important;
    } */
    .transparent_box {
        padding: 20px !important;
        border-radius: 20px !important;
    }
    .shepherd-element.transparent_box .stepper {
        bottom: 45px;
    }
}

.transparent_box .shepherd-button {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.transparent_box .shepherd-button-secondary {
    background: rgba(255, 255, 255, 0.0) !important;
    color: #565656 !important;
    border: 2px solid rgba(244, 121, 32, 0.5) !important;
}

.transparent_box .shepherd-button-primary {
    background: rgba(255, 255, 255, 0.0) !important;
    color: #565656;
    border: 2px solid rgba(244, 121, 32, 0.5);
    width: 128px;
}
@media screen and (max-width: 767px){
    .transparent_box .shepherd-button-primary {
        width: auto;
    }
    .transparent_box .shepherd-button {
        padding: 10px 12px;
    }
}

.transparent_box .shepherd-button-secondary:hover {
    background: #F47920 !important;
    color: #fff !important;
}

.transparent_box .shepherd-button-primary:hover {
    color: #fff !important;
    background: #F47920 !important;
}

.shepherd-text {
    padding: 0 0 2rem 0 !important;
}

.shepherd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
}

/* <!--Walk In End Tutorial--> */


@media screen and (max-width: 1200px) {

    .gru_journey_img .upimg.img2 {
        right: -45px;
        bottom: -110px;
    }
}

@media screen and (max-width: 992px) {
    .explore_grid {
        flex-direction: column;
    }

    .card_container {
        width: 100%;
    }

    .info_card {
        width: 100%;
    }

    .unlock_potential .card {
        margin-top: 42px;
    }

    .home_banner .row {
        justify-content: center;
    }

    .home_banner .box_wrap:nth-of-type(1) {
        padding-bottom: 12px;
    }

}

@media screen and (max-width: 767px) {
    .info_card {
        padding: 30px 24px;
    }

    .card_container {
        flex-direction: column;
    }

    .card_container .item {
        min-height: 360px;
    }

    .card_container .item {
        width: 100%;
    }

    .card_container .item:nth-of-type(1):hover .box1 {
        transform: translateX(-40px);
    }

    .gru_journey_img {
        margin: 100px 0 130px;
        width: 100%;
    }

    .gru_journey_img .upimg.img2 {
        right: -3%;
        bottom: -140px;
        width: 154px;
        height: 168px;
    }

    .gru_journey_img .upimg.img1 {
        left: -10px;
        top: -120px;
        width: 105px;
        height: 138px;
    }

    .gru_journey_img .upimg.img2 {
        right: -3%;
        bottom: -100px;
        width: 105px;
        height: 118px;
    }

    .gurushala_journey {
        padding: 90px 10px 50px;
    }

    .gurushala_journey .rt p {
        font-size: 16px;
    }

    .home_banner .box_wrap:nth-of-type(1) {
        padding-bottom: 15px;
        /* padding-top: 20px; */
    }

    .unlock_potential {
        text-align: center;
    }

    .arrow_ani {
        right: -10px;
    }

    .ds_ar {
        left: -10px;
    }

    .homeBanner .slick-dots {
        left: auto;
        right: 0;
        bottom: 20px;
    }

    .unlock_potential .card p {
        min-height: auto;
        overflow: visible;
        -webkit-line-clamp: 12;
    }

    .lottie-hmbanner svg {
        height: 250px !important;
        width: 100% !important;
    }

    .card_container .item:nth-of-type(2):hover>img {
        transform: translateX(-30px) translateY(-30px) scale(1.26);
    }
}