@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700&family=Questrial&family=Roboto:wght@100;300;400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "kalimati", sans-serif;
}

h1, h2, h3, h4, h5 {
  font: inherit;
  padding: 0;
  margin: 0;
}

img, svg {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  margin-block: 0 !important;
}

ul[role=list], li[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

input:focus-visible {
  outline: none !important;
}

textarea:focus-visible {
  outline: none !important;
}

a {
  text-decoration: none !important;
}

a:not(.button) {
  border: 0 !important;
}

a:not(.button):hover, a:not(.button):focus {
  border-bottom: 0 !important;
}

a:not(.button):hover, a:not(.button):focus {
  border-bottom: 0 !important;
}

.comments {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.comments .rows {
  display: flex;
  gap: 20px;
}
.comments .rows .cols-1 {
  flex-basis: 5%;
}
.comments .rows .cols-1 .image {
  height: 40px;
  width: 40px;
}
.comments .rows .cols-1 .image img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.comments .rows .cols-2 {
  flex-basis: 95%;
}
.comments .rows .cols-2 .comment_box1 .input_box {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}
.comments .rows .cols-2 .comment_btn1 {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}
.comments .rows .cols-2 .comment_btn1 .cancel1 {
  padding: 8px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.comments .rows .cols-2 .comment_btn1 .cancel1:hover {
  background: #414141;
  color: #fff !important;
  padding: 8px;
  transition: all 0.5s ease-in-out;
}
.comments .rows .cols-2 .comment_btn1 .cmt1 {
  background: #000;
  color: #fff !important;
  padding: 8px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.comments .rows .cols-2 .comment_btn1 .cmt1:hover {
  background: #414141;
}

.date_post {
  color: #fff;
  font-size: 11px;
}

.grid-post {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr;
}

.related_post {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .related_post {
    flex-direction: column;
  }
}
.related_post .rows .cols-2 {
  color: #000;
  margin-top: 10px;
}
.related_post .rows .cols-2 h4 {
  font-size: 11px;
}

@media (max-width: 992px) {
  .header_tags {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .header_tags {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}

.search_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
}
.search_links .search {
  position: relative;
  width: 300px;
}
@media (max-width: 768px) {
  .search_links .search {
    width: 200px;
  }
}
.search_links .search input {
  border-radius: 25px;
  border: 0px;
  background: #414141;
  color: white;
  padding: 0px 15px;
  width: 100%;
}
.search_links .search .glass {
  position: absolute;
  top: 0px;
  right: 10px;
}
.search_links .search .glass svg {
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
  color: white;
  cursor: pointer;
}
.search_links .links {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .search_links .links {
    display: none;
  }
}
.search_links .links a svg {
  color: #fff;
}

.box_story {
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 45px 25px;
  height: 100%;
}

.drop_list {
  position: relative;
}
.drop_list:hover {
  color: #F7AF4B !important;
}
.drop_list .sub_drop_list {
  display: none !important;
  flex-direction: column;
  background: #000;
  position: absolute;
  top: 34px;
  z-index: 999;
  gap: 0 !important;
}
.drop_list .sub_drop_list li {
  padding: 5px 20px;
  border-bottom: 0.5px solid #fff;
  white-space: nowrap;
}
.drop_list .sub_drop_list li:last-child {
  border: 0;
}
.drop_list:hover .sub_drop_list {
  display: flex !important;
}

.news_list_1 {
  flex-basis: 70%;
}

.mt_blk {
  margin-block: 50px;
}

.mg_blk {
  margin-block: 20px;
}

.title_post {
  position: relative;
}
.title_post h3 {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 10px;
  margin: 0 auto;
  padding: 5px 0px;
  font-weight: 600;
}
.title_post::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 0.5px;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.head_title {
  margin-bottom: 50px;
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .head_title {
    font-size: 20px;
  }
}
.head_title .logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto !important;
  padding: 0 10px !important;
  color: #ff0000;
  font-weight: 200;
}

.continue_fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.continue_para {
  text-align: center;
  position: relative;
}
.continue_para .continue_box {
  color: #000 !important;
  font-weight: 300;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  padding: 5px 10px;
  text-transform: uppercase;
  background: #fff;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.continue_para .continue_box a {
  color: #000;
}
.continue_para .continue_box:hover a {
  color: #fff !important;
}
.continue_para .continue_box:hover {
  background: #414141;
  color: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}
.continue_para::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 0.5px;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.head-secondary {
  font-size: 24px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .head-secondary {
    font-size: 20px;
  }
}

.sm-head-secondary {
  font-size: 16px;
  text-transform: uppercase;
  /* margin-bottom: 5px; */
  font-weight: 300;
  background-color: #0093d5;
}

.para {
  font-weight: 300;
}

.full p {
  display: block !important;
}

.tag_boxes {
  color: #fff !important;
  background: black;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 8px;
  text-transform: uppercase;
  cursor: pointer;
}

.tags {
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.tags .tag_box {
  color: #fff !important;
  background: black;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 5px 8px;
  text-transform: uppercase;
  margin-right: 10px;
}
.tags span {
  font-size: 11px;
  padding-right: 10px;
}

.fancy_link_underline {
  background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1px;
  transition: background-size 0.5s ease-in-out !important;
  letter-spacing: 1px;
  color: #000 !important;
}
.fancy_link_underline:hover {
  background-size: 100% 1px;
}

section.navigation {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 99999;
  margin-top: -50px;
}
section.navigation .nav_nav_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0093d5;
  padding-inline: 21px;
}
@media (max-width: 768px) {
  section.navigation .nav_nav_wrapper {
    padding: 8px 20px;
    position: relative;
    justify-content: end;
  }
}
@media (max-width: 768px) {
  section.navigation .nav_nav_wrapper .nav_nav {
    display: none;
  }
}
section.navigation .nav_nav_wrapper .nav_nav ul {
  display: flex;
}
@media (max-width: 768px) {
  section.navigation .nav_nav_wrapper .nav_nav ul {
    position: absolute;
    top: 33px;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    z-index: 999;
    padding: 20px;
  }
}
section.navigation .nav_nav_wrapper .nav_nav ul li {
  color: #fff;
  cursor: pointer;
  padding: 10px 25px;
}
section.navigation .nav_nav_wrapper .nav_nav ul li a {
  color: #fff;
}
section.navigation .nav_nav_wrapper .nav_nav ul li a:hover {
  color: #F7AF4B;
}
section.navigation .nav_nav_wrapper .nav_nav.show {
  display: block;
}
section.navigation .nav_nav_wrapper .hamburger_menu {
  display: none;
}
@media (max-width: 768px) {
  section.navigation .nav_nav_wrapper .hamburger_menu {
    display: block;
    left: 25px;
    position: absolute;
    top: 0;
    height: 100%;
    cursor: pointer;
  }
}
section.navigation .nav_nav_wrapper .hamburger_menu span {
  background: #fff;
  display: block;
  height: 1px;
  width: 30px;
  position: relative;
  top: 50%;
}
section.navigation .nav_nav_wrapper .hamburger_menu span::after {
  content: "";
  background: #fff;
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  top: 8px;
}
section.navigation .nav_nav_wrapper .hamburger_menu span::before {
  content: "";
  background: #fff;
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  top: -8px;
}

section.header_wrapper {
  /* margin-block: 5px; */
}
section.header_wrapper .slider_wrapper {
  width: 100%;
  /* height: 75vh; */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper {
    height: 50vh;
  }
}
section.header_wrapper .slider_wrapper .slide {
  position: absolute;
  /* height: 100%; */
  width: 100%;
  /* background: #414141; */
  background-image: linear-gradient(315deg, #ffffff 0%, #00c2ff2e 50%, #ffffff 100%);
  /* padding: 25px; */
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .slide {
    background: transparent;
    padding: 0;
  }
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .slide {
    background: transparent;
    padding: 0;
  }
}
section.header_wrapper .slider_wrapper .slide .image {
  height: 100%;
  -webkit-clip-path: polygon(35% 0, 100% 0, 100% 100%, 55% 100%);
          clip-path: polygon(35% 0, 100% 0, 100% 100%, 55% 100%);
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .slide .image {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .slide .image {
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .slide .image img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .slide .image img {
    height: 100%;
  }
}
section.header_wrapper .slider_wrapper .slide .text_slide {
  position: absolute;
  top: 50%;
  color: white;
  width: 40%;
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .slide .text_slide {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .slide .text_slide {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
section.header_wrapper .slider_wrapper .slide .text_slide h1 {
  font-size: 32px;
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .slide .text_slide h1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .slide .text_slide h1 {
    font-size: 14px;
  }
}
section.header_wrapper .slider_wrapper .slide .text_slide h1 .fancy_link {
  background-image: linear-gradient(black, black);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0%;
  transition: background-size 1s ease-in-out;
  letter-spacing: 1px;
  color: #fff !important;
}
section.header_wrapper .slider_wrapper .slide .text_slide h1 .fancy_link:hover {
  background-size: 100%;
}
section.header_wrapper .slider_wrapper .btns {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px;
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .btns {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 992px) {
  section.header_wrapper .slider_wrapper .btns {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
section.header_wrapper .slider_wrapper .btns .btn_btn {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  padding: 16px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
@media (max-width: 768px) {
  section.header_wrapper .slider_wrapper .btns .btn_btn {
    padding: 10px;
  }
}
section.header_wrapper .slider_wrapper .btns .btn_btn:hover {
  background: #000;
}
section.header_wrapper .slider_wrapper .btns .btn_btn svg {
  color: #fff;
}

.news_row {
  display: flex;
  gap: 5px;
  padding: 5px;
}
section.news_row .rows_wrapper {
  display: flex;
  gap: 5px;
  justify-content: center;
}
@media (max-width: 992px) {
  section.news_row .rows_wrapper {
    flex-direction: column;
  }
}
section.news_row .rows_wrapper .categories {
  /* flex-basis: 60%; */
  width: 600px;
}
section.news_row .rows_wrapper .categories .category {
  margin-bottom: 5em;
}
section.news_row .rows_wrapper .categories .category .cate_flex {
  display: flex;
  position: relative;
  gap: 10px;
  margin-bottom: 3em;
  background: #000;
  color: #fff;
  padding: 10px;
  overflow: hidden;
}
section.news_row .rows_wrapper .categories .category .cate_flex .cate {
  color: #fff !important;
  letter-spacing: 2px;
  padding: 5px 8px;
  text-transform: uppercase;
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowright {
  display: none;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to left, #000 50%, transparent);
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowright svg {
  padding: 5px;
  border-radius: 3px;
  transition: all 0.3s ease-in;
  width: -moz-fit-content;
  width: fit-content;
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowright svg:hover {
  background: #414141;
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowleft {
  display: none;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 120px;
  background: linear-gradient(to right, #000 50%, transparent);
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowleft svg {
  padding: 5px;
  border-radius: 3px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in;
}
section.news_row .rows_wrapper .categories .category .cate_flex .arrowleft svg:hover {
  background: #414141;
}
@media (max-width: 992px) {
  section.news_row .rows_wrapper .categories .category .cate_flex .arrowleft.active {
    display: flex;
  }
}
@media (max-width: 768px) {
  section.news_row .rows_wrapper .categories .category .cate_flex .arrowright.active {
    display: flex;
  }
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: scroll;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list::-webkit-scrollbar {
  display: none;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list li {
  background: #414141;
  border-radius: 3px;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list li.active {
  background: #fff;
  color: #000;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list .sub_cat {
  padding: 0 10px;
  cursor: pointer;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list .drop_hover {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list .drop_hover .drop_category {
  position: absolute;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-width: 0 1px 1px;
  border-color: #ededed;
  border-style: solid;
  display: none;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list .drop_hover .drop_category li {
  padding: 5px 21px;
  white-space: nowrap;
}
section.news_row .rows_wrapper .categories .category .cate_flex .category_list .drop_hover:hover .drop_category {
  display: block;
}
section.news_row .rows_wrapper .categories .category .swiper {
  max-width: 900px;
  height: 100%;
  margin-bottom: 50px;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper {
  margin-bottom: 50px;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box {
  position: relative;
  background: #414141;
  transition: all 0.5s ease-in;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box:hover {
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.75);
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box .image {
  overflow: hidden;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box .image img {
  transition: all 0.5s ease-in;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box .inner {
  padding: 10px;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box .inner .inner_tag {
  color: #fff;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box .inner .inner_tag:hover {
  color: orange;
}
section.news_row .rows_wrapper .categories .category .swiper .card_wrapper .card_box:hover img {
  transform: scale(1.3);
}
section.news_row .rows_wrapper .categories .category .swiper span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #414141;
  border-radius: 0;
  width: 20px;
  height: 20px;
}
section.news_row .rows_wrapper .categories .category .swiper span.swiper-pagination-bullet {
  background: #414141;
  border-radius: 0;
  width: 20px;
  height: 20px;
}
section.news_row .rows_wrapper .categories .news_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
section.news_row .rows_wrapper .categories .news_list .text_box .tags {
  width: -moz-fit-content;
  width: fit-content;
}
section.news_row .rows_wrapper .categories .news_list .text_box .image {
  margin-block: 20px;
}
section.news_row .rows_wrapper .categories .news_list .text_box .para {
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
section.news_row .rows_wrapper .categories .news_list .text_box .para p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
section.news_row .rows_wrapper .categories [data-tab-content] {
  display: none;
}
section.news_row .rows_wrapper .categories .active[data-tab-content] {
  display: flex;
}
section.news_row .rows_wrapper .news_sidebar {
  flex-basis: 20%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  height: 100%;
}
section.news_row .rows_wrapper .news_sidebar .aside_news::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 0.5px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news:last-child::after {
  display: none;
}
section.news_row .rows_wrapper .categories .news_sidebar .aside_news .latest_post {
  padding: 0px;
  width: 600px;
}

section.news_row .rows_wrapper .news_sidebar .aside_news .latest_post {
  padding: 0px;
  width: 197px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content.message_slider{
  /* width: 751px; */
  width: 100%;


}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content {
  /* display: flex; */
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 244px;
  overflow: hidden;
}

section.news_row .rows_wrapper .categories .news_sidebar .aside_news .post_content .rows {
  width: 600px;
}

section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  align-items: center;
  position: relative;
  /* width: 100%; */
  width: 197px;
  border: 1px solid #f2ebeb;
  padding: 5px 35px;
    background-image: linear-gradient(315deg, #ffffff 0%, #00c2ff2e 50%, #ffffff 100%);
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows:last-child::after {
  display: none;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows .cols-1 .image {
  height: 85px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows .cols-1 .image img {
  height: 100%;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows .cols-2 h4 {
  font-size: 11px;
  font-weight: 300;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows .cols-2 a {
  color: #000;
  font-size: 13px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .post_content .rows .cols-2 a h3 {
  font-size: 13px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .tags_post {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .newsletter p {
  font-size: 13px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .newsletter form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .newsletter form input {
  background: #eee;
  border: 0;
  padding: 8px;
  border-radius: 25px;
  text-align: center;
  font-weight: 300;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .newsletter form .sub_btn {
  background: black;
  border-radius: 25px;
  color: #fff !important;
  text-align: center;
  padding: 8px;
  font-weight: 300;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .social_post {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
section.news_row .rows_wrapper .news_sidebar .aside_news .social_post a {
  color: #000;
}

.story_detail {
  margin-top: 50px;
}
.story_detail .prev_nxt {
  display: flex;
  justify-content: space-between;
  margin-block: 50px;
}
.story_detail .prev_nxt .side span {
  font-size: 16px;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  padding: 8px 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .story_detail .prev_nxt .side span {
    font-size: 11px;
  }
}
.story_detail .prev_nxt .side span:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.story_detail .prev_nxt .side a {
  color: #000;
}
@media (max-width: 768px) {
  .story_detail .prev_nxt .side a {
    font-size: 12px;
  }
}
.story_detail .prev_nxt .side:nth-child(1) {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.story_detail .prev_nxt .side:nth-child(2) {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.story_detail .related_post {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .story_detail .related_post {
    flex-direction: column;
  }
}
.story_detail .related_post .rows .cols-2 {
  color: #000;
  /* margin-top: 10px; */
}
.story_detail .related_post .rows .cols-2 h4 {
  font-size: 11px;
}
.story_detail .comments {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.story_detail .comments .rows {
  display: flex;
  gap: 20px;
}
.story_detail .comments .rows .cols-1 {
  flex-basis: 5%;
}
.story_detail .comments .rows .cols-1 .image {
  height: 40px;
  width: 40px;
}
.story_detail .comments .rows .cols-1 .image img {
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.story_detail .comments .rows .cols-2 {
  flex-basis: 95%;
}
.story_detail .comments .rows .cols-2 .name_wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
}
.story_detail .comments .rows .cols-2 .name_wrapper .user {
  letter-spacing: 1px;
}
.story_detail .comments .rows .cols-2 .name_wrapper .user span {
  opacity: 0.5;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment {
  display: none;
  gap: 20px;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-1 {
  flex-basis: 5%;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 {
  flex-basis: 95%;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_box .input_box1 {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_btn .cancel {
  padding: 8px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_btn .cancel:hover {
  background: #414141;
  color: #fff !important;
  padding: 8px;
  transition: all 0.5s ease-in-out;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_btn .cmt {
  background: #000;
  color: #fff !important;
  padding: 8px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.story_detail .comments .rows .cols-2 .user_comments .hide_comment .cols-2 .comment_btn .cmt:hover {
  background: #414141;
}

section.story_form {
  margin-block: 50px;
}
section.story_form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
section.story_form form .form_flex {
  display: flex;
  flex-direction: column;
}
section.story_form form .form_flex label {
  font-size: 16px;
}
section.story_form form .form_flex input {
  padding-inline: 5px;
  border: 0;
  border-bottom: 1px solid #000;
}
section.story_form form .form_flex textarea {
  padding-inline: 5px;
}
section.story_form form .btns a {
  padding: 8px 10px;
  background: #000;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}
section.story_form form .btns a:hover {
  background: #414141;
}

.footer {
  background: #000;
  padding-block: 50px;
}
.footer .story {
  margin-bottom: 20px;
}
.footer .story a {
  color: #fff;
  font-size: 20px;
}
.footer .contact .mail p {
  color: #fff;
  margin-bottom: 5px;
}
.footer .contact .mail p span {
  color: #F7AF4B;
}
.footer .contact .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .contact .links a {
  color: #fff;
}/*# sourceMappingURL=main.css.map */


/* new css start */
img.org_logo, img.secondary_logo {
  width: 80px;
}
.top_header {
  display: flex;
  flex-direction: row;
  gap: 204px;
  max-height: 165px;
  padding-top: 5px;
  background-image: linear-gradient(315deg, #ffffff 0%, #00c2ff2e 50%, #ffffff 100%);

}

p.org_title {
  font-size: 32px;
  font-weight: 600;
  color: #ff0000;
  padding: 0;
  margin: 0;
  margin-top: -10px;
}

p.org_sub_title {
  font-size: 32px;
  color: #ff0000;
  padding: 0;
  margin: 0;
  margin-top: -10px;


}
p.org_address {
  color: #ff0000;
  font-size: 24px;
  margin: 0;
  padding: 0;
  margin-top: -12px;

}


/* Ticker container */
.nav_nav_wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.news_ticker_content {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  position: absolute;
  left: 100%; /* Start off-screen to the right */
}

/* Ticker items */
.news_ticker_content li {
  display: inline-block;
  margin-right: 50px;
}

.news_ticker_content li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}






.slider_section {
  display: flex;
  gap: 5px;
  padding: 5px;
}

.slider_wrapper.video_slider {
  flex-basis: 60%;
}
.slider_wrapper.image_slider {
  flex-basis: 40%;
  max-height: 360px;
}


.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
}

#story_slider {
  display: flex; /* Align slides in a row */
  transition: transform 1.5s ease; /* Add smooth transition */
}

.slide {
  position: relative;
  flex: 0 0 100%;
  box-sizing: border-box;
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 360px;
  display: block;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 0);
  padding: 10px;
  color: #fff;
  background-color: rgb(10 123 190 / 60%);text-align: center;
  font-size: 18px;
  z-index: 1;
  transition: transform 0.5s ease; /* Smooth transition */
}



.navigation {
  overflow: hidden; /* Hide scroll bars */
  background-color: #f0f0f0; 
  position: relative; 
  width: 100%; /* Make sure it fits your container */
}

.nav_nav {
  display: flex; 
  align-items: center; 
}

.news_ticker_content {
  display: flex; 
  white-space: nowrap; /* Ensure all list items are in one line */
}

.news_ticker_content li {
  list-style: none; 
  margin-right: 50px; 
}




span.news_ticker_title {
  background-color: #ff0000;
  color: #fff;
  padding: 3px 20px;
  z-index: 1;
  margin-left: -21px;
  font-weight: 600;
  font-size: 20px;
}
.owl-dots {
  display: none;
}

.staff_name{
  font-size: 16px !important;
  font-weight: 600;
}

.image img{
  border: 1px solid grey;
  padding: 1px;
}

.rows.message_item.item {
  height: 160px;
}

@keyframes slideRevealY {
  0% {
      transform: translateY(-100%); /* Slide in from the top */
      opacity: 0;
  }
  100% {
      transform: translateY(0); /* End position */
      opacity: 1;
  }
}

.message_content {
  font-size: 18px;
  font-style: italic;
  font-family: kalimati;
  color: #0b1b78;
  font-weight: 900;
  line-height: 30px;
  padding-top: 5px;
}

.message_content.animate {
  animation: slideRevealY 1.2s ease forwards; /* Apply vertical slide-in reveal */
}



.slider_wrapper {
  width: 755px;
  height: 360px;
  position: relative;
  overflow: hidden;
}




/* License Expired */
/* Fullscreen overlay */
#licenseExpiredPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%); /* Transparent black background */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 1.5em;
  text-align: center;
  z-index: 111111;
  display: none; /* Initially hidden */
}
/* Popup content styling */
.popup-content {
  background: rgba(255, 0, 0, 0.9); /* Semi-transparent red */
  padding: 20px;
  border-radius: 8px;
  max-width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* License Expired */
