.img-holder{
    width: 70%;
    margin: 0 auto;
    height: 400px;
}

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

.post-title {
    font-size: 215%;
    margin: 0 0 3% 0;
    text-align: center;
}

.post-holder{
    width: 70%;
    margin: 2% auto;
}

.post-holder h2, .post-holder h3{
    margin-top: 6%;
    margin-bottom: 3%;
    text-align: center;
    font-size: 175%;
}

.post-holder h3, .post-holder h4{
    font-weight: 600;
}

.post-holder h4{
    margin-top: 6%;
}

.post-holder p{
    text-align: left;
    line-height: 1.6;
    margin: 2% 0;
}

.post-holder li{
    margin: 20px 0;
}

.post-holder p, .post-holder li{
    font-size: 110%;
}

/* content */

.listing-row {
    display: flex;
    justify-content: space-evenly;
    margin: 6% 0;
}

.content-holder{
    height: 390px;
    width: 29%;
    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 */

.data-row{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 6% 0 9% 0;
}

.data-holder{
    text-align: center;
}

.data-num{
    font-size: 280%;
    font-weight: 600;
    background: var(--gradientText);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.data-title{
    font-weight: 600;
    margin-top: 10px;
    font-size: 140%;
}


.cta-holder{
    width: 85%;
    margin: 7% auto 0 auto;;
    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;
}


@media only screen and (max-width: 800px) {
    .img-holder{
        width: 100%;
        height: 240px;
    }

    .img {
        border-radius: 0;
    }

    .post-title{
        text-align: left;
        font-size: 170%;
    }

    .post-holder{
        width: 92%;
        margin: 4% auto;
    }

    .post-holder h2, .post-holder h3{
        margin-top: 13%;
        margin-bottom: 8%;
    }

    .post-holder p{
        margin: 6% 0;
    }

    .listing-row{
        overflow-x: scroll;
        justify-content: start;
        margin: 10% 0;
    }

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

    .data-row{
        justify-content: space-between;
            margin: 8% 0 15% 0;
    }

    .data-num{
        font-size: 190%;
    }

    .data-title{
        font-size: 105%;
    }

    .cta-holder{
        width: 92%;
        margin: 10% auto 0 auto;
        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;
    }
}