body, html {
  padding: 0;
  margin: 0;
  background-color: white;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgba(36, 23, 23, 1);
  font-size: 16px;
  line-height: 20px;
}

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

.m-t-24 {
  margin-top: 24px;
}

a, a:hover {
  text-decoration: none;
}

header .header-top {
  position: fixed;
  width: 100%;
  top:0;
  left: 0;
  background: white;
  z-index: 3;
}

header .header-top  .header-top-wrap {
  padding: 12px 0 8px;
  border-bottom: 1px solid rgb(237, 237, 237);
}

.has-gradient-hover {
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.has-color-hover {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.has-gradient-hover:not(.white-color):hover,
.has-gradient-hover:not(.white-color).active,
.has-gradient {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
  line-height: 45px;
}

.fill-transition {
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -ms-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.logo-icon:hover svg path,
.logo-icon.active svg path{
  fill: #CC0000
}

.logo-icon:hover,
.logo-icon.active {
  background-color: rgba(237, 237, 237, 0.5);
}

.logo-main span {
  display: block;
  font-size: 12px;
  line-height: 100%;
  color: rgba(36, 23, 23, 1)
}

.main-menu {
  height: 20px;
  margin-top: 14px;
  text-align: center;
}
/*
.main-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.main-menu ul li {
  display: inline-block;
  margin-left: 14px;
  margin-right: 14px;
}

.main-menu ul > li:first-child {
  margin-left: 0;
}

.main-menu ul > li:last-child {
  margin-right: 0;
}

.main-menu ul li a {
  line-height: 20px;
  font-size: 18px;
  color: rgba(36, 23, 23, 1);
  position: relative;
  display: inline-block;
  padding-bottom: 21px;
}

.main-menu ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.main-menu ul li a:hover:after {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}

.main-menu ul li.current-menu-item a {
  color: rgba(255, 0, 0, 1);
  font-weight: 600;
}

.main-menu ul li.current-menu-item a:after {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}
 */






.main-menu .main-menu-nav > ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.main-menu .main-menu-nav > ul > li {
  position: relative;
  margin-right: 0;
}


.main-menu .main-menu-nav > ul > li > a {
  line-height: 20px;
  font-size: 16px;
  color: rgba(36, 23, 23, 1);
  position: relative;
  padding-bottom: 21px;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.main-menu .main-menu-nav > ul > li > a:hover {
  background: linear-gradient(270deg,#CC0000 0%,#FF0000 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  color: #fff0;
}

.main-menu .main-menu-nav > ul > li > ul.sub-menu {
  position: absolute;
  background: white;
  padding: 15px;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  border: 1px solid #EAEAEA;
  min-width: 150px;
  text-align: left;
  top: calc(100% + 10px);
}

.main-menu .main-menu-nav > ul > li:hover > ul.sub-menu {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.main-menu .main-menu-nav > ul > li:has(.svg-open) > a {
  padding-right: 18px;
}

.main-menu .main-menu-nav > ul > li > .svg-open {
  position: absolute;
  top:1px;
  right: 0;
  transform: rotate(90deg);
}


.main-menu .main-menu-nav > ul > li > ul.sub-menu > li {
  display: block;
  margin-bottom: 10px;
}

.main-menu .main-menu-nav > ul > li > ul.sub-menu > li > a {
  line-height: 14px;
  font-size: 14px;
  color: rgba(36, 23, 23, 1);
}

.main-menu .main-menu-nav > ul > li > ul.sub-menu > li > a:hover {
  background: linear-gradient(270deg,#CC0000 0%,#FF0000 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  color: #fff0;
}

.main-menu .main-menu-nav > ul > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  height: 2px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}


.main-menu .main-menu-nav > ul > li > a:hover:after {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}

.main-menu .main-menu-nav > ul > li > a.current-menu-item {
  color: rgba(255, 0, 0, 1);
  font-weight: 600;
}

.main-menu .main-menu-nav > ul > li > a.current-menu-item:after {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}



.header-social,
.xl-open-social {
  margin-top: 12px;
}

.xl-open-social {
  text-align: right;
}

.header-social a,
.xl-open-social a {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header-social a:first-child {
  margin-left: 0;
}

.header-social a:last-child {
  margin-right: 0;
}

.header-social a:hover,
.xl-open-social a:hover {
  background-color: rgba(36, 23, 23, 1);
}

.header-social a:hover svg.whatsapp path,
.header-social a:hover svg.facebook path,
.header-social a:hover svg.youtube path,
.xl-open-social a:hover svg path {
  fill: white;
}

.stroke-transition {
  -webkit-transition: stroke 0.3s;
  -moz-transition: stroke 0.3s;
  -ms-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.header-social a:hover svg.instagram path,
.header-social a:hover svg.twitter path {
  stroke: white;
}

.header-telugu-link {
  margin-top: 8px;
}

.header-telugu-link a {
  display: block;
  height: 30px;
  line-height: 30px;
  position: relative;
  color: rgba(36, 23, 23, 1);
  padding-right: 22px;
}

.header-telugu-link a:before {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  bottom:0;
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}

.header-telugu-link a:after {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  right: 0;
  top : 7px;
  background: url('../img/t-arrow-to-bottom.svg') no-repeat;
}

.header-search {
  cursor: pointer;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-top: 4px;
}

.header-search:hover {
  background-color: rgba(237, 237, 237, 0.5);
}

.header-search svg:hover path {
  fill: rgba(255, 0, 0, 1)
}

.header-bottom {
  margin-top: 66px;
}

.header-bottom .header-trending {
  height: 56px;
  border-bottom: 1px solid rgb(237, 237, 237);
}

.header-bottom .header-trending .header-trending-wrap {
  display: flex;
  gap: 24px;
  height: 100%;
  align-items: center;
}

.header-bottom .header-trending .header-trending-wrap .header-bottom-trend {
  font-size: 16px;
  line-height: 24px;
}

.header-bottom .header-trending .header-trending-wrap .header-bottom-trend svg {
  margin-right: 8px;
  position: relative;
  top: 3px
}

.header-bottom .header-trending .header-trending-wrap .header-bottom-trend-live {
  padding-left: 15px;
  position: relative;
  color: #727272;
  padding-right: 24px;
}

.header-bottom .header-trending .header-trending-wrap .header-bottom-trend-live:before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: #727272;
  animation: fadeIn 1s infinite;
}

.header-bottom .header-trending .header-trending-wrap .header-bottom-trend-live:after {
  content: '';
  position: absolute;
  height: 56px;
  width: 1px;
  right: 0;
  top: 50%;
  background: rgb(237, 237, 237);
  transform: translateY(-50%);
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner {
  display: flex;
  gap: 12px;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner .header-trending-wrap-inner-label {
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  background-color: #1E2938;
  color: white;
  padding: 0 6px;
  border-radius: 2px;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 24px;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner ul li {
  padding-right: 12px;
  position: relative;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner ul li:after {
  content: '';
  position: absolute;
  right: -9px;
  top: calc(50% - 3.5px);
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: black;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner ul > li:last-child:after {
  display: none;
}

.header-bottom .header-trending .header-trending-wrap .header-trending-wrap-inner ul li a {
  font-size: 16px;
  line-height: 24px;
  color: black;
}




@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.white-color {
  color: white!important;
}

.red-color {
  color: rgba(255, 0, 0, 1)
}

.has-bottom-border {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
}


section.section.home-hero {
  padding: 20px 0 24px;
}

.news-item-category > span,
.news-item-category > a {
  display: inline-block;
  margin-bottom: 12px;
  color: white;
  font-weight: 500;
  line-height: 24px;
  padding: 0 16px;
  height: 24px;
  font-size: 12px;
}

.gradient-effect {
  position: relative;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.gradient-effect > span  {
  position: relative;
  z-index: 2;
}

.gradient-effect:before,
.gradient-effect:after {
  content: '';
  position: absolute;
  display: block;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.gradient-effect:before {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  opacity: 1;
}

.gradient-effect:after {
  background: linear-gradient(270deg, #FF0000 0%, #CC0000 100%);
  opacity: 0;
}

.gradient-effect:hover:after {
  opacity: 1;
}

.gradient-effect:hover:before {
  opacity: 0;
}


.news-item-title {
  margin-bottom: 12px;
}

.news-item-title.big-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 135%;
}

.news-item-short {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(36, 23, 23, 1);
}

.news-item-more {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  font-weight: 800;
  color: rgba(36, 23, 23, 1);
}

.news-item-more svg {
  margin-left: 6px;
  position: relative;
  top:2px
}

a.news-item:hover .news-item-more svg path {
  fill: #FF0000
}

.news-item-big-banner {
  position: relative;
  height: 440px;
}

.news-item-big-banner-image {
  display: block;
  position: absolute!important;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.image-hover-effect {
  overflow: hidden;
  position: relative;
}

.image-hover-effect img {
  transition: transform 0.3s;

  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

}

.image-hover-effect:hover img {
  /*transform: scale(1.1);*/
}

.has-image-gradient {
  position: relative;
}

.has-image-gradient:before {
  content: '';
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.06%, #000000 98.56%);
  z-index: 1;
}


.has-image-gradient-type-2:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 34.09%);
}


.news-item-big-banner .mews-item-body {
  position: absolute;
  padding: 36px 24px;
  width: calc(100% - 48px);
  left: 0;
  bottom: 0;
  z-index: 2;
}

.news-item-big-banner .news-item-short {
  margin-bottom: 0;
}

.m9-block-title {
  position: relative;
  margin-bottom: 24px;
}

.m9-block-title > a {
  position: absolute;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 29px;
  display: block;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  top: 3px;
  right: 0;
  z-index: 2;
}

.m9-block-title div {
  font-weight: 800;
  font-size: 30px;
  line-height: 24px;
  padding-right: 24px;
  position: relative;
  padding-left: 16px;
}

.m9-block-title > div:before {
  content: '';
  width: 4px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 1px;
  background: linear-gradient(0deg, #CC0000 0%, #FF0000 100%);
}

.m9-block-title a:hover svg path,
.m9-block-title-big a:hover svg path{
  fill: #CC0000;
}

.m9-block-title > a:hover {
  background-color: rgba(237, 237, 237, 0.5);
}

a.has-gradient-hover.white-color:hover {
  color: rgba(36, 23, 23, 1)!important;
}


.row-with-padding {
  padding-top: 24px;
}

.has-bottom-margin {
  margin-bottom: 12px;
}

a.news-item {
  display: block;
}

.news-item-image {
  height: 170px;
  margin-bottom: 12px;
  display: block;
}

.news-item-title {
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
  color: rgba(36, 23, 23, 1);
  font-size: 22px;
  line-height: 135%;
}

.news-item-short-hidden {
  height: 22px;
  overflow: hidden;
}

.news-item-time {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}

.like-table {
  display: table;
  height: 100%;
  width: 100%;
}

.like-table > div {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.height-100 {
  height: 100%;
}

section.section {
  padding: 40px 0;
}

.m9-block-title-big {
  margin-bottom: 40px;
  position: relative;
}

.m9-block-title-big:before {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 48px;
  left: 0;
  top:3px;
  background: linear-gradient(0deg, #CC0000 0%, #FF0000 100%);
}

.m9-block-title > .news-item-more a,
.m9-block-title-big > .news-item-more a{
  font-size: 18px;
  line-height: 20px;
  font-weight: 800;
  color: rgba(36, 23, 23, 1);
}

.m9-block-title-big > .news-item-more {
  position: absolute;
  right: 0;
  bottom: 0;
}

.m9-block-title-big > div:not(.news-item-more),
.m9-block-title-big > h1 {
  font-size: 52px;
  line-height: 100%;
  font-weight: 800;
  padding: 0 120px 0 20px;
  margin: 0;
}

.m9-block-title-big > div > h1,
.m9-block-title-big > div > h2 {
  font-size: 52px;
  line-height: 100%;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0;
}

.ad-728-90 {
  width: 728px;
  height: 90px;
  margin: 40px auto 0;
  max-width: 100%;
}

.has-top-border {
  border-top: 1px solid rgba(237, 237, 237, 1);
}

.black-hover:hover {
  color: rgba(36, 23, 23, 1) !important;
}

.has-bottom-border-light {
  border-color: rgba(255, 255, 255, 0.25);
}

.text-center {
  text-align: center;
  margin-top: 28px;
}

.top-ad {
  background-color: rgba(237, 237, 237, 1);
}

.top-ad .road-block-ads-top,
.top-ad #ATD_D_728X90 {
  padding: 48px 0;
  height: 90px;
  margin: 0 auto;
}


.aside-menu-shadow {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top:0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.aside-menu-shadow.opened {
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
}

.aside-menu {
  position: absolute;
  left:0;
  top:0;
  height: 100vh;
  width: 420px;
  background-color: white;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.aside-menu-shadow.opened .aside-menu{
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.aside-menu-wrap {
  padding: 24px 30px;
  position: relative;
}

.aside-menu-close {
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  top: 24px;
  left: 30px;
}

.aside-menu-logo {
  padding-left: 64px;
  margin-bottom: 24px;
}

.ad-with-as {
  display: block;
  height: 48px;
  line-height: 48px;
  margin-bottom: 24px;
  font-size: 18px;
  color: white;
  text-align: center;
}

.ad-with-as.gradient-effect:before,
.ad-with-as.gradient-effect:after {
  z-index: 1;
}

.ad-with-as span {
  z-index: 2;
  display: block;
  position: relative;
}

.aside-menu .m9-block-title {
  margin-bottom: 12px;
}

.aside-menu .m9-block-title div {
  font-size: 24px;
  line-height: 24px;
}








.aside-menu-menu {
  margin-bottom: 24px;
}

.aside-menu-menu > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.aside-menu-menu > ul > li {
  position: relative;
}

.aside-menu-menu > ul > li > a {
  display: block;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  position: relative;
  height: 42px;
  line-height: 42px;
  color: rgba(36, 23, 23, 1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.aside-menu-menu > ul > li > .svg-open {
  height: 43px;
  width: 43px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transform: rotate(90deg);
}

.aside-menu-menu > ul > li.aside-menu-opened .svg-open {
  transform: rotate(-90deg);
}


.aside-menu-menu > ul > li > .svg-open > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}

.aside-menu-menu > ul > li > a:hover,
.aside-menu-menu > ul > li.current-menu-item > a {
  background-color: rgba(237, 237, 237, 0.3);
  padding-left: 12px;
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.aside-menu-menu > ul > li > a:hover > svg,
.aside-menu-menu > ul > li.current-menu-item > a > svg {
  -webkit-transform: translateX(-12px);
  -moz-transform: translateX(-12px);
  -ms-transform: translateX(-12px);
  -o-transform: translateX(-12px);
  transform: translateX(-12px);
}

.aside-menu-menu > ul > li > a > svg > path,
.aside-menu-menu ul li a svg path {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.aside-menu-menu > ul > li > a:hover > svg > path,
.aside-menu-menu > ul > li.current-menu-item > a > svg > path {
  fill: #CC0000;
}

.aside-menu-menu > ul > li > ul.sub-menu {
  display: none;
  list-style-type: none;
  padding-left: 10px;
}

.aside-menu-menu > ul > li > ul.sub-menu li a {
  display: block;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  position: relative;
  height: 42px;
  line-height: 42px;
  color: rgba(36, 23, 23, 1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}

.aside-menu-menu > ul > li > ul.sub-menu li a:hover {
  background-color: rgba(237, 237, 237, 0.3);
  padding-left: 12px;
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}










.aside-menu .social-text {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}

.aside-menu .social-wrap {
  text-align: center;
}

.aside-menu .social-wrap a {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  background-color: rgba(36, 23, 23, 1);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  height: 48px;
  width: 48px;
  line-height: 58px;
  text-align: center;
}

.aside-menu .social-wrap a:hover {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}

.search-wrap-shadow,
.newsletter-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(249, 250, 250, 1);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.newsletter-shadow {
  background-color: rgba(0,0,0,.5);
}

.search-wrap-shadow.opened,
.newsletter-shadow.opened {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

.search-wrap,
.newsletter-popup {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(237, 237, 237, 1);
  margin-top: 24px;
  padding: 14px 40px;
  max-height: calc(100vh - 98px);
}

.newsletter-popup {
  width: 400px;
  max-width: calc(100% - 104px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.text-right {
  text-align: right;
}

.search-close-wrap {
  position: relative;
  margin-bottom: 24px;
  height: 40px;
}

.search-close,
.close-popup-button {
  height: 40px;
  width: 40px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top:0;
}

.search-close svg path {
  transition: fill 0.3s;
}

.search-close:hover svg path {
  fill: #CC0000
}

.search-form {
  display: block;
  margin-bottom: 24px;
  position: relative;
}

.search-form input[type="text"] {
  display: block;
  width: calc(100% - 50px);
  border: 1px solid rgba(173, 173, 173, 1);
  line-height: 48px;
  height: 46px;
  outline: none;
  padding: 0 24px;
}

.search-form input[type="submit"] {
  display: block;
  border: none;
  text-align: center;
  line-height: 48px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top:0;
  cursor: pointer;
  background-image: url('../img/search.svg'), linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  background-repeat: no-repeat!important;
  background-position: center center!important;
}

input::placeholder {
  color: rgba(173, 173, 173, 1);
  font-size: 16px;
}

.search-wrap-shadow .m9-block-title-big {
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.search-wrap-shadow .m9-block-title-big > div {
  font-size: 32px;
  line-height: 100%;
}

.search-wrap-shadow .m9-block-title-big:before {
  height: 40px;
  top: -4px;
}

.search-wrap-shadow .m9-block-title-big > .news-item-more {
  bottom: 25px;
}

.m9-block-title-big.white-color-after:before {
  background: white!important;
}


.search-results::-webkit-scrollbar {
  width: 5px;
}

.search-results::-webkit-scrollbar-track {
  background: #eee;
}
.search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
}


.search-results * {
  scrollbar-width: thin;
  scrollbar-color: #CC0000 #FF0000;
}


.search-results-item {
  margin-bottom: 24px;
}

.search-results-item .news-item-image {
  width: 340px;
  height: 180px;
  margin-bottom: 0;
}

.search-results-item .news-item-time {
  margin-bottom: 0;
}

.search-results {
  overflow-y: auto;
  max-height: calc(100vh - 314px);
  overflow-x: hidden;
}

.p-r-30 {
  padding-right: 30px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.ad-250 {
  text-align: center;
}

.m-b-12 {
  margin-bottom: 12px;
}

.m-b-0 {
  margin-bottom: 0;
}

.section-newsletter {
  background-color: rgba(233, 233, 233, 1);
}

.newsletter-text {
  padding-left: 66px;
  background: url('../img/newsletter.svg') no-repeat;
  background-position: left center!important;
  background-size: 44px 44px!important;
}

.newsletter-text-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 12px;
}

.newsletter-form {
  text-align: right;
}

.newsletter-form input[type="submit"]{
  height: 44px;
  line-height: 44px;
  background-color: rgba(36, 23, 23, 1);
  color: white;
  padding: 0 32px;
  border: none;
  cursor: pointer;
}

.newsletter-form input[type="email"]{
  height: 42px;
  line-height: 42px;
  background-color: white;
  padding: 0 15px;
  outline: none!important;
  width: calc(100% - 159px);
  font-size: 12px;
  margin-top: 10px;
  border: 1px solid white;
  position: relative;
  top: -1px
}
.newsletter-form input[type="email"].error {
  border-color: red
}

footer {
  background-color: rgba(16, 16, 16, 1);
  padding: 40px 0;
}

.footer-logo .logo-text {
  margin-top: 2px;
  font-size: 14px;
  line-height: 100%;
}

.footer-text {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 300px;
  max-width: 100%;
}

.footer-widget {
  margin-bottom: 12px;
}

.footer-widget-title {
  color: white;
  font-weight: 700;
  font-size: 22px;
  line-height: 20px;
  margin-bottom: 12px;
}

.footer-widget-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer-widget-menu ul li {
  margin-bottom: 12px;
}

.footer-widget-menu ul li a {
  color: white;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.footer-widget-menu ul li a:hover {
  background: linear-gradient(270deg, #CC0000 0%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer-widget-social a {
  margin-right: 7px;
  display: inline-block;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 33px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.footer-widget-social a:hover {
  background-color: white;
}

.footer-widget-social a svg.whatsapp path,
.footer-widget-social a svg.facebook path,
.footer-widget-social a svg.youtube path {
  -webkit-transition: fill 0.3s;
  -moz-transition: fill 0.3s;
  -ms-transition: fill 0.3s;
  -o-transition: fill 0.3s;
  transition: fill 0.3s;
}

.footer-widget-social a svg.whatsapp path,
.footer-widget-social a svg.facebook path,
.footer-widget-social a svg.youtube path {
  fill: white
}

.footer-widget-social a:hover svg.whatsapp path,
.footer-widget-social a:hover svg.facebook path,
.footer-widget-social a:hover svg.youtube path {
  fill: #241717
}

.footer-widget-social a svg.instagram path,
.footer-widget-social a svg.twitter path {
  -webkit-transition: stroke 0.3s;
  -moz-transition: stroke 0.3s;
  -ms-transition: stroke 0.3s;
  -o-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.footer-widget-social a svg.instagram path,
.footer-widget-social a svg.twitter path {
  stroke: white
}

.footer-widget-social a:hover svg.instagram path,
.footer-widget-social a:hover svg.twitter path {
  stroke: #241717
}

.breadcrumbs > * {
  display: inline-block;
  margin-right: 10px;
}

.breadcrumbs a,
.breadcrumbs span {
  line-height: 20px;
  color: rgba(36, 23, 23, 1);
  font-size: 12px;
}

.breadcrumbs-delimiter {
  position: relative;
  top: 2px
}


.breadcrumbs-ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-ol li {
  display: inline-block;
  margin-right: 10px;
}

.breadcrumbs-ol li.sep svg {
  position: relative;
  top:3px;
}

.breadcrumbs-ol li a,
.breadcrumbs-ol li {
  line-height: 20px;
  color: rgba(36, 23, 23, 1);
  font-size: 12px;
  position: relative;
}
/*
.breadcrumbs-ol li:after {
  content: '';
  position: absolute;
  top: 2px;
  right: -27px;
  width: 17px;
  height: 17px;
  background: url('../img/breadcrumb-delimiter.svg') no-repeat;
}*/

.breadcrumbs-ol li:last-child:after {
  display: none;
}

.news-item.news-item-rounded {
  padding: 12px 0;
}

.news-item.news-item-rounded.news-item-rounded-small-p18 {
  padding: 18px 0;
}

.news-item-rounded .col-auto {
  padding-left: 0;
}

.news-item-rounded .col {
  max-width: calc(100% - 120px);
}

.news-item.news-item-rounded .news-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
}

.news-item.news-item-rounded .news-item-image {
  height: 120px;
  width: 120px;
  border-radius: 100%;
  margin-bottom: 0;
}

.news-item-just-image {
  height: 360px;
  display: block;
}

.home-twit-item-inner-full-height {
  height: 100%;
}

.home-twit-item-inner-full-height > div.twitter-tweet {
  height: 100%!important;
  display: block!important;
  width: 300px!important;
  margin-left: auto;
  margin-right: auto;
}

.home-twit-item-inner-full-height > div.twitter-tweet > iframe {
  min-width: 100%!important;
  max-width: 100%!important;
  overflow: visible;
  min-height: 100%;
}

.news-item.news-item-rounded.news-item-rounded-custom .news-item-image {
  height: 170px;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 0;
}

.news-item.news-item-rounded.news-item-rounded-custom .col-auto {
  padding-left: 12px;
}

.news-item.news-item-rounded.news-item-rounded-custom .news-item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
}

.news-item.news-item-rounded.news-item-rounded-custom .col {
  max-width: 100%;
}

.newsletter-form-notice {
  font-size: 12px;
  padding-top: 10px;
}

.newsletter-popup-title {
  text-align: center;
  margin: 15px 0;
  font-size: 20px;
  line-height: 135%;
  font-weight: 600;
}

.newsletter-popup-sub-title {
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 135%;
  text-align: center;
}

.newsletter-popup-button {
  text-align: center;
}

.newsletter-popup-button > div {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  margin-bottom: 24px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  cursor: pointer;
}

.accordion-heading a:after {
  display: none!important;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.news-item-rounded.news-item-rounded-square .news-item-image {
  border-radius: 0;
}

.like-select-filter {
  border: 1px solid rgb(237 237 237);
  display: inline-block;
  padding: 0!important;
  background-color: white;
  position: relative;
  top: -2px
}

.m9-block-title-big div.like-select-filter {
  top: -7px
}

.m9-block-title div.like-select-filter-current,
.m9-block-title-big div.like-select-filter-current{
  color: rgb(255 0 0);
  font-weight: bold;
  font-size: 12px;
  line-height: 24px;
  position: relative;
  cursor: pointer;
  padding: 0!important;
}

.m9-block-title div.like-select-filter-current span,
.m9-block-title-big div.like-select-filter-current span{
  display: block;
  padding: 0 30px 0 10px !important;
  min-width: 140px;
}

.m9-block-title div.like-select-filter-current svg,
.m9-block-title-big div.like-select-filter-current svg{
  position: absolute;
  right: 6px;
  top: 6px;
  transform: rotate(90deg);
  transition: transform 0.3s
}

.m9-block-title .like-select-filter.opened div.like-select-filter-current svg,
.m9-block-title-big .like-select-filter.opened div.like-select-filter-current svg{
  transform: rotate(270deg);
}

.m9-block-title div.like-select-filter-current svg path,
.m9-block-title-big div.like-select-filter-current svg path{
  fill: #C00;
}

.like-select-filter-dropdown {
  position: absolute!important;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: white;
  margin-left: -1px;
  border-left: 1px solid rgb(237 237 237);
  border-right: 1px solid rgb(237 237 237);
  border-bottom: 1px solid rgb(237 237 237);
  padding: 0 0 10px!important;
  width: 100%;
}

.like-select-filter-dropdown .like-select-filter-dropdown-item {
  padding: 2px 0;
  border-bottom: 1px solid rgb(237 237 237);
  margin: 0 10px;
  font-size: 12px;
  font-weight: normal;
  transition: color 0.3s;
  cursor: pointer;
  line-height: 24px;
}

.like-select-filter-dropdown .like-select-filter-dropdown-item:hover  {
  color: rgb(255 0 0);
}

.like-select-filter.opened .like-select-filter-dropdown {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0px);
}

.loaded-by-ajax {
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.ajax-next-page {
  width: 25px;
  cursor: pointer;
  display: inline-block;
  margin-left: 15px;
  position: relative;
  top: 6px;
  padding: 0!important;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.m9-block-title-big .ajax-next-page {
  top: 0
}

.ajax-next-page.opened {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.ads-wrap {
  position: relative;
}

.ads-wrap .ads-wrap-label {
  color: rgba(0,0,0,0.2);
  font-size: 12px;
  letter-spacing: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ads-wrap > ins,
.ads-wrap > ins > div,
.ads-wrap > ins > div > iframe{
  max-width: 100%!important;
  margin: 0 auto!important;
}

.footer-blocks {
  background-color: rgb(16 16 16);
  padding: 30px 0 0;
}

.footer-blocks .block-item {
  margin-bottom: 30px;
}

.footer-blocks .block-item .footer-blocks-title {
  font-size: 30px;
  line-height: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white
}

.footer-blocks .block-item .footer-blocks-title a {
  font-size: 30px;
  line-height: 24px;
  font-weight: 800;
  color: white;
}

.footer-blocks .block-item .footer-blocks-body {
  border: 1px solid rgb(237 237 237);
  padding: 15px 15px 0 15px;
}

.footer-blocks .block-item .footer-blocks-body a {
  color: white;
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding-bottom: 15px;

  opacity: .5;
  font-style: italic;
}

.footer-blocks .block-item .footer-blocks-body span.sep {
  padding: 0 15px;
  color: white;
  opacity: .5;
}

.footer-blocks .block-item .footer-blocks-body > span.sep:last-child {
  display: none;
}

.footer-blocks .block-item .footer-blocks-body a:hover {
  text-decoration: underline;
}

@media all and (max-width: 1399px) and (min-width: 1200px) {
  .header-social-wrap {
    position: relative;
  }

  .header-social {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 160px;
    background-color: white;
    transform: translateY(100%);
    border: 1px solid rgb(237, 237, 237);
    padding: 7px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }

  .header-social-wrap:hover .header-social {
    opacity: 1;
    z-index: 3;
  }

}


@media all and (max-width: 1199px) {
  .news-item-big-banner,
  .tablet-m-b-40 {
    margin-bottom: 40px;
  }

  .tablet-m-b-20 {
    margin-bottom: 20px;
  }

  .ad-250 {
    text-align: center;
  }

  .tablet-has-bottom-border {
    border-bottom: 1px solid rgba(237, 237, 237, 1);
  }

  .mobile-sm-p-t-0 {
    padding-top: 0!important;
    padding-bottom: 0!important;
  }

  .telugu-news-block {
    margin-top: 20px;
  }

  .tablet-m-b-0 {
    margin-bottom: 0
  }
}

@media all and (max-width: 1199px) and (min-width: 992px) {
  .news-item-rounded .col {
    max-width: 100%;
  }

  .news-item.news-item-rounded .news-item-image {
    margin-bottom: 12px;
    width: 100%;
    height: 170px;
    border-radius: 0;
  }

  .news-item-rounded .col-auto {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media all and (max-width: 991px) and (min-width: 768px) {
  .mobile-half .news-item-image {
    width: 50%;
    margin-right: 24px;
    float: left;
  }
}


@media all and (max-width: 991px) {
  .mobile-m-b-40 {
    margin-bottom: 40px;
  }

  .mobile-m-b-40 {
    margin-bottom: 24px;
  }

  .height-100 {
    padding-bottom: 12px;
  }

  .search-results-item .news-item-image {
    width: 180px;
    height: 180px;
  }

  .top-client-ad {
    height: auto!important;
  }

}


@media all and (max-width: 767px) {
  body, html {
    overflow-x: hidden;
  }
  .search-wrap {
    padding: 24px 24px;
    max-height: calc(100vh - 66px);
  }

  section.green-section .news-item-short {
    height: auto!important;
    margin-bottom: 12px;
  }

  section.green-section .news-item {
    margin-bottom: 24px;
  }

  .header-trending {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 20px;
  }

  .header-trending-wrap {
    width: max-content;
    position: absolute;
    left: 0;
    top:0;
    text-align: left;
    height: 20px;
  }

  .header-trending {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
  }

  .header-trending::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .search-results-item .height-100 {
    padding-bottom: 0!important;
  }

  .search-results-item .has-bottom-border {
    border-bottom: none;
  }

  .search-results-item .news-item-image {
    width: 90px;
    height: 90px;
  }

  .search-results-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgb(237 237 237);
  }

  .search-results-item .news-item-title {
    font-size: 16px;
    line-height: 135%;
  }

  .mobile-more-button a {
    display: block;
    border: 1px solid rgba(36, 23, 23, 1);
    text-align: center;
    height: 38px;
    line-height: 38px;
    color: rgba(36, 23, 23, 1);
    font-size: 16px;
    font-weight: 600;
  }

  .mobile-more-button a span {
    position: relative;
    display: inline-block;
  }

  .mobile-more-button a span:after {
    content: '\27F6';
    color: red;
    position: absolute;
    top: -4px;
    right: -40px;
    font-size: 28px;
  }

  .mobile-more-button.mobile-more-button-white  a {
    border-color: white;
    color: white;
  }

  .has-image-mobile-gradient-type-3:before {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0) 42.79%, rgba(248, 248, 248, 0.477273) 62.98%, #FDFDFD 85.1%);
    border: 1px solid rgba(234, 234, 234, 1)
  }

  .mobile-dark-color {
    color: rgba(18, 18, 18, 1)!important;
  }

  .live-bo-mobile {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(237, 237, 237, 1);
    border-bottom: 1px solid rgba(237, 237, 237, 1);
  }

  .live-bo-mobile .m9-block-title.m9-block-title-category > div > a {
    top: -3px;
  }

  .live-bo-mobile .m9-block-title div {
    padding-right: 0;
  }

  .live-bo-mobile .live-bo-mobile-visible .live-bo-item {
    padding: 0;
  }

  .live-bo-mobile .live-bo-mobile-visible .row > div:first-child,
  .live-bo-mobile .live-bo-mobile-visible .row > div:nth-child(2) {
    padding-right: 0;
  }

  .live-bo-more {
    display: inline-block;
    height: 24px;
    width: 24px;
    cursor: pointer;
  }

  .live-bo-more > img {
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .live-bo-mobile-hidden {
    display: none;
  }

  .live-bo-mobile-hidden .live-bo-item {
    padding-right: 0;
  }

  .live-bo-mobile-hidden > .live-bo-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .live-bo-mobile-hidden > .live-bo-item:first-child  {
    border-top: 1px solid rgb(237 237 237);
    margin-top: 20px;
  }
  
  .live-bo-mobile.opened .live-bo-more > img {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .second-mobile-menu {
    background: rgba(234, 234, 234, 1);
    border-bottom: 1px solid rgba(237, 237, 237, 1);
  }

  .second-mobile-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
  }

  .second-mobile-menu ul li {
    display: inline-block;
    margin-right: 28px;
    position: relative;
  }

  .second-mobile-menu ul > li:last-child {
    margin-right: 0;
  }

  .second-mobile-menu ul li:after {
    content: '';
    background: url('../img/bullet.svg') no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    right: -23px;
    top: 8px;
  }

  .second-mobile-menu ul li:last-child:after {
    display: none;
  }

  .second-mobile-menu ul li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgba(36, 23, 23, 1);
    padding: 8px 0;
    display: block;
  }

  .second-mobile-menu ul li.current-menu-item a {
    font-weight: 700;
  }

  .second-mobile-menu ul li.current-menu-item:before {
    content: '';
    background-color: rgba(18, 18, 18, 1);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom:0;
    left: 0;
  }

  .aside-menu {
    max-width: 100%;
  }

  .news-item-big-banner .mews-item-body {
    padding: 18px 16px;
  }

  .mobile-m-b-0 {
    margin-bottom: 0;
  }

  .live-bo-mobile .m9-block-title {
    margin-bottom: 0;
  }

  .m9-block-title-big > div:not(.news-item-more) {
    padding: 0 20px 0 20px;
    font-size: 36px;
  }

  .m9-block-title-big > div > h1,
  .m9-block-title-big > div > h2 {
    font-size: 36px;
    line-height: 100%;
  }

  .custom-margin {
    margin-bottom: 20px;
  }

  .news-item-rounded.news-item-rounded-square .news-item-title {
    margin-bottom: 6px;
  }

  .news-item.news-item-rounded .news-item-title.mobile-big-font {
    font-size: 16px;
    line-height: 135%;
  }

  span.home-gallery-controls {
    position: static!important;
    margin-top: 16px;
    text-align: right;
    margin-bottom: 10px;
  }

  .home-gallery-controls svg {
    height: 32px;
    width: 32px;
    margin-left: 7px;
  }

  .tablet-big-banner {
    height: 360px;
  }

  .custom-margin-top {
    margin-top: 20px;
  }

  .swiper-mobile-filter {
    margin-bottom: 20px;
  }

  .swiper-mobile-filter-item {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(18, 18, 18, 1);
    cursor: pointer;
    border-radius: 4px;
    margin: 3px 5px;
  }

  .swiper-mobile-filter .swiper-slide {
    width: auto;
    cursor: pointer
  }

  .swiper-mobile-filter .swiper-slide .swiper-mobile-filter-item.active {
    background-color: rgba(255, 1, 0, 1);
    color: #fff;
    outline: 1px solid rgba(255, 1, 0, 1);
    outline-offset: 2px;
    position: relative;
  }

  .home-custom-block a {
    display: block;
    position: relative;
    background-color: #009CFF;
    padding: 56px 16px 16px;
    height: auto!important;
  }

  .home-custom-block a .label {
    position: absolute;
    top: -6px;
    left: 0;
    background-color: #1665cf;
    color: white;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 500;
    padding: 0 8px;
  }

  .home-custom-block a .news-item-time {
    position: absolute;
    top: 24px;
    color: white!important;
  }

  .home-custom-block a .news-item-title {
    color: white;
    font-weight: 500;
    margin-bottom: 4px!important;
    font-size: 18px;
  }

  .home-custom-block a .news-item-title:hover {
    background: linear-gradient(270deg,white 0%,white 100%);
    background: transparent;
    color: white;
    -webkit-text-fill-color: white;
  }

  .home-custom-block a .news-item-more {
    color: white;
    font-size: 14px;
  }

  .home-custom-block a .news-item-more svg path {
    fill: white;
  }

  .home-custom-block a .news-item-more svg {
    top: 3px
  }


  .news-item.has-label .label {
    position: absolute;
    top: -6px;
    left: 0;
    z-index: 2;
    height: 22px;
    line-height: 22px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 500;
  }

  .news-item.has-label .label.black-label {
    color: white;
    background-color: rgba(18, 18, 18, 1);
  }

  body.hidden-view section.home-hero {
    padding-bottom: 0;
  }

  body.hidden-view .hidden-view-margin {
    margin-bottom: -19px;
  }

  .footer-blocks .block-item .footer-blocks-body a {
    display: block;
    text-align: center;
  }

  .footer-blocks .block-item .footer-blocks-title {
    text-align: center;
  }

  .footer-blocks .block-item .footer-blocks-body span.sep {
    display: none;
  }


}

@media all and (max-width: 575px) {
  section.section {
    padding: 20px 0;
  }

  .news-item-big-banner {
    margin-bottom: 0;
  }

  .news-item {
    margin-bottom: 12px;
  }

  .news-item .news-item-time {
    margin-bottom: 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  .news-item-rounded .col-auto {
    padding-right: 12px!important;
  }

  .m9-block-title-big .news-item-more a span {
    display: none;
  }

  .m9-block-title-big > div:not(.news-item-more) {
    padding: 0 20px 0 20px;
    font-size: 28px;
  }

  .m9-block-title-big > div > h1,
  .m9-block-title-big > div > h2 {
    font-size: 28px;
    line-height: 100%;
  }

  .mobile-sm-m-b-40 {
    margin-bottom: 40px;
  }

  .mobile-sm-m-b-20 {
    margin-bottom: 20px;
  }

  .mobile-sm-text-center {
    text-align: center;
  }

  .search-results-item .height-100 {
    padding-bottom: 0!important;
  }

  .search-results-item .news-item-time {
    margin-bottom: 16px;
  }

  .logo-main {
    text-align: center;
  }

  .news-item-category > span,
  .news-item-category > a {
    line-height: 20px;
    padding: 0 16px;
    height: 20px;
    font-size: 10px;
  }

  .header-bottom .header-bottom-trend,
  .header-trending a {
   font-size: 12px;
  }

  .news-item-title.big-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 135%;
  }

  body,
  .news-item-short,
  .news-item-more {
    font-size: 16px;
    line-height: 135%
  }

  .mobile-sm-height-auto {
    height: auto;
  }

  .news-item-big-banner {
    height: 180px;
  }

  .news-item-title {
    font-size: 16px;
    line-height: 135%
  }

  .news-item-big-banner .mews-item-body {
    padding: 16px 18px;
    width: calc(100% - 36px);
  }

  .news-item-big-banner .mews-item-body .news-item-title {
    margin-bottom: 0;
  }

  .news-item-big-banner .mews-item-body  .news-item-category > a {
    margin-bottom: 4px;
  }

  .m9-block-title div {
    font-size: 24px;
    line-height: 20px;
  }

  .telugu-news-block-item-title {
    font-size: 16px;
    line-height: 24px;
  }

  .news-item.news-item-rounded .news-item-title {
    font-size: 16px;
    line-height: 135%;
  }

  .m9-block-title-big::before {
    width: 4px;
    height: 24px;
    top: 3px;
  }

  .m9-block-title a,
  .m9-block-title-big a {
    display: none;
  }

  .news-item-just-image {
    height: 240px;
    margin-bottom: 12px;
  }

  .m9-block-title-big {
    margin-bottom: 24px;
  }

  section.section {
    padding: 20px 0;
  }

  .swiper-home-gallery-item, .swiper-home-gallery {
    height: 30px;
  }

  .news-item.news-item-rounded .news-item-image {
    height: 90px;
    width: 90px;
  }

  .news-item-rounded .col {
    max-width: calc(100% - 90px);
  }

  .news-item-image {
    height: 154px;
  }

  section.green-section .news-item-image {
    height: 240px!important;
    margin-bottom: 12px!important;
  }

  section.green-section .news-item-short {
    margin-bottom: 12px!important;
  }

  section.section .ad-728-90 {
    height: auto;
    margin-top: 0;
  }

  .swiper-home-gallery-item,
  .swiper-home-gallery {
    height: 310px!important;
  }

  .news-item-just-image-big,
  .news-item-just-image-435 {
    height: 240px!important;
  }

  .height-100 {
    height: auto!important;
  }

  .mobile-sm-m-b-0 {
    margin-bottom: 0!important;
  }

  .mobile-sm-p-t-0 {
    padding-top: 12px!important;
    padding-bottom: 12px!important;
  }

  .footer-text {
    width: 100%!important;
  }

  .mobile-footer-sm .footer-widget {
    border-bottom: 1px solid rgba(130, 130, 130, 1);
    margin-bottom: 0!important;
    padding-bottom: 16px;
  }

  .mobile-footer-sm {
    margin-bottom: 20px;
  }

  .mobile-footer-sm .footer-widget ul > li:last-child {
    margin-bottom: 0;
  }

  .m9-block-title-big > h1 {
    font-size: 28px;
    line-height: 100%;
  }

  .category-section .news-item-big-banner {
    margin-bottom: 12px!important;
    height: 180px!important;
  }

  .category-banner {
    height: 180px!important;
  }


  .category-row > div:nth-child(3n+1) .category-news-item:after,
  .category-row > div:nth-child(3n+2) .category-news-item:after,
  .category-row > div:nth-child(3n+3) .category-news-item:after{
    width: 100%!important;
    left: 0!important;
  }

  .m-t-24 {
    margin-top: 20px;
  }

  .m9-block-title {
    margin-bottom: 22px;
  }

  .mobile-more-button {
    margin-top: 8px;
  }

  .mobile-sm-m-b-16 {
    margin-bottom: 16px!important;
  }

  .mobile-sm-m-b-6 {
    margin-bottom: 6px;
  }

  .mobile-sm-has-bottom-border {
    border-bottom: 1px solid rgb(237 237 237);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .telugu-news-block.has-bottom-margin {
    margin-bottom: 0;
  }

  section.section.colored-section.green-section .news-item-title {
    font-size: 18px;
    line-height: 135%;
    margin-bottom: 6px;
  }

  section.section.colored-section .news-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  section.section.colored-section .mobile-more-button {
    margin-top: 0;
  }

  .title-big {
    font-size: 18px;
    line-height: 135%;
    margin-bottom: 12px;
  }

  section.section .news-item-title.big-title {
    margin-bottom: 12px;
  }

  section.colored-section .news-item-short {
    font-size: 16px;
    line-height: 135%;
  }

  .news-item.news-item-rounded.news-item-rounded-custom .news-item-image {
    height: 90px;
    width: 90px;
    margin-bottom: 0;
    border-radius: 45px;
  }

  .news-item.news-item-rounded.news-item-rounded-custom .col-auto {
    padding-left: 0;
  }

  .news-item.news-item-rounded.news-item-rounded-custom .news-item-title {
    font-size: 16px;
    line-height: 135%;
    margin-bottom: 6px;
  }

  .news-item.news-item-rounded.news-item-rounded-custom .col {
    max-width: calc(100% - 90px);
  }

  .mobile-sm-no-top-border {
    border-top: none
  }

  section.section.colored-section .news-item.colored-small {
    padding-bottom: 0;
  }

  .newsletter-form input[type="email"] {
    width: calc(100% - 32px);
    margin-bottom: 12px;
  }

  .newsletter-form input[type="submit"] {
    width: 100%;
  }

  .newsletter-text-title {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
  }

  .newsletter-text-subtitle {
    text-align: center;
  }

  .newsletter-text-title svg {
    width: 24px;
    height: auto;
    position: relative;
    top: 4px;
    margin-right: 6px;
  }

  .newsletter-text {
    padding-left: 0;
    background: none!important;
  }

  .aside-menu-logo svg {
    width: 196px;
    height: auto;
  }

  .live-bo-item-title {
    font-size: 15px;
    line-height: 20px;
  }

  .mobile-big-banner .news-item-big-banner {
    height: 240px;
  }

  .mobile-big-banner .news-item-title a {
    font-size: 18px;
    line-height: 135%;
  }

  .logo-main a {
    position: relative;
    left: 20px;
  }

  .m9-block-title.m9-block-title-category > div > a {
    line-height: 20px;
    font-size: 12px;
  }

  .live-bo-item-price {
    font-size: 16px;
    line-height: 20px;
  }

  .m9-block-title-category {
    margin-bottom: 16px;
  }

  .mobile-sm-m-t-12 {
    margin-top: 12px;
  }

  .m9-block-title-category.mobile-sm-m-b-6 {
    margin-bottom: 0!important;
  }

  .home-custom-excerpt {
    max-height: 65px;
    overflow: hidden;
  }

  .news-item-short {
    max-height: 65px;
    overflow: hidden;
  }

  .logo-main img {
    width: 180px;
  }

  .live-bo-mobile .m9-block-title.m9-block-title-category > div > a {
    top: 0;
  }

  .custom-margin {
    margin-bottom: 0;
  }

  .tablet-big-banner {
    height: 240px;
  }

  .no-right-gap {
    margin-right: -12px;
  }

  .col.live-bo-has-padding.text-right {
    padding-left: 0;
  }
}