/*---------- Root Section Start ----------*/

:root{
    /*-- Heading Root Start --*/
    
    
    
    
    
    
    

    

    
    
    /*-- Heading Root Start --*/

    
    
}
/*---------- Root Section End ----------*/


/*---------- Body Section Start ----------*/
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
HTML,
BODY {
  height:auto;
  width:100%;
  margin:0;
  padding:0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  overflow:auto;
  font-family: 'Anek Bangla';
  scroll-behavior: auto;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L20 20M40 0L20 20M0 40L20 20M40 40L20 20' stroke='%23009688' stroke-opacity='0.08' fill='none'/%3E%3C/svg%3E");
  /* Teal lines (#009688) at 8% opacity */

}
ul, li, ol{
    list-style: none;
}
a{
    text-decoration: none;
}
.line2{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line3{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*---------- Body Section End ----------*/

/*---------- Header Section Start ----------*/
.header_area{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-bottom: var(--border-bottom);
    box-shadow: var(--box-shadow-dark);
}
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 2.5%;
}
    /*----- Bangla Date Start -----*/
.header_area #banglaDate{
    font-family: var(--font-family);
    font-weight: var(--font-weight-600);
    color: var(--banglaDateTime-font-color);
    font-size: var(--banglaDateTime-font-size);
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
    /*----- Bangla Date End -----*/


    /*----- Logo CSS Start -----*/
.header .logo{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img{
    height: var(--mainLogoSize-1200more);
}
    /*----- Logo CSS End -----*/


    /*----- Social Icon CSS Start -----*/

.social_link{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--social-link-gap);
}
.social_link a{
    font-size: var(--social-link-font-size);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    filter: invert(0%);
}
.social_link a:hover{
    filter: invert(40%);
}
.fa-square-facebook{
    color: #1873EB;
}
.fa-youtube{
    color: #F70000;
}
.fa-square-instagram{
    background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fa-tiktok{
    color: #000;
}
    /*----- Social Icon CSS Start -----*/

/*---------- Header Section End ----------*/


/*---------- Menu Section Start ----------*/
.menu{
    width: 95%;
    height: 55px;
    margin: auto;
    border-bottom: var(--border-bottom);
    box-shadow: var(--box-shadow-dark);
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.menu .menu_ul{
    width: 98%;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: var(--menu-list-gap);
}
.menu .menu_ul .menu_list{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-5px);
    transition: var(--transition);
    font-family: var(--font-family);
    cursor: pointer;
}
.menu .menu_ul .menu_list:hover{
    background: var(--menu-list-hover-color);
}
.menu .menu_ul .menu_list:hover a{
    color: var(--menu-list-a-hover-color);
}
.menu .menu_ul .menu_list:hover .sub_menu{
    display: block;
}
.menu .menu_ul .menu_list:hover .menu_a .arrow{
    transform: rotate(180deg);
    transition: var(--transition);
}
.menu .menu_ul .menu_list .menu_a{
    text-align: center;
    font-size: var(--menu-a-font-size);
    font-weight: var(--font-weight-600);
    color: var(--menu-list-a-color);
    padding: var(--menu-list-padding);
}
#letast{      
    padding: var(--menu-list-padding);
    border-radius: var(--border-radius-5px);
    position: relative;
    transition: var(--transition);
    color: #fff;
    font-weight: var(--font-weight-600);
    font-size: var(--menu-a-font-size);
    animation: color-change 1.5s infinite alternate linear;
}
@keyframes color-change {
  0% {
    background-color: red; /* Start color */
  }
  100% {
    background-color: rgb(0, 0, 0);; /* End color */
  }
}
.sub_menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--sub-menu-bg);
    width: 200px;
    box-shadow: var(--box-shadow-dark);
    z-index: 1000;
    padding: 2px 0;
}
#sub_menu::before{
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--sub-menu-bg);
    content: "";
    position: absolute;
    top: -9px;
    right: 10px;
}
.sub_menu_before::before{
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--sub-menu-bg);
    content: "";
    position: absolute;
    top: -9px;
    left: 10px;
}
#sub_menu{
    right: 0;
    left: auto;
    top: 100%;
}
.sub_menu .sub_menu_list{
    display: block;
    transition: var(--transition);
    padding: 0 ;
    cursor: pointer;
}
.sub_menu .sub_menu_list .sub_a{
    padding: 5px 10px;
    color: var(--sub-menu-list-a-color);
    font-family: var(--font-family);
    text-decoration: none;
    font-size: var(--sub-menu-list-font-size);
    font-weight: var(--font-weight-600);
    display: block;
}
.sub_menu .sub_menu_list:hover{
    background: var(--sub-menu-list-hover-color);
}

/*---------- Menu Section End ----------*/


/*---------- Mobile Menu Section Start ----------*/
.mobile_bar{
    display: none;
}
/*---------- Mobile Menu Section End ----------*/

/*---------- Islamic Section Start ----------*/
.islamic{
    height: 480px;
    width: 95%;
    margin: auto;
    background-image: url(islamic.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: var(--box_shadow-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}
#kalma{
    background-image: url('kalma.png');
    background-size: cover;
    background-position: center;
}
#color12{
    color:#fff;
}
.islamic_news{
    height: 410px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.islamic_news_left{
    height: 100%;
    width: 38%;
}
.islamic_news_left a{
    height: 100%;
    width: 100%;
    text-decoration: none;
    box-shadow: var(--box-shadow-dark);
    cursor: pointer;
}
.islamic_news_left a:hover .islamic_news_left_title{
    background: var(--islamic-news-section-hover);
    transform: var(--transition);
}
.islamic_news_left_img{
    height: 55%;
    width: 100%;
}
.islamic_news_left_img img{
    height: 100%;
    width: 100%;
}
.islamic_news_left_title{
    height: 45%;
    width: 100%;
    padding: 10px;
    background: var(--islamic-news-title-bg-color);
}
.islamic_news_left_title h3{
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-weight: var(--font-weight-600);
  color: var(--islamic-news-font-color);
}
.islamic_news_left_title p{
    font-size: var(--font-size-16px);
    color: var(--islamic-news-font-color);
    margin: 0;
    line-height: var(--line-height-24px);
    font-family: var(--font-family);
    font-weight: var(--font-weight-600);
}
.islamic_news_right{
    height: 100%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    justify-content: space-between;    
}

.islamic_news_right_top{
    height: 48%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.islamic_news_right_top a{
    height: 100%;
    width: 32%;
    text-decoration: none;
    box-shadow: var(--box-shadow-dark);
    cursor: pointer;
}
.islamic_news_right_top a:hover .islamic_news_right_common_title {
    background: var(--islamic-news-section-hover);
    transform: 0.3s;
}
.islamic_news_right_common_img{
    height: 70%;
    width: 100%;
}
.islamic_news_right_common_img img{
    height: 100%;
    width: 100%;
}
.islamic_news_right_common_title{
    height: 30%;
    width: 100%;
    background: var(--islamic-news-title-bg-color);
    padding: 7px 10px 10px 10px;
}
.islamic_news_right_common_title h3 {
    font-size: var(--font-size-18px);
    line-height: var(--line-height-22px);
    color: var(--islamic-news-font-color);
    font-family: var(--news_ff);
    font-weight: var(--font-weight-600);    
}
.islamic_news_right_bottom{
    height: 48%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.islamic_news_right_bottom a{
    height: 100%;
    width: 32%;
    text-decoration: none;
    box-shadow: var(--box-shadow-dark);
    cursor: pointer;
}
.islamic_news_right_bottom a:hover .islamic_news_right_common_title {
    background: var(--islamic-news-section-hover);
    transform: var(--transition);
}
/*---------- Islamic Section End ----------*/

/*---------- News Section B Start ----------*/
.sectionB{
    width: 95%;
    height: 600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15PX;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--box-shadow-dark);
}
.sectionB_left{
    height: 100%;
    width: 70.5%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
:root{
    --news-background: #EFF3F4;
    --border-bottom: 3px solid #007bffd5; 
    --border-radius-5px: 5px;
    --banglaDateTime-font-size: 20px;
    --banglaDateTime-font-color: #006563;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --mainLogoSize-1200more: 70px;
    --font-family:  'Noto Serif Bengali', 'Calibri', 'SutonnyMJ', 'Siyamrupali', 'Arial', Georgia, "Times New Roman", Times, serif;
    --box-shadow-light: 0 2px 5px rgb(0 0 0 / 20%);
    --box-shadow-dark: 0 1px 2.5px rgb(0 0 0 / 20%);  
    --transition: 0.3s;
    --menu-list-hover-color:#006563;
    --menu-list-a-hover-color:#fff;
    --menu-list-padding: 2.5px 10px;
    --sub-menu-list-bg:rgba(237, 237, 237, 0.582);
    --sub-menu-bg:#263238;
    --sub-menu-list-a-color:#fff;
    --sub-menu-list-hover-color: #A21210;
    --islamic-news-section-hover: #A21210;
    --islamic-news-title-bg-color: #282828;
    --islamic-news-font-color: #fff;
    --sectionB-background: #EFF3F4;
    --news-title-color: rgb(0, 0, 0);
    --news-p-color: rgb(82, 82, 82);
    --border-common: 0.5px solid rgba(0, 0, 0, 0.175);
    --font-size-26px: 26px;
    --font-size-24px: 24px;
    --font-size-22px: 22px;
    --font-size-20px: 20px;
    --font-size-18px: 18px;
    --font-size-16px: 16px;
    --font-size-14px: 14px;
    --font-size-12px: 12px;
    --line-height-30px: 30px;
    --line-height-28px: 28px;    
    --line-height-26px: 26px;    
    --line-height-24px: 24px;
    --line-height-22px: 22px;
    --line-height-20px: 20px;
    --line-height-18px: 18px; 
    --link-gap-20px: 20px;    
    --link-gap-15px: 15px;    
    --link-gap-10px: 10px;
    --link-gap-5px: 5px;
}
.sectionB_left_top{
    height: 45%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--box_shadow-dark);
    margin-bottom: 15px;
    padding: 10px;
    background: #EFF3F4;
    cursor: pointer;

}
.sectionB_left_top:hover .sectionB_left_top_news h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.sectionB_left_top_img{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sectionB_left_top_img img{
    height: 100%;
    width: 100%;
    transition: 0.3s;
}
.sectionB_left a:hover .sectionB_left_top_img img{
    height: 97%;
    width: 97%;
    border-radius: 10px;
}
.sectionB_left_top_news{
    height: 100%;
    width: 50%;
    padding:10px; 
}
.sectionB_left_top_news h3{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--font-size-18px);
    line-height: 34px;
    padding-top: 10px;
    color: var(--islamic-news-font-color);
}
.sectionB_left_top_news_p{
    font-family: var(--font-family);
    font-size: var(--font-size-18px);
    line-height: var(--line-height-22px);
    color: var(--news-p-color);
} 
.sectionB_left_bottom{
    height: 56.7%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}
.sectionB_left_bottom a{
    text-decoration: none;
    display: flex;
    align-items: initial;
    justify-content: center;
    transition: 0.3s;
    background: #EFF3F4;
    box-shadow: var(--box-shadow-dark);
}
.sectionB_left_bottom a:hover .sectionB_left_bottom_a_right h3 {
    color: var(--islamic-news-section-hover);
    transition: 0.3s;
}
.sectionB_left_bottom_a_left{
    height: 100%;
    width: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sectionB_left_bottom_a_left img{
    height: 95%;
    width: 95%;
}
.sectionB_left_bottom a:hover .sectionB_left_bottom_a_left img{
    height: 93%;
    width: 93%;
    border-radius: 10px;
    transition: 0.3s;
}
.sectionB_left_bottom_a_right{
    height: auto;
    width: 50%;
    padding: 15px 5px 5px 0;
    align-content: space-between;
}
.sectionB_left_bottom_a_right h3{
    font-family: var(--font-family);
    color: var(--news-title-color);
    font-size: 18px;
    line-height: 25px;
}
.sectionB_left_bottom_a_right_p{
    list-style-position: outside;
    display: flow-root;
    font-size: 16px;
    max-width: 100%;
    font-family: var(--font-family);
    font-weight: 600;
    color: var(--news-p-color);
}
.sectionB_right{
    height: 100%;
    width: 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
    padding: 10px;
    background: var(--sectionB-background);
    box-shadow: var(--box-shadow-dark);
}
.sectionB_right_top{
    height: 48%;
    width: 100%;
    box-shadow: var(--box_shadow-dark);
}
.sectionB_right_top img{
    height: 100%;
    width: 100%;
}
.sectionB_right_right{
    height: 48%;
    width: 100%;
    box-shadow: var(--box_shadow-dark);
}
.sectionB_right_right img{
    height: 100%;
    width: 100%;
}

/*---------- News Section B End ----------*/


/*--------------- addSlide Start ---------------*/
.adsSlide{
width: 95%;
height: auto;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
box-shadow: var(--box_shadow-light);
margin-bottom: 10px;
background: #EFF3F4;
}  

.adsSlide img{
width: 100%;
height: auto;
}
/*--------------- addSlide End ---------------*/


/*---------- National News Section Start ----------*/
.national{
    height: 370px;
    width: 95%;
    margin: auto;
    align-items: center;
    justify-content: center;
    align-content: space-between;
    flex-direction: row;
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: var(--box_shadow-dark);
}

.national_heading{
    height: 40px;
    width: 100%;
    background: #EFF3F4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box_shadow-light);
}

.national_heading_title{
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  height: 40px;
  position: relative;
  background: #282828;
  margin: 0;
  display: inline-block;
  padding: 10px 15px;
}


.national_heading_title::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #282828;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.national_heading_title a{
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  font-family: var(--news_ff);
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

.national_heading_right_link {
  font-size: 17px;
  float: right;
  color: #333;
  padding-right: 8px;
  line-height: 42px;
  text-decoration: none;
  font-family: var(--news_ff);
  font-weight: 400;
}

.national_News{
    height: 300px;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.national_News_start{
    height: 100%;
    width: 44%;
    position: relative;
}

.national_News_start a{
    height: 100%;
    width: 100%;
    background:#fff ;
}

.national_News_start_img{
    height: 100%;
    width: 100%;
}
.national_News_start_img img{
    height: 100%;
    width: 100%;
}
.national_News_start_title{
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .5) 30%, rgba(0, 0, 0, .8) 100%);
  color: #fff;
  bottom: 0;
  padding: 30px 10px 5px;
}

.national_News_start_title h2 {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--news_ff);
}

.national_News_start_title h2 span {
  font-size: 26px;
  margin-right: 2px;
  color: #e10612;
}

h2 span svg {
  margin-left: 6px;
  fill: #999;
  margin-right: 6px;
  background: #999;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  vertical-align: middle;
}


.national_News_middle{
    height: 100%;
    width: 27%;
    display: flex;
    flex-direction: column;
    align-content: space-evenly;
    justify-content: center;
}

.national_News_common_top{
    padding: 10px;
    width: 100%;
    height: 31%;
    background: #EFF3F4;
    margin-bottom: 3.5%;
    box-shadow: var(--box_shadow-light);
}

.national_News_common_middle{
    padding: 10px;
    width: 100%;
    height: 31%;
    background: #EFF3F4;
    margin-bottom: 3.5%;   
    box-shadow: var(--box_shadow-light); 
}
.common_news_a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.common_news_a:hover .common_top_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}

.common_top_img{
    height: 100%;
    width: 40%;
    padding-right: 10px;
}
.common_top_img img{
    height: 100%;
    width: 100%;
}

.common_top_title{
    height: 100%;
    width: 60%;
}
.common_top_title h3{
    color: #000;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-family: var(--news_ff);
    align-items: center;
    color: var(--news_title_color);
    font-size: 18px;
    line-height: 25px;
}


.national_News_common_end{
    padding: 10px;
    width: 100%;
    height: 31%;
    background: #EFF3F4;
    box-shadow: var(--box_shadow-light);
}

.national_News_end{
    height: 100%;
    width: 27%;
    display: flex;
    flex-direction: column;
    align-content: space-evenly;
    justify-content: center;
}
/*---------- National News Section End ----------*/


/*------------- International & Asia Start -------------*/
.IA_news{
    height: 560px;
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--box_shadow-dark);
}

.international_news{
    height: 100%;
    width: 49.25%;
    margin-right: 0.75%;
}

.int_news_area{
    height: 490px;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.int_news_area_left{
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
.int_news_area_left_top{
    height: 48%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #EFF3F4;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.int_news_area_left_top a{
    height: 100%;
    width: 100%;
    padding: 10px;
    text-decoration: none;
}

.int_news_area_left_top a:hover .int_news_area_left_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.int_news_area_left_bottom a:hover .int_news_area_left_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.int_news_area_left_img{
    height: 67%;
    width: 100%;
}
.int_news_area_left_img img{
    height: 100%;
    width: 100%;
}
.int_news_area_left_title{
    width: 100%;
    height: 30%;
    padding-top: 10px;
}
.int_news_area_left_title h3{
  font-family: var(--news_ff);
  color: var(--news_title_color);
  font-size: 18px;
  line-height: 25px;
}
.int_news_area_left_bottom{
    height: 48%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #EFF3F4;
}
.int_news_area_left_bottom a{
    height: 100%;
    width: 100%;
    padding: 10px;
    text-decoration: none;
}
.int_news_area_right{
    height: 100%;
    width: 57%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
.int_news_area_right a{
    height: 18%;
    width: 100%;
    background: #EFF3F4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.int_news_area_right a:hover .int_news_area_right_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}

.int_news_area_right_img{
    height: 100%;
    width: 40%;
}
.int_news_area_right_img img{
    height: 100%;
    width: 100%;
}
.int_news_area_right_title{
    height: 100%;
    width: 60%;
    padding: 10px;
}
.int_news_area_right_title h3 {
  font-weight: 600;
  font-family: var(--news_ff);
  color: var(--news_title_color);
  font-size: 18px;
  line-height: 25px;
}

.asia_news{
    height: 100%;
    width: 49.25%;
    margin-left: 0.75%;
}
.asia_news_area{
    height: 490px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
    flex-direction: column;
    margin-top: 10px;
}
.asia_news_area_top{
    height: 55%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asia_news_area_top a{
    height: 100%;
    width: 48.5%;
    background: #EFF3F4;
    text-decoration: none;    
    box-shadow: var(--box_shadow-dark);
    cursor: pointer;
}
.asia_news_area_top a:hover .asia_news_area_top_left_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.asia_news_area_top_left_img{
    height: 65%;
    width: 100%;
}

.asia_news_area_top_left_img img{
    height: 100%;
    width: 100%;
}
.asia_news_area_top_left_title{
    height: 35%;
    width: 100%;
    padding: 10px;
}

.asia_news_area_top_left_title h3{
  font-weight: 600;
  font-family: var(--news_ff);
  color: var(--news_title_color);
  font-size: 18px;
  line-height: 25px;
}

.asia_news_area_bottom{
    height: 41%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.asia_news_area_bottom a{
    height: 100%;
    width: 31%;
    background: #EFF3F4;
    text-decoration: none;
    box-shadow: var(--box_shadow-dark);
    cursor: pointer;
}
.asia_news_area_bottom a:hover .asia_news_area_bottom_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.asia_news_area_bottom_img{
    height: 55%;
    width: 100%;
}

.asia_news_area_bottom_img img{
    height: 100%;
    width: 100%;
}
.asia_news_area_bottom_title{
    height: 45%;
    width: 100%;
    padding: 5px 10px 10px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.asia_news_area_bottom_title h3 {
  font-family: var(--news_ff);
  color: var(--news_title_color);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
}
/*----------- International & Asia Start End -----------*/

/*----------- Sports Section Start -----------*/
.sports{
    width: 95%;
    height: 460px;
    margin: auto;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
    background: #EFF3F4;
}
.sports_news{
    height: 390px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.sports_news_start{
    height: 100%;
    width: 27%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    justify-content: space-between;
}
.sports_news_start a{
    height: 23%;
    width: 100%;
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: var(--box_shadow-dark);
}
.sports_news_common{
    height: 100%;
    width: 40%;
}
.sports_news_start a:hover .sports_news_common_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.sports_news_common img{
    height: 100%;
    width: 100%; 
}
.sports_news_common_title{
    height: 100%;  
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 7px;
}
.sports_news_common_title h3 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 22px;
  font-family: var(--news_ff);
  font-weight: 600;
}

.sports_news_middle{
    height: 100%;
    width: 42%;
    background: #fff;
    box-shadow: var(--box_shadow-dark);
}
.sports_news_middle a{
    height: 100%;
    width: 100%;
    text-decoration: none;    
}

.sports_news_middle a:hover .sports_news_middle_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.sports_news_middle_img{
    height: 75%;
    width: 100%;
    padding: 10px 10px 5px 10px;
}
.sports_news_middle_img img{
    height: 100%;
    width: 100%;
}
.sports_news_middle_title{
    height: 25%;
    width: 100%;
    padding: 0 15px 15px 15px;
}
.sports_news_middle_title h3{
  font-size: 26px;
  line-height: 34px;
  margin: 0;
  color: #000;
  font-weight: 600;
  font-family: var(--news_ff);
}
.sports_news_end{
    height: 100%;
    width: 27%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    justify-content: space-between;
}
.sports_news_end a{
    height: 23%;
    width: 100%;
    background: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: var(--box_shadow-dark);
}
.sports_news_end a:hover .sports_news_common_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
/*---------- Sports Section Start ----------*/

/*---------- Middle East Section Start ----------*/
.middleeast_section{
    height: 660px;
    width: 95%;
    padding: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;    
    box-shadow: var(--box_shadow-dark);
    margin-bottom: 10px;
    background-color: #EFF3F4;
}
#national_heading{
    background: #fff;
}
.ME_section{
    height: 600px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #EFF3F4;margin-top: 10px;
}

.ME_section_left{
    height: 100%;
    width: 39%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
.ME_section_left_top{
    height: 55.50%;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box_shadow-dark);
}
.ME_section_left_top a{
    height: 100%;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}
.ME_section_left_top a:hover .ME_section_left_top_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.ME_section_left_top_img{
    height: 80%;
    width: 100%;
}
.ME_section_left_top_img img{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ME_section_left_top_title{
    height: 20%;
    width: 100%;
    padding: 5px 10px 10px 10px;
}
.ME_section_left_top_title h3{
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  color: #000;
  font-family: var(--news_ff);
  font-weight: 600;
}

.ME_section_left_bottom{
    height: 41.50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.MESLBL_common_a{
    height: 100%;
    width: 48%;
    background: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box_shadow-dark);
    cursor: pointer;
}
.MESLBL_common_a:hover .MESLBL_common_a_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.MESLBL_common_a_img{
    height: 65%;
    width: 100%;
}
.MESLBL_common_a_img img{
    height: 100%;
    width: 100%;
}
.MESLBL_common_a_title{
    height: 35%;
    width: 100%;
    padding: 7px 10px 10px 10px;
}

.MESLBL_common_a_title h3 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 23px;
  font-family:var(--FF);
  font-weight: 600;
}
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.ME_section_left_bottom_right{
    height: 100%;
    width: 48%;
    background: #fff;
    box-shadow: var(--box_shadow-dark);
}
.ME_section_middle{
    height: 100%;
    width: 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
.mesm_a{
    height: 18%;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box_shadow-dark);
    text-decoration: none;
}
.mesm_a:hover .mesm_a_title h3{
    color: var(--news_section_hover);
    transition: 0.3s;
}
.mesm_a_img{
    height: 100%;
    width: 40%;
}

.mesm_a_img img{
    height: 100%;
    width: 100%;
    
}
.mesm_a_title{
    height: 100%;
    width: 60%;
    padding: 10px 10px 10px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.mesm_a_title h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 23px;
  transition: all .5s ease 0s;
  color: #000;
  font-family: var(--news_ff);
  font-weight: 600;
}

.ME_section_right{
    height: 100%;
    width: 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
/*---------- Middle East Section End ----------*/


/*-------------- Video Section Start --------------*/
.video_section{
    height: 480px;
    width: 95%;
    margin: auto;
    background: #000000;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    justify-content: center;
    padding:10px;
    margin-bottom: 10px;
    box-shadow: var(--box_shadow-dark);
}
.video_section_header_padding{
    height: 11%;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}
.video_section_header{
    height: 45px;
    width: 100%;
    background: #EFF3F4;
    box-shadow: var(--box_shadow-dark);
}

.video_section_header h2 {
    background-color: #363636;
    margin: 0;
    font-family: var(--news_ff);
    font-weight: 600;
    left: 11px;
    display: inline-block;
    font-size: 23px;
    padding: 5px 20px;
    padding-bottom: 9px;
    padding-bottom: 4px;
    position: relative;
    transform: rotate(0) scale(1.003) skew(-26deg) translate(0);
    -webkit-transform: rotate(0) scale(1.003) skew(-26deg) translate(0);
    -moz-transform: rotate(0) scale(1.003) skew(-26deg) translate(0);
    -o-transform: rotate(0) scale(1.003) skew(-26deg) translate(0);
    -ms-transform: rotate(0) scale(1.003) skew(-26deg) translate(0);
    
}
.video_section_header h2 a{
    text-decoration: none;
    color: #fff;
}

.video{
    height: 89%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video_left{
    height: 100%;
    width: 40%;
    box-shadow: var(--box_shadow-dark);
}
.video_left a{
    font-family: var(--news_ff);
    text-decoration: none;
    height: 100%;
    width: 100%;
    box-shadow: var(--box_shadow-dark);
}
.video_left a:hover .video_left_text{
    background:var(--news_section_hover);
    transition: 0.3s;
}
.video_left a:hover .video_left_img svg{
    fill: var(--news_section_hover);
}
.video_left_img{
    height: 70%;
    width: 100%;
    position: relative;
}
.video_left_img img {
  height:100%;
  width: 100%;
  overflow: hidden;
}

.video_left_img svg {
  position: absolute;
  top: 15%;
  left: 7%;
  height: 48px;
  width: 48px;
  background: #FFF;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 28px;
  fill: #000;
  border-radius: 50%;
  padding-left: 5px;
  border: 3px solid #fff;
  box-shadow: 0 0 15px 1px grey;
  opacity: 0.8;
  z-index: 1;
}
.video_left_text{
    height: 30%;
    width: 100%;
    background: #363636;
    overflow: hidden;
    padding: 5px 7px 0 7px;
}
.video_left_text h3 {
  font-size: 26px;
  line-height: 34px;
  margin: 0;
  color: #fff;
  font-family: var(--news_ff);
  font-weight: 700;
  text-align: center;
}
.video_right{
    height: 100%;
    width: 58%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-content: space-between;
}
.video_right_top{
    height: 47%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video_right_top a{
    height: 100%;
    width: 31%;
    text-decoration: none;
}
.video_right_top a:hover .video_right_common_title{
    background:var(--news_section_hover);
    transition: 0.3s;
}
.video_right_top a:hover .video_right_common_img svg{
    fill: var(--news_section_hover);
}

.video_right_common_img{
    height: 65%;
    width: 100%;
    position: relative;
}
.video_right_common_img svg{
  position: absolute;
  top: 26%;
  left: 14%;
  height: 40px;
  width: 40px;
  background: #FFF;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 28px;
  fill: #000;
  border-radius: 50%;
  padding-left: 5px;
  border: 3px solid #fff;
  box-shadow: 0 0 15px 1px grey;
  opacity: 0.8;
  z-index: 1;
}
.video_right_common_img img{
    height: 100%;
    width: 100%;
}
.video_right_common_title{
    height: 35%;
    width: 100%;
    padding: 5px 7px 7px 7px;
    background: #363636;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video_right_common_title h3 {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-family: var(--news_ff);
  text-align: center;
}

.video_right_bottom{
    height: 47%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video_right_bottom a{
    height: 100%;
    width: 31%;;
    text-decoration: none;
    box-shadow: var(--box_shadow-dark);
    cursor: pointer;
}

.video_right_bottom a:hover .video_right_common_title{
    background:var(--news_section_hover);
    transition: 0.3s;
}
.video_right_bottom a:hover .video_right_common_img svg{
    fill: var(--news_section_hover);
}
/*-------------- Video Section End --------------*/

/*-------------- EHJ Section Start --------------*/
.ehj{
    height: 680px;
    width: 95%;
    margin: auto;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #EFF3F4;

}
.education{
    height: 100%;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}
.education_news{
    height: 610px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}
.ehj_common_top{
    height: 40%;
    width: 100%;
    background: #fff;
    border-bottom: 1px dotted black;
    padding: 10px 0 10px 0;
}
.ehj_common_top a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.ehj_common_top a:hover .ehj_common_top_title{
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0, rgba(195, 20, 20, 0.5) 30%, rgba(255, 4, 4, 0.8) 100%);
    transition: 0.3s;
}
.ehj_common_top_img{
    height: 100%;
    width: 100%;
}
.ehj_common_top_img img{
    height: 100%;
    width: 100%;
}
.ehj_common_top_title{
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, .8) 100%);
  color: #fff;
  bottom: 0;
  padding: 15px 10px 5px;
}
.ehj_common_top_title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-family: var(--news_ff);
  font-weight: 600;
}
.ehj_common{
    height:15%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px dotted black;
    padding: 10px 0 10px 0;
}
.ehj_common a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.ehj_common a:hover .ehj_common_title h3{
    transition: 0.3s;
    color: var(--news_section_hover);
}
.ehj_common_img{
    height: 100%;
    width: 30%;
}
.ehj_common_img img{
    height: 100%;
    width: 100%;
}
.ehj_common_title{
    height: 100%;
    width: 70%;
    padding: 0px 10px 10px 10px;
}
.ehj_common_title h3 {
  color: #000;
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-family: var(--news_ff);
  font-weight: 600;
}
#no_dot{
    border: 0;
}
.health{
    height: 100%;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}
.health_news{
    height: 610px;
    width: 100%;
    background: blue;
}
.job{
    height: 100%;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    justify-content: space-between;
}
.job_news{
    height: 610px;
    width: 100%;
    background: blue;
}
/*-------------- EHJ Section End --------------*/

/*---------- Footer Section Start ----------*/
.footer{
    width: 95%;
    margin: auto;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--heading_BC);
    position: sticky;
    box-shadow: var(--box_shadow-dark);
    margin-bottom: 20px;
}

.logo_author{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--heading_BC);
    padding: 3px;
}
.footer_logo{
    height: var(--mainLogoSize);
}

.our_details{
    width: 100%;
    padding: 5px;
    border-bottom: 1px solid var(--heading_BC);    
}

.details{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details li{
    padding: 2.5px 10px;
    color: var(--main_color);
    text-align: left;
    list-style: none;
    margin: 0 5px;
    border-radius: 5px;
    position: relative;
    transition: 0.3s;
}

.details li:hover{
    background: var(--text_hover);
}

.details li a:hover{
    color: var(--news_section_hover);
}
.details li a{
    font-family: var(--FF);
    display: block;
    font-size: 20px;
    color: var(--text_hover);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}



.social_contact{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--heading_BC); 
}


.social_contact .contact a{
    padding: 10px;
    font-size: 30px;
    margin: 0 20px;
    text-align: center;
    filter: invert(0%);    
}

.social_contact .contact a:hover{
    filter: invert(40%);
}

.copy_right{
    width: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.copy_right .end{
    font-size: 20px;
    margin: 0px 10px;
    color: var(--main_color);
    transition: 0.3s;
    font-weight: 500;
    font-family: var(--FF);
}


.editor{
    font-size: 20px;
    margin: 0px 10px;
    color: var(--main_color);
    transition: 0.3s;
    font-weight: 500;
    font-family: var(--FF);
}

.copy_middle{
    height: 28px;
    width: 3px;
    background: var(--heading_BC);
}

/*---------- Footer Section End ----------*/