@import url('https://fonts.googleapis.com/css2?family=Sora&display=swap');

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

.main-wrapper {
    font-family: "Sora", "sanserif";
}

.hero-body {
    display: flex;
    position: relative;
    justify-content: center;
    background-color: #101010;
    /* height: calc(100vh - 60px); */
    background-size: cover;
}

.innerbody {
    height: calc(100dvh - 60px);
    margin: 1rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.logo-img {
    max-width: 220px;
}

.hero-body p {
    margin: 0 auto;
    font-size: 18px;
    max-width: 90%;
    line-height: 1.625em;
    line-height: 2rem;
}

/* .join-button {
    border: 1px solid #e1c41f;
    color: #1d1d1d;
    background-color: #e1c41f;
    border-radius: 100px;
    padding: 0.75rem 5rem;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
    position: relative;
} */

/* .join-button:hover {
    background-color: white;
} */

.join-button {
    display: inline-block;
    /* padding: 0.9rem 1.8rem; */
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    border: 3px solid #e1c41f;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    border-radius: 2rem;
    padding: 0.5rem 5rem;
}

.join-button:hover{
    color:#ffffff;
    border: 3px solid #ffffff;
}

.join-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: #e1c41f; */
    /* background: #fcb404; */
    background: #e1c41f;
    /* background: linear-gradient(89deg, #cb0ce2, #ff006a); */
    transform: translateX(-100%);
    transition: all .3s;
    z-index: -1;
}

.join-button:hover::before {
    transform: translateX(0);
}

/* .join-button:hover {
    background-color: white;
    color: black;
} */

.hero-body h1 {
    /* color:#fcb404; */
    color: #f7de4e;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "dm serif display", Sans-serif !important;
    font-size: 3rem;
    font-weight: 700;
    /* line-height: 1.625em; */
    /* max-width: 72rem; */
    font-size: calc(16px + 2vw);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: .75rem;
}

.feature-icon-small {
    background: linear-gradient(#f35b5b, #ed5180);
    color: white;
}

.feature-icon-small {
    width: 3rem;
    height: 3rem;
}

.about {
    background: #f7f8fb;
    color: #535050;
    background-size: cover;

    .button {
        cursor: pointer;
        position: relative;
        padding: 10px 24px;
        font-size: 18px;
        color: #8a1bcd;
        border: 2px solid #8a1bcd;
        border-radius: 34px;
        background-color: transparent;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
        overflow: hidden;
    }

    .button::before {
        content: '';
        position: absolute;
        inset: 0;
        margin: auto;
        width: 50px;
        height: 50px;
        border-radius: inherit;
        scale: 0;
        z-index: -1;
        background-color: #8a1bcd;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    }

    .button:hover::before {
        scale: 4;
    }

    .button:hover {
        color: #ffffff;
        scale: 1.1;
        box-shadow: 0 0px 20px #c1a36266;
    }

    .button:active {
        scale: 1;
    }
}

.title-matter {
    color: #535050;
}

.aboutus-title {
    border-bottom: 3px solid #c5135d;
    text-align: center;
}

.text-line {
    overflow: hidden;
}

.sec-text {
    font-style: italic;
    font-size: 40px;
}

.text-line .text {
    position: relative;
    color: #ffcc00;
    font-size: 24px;
    font-weight: 600;
}

.text-line .first_text {
    color: #000000;
}

.sec-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: #fedfee; */
    border-left: 3px solid #870d7b;
    animation: animate 4s steps(12) infinite;
}

@keyframes animate {

    40%,
    60% {
        left: calc(100% + 4px);
    }

    100% {
        left: 0%;
    }
}

.resources-grid-wrapper {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 30px;
    display: flex;
}

.resources-grid-content {
    flex-flow: wrap;
    align-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin-top: 16px;
    display: flex;
}

.resources-grid {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
}

.collection-item {
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    border-radius: 20px;
    border: 1px solid rgb(143, 143, 143);
}

.resource-tile-container {
    cursor: pointer;
    background-image: linear-gradient(rgba(255, 255, 255, .7), rgba(251, 250, 255, .7));
    border-radius: 20px;
    flex-direction: column;
    width: 100%;
    height: 250px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.w-dyn-list a {
    background-color: transparent;
}

.resources-inner-shadow {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, .5), 0 15px 30px rgba(22, 13, 61, .04);
}

.resource-image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: center;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.resource-tile-bottom {
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    display: flex;
}

.resource-tile-bottom>div>div {
    font-size: 10px;
    font-weight: 700;
}

.resource-tile-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    display: flex;
}

.text__tool-tile-heading {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 20px;
}

.resource-description {
    color: rgba(22, 13, 61, .85);
    font-size: 15px;
    line-height: 140%;
}

.resource-tile-categories {
    justify-content: space-between;
    align-self: stretch;
    height: 76px;
    display: flex;
}

.w-dyn-list .tag {
    letter-spacing: .4px;
    text-transform: uppercase;
    background-color: rgba(225, 237, 251, .5);
    border-radius: 20px;
    align-self: flex-start;
    height: auto;
    /* margin-top: 24px; */
    margin-top: 12px;
    margin-left: 24px;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    display: block;
    position: relative;
}

.resource-image img {
    border-radius: 5px;
    max-width: 100%;
    display: inline-block;
}

.slider_process {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide_process.active_process {
    transform: rotateY(360deg);
}

.slide-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}

.slide-Title {
    text-align: center;
    color: white;
}

.slider_process {
    margin: 1.5rem 0;
    height: 260px;
    display: block;
    perspective: 1000px;
    position: relative;
    /*width: 100vw;*/
}

.slide_process {
    margin-left: -50px;
    display: inline-block;
    width: 400px;
    position: absolute;
    backface-visibility: hidden;
    transition: .4s all;
    border-radius: 20px;
    color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    border: double 1px transparent;
    border-radius: 30px;
    background-image:
        linear-gradient(to right, #661dee73, #009dff75);
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: transform 1s ease-in-out;
}

.slide-container {
    padding: 20px 30px;
    /* height: 250px; */
    height: 230px;
    /* width: 250px; */
    display: flex;
    flex-direction: column;
}

.slide_process.active_process {
    z-index: 4;
}

.slide-Title {
    text-align: center;
}

.padLR-10 strong {
    background: linear-gradient(132deg, #ee2c3c 14.58%, #c5135d 65.1%, #6a11b0);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.testimonials {
    background: #191d28;
}

.testimonials-section {
    width: 100%;
    padding: 15px 8%;
}

.testimonials-section .section-header {
    max-width: 700px;
    text-align: center;
    margin: 5px auto 0px;
}

.section-header h1 {
    position: relative;
    font-size: 36px;
    color: #d7bc1e;
    margin-bottom: 0rem;
}

.testimonials-container {
    position: relative;
}

.testimonials-container .testimonial-card {
    padding: 5px;
}

.testimonial-card .test-card-body {
    background-color: #161922;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.12);
    padding: 20px;
    border-radius: 20px;
    height: 230px;
}

.test-card-body .quote {
    display: flex;
    align-items: center;
}

.test-card-body .quote i {
    font-size: 45px;
    color: #dadada;
    margin-right: 15px;
}

.test-card-body .quote h2 {
    color: #dadada;
}

.test-card-body p {
    margin: 10px 0px 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #767a86;
}

.test-card-body .ratings {
    margin-top: 20px;
}

.test-card-body .ratings i {
    font-size: 17px;
    color: #d7bc1e;
    cursor: pointer;
}

.testimonial-card .profile {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.owl-nav {
    position: absolute;
    right: 20px;
    bottom: -10px;
}

.owl-nav button {
    border-radius: 50% !important;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
    padding: 10px !important;
    border-radius: 50%;
    font-size: 18px !important;
    background-color: #161922 !important;
    color: #d7bc1e;
    cursor: pointer;
    transition: 0.4s;
    border: 1px solid #d7bc1e;
}

.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover {
    background-color: #d7bc1e !important;
    color: #161922;
    border: 1px solid #161922;

}

.owl-dots {
    margin-top: 15px;
}

.owl-dots .owl-dot span {
    background-color: #434753 !important;
    padding: 6px !important;
}

.owl-dot.active span {
    background-color: #d7bc1e !important;
}

.counter-inner {
    background: #276f6b;
    padding: 50px 50px 30px 50px;
    border-radius: 35px;
    position: relative;
}

.counter-wrap .counter-item {
    text-align: center;
}

.counter-wrap .counter-inner .row {
    --bs-gutter-y: 3rem !important;
}

.counter-wrap .counter-item i {
    font-size: 50px;
    color: #eeda00;
    height: 50px;
    width: 50px;
}

.counter-wrap .counter-item .counter {
    font-size: 50px;
    margin: 15px 0px 15px 30px;
    display: inline-block;
    color: #fff;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
}

.counter-wrap .counter-item p {
    font-size: 17px;
    margin-bottom: 0px;
    color: #ffda00;
    font-family: "roboto", sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

.plus-symbol {
    font-size: 50px;
    color: white;
}

.counter-wrap {
    margin-top: 2rem;
}

.numbers {
    font-size: 50px;
}

.scroller {
    max-width: auto;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.tag-list li {
    padding: 1rem;
    background: var(#ffffff);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem -0.25rem var(#0f151f);
}

.scroller__inner img {
    max-width: 150px;
}

.enroll {
    background: none;
}

.enroll .tit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
    gap: 0.25rem;
    margin: 1.5rem 0rem 1rem 0rem;
    color: #000000;
    border-radius: 15px;
    padding: 2rem 2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: 90% 75%;
}

.enroll p {
    /* font-size: 40px; */
    font-size: 30px;
}

.enroll i {
    transform: rotate(-45deg);
}

.enroll .btn {
    padding: 1rem 2rem;
    max-width: 60%;
    font-size: 1.25rem;
    border-radius: 2rem;
}

@media (min-width:1400px) {
    .innerbody {
        height: calc(100vh - 60px);
        margin: 1rem 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        margin-top: 2%;
    }

    .resources-grid-content {
        margin-left: 6vw;
        margin-right: 6vw;
    }
}

@media (max-width: 1400px) {
    .about h4 {
        font-size: 1.25rem;
        color: black;
    }

    .enroll p {
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:768px) {
    .logo-img {
        max-width: 200px;
        /* margin-top: 2%; */
    }

    .innerbody {
        height: calc(100vh - 55px);
        margin: 1rem 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        margin-top: 2%;
    }

    .join-button {
        margin-top: 2rem;
    }

    .hero-body p {
        margin: 0 auto;
        font-size: 17px;
        max-width: 90%;
        line-height: 1.625rem;
    }
}

@media (max-width:768px) {
    .non-mobile-items {
        display: none;
    }

    .enroll {
        margin: 0rem 1rem;
    }

    .enroll .btn {
        max-width: 100%;
    }

    .counter-inner {
        margin: 0rem 1rem;
        padding: 50px 10px 30px 10px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        grid-column-gap: 20px;
    }

    .resources-grid-content {
        margin-left: 6vw;
        margin-right: 6vw;
    }

    .review-header {
        font-size: 18px;
    }

    .test-card-body .quote i {
        font-size: 28px;
    }
}

@media (max-width:576px) {
    .logo-img {
        max-width: 170px;
    }

    .innerbody {
        height: calc(100vh - 60px);
        margin: 1rem 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-body p {
        margin: 0 auto;
        font-size: 16px;
        max-width: 95%;
        line-height: 1.5em;
    }

    .join-button {
        margin: 1rem 0rem 0.25rem 0rem;
    }

    .section-header h1 {
        font-size: 29px;
    }

    .testimonial-card .test-card-body {
        height: 300px;
    }

    .slide-container {
        padding: 20px 10px;
    }

    .slide-Title {
        font-size: 24px;
    }
}