
/* ------------------------------------ Section login page -------------------------- */
.sec-ads {
    width: 100%;
    /* border: 1px solid red; */
}

.sec-ads .container {
    width: 80%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}

.sec-ads-left {
    width: 68%;
    /* border: 1px solid rgb(67, 140, 54); */
}

.sec-ads-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec-ads-content .feature-parent {
    width: 48%;
    margin-bottom: 50px;
    margin-top: -20px;
    border-radius: 10px;
    line-height: 2.5;
}

.feature-parent .feature-img {
    width: 100%;
    height: 45%;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
}

.feature-parent .feature-info {
    width: 85%;
    height: 35%;
    margin-top: 30px;
}

/* --------- moving between pages ads ----------- */
.next-btns {
    width: 32%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid rebeccapurple; */
}

.next-btns a {
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background-color: #2f89fc;
    transition: .5s;
}

.next-btns a:first-child {
    color: black;
    background-color: #e6e6e6;
}

.next-btns a:hover {
    color: black;
    background-color: #e6e6e6;
}

.next-btns span {
    line-height: 40px;
    font-size: 20px;
    letter-spacing: 3px;
    margin: 0px 10px;
}

.blog-info {
    padding: 15px;
    position: relative;
}

.blog-info pre {
    color: gray;
}

.blog-info p {
    line-height: 1.8;
    padding-top: 15px;
    color: rgb(91, 87, 87);
}

.blog-info::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: rgba(0, 0, 0, 0.146);
    transition: .7s;
    overflow: hidden;
    z-index: -1;
    border-radius: 0px 0px 10px 10px;
}

.feature-parent:hover .blog-info::after {
    width: 100%;
    height: 109%;
}

/* ----------------------------------- sec-ads-right ---------------------------- */
.sec-ads-right {
    width: 25%;
    color: #6c757d;
    font-size: 20px;
    font-weight: normal;
    /* border: 1px solid rgb(183, 255, 0); */
}

.sec-ads-right h3 {
    font-weight: normal;
    color: black;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.sec-ads-right .search input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.717);
    border: 1px solid #abacad88;
    text-transform: capitalize;
}

.popular-posts {
    margin-top: 50px;
    width: 80%;
}

.popular-posts a {
    font-weight: normal;
    font-size: 16px;
    color: #2f89fc;
    line-height: 2;
    display: block;
    transition: .4s;
}

.popular-posts a:hover {
    color: rgb(15, 15, 187);
}

.recent-comments {
    margin-top: 50px;
    width: 80%;
}

.recent-comments p {
    font-weight: normal;
    font-size: 16px;
   
    line-height: 2;
    transition: .4s;
}
.recent-comments a{
     color: #2f89fc;
}

.recent-comments a:hover {
    color: rgb(15, 15, 187);
}

/* ----------------------------------------------------- Section 3 ----------------------------- */
.trend-parent .trend-img {
    width: 43%;
    height: 100%;
    border-radius: 10px 0px 0px 10px;
}

.trend-parent .trend-info{
    width: 52%;
    height: 100%;
    padding: 10px;
    margin-top: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    /* border: 1px solid red; */
}

