html{
    overflow-x: hidden;
}
:root {
    --primary-color: #221e54;
    --secondary-color: #ee9420;
    --txt-color1: #2b2b2b;
    --txt-color2: #221e54;
    --txt-color3: #ee9420;
}
body{
  padding: 0;
  margin: 0;
  background: #fff;
  color: #2c2c2c;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /*overflow-x: hidden;*/
}
.overflowon{
  overflow-y: auto;
}
.overflowoff{
  overflow-y: hidden; 
}

*{
    outline: none!important;
    transition: .2s ease-in-out;
}
img{
    max-width: 100%;
}
a{
    text-decoration: none!important;
}
section{
  position: relative;
}

/*Display control*/
  .m_on{
    display: none;
  }
  .displayoff{
    display: none!important;
  }
/*end*/


.captext{
  text-transform: uppercase;
}
hr{
  border-top: 1px solid rgb(51 51 51 / 25%);
  opacity: 1;
}
.bdr_t{
  border-top: 1px solid #e2e2e2;
}
.bdr_b{
  border-bottom: 1px solid #e2e2e2;
}


/*Padding*/
  .paddZero{
    padding: 0!important;
  }
  .plr_0{
    padding-left: 0;
    padding-right: 0;
  }
  .pddt_30{
    padding-top: 30px;
  }
  .pddb_30{
    padding-bottom: 30px;
  }
  .pddt_50{
    padding-top: 50px;
  }
  .pddb_50{
    padding-bottom: 50px;
  }
  .pddt_70{
    padding-top: 70px;
  }
  .pddb_70{
    padding-bottom: 70px;
  }
/*End*/

/*Margin*/
  .m_0{
    margin: 0!important;
  }
  .mt_0{
    margin-top: 0!important;
  }
  .mb_0{
    margin-bottom: 0!important;
  }
  .mt_30{
    margin-top: 30px;
  }
  .mt_50{
    margin-top: 50px;
  }
  .mt_70{
    margin-top: 70px;
  }
  .mb_30{
    margin-bottom: 30px;
  }
  .mb_50{
    margin-bottom: 50px;
  }
  .mb_70{
    margin-bottom: 70px;
  }
/*end*/

/*Scroll bar*/
  /* width */
  ::-webkit-scrollbar {
    width: 7px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
  }
/*end*/

/*breadcrumb*/
  .breadcrumb_cont{
    background: var(--secondary-color);
    padding: 5px 0;
  }
  .breadcrumb{
    margin: 0;
  }
  .breadcrumb a{
    color: var(--txt-color2);
  }
  .breadcrumb span{
    color: var(--txt-color1);
  }
/*end*/

/*swiper*/
  .swiper-button-next, .swiper-button-prev{
      width: 40px;
      height: 40px;
      background: var(--secondary-color);
      border-radius: 50%;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
      font-size: 20px;
      color: #fff;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    left: 0;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    right: 0;
  }
/*end*/

/*Heading*/
  header{
    height: 122px;
  }
  .navbar {
    margin-bottom: 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border: 0;
    padding: 7px 0 0;
    font-size: 12px !important;
    font-weight: normal;
    line-height: 1.4 !important;
    border-radius: 0;
    box-shadow: 0 0 25px rgb(0 0 0 / 0.2);
  }
  .navbar .main-header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    flex-grow: 1;
    background: #fff;
  }
  .navbar .main-header .navbar-brand{
    height: unset;
    padding: 5px 0;
    width: 200px;
  }
  .navbar .main-header .mainmenu{
    width: calc(100% - 400px);
  }
  .navbar .main-header .menubtn{
    width: 200px;
    text-align: right;
  }
  .navbar-nav li a:hover, .navbar-nav li.active a {
    color: #f4511e !important;
    background-color: #fff !important;
  }
  .navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
  }
  .navbar .brand{
    width: auto;
    height: 70px;
    object-fit: contain;
  }
  .squize.navbar .brand{
    /*max-width: 75px;*/
  }
  .navbar-default .navbar-collapse{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .navbar .menu{
    padding: 0;
    text-align: center;
    margin: 0;
  }
  .squize.navbar .menu{
    margin: 10px 0 0;
  }
  .navbar .menu.menu-text-left{
    text-align: left;
  }
  .navbar-default .navbar-toggle {
    background: transparent !important;
    /*display: none;*/
  }

  .navbar-toggle .icon-bar {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 5px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--primary-color);
  }

  .navbar-toggle .icon-bar+.icon-bar {
    margin-top: 5px;
    transition: .5s;
  }

  .navbar-default .navbar-toggle .icon-bar:nth-child(2) {
    width: 82%;
  }

  .navbar-default .navbar-toggle .icon-bar:nth-child(3) {
    width: 50%;
  }

  .navbar-default .navbar-toggle.collapsed .icon-bar {
    width: 28px;
  }

  .navbar-default .navbar-collapse:hover {
    overflow: visible !important;
  }

  .navbar-collapse.collapse[aria-expanded="false"] {
    visibility: hidden;
    opacity: 0;
  }
  .navbar .menu li{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 5px 5px;
    margin: 0 0px;
    font-size: 14px;
    border-radius: 2px;
    font-weight: 400;
  }
  .navbar .mainmenu .menu li{
    border-radius: 20px;
  }
  .navbar .menu li:hover{
    background: #f0f0f0;
  }
  .navbar .menu li a{
    text-decoration: none;
    color: var(--txt-color1);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .navbar .mainmenu .menu li a {
    display: block;
    padding: 8px;
  }
  .navbar .menu li a svg{
    width: 20px;
  }
  .navbar .mainmenu .menu li a svg{
    display: block;
    text-align: center;
    margin: 0 auto 5px auto;
  }
  .navbar .menu li.special a{    
    background: var(--secondary-color);
    border-radius: 5px;
    color: var(--txt-color1);
  }
  .navbar .menu li.menu-item-has-children a{
    padding-right: 20px!important;
  }
  .navbar .menu li:hover a{
    color: var(--txt-color1); 
  }
  .menu-item-has-children:after{
    content: "\f107";
    position: relative;
    right: 10px;
    top: 0px;
    color: #000;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
  }
  .navbar .menu li:hover:after{
    color: var(--primary-color);
  }
  .navbar .menu .sub-menu{
    padding: 0;
    position: absolute;
    max-height: 500px;
    overflow-y: auto;
    width: 200px;
    right: 0;
    top: 100px;
    display: none;
    background: #fff;
    z-index: 9;
    transition: .2s;
    border-radius: 2px;
    box-shadow: 0px 15px 20px rgb(0 0 0 / 12%);
  }
  .navbar .menu .col .sub-menu{
    width: auto;
    list-style: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 5px;
    -moz-column-gap: 5px;
    column-gap: 5px;
    padding-left: 0;
  }
  .navbar .menu li:hover > .sub-menu{
    display: block;
    top: 36px;
    background: inherit;
  }
  .navbar .menu .sub-menu li{
    display: block;
    text-align: left; 
    margin: 0;
  }
  .navbar .menu .col .sub-menu li{
    min-width: 150px;
  }
  .navbar .menu .sub-menu li:hover{
    background: rgb(255 255 255 / 12%);
  }
  .navbar .menu .sub-menu li a{
    color: #000;
    letter-spacing: 0;
    width: 100%;
    display: block;
    padding: 2px 10px;
  }
  .navbar .menu .sub-menu li:hover a{
    color: white;
  }
  .navbar .menu .sub-menu .sub-menu{
    width: 250px;
    right: 50%;
    top: 0;
    background: #e5f4ff;
    z-index: -1;
    border-radius: 10px 0px 10px 10px;
  }
  .navbar .menu .sub-menu .sub-menu li a{
    color: black;
  }
  .navbar .menu .sub-menu .sub-menu li:hover a{
    color: #0043ff;
  }
  .navbar .menu .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    left: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0;
    background: var(--lightgray);
  }
  .navbar .menu .sub-menu li.menu-item-has-children:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:after, .navbar .btcats .menu li .fa-angle-down, .navbar .btcats .menu li .fa-angle-up{
    position: absolute;
    width: 10px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(0deg);
    transition: .2s;
    right: 10px;
    font-size: 12px;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:hover:after, .navbar .btcats .menu li:hover .fa-angle-down, .navbar .btcats .menu li:hover .fa-angle-up{
    transform: translateY(-50%) rotate(-180deg);
  }
  .navbar .btcats{
    margin-top: 7px;
    padding: 0;
    background: var(--secondary-color);
  }
  .navbar .btcats .container{
    width: 100%;
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .navbar .btcats .menucont{
    position: relative;
    padding: 0 70px 0 0;
  }
  .navbar .btcats .h_search{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .navbar .btcats .h_search .search_btn{
    background: rgb(0 0 0 / 0%);
    color: var(--txt-color1);
  }
  .navbar .btcats .menu{
    margin: 0;
    text-align: left;
  }
  .navbar .btcats .menu ul{
    padding: 0;
    margin: 0;
  }
  .navbar .btcats .menu li{
    margin: 0;
    padding: 0px 10px;
    text-align: center;
    font-size: 16px;
    border-radius: 0;
  }
  .navbar .btcats .menu li:hover{
    background: var(--primary-color);
  }
  .navbar .btcats .menu .sub-menu li:hover{
    background: var(--secondary-color);
  }
  .navbar .btcats .menu .sub-menu li:hover a{
    color: #fff;
    opacity: 1;
  }
  .navbar .btcats .menu .sub-menu li{
    text-align: left;
    padding: 0;
    font-size: 16px;
  }
  .navbar .btcats .menu li a{
    color: var(--primary-color);
    letter-spacing: 0;
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
  }
  .navbar .btcats .menu li:hover > a{
    color: #fff;
  }
  .navbar .btcats .menu .sub-menu li a{
    padding: 7px 10px;
    color: #fff;
    font-size: 13px;
  }
  .navbar .btcats .menu-item-has-children:after{
    display: none;
  }
  .navbar .btcats .menu-item-has-children:after, .navbar .btcats .menu li .fa-angle-down, .navbar .btcats .menu li .fa-angle-up{
    color: inherit;
  }
  .navbar .btcats .menu li:hover:after{
    color: white;
  }
  /* width */
  .btcats .sub-menu::-webkit-scrollbar {
    width: 5px;
  }
  /* Track */
  .btcats .sub-menu::-webkit-scrollbar-track {
    background: #fff;
  }
  /* Handle */
  .btcats .sub-menu::-webkit-scrollbar-thumb {
    background: #ff3636; 
  }
  /* Handle on hover */
  .btcats .sub-menu::-webkit-scrollbar-thumb:hover {
    background: #ff3636; 
  }
  /*header search*/
  .navbar .btcats .h_search{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .navbar .btcats .h_search .search_btn{
    background: rgb(0 0 0 / 0%);
    color: var(--txt-color1);
  }
  body #search_overlay{
    position: fixed;
    left: 0;
    top: 0;
    right: unset;
    height: 100vh;
    width: 100vw;
    z-index: 999;
    display: flex;
    transform: translateY(-105vh) scale(0.1);
    visibility: hidden;
    opacity: 0;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 75%);
    backdrop-filter: blur(5px);
    transition: 0.4s;
  }
  body #search_overlay.active{
    transform: translateY(0) scale(1);
    visibility: visible;
    opacity: 1;
  }
  #search_overlay form{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    position: relative;
    width: 90%;
    max-width: 800px;
  }
  #search_overlay form input{
    width: 100%;
    max-width: 800px;
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    border-bottom: 1px solid var(--secondary-color) !important;
    color: #fff;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border-radius: 0;
    padding: 15px;
    padding-right: 50px;
  }
  #search_overlay form button{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    padding: 10px 15px;
    color: var(--txt-color3);
  }
  #search_overlay form button:hover{
    color: #fff;
  }
  #search_overlay .closesrch{
    position: fixed;
    top: 35px;
    right: 55px;
    font-size: 14px;
    z-index: 9;
    cursor: pointer;
    background: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #search_overlay .closesrch:hover{
    color: #ff4343;
  }
  .navbar .special{
    position: absolute;
      top: calc(50% - 24px);
      right: 20px;
      transform: translateY(-50%);
      background: var(--primary-color);
      color: #fff;
      font-size: 12px;
      padding: 8px 12px;
  }
  .navbar li.special{
    position: relative;
    top: 0;
      right: 0;
    transform: none;
    border-radius: 5px;
  }
  .navbar li.special a{
    color: #fff;
  }
  .h_search form{
    position: relative;
  }
  .h_search form input{
    position: absolute;
    right: -2px;
    top: -1px;
    width: 1px;
    background: #fff;
    padding: 5px 30px 5px 10px;
    border: none;
    border-radius: 3px;
    color: #000;
    transition: .3s;
    visibility: hidden;
    opacity: 0;
    font-size: 16px;
  }
  .h_search form button{
    position: relative;
    color: #fff;
    font-size: 20px;
    background: #0000;
    border: none;
    z-index: 9;
  }
  .h_search form:hover input,
  .h_search form.active input{
    visibility: visible;
    opacity: 1;    
    width: 250px;
  }
  .h_search form:hover button,
  .h_search form.active button{
    color: var(--primary-color);
  }
/*End*/

/*banner section*/
  .section-1 {
      overflow: hidden;
      z-index: 1;
      position: relative;
      z-index: 1;
      margin-top: 20px;
  }
  .main-left-pnl{
    border-right: 1px solid rgb(51 51 51 / 25%);
  }
  .swiper-heroslider {
    position: relative;
  }
  .hero_slider {}

  .hero_slider .banner {
      position: relative;
      z-index: 1;
  }
  .heroslider-pagination{
      position: absolute;
      z-index: 2;
  }
  .swiper-pagination-bullet,
  .swiper-pagination-bullet-active{
    background: var(--secondary-color);
  }
  .hero_slider .thumb {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      aspect-ratio: 3 / 2;
  }

  .tren {
      position: relative;
  }

  .hero_slider .thumb::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
  }

  .hero_slider .thumb img {
      /*aspect-ratio: 5 / 3.16;*/
      object-fit: cover;
      height: 100%;
      width: 100%;
  }

  .hero_slider .thumb:hover img {
      scale: 1.05;
  }

  .hero_slider .thumb .otherinfo {
      position: absolute;
      z-index: 2;
      bottom: 0;
      width: 100%;
      padding: 100px 25px 15px 25px;
      background: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 75%), rgb(0 0 0 / 50%), rgb(0 0 0 / 0%));
      color: #fff;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
  }

  .hero_slider .thumb .otherinfo h2 {
      /*padding-bottom: 15px;*/
      margin-bottom: 25px;
      font-size: 20px;
      font-weight: 500;
      width: 100%;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      position: relative;
      z-index: 1;
  }

  .hero_slider .thumb .otherinfo::after {
      content: "";
      position: absolute;
      width: calc(100% - 50px);
      bottom: 45px;
      height: 1px;
      border-bottom: 1px solid rgb(255 255 255 / 70%);
      left: 25px;
      z-index: 2;
	  display: none;
  }

  .hero_slider .thumb .otherinfo>span {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 300;
      font-size: 12px;
  }
  .hero_slider .thumb .otherinfo>i {
      padding: 5px 5px;
  }
  .trend {
      position: relative;
      z-index: 1;
  }
  .swiper-heroslider .bannar {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
      display: flex;
      transition-property: transform;
      transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
      box-sizing: content-box;
  }

  .trend .section_heading {
      background: #373737;
      padding: 0px 15px;
      margin-bottom: 25px;
      box-shadow: 5px 5px 0px var(--secondary-color);
  }

  .trd_bgs {
      width: calc(100% - 2px);
      left: 1px;
      padding: 15px 5%;
      position: relative;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: flex-start;
      justify-content: flex-start;
      align-items: flex-start;
      margin-bottom: 0px;
  }

  .trd_bgs:hover {
      background: var(--dark-color);
  }

  .trd_bgs:last-child {
      margin-bottom: 1px;
  }

  .t_bg_img {
      width: 116px;
      max-width: 116px;
      border-radius: 5px;
      overflow: hidden;
      max-height: 63px;
  }

  .trd_bgs:hover .t_bg_img {
      scale: 1.1;
  }

  .t_bg_img img {
      aspect-ratio: 3 / 2;
      object-fit: cover;
  }

  .t_bg_dtls {
      width: calc(100% - 100px);
      max-width: calc(100% - 30%);
      padding: 0 0 0 15px;
      color: var(--txt-color3);
  }

  .t_bg_dtls p {
      color: var(--txt-color1);
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
  }

  .t_bg_dtls>span {
      font-size: 10px;
  }
/*end*/

/*unknown*/
  .new-item {
      display: flex;
      gap: 20px;
      border-bottom: 1px solid rgb(51 51 51 / 25%);
      position: relative;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
      position: relative;
      z-index: 1;
  }
  .new-item:nth-last-child(-n+2){
      border-bottom: 1px solid rgb(51 51 51 / 0%);
  }
  .new-item:nth-child(odd)::after {
      content: '';
      background: rgb(51 51 51 / 25%);
      width: 1px;
      height: calc(100% - 0px);
      position: absolute;
      right: -12px;
      top: -5px;
  }

  .news-item::after {
      content: '';
      background: #353939;
      width: 1px;
      height: calc(100% - 16px);
      position: absolute;
      right: -12px;
      top: -10px;
  }
  .new-item .thumb{
    width: 120px;
  }
  .new-item img {
      width: 120px;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 4px;
  }

  .new-text h4 {
      font-size: 16px;
      margin: 0;
  }

  .new-text p {
      font-size: 14px;
      color: black;
      margin-top: 4px;
  }

  .news-gridd {
      gap: 24px;
      display: flex;
      flex-direction: column;
      padding-left: 10px;
  }
  .news-item {
      position: relative;
      display: flex;
      gap: 7px;
      /* border-bottom: 1px solid #333; */
      padding-bottom: 9px;
      position: relative;
  }
  .news-item::after{
      content: "";
      position: absolute;
      left: 0;
      top: calc(100% + 8px);
      width: 100%;
      height: 1px;
      background: rgb(51 51 51 / 25%);
  }
  .news-item:last-child::after{
    display: none;
  }
  .news-item .thumb{
      width: 100px;
  }
  .news-item img {
      width: 100px;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 4px;
  }
  .news-item p {
      margin: 0;
      font-size: 12px;
      color: #818181;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 3;
  }
  .news-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 35px;
  }
  .news-header h2{
      margin: 0 !important;
      color: var(--primary-color);
      position: relative;
      overflow: hidden;
      padding-left: 8px;
      font-weight: bold;
      z-index: 1;
  }
  .news-header h2::after{
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 22px;
      height: 100%;
      background: var(--secondary-color);
      transform: translate(25%, 0%) skew(-15deg, 0deg);
      transition: 0.5s;
      z-index: -1;
      box-shadow: -222px 0px 0 var(--secondary-color);
  }
  .news-header:hover h2::after{
      animation: heading_slideSkew 0.5s ease-in-out 1;
      /*transform: translate(1035%, 0%) skew(-15deg, 0deg);*/
  }
  .news-header h3 {
      font-weight: bold;
      color: black;
      margin-bottom: 20px;
  }

  @keyframes heading_slideSkew {
    0% {
      transform: translate(25%, 0%) skew(-15deg, 0deg);
      opacity: 1;
    }
    40% {
      transform: translate(1025%, 0%) skew(-15deg, 0deg); /* move right */
      opacity: 0;
    }
    41% {
      transform: translate(-1025%, 0%) skew(-15deg, 0deg); /* jump to left */
      opacity: 0;
    }
    100% {
      transform: translate(25%, 0%) skew(-15deg, 0deg); /* slide back to start */
      opacity: 1;
    }
  }

  .news-slidebar-card {
      width: 100%;
      background: rgb(255 255 255 / 0%);
      border: 1px solid var(--secondary-color);
      overflow: hidden;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
      max-width: 305px;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
  }
  .news-slidebar-card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: var(--secondary-color);
      z-index: -1;
      opacity: 0.2;
  }

  .view-all-btn {
      color: #fff;
      background-color: var(--primary-color);
      border-radius: 5px;
      text-align: center;
      padding: 6px 12px;
      font-size: 14px;
      display: flex;
      align-items: center;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      z-index: 1;
      gap: 10px;
  }
  .view-all-btn:hover{
    color: var(--primary-color);
  }
  .view-all-btn::after{
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 100px;
      height: 100px;
      z-index: -1;
      background: var(--secondary-color);
      transform: translate(20%, -50%) skew(-15deg, 0deg);
      /*border-radius: 50%;*/
      transition: 0.5s;
  }
  .view-all-btn svg{
      margin-right: -5px;
  }
  .view-all-btn:hover svg{
    color: #fff;
  }
  .view-all-btn:hover::after{
      transform: translate(-80%, -50%) skew(-15deg, 0deg);
  }
  .news-slidebar-image-wrapper {
      position: relative;
      overflow: hidden;
  }

  .news-slidebar-image {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 4 / 3;
      object-fit: cover;
  }

  .news-slidebar-label {
      position: relative;
      top: -12px;
      left: 12px;
      background: var(--primary-color);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .news-slidebar-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--txt-color1);
      padding: 5px 12px 5px 12px;
      line-height: 1.4;
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
  }
  .news-slidebar-card p{
      margin-top: 4px;
      font-size: 12px;
      color: #818181;
      padding: 5px 12px 12px 12px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 3;
  }
  .news-slidebar-card p.meta{
      text-transform: uppercase;
      margin-bottom: 0;
      padding-bottom: 0;
      color: var(--secondary-color);
      font-weight: 600;
  }
  .news-section {
      display: flex;
      padding: 20px;
      gap: 30px;
      color: black;
  }


  .news-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
  .news-main {
      flex: 4;
  }
  .news-text {
      /*max-width: calc(100% - 140px);*/
      flex: 1;
  }
  .trend .news-text{
      /*max-width: calc(100% - 100px);*/
  }
  .news-text h4 {
      font-size: 16px;
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--txt-color1);
  }

  .news-text p {
      margin-top: 4px;
      font-size: 12px;
      color: #818181;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
  }
  .news-sidebar {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .featured-card {
      border-radius: 8px;
      padding: 12px;
      overflow: hidden;
      position: relative;
  }

  .featured-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 6px;
  }

  .featured-label {
      background-color: #e74c3c;
      */
      /* color: black; */
      font-size: 13px;
      /* font-weight: bold; */
      padding: 4px 10px;
      position: absolute;
      top: 165px;
      left: 12px;
      transform: translateY(-50%);
      /* /* border-radius: 3px; */
  }

  .featured-card h4 {
      font-size: 16px;
      margin-top: 40px;
      color: black;
  }
/*end*/

/* slider */
  .featured-articles-section {
      color: black;
      overflow: hidden;
  }
  .featured-articles-section .featured-swiper{
      overflow: hidden;
      position: relative;
      z-index: 1;
  }
  .post-box {
      width: 100%;
      max-width: 300px;
      color: var(--txt-color1);
      padding: 10px;
      box-sizing: border-box;
      text-align: left;
      /*background-color: #f1efff;*/
      height: 100%;
      overflow: hidden;
      border-radius: 4px;
      position: relative;
      z-index: 1;
  }
  .post-box::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f1efff;
    /*opacity: 0.1;*/
    z-index: -1;
  }

  .post-box .thumbail img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 3px;
      overflow: hidden;
  }
  .post-box .post-content h3{
      font-size: 18px;
      margin-top: 15px;
      font-weight: 600;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--primary-color);
  }
  .post-box p {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      color: var(--txt-color1);
  }
  .post-box .post-content p.meta{
      font-size: 12px;
  }

  .featured-label {
      background-color: #211d52;
      color: white;
      display: inline-block;
      padding: 4px 10px;
      border-radius: 5px;
      margin-top: 150px;
  }
  .featured-card {
      background-color: #00000057;
      color: black;
      padding: 10px;
      border-radius: 10px;
      width: 330px;

  }
/* end */

/* missed section */
  .missed-it-section {
      overflow: hidden;
  }

  .missed-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .missed-card {
      display: flex;
      gap: 15px;
      border-bottom: 1px solid rgb(51 51 51 / 25%);
      position: relative;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
      position: relative;
      z-index: 1;
      padding-bottom: 15px;
  }
  .missed-card:nth-last-child(-n+3){
      border-bottom: 1px solid rgb(51 51 51 / 0%);
  }
  .missed-card::after {
      content: '';
      background: rgb(51 51 51 / 25%);
      width: 1px;
      height: calc(100% + 5px);
      position: absolute;
      right: -10px;
      top: -13px;
  }
  .missed-card:nth-child(3n)::after{
      display: none;
  }
  .missed-text {
      flex: 1;
      font-size: 16px;
      margin-right: 10px;
      line-height: 1.4;
  }
  .missed-card .thumb{
      width: 120px;
  }
  .missed-card img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 4px;
      overflow: hidden;
  }
  .missed-card .missed-text h2{
      font-size: 16px;
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--txt-color1);
  }
  .missed-card .missed-text p{
      margin-top: 4px;
      font-size: 12px;
      color: #818181;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
  }
  .missed-card .missed-text p.meta{
      text-transform: uppercase;
  }
/* end */

/* shorts */
  .shorts-slider-section {
      color: var(--txt-color1);
      overflow: hidden;
  }
  .shorts-slider-section .shorts-swiper{
    overflow: hidden;
    position: relative;
  }
  .shorts-title {
      font-size: 26px;
      font-weight: bold;
      margin-left: 10px;
      margin-bottom: 15px;
  }

  .shorts-swiper {
      padding: 0 10px;
  }

  .shorts-card {
      position: relative;
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
      height: auto;
      aspect-ratio: 9/16;
      cursor: pointer;
  }
  .shorts-card::before{
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 70px;
      background: url(../img/youtube-shorts-icon.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      z-index: 2;
      transition: 0.3s;
      pointer-events: none;
  }
  .shorts-card:hover::before{
      transform: translate(-50%, -50%) scale(1.2);
  }
  .shorts-card::after{
      content: "";
      width: 100%;
      height: 150%;
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(-20%);
      background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 80%));
      z-index: 1;
      transition: 0.3s;
      pointer-events: none;
  }
  .shorts-card:hover::after{
      background: linear-gradient(0deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 80%));
      transform: translateY(0%);
  }
  .shorts-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .shorts-caption {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      font-size: 14px;
      font-weight: 500;
      padding: 5px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: #fff;
  }
/* end */

/* card */
  .newss-section {
      background-color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .newss-column {
      /*border: 1px solid #eceaff;*/
      padding: 16px;
      background: #eceaff;
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
      height: 100%;
  }

  .newss-heading {
      font-size: 20px;
      font-weight: bold;
      color: var(--primary-color);
      margin-bottom: 20px;
      padding-bottom: 0px;
  }

  .newss-item {
      display: flex;
      gap: 10px;
      margin-top: 30px;
      color: var(--txt-color1);
      position: relative;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
  }

  .newss-item::before {
      content: '';
      background: var(--primary-color);
      width: calc(100% - 0px);
      height: 1px;
      position: absolute;
      left: 0px;
      top: -15px;
      bottom: 0;
      opacity: 0.5;
  }

  .newss-item img {
      width: 100px;
      aspect-ratio: 4/3;
      object-fit: cover; 
      border-radius: 4px; 
      flex-shrink: 1;
  }
  .newss-item p{
      flex: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--txt-color1);
  }
  p.meta{
      text-transform: uppercase;
  }

  a {
      text-decoration: none;
  }
/*end*/

/* video section */
  .video-section {
      border-radius: 10px;
      display: flex;
      flex-wrap: wrap;
      max-width: 1300px;
      margin: auto;
      padding: 20px;
      gap: 20px;
      background-color: #ec9425;
  }

  .video-left {
      flex: 2;
      display: flex;
      flex-direction: column;
      gap: 15px;
  }



  .video-tabs button {
      padding: 8px 16px;
      background-color: #ddd;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      transition: 0.3s;
      font-weight: 600;
  }

  .video-tabs button.active,
  .video-tabs button:hover {
      background-color: #211d52;
      color: #fff;
  }

  .main-video video, .main-video iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      border-radius: 6px;
      overflow: hidden;
  }

  /* RIGHT SIDE FIX */
  .video-right {
      flex: 1 1 6%;
      /*max-height: 480px;*/
      aspect-ratio: 2 / 2;
      overflow-y: auto;
      padding-right: 40px;
      padding-left: 20px;
      border-left: 1px solid rgb(255 255 255 / 40%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 0px;
  }

  .video-right a {
      color: black;
  }

  .video-link {
      display: flex;
      align-items: center;
      align-items: flex-start;
      gap: 15px; 
      background: #ec9425;
      padding: 8px;
      /* border-radius: 6px; */
      cursor: pointer;
      transition: background 0.2s;
      position: relative;
  }

  .must-watch-heading {
      margin: 0;
      padding: 0px;
      padding-left: 7px;
  }

  .video-link::before {
      content: '';
      background: var(--primary-color);
      width: calc(100% - 0px);
      height: 1px;
      position: absolute;
      left: 0;
      top: 0px;
      bottom: 0;
      opacity: 0.3;
  }

  .video-link:hover {
      background: #eeeeee60;
  }

  .video-title {
      font-size: 13px;
      font-weight: 400;
  }
  .video-title h3{
      font-size: 16px;
      margin: 0;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--txt-color1);
      font-weight: 500;
  }
  .video-title p{
      color: #4d4d4d;
  }
  .video-thumb {
      position: relative;
      flex-shrink: 0;
      z-index: 1;
  }

  .video-thumb img {
      width: 100px;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 4px;
  }

  .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgb(255 255 255 / 75%);
      box-shadow: 0 5px 20px rgb(0 0 0 / 25%);
      color: var(--primary-color);
      font-size: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
  }
/*end*/

/* science section */
  .section-science {
      color: var(--txt-color1);
      position: relative;
      overflow: hidden;
  }

  .section-divider {
      border: 1px solid #444;
      margin: 20px 0;
  }

  .section-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .science-details {
      flex: 1;
  }
  .science-details .science-title{
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      /* Number of lines to show */
      -webkit-box-orient: vertical;
      color: var(--txt-color1);
  }
  .science-details a > span{
      display: block;
      margin-top: 4px;
      font-size: 12px;
      color: #818181;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 1;
      text-transform: uppercase;
  }
  .science-grid {
      display: flex;
      overflow-x: auto;
      gap: 30px;
      /* padding-bottom: 10px; */
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
      align-items: flex-start;
  }

  .science-item {
      display: flex;
      flex-direction: row;
      gap: 20px;
      max-width: calc(25% - 24px);
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
  }
  .science-item .thumb{
      width: 100px;
  }
  .science-item img {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 4px;
      object-fit: cover;
  }

  .science-titl {
      font-size: 14px;
      margin-top: 8px;
      font-weight: 600;
      color: black;
  }
/*end*/

/* india/ global */
  .india-global-section .border-right{
      position: relative;
      z-index: 1;
  }
  .india-global-section .border-right::after{
      content: '';
      background: rgb(51 51 51 / 25%);
      width: 1px;
      height: calc(100% + 25px);
      position: absolute;
      right: -1px;
      top: -20px;
  }
/* end */

/* Entertainment section */
  .movies-gadgets-section {
      margin-top: 30px;
  }

  .main-card img {
      width: 100%;
      height: auto;
      border-radius: 4px;
  }

  .main-title {
      font-size: 16px;
      font-weight: bold;
      margin-top: 10px;
      color: black;
  }

  .list-items {
      padding-left: 10px;
  }

  .inner-divider {
      border: none;
      border-top: 1px solid #444;
      margin: 10px 0;
  }

  .section-divider {
      margin-top: 30px;
      border-top: 2px solid #555;
  }
/*end*/

/* sports section */
  .sports-section {
      margin-top: 40px;
  }

  .main-card img {
      width: 100%;
      height: auto;
      border-radius: 5px;
  }

  .main-title {
      font-size: 16px;
      font-weight: bold;
      color: black;
      margin-top: 10px;
  }

  .sports-section .tabs {
      display: flex;
      gap: 20px;
      margin: 0px 0;
      justify-content: flex-end;
      list-style: none;
      padding: 0;
      background: #f3f3f3;
      border-radius: 4px;
      overflow: hidden;
  }

  .sports-section .tab-item {
      color: var(--txt-color1);
      cursor: pointer;
      padding: 8px 10px;
      position: relative;
      min-width: 60px;
      text-align: center;
  }

  .sports-section .tab-item.active {
      color: var(--secondary-color);
  }

  .sports-section .tab-item.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 25px;
      height: 10px;
      border-radius: 5px;
      transform: translateX(-50%);
      background-color: var(--secondary-color);
  }
  .sports-section  .post-box{
      height: auto;
  }
  .sports-section .list-items{

  }
  .sports-section .list-items .list-item{
      max-width: calc(25% - 12px);
      border-bottom: 1px solid rgb(51 51 51 / 25%);
      padding-bottom: 10px;
      margin-bottom: 10px;
  }
  .sports-section .list-items .list-item:nth-last-child(-n+4){
      border-bottom: 1px solid rgb(51 51 51 / 0%);
  }
  .sports-section .list-items .list-item .thumb{

  }
  .sports-section .list-items .list-item .thumb img{
      width: 100%;
      aspect-ratio: 3/2;
      object-fit: cover;
      overflow: hidden;
      border-radius: 4px;
  }
  .sports-section .list-items .list-item .meta-info{

  }
  .sports-section .list-items .list-item .meta-info .meta{
      margin: 15px 0 10px 0;
      font-size: 12px;
      color: #818181;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 1;
      text-transform: uppercase;
  }
  .sports-section .list-items .list-item .meta-info h3{
      font-size: 16px;
      margin-top: 10px;
      font-weight: 500;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
      -webkit-line-clamp: 2;
      color: var(--txt-color1);
  }
/*end*/

/*Web Story*/
  .featuedposts{
    z-index: 1;
    position: relative;
    overflow: hidden;
  }
  .featuedposts:after{
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--ws-clr);
    opacity: .2;
    z-index: -1;
  }
  .featuedposts .section_heading .sec_ttl i svg{
    left: 3px;
    position: relative;
  }
  .featuedposts .swiper-webstory{
    overflow: hidden;
  }
  .ft_box{
    position: relative;
    margin-bottom: 0px;
    padding: 0;
    border: none;
    border-radius: 0px;
  }
  .ft_box .thumb{
    z-index: 1;
    background: #000;
    margin: 0;
    padding-bottom: 0;
    width: 100%;
    position: relative;
  }
  .ws_tl{
    text-align: center;
    position: absolute;    
    top: 21px;
    left: 60%;
    transform: translateX(-50%);
    width: 60%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .ws_tl span{
    width: 15%;
    height: 3px;
    border-radius: 5px;
    display: inline-block;
    background: #fff;
  }
  .ft_box.post_box{
    border: none;
  }
  .ft_box.post_box:hover{
    transform: none;
    box-shadow: 5px 5px var(--secondary-color);
  }
  .ft_box .thumb img{
    opacity: .75;
    position: relative;
    padding: 0;
    aspect-ratio: 2/3;
    left: 0;
    top: 0;
    transform: none;
  }
  .ft_box:hover .thumb img{
    transform: scale(1.2);
  }
  .ft_box .postdetails{
    height: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    margin-bottom: 0;
    padding: 30px 15px 10px 15px;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 90%), rgb(0 0 0 / 70%), rgb(185 0 76 / 0%));
    opacity: 0;
  }
  .ft_box:hover .postdetails{
    opacity: 1;
  }
  .ft_box h3, .ft_box p.date{
    color: white;
  }
  .ft_box h3{
    font-weight: 300;
    margin: 10px 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    min-height: unset;
  }
  .ft_box p.date{
    padding-top: 10px;
    border-top: 1px solid #fff;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
  }
  .fvicon{
    position: absolute;
    z-index: 9;
    background: var(--dark-color);
    overflow: hidden;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    top: 10px;
    left: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 20px rgb(0 0 0 / 12%);
  }
  .ft_box .thumb .fvicon img{
    width: 18px;
    object-fit: contain;
    aspect-ratio: 1/1;
    opacity: 1;
  }
  .playbtn{
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 10px;
    box-shadow: 0 2px 20px rgb(0 0 0 / 0%);
    opacity: 0;
    transition: .4s;
  }
  .ft_box:hover .playbtn{
    font-size: 50px;
    opacity: 1;
  }
/*end*/

/*Post box*/
  .post_box{
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--txt-color1);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    border: none;
    padding: 0;
    border-radius: 4px;
    min-height: 100%;
    border: 1px solid var(--primary-color);
    /*box-shadow: 5px 5px var(--primary-color);*/
  }
  .post_box:hover{
    box-shadow: 5px 5px var(--secondary-color);
    transform: translateY(-10px);
    /*transform: translateY(-10px);
    /*box-shadow: 0 7px 15px rgb(0 0 0 / 15%);*/
  }
  .post_box .thumb{
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    box-shadow: 0 0px 10px rgb(0 0 0 / 5%);
  }  
  .post_box .thumb img{
    aspect-ratio: 5/3;
    width: 100%;
    object-fit: cover;
  }
  .post_box:hover .thumb img{
    scale: 1.05;
  }
  .post_box .thumb .bkmark{
    position: absolute;
    left: 12px;
    top: 0px;
    width: 28px;
    height: 40px;
    padding-top: 0px;
    padding-bottom: 5px;
    background: rgb(0 0 0 / 25%);
    color: var(--txt-color1);
    border-radius: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 14px;
    /* box-shadow: 0 0px 12px rgb(0 0 0 / 5%); */
    cursor: pointer;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, /* inward notch */ 0 100%);
  }
  .post_box .thumb .bkmark.active{
    background: var(--secondary-color);
    color: var(--txt-color1);
  }
  .post_box .postdetails{
    padding: 5px 20px 10px 20px;
    width: 100%;
  }
  .post_box h3{
    color: var(--txt-color2);
    font-weight: 500;
    font-size: 16px;
    margin-top: 0;
    /* line-height: 1.3; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    text-transform: capitalize;
    /* min-height: 62px;*/
  }
  .post_box:hover h3{
    color: var(--txt-color1);
  }
  body .post_box .shortdesc p{
    margin: 0;
    color: #818181;
    margin-bottom: 0;
  }
  .post_box .shortdesc{
    font-size: 13px;
    color: #000;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    margin: 10px 0;
  }
  .post_box .metadata{
    padding: 15px 0 15px 0;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #646464;
  }
  .post_box .metadata p{
    display: inline-block;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
  }
  .post_box .metadata span{
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    color: #ffff;
    background: var(--primary-color);
    margin-right: 0px;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    text-align: center;
  }
  .post_box .metadata span:after{
    content: ",";
    position: relative;
  }
  .post_box .metadata span:last-child:after{
    display: none;
  }
  .post_box .metadata .date{
    text-align: right;
    font-weight: 400;
    font-size: 10px;
    color: #818181;
  }
  .pb_long {
    transform: none!important;
  }
  .pb_long.post_box .thumb{
    width: 40%;
    margin: 0;
  }
  .pb_long.post_box .thumb img{
    /*min-height: 100%;*/
  }
  .pb_long .postdetails{
    width: 60%;
    padding: 15px;
    height: auto;
  }
  .pb_long .postdetails .otherinfo>span{
    color: var(--txt-color2);
    background: rgb(0 0 0 / 0%);
    padding: 0;
  }
  .pb_long .postdetails .otherinfo>span>span{
    background: rgb(0 0 0 / 0%);
    font-size: 12px;
    color: var(--txt-color2);
    padding: 0;
  }
  .pb_long .postdetails h3{
    height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
  }
  .pb_long .postdetails p{
    margin: 0;
    height: auto;
    font-size: 14px;
  }
  .pb_long .postdetails p.exdateinfo{
    font-size: 11px!important;
    opacity: .7;
  }
  .pb_long.post_box .shortdesc{
    height: auto;
    -webkit-line-clamp: 3;
    color: #5d5d5d;
    padding: 0px 15px 10px 15px;
    margin-top: -5px;
  }
  .pb_long .swiper-button-prev,
  .pb_long .swiper-button-next{
    transform: scale(.6);
  }
  .list-view .post_box .metadata p{
    text-align: right;
  }
  .list-view .post_box .metadata .date {
    text-align: left;
    margin-right: 5px;
  }
  .list-view .post_box .metadata .date b.author {
    font-weight: initial;
  }
/*end*/

/*Single Post Page*/
  .title-sec{
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--primary-color);
  }
  .title-sec::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    opacity: 0.94;
    z-index: -1;
    backdrop-filter: blur(3px);
  }
  .singlepostciont .container{
    /*width: 1000px;*/
    /*max-width: 100%;*/
    color: var(--txt-color1);
  }
  .singlepost{
    position: relative;
    padding: 0;
  }
  .singlepost .postmetadata{
    margin-bottom: 22px;
  }
  .singlepost .postmetadata .meta_cats p{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
  }
  .singlepost .postmetadata .meta_cats p a{

  }
  .singlepost .postmetadata .meta_cats p span{
    color: var(--txt-color1);
    font-size: 11px;
    padding: 2px 7px;
    background: var(--secondary-color);
    margin: 0px;
    border-radius: 3px;
  }
  .singlepost .postmetadata .meta_cats p > a:first-child span{
    margin-left: 0;
  }
  .singlepost .postmetadata .meta_cats p > a:last-child span{
    margin-right: 0;
  }
  .singlepost .postmetadata h1{
    margin-top: 0;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 54px;
    font-family: Schnyder;
    letter-spacing: .5px;
  }
  .singlepost .postmetadata p{
    font-size: 12px;
    font-weight: 400;
    color: #bcbcbc;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  .singlepost .postmetadata p .author{
    margin-right: 12px;
    border-right: 1px solid #b9b9b9;
    padding-right: 12px;
  }
  .singlepost .postmetadata p .postdate{
    
  }
  .singlepost .thumnail{
    width: 100%;
    margin-bottom: 30px;
  }
  .singlepost img{
    width: 100%;
    max-width: 100%;
    box-shadow: 5px 5px 0 var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background: var(--black);
    border-radius: 0;
    overflow: hidden;
  }
  .singlepost .postcontent{
    line-height: 26px;
    font-size: 17px;
    font-weight: normal;
    max-width: 920px;
  }
  .singlepost .postcontent a{
    color: var(--txt-color1);
    text-decoration: underline 1px dashed rgb(255 255 255 / 50%) !important;
  }
  .singlepost .postcontent strong{
    color: var(--txt-color1);
  }
  .singlepost .postcontent p, .singlepost .postcontent .wp-block-embed{
    margin-bottom: 35px;
    min-height: 1px;
  }
  .singlepost .postcontent em{
    letter-spacing: -0.4px;
  }
  .wp-block-list .wp-block-list{
    margin-bottom: -10px;
  }
  .singlepost .postcontent h1,
  .singlepost .postcontent h2,
  .singlepost .postcontent h3,
  .singlepost .postcontent h4,
  .singlepost .postcontent h5,
  .singlepost .postcontent h6{
    color: var(--txt-color1);
    margin-bottom: 15px;
  }
  .singlepost .postcontent *:first-child{
    margin-top: 0;
  }
  .singlepost .postcontent .aligncenter .wp-block-embed__wrapper>div{
    margin-left: auto;
    margin-right: auto;
  }
  .singlepost blockquote{
    /* border: 0px solid #f6f6f6; */
    border-left: 8px solid var(--secondary-color);
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    border-radius: 35px 0px 35px 0px;
    background: var(--black);
    margin-bottom: 25px;
  }
  .singlepost .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .singlepost .wp-block-image img {
    box-shadow: 1px 3px 7px rgb(0 0 0 / 17%);
    background: #f7f7f7;
  }
  .singlepost .is-style-rounded img {
    border-radius: 10px;
    overflow: hidden;
  }
  .singlepost ol,
  .singlepost ul{
    margin-bottom: 25px;    
  }
  .singlepost li {
    margin: 0px 0 3px;
    text-align: left;
    padding: 5px 0px 5px 0px;
    color: var(--txt-color3);
  }
  .singlepost .sharepost{
    position: absolute;
    left: -90px;
    top: 0;
    height: 100%;
    padding-bottom: 0px;
  }
  .singlepost .sharepost .share_buttons{
    position: sticky;
    top: 150px;
    margin: 0;
    padding: 2px 10px;
    background: var(--black);
    border-radius: 0;
    box-shadow: 5px 5px var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--txt-color3);
  }
  .singlepost .sharepost .share_buttons p{
    font-size: 13px;
    font-weight: 400;
    color: var(--txt-color2);
    margin: 0;
    padding-top: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ececec;
  }
  .singlepost .sharepost .share_buttons p i{

  }
  .singlepost .sharepost .share_buttons li{
    display: flex;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 5px 5px 4px 5px;
    border-radius: 4px;
    margin: 9px auto 10px;
    color: var(--txt-color2);
    align-items: center;
    justify-content: center;
  }
  .singlepost .sharepost .share_buttons li i{

  }
  .singlepost .sharepost .share_buttons li:hover{
    background: var(--primary-color);
    color: #fff;
  }
  .singlepost .sharepost .share_buttons li svg{
    width: 14px;
    height: 14px;
    fill: var(--txt-color2);
  }
  .singlepost .sharepost .share_buttons li:hover svg{
    fill: #fff;
  }
  .posttags{
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 0 13px;
    margin: 30px 0 10px;
  }
  .posttags ul{
    margin: 0;
    padding: 0;
  }
  .posttags span{
    font-size: 12px;
    font-weight: 400;
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  .posttags ul li{
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    padding: 3px 7px 2px;
    background: var(--secondary-color);
    color: var(--txt-color1);
    border-radius: 3px;
    margin: 4px 2px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  .posttags ul li:hover{
    transform: scale(1.1);
    z-index: 2;
    color: #fff;
    background: var(--primary-color);
  }
  .nextprevart{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .nextprevart div{
    width: 50%;
  }
  .nextprevart div a{
    font-size: 12px;
    font-weight: 400;
    color: var(--txt-color1);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  .nextprevart .prvart{
    text-align: left;
  }
  .nextprevart .nextart{
    text-align: right;
  }
  .relatedpost {
    padding-left: calc(12% - 15px);
    padding-right: 0;
    overflow-x: hidden;
  }
  .newmagazins{
    margin-bottom: 15px;
  }
  .newmagazins:first-child{
    margin-bottom: 0;
  }
  .newmagazins h2{
    margin-bottom: 15px;
  }
  .newmagazins .mzin{
    margin-top: 40px;
    border-bottom: 1px solid #4e4f5a;
  }
  .newmagazins .mzin.count1{
    margin-top: 20px;
  }
  .newmagazins .mzin *{
    color: #000;
  }
  .newmagazins .mzin h3{
    font-weight: 500;
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 5px;
    /* text-transform: uppercase; */
    font-family: 'Poppins', sans-serif;
  }
  .newmagazins .mzin p{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
  }
  .newmagazins .mzin p span{
    position: relative;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: #6e6e6e;
    font-weight: 400;
  }
  .newmagazins .mzcover{
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0px 4px 7px rgb(0 0 0 / 11%);
    overflow: hidden;
  }
  .newmagazins .mzcover:after{
    content: "";
    width: 170px;
    height: 180%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(255 255 255 / 10%));
    z-index: 1;
    transform: rotate(24deg) translate(-310%, -40%);
    transition: .2s;
  }
  .newmagazins .mzcover:hover:after{
    /*animation: splash .2s linear;
    animation-iteration-count: 1*/
    transform: rotate(24deg) translate(-40%, -40%);
  }
  .newmagazins .mzin img{
    width: 100%;
    max-width: 100%;
  }
  .newmagazins .mzin .mzcover:hover img{
    transform: scale(1.02);
  }
  .newmagazins .mzin p .edition{
    padding-right: 12px;
    border-right: 1px solid #c1c1c1;
    margin-right: 12px;
  }
  .author-box {
    margin-top: 40px;
    color: #fff;
    background: var(--primary-color);
    padding: 20px;
    /* border: 1px solid var(--secondary-color); */
    box-shadow: 5px 5px 0 var(--secondary-color);
  }

  .author-title {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 0;
  }

  .author-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: none;
  }

  .author-meta {
    flex: 1;
  }

  .author-name {
    font-weight: bold;
    margin: 0 0 10px;
  }

  .author-name a {
    color: var(--txt-color3);
    text-decoration: none;
    font-size: 12px;
    margin-left: 5px;
  }

  .author-twitter {
    color: #ccc;
  }

  .author-description {
    font-size: 12px;
    line-height: 1.6;
    color: var(--txt-color3);
  }
  .author-socials {
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding-top: 15px;
    margin-top: 10px;
  }

  .author-social-links {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0 !important;
  }

  .author-social-links li a {
    color: var(--txt-color3);
    font-weight: 500;
    padding: 5px 10px;
    background: rgb(255 255 255 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
  }
  .author-social-links li a svg{
    width: 20px;
    height: 20px;
    fill: var(--txt-color3);
  }
  .author-social-links li a:hover{
    background: var(--txt-color1);
  }
  .author-social-links li a:hover svg{
    fill: var(--txt-color2);
  }
/*end*/

/*Pagination*/
  .page_pagination{
    margin-bottom: 50px;
  }
  .page_pagination span, .page_pagination a{    
    padding: 5px 10px;
    min-width: 40px;
    border-radius: 0px;
    display: inline-block;
  }
  .page_pagination > *:first-child{
    border-radius: 5px 0px 0px 5px;
    border-left: 1px solid var(--primary-color);
  }
  .page_pagination > *:last-child{
    border-radius: 0px 5px 5px 0px;
    border-right: 1px solid var(--primary-color);
  }
  .page_pagination span.current{
    background: var(--secondary-color);
    color: var(--txt-color1);
    border-color: var(--secondary-color);
  }
  .page_pagination a{
    background: var(--primary-color);
    color: #fff;
  }
/*end*/

/*inputs*/
  label{
    width: 100%;
    font-weight: 500;
    font-size: 16px;
  }
  input, select, textarea{
    color: var(--txt-color1);
    background: rgb(0 0 0 / 0%);
    border: none;
    border-bottom: 1px dashed var(--txt-color3);
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
  }
  textarea{
    max-height: 70px;
  }
  input[type="submit"]{
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
  }
  .wpcf7-form{
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    border: 1px solid var(--secondary-color);
    box-shadow: 5px 5px 0 var(--secondary-color);
    padding: 30px;
    background: var(--dark-color);
    margin-bottom: 30px;
    padding-bottom: 5px;
  }
  .wpcf7-form p{
      position: relative;
      z-index: 1;
  }
  .wpcf7-form .wpcf7-spinner{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
/*end*/

/*Comments*/
  .comment_section{
    background: #fff;
    border: 1px solid var(--primary-color);
    box-shadow: 5px 5px 0 var(--primary-color);
    padding: 20px;
    margin-top: 30px;
  }
  .comments-area {
    color: #eee;
    background: #000;
    padding: 2rem;
    border-radius: 8px;
  }
  .comment_section h3{
    margin-top: 0;
  }
  .comment_section input, 
  .comment_section textarea{
    width: 100%;
    max-height: 120px;
    background: #efefef;
    border: none;
    color: var(--txt-color1);
    padding: 10px;
    border-radius: 0px;
    resize: vertical;
  }
  .comment_section input[type="submit"]{
    background: var(--secondary-color);
  }
  .commentlist{
    padding-left: 0;
  }
  .commentlist > .comment{
    border-bottom: 1px solid rgb(255 255 255 / 40%);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .commentlist .comment{
    position: relative;
  }
  .commentlist .comment:has(> .children)::after{
    content: "";
    width: 1px;
    height: calc(100% - 140px);
    background: rgb(0 0 0 / 34%);
    position: absolute;
    left: 20px;
    top: 50px;
  }
  .commentlist .comment:not(:has(> .children)):last-child::after{
    content: "";
    position: absolute;
    left: -12px;
    top: 19px;
    width: 2px;
    height: 90%;
    background: #fff;
    z-index: -1;
  }
  .commentlist>.comment:not(:has(> .children)):last-child::after{
    display: none;
  }
  .commentlist > .comment .children{

  }
  .commentlist li{
    list-style: none;
  }
  .commentlist .children{
    position: relative;
  }
  .commentlist .children::after{
    content: "";
  }
  .commentlist .children li{
    position: relative;
    z-index: 1;
  }
  .commentlist .children li::before{
    content: "";
    position: absolute;
    left: -12px;
    top: 10px;
    width: 20px;
    height: 16px;
    border: none;
    border-radius: 0 0 0 10px;
    border-bottom: 1px solid rgb(0 0 0 / 34%);
    border-left: 1px solid rgb(0 0 0 / 34%);
    z-index: 0;
  }
  .commentlist .children li:has(> .children)::before{
    border-left: none;
  }
  .comment-body{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 1;    
    padding-left: 60px;
    margin-bottom: 20px;
  }
  .comment-author{
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .comment-body img{    
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: none;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
  }
  .comment-body .says{
    display: none;
  }
  .comment-body .fn{
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--txt-color1);    
    text-align: left;
    position: absolute;
    top: -5px;
    left: 60px;
    font-size: 20px;
  }
  .comment-body .fn a{
    color: var(--txt-color1);
  }
  .comment-body .comment-meta{
    font-size: 10px;
    /*text-transform: uppercase;*/
    width: 100%;    
    margin-top: 35px;
    margin-bottom: 10px;
  }
  .comment-body .comment-meta a{
    color: #808080;
  }
  .comment-body > p{
    width: 100%;
    color: var(--txt-color1);
  }
  .reply{
    font-size: 12px;
    position: relative;
    z-index: 1;
    color: var(--txt-color3);
  }
  .reply::after{
    content: '\f164';
    font-family: FontAwesome;
    position: relative;    
    padding: 5px;
    margin: 0 10px;
  }
  .reply::before{
    content: '\f165';
    font-family: FontAwesome;
    position: absolute;
    left: 95px;
    padding: 5px;
    top: -2px;
  }
  .reply a{
    color: var(--txt-color2);
    position: relative;
  }
  .reply a::before{
    content: "\f112";
    font-family: FontAwesome;
    font-size: 11px;
    padding-right: 5px;
  }
  .reply a:hover{
    color: var(--txt-color2);
  }
/*end*/

/*Footer*/
    footer{
      box-shadow: 0 0px 2pc rgba(0, 0, 0, 0.1);
      background: var(--primary-color);
      color: #c2bdff;
    }
    .ft-logo{
      max-width: 240px;
      max-height: 70px;
      object-fit: contain;
      object-position: left;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    .fsocial ul, .ftags ul{
      padding: 0;
    }
    .fpoints h3, .fnote h3, .fsocial h3, .ftags h3, .ctninfos h3{
      margin-top: 0;
      color: #fff;
      font-size: 18px;
      margin-bottom: 20px;
      position: relative;
      padding-left: 5px;
      z-index: 1;
    }
    .fpoints h3:after, .fnote h3:after, .fsocial h3:after, .ftags h3:after, .ctninfos h3:after{
      content: "";
      position: absolute;
      left: -10px;
      top: 0;
      width: 25px;
      height: 100%;
      background: var(--secondary-color);
      transform: translate(25%, 0%) skew(-15deg, 0deg);
      transition: 0.5s;
      z-index: -1;
    }
    .fpoints ul{
      padding: 0;
    }
    .fpoints li{
      display: block;
      position: relative;
      list-style: none;
      color: #fff;
      margin: 4px 15px 7px;
      padding: 0;
      border-radius: 5px;
      font-size: 14px;
      text-transform: uppercase;
    }
    .fpoints li:hover{
      font-weight: 400;
      color: var(--red);
    }
    .fpoints li:before{
      content: "\f105";
      font-family: FontAwesome;
      width: 0%;
      height: 1px;
      color: var(--red);
      position: absolute;
      /*top: 0;*/
      left: -15px;
      transform: translateY(-50%);
      transition: .7s;
    }
    .fpoints li:hover:before{
      padding-left: 5px;
    }
    .fpoints li a{
      color: #fff;
    }
    .fsocial li{
      display: inline-block;
      width: 35px;
      height: 35px;
      background: rgb(255 255 255 / 12%);
      color: #fff;
      padding: 3px 0 0;
      font-size: 20px;
      border-radius: 10px;
      margin: 5px 5px 5px 0px;
      text-align: center;
    }
    .fsocial li:hover{
      background: var(--red);
      color: #fff;
      transform: scale(1.2);
    }
    .fsocial li:hover a{
      color: #004fff;    
    }
    .fsocial li:before{
      display: none!important;
    }
    .ctninfos .ctninfo{
      padding: 0;
      margin: 0;
    }
    .ctninfos .ctninfo h2{
      margin: 0 0 10px;
      color: var(--green);
      font-weight: 600;
      font-size: 26px;
    }
    .ctninfos .ctninfo li{
      display: block;
      color: #747474;
      padding-left: 24px;
      position: relative;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .ctninfos .ctninfo li:hover{
      /*font-weight: 600;*/
      color: #0086f1;
    }
    .ctninfos .ctninfo li i{
      color: var(--green);
      position: absolute;
      left: 0;
      top: 5px;
    }
    .ctninfos p{
      color: #f3fff3;
      font-size: 14px;
    }
    .ctninfos p a{
      color: #ff2a32;
      font-weight: normal;
    }
    .fads .fad img{
      border-radius: 5px;
      margin-bottom: 10px;
    }
    .fad .subscribebtn{
      color: var(--txt-color1);
      background: var(--secondary-color);
      width: 100%;
      font-size: 14px;
      font-weight: 500;
      border-radius: 4px;
    }
    .fads p{
      margin: 10px 0 0;
      font-size: 14px;
      color: #c2bdff;
      font-weight: 400;
    }
    .fads p a{
      color: inherit;
      padding: 3px 15px;
    }
    .fads p a:hover{
      color: #fff;
    }
    /*.ftb{
      border-top: 1px solid gainsboro;
      padding-top: 15px;
    }*/
    .ft_bttm{
      background: var(--secondary-color);
      color: var(--txt-color1);
    }
    .implinks p span{
      color: white;
      padding: 5px;
      margin: 0 10px;
    }
    .copyright, .implinks, .dgnby{
      font-size: 13px;
      font-weight: 500;
    }
    .copyright p, .implinks p, .dgnby p{
      margin: 10px 0;
    }
    .copyright p a{
      color: inherit;
    }
    .dgnby p{
      col
    }
    .dgnby a{
      color: #b1ff34;
      font-weight: 600;
    }
/*Footer end*/

/*social media icons*/
  .social_md_list ul{
    padding: 0;
    margin: 0;
  }
  .social_md_list li{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #ffff;
    padding: 4px 0 0;
    font-size: 16px;
    border-radius: 10px;
    margin: 0px 5px 5px 0px;
    text-align: center;
    line-height: 1.6;
  }
  .social_md_list li::after,
  .social_md_list li::before{
    display: none;
  }
  .social_md_list li svg {
    fill: var(--primary-color);
    position: relative;
    top: 2px;
  }
  .social_md_list li:hover{
    background: #fff;
    color: var(--txt-color2);
    transform: scale(1.2);
  }
  .social_md_list li:hover svg {
    fill: var(--primary-color);
  }
/*social media icons*/


/*All Magazine Page*/
  .extrarlpd{
    padding-left: 20px;
    padding-right: 20px;
  }
  .magacats{
    padding: 10px;
    border: 3px solid #e0e0e0;
    border-radius: 7px;
    margin-top: 10px;
    text-align: left;
  }
  .magacats hr{
    margin: 5px 0;
  }
  .magacats ul{
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .magacats ul li{
    display: inline-block;
    padding: 3px 10px 2px;
    border-radius: 3px;
    background: transparent;
    color: #000;
    font-weight: 400;
  }
  .magacats ul li.current{
    background: var(--secondary-color);
  }
  .magacats ul li:hover{
    background: #eaeaea;
  }
  .magacats ul span{
    display: inline-block;
    font-weight: 500;
    color: #808080;
    margin-right: 10px;
  }
  .allmzs{
    margin-bottom: 30px;
    position: relative;
  }
  .allmzs:before{
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid var(--primary-color);
    z-index: -1;
  }
  .allmzs:hover:before{
    transform: scale(0.7);
  }
  .allmzs .btns{
    background: var(--secondary-color);
    width: 100%;
  }
  .allmzs .btns .btn{
    display: inline-block;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 0;
    border: 0;
    padding: 8px 10px;
  }
  .allmzs .btns .btn:hover{
    background: var(--primary-color);
  }
  .allmzs .btns{
    
  }
  
  .newmagazins{
    /*border-radius: 5px;*/
    padding: 0;
    /*background: #fff;*/
    /*box-shadow: 0 4px 20px rgb(0 0 0 / 1%);*/
  }
  .newmagazins h2{
    margin-bottom: 15px;
  }
  .newmagazins .mzin{
    margin-top: 40px;
    position: relative;
  }
  .newmagazins .mzin:after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;  
    height: 1px;
    background: var(--red);  
  }
  .mzin.count1{
    margin-top: 20px;
  }
  .mzin *{
    color: #fff;
  }
  .mzdesc{
    padding: 15px 10px 0;
    border-radius: 0 0 3px 3px;
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 85%);
    visibility: hidden;
    opacity: 0;
  }
  .mzin:hover .mzdesc{
    visibility: visible;
    opacity: 1;
    bottom: 0;
  }
  .mzin h3{
    font-weight: bold;
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
  }
  .mzin p{
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
  }
  .mzin p span{
    position: relative;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #9b9b9b;
    font-weight: 400;
  }
  .mzcover{
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0px 4px 7px rgb(0 0 0 / 11%);
    overflow: hidden;
  }
  .mzcover:after{
    content: "";
    width: 170px;
    height: 180%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, rgb(0 0 0 / 0%), rgb(255 255 255 / 10%));
    z-index: 1;
    transform: rotate(24deg) translate(-310%, -40%);
    transition: .2s;
  }
  .mzcover:hover:after{
    /*animation: splash .2s linear;
    animation-iteration-count: 1*/
    transform: rotate(24deg) translate(-40%, -40%);
  }
  .mzin img{
    width: 100%;
    max-width: 100%;
  }
  .mzin:hover{
    transform: scale(1.05);
  }
  .mzin p .edition{
    padding-right: 12px;
    border-right: 1px solid #c1c1c1;
    margin-right: 12px;
  }
  .is-type-video .wp-block-embed__wrapper{
	padding-bottom: 56.25%;
	border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px #00000026;
  }
  .is-type-video .wp-block-embed__wrapper iframe{
	position: absolute;
    width: 100%;
    height: 100%;
  }
/*end*/


/*Media kit page template*/
  .pdfreader{
    text-align: center;
  }
  .pdfreader .pdfjs-fullscreen{
    display: none;
  }
  .pdfreader .pdfjs-iframe, .pdfreader .pdfjs-wrapper{
    max-width: 100%;
    border: 2px solid #efefef;
    background: #0000;
    width: 800px;
    margin: 0 auto;
    max-height: 73vh;
  }
  .pdfreader{
    
  }
  .dnldbtn .btn{
    background: var(--red);
    color: #fff;
  }
  .dnldbtn .btn:hover{
    transform: scale(1.04);
    box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  }
  .dnldfrm{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #08132647;
    z-index: 9;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
  }
  .dnldfrm.active{
    opacity: 1;
    visibility: visible;
  }
  .dnldfrm .mainfrom{
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translate(-50%, 105%);
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 16%);
    max-width: 90%;
    width: 400px;
  }
  .dnldfrm.active .mainfrom{
    transform: translateX(-50%);
  }
  .dnldfrm .mainfrom .close{
    position: absolute;
    color: var(--primary-color);
    top: 10px;
    right: 15px;
    cursor: pointer;
  }
  .dnldfrm .mainfrom label{
    text-align: left;
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 14px;
    color: #505050;
    width: 100%;
    position: relative;
  }
  .dnldfrm .mainfrom input{
    /*width: 100%;*/
    /*border: 2px solid #dcdcdc;*/
    /*border-radius: 3px;*/
    /*padding: 3px 10px;*/
    /*color: #000;*/
    /*font-size: 18px;*/
  }
  .dnldfrm .mainfrom input[type="submit"] {
    /*margin-top: 12px;*/
  }
  .dnldfrm .mainfrom .ajax-loader{
    position: absolute;
    bottom: 36px;
  }
  .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output{
    font-size: 14px;
  }
/*end*/


/*Animations*/
    @keyframes slide {
      0% {
        visibility:hidden;
        transform: translateY(70%);
      } 
      100% {
        visibility: visible;
        transform: translateY(0%);
      }
    }
    @-webkit-keyframes slide {
      0% {
        opacity: 0;
        visibility:hidden;
        -webkit-transform: translateY(-70%);
      } 
      100% {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0%);
      }
    }
    @keyframes slidelr {
      0% {
        opacity: 0;
        transform: translateX(-70%);
      } 
      100% {
        opacity: 1;
        transform: translateX(0%);
      }
    }
    @-webkit-keyframes slidelr {
      0% {
        opacity: 0;
        -webkit-transform: translateX(-70%);
      } 
      100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
      }
    }
    @keyframes sliderl {
      0% {
        opacity: 0;
        transform: translateX(70%);
      } 
      100% {
        opacity: 1;
        transform: translateX(0%);
      }
    }
    @-webkit-keyframes sliderl {
      0% {
        opacity: 0;
        -webkit-transform: translateX(70%);
      } 
      100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
      }
    }
    /*pulsh effect*/
    @keyframes pulse{
      0%{
        box-shadow: 0 0 0 0 rgb(185 0 76 / 33%), 0 0 0 0 rgb(185 0 76 / 63%);
      }
      40%{
        box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 0 rgb(185 0 76 / 47%);
      }
      80%{
        box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
      }
      100%{
        box-shadow: 0 0 0 0 rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
      }
    }
    /* grow effect */
    @keyframes grow{
      0%{
        transform: translate(-50%, -50%) scale(1.0);
      }
      40%{
        transform: translate(-50%, -50%) scale(1.1);
      }
      80%{
        transform: translate(-50%, -50%) scale(0.8);
      }
      100%{
        transform: translate(-50%, -50%) scale(1.0);
      }
    }
  /*end*/
/*end animatio*/

/*responsive*/
  @media (max-width: 991px){
    body{
      overflow-x: hidden;
    }
    /*end*/
  }

  @media (max-width: 767px){
    body{
      font-size: 14px;
    }
    .m_off{
      display: none!important;
    }
    .m_on{
      display: block!important;
    }
  }


  @media screen and (max-width: 768px) {
      .shorts-card iframe {
          height: 200px;
      }
  }

  @media (max-width: 768px) {
      .missed-grid {
          grid-template-columns: 1fr;
      }
  }

  /* Mobile Tweaks */
  @media (max-width: 575px) {
      .news-item {
          /*flex-direction: column;
          gap: 6px;*/
      }

      .news-item img {
          width: 100%;
          height: auto;
      }
  }
  @media (max-width: 768px) {

      .video-right {
          max-height: none;
          overflow: visible;
          border-left: none;
      }
  }



@media (max-width: 991px){
  body{
    overflow-x: hidden;
  }

  /*Header*/
    header {
      height: 129px;
    }
    .navbar{
      padding-top: 0;
    }
    .navbar-header{
      text-align: center;
    }
    .navbar .brand {
      max-width: 200px;
      width: auto;
      margin: 5px auto;
      height: 70px;
    }
    .navbar .navbar-brand{
      padding: 0 10px;
    width: 100%;
    }
    .navbar-default .navbar-collapse{
      padding: 10px 0;
    }
    .navbar .main-header .mainmenu{
      width: 100%;
      position: absolute;
      left: 0;
      background: #fff;
      top: 129px;
      z-index: -1;
      transform: translateY(-100vh) rotateX(90deg);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .navbar .main-header .mainmenu.active{
      transform: translateY(0) rotateX(0deg);
      visibility: visible;
      opacity: 1;
    }
    .navbar-toggle {
      margin-top: 0px;
    }
    .navbar .mainmenu .menu {
      text-align: left;
      margin: 0px 0 0px;
    }
    .navbar .mainmenu .menu li {
      display: block;
      text-align: left;
    }
    .navbar .mainmenu .menu li a svg {
      display: inline-block;
      margin: 0px 5px 5px auto;
    }
    .navbar .menu li.subscribebtn{
      margin-bottom: 25px;
    }
    .navbar .menu .sub-menu{
      position: relative;
      top: 0!important;
      width: 100%;
      padding: 5px;
      background: transparent;
    }
    .navbar .menu li:hover:after {
      display: none;
    }
    .navbar .menu .sub-menu li{
      background: rgb(255 255 255 / 11%);
      margin-top: 10px;
    }
    .navbar .menu .sub-menu li a{
      color: white;
    }
    .navbar .btcats .menu li a{
      color: #fff!important;
    }
    .navbar .btcats .h_search{
      right: 5px;
    }
    .navbar .btcats .menu {
      margin: 0;
      text-align: center;
    }
    .navbar .btcats .menu li {
      display: block;
      margin: 0;
      padding: 7px 0px;
      text-align: left;
    }
    .navbar .btcats .menu .sub-menu{
      display: none!important;
    }
    .navbar .btcats .menu .sub-menu.active{
      display: block!important;
      margin: 3px 0 10px 13px;
      border-left: 1px solid rgb(255 255 255 / 42%);
      padding: 0;
      border-radius: 0;
      width: calc(100% - 13px);
    }
    .navbar .menu .col .sub-menu{
      -webkit-column-count: 1;
      -moz-column-count: 1;
      column-count: 1;
      -webkit-column-gap: 0px;
      -moz-column-gap: 0px;
      column-gap: 0px;
    }
    .navbar .btcats .menu li .fa-angle-down, .navbar .btcats .menu li .fa-angle-up{
      padding: 10px 15px;
      color: #fff;
      top: 30px;
    text-align: center;
      width: unset;
    }
    .navbar .btcats .menu li .fa-angle-down{
      transform: translateY(-50%) rotate(0deg)!important;
    }
    .navbar .btcats .menu li .fa-angle-down.active{
      transform: translateY(-50%) rotate(-180deg)!important;
    }
    .navbar .btcats .menu li:hover{
      background: transparent!important;
    }
    .navbar .btcats .cusmmenu{
      text-align: left!important;
    }
    .navbar .btcats .cusmmenu li{
      display: inline-block!important;
      background: transparent!important;
      cursor: pointer;
    }
    .navbar .btcats{
      margin-top: 0;
    }
    .btcats .menu-nav-menu-container{
      opacity: 0;
      visibility: hidden;
      position: fixed;
      top: 0;
      left: 0;
      transform: translateX(-120%);
      background: #000;
      width: 290px;
      height: 100vh;
      z-index: -10;
      padding: 0px 0px;
      transition: .3s;
    }
    .btcats .menu-nav-menu-container.active{
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
      z-index: 99999;
      overflow-y: auto;
      overflow-x: hidden;
    }
    .btcats .menu-nav-menu-container.active .menu{
      overflow-x: hidden;
      height: calc(100vh - 250px);
      overflow-y: auto;
    }
    .btcats .active .menu .sub-menu.active .sub-menu{
      right: unset!important;
      left: unset!important;
      width: calc(100% - 13px);
    }
    .btcats .active .menu .sub-menu.active .sub-menu{
      background: unset;
    }
    .btcats .active .menu .sub-menu.active .sub-menu li a {
      color: #fff;
    }
    .btcats .active .menu .current-post-ancestor,
    .btcats .active .menu .current-menu-parent,
    .btcats .active .menu .current-post-parent,
    .btcats .active .menu .sub-menu .current-menu-item {
      background: unset!important;
    }
    .btcats .menu-nav-menu-container .menuhd{
      position: relative;
      width: 290px;
      height: 240px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: center;
      justify-content: center;
      align-items: flex-start;
      background: #fff;
      border-bottom: 1px solid var(--primary-color);
    }
    body#top .menuhd.m_on{
      display: flex!important;
    }
    .btcats .mmoverlay{
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #001f4d14;
      backdrop-filter: blur(2px);
      transform: translateX(-120%);
      opacity: 0;
      visibility: hidden;
      z-index: -9;
    }
    .btcats .mmoverlay.active{
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
      z-index: 999;
    }
    .menuhd .social_md_list{
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      background: var(--secondary-color);
      padding-top: 0px;
      padding-bottom: 3px;
    }
    .menuhd .social_md_list li{
      width: 30px;
      height: 30px;
      padding: 3px 0 0 0;
      background: rgb(0 0 0 / 0%);
    }
    .menuhd .social_md_list li svg{
      fill: var(--txt-color1);
    }
    .menuhd .closex{
      position: absolute;
      top: 5px;
      right: 5px;
      width: 35px;
      height: 35px;
      color: #000;
      background: #fff;
      text-align: center;
      font-size: 20px;
      padding: 5px 0;
      border-radius: 10px;
      cursor: pointer;
    }
    .menuhd .brand{
      margin-bottom: 30px;
      width: 100%;
      max-width: unset;
      height: 100px;
      object-fit: contain;
      object-position: center;
      padding: 10px;
    }
    .btcats .menu-nav-menu-container.active:after{
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--primary-color);
      backdrop-filter: blur(1px);
      z-index: -5;
    }
  /*end*/
  
  .singlepost .sharepost{
    position: relative;
      left: 0;
      top: 0;
    margin-top: 30px;
  }
  .singlepost .sharepost .share_buttons{
    display: flex;
      align-items: center;
      justify-content: space-between;
    overflow: auto;
  }
  .singlepost .sharepost .share_buttons p{
    border-bottom: none;
      border-right: 1px solid rgb(236 236 236 / 37%);
      padding-right: 15px;
    min-width: 70px;
  }
}

@media (max-width: 767px){
  body{
    font-size: 14px;
  }
  .m_off{
    display: none!important;
  }
  body#top .m_on{
    display: block!important;
  }

  .breadcrumb{
    display: block;
  }

  .swiper-heroslider{
    margin-bottom: 30px;
  }
  .news-slidebar-card{
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
  .news-grid{
    grid-template-columns: repeat(1, 1fr);
  }
  .new-item{
    border-bottom: 1px solid rgb(51 51 51 / 25%);
  }
  .new-item:nth-child(odd)::after{
    display: none;
  }
  .pb_long.post_box .thumb img{
    width: calc(100% - 15px);
    left: 15px;
    top: 15px;
    position: relative;
  }
  .pb_long.post_box .thumb .bkmark{
    left: 20px;
    top: 10px;
  }
  .news-slidebar-title{
    padding-bottom: 0px;
  }

  .missed-card::after{
    display: none;
  }
  .missed-grid .missed-card{
    border-bottom: 1px solid rgb(51 51 51 / 25%);
  }
  .missed-grid .missed-card:last-child{
    border-bottom: 1px solid rgb(51 51 51 / 0%);
  }

  .video-section {
    flex-direction: column;
    max-width: 95%;
  }
  .video-right, .video-left{
    padding-left: 0;
    padding-right: 0;
  }

  .science-item{
    min-width: 300px;
  }

  .sports-section .news-header{
    position: relative;
    z-index: 1;
    margin-bottom: 90px;
  }
  .sports-section .news-header .tabs{
    position: absolute;
    bottom: -60px;
    width: 100%;
    overflow-x: auto;
    justify-content: space-evenly;
    flex-wrap: nowrap;
  }

  .post-box{
    margin-right: auto;
    margin-left: auto;
  }

  .sports-section .list-items{
    padding-left: 0;
  }
  .sports-section .list-items .list-item{
    min-width: 180px;
  }

  .fpoints{
    /*text-align: center;*/
    margin-bottom: 30px;
  }
  .fpoints h3, .fnote h3, .fsocial h3, .ftags h3, .ctninfos h3{
    padding-left: 30px;
  }
  .fpoints ul li{
    /*display: inline-block;*/
    /*margin: 5px 10px;*/
  }

  .singlepost .postmetadata h1{
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .science-item{
    min-width: 100%;
  }
  .post-box{
    min-width: 100%;
  }
  .sports-section .list-items .list-item{
    min-width: calc(50% - 0.5rem);
  }
}

/*end*/