:root {
    --gap: 40px;
    --item-w: calc(50% - 20px); /* Width of each grid-cs item */
    --item-h: 320px; /* Height of each grid-cs item */
    --slot-w: calc(var(--item-w) + var(--gap));
    --slot-h: calc(var(--item-h) + var(--gap)); /* Slot height */
    --off-x: 220px;
    --dur: 700ms;
}
img{
  height: auto;
  width: auto;
}
.slider-grid-cs {
    position: relative;
    width: 100%;
    height: calc(var(--slot-h) * 2);
}
.cs-slider-new {
    padding: 50px 0;
}
.testimonial-card {
    width: 100%;
    height: 100%;
}
.name-sort {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    width: 100%;
    height: 100%;
    color: #fff;
    text-transform: uppercase;
}
.grid-cs-item {
    position: absolute;
    width: var(--item-w);
    height: var(--item-h); /* Use the height variable */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left var(--dur) cubic-bezier(0.2, 0.9, 0.2, 1), top var(--dur) cubic-bezier(0.2, 0.9, 0.2, 1), transform var(--dur) cubic-bezier(0.2, 0.9, 0.2, 1), opacity calc(var(--dur) / 1.5) ease;
    opacity: 1;
    will-change: left, top, transform, opacity;
}
.pos-cs-0 {
    top: 0;
    left: 0;
}
.pos-cs-1 {
    top: 0;
    left: calc(var(--slot-w));
}
.pos-cs-2 {
    top: calc(var(--slot-h));
    left: 0;
}
.pos-cs-3 {
    top: calc(var(--slot-h));
    left: calc(var(--slot-w));
}
.offscreen {
    transform: translateX(var(--off-x));
    opacity: 0;
}
.offscreen.in {
    transform: translateX(0);
    opacity: 1;
}
.exiting {
    transform: translateX(0);
    opacity: 1;
}
.exiting.out {
    transform: translateX(var(--off-x));
    opacity: 0;
}
.hidden {
    display: none !important;
}
.controls {
    margin-top: 18px;
    text-align: center;
}
button {
    padding: 8px 14px;
    font-size: 14px;
    margin: 0 6px;
    cursor: pointer;
}

/* CSS */
.heading-one {
    font-size: 46px;
    line-height: 1.2;
}
.title-main {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}
.sub-title {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
}
.title-main + .sub-title {
    margin-top: 12px;
}
.cs-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    border-radius: 20px;
    border: none;
    background: none;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
.cs-btn-pri {
    background: #1c1b1b;
    color: #fff;
}
.aspect-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.aspect-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.aspect-content img,
.aspect-content video,
.aspect-content iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}
.card-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #303030;
    flex: 1;
    margin-top: 15px;
}
.content-wrapper {
    margin-top: 50px;
}
section {
    padding: 70px 0;
}
.cs-new-member .btn.btn-primary {
    font-size: 20px;
    min-height: 60px;
}
/* Hero */
.hero .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
    align-items: center;
}
.hero .content .text-side .heading-one {
    line-height: 1.4;
}
.hero .content .text-side p {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
}
.hero .content .text-side .text {
    max-width: 570px;
}
.hero .content .text-side .btn {
    margin-top: 25px;
}
.hero .content .aspect-box {
    padding-bottom: 56.5%;
    border-radius: 17px;
}
/* Stats */
.stats {
    background: #001724;
    margin-top: 50px;
    color: #fff;
}
.stats .content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.stats .content .stats-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.stats .content .stats-block .value {
    font-size: 38px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.stats .content .stats-block .rating {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    width: 30px;
    height: 30px;
    display: inline-block;
    background: #fff;
    margin-left: 4px;
}
.stats .content .stats-block img {
    max-width: 100px;
}
/* Companies */
section.trusted-companies.featured-block {
    padding: 70px 0;
}
/* Success Stories */
.success .content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 26px;
}
.success-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 17px 17px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #dbdbdb;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 16%);
}
.success-card .aspect-box {
    padding-bottom: 72.99%;
    border-radius: 20px;
}
.success-card .card-title {
    margin-top: 25px;
}
.success-card .card-author {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    font-size: 13px;
    gap: 1px;
}
.success-card .card-author .upper {
    display: flex;
    gap: 7px;
}
.success-card .card-author .upper span {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}
.success-card .card-author .upper span.place {
    padding-left: 10px;
}
.success-card .card-author .upper span.place::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    top: 8px;
    left: 0;
}
.success .card-author .designation {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #303030;
}
/* Teachers */
section.teachers{
    padding-bottom: 0;
}
.teachers .aspect-box {
    padding-bottom: 150%;
}
.teachers .slick-list {
    margin: 0 -10px;
}
.teacher-card {
    border-radius: 20px;
    margin: 0 10px;
    overflow: hidden;
}
.teacher-card .text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    background-image: linear-gradient(to top, #000 50%, transparent 100%);
    text-align: center;
    bottom: 0;
    width: 100%;
}
.teacher-card .text .name {
    font-size: 48px;
    color: #fff;
}
.teacher-card .text p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-top: 15px;
}
.teacher-card .text .tags-wrapper {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.teacher-card .text .tags-wrapper .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-height: 30px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}
.teacher-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.teacher-slider .slick-dots li {
    display: flex;
}
.teacher-slider .slick-dots li:first-child:last-child {
    display: none;
}
.teacher-slider .slick-dots li button {
    font-size: 0;
    background: #ccc;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    padding: 0;
}
.teacher-slider .slick-dots li.slick-active button {
    background: #454545;
}
/* Skills */
.skills .content-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px 23px;
}
.skills-card {
    border: 1px solid #898585;
    border-radius: 20px;
    overflow: hidden;
}
.skills-card .aspect-box {
    padding-bottom: 73.53%;
}
.skills-card .card-content {
    padding: 34px 27px;
    border-top: 1px solid #898585;
    position: relative;
}
.skills-card .card-content .card-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skills-card .card-content .card-title span{
    font-size: 18px;
    font-weight: 700;
    background-color: var(--clr-pri);
    padding: 6px 15px;
    border-radius: 50px;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 0;
    right: 10px;
    align-items: center;
    display: flex;
    gap: 5px;
    transform: translateY(-50%);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
    border: 1px solid #d16400;
}
.skills-card .card-content .card-title span::after{
    content: 'Courses';
    font-size: 12px;
}
/* Community */
.community {
    background: #ecf4fc;
}
.community .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
}
.community .content-wrapper .text-side {
    display: flex;
    align-items: center;
}
.community .content-wrapper .image-side img {
    max-width: 700px;
}
/* Testimonials */
.testimonial-card {
    background: #ecf4fc;
    border-radius: 20px;
    padding: 27px 48px;
}
.testimonials .content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
}
.testimonial-card .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.testimonial-card .card-header .profile {
    flex: 0 0 94px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-card .card-header .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card .card-header .card-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.testimonial-card .card-header .card-author .name {
    font-size: 30px;
    font-weight: 600;
}
.testimonial-card .card-header .card-author .place {
    font-size: 20px;
    font-weight: 500;
}
.testimonial-card .card-header .card-author .place a {
    color: #9d9d9d;
}
.testimonial-card .card-body {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}
/* Membership */
.membership {
    background-color: #001724;
    color: #fff;
}
.membership .content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px 50px;
}
.membership .content ul {
    margin-top: 40px;
}
.membership .content .title-main + .sub-title {
    margin-top: 20px;
}
.membership .sub-title {
    font-weight: 600;
}
.membership .content ul li,
.community .content ul li {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(45deg, #003654, transparent, transparent);
    padding: 10px 10px 10px 48px;
    border-radius: 30px 0 0 30px;
}
.community .content ul li {
    background: linear-gradient(45deg, #9dc0e1, transparent 70%, transparent);
}
.membership .content ul li + li,
.community .content ul li + li {
    margin-top: 20px;
}
.membership .content ul li::before,
.community .content ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 4px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    left: 21px;
    top: calc(50% - 3px);
    transform: rotate(-45deg) translateY(-50%);
    z-index: 9;
}
.membership .content ul li::after,
.community .content ul li::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--clr-pri);
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.community .content ul li::after {
    background: #001724;
}
.membership .cards-wrapper {
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    gap: 25px;
}
.membership .cards-wrapper .price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #000;
    width: 240px;
    height: 295px;
    padding: 30px 10px;
    border-radius: 20px;
}
.membership .cards-wrapper .price-card .best {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    line-height: 1;
    padding: 7px 17px;
    border-radius: 50px;
    background: var(
    --clr-pri);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.membership .cards-wrapper .price-card .price-title {
    font-size: 20px;
    font-weight: 700;
}
.membership .cards-wrapper .price-card .price-value {
    font-weight: 700;
}
.membership .cards-wrapper .price-card .price-value sub {
    font-size: 0.4em;
    top: -10px;
    position: relative;
    color: #7b889c;
    letter-spacing: 0;
    font-weight: 600;
}
.membership .cards-wrapper .price-card p {
    font-size: 16px;
    font-weight: 700;
    color: #24a27a;
}
.membership .cards-wrapper .price-card .price-action {
    margin-top: auto;
}
.membership .cards-wrapper .price-card:nth-child(1) {
    background: #fcfcfc;
    border: 1px solid #cdcdcd;
}
.membership .cards-wrapper .price-card:nth-child(2) {
    background: #fff5ea;
    border: 1px solid #faa561;
    box-shadow: 0 0 15px #faa56180;
}
.membership .cards-wrapper .price-card:nth-child(1) .price-value {
    font-size: 56px;
}
.membership .cards-wrapper .price-card:nth-child(2) .price-value {
    font-size: 58px;
}
.trial {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 65px;
    border-radius: 20px;
    background: #ecf4fc;
    border: 1px solid #c9dcef;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
.trial .image-side {
    flex: 0 0 250px;
    max-width: 250px;
}
.trial p {
    font-size: 24px;
    font-weight: 500;
    margin-top: 15px;
    line-height: 1.5;
}
/* FAQs */
.faq .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 33px;
}
.faq-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 43px 30px;
    box-shadow: 4px 4px 4px rgb(0 0 0 / 16%);
    border: 1px solid #dbdbdb;
}
.faq-card .title {
    font-size: 28px;
    font-weight: 600;
}
.faq-card .value {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.5;
}
/* CTA */
.cta {
    background: #ecf4fc;
    padding: 108px 0 84px;
}
.cta .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cta .content .heading-one {
    max-width: 900px;
}
.cta .content .sub-title {
    margin-top: 25px;
}
.cta .content .btn {
    margin-top: 40px;
}

.full-review-inner {
    padding: 55px 30px 30px;
}
.full-review-img {
    overflow: hidden;
    background: #fff;
    box-shadow: -1px 3px 6px #d5d5d5;
}
.reviewer-name {
    text-align: left;
}
.cs-readmore-btn {
    font-size: 17px;
    text-transform: capitalize;
    padding: 5px;
    line-height: 1;
}
/* update */

@media screen and (max-width: 1600px) {
    .heading-one {
        font-size: 42px;
    }
    .title-main {
        font-size: 38px;
    }
    .sub-title {
        font-size: 24px;
    }
    .card-desc {
        font-size: 18px;
    }
    .content-wrapper {
        margin-top: 40px;
    }
    section {
        padding: 60px 0;
    }
    .stats {
        margin-top: 40px;
    }
    .hero .content .text-side .text {
        max-width: 550px;
    }
    .hero .content .text-side .heading-one {
        line-height: 1.3;
    }
    .hero .content .text-side p {
        font-size: 24px;
    }
    .stats .content .stats-block .value {
        font-size: 36px;
    }
    .stats .content .stats-block .rating {
        width: 28px;
        height: 28px;
    }
    section.trusted-companies.featured-block {
        padding: 60px 0;
    }
    .teacher-card .text .name {
        font-size: 44px;
    }
    .testimonial-card .card-header .profile {
        flex: 0 0 88px;
        width: 88px;
        height: 88px;
    }
    .testimonial-card .card-header .card-author .name {
        font-size: 26px;
    }
    .testimonial-card .card-header .card-author .place {
        font-size: 18px;
    }
    .testimonial-card .card-body {
        margin-top: 20px;
        font-size: 19px;
    }
    .trial p {
        font-size: 22px;
    }
    .faq-card {
        padding: 35px 30px;
    }
    .faq-card .title {
        font-size: 26px;
    }
    .faq-card .value {
        font-size: 20px;
    }
    .cta {
        padding: 95px 0 75px;
    }
    .membership .content ul li, .community .content ul li {
        font-size: 22px; 
    }
    /* .membership .content ul li::before, .community .content ul li::before {
        top: 19px;
    }
    .membership .content ul li::after, .community .content ul li::after {
        top: 11px;
    } */
    .cs-new-member .btn.btn-primary {
        font-size: 18px;
        min-height: 54px;
    }
}
@media screen and (max-width: 1440px) {
    .heading-one {
        font-size: 40px;
    }
    .title-main {
        font-size: 36px;
    }
    section {
        padding: 50px 0;
    }
    .stats {
        margin-top: 30px;
    }
    .hero .content .text-side .text {
        max-width: 500px;
    }
    .stats .content .stats-block .value {
        font-size: 34px;
    }
    .stats .content .stats-block .rating {
        width: 26px;
        height: 26px;
    }
    section.trusted-companies.featured-block {
        padding: 50px 0;
    }
    .teacher-card .text .name {
        font-size: 40px;
    }
    .teacher-card .text {
        padding: 20px 10px;
    }
    .teacher-card .text .tags-wrapper .tag {
        min-height: 25px;
    }
    .trial {
        padding: 45px;
    }
    .trial .image-side {
        flex: 0 0 220px;
        max-width: 220px;
    }
    .faq-card {
        padding: 33px 25px;
    }
    .faq-card .title {
        font-size: 24px;
    }
    .faq-card .value {
        font-size: 19px;
    }
    .membership .content ul li, .community .content ul li {
        font-size: 20px;
    }
}
@media screen and (max-width: 1280px) {
    .heading-one {
        font-size: 36px;
    }
    .title-main {
        font-size: 32px;
    }
    .sub-title {
        font-size: 22px;
    }
    .card-title {
        font-size: 20px;
    }
    .card-desc {
        font-size: 16px;
    }
    section {
        padding: 40px 0;
    }
    .stats {
        margin-top: 40px;
    }
    .hero .content .text-side p {
        font-size: 22px;
        margin-top: 16px;
    }
    .hero .content .text-side .btn {
        margin-top: 20px;
    }
    .stats .content .stats-block .value {
        font-size: 30px;
    }
    .stats .content .stats-block .rating {
        width: 26px;
        height: 26px;
    }
    section.trusted-companies.featured-block {
        padding: 40px 0;
    }
    .teacher-card .text .name {
        font-size: 36px;
    }
    .skills .content-wrapper {
        gap: 25px;
    }
    .skills-card .card-content {
        padding: 22px 20px;
        border-top: 1px solid #898585;
    }
    .testimonials .content-wrapper {
        gap: 20px;
    }
    .testimonial-card {
        padding: 28px;
    }
    .testimonial-card .card-header .profile {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }
    .testimonial-card .card-header .card-author .name {
        font-size: 24px;
    }
    .testimonial-card .card-body {
        margin-top: 20px;
        font-size: 18px;
    }
    .membership .content ul li, .community .content ul li {
        font-size: 19px;
    }
    /* .membership .content ul li::before, .community .content ul li::before {
        top: 17px;
    }
    .membership .content ul li::after, .community .content ul li::after {
        top: 9px;
    } */
    .membership .content {
        gap: 30px 20px;
    }
    .membership .cards-wrapper {
        padding: 36px 30px;
    }
    .membership .cards-wrapper .price-card .best {
        font-size: 11px;
    }
    .membership .cards-wrapper .price-card .price-title {
        font-size: 18px;
    }
    .membership .cards-wrapper .price-card:nth-child(1) .price-value {
        font-size: 52px;
    }
    .membership .cards-wrapper .price-card:nth-child(2) .price-value {
        font-size: 54px;
    }
    .community .content-wrapper .image-side img {
        max-width: 520px;
    }
}
@media screen and (max-width: 1024px) {
    .sub-title {
        font-size: 20px;
    }
    .card-title {
        font-size: 18px;
    }
    .card-desc {
        margin-top: 10px;
    }
    .content-wrapper {
        margin-top: 30px;
    }
    .stats .content .stats-block .value {
        font-size: 28px;
    }
    .stats .content .stats-block .rating {
        width: 24px;
        height: 24px;
    }
    .skills .content-wrapper {
        gap: 30px 15px;
    }
    .teacher-card .text .name {
        font-size: 32px;
    }
    .teacher-slider .slick-dots {
        margin-top: 25px;
    }
    .teacher-slider .slick-dots li button {
        width: 12px;
        min-width: 12px;
        min-height: 12px;
        height: 12px;
    }
    .testimonial-card {
        padding: 22px;
    }
    .testimonial-card .card-header {
        gap: 12px;
    }
    .testimonial-card .card-header .profile {
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
    }
    .testimonial-card .card-header .card-author .name {
        font-size: 22px;
    }
    .testimonial-card .card-header .card-author .place {
        font-size: 16px;
    }
    .testimonial-card .card-body {
        margin-top: 15px;
        font-size: 17px;
    }
    .trial {
        padding: 35px;
    }
    .trial .image-side {
        flex: 0 0 220px;
        max-width: 220px;
    }
    .trial p {
        font-size: 20px;
    }
    .faq .content-wrapper {
        gap: 20px;
    }
    .success-card .card-author .upper span {
        font-size: 16px;
    }
    .success .card-author .designation {
        font-size: 15px;
    }
    .membership .content {
        grid-template-columns: 1fr;
    }
    .membership .cards-wrapper {
        max-width: max-content;
        margin: 0 auto;
    }
    .community .content-wrapper {
        gap: 23px 0;
    }
    .community .content-wrapper .image-side img {
        max-width: 420px;
    }
}
@media screen and (max-width: 950px) {
    .hero .content {
        grid-template-columns: 1fr;
    }
    .hero .content .text-side .text {
        max-width: 670px;
    }
    .stats .content .stats-block .value {
        font-size: 26px;
    }
    .stats .content .stats-block .title {
        font-size: 15px;
    }
    .success .content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .skills .content-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-card .title {
        font-size: 22px;
    }
    .faq-card .value {
        font-size: 18px;
    }
    .cta {
        padding: 75px 0;
    }
}
@media screen and (max-width: 767px) {
    .heading-one {
        font-size: 32px;
    }
    .title-main {
        font-size: 28px;
    }
    .title-main + .sub-title {
        margin-top: 8px;
    }
    .stats .content .stats-block .value {
        font-size: 24px;
    }
    .success-card .card-title {
        margin-top: 15px;
    }
    .success-card .card-author {
        margin-top: 20px;
    }
    .skills-card .card-content {
        padding: 15px;
    }
    .teacher-card .text .name {
        font-size: 30px;
    }
    .testimonial-card .card-header {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonial-card .card-header .card-author .name {
        font-size: 20px;
    }
    .membership .content ul li,
    .community .content ul li {
        font-size: 18px;
    }
    .community .content-wrapper {
        grid-template-columns: 1fr;
    }
    .community .content-wrapper .image-side img {
        /* max-width: 500px; */
        max-width: clamp(0px, 500px, 100%);
    }
    .trial {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .trial .image-side {
        flex: unset;
        max-width: unset;
    }
    .trial .image-side img {
        max-width: 200px;
    }
    .trial p {
        font-size: 18px;
        margin-top: 10px;
    }
    .faq-card {
        padding: 20px;
    }
    .faq-card .title {
        font-size: 20px;
    }
    .faq-card .value {
        font-size: 17px;
    }
    .cta {
        padding: 55px 0;
    }
    .cta .content .btn {
        margin-top: 30px;
    }
    .skills-card .card-content .card-title span{
        transform: translateY(calc(-1 * 100% - 10px));
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    .heading-one {
        font-size: 28px;
    }
    .title-main {
        font-size: 26px;
    }
    .sub-title {
        font-size: 16px;
    }
    .success .content-wrapper,
    .skills .content-wrapper,
    .testimonials .content-wrapper,
    .faq .content-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    section.stats {
        padding: 30px 0;
    }
    .stats .content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .stats .content .stats-block {
        padding: 18px 10px;
    }
    .stats .content .stats-block:nth-child(odd) {
        border-right: 2px solid #3f3f3f;
    }
    .stats .content .stats-block:nth-child(1),
    .stats .content .stats-block:nth-child(2) {
        border-bottom: 2px solid #3f3f3f;
    }
    .skills-card .card-desc {
        margin-top: 7px;
    }
    .teacher-card .text .name {
        font-size: 28px;
    }
    .testimonial-card .card-header {
        flex-direction: row;
        align-items: center;
    }
    .membership .content ul {
        margin-top: 30px;
    }
    .membership .content ul li,
    .community .content ul li {
        font-size: 17px;
    }
    .faq-card .title {
        font-size: 18px;
    }
    .faq-card .value {
        font-size: 16px;
        margin-top: 5px;
    }
    .cta {
        padding: 45px 0;
    }
    .trial .image-side img {
        max-width: 180px;
    }
    .membership .cards-wrapper {
        gap: 10px;
        padding: 24px 14px;
    }
    .membership .cards-wrapper .price-card {
        width: 210px;
    }
    .membership .cards-wrapper .price-card:nth-child(1) .price-value {
        font-size: 48px;
    }
    .membership .cards-wrapper .price-card:nth-child(2) .price-value {
        font-size: 50px;
    }
}
@media screen and (max-width: 500px) {
    .membership .cards-wrapper {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        margin: unset;
        align-items: center;
        padding: 30px;
    }
    .membership .cards-wrapper .price-card {
        width: 100%;
        height: unset;
        min-height: 220px;
    }
    .membership .cards-wrapper .price-card:nth-child(2) {
        margin-left: 0;
    }
}
@media screen and (max-width: 400px) {
    .heading-one {
        font-size: 26px;
    }
    .title-main {
        font-size: 24px;
    }
    .hero .content .text-side p {
        font-size: 17px;
        margin-top: 12px;
    }
    .hero .content .text-side .btn {
        margin-top: 15px;
    }
    .skills-card .aspect-box {
        padding-bottom: 53.53%;
    }
}