/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {}


/* Tablet desktop :768px. */
@media (max-width: 990px) {
    .trending-area {
        padding-bottom: 0;
    }

    .sub-icon::before {
        display: none;
    }

    .mobile-search {
        display: block;
        width: 65%;
        display: flex;
        margin-left: 10px;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    .whats-news-area{
        padding-top: 0;
    }
    .new-box{
        width: 100%;
    }
    .new-box:not(:nth-child(3n)){
        margin-right: 0;
    }
    .section-tittle h3 {
        color: #000;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4
    }
    .profile-m-x{
        margin-right: 10px;

    }
    .profile-m-x img{
        height: 20px;
        object-fit: contain;
    }
    .sticky-bar .profile-x-main{
        top: 32%!important;
    }
    .profile-x-main{
        display: block;
        position: absolute;
        right: 5%;
        top: 52%;;
    }
    .about-area {
        padding-top: 10px;
    }

    .trending-area .trending-main .trending-top .trend-top-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .whats-news-area .whats-news-caption .single-what-news .what-img img, .about-area .whats-news-caption .single-what-news .what-img img, .contact-section .whats-news-caption .single-what-news .what-img img{
        height: 200px;
    }
    .header-right-btn i {
        font-size: 15px;
        padding: 6px;
        position: absolute;
        right: 23px;
        bottom: 5px;
    }


}


/* small mobile :320px. */
@media (max-width: 767px) {}

/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container {
        width: 450px
    }

}