/* font-family: 'Roboto', sans-serif; */
  @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,500;1,600;1,700&family=Manrope:wght@800&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');


body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    margin-bottom: 0;
    padding: 0;

}

p,ul{
    padding: 0;
    margin: 0;
    margin-top: 5px;
}
/* -----header top start----- */
.header_top {
    background: #111111;
}
ul.social_information , ul.right_top_menu{
    list-style: none;
    display: flex;
}
.social_information li a, .right_top_menu li a {
    font-size: 15px;
    padding: 10px 15px;
    border-left: 1px solid #4c4c59;
    color: #BBBABB;
    text-decoration: none;
    display: inline-block;
}
ul.right_top_menu {
    justify-content: right;
}

.search_bar{
    position: relative;
    transition: .5s;
}
.search_input input {
    box-shadow: none;
    outline: none;
    height: 100%;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: .5s;
    transform: translateX(0px);
    z-index: 1;
width: 0;
    border: 1px solid #ccc;
    transition: .5s;

}
.search_btn {
    background: #d4000e;
    padding: 10px 15px;
    color: #fff;
    font-size: 15px;
    z-index: 2;
    position: relative;
}
.search_bar:hover .search_input input {
transition: .5s;
transform: translateX(1);
width:200px;


}
/* -----header top close----- */

/* -----header middle start----- */
section.hedaer_middle {
    background: #fcfcfc;
    padding: 20px 0;
}
.header_banner img{
    width: 100%;
}
.hedaer_middle .row{
    align-items: center;
}
.logo img {
    width: 220px;
}
/* -----header middle close----- */

/* -----------nav bar start--------- */
section.navbar_part {
    background: #d4000e;
}
.navbar_part .navbar {
    padding-top: 0;
    padding-bottom: 0;
}
.navbar_part li.nav-item a.nav-link {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
    border-right: 1px solid #e91b17;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition:.2s;
}
.navbar_part li.nav-item a.nav-link:hover{
    transition:.2s;
    background: #111;
    border-right: 1px solid #111;

}
.navbar_part .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.7rem;
    padding-left: 0.7rem;
    padding-top: 22px;
    padding-bottom: 22px;
}

a.nav-linkactive {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
    border-right: 1px solid #e91b17;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: .2s;
    transition: .2s;
    background: #111;
    border-right: 1px solid #111;
    /* text-align: center; */
    padding: 27px;
    /* margin: 11px 3px; */
    /* margin-top: -106px; */
    position: relative;
    /* bottom: -18px; */
    top: 0px;
}
/* -----------nav bar close--------- */
/* -------------home page start---------- */
.home_slider .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 120px 0;
    position: relative;
}
.home_slider .item::after {
    position: absolute;
    content: "";
    background: #000;
    inset: 0;
    height: 100%;
    width: 100%;
    opacity: 0.4;
}
.banner_1{
    background-image: url(../images/home_p.jpg);
}
.banner_2{
    background-image: url(../images/home_p2.jpg);
}
.banner_3{
    background-image: url(../images/home_p3.jpg);
}
.banner_content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}
.top_caption p {
    font-size: 24px;
    font-weight: 400;
}
h1.banner_heading {
    font-size: 55px;
    font-weight: 600;
}
.second_caption p{
    font-size: 25px;
    font-weight: 500;
}
.describe p {
    font-size: 17px;
    font-weight: 400;
}
.home_page .owl-nav{
    display: none;
}
.home_page .owl-dots{
    display:none;
}
/* ---------------home page close--------- */
/* ---------------breaking news start----- */
section.breaking_news {
    padding: 20px 0;
    background: #fcfcfc;
}
.breaking_news_part img {
    width: 100%;
}
span.catagory {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #d4000e;
    display: inline-block;
    padding: 3px;
}
p.catagory_content {
    background: #000000a3;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    padding: 0px 10px;
    margin-top: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breaking_news_part {
    position: relative;
}
.news_content {
    position: absolute;
    bottom: 45px;
    left: 20px;
}
p.catagory_content.catagory_content1 {
    width: 85%;
}
p.catagory_content.catagory_content2 {
    width: 45%;
}
span.catagory.lifestyle {
    background: #cfac00;
}
span.catagory.headline {
    background: #0c9055;
}
span.catagory.health {
    background: #2f9f9f;
}
p.catagory_content.catagory_content3 {
  width: 57%;
}
p.catagory_content.catagory_content4 {
    width: 57%;
}
.right_side_news {
    display: grid;
    gap: 10px;
}
.news_image{
    height: 421px;
    object-fit: cover;
}
.breaking_news .owl-nav{
    display: none;
}
.breaking_news .owl-dots{
    display: none;
}
.br_news_heading {
    display: flex;
    background: #000000d9;
    margin-bottom: 10px;
    /* height: 30px; */
    color: #fff;
    align-items: center;
    font-size: 14px;
}
.br_news_heading h2 {
    font-size: 17px;
    color: #fff;
    background: #d4000e;
    font-weight: 400;
    padding: 5px 10px;
    margin-right: 5px;
}
.br_news_heading span {
    font-size: 16px;
    font-weight: 600;
}
/* ---------------breaking news close----- */
/* ---------------world news start-------- */
section.world_news_start {
    background: #ececed;
    padding: 50px 0;
}
.news_sec_heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
h2.news_headline {
    font-size: 20px;
    text-transform: uppercase;
    background: #d4000e;
    color: #fff;
    padding: 5px 10px;
}
h2.watch_news {
    font-size: 20px;
    color: #403f3f;
}
.world_news_body {
    display: flex;
    /* gap: 10px; */
    background: #fff;
    margin-bottom: 30px;
}
.news_images {
    position: relative;
    width: 50%;
}
.news_images  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_images a{
    text-decoration: none;
}
h3.news_highlight {
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    color: #fff;
    background: #d4000e;
    padding: 2px 5px;
    left: 5px;
    text-transform: uppercase;
}
h3.news_highlight.health{
    background:#2f9f9f ;
}
h3.news_highlight.Politics{
    background:#2b3ddd ;
}
h3.news_highlight.Science{
    background:#9037e2 ;
}
a.content_name h3 {
    font-size: 19px;
    color: #424141;
    font-weight: 500;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}
a.content_name h3::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    bottom: 0;
    background: #c5c4c4;
    left: 0;
}
a.content_name h3::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 30%;
    bottom: 0;
    background: #d4000e;
    left: 0;
}
.news_desc1 a {
    font-size: 14px;
    color: #9a9a9a;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0;
}
.news_desc1 a:hover{
    color: #d4000e;
    transition: .5s;
}
a.content_name{
    text-decoration: none;
}
.world_news_content {
    padding: 18px 15px;
    width: 50%;
}
/* ---------------world news close-------- */

/* -----------national news start-------- */
section.latest_news {
    padding: 50px 0;
}
h2.news_headline.national_news {
    background: #000;
}
.latest_news .world_news_body {
    background: #ececed;
}
h3.news_highlight.economy {
    background: #814dd5;
}
h3.news_highlight.business {
    background: #d7b640;
}
.national_news_banner img{
    width: 100%;
}
.national_news_banner {
    margin-bottom: 20px;
}
.news_feed_heading {
    display: flex;
    justify-content: space-between;
    background: #d4000e;
    align-items: center;
    color: #fff;
    padding: 13px 10px;
    margin-bottom: 4px;
}
.news_feed_heading h2{
    font-size: 17px;
}
ul.news_feed_body {
    display: grid;
    list-style: none;
}
ul.news_feed_body li {
    background: #202020;
    display: flex;
    padding: 17px;
    gap: 15px;
    border-bottom: 1px solid #9f9d9da1;
}
.feed_img img {
    width: 105px;
    height: 90px;
    object-fit: cover;
}
.feed_cont a{
    text-decoration: none;
}
.feed_cont a h4 {
    font-size: 17px;
    color: #e9e7e7;
    padding-bottom: 8px;
}
.feed_cont a p {
    font-size: 14px;
    color: #d3d3d3;
}
/* -----------national news close-------- */
/* ----------about_us start----------- */
.about_us {
    background: url(../images/about_us.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px;
    position: relative;
}
.about_us::after {
    position: absolute;
    content: "";
    background: #0000008c;
    inset: 0;
}
.text {
    position: relative;
    color: #fff;
    z-index: 1;
    text-align: center;
}
.text  h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}
button.about_us_btn {
    background: #d4000e;
    border: none;
    color: #fff;
    font-size: 15px;
}
/* -----------about_us close--------------- */
/* -----------air_show_banner start----------- */
.air_show_banner {
    background: url(../images/banner2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    height: 100%;
    padding: 209px 0px;
}
.air_show_banner_content {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
    position: absolute;
    bottom: 0;
    padding-left: 24px;
    padding-bottom: 50px;
}
section.national_airshow_banner {
    padding: 50px 0;
}
.air_show_banner_content h2 a {
    text-decoration: none;
    color: #f3f3f3;
    font-size: 25px;
    font-weight: 500;
}
.air_show_banner_content h4 {
    color: #dfdfdf;
    font-size: 17px;
    font-weight: 400;
}
.world_news_youtube_img img {
    width: 100%;
}
.world_news_youtube_img {
    position: relative;
}
span.youtube_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.youtube_content {
    background: #Eee;
    padding: 20px;
    font-size: 15px;
    font-weight: 500;
}
/* -----------air_show_banner close--------------- */
/* =========footer start============= */
.footer_last_part{
    background: url(../images/footerimg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 0;
    position: relative;
}
.footer_last_part::after{
    position: absolute;
    content: "";
    inset: 0;
    background: #000;
    opacity: 0.8;
}
.footer_content{
    position: relative;
    z-index: 1;
    color:#fff;
}

.footer_heading h3::after {
    position: absolute;
    content: "";
    background: #d4000e;
    height: 2px;
    width: 30%;
    left: 0;
    bottom: -1px;
}
.footer_content p {
    color: #bfbcbc;
    font-size: 15px;
    letter-spacing: 1px;
}
.footer_heading h3 {
    font-size: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid #d5d2d29e;
    margin-bottom: 25px;
    position: relative;
}
.footer_content ul.tags li a {
    text-decoration: none;
    border: 1px solid #eee;
    padding: 10px;
    background: #b5b5b5;
    color: #000;
}
.footer_content ul.tags {
    list-style: none;
    display: flex;
    gap: 30px 10PX;
    flex-flow: wrap;
}
ul.footer_news {
    list-style: none;
    display: grid;
    gap: 15px;
}
ul.footer_news li {
    display: flex;
    gap: 5px;
}
ul.footer_news li a.fimg img {
    width: 100px;
    height: 100%;
    object-fit: cover;
}
a.fcont {
    text-decoration: none;
    color: #eee;
    font-size: 13px;
}
section.copy_right {
    background: #202020;
    padding: 5px 0;
}
.copy_right p {
    color: #a7a4a4;
    font-size: 15px;
}
ul.social_icons {
    display: flex;
    gap: 20px;
    list-style: none;
    justify-content: right;
}
ul.social_icons li a{
    color:#a7a4a4
}
/* =========footer close============= */
/* ========rethinking start========= */
section.rething_start {
    background: #ececed;
    padding: 50px 0;
}
.rethinking_content {
    padding: 20px 35px;
    background: #fff;
    width: 50%;
}
.rethinking_body {
    display: flex;
    padding-bottom: 20px;
}
.rethinking_image img {
    width: 100%;
    height: 237px;
    object-fit: cover;
}
.rethinking_image {
    width: 100%;
    height: 200px;
}
ul.item_image {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-flow: wrap;
}
ul.item_image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
span.day {
    color: #d4000e;
    font-size: 14px;
    font-weight: 400;
}
.item_image a{
    text-decoration: none;
}
a.external-link {
    font-size: 14px;
    color: #626262bf;
    font-weight: 300;
}
.first_news_body {
    margin-bottom: 20px;
}
h2.news_headline.Sport {
    background: #1dbb00a8;
}
span.clock {
    font-size: 13px;
    padding-right: 5px;
    color: #a9a9a9;
}
a.game {
    font-size: 13px;
    color: #a1a0a0;
}
#healthtag_banner_firstfour2 a {
    display: flex;
    align-items: center;
}
.rething_start .rethinking_body {
    width: 100%;
}
.rething_start .rethinking_image {
    width: 100%;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #214252;
}
#healthtag_banner_firstfour2 {
    background: #fff;
}
.rething_start .rethinking_content {
    width: 60%;
}
.news_feed_main {
    position: sticky;
    top: 80px;
}
.headlines {
    position: sticky;
    top: 80px;
}
.rethinking_content h2 {
    font-size: 27px;
    text-decoration: none;
    font-weight: 500;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ========rethinking close========= */
a.content_name {
    text-decoration: none;
    font-weight: 500;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
p.descriptionpara {
    font-size: 14px;
    color: #9a9a9a;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 10px 0;
}
.news_images {
    position: relative;
    width: 50%;
    height: 202px;
}
.imgbg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.imgbg::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
}
.imgbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_images img.main-img {
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.latest_news .news_images a {
    text-decoration: none;
    display: block;
    height: 239px;
}
.latest_news .news_images img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.latest_news .news_images .imgbg img {
    object-fit: cover;
}
#popular_areasmall .news_images {
    position: relative;
    width: 50%;
    height: auto;
}
.feedItem {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}
.feed_cont span {
    color: #9e9e9e;
}
.feed_cont h2 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #fff;
}
ul.news_feed_body li {
    padding: 0 !important;
}
.news_feed_body li .col-md-12 .feedItem:not(:last-child) {
    border-bottom: 1px solid #727272;
}
.air_show_banner_content span {
    position: relative;
    bottom: 112px;
    color: white;
}
.air_show_banner_content h2 {
    color: white;
}
.rething_start .feed_cont p a {
    background: #214252;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 3px;
    display: inline-block;
}
a.post_cat {
    font-size: 22px;
    margin-bottom: 15px;
    display: inline-block;
}
.world_news_youtube_img img {
    width: 100%;
    height: 275px;
    object-fit: cover;
}
a.item_title {
    font-size: 17px;
    display: inline-block;
    padding: 10px 0;
}
ul.author_listing.no_pad {
    display: flex;
    gap: 18px;
    list-style: none;
}
ul.author_listing.no_pad li:nth-child(2){
    display: flex;
    gap: 7px;
}

div#healthtag_banner_firstfour1 {
    position: relative;
}
div#trendinglast2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.rethinking_content1 h2{
    font-size: 17px;
}
.rethinking_content1 span{
    color: #8e8e8e;
}
.rethinking_content1 {
    background: #d6d6d6;
    padding: 20px;
}
.item_image a {
    text-decoration: none;
    width: 100%;
    position: relative;
    display: block;
}
ul.item_image img.main-img {
    position: relative;
    z-index: 3;
    object-fit: contain;
}
.rethinking_content1 {
    background: #d6d6d6;
    padding: 20px;
    min-height: 144px;
}
.rethinking_image {
    background-color: #fff;
}

#searchul a {
    padding: 0 10px;
    border: none !important;
}
#searchul {
    background-color: #fff;
    top: 78px !important;
}
#searchul a li {
    color: #000;
}
