/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #ffffff;
  }
  
  a {
    color: #fe0000;
    transition: 0.5s;
  }
  
  a:hover,
  a:active,
  a:focus {
    color: #000000;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 15px 0;
    color: #000000;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0 0 15px 0;
    padding: 0;
    color: #000000;
    font-weight: 600;
  }
  
  h4,
  h5,
  h6 {
    font-weight: 400;
  }
  
  .back-to-top {
    position: fixed;
    display: none;
    background: #fe0000;
    color: #ffffff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    border-radius: 6px;
    z-index: 11;
  }
  
  .back-to-top:hover {
    background: #000000;
  }
  
  .back-to-top i {
    padding-top: 9px;
    color: #ffffff;
  }
  a.profile_img:hover {
    background: none !important;
  }
  .snpost_date_time{
    padding-bottom: 20px;
  }
  
  /**********************************/
  /********* Form Input CSS *********/
  /**********************************/
  .form-control {
    width: 100%;
    height: 35px;
    padding: 5px 15px;
    color: #999999;
    border: 1px solid #cccccc;
    margin-bottom: 15px;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: #fe0000;
  }
  
  button.btn {
    color: #ffffff;
    background: #000000;
    border: 1px solid #000000;
  }
  
  button.btn:hover {
    color: #ffffff;
    background: #fe0000;
    border-color: #fe0000;
  }
  
  .footer-contact-details {
    display: flex;
    align-items: baseline;
    gap: 5px;
  }
  
  /**** Pal Pal India Icon CSS ****/
  .ppin {
    margin: 15px 0;
    background: #ffffff;
  }
  
  .ppin-sign-page {
    padding: 15px 0;
    background: transparent;
  }
  
  .ppin .ppin-logo,
  .ppin-sign-page .ppin-logo {
    text-align: left;
    overflow: hidden;
  }
  
  .ppin .ppin-logo a img,
  .ppin-sign-page a img {
    max-width: 100%;
    max-height: 60px;
  }
  
  .ppin .ppin-search {
    position: relative;
    width: 100%;
    text-align: right;
  }
  
  .ppin .ppin-search input[type='text'] {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #f2c1c1;
    height: 30px;
    color: #666666;
    border-radius: 6px;
    transition: width 0.5s ease-in-out, padding 0.5s ease-in-out;
  }
  
  .ppin .expand input[type='text'] {
    width: 100%;
    border: 1px solid #cccccc;
    padding: 0 15px;
    transition: width 0.5s ease-in-out, padding 0.5s ease-in-out;
  }
  
  .ppin .ppin-search input[type='text']:focus {
    border-color: #fe0000;
  }
  
  .top-menu-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .top-menu-search {
    position: relative;
    flex: auto;
  }
  
  .top-menu {
    display: flex;
    align-items: center;
  }
  
  .top-menu a {
    font-weight: 600;
    padding: 6px;
    border-radius: 6px;
  }
  
  .top-menu a:hover {
    padding: 6px;
    border-radius: 6px;
    background: #fe0000;
    color: white;
  }
  .sn-sss_post {
  clear: both;
}
  .ppin .ppin-search button {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    border: none;
    background: none;
    color: #fe0000;
    border-radius: 6px;
    outline: none;
  }
  
  .ppin .expand button {
    border-radius: 0 6px 6px 0;
  }
  
  .ppin .ppin-search button:hover {
    background: #fe0000;
    color: #ffffff;
  }
  
  @media (min-width: 768px) {
    .ppin {
      max-height: 90px;
    }
  }
  
  @media (max-width: 767.98px) {
    .ppin .ppin-logo,
    .ppin-sign-page .ppin-logo,
    .ppin .ppin-search {
      text-align: center;
      margin-bottom: 15px;
    }
  
    .ppin .ppin-search {
      margin-bottom: 0;
    }
  }
  
  /**********************************/
  /*********** Nav Bar CSS **********/
  /**********************************/
  .nav-bar {
    position: static;
    transition: position 0.3s ease; /* Add a transition for smoothness */
  }
  
  .nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: position 0.3s ease;
  }
  
  .nav-bar .navbar {
    height: 100%;
    padding: 0;
  }
  
  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link:focus,
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    margin-left: 2px;
    margin-right: 2px;
    color: #ffffff;
  }
  
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    border-bottom: 3px solid #ffffff;
    transition: none;
    width: fit-content;
  }
  
  .nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
  }
  
  @media (min-width: 1200px) {
    .nav-bar .navbar-ppin {
      display: none;
    }
  }
  
  @media (min-width: 768px) {
    .nav-bar,
    .nav-bar .navbar {
      border: 1px solid #fe0000;
      background: #fe0000 !important;
    }
  
    .nav-bar a.nav-link {
      padding: 8px 15px;
      font-size: 15px;
      text-transform: uppercase;
    }
  }
  
  @media (max-width: 768px) {
    .nav-bar,
    .nav-bar .navbar {
      padding: 3px 0;
      background: #fe0000 !important;
    }
  
    .nav-bar a.nav-link {
      padding: 5px;
    }
  
    .nav-bar .dropdown-menu {
      box-shadow: none;
    }
  
    .nav-bar .social {
      display: none;
    }
  
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
      margin: 10px 10px 8px 10px;
      color: #ffffff;
      padding: 0 0 5px 0;
    }
  }
  
  .nav-bar .social {
    font-size: 0;
    overflow: hidden;
  }
  
  .nav-bar .social a {
    display: inline-block;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    padding: 3px 0;
    text-align: center;
    font-size: 14px;
    background: #fe0000;
    border: 1px solid #ffffff;
    border-radius: 6px;
  }
  
  .nav-bar .social a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
  }
  
  .nav-bar .social a i {
    color: #ffffff;
  }
  
  .nav-bar .social a:hover i {
    color: #fe0000;
  }
  
  /**********************************/
  /********** Top News CSS **********/
  /**********************************/
  .top-news {
    position: relative;
    width: 100%;
    padding: 30px 0 0 0;
  }
  
  .top-news .tn-img {
    position: relative;
    overflow: hidden;
  }
  
  .top-news .tn-img img {
    width: 100%;
    transition: all 0.3s;
	  object-fit: cover;
  }
  
  .top-news .tn-img:hover img {
    transform: scale(1.2);
  }
  
  .top-news .tn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9)
    );
    display: flex;
    align-items: flex-end;
  }
  
  .top-news .tn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .top-news .tn-left .tn-title a {
    font-size: 30px;
    font-weight: 600;
  }
  
  .top-news .tn-title a:hover {
    color: #fe0000;
  }
  
  .top-news .tn-left {
    margin-bottom: 30px;
  }
  
  .top-news .tn-right {
    margin-bottom: 60px;
    padding: 0 30px;
  }
  
  .top-news .tn-right .col-md-6 {
    padding: 0;
  }
  
  .top-news .slick-prev,
  .top-news .slick-next {
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: 0.5s;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
  }
  
  .top-news .slick-prev {
    left: 30px;
  }
  
  .top-news .slick-next {
    right: 30px;
  }
  
  .top-news .slick-prev:hover,
  .top-news .slick-prev:focus,
  .top-news .slick-next:hover,
  .top-news .slick-next:focus {
    color: #ffffff;
    background: #fe0000;
  }
  
  .top-news .slick-prev::before,
  .top-news .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
  }
  
  .top-news .slick-prev::before {
    content: '\f104';
  }
  
  .top-news .slick-next::before {
    content: '\f105';
  }
  
  /**********************************/
  /******* Category News CSS ********/
  /**********************************/
  .cat-news {
    position: relative;
    width: 100%;
    padding: 0;
  }
  
  .cat-news .col-md-6 {
    margin-bottom: 30px;
  }
  
  .cat-news h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
  }
  
  .cat-news .cn-img {
    position: relative;
    overflow: hidden;
  }
  
  .cat-news .cn-img img {
    width: 100%;
    transition: all 0.3s;
	  object-fit: cover;
  }
  
  .cat-news .cn-img:hover img {
    transform: scale(1.2);
  }
  
  .cat-news .cn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9)
    );
    display: flex;
    align-items: flex-end;
  }
  
  .cat-news .cn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .cat-news .cn-title a:hover {
    color: #fe0000;
  }
  
  .cat-news .slick-prev,
  .cat-news .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: 0.5s;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
  }
  
  .cat-news .slick-prev {
    left: calc(100% - 85px);
  }
  
  .cat-news .slick-next {
    right: 14px;
  }
  
  .cat-news .slick-prev:hover,
  .cat-news .slick-prev:focus,
  .cat-news .slick-next:hover,
  .cat-news .slick-next:focus {
    color: #ffffff;
    background: #fe0000;
  }
  
  .cat-news .slick-prev::before,
  .cat-news .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
  }
  
  .cat-news .slick-prev::before {
    content: '\f104';
  }
  
  .cat-news .slick-next::before {
    content: '\f105';
  }
  
  /**********************************/
  /********** Tab News CSS **********/
  /**********************************/
  .tab-news {
    position: relative;
	  margin-bottom: 60px;
  }
  
  .tab-news .col-md-6 {
    margin-bottom: 60px;
  }
  
  .tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
  }
  
  .tab-news .nav.nav-pills .nav-link:hover,
  .tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #fe0000;
  }
  
  .tab-news .tab-content {
    padding: 30px 15px 15px 15px;
    background: rgba(0, 0, 0, 0.05);
  }
  
  .tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #ffffff;
  }
  
  .tab-news .tn-img {
    width: 150px;
  }
  
  .tab-news .tn-img img {
    width: 200px;
	  object-fit: cover;
	  height: 130px;
  }
  
  .tab-news .tn-title {
    padding: 10px 86px;
  }
  
  .tab-news .tn-title a {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s;
  }
  
  .tab-news .tn-title a:hover {
    color: #fe0000;
  }
  
  /**********************************/
  /********** Main News CSS *********/
  /**********************************/
  .main-news {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .main-news .col-md-4 {
    margin-bottom: 30px;
  }
  
  .main-news .mn-img {
    position: relative;
    overflow: hidden;
  }
  
  .main-news .mn-img img {
    width: 100%;
    transition: transform 0.3s;
	  object-fit: cover;
  height: 200px;
  }
  
  .main-news .mn-img:hover img {
    transform: scale(1.2);
  }
  
  .main-news .mn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9)
    );
    display: flex;
    align-items: flex-end;
  }
  
  .main-news .mn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .main-news .mn-title a:hover {
    color: #fe0000;
  }
  
  .main-news .mn-list {
    margin-bottom: 30px;
  }
  
  .main-news .mn-list h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
  }
  
  .main-news .mn-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .main-news .mn-list ul li {
    margin: 0 0 12px 22px;
  }
  
  .main-news .mn-list ul li:last-child {
    margin-bottom: 0;
  }
  
  .main-news .mn-list ul li a {
    color: #000000;
    display: block;
    line-height: 23px;
  }
  
  .main-news .mn-list ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
  }
  
  .main-news .mn-list ul li a:hover {
    color: #fe0000;
  }
  
  /**********************************/
  /********* Breadcrumb CSS *********/
  /**********************************/
  .breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
  }
  
  .breadcrumb-wrap .breadcrumb {
    margin: 25px 0 0 0;
    padding: 0;
    background: none;
  }
  
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #353535;
  }
  
  .breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: #353535;
  }
  
  /**********************************/
  /********* Single News CSS ********/
  /**********************************/
  .single-news {
    position: relative;
    width: 100%;
    padding: 25px 0 0 0;
    margin-bottom: 15px;
  }
  
  .single-news .sn-img {
    position: relative;
    overflow: hidden;
  }
  
  .single-news .sn-img img {
    width: 100%;
  }
  
  .single-news .sn-content {
    position: relative;
    width: 100%;
    padding: 30px 0;
  }
  
  .single-news .sn-live-video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .single-news .sn-live-video {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 6px;
  }
  
  #live-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .single-news .sn-content h1.sn-title {
    display: block;
    width: 100%;
    color: #000000;
  }
  
  .single-news .sn-related {
    margin-bottom: 45px;
  }
  
  .single-news .sn-related h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
  }
  
  .single-news .sn-slider .sn-img {
    position: relative;
    overflow: hidden;
  }
  
  .single-news .sn-slider .sn-img img {
    width: 100%;
    transition: transform 0.3s;
  }
  
  .single-news .sn-slider .sn-img:hover img {
    transform: scale(1.2);
  }
  
  .single-news .sn-slider .sn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9)
    );
    display: flex;
    align-items: flex-end;
  }
  
  .single-news .sn-slider .sn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .custom-col {
    padding: 2px !important;
  }
  
  .single-news .sn-slider .sn-title a:hover {
    color: #fe0000;
  }
  
  .single-news .sn-slider .slick-prev,
  .single-news .sn-slider .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: 0.5s;
    color: #ffffff;
    background: #000000;
    border-radius: 6px;
  }
  
  .single-news .sn-slider .slick-prev {
    left: calc(100% - 85px);
  }
  
  .single-news .sn-slider .slick-next {
    right: 14px;
  }
  
  .single-news .sn-slider .slick-prev:hover,
  .single-news .sn-slider .slick-prev:focus,
  .single-news .sn-slider .slick-next:hover,
  .single-news .sn-slider .slick-next:focus {
    color: #ffffff;
    background: #fe0000;
  }
  
  .single-news .sn-slider .slick-prev::before,
  .single-news .sn-slider .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
  }
  
  .single-news .sn-slider .slick-prev::before {
    content: '\f104';
  }
  
  .single-news .sn-slider .slick-next::before {
    content: '\f105';
  }
  
  /**********************************/
  /*********** Sidebar CSS **********/
  /**********************************/
  .sidebar {
    position: relative;
    width: 100%;
  }
  
  .sidebar .sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
  }
  
  .sidebar .sidebar-widget h2.sw-title {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
  }
  
  .sidebar .sidebar-widget .news-list {
    position: relative;
    margin-bottom: 30px;
  }
  
  .sidebar .news-list .nl-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .sidebar .news-list .nl-item .nl-img {
    width: 100px;
  }
  
  .sidebar .news-list .nl-item .nl-img img {
    width: 100px;
  }
  
  .sidebar .news-list .nl-item .nl-title {
    padding-left: 15px;
  }
  
  .sidebar .news-list .nl-item .nl-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
  }
  
  .sidebar .news-list .nl-item .nl-title a:hover {
    color: #fe0000;
  }
  
  .sidebar .sidebar-widget .tab-news {
    position: relative;
    margin-bottom: 30px;
  }
  
  .sidebar .tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
  }
  
  .sidebar .tab-news .nav.nav-pills .nav-link:hover,
  .sidebar .tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #fe0000;
  }
  
  .sidebar .tab-news .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
  }
  
  .sidebar .tab-news .tab-content .container {
    padding: 0;
  }
  
  .sidebar .tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .sidebar .tab-news .tn-img {
    width: 100px;
  }
  
  .sidebar .tab-news .tn-img img {
    width: 100px;
  }
  
  .sidebar .tab-news .tn-title {
    padding: 0 0 0 15px;
  }
  
  .sidebar .tab-news .tn-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
  }
  
  .sidebar .tab-news .tn-title a:hover {
    color: #fe0000;
  }
  
  .sidebar .sidebar-widget .category {
    position: relative;
  }
  
  .sidebar .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .sidebar .category ul li {
    margin: 0 0 12px 22px;
  }
  
  .sidebar .category ul li:last-child {
    margin-bottom: 0;
  }
  
  .sidebar .category ul li a {
    display: inline-block;
    color: #000000;
    line-height: 23px;
  }
  
  .sidebar .category ul li a:hover {
    color: #fe0000;
  }
  
  .sidebar .category ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
  }
  
  .sidebar .category ul li span {
    display: inline-block;
    float: right;
  }
  
  .sidebar .sidebar-widget .tags {
    position: relative;
  }
  
  .sidebar .sidebar-widget .tags a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 6px;
  }
  
  .sidebar .sidebar-widget .tags a:hover {
    color: #ffffff;
    background: #fe0000;
    border: 1px solid #fe0000;
  }
  
  .sidebar .sidebar-widget .image a {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  
  .sidebar .sidebar-widget .image img {
    max-width: 100%;
    transition: 0.3s;
  }
  
  .sidebar .sidebar-widget .image img:hover {
      transform: scale(1.2);
  }

  iframe {
    margin: 0 auto;
    display: block;
  }
  
  /**********************************/
  /********** Contact CSS ***********/
  /**********************************/
  .contact {
    position: relative;
    padding: 25px 0 15px 0;
  }
  
  .contact .contact-form,
  .contact .contact-info {
    padding: 30px;
  }
  
  .contact .contact-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
  }
  
  .contact .contact-info h4 i {
    color: #000000;
    margin-right: 5px;
  }
  
  .contact .social {
    position: relative;
    width: 100%;
  }
  
  .contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 6px;
  }
  
  .contact .social a i {
    color: #000000;
  }
  
  .contact .social a:hover {
    background: #fe0000;
    border-color: #fe0000;
  }
  
  .contact .social a:hover i {
    color: #ffffff;
  }

  .contact-container {
    background: #f0f0f0;
    height: max-content;
    border-radius: 6px;
  }

  .contact-container-form {
    padding: 0;
  }
  
  /**********************************/
  /********** Footer CSS ************/
  /**********************************/
  .footer {
    position: relative;
    padding: 60px 0 0 0;
    background: #111111;
  }
  
  .footer .footer-widget {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
  }
  
  .footer .footer-widget .title {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 3px double #ffffff;
  }
  
  .footer .footer-widget p {
    color: #ffffff;
  }
  
  .footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .footer .footer-widget ul li {
    margin-bottom: 12px;
  }
  
  .footer .footer-widget ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer .footer-widget ul li a {
    color: #ffffff;
    white-space: nowrap;
    display: block;
    line-height: 23px;
  }
  
  .footer .footer-widget ul li a::before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 5px;
  }
  
  .footer .footer-widget ul li a:hover {
    padding-left: 10px;
    color: #fe0000;
  }
  
  .footer .contact-info p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 16px;
  }
  
  .footer .contact-info p i {
    color: #ffffff;
    margin-right: 5px;
  }
  
  .footer .social {
    position: relative;
    width: 100%;
  }
  
  .footer .social a {
    display: inline-block;
    margin: 10px 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    border-radius: 6px;
  }
  
  .footer .social a i {
    color: #111111;
  }
  
  .footer .social a:hover {
    background: #fe0000;
  }
  
  .footer .social a:hover i {
    color: #ffffff;
  }
  
  .footer .newsletter {
    position: relative;
    width: 100%;
  }
  
  .footer .newsletter form {
    position: relative;
    width: 100%;
  }
  
  .footer .newsletter input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    border: 1px solid #ffffff;
    border-radius: 6px;
  }
  
  .footer .newsletter .btn {
    position: absolute;
    width: 80px;
    height: 35px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    border: 1px solid #ffffff;
    border-radius: 0 6px 6px 0;
  }
  
  .footer .newsletter .btn:hover {
    background: #fe0000;
  }
  
  .footer .newsletter input:focus,
  .footer .newsletter .btn:focus {
    box-shadow: none;
  }
  
  /**********************************/
  /******** Footer Menu CSS *********/
  /**********************************/
  .footer-menu {
    position: relative;
    background: #111111;
  }
  
  .footer-menu .container {
    padding: 15px 0;
    border-top: 1px solid #000000;
  }
  
  .footer-menu .f-menu {
    font-size: 0;
    text-align: center;
  }
  
  .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
  }
  
  .footer-menu .f-menu a:hover {
    color: #fe0000;
  }
  
  .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  
  /******** Footer CSS *******/
  .footer-bottom {
    position: relative;
    padding: 15px 0;
    background: #000000;
  }
  
  .footer-bottom .copyright {
    text-align: center;
  }
  
  .footer-bottom .copyright p {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
  }
  
  .footer-bottom .copyright p a {
    font-weight: 600;
  }
  
  .footer-bottom .copyright p a:hover {
    color: #ffffff;
  }


.alignright { float: right; margin: 0 0 1em 1em; }
.alignleft { float: left; margin: 0 1em 1em 0; }
.alignnone { float: left; margin: 0 1em 1em 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.category_sec {
  border-bottom: 1px solid #ccc;
  padding-top: 30px;
  padding-bottom: 30px;
}
.category_sec {
    display: flex;
    align-items: center; /* Vertically align content */
}
.cate_img img {
  width: 300px;
  border-radius: 6px;
  object-fit: cover;
  height: 200px;
}

.cate_content {
  padding-left: 48px;
}
.single-news {
  margin-bottom: 48px;
}
  
  @media (max-width: 768.98px) {
    .footer-bottom .copyright {
      text-align: center;
    }
    .category_sec {
      display: block;
    }
    .cate_content {
      padding-left: 0px;
      padding-top: 20px;
    }
  }
  
  /* width */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(175, 175, 175);
    border-radius: 6px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(145, 144, 144);
    border-radius: 6px;
  }
  
  .sign-page {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .sign-page::before {
    content: '';
    backdrop-filter: blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
  
  .sign-page-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
  }
  
  .sign-page-container {
    margin: 20px;
    background-color: white;
    border-radius: 6px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    width: 400px;
  }
  
  .sign-page-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 39px;
    color: #333;
    line-height: 1.2;
    text-align: center;
  }
  
  .sign-page-inp {
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    outline: none;
    padding: 3px 0 3px 0;
  }
  
  .sign-page-btn {
    width: 100%;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    height: 35px;
    color: white;
    font-weight: 600;
    background: linear-gradient(
      90deg,
      rgba(255, 0, 0, 1) 0%,
      rgba(215, 198, 0, 1) 75%,
      rgba(255, 243, 0, 1) 100%
    );
    background-size: 200% 100%; /* Double the width to create space for animation */
    transition: background-position 0.5s ease;
    outline: none;
  }
  
  .sign-page-btn:hover {
    background-position: 100% 0; /* Move the background position to the right */
    transition: background-position 0.5s ease; /* Apply transition only to background position */
    animation: gradientChange 2s forwards;
  }

#menu-headermenu {
  list-style-type: none;
  margin-bottom: 0;
}

#menu-headermenu li {
  display: inline-block;
}

/* Media query for tablets (e.g., iPad) */
@media screen and (max-width: 560px) {
#live-iframe {
  height: 300px;
}
}
@media screen and (max-width: 1199px) {
  #menu-headermenu {
    text-align: left;
    padding: 10px 0; /* Add padding to center-align the menu items */
  }

  #menu-headermenu li {
    display: block; /* Change to block-level for mobile and tablets */
    margin-bottom: 10px; /* Add spacing between list items */
  }

  #menu-headermenu li:last-child {
    margin-bottom: 0;
  }
}

  @keyframes gradientChange {
    0% {
      background-position: 200% 0;
    }
    75% {
      background-position: 0 0;
    }
    100% {
      background-position: 0 0;
    }
  }
  
  .divider {
  border-top: 1px solid #ccc;
  margin-top: 20px; /* Adjust the gap between rows as needed */
  padding-top: 20px; /* Adjust the padding as needed */
}

.career-img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 135px;
}

.career-title {
  margin: 30px 0 10px 0;
}

.career-details-meta {
  margin: 0 20px;
}

.career-details-meta p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #707070;
  font-size: 14px;
}

.career-detail-submit-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-details-ico {
  text-align: center;
  margin: auto;
  padding: 15px;
  background: black;
  border-radius: 50%;
  color: white;
  width: 50px;
  height: 50px;
}

.contact-details-info {
  display: flex;
  padding: 10px 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-details-info-container {
  margin-top: 50px;
  margin-bottom: 10px;
}

  .message_box textarea {
    resize: none;
  }

  
.voting-img-contain {
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  width: 250px;
/*  height: 525px;*/
height: 480px;
  position: relative;
}

.voting-img-contain img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.voting-img-contain img.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  position: absolute;
  top: 275px;
  left: 100px;
}

.voting-img-contain .title {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
}

.voting-img-contain .title p {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
}

.voting-img-contain .title .vote-btn {
  padding: 10px;
}

.vote-container {
  margin: 20px 0;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: #fff;
    text-decoration:none;
}
 
.navigation li {
    display: inline;
}
 
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    background-color: #6FB7E9;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}
 
.navigation li a:hover,
.navigation li.active a {
    background-color: #3C8DC5;
}

.comment_sect textarea {
  width: 100%;
}
iframe{
  width: 100%;
}