#content {
    width: 88% !important;
}

.hero-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2% 0;
}

.hero-title {
    font-size: 260%;
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: var(--black);
}

.title-gradient{
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.hero-subtitle {
    color: gray;
    font-size: 105%;
    font-weight: 400;
    margin: 1.5% 0 2.5% 0;
    text-align: center;
    max-width: 80%;
}

/* listings */

.sections-holder {
    margin: 2% auto;
}

.section-holder {
    margin-bottom: 6%;
}

.section-title {
    display: flex;
    align-items: baseline;
    font-size: 150%;
    font-weight: 600;
    margin: 0;
}

.section-subtitle {
    display: flex;
    align-items: center;
    margin: 4px 0 8px 0;
    font-size: 92%;
    font-weight: 400;
    color: gray;
}

.explore-btn {
    color: var(--black);
    margin-left: auto;
    cursor: pointer;
    font-weight: 600;
}

.listing-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1%;
}

.listing-row .profile-listing-holder {
    width: 24%;
    min-width: 245px;
}

/* listings end */

/* categories */

.category-listing-holder {
    cursor: pointer;
    position: relative;
    width: 24%;
    min-width: 200px;
}

.category-listing-img-holder {
    width: 100%;
    height: 185px;
    position: relative;
    border-radius: 9px;
    background-color: black;
    overflow: hidden;
}

.category-listing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(to top, rgb(0 0 0 / 5%) -25%, rgba(0, 0, 0, 1));
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.13, 1.02) 0s;
}

.category-listing-owner-holder {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
}

.category-listing-owner-name {
    display: flex;
    align-items: center;
    font-size: 115%;
    color: white;
    font-weight: 600;
}


/* categories end */


/* how it works */

.row-holder{
    margin: 6% auto;
}

.example-row-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.example-row-title{
    font-size: 190%;
    font-weight: 600;
    margin: 0 0 9% 0;
}

.example-img-holder{
    width: 50%;
}

.example-steps-holder{
    width: 42%;
}

.example-step{
    margin: 8% 0;
}

.example-step:last-child{
    margin: 0;
}

.example-step-title{
    margin: 0;
    font-weight: 600;
    font-size: 125%;
}

.example-step-txt{
    line-height: 1.4;
    font-size: 95%;
    margin-top: 2%;
    color: gray;
    font-weight: 400;
}

.example-img{
    width: 100%;
    filter: drop-shadow(2px 8px 0.9rem #f9f9f9);
}

.example-step-tag{
    font-size: 115%;
    background: var(--gradientText);
    color: white;
    border-radius: 50px;
    padding: 9px 26px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 4%;
}

.row-title {
    font-weight: 600;
    font-size: 165%;
    margin: 0;
}

.row-title-center{
    text-align: center;
}

.row-subtitle{
    margin: 1% 0 2% 0;
    color: gray;
    font-size: 95%;
    font-weight: 400;
}

.steps-holder {
    display: flex;
    justify-content: space-between;
}

.step-holder{
    width: 30%;
    height: 220px;
    position: relative;
    background-color: black;
    border-radius: 8px;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(to top, rgb(0 0 0 / 5%) 38%, rgba(0, 0, 0, 1));
}

.step-txt-holder{
    position: absolute;
    bottom: 20px;
    width: 92%;
    left: 4%;
    border-radius: 8px;
}

.step-num {
    font-size: 140%;
    margin: 0 0 10px 0;
    color: #eee;
}

.step-title {
    font-size: 135%;
    margin: 0;
    font-weight: 600;
    color: white;
}

.step-txt {
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 400;
    font-size: 95%;
    color: #eee;
}

/* how it works end */


/* features */

.features-holder {
    display: flex;
    flex-wrap: wrap;
    margin: -2% auto 6% auto !important;
    justify-content: space-between;
}

.feature-holder {
    flex: 0 21%;
    padding: 25px 16px;
    margin-bottom: 20px;
    box-shadow: var(--lightBoxShadow);
    border-radius: 8px;
    border-left: 1px solid var(--collabstrDark);
}

.feature-img{
    width: 21px;
    margin-bottom: 14px;
}

.feature-title {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 135%;
}

.feature-txt {
    line-height: 1.4;
    margin-top: 8px;
    font-weight: 400;
    font-size: 95%;
    color: gray;
}

/* features end */

/* content */

.content-holder{
    height: 330px;
    width: 19%;
    position: relative;
    cursor: pointer;
}

.content-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.play-btn-holder{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, transparent 0%, #0000009e 100%);
    border-radius: 0 0 8px 8px;
}

.play-btn{
    width: 20px;
    margin-bottom: 11px;
    margin-left: 11px;
}

/* content end */

/* logos */

.logo-title{
    text-align: center;
    font-size: 92%;
    margin-bottom: -2.5%;
    color: #ababab;
}

.logo-holder{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 4% 0 -2% 0;
    opacity: 0.75;
}

.logo-img{
    width: 150px;
}

/* logos end */

.niches{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 70%;
    margin: 3% auto 4% auto;
}

.niche{
    text-align: center;
    min-width: 90px;
    border-radius: 30px;
    padding: 12px 20px;
    margin: 8px;
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    border: 1px solid var(--collabstrDark);
    box-shadow: var(--mediumBoxShadow);
}

/* testimonials */

.testimonials-holder{
    display: flex;
    justify-content: space-between;
    margin-top: 4%;
}

.testimonial-holder {
    width: 30%;
}

.quote-img{
    width: 32px;
    margin-bottom: 12px;
    fill: #fb669d;
}

.testimonial-title{
    font-weight: 600;
    font-size: 118%;
    font-style: italic;
}

.testimonial-txt {
    margin: 5% 0;
    font-weight: 300;
    font-size: 95%;
    line-height: 1.4;
}

.testimonial-author {
    font-style: italic;
    font-weight: 600;
}

/* testimonials end */

/* case studies */

.case-study-row{
    margin-top: 2%;
}

.case-study-row .profile-listing-holder {
    width: 32% !important;
    min-width: 275px !important;
}

.similar-post-title {
    font-size: 130%;
    color: white;
    font-weight: 500;
    padding: 20px 12px;
    margin: 0;
}

/* case studies end */

/***************** faq ***************/

.faqs-holder{
    margin: 10% 0 8% 0;
}

.faq-holder {
    margin-bottom: 4%;
    padding-bottom: 2%;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.faq-title-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-btn{
    width: 15px;
    margin-right: 10px;
    transition-duration: 0.3s;
}

.faq-question {
    font-weight: 600;
    font-size: 112%;
    margin: 0;
}

.faq-answer {
    display: none;
    margin-top: 2%;
    font-weight: 300;
    font-size: 95%;
}

.faqs-holder li{
    margin: 10px 0;
}

/***************** faq end ***************/

/* landing pages */

.see-all-btn{
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--black);
    color: inherit;
    text-decoration: none;
    margin-top: 3%;
    width: fit-content;
}

.see-all-btn-img{
    width: 10px;
    margin-left: 8px;
}

.listing-results{
    margin-top: 1%;
}

.paths-holder{
    display: flex;
    align-items: center;
    margin: 7% 0 -4% 0;
}

.path-holder{
    color: var(--black);
    font-weight: 500;
}

.navigation-holder{
    margin-top: 13%;
}

.combos-holder{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 3% 0 6% 0;
}

.combo-holder{
    font-size: 95%;
    color: inherit;
    flex: 0 24%;
    margin: 1.5% 0;
}

/* landing pages end */

.cta-holder{
    width: 100%;
    height: 350px;
    position: relative;
    background-color: #2b2b2b75;
    display: flex;
    border-radius: 15px;
}

.cta-overlay-holder{
    position: absolute;
    height: 100%;
    width: 45%;
    background: linear-gradient(to right, #212121 74%, #000000b8 84%, #000000ab 87%, #0000009c 92%,#00000087 95%, #0000006b 97%,transparent);
    color: white;
    border-radius: 15px 0 0 15px;
}

.cta-txt-holder{
    width: 80%;
    height: 100%;
    margin: -2% auto auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-img{
    height: 100%;
    width: 80%;
    object-fit: cover;
    object-position: 100px;
    margin-left: auto;
    border-radius: 15px;
}

.cta-title{
    font-weight: 600;
    font-size: 210%;
    margin: 0;
}

.cta-txt{
    margin: 3% 0;
    font-weight: 400;
    font-size: 100%;
}

.cta-btn{
    background-color: white;
    color: var(--black);
    width: 190px;
    padding: 16px 5px;
    margin: 3% 0 0 0;
}

.empty-feature-holder{
    visibility: hidden;
}

@media only screen and (max-width: 1150px) {
    .listing-row {
        overflow-x: scroll;
        margin-top: 4%;
    }

    .listing-row .profile-listing-holder, .category-listing-holder {
        margin: 0 3% 0 0;
    }
}

@media only screen and (max-width: 1000px) {
    .section-holder {
        margin-bottom: 11%;
    }

    .empty-feature-holder{
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    #content {
        width: 92% !important;
    }

    .hero-holder {
        margin: 1% 0 0 0;
    }

    .hero-title{
        font-size: 215%;
    }

    .hero-subtitle {
        font-size: 95%;
        margin: 3% 0 6% 0;
        line-height: 1.4;
        max-width: 100%;
    }

    .sections-holder {
        margin: 8% auto;
    }

    .row-holder{
        margin: 16% 0;
    }

    .row-subtitle{
        margin: 2% 0;
    }

    .steps-holder {
        flex-direction: column;
    }

    .step-holder {
        margin: 3% 0;
        width: 100%;
        height: 200px;
    }

    .features-holder {
        width: 100%;
        flex-direction: column;
        margin-top: -10%;
    }

    .content-holder{
        margin: 0 3% 0 0;
        height: 285px;
        min-width: 180px;
    }

    .logo-holder{
        flex-wrap: wrap;
    }

    .logo-img{
        width: 130px;
        flex: 0 30%;
    }

    .brand-logo-holder .logo-img{
        margin: 2% 0;
    }

    .example-row-holder{
        flex-direction: column-reverse;
    }

    .example-row-holder-reverse{
        flex-direction: column;
    }

    .example-steps-holder, .example-img-holder{
        width: 100%;
    }

    .example-steps-holder{
        margin-top: 32px;
    }

    .example-row-title{
        font-size: 150%;
        margin: 6% 0 11% 0;
    }

    .example-step-title{
        font-size: 120%;
    }

    .example-img{
        filter: drop-shadow(2px 8px 0.9rem #eee);
    }

    .faqs-holder {
        margin: 25% 0;
    }

    .faq-holder {
        margin-bottom: 10%;
        padding-bottom: 4%;
    }

    .faq-question{
        font-size: 100%;
    }

    .faq-btn{
        width: 12px;
    }

    .see-all-btn {
        margin-top: 9%;
    }

    .listing-results{
        margin-top: 4%;
    }

    .paths-holder{
        margin: 16% 0 -13% 0;
        flex-wrap: wrap;
        line-height: 2;
    }

    .navigation-holder{
        margin-top: 30%;
    }

    .combos-holder{
        margin: 5% 0 15% 0;
    }

    .combo-holder{
        flex: 0 45%;
        margin: 3% 0;
    }

    .cta-holder{
        height: 315px;
    }

    .cta-overlay-holder{
        width: 100%;
        background: rgba(0, 0, 0, 0.65);
        text-align: center;
        border-radius: 15px;
    }

    .cta-img{
        width: 100%;
        object-position: 0;
    }

    .cta-txt-holder{
        width: 90%;
        margin: 0 auto auto;
    }

    .cta-title{
        font-size: 175%;
    }

    .cta-txt{
        margin: 5% 0;
    }

    .cta-btn{
        width: 100%;
        padding: 22px 0;
        margin: 5% auto 0 auto;
    }

    .testimonials-holder{
        flex-direction: column;
    }

    .testimonial-holder {
        width: 100%;
        margin: 10% 0;
    }

    .case-study-row .profile-listing-img {
        -webkit-mask-image: linear-gradient(to top, rgb(0 0 0 / 30%) 100%, rgba(0, 0, 0, 1)) !important;
    }

    .case-study-row .profile-listing-img-holder {
        height: 300px !important;
    }

    .similar-posts-title {
        margin: 17% 0 4% 0;
    }

    .niches{
        width: 100%;
        margin: 6% auto;
    }

    .niche{
        min-width: 80px;
        padding: 8px 10px;
        margin: 5px;
        font-size: 80%;
    }
}