
:root{
	--primary-color			: #E90000;
	--secondery-color		: #EEF4FF;
	--text-color			: #000000;
	--accent-color			: #0056E9;
	--white-color			: #FFFFFF;
	--divider-color			: #EAF0EC;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: 'SFProDisplayMedium';
}
* {
	box-sizing: border-box;
  }
  @font-face {
    font-family: 'SFProDisplayMedium';
    src: url('../fonts/SFProDisplayMedium.eot');
    src: url('../fonts/SFProDisplayMedium.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayMedium.woff2') format('woff2'),
         url('../fonts/SFProDisplayMedium.woff') format('woff'),
         url('../fonts/SFProDisplayMedium.ttf') format('truetype'),
         url('../fonts/SFProDisplayMedium.svg#SFProDisplayMedium') format('svg');
}
@font-face {
    font-family: 'SFProDisplayBold';
    src: url('../fonts/SFProDisplayBold.eot');
    src: url('../fonts/SFProDisplayBold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayBold.woff2') format('woff2'),
         url('../fonts/SFProDisplayBold.woff') format('woff'),
         url('../fonts/SFProDisplayBold.ttf') format('truetype'),
         url('../fonts/SFProDisplayBold.svg#SFProDisplayBold') format('svg');
}
@font-face {
    font-family: 'SFProDisplaySemibold';
    src: url('../fonts/SFProDisplaySemibold.eot');
    src: url('../fonts/SFProDisplaySemibold.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplaySemibold.woff2') format('woff2'),
         url('../fonts/SFProDisplaySemibold.woff') format('woff'),
         url('../fonts/SFProDisplaySemibold.ttf') format('truetype'),
         url('../fonts/SFProDisplaySemibold.svg#SFProDisplaySemibold') format('svg');
}
@font-face {
    font-family: 'SFProDisplayRegular';
    src: url('../fonts/SFProDisplayRegular.eot');
    src: url('../fonts/SFProDisplayRegular.eot') format('embedded-opentype'),
         url('../fonts/SFProDisplayRegular.woff2') format('woff2'),
         url('../fonts/SFProDisplayRegular.woff') format('woff'),
         url('../fonts/SFProDisplayRegular.ttf') format('truetype'),
         url('../fonts/SFProDisplayRegular.svg#SFProDisplayRegular') format('svg');
}
  body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: 'SFProDisplayRegular';
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1400px;
}
.container-fluid {
    width: 100%;
    padding: 0 224px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #000;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}
section {
  padding: 120px 0;
}
h1{
    font-family: 'SFProDisplaySemibold';;
    font-size: 56px;
    line-height: 56px;
    font-weight: normal;
    color:var(--text-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 0;
}
h2{
    font-family: 'SFProDisplaySemibold';
    font-size: 32px;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 16px;
    text-transform: capitalize;
    font-weight: normal;
    letter-spacing: 0;
}
h3{
    font-family: 'SFProDisplaySemibold';
    font-size: 40px;
    line-height: 40px;
    color:var(--text-color);
    font-weight: normal;
    margin-bottom: 16px;
    letter-spacing: 0;
}
h4{
    font-family: 'SFProDisplayMedium';
    font-size: 24px;
    line-height: 32px;
    color:var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 0;
    font-weight: normal;
}
h5{
    font-size:19px;
    line-height: 26px;
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
    font-family: 'SFProDisplaySemibold';
    font-weight: normal;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-family: 'SFProDisplaySemibold';
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
    font-weight: normal;
}
p{    
    font-family: 'SFProDisplayMedium';
    font-size: 16px;
    line-height: 23px;
    color:var(--text-color);
    margin-bottom: 24px;
    letter-spacing: 0;
}

/* preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #001FE9;
  border-top-color: #979797;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* btns */
.common-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding:10px 24px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color:var(--primary-color);
  font-family: 'SFProDisplaySemibold';
  font-weight: normal;
}
.common-btn:hover,
.common-btn:focus {
	color: #000;
	transition: all 0.3s linear;
	background-color:var(--accent-color);
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

/* btns */

/* header */
.wrapper {
  position: relative;
  overflow:hidden;
}
.main-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: #B5B5B5 solid 1px;
}
.main-header .common-btn {
  font-size: 16px;
  height: 50px;
}
.outer-menu {
    padding: 0;
    background-color:#fff;
    border-radius: 0;
    padding:24px 0;
}
.outer-menu ul li{
    margin:0 8px 0 0;
    position: relative;
}
.outer-menu ul li a{
    font-size: 20px;
    line-height: 20px;
    font-weight: normal;
    text-transform: capitalize;
    display: block;
    position: relative;
    color:#575555;
    font-family: 'SFProDisplayMedium';
    padding:10px;
}
.outer-menu ul li a:hover, .outer-menu ul li.current-menu-item a {
  color: #0D0D0D;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color:var(--accent-color);
}
.outer-menu ul li.lang-item {
  display: none;
}
.contact-phone,
.contact-message {
  padding: 10px;
  margin-right: 3px;
}
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  width: auto;
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.outer-menu ul li .submenu  {
  display: block;
  position: absolute;
  left: 0;
  right: auto;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateY(10px);
  width: auto;
  min-width: 235px;
  box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
  padding: 25px 0 23px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  margin: 0;
  border: none;
}
.outer-menu ul li.dropdown:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.outer-menu ul li .submenu li {
  padding: 0 40px;
  margin-right: 0;
}
.outer-menu ul li .submenu li a {
  font-size: 14px;
  color:var(--primary-color);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 36px !important;
  white-space: nowrap;
  position: relative;
} 
.outer-menu ul li .submenu li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 10px;
  height: 2px;
  opacity: 0;
  background-color: #5f3984;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.outer-menu ul li .submenu li a::before {
  display: none;
}  
.is-sticky {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 90px !important;
  max-height: 90px !important;
  background-color:#fff!important;
   -webkit-animation: translateHeader 0.8s;
  animation: translateHeader 0.8s;
   -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
  box-shadow: 0 3px 4px rgba(0,0,0,.07);

}
.header-social-icons,
.header-icons {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.header-social-icons {
  margin-top: 0;
  margin-right: 37 px;
}
.social-icon {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EEF4FF;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin-top: 0 !important;
}
.social-icon img {
  margin: auto;
}
.search-toggle-btn,
.menu-toggle {
   background: #F4F4F4;
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.menu-toggle {
  width: 89px;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: #575555;
  gap: 8px;
  text-decoration: none !important;
}
.contact-now-box .common-btn {
  margin-left: 14px;
}
.contact-now-box {
  align-items: center;
  display: flex;
  gap: 8px;
}
.is-sticky .outer-menu {
  height: 77px;
  padding: 12px 32px;
}
.navbar-brand  {
  /* max-width: 230px; */
  padding: 0;
}
.navbar-brand img {
  height: auto;
  width: auto;
}
.call-btn {
  padding: 12px;
  gap: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #000000;
  border-radius: 45px;
}
.auth-select select {
    background: #060606;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 46px 12px 32px;
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    text-transform: capitalize;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: 'SFProDisplaySemibold';
}
.auth-select {
    position: relative;
    display: inline-block;
}
.auth-select::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
  }
.menu-logo {
  display: none;
}
.menu-dropdown {
  display: none;
  position: absolute; /* optional, like real dropdown */
  top: 100%; /* position below button */
  right: 0;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px 24px;
  z-index: 999;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
}
.menu-dropdown ul li a {
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  color: #575555;
  padding: 10px;
}
.menu-dropdown ul.menu {
  border-bottom: #939393 solid 1px;
}
.menu-dropdown ul.service-menu li a {
  color: #0056E9;
}
.menu-dropdown.show {
  display: block;
}
@keyframes translateHeader {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}
@keyframes headerAnimation {
  0% {
    opacity:0;
    -webkit-transform:translateY(-100%);
    transform:translateY(-100%)
  }
  100% {
    opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0)
  }
}

  @media (min-width: 992px) {
    .close-mobile-menu {
      display: none;
    }
    #navbarNav {
      display: none !important;
    }
    }
    .header-search-bar {
  display: none;
  position: absolute;
  top: 100%;
  right: 15px;
  left:auto;
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-radius: 16px;
  z-index: 2000;
}
.header-search-bar form {
  display: flex;
  gap: 10px;
}
.header-search-bar input[type="search"],
.default-page input[type="search"] {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  height: 43px;
}
.header-search-bar input[type="submit"].search-submit,
.default-page input[type="submit"].search-submit {
  text-transform: capitalize;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color: var(--accent-color);
  font-family: 'SFProDisplaySemibold';
  font-weight: normal;
}
.header-search-bar.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}
.default-page  .search-form {
  max-width: 600px;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* header */

/* Hero */

.latest-stories {
  padding: 48px 0 32px;
  position: relative;
  margin-top: 104px;
}
h2 svg {
  font-size: 26px;
}
.latest-stories-wrap {
  background: #F5F2F2;
  box-shadow: 0px 4px 29px rgba(0, 0, 0, 0.24);
  border-radius: 32px;
  padding: 32px;
  gap: 32px;
}
.latest-stories-wrap .slick-prev {
  display: none !important;
}
.latest-stories-wrap  .slick-next {
  top: 31%;
  transform: translate(0, -50%);
  right: -49px;
  left: auto;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #8AB9FD;
  font-size: 0;
  padding: 0;
  position: absolute;
}
.latest-stories-wrap  .slick-next::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}
.latest-stories-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.letest-storied-image {  
  border: 4px solid #0056E9;
  border-radius: 128.859px;
  width: 96px;
  height: 96px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 16px;  
}
.letest-storied-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.latest-stories-item h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Anek Malayalam", sans-serif;
  text-align: center;
}

/* breaking news*/

.news-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.breaking-news {
  padding: 32px;
  background: #EEF4FF;
  border-radius: 32px;
}
.breaking-news h2 {
  color:#0056E9;
}
.breaking-news-card {
  position: relative;
}
.breaking-img {
  width: 100%;
  border-radius: 24px;
  height: auto;
  max-height: 789px;
  object-fit: cover;
  object-position: center top;;
}
.breaking-content {
  position: absolute;
  bottom: 44px;
  left: 48px;
  right: 48px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.breaking-content h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  font-family: "Anek Malayalam", sans-serif;
  color: #FFFFFF;
}
.top-ten-news .top-news-item,
.news-category .top-news-item {
  display: flex;
  margin-bottom: 24px;
  gap: 10px;
}
.top-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.top-content h5 {
  margin: 0;
  font-size: 0.95rem;
}
.video-wrapper {
  position: relative;
  display: inline-block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}
.play-btn:hover {
  background: rgba(0,0,0,0.8);
}
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.video-backdrop {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
.video-content {
  position: relative;
  max-width: 800px;
  width: 90%;
}
.video-content iframe {
  width: 100%; height: 450px;
  border-radius: 8px;
}
.close-video {
  position: absolute;
  top: -10px; right: -10px;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
}

/* top news */

.top-ten-news {  
  background: #FFEEEE;
  border-radius: 32px;
  height: 100%;
  overflow-y: hidden;  
  max-height: 900px;
}
.top-ten-news-wrap {
  height: 100%;
  padding: 32px 0;
}
.top-ten-list {
  padding:0 32px;
  overflow-y: scroll;
  height: 100%;
}
.top-ten-news h2 {
  color: #E90000;
  padding:0 32px;
}
.top-news-item {
  padding: 0px 0px 32px;
  border-bottom: 1px solid #AC7C74;
}
.top-news-item:last-child {
  border: none;
} 
.top-news-item img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin-bottom: 20px;
  max-height: 239px;
  object-fit: cover;
  object-position: top;
}
.top-news-item h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #6E6E6E;
  font-family: "Anek Malayalam", sans-serif;
}
.meta-wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.latest-label {
  font-size: 20px;
  line-height: 20px;
  color: #E90000;
  font-family: 'SFProDisplaySemibold';
}
.time-ago {
  color: #666666;
  font-size: 16px;
  line-height: 20px;
  font-family: 'SFProDisplaySemibold';
}

/* trending */

.trending-stories-wrap {
  background: #EFEFEF;
  border-radius: 32px;
  padding: 32px 20px;
  position: relative;
}
.trending-stories-wrap h2 {
  margin-left: 12px;
}
.trending-stories-item img {
  width: 100%;
  height:auto;
  border-radius: 24px;
  margin-bottom: 20px;
}
.trending-stories-item h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #6E6E6E;
  font-family: "Anek Malayalam", sans-serif;
}
.trending-label {
  font-size: 20px;
  line-height: 20px;
  color: #0056E9;
  font-family: 'SFProDisplaySemibold';
  text-transform: capitalize;
}
.trending-stories-item {
  margin:0 12px;
}
.trending-stories-wrap .slick-arrow {
  top: -55px;
  right:62px;
  left: auto;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  background-color: #292D32;
  font-size: 0;
  padding: 0;
  position: absolute;
}
.trending-stories-wrap .slick-next {
  right: 12px;
}
.trending-stories-wrap .slick-next::before,
.trending-stories-wrap .slick-prev::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}
.trending-stories-wrap .slick-prev::before {
  content: "\f053";
}
.trending-image {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 239px;
  width: 100%;
  border-radius: 24px;
  margin-bottom: 20px;
}

/* ads  */

.ads-banner {
  position: relative;
}
.ads-img {
  border-radius: 32px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 601px;
  text-align: center;
  padding: 112px 32px;
  position: relative;
}
.ads-img h2 {
  font-family: 'SFProDisplayBold';
  font-size: 72px;
  line-height: 62px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.ads-img p {
  font-family: 'SFProDisplayRegular';
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
  color: #fff;
}
.ads-img .common-btn {
  background-color: #fff;
  color: #000;
}
.ads-text {
  position: absolute;
  width: 100%;
  padding: 0 15px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

/* news categories*/

.news-categories {
  position: relative;
  padding: 32px 0 96px;
}
.news-category {
  background: #EEF4FF;
  border-radius: 32px;  
  padding: 32px 0;
  max-height: 1002px;  
  overflow: hidden;
  height: 100%;
}
.news-category-list {
overflow-y: scroll;
height: 100%;
padding: 0 32px;
}
.news-category h2,
.news-category .latest-label {
  color: #001FE9; 
}
.news-category h2 {
 padding: 0 32px;
}
.col-md-4:nth-child(2) .news-category {
  background: #FAFFEE;
}
.col-md-4:nth-child(2) .news-category h2,
.col-md-4:nth-child(2) .news-category .latest-label {
  color: #00E91B;
}
.col-md-4:nth-child(3) .news-category {
  background: #EEFFFA;
}
.col-md-4:nth-child(3) .news-category h2,
.col-md-4:nth-child(3) .news-category .latest-label {
  color: #00E9CE;
}
.top-ten-news .top-news-item a, .news-category-list .top-news-item a {
      width: 100%;
  }
   /* Footer */
  .footer {
    background: linear-gradient(0deg, #272727, #272727);
    color: #ffffff;
    padding: 96px 120px;
  }
  .footer-about {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  } 
  .footer-logo {
    margin-bottom: 40px;
    display: table;
  }  
  .footer-content a {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    opacity: 0.5;
    display: block;
  }
  .footer-content h4 {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
  }  
  .footer-content li {
    margin: 0;
    margin-bottom: 10px;
  }
  .footer-content li:last-child {
    margin-bottom: 0;
  }
  .footer-content li a {
      font-size: 22px;
      line-height: 26px;
      text-transform: capitalize;
      color: #fff;
      text-decoration: none;
      margin-bottom: 7px;
      cursor: pointer;
      transition: color 0.3s ease;
      opacity: 0.5;
  }
  .footer-content li a:hover {
    opacity: 1;
  }
 .footer-content .social-icons li a {
    background-color:#DBDBDB;
    color: #3F3E3E !important;
    text-align: center;
    width: 44px;
    height: 44px;
    line-height: 44px;
   }
  .footer-content .social-icons {
    margin-top: 16px;
   }
  .footer-copyright {     
      border-top: 1px solid #FFFFFF;
      padding: 16px 0;      
      margin-top: 40px;
  }
  .footer-copyright-text {
       font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      color:#FFFFFF;
      opacity: 0.7;
  }
  .designed,
  .designed span {
     font-size: 16px;
     font-weight: 400;
     line-height: 18px;
     color:#FFFFFF;
     margin: 0;
     text-align: right;    
  }
    .designed span{
opacity: 0.7;
margin-right: 5px;
    }
    .designed a{
opacity: 1;
    }
  .designed a,
  .designed span  {
    display: inline-block;
    vertical-align: middle;
  }
  .designed a img {
     height: 20px;
     width: auto;
  }
    .footer .social-icon {
      background: transparent;
      opacity: 1;
    }
      .footer-menu  {
        margin-bottom: 40px;
      }
      .footer-menu:last-child {
        margin-bottom: 0;
      }
    .footer-social-icons,
    .footer-menu ul {
      display: flex;
      flex-direction: row;
    }
     .footer-menu ul {
      gap: 10px;
     }
.newsletter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.newsletter {
  max-width: 405px;
}
.form-feild {
  background: #979797;
border-radius: 12px;
padding: 8px;
height: 55px;
}
.form-feild p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: space-between;
}
.form-feild input[type="email"] {
   background: #979797;
   padding: 8px 8px 8px 8px;
   border: none !important;
   box-shadow: none !important;
   outline: none !important;
   font-size: 18px;
  line-height: 20px;
  color: #E6E6E6;
  height: 39px;
}
.form-feild .subscribe-btn {
  width: 120px;
  height: 39px;
  background: #0056E9;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  text-transform: capitalize;
  border: none;
  box-shadow: none;
  outline: none;
}
.wpcf7-spinner {
  display: none;
}
 

  /* about */

.about,
.contact,
.default {
  padding: 24px 0 32px;
  position: relative;
  margin-top: 104px;
}
.about h1,
.contact h1 {
  text-transform: uppercase;
  max-width: 385px;
}
.about h1 span,
.contact h1 span {
  color: #0056E9;
}
.about p {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #646464;
}
.about-heading p {
  max-width: 485px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #646464;
  margin-bottom: 20px;
  font-family: "DM Sans", sans-serif;
}
.about ul {
  margin-bottom: 24px;
  margin-left: 15px;
}
.about ul li {
  font-size: 20px;
  line-height: 24px;
  color: #646464;
  font-family: "DM Sans", sans-serif;
  margin: 0 0 0 15px;
  list-style: disc;
}
.about-heading {
  border-bottom: #D5D5D5 solid 1px;
  margin-bottom: 40px;
}

/* Contact page */

.contact {
  padding-bottom: 120px;
}
.contact-details li {
  margin-bottom: 31px;
}
.contact-details li .contact-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 32px 24px 0px;
  gap: 24px;
}
.contact-details li div .contact-icon {
  width: 48px;
  height: 48px;
  background: #EEF4FF;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  line-height: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.contact-icon img {
  margin: auto;
}
.contact-details li p {
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  color: #7B7B7B;
  margin: 0;
}
.contact-details li .phone-numbers p{
  margin-bottom: 8px;
}
.contact-details h6,
.contact-details p span {
  font-size:16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}
.contact-details li .address p {
  max-width: 165px;
}
/* news detail page */
.news-details-section {
  position: relative;
  padding: 120px 0 96px;
}
.news-details-section .breadcrumbs {
display: flex;
flex-direction: row;
align-items: center;
}
.news-details-section .breadcrumbs li {
  font-size: 20px;
  line-height: 20px;
  color: #575555;
  text-transform: capitalize;
  padding: 10px;
  border-left: #B4B4B4 solid 1px;
}
.news-details-section .breadcrumbs li:first-child {
  padding-left: 0;
  border-left: none;
}
.news-details-section .breadcrumbs li:first-child a {
  font-size: 20px;
  line-height: 20px;
  color: #575555;
  text-transform: capitalize;
}
.news-details-section h1 {
font-weight: 600;
font-size: 40px;
line-height: 48px;
color: #000;
font-family: "Anek Malayalam", sans-serif;
margin-bottom: 8px;
}
.news-details-section small {
  font-size: 16px;
  line-height: 20px;
  color: #575555;
  text-transform: capitalize;
  display: block;
}
.news-details-section .breaking-news-card {
  margin: 24px 0;
}
.news-details-section p {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-transform: capitalize;
  color: #6E6E6E;
  font-family: "Anek Malayalam", sans-serif;
}
.news-details-section .trending-stories-wrap {
  margin-top: 32px;
}
.pdf-viewer-wrap {
    margin-top: 40px;
}
.pdf-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pdf-container iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
}
.pdf-download {
    margin-bottom: 15px;
}
.pdf-download .download-btn {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.pdf-download .download-btn:hover {
    background: #c0392b;
}

.mt-64 {
  margin-top: 100px;
}
.floatingdiv {
position: fixed;
bottom: 100px;
right: 0;
z-index: 9999;
width: 45px;
height: 100px;
}
.floatingwhatsapp {   
  width: 45px;
  height: 45px;  
  display: block;
  margin-bottom: 10px;
}
.floatingcall {    
  width: 45px;
  height: 45px;  
  display: block;
}
.mob-menu {
  display: none;
}

/* category list */

.default-page {
  margin-top: 80px;
}
.category-listing .post-grid,
.default-page .post-grid  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.post-card {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 24px;
  background: #fff;
}
.post-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}
.post-card h5 {
  font-family: "Anek Malayalam", sans-serif;
  margin: 0;
}

.share-btn {
  background: #FFFFFF;
  border: 1px solid #001FD8;
  border-radius: 8px; 
  width: 132px;
  height: 48px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 18px;
  color: #001FD8;
  text-align: center;
  text-transform: capitalize;
  float: right;
  margin-top: -44px;
}
/* Background overlay */
.share-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.share-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}
.share-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

 
  @media only screen and (max-width: 1800px){	
    .container-fluid {
      padding: 0 80px;
    }
    section {
      padding: 100px 0;
    }   
    
  }
   @media only screen and (max-width: 1700px){	
    .container-fluid {
      padding: 0 70px;
    }   
    section {
      padding: 90px 0;
    }   
    .footer {
      padding: 80px 100px;
    }
  }
  @media only screen and (max-width: 1600px){	
    .container-fluid {
      padding: 0 70px;
    }    
  .ads-img {
    min-height: 550px;
  }
  .ads-img h2 {
    font-size: 66px;
    line-height: 58px;
  }
  .latest-stories-wrap .slick-next {
    right: -40px;
  }
  .footer {
      padding: 70px 50px;
  }
 
}
  @media only screen and (max-width: 1500px){	
    .container-fluid {
      padding: 0 50px;
    }     
  .ads-img {
    min-height: 520px;
  }
  .ads-img h2 {
    font-size: 60px;
    line-height: 54px;
    margin-bottom: 25px;
  }
  .footer {
    padding: 60px 15px 30px;
  }
  .footer-content li a {
    font-size: 20px;
  }
  .news-categories {
    padding: 0 0 70px;
  }
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
  h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .top-news-item h5,
  .trending-stories-item h5 {
    font-size: 22px;
  line-height: 30px;
  }
  .breaking-content h1 {
  font-size: 34px;
  line-height: 44px;
}
  .ads-img p {
    font-size: 28px;
  line-height: 36px;
  }
  .top-ten-news {
    max-height: 800px;
  }
  .trending-label,
  .latest-label {
    font-size: 18px;
  }
  .time-ago {
    font-size: 14px;
  }
  .news-category {
    max-height: 865px;
  }
  .about h1, .contact h1 {
      max-width: 349px;
    }
    .about p,
    .about ul li {
      font-size: 22px;
      line-height: 30px;
    }
    .outer-menu ul li a,
    .latest-stories-item h4 {
      font-size: 17px;
    }
     .container {
    padding: 0 50px;
  }
  .breaking-img {
      max-height: 690px;
  }
}
@media only screen and (max-width: 1400px){	
    .container-fluid {
      padding: 0 30px;
    } 
    .outer-menu ul li {
      margin: 0 4px 0 0;
    }  
    .outer-menu ul li a {
      font-size: 15px;
      line-height: 18px;
    }    
    section {
      padding: 80px 0;
    } 
    .header-social-icons, .header-icons {
      gap: 6px;
    } 
    .menu-toggle {
      width: 82px;
      font-size: 14px;
      line-height: 20px;
      gap: 6px;
    }   
    .latest-stories-item h4 {
      font-size: 16px;
    }
    .latest-stories,
    .about,
.contact,
.default {
      margin-top: 80px;
    }
    .trending-image {
      min-height: 200px;
    }
    .newsletter {
      max-width: 380px;
    }
    .footer-content li a {
      font-size: 18px;
    }
    .default-page {
      margin-top: 50px;
    }
    .news-details-section h1 {
      font-size: 36px;
      line-height: 44px;
    }
    .news-details-section p {
      font-size: 22px;
      line-height: 34px;
    }
  }
   @media only screen and (max-width: 1300px){	
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 8px;
    }    
    .ads-img {
      min-height: 460px;
    }
    .ads-img h2 {
      font-size: 56px;
      line-height: 54px;
      margin-bottom: 20px;
    }
    .footer-menu ul {
      gap: 8px;
    } 
     .news-categories {
      padding: 0 0 60px;
    } 
    .news-category h2,
    .news-category-list,
    .top-ten-news h2,
    .top-ten-list {
      padding: 0 25px;
    }
    h1 {
    font-size: 40px;
    line-height: 40px;
  }
    h2 {
      font-size: 26px;
      line-height: 28px;
    }
    h2 svg {
      font-size: 20px;
    }
    .news-category,
    .top-ten-news-wrap {
      padding: 25px 0;
    }
    .latest-stories-wrap .slick-next {
      right: -22px;
    }
    .latest-stories-wrap,
    .breaking-news {
      padding: 25px;
    }
    .breaking-content {
      bottom: 30px;
      left: 30px;
      right: 30px;
    }
    .breaking-content h1 {
      font-size: 32px;
      line-height: 42px;
    }
    .top-news-item h5, .trending-stories-item h5 {
      font-size: 20px;
      line-height: 26px;
    }
     .top-ten-news {
      max-height: 676px;
    }
    .trending-stories-wrap {
      padding: 25px 13px;
    }
    .trending-stories-wrap .slick-arrow {
      top: -46px;
      width: 34px;
      height: 34px;
      line-height: 34px;
    }
    .trending-stories-wrap .slick-next::before, .trending-stories-wrap .slick-prev::before {
       width: 34px;
       font-size: 16px;
    }
    section {
      padding: 70px 0;
    }
     .news-category {
      max-height: 760px;
    }
    .footer-menu {
      margin-bottom: 30px;
    }
    .social-icon,
    .search-toggle-btn, .menu-toggle {
      width: 32px;
      height: 38px;
      line-height: 38px;
    }
    .menu-toggle {
      width: 83px;
    }
    .outer-menu ul li a {
        font-size: 16px;
        line-height: 16px;
        padding: 8px;
    }
    .outer-menu img.logo {
      width: auto;
      height: 45px;
    }
    .top-ten-news .top-news-item, 
    .news-category .top-news-item {
      margin-bottom: 20px;
      padding: 0px 0px 25px;
    }
    .about h1, .contact h1 {
    max-width: 280px;
    margin-bottom: 10px;
  }
   .about p,
   .about ul li {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-details li {
  margin-bottom: 10px;
}
 .breaking-img {
      max-height: 586px;
  }
  }
  @media only screen and (max-width: 1200px){	
    .outer-menu ul li a {
      font-size: 14px;
      line-height: 16px;
    }     
    section {
      padding: 60px 0;
    }   
    .footer-content li a {
    font-size: 16px;
  } 
  .header-social-icons {
      display: none;
    }
     .contact .header-social-icons {
      display: flex;
    }
    .news-details-section h1 {
      font-size: 32px;
      line-height: 38px;
    }
    .news-details-section p {
      font-size: 20px;
      line-height: 30px;
    }
    .news-details-section .breadcrumbs li {
      font-size: 18px;
      line-height: 18px;
      padding: 5px 10px;
    }
    .news-details-section .breadcrumbs li:first-child a {
      font-size: 18px;
      line-height: 18px;
    }
  }
  @media only screen and (max-width: 1100px){	   
   
    .letest-storied-image {
      width: 80px;
      height: 80px;
    }
    .latest-stories-item h4 {
      font-size: 14px;
    }
    h1 {
      font-size: 34px;
      line-height: 34px;
    }
    h2 {
      font-size: 24px;
      line-height: 26px;
    }
    h2 svg {
      font-size: 16px;
    }
     .breaking-content h1 {
      font-size: 30px;
      line-height: 38px;
    }
    .breaking-content {
      bottom: 10px;
      left: 20px;
      right: 32px;
    }
     .top-news-item h5, .trending-stories-item h5 {
      font-size: 18px;
      line-height: 24px;
    }
    .top-ten-news {
      max-height: 605px;
    }
    .trending-label, .latest-label {
      font-size: 16px;
    }
    .trending-image {
      min-height: 180px;
      margin-bottom: 15px;
    }
    .latest-stories {
      padding-bottom: 0;
    }
    .ads-img {
      min-height: 420px;
    }
    .ads-img p {
      font-size: 24px;
      line-height: 30px;
    }
    .top-news-item img {
      margin-bottom: 15px;
    }
    .news-category {
      max-height: 715px;
    }
    .footer {
      padding: 50px 15px 10px;
    }
    .footer-copyright {
      margin-top: 30px;
    }
    .footer-logo img {
      height: 60px;
      width: auto;
    }
    .footer-content h4 {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-menu {
      margin-bottom: 20px;
    }
    .footer-content li a {
      font-size: 14px;
    }
    .footer-content h4 {
      font-size: 20px;
      line-height: 20px;
      margin-bottom: 6px;
    }
    .footer-copyright-text,
    .designed, .designed span {
      font-size: 14px; 
      line-height: 16px;
    }
      .about h1, .contact h1 {
    max-width: 280px;
  }
   .about p,
   .about-heading p,
   .about ul li {
    font-size: 18px;
    line-height: 26px;
  }
   .about h1, .contact h1 {
    max-width: 240px;
  }
  .breaking-img {
      max-height: 513px;
  }
  }
  @media only screen and (max-width: 991px){ 
    .mob-menu {
      display: block;
    }  
    .menu-logo {
      display: block;
    }
    .desktop-menu {
      display: none;
    }
    .is-sticky .outer-menu {
      padding: 0 15px;
    }	
    .outer-menu .navbar-toggler{
	  border: none;
	  box-shadow: none;
	}
	.outer-menu .navbar-toggler .menu-lines {
	  display: inline-block;
	}
  .outer-menu {
    padding: 10px 0;
  }
	.outer-menu .navbar-toggler .menu-lines::before, 
	.outer-menu .navbar-toggler .menu-lines::after {
	  content: '';
	  position: absolute;
	  left: 0;
	  width: 23px;
	  height: 2px;
	  display: inline-block;
	  background-color:var(--text-color);
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	}
  .header-social-icons, .header-icons {
    margin-top: 0;
  }
  #menu-dropdown-menu {
    border-top: #939393 solid 1px;
  }
	.outer-menu .navbar-toggler .menu-lines::before {
	  top: 0;
	}
	.outer-menu .navbar-toggler .menu-lines::after {
	  top: 12px;
	}
	.outer-menu .navbar-toggler .menu-lines span {
	  position: absolute;
	  top: 6px;
	  left: 0;
	  width: 18px;
	  height: 2px;
	  background-color:var(--text-color);
	}
	.outer-menu .collapse:not(.show) {
	  display: block;
	}
	.outer-menu .navbar-collapse {
	  position: fixed;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  width: 100%;
	  height: 100%;
	  visibility: hidden;
	  opacity: 0;
	  background-color: rgba(0,0,0,.6);
	  z-index: 1000;
	  padding: 0;
	  transition: 0.4s ease;
	}
  .outer-menu ul li a:hover, .outer-menu ul li.current-menu-item a {
    border: none;
  }   
	.outer-menu .navbar-collapse.menu-opened {
	  opacity: 1;
	  visibility: visible;
    direction: ltr;
	}
	.outer-menu .navbar-collapse.menu-opened .navbar-nav {
	  opacity: 1;
	  transform: translateX(0);
	}
	.outer-menu .navbar-collapse .navbar-nav {
	  opacity: 0;
	  width: 240px;
	  height: 100%;
	  overflow-y: auto;
	  padding: 10px 0 20px;
	  background-color: #fff;
	  transform: translateX(-100%);
	  transition: 0.3s ease;
	  transition-delay: 0s;
	  transition-delay: 0.4s;
	  margin: 0;
	}
	.outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
	  opacity: 1;
	  transform: scale(1);
	  display: block;
	}
	.outer-menu .close-mobile-menu {
	  position: absolute;
	  top: 30px;
	  right: 30px;
	  z-index: 1100;
	  width: 35px;
	  height: 35px;
	  line-height: 33px;
	  text-align: center;
	  border-radius: 50%;
	  border: 1px solid #fff;
	  color: #fff;
	  cursor: pointer;
	  opacity: 0;
	  transform: scale(.8);
	  transition: all 0.4s ease;
	  transition-delay: 0s;
	  transition-delay: 0.5s;
	  background-color: transparent;
	  box-shadow: none;
    padding: 0;
	}
	.main-menu ul li a {
	  color:var(--text-color);
	  line-height: 25px !important;
	  padding-left: 15px;
	}
	.outer-menu ul li a.active::before, 
	.outer-menu ul li a:hover::before,
	.outer-menu ul li a::before {
	 display: none;
	}  
  .outer-menu ul li.lang-item {
    display: block;
    background: url(../images/language-icon.svg) no-repeat 15px center;
    padding-left: 30px;
  }
   .latest-stories,
   .about,
.contact,
.default,
.news-details-section {
    margin-top: 50px;
  }
  .share-btn {
    width: 90px;
    height: 34px;
    padding: 8px 15px;
    font-size: 16px;
  }
  .default-page {
    margin-top: 30px;
  }
  .is-sticky {
    height: 70px !important;
  }  
  .mob-logo {
    padding-left: 15px;
  }
  .mob-logo,
  .outer-menu .mob-logo img.logo {
    display: block;
  }
  .main-header .common-btn {
  margin-right: 60px;
}
.menu-toggle-desktop {
  display: none;
}
 .hero-section {
    padding: 80px 0 0;
  }
  section {
    padding: 50px 0;
  }  
  .navbar-brand img {
    height: 40px;
    width: auto;
  }  
  .news-section {
    display: block;
  }
  .breaking-news {
    margin-bottom: 20px;
  }
  .top-ten-news {
    max-height: 900px;
  }
   .ads-img h2 {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px;
  }
   .ads-img p {
    font-size: 20px;
    line-height: 24px;
  }
   .ads-img {
    min-height: 380px;
  }
  .news-categories .col-md-4 {
    width: 100%;
  }
  .news-category {
    margin-top: 20px;
  }
  .news-categories .col-md-4:first-child .news-category {
    margin-top: 0;
  }
  .top-news-item a {
    width: 100%;
  }
   .news-categories {
    padding: 0 0 40px;
  }
  .footer .col-md-6,
  .footer .col-md-5  {
    width: 100%;
  }
  .newsletter-wrap {
    margin-bottom: 30px;
  }
   .footer-menu {
    margin-bottom: 0;
  }
   .footer-copyright {
    margin-top: 10px;
  }
  h1 {
      font-size: 30px;
      line-height: 30px;
    }
     .about h1, .contact h1 {
    max-width: 210px;
  }
   .about p,
   .about-heading p,
   .about ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-details li p,
  .contact-details h6, .contact-details p span {
  font-size: 14px;
  line-height: 16px;
  }
  .container {
    padding: 0 30px;
  }
  .news-details-section {
    padding: 50px 0 96px;
  }
  .news-details-section .breadcrumbs li,
  .news-details-section .breadcrumbs li:first-child a {
  font-size: 16px;
  line-height: 18px;
  }
  .news-details-section .breadcrumbs {
    margin-bottom: 10px;
  }
  .news-details-section h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .news-details-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px){  
  .footer {
    padding: 50px 15px 10px;
  }   
  h1 {
      font-size: 28px;
      line-height: 30px;
    }
  h2 {
    font-size: 22px;
    line-height: 24px;
  }
  h2 svg {
    font-size: 14px;
  }
  .latest-stories-item h4 {
    font-size: 12px;
    line-height: 16px;
  }
   .breaking-content h1 {
    font-size: 24px;
    line-height: 29px;
  }
  .top-news-item h5, .trending-stories-item h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .top-ten-news .top-news-item, .news-category .top-news-item {
    margin-bottom: 20px;
    padding: 0px 0px 15px;
  }
  
  .trending-image {
    min-height: 160px;
    margin-bottom: 15px;
  }
  .footer-copyright {
    text-align: center;
  }
  .designed {
    text-align: center;
    margin-top: 15px; 
  } 
  .ads-img {
    min-height: 320px;
  }
  .ads-img h2 {
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 15px;
  } 
    .about h1, .contact h1 {
    max-width: 195px;
  }
  .about-heading {
  margin-bottom: 30px;
}
.contact-details li {
  margin-bottom: 0;
}
.container {
    padding: 0 20px;
  }
  .news-details-section h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .news-details-section p {
    font-size: 17px;
    line-height: 25px;
  }
  .breaking-img {
    max-height: 450px;  
  }
}
@media only screen and (max-width: 600px){
  .play-btn img {
    width:70px;
    height:auto;
  }
   .top-news-item h5, .trending-stories-item h5 {
    font-size: 15px;
    line-height: 21px;
  }
  .trending-label, .latest-label {
    font-size: 14px;
  }
  .time-ago {
    font-size: 12px;
  }
  .newsletter-wrap {
    display: block;
  }
  .newsletter {
    margin-bottom: 20px;
  }
  .footer-logo {
    margin-bottom: 25px;
  }
   .about p,
   .about-heading p,
   .about ul li {
    font-size: 14px;
    line-height: 22px;
  }
  .header-search-bar {
    max-width: 500px;
  }
  .news-details-section h1 {
    font-size: 20px;
    line-height: 26px;
  }
  .news-details-section p {
    font-size: 16px;
    line-height: 24px;
  }
  .news-details-section .breadcrumbs li,
  .news-details-section .breadcrumbs li:first-child a {
  font-size: 14px;
  line-height: 16px;
  }
  .breaking-img {
    max-height: 380px;  
  }
}
@media only screen and (max-width: 500px){
  h1 {
      font-size: 26px;
      line-height: 26px;
    }
  .latest-stories-wrap, .breaking-news {
    padding: 20px 15px;
  }
  .latest-stories-wrap .slick-next {
    right: -10px;
  }  
 .breaking-content h1 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 0;
  }  
.breaking-content {
    bottom: 10px;
    left: 15px;
    right: 15px;
  }
  .news-category h2, .news-category-list, .top-ten-news h2, .top-ten-list {
    padding: 0 15px;
  }
  .ads-img {
    min-height: 300px;
  }
   .ads-img h2 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
  }
   .ads-img p {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 15px;
  }
  .footer-menu ul {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-content li {
    margin: 0;
  }
  .footer-content li a {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
  }
  .footer-menu {
    margin-bottom: 20px;
  }
  .footer-content h4 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .news-category {
    max-height: 650px;
  }
   .top-ten-news {
    max-height: 656px;
  }
   .play-btn img {
    width: 60px;
    height: auto;
  }
  .about-heading {
  margin-bottom: 20px;
}
  .about h1, .contact h1 {
    max-width: 188px;
  }
  .header-search-bar {
    max-width: 93%;
    left: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .news-details-section h1 {
    font-size: 18px;
    line-height: 24px;
  }
  .news-details-section p {
    font-size: 14px;
    line-height: 20px;
  }
  .news-details-section small {
    font-size: 14px;    
  }
  .breaking-img {
    max-height: 300px;  
  }
}
@media only screen and (max-width: 400px){
  .breaking-content h1 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
  }
   .play-btn img {
    width: 50px;
    height: auto;
  }
  .outer-menu img.logo {
    width: auto;
    height: 32px;
  }
  .breaking-img {
    max-height: 250px;  
  }
}