* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.font-brand{
    font-family: "Anek Odia", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  font-family: "Anek Odia", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: #f3f3f3;
}

/* ==================== navbar css ======================== */

:root {
  --black: #000;
  --white: #fff;
  --white-50p: #ffffff7d;
  --primary-clr: #ffffff;
  --secondary-clr: #625ce1;
  --search-clr: #576070;
  --yellow: #ffb200;
  --hr-clr: #ccc;
}

/* navbar */

nav {
  width: 100%;
  background-color: var(--primary-clr);
  position: fixed;
  top: 0;
  z-index: 9;
  transition: all 80ms ease-out;
}

nav.scrolled {
  box-shadow: 0px 1px 6px rgba(48, 48, 48, 0.402);
}

.search-div {
  background-color: var(--white);
  border-radius: 50%;
  border: 1.5px solid #000000cb;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 3rem;
  height: 3rem;
}

.search-div img {
  opacity: 0.6;
  width: 20px;
}

.search-div:hover {
  background-color: #7973e628;
  border: 1.5px solid #706aee5f;
}
.flexCenter {
  display: flex;
  align-items: center;
}
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
  min-height: 80px;
}

.logo {
  width: 80px;
}

.logo img {
  width: 100%;
}

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

.navMenu li {
  list-style: none;
  margin: 0px 20px;
}

.navMenu li a {
  text-decoration: none;
  color: #525252;
  font-size: 20px;
}

.form_control {
  position: relative;
}

.active-navStyle {
  font-weight: 800;
  color: var(--secondary-clr) !important;
}

.navStyle {
  position: relative;
}

.navStyle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-clr);
  left: 0;
  bottom: -10px;
  transition: width 0.5s ease-in-out;
}

.navStyle:hover::after {
  width: 100%;
}

.navStyle::before {
  content: "";
  position: absolute;
  font-size: 2rem;
  color: var(--secondary-clr);
  top: -3px;
  left: 38%;
}

.navStyle:hover:before {
  content: url("/<?php echo $siteURL; ?>assets/Img/Icon/Polygon 1.png");
  margin-top: 5px;
}

.active-navStyle {
  position: relative;
}

.active-navStyle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-clr);
  left: 0;
  bottom: -10px;
  transition: width 0.5s ease-in-out;
}

.active-navStyle::before {
  content: url("/<?php echo $siteURL; ?>assets/Img/Icon/Polygon 1.png");
  position: absolute;
  font-size: 2rem;
  color: var(--secondary-clr);
  top: 2px;
  left: 38%;
}

#check {
  display: none;
}

#checkbtn {
  display: none;
}

.menu-search-btn {
  display: none;
}

.dis-none-inhr {
  display: none;
}

/* ============================== navbar css end =========================== */

/* ======================================= index css starts here =============================== */
/* .form_control,
.navStyle,
.search_input {
    position: relative
}

h2,
p {
    margin-top: 10px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Rubik, sans-serif;
    background-color: #f3f3f3
}

:root {
    --black: #000;
    --white: #fff;
    --white-50p: #ffffff7d;
    --primary-clr: #ffffff;
    --secondary-clr: #625CE1
}

nav {
    width: 100%;
    background-color: var(--primary-clr);
    position: fixed;
    top: 0;
    transition: 80ms ease-out;
    z-index: 9
}

nav.scrolled {
    box-shadow: 0 1px 6px rgba(48, 48, 48, .402)
}

.navBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    min-height: 80px
}

.search-div {
    background-color: var(--white);
    border: 1.5px solid #000000cb;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 3rem;
    height: 3rem
}

.search-div img {
    opacity: .6;
    width: 20px
}

.search-div:hover {
    background-color: #7973e628;
    border: 1.5px solid #706aee5f
}

.active-navStyle::after,
.navStyle::after {
    content: '';
    height: 2px;
    background-color: var(--secondary-clr);
    bottom: -10px;
    transition: width .5s ease-in-out
}

#check,
.dis-none-inhr,
.menu-search-btn {
    display: none
}

.logo {
    width: 80px
}

.logo img,
.navStyle:hover::after,
.w100 {
    width: 100%
}

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

.navMenu li {
    list-style: none;
    margin: 0 20px
}

.navMenu li a {
    text-decoration: none;
    color: #525252;
    font-size: 20px
}

.search_input {
    min-width: 10rem;
    width: 10rem;
    padding: .6rem .6rem .6rem 3rem;
    border: none;
    border-radius: 3rem;
    background-color: var(--white-50p);
    font-size: 1rem;
    box-shadow: none;
    outline: 0
}

.search_input:focus {
    border: 1px solid var(--white)
}

.search_icon {
    width: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: .5rem;
    left: 6%
}

.active-navStyle {
    font-weight: 800;
    color: var(--secondary-clr) !important;
    position: relative
}

.navStyle::after {
    position: absolute;
    width: 0;
    left: 0
}

.navStyle::before {
    content: '';
    position: absolute;
    font-size: 2rem;
    color: var(--secondary-clr);
    top: -3px;
    left: 38%
}

.navStyle:hover:before {
    content: url('/<?php echo $siteURL; ?>assets/Img/Icon/Polygon\ 1.png');
    margin-top: 5px
}

.active-navStyle::after {
    position: absolute;
    width: 100%;
    left: 0
}

.active-navStyle::before {
    content: url('/<?php echo $siteURL; ?>assets/Img/Icon/Polygon 1.png');
    position: absolute;
    font-size: 2rem;
    color: var(--secondary-clr);
    top: 2px;
    left: 38%
}

.search-div {
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #00000095
}

.search-div i {
    padding: 15px;
    opacity: .6;
    font-size: 18px;
    color: #000
}

.search-div:hover {
    background-color: rgba(141, 137, 137, .095)
} */

.banner {
  width: 80%;
  display: flex;
  gap: 5px;
  overflow: hidden;
  overflow-x: scroll;
  padding: 0 5px;
  margin: 100px auto 0;
  position: relative;
}

.banner::-webkit-scrollbar {
  display: none;
}

.banner .banner-img {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-size: 1.5rem;
  z-index: 1;
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}
.banner .banner-img img,
.video-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.w80 {
  width: 80%;
}

.mAuto {
  margin: auto;
}

.mTop30 {
  margin-top: 30px;
}

.grid-column {
  display: grid;
  grid-template-columns: 55% 44%;
  gap: 1rem;
}

.justify-SB {
  justify-content: space-between;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-box-grid {
  grid-template-columns: repeat(2, 1fr);
}
.video-box-grid,
.video-box-grid-2 {
  display: grid;
  gap: 10px;
}

.gap1 {
  gap: 1rem;
}

.align-Center {
  align-items: center;
}

.video-box-grid-2 {
  height: 100%;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}

.video-box a,
.video-box-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-box .video-box-para {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  color: #fff;
  transition: all 0.4s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-image: linear-gradient(
    to left bottom,
    rgba(0, 0, 0, 0.724),
    rgba(0, 0, 0, 0.366)
  );
}

.video-box-para h3 {
  font-size: 16px;
}

.video-box-para p {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}

.video-box-para span {
  font-size: 14px;
  opacity: 0.7;
  display: none;
}

.news h1,
.svideo h1,
.ttrending h1 {
  font-size: 30px;
}

.video-box:hover .video-box-para span {
  display: block;
}

.video-box a {
  display: flex;
  align-items: end;
}

.container {
  width: 80%;
  margin: 6rem auto auto;
}

.container a,
.video-container a {
  text-decoration: none;
  color: #000;
}

.container a:hover h2,
.news h1,
.svideo h1,
.ttrending h1,
.video-container a:hover h2 {
  color: var(--secondary-clr);
}

.ttrending {
  width: 100%;
  margin: auto;
}

.linediv {
  background-color: #ccc;
  width: 100%;
  height: 0.5px;
  margin-top: 5px;
}

.scroll_grid {
  gap: 20px;
  display: flex;
  margin-top: 1rem;
  overflow: scroll;
  overflow-y: hidden;
}

.scroll_grid::-webkit-scrollbar {
  display: none;
}

.slider-icon {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 0;
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.scroll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.slider-icon1 {
  left: -60px;
}

.slider-icon2 {
  right: -60px;
}

.card1,
.card2,
.card3 {
  width: 25rem;
  height: 25rem;
  transition: 1s;
  background-color: #fff;
  padding: 8px;
  border-radius: 5px;
}
.padLR-8 {
  padding: 0 8px;
}
.card-2-img,
.card-3-img,
.card-img {
  width: 100%;
  height: 16rem;
}

.card-2-img img,
.card-img img,
.img-1 {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
}

.snews {
  width: 60%;
  margin: 250px auto auto;
}

.img-2 {
  width: 60px;
  height: 60px;
  position: absolute;
  display: none;
}

p {
  font-size: 16px;
  color: #161616;
}

.date {
  font-size: 14px;
  color: #5f5f5f;
}

h2 {
  font-size: 20px;
}

.video-container {
  width: 80%;
  margin: auto;
}

.bcolor {
  background: #51c2ff52;
  height: auto;
  margin-top: 6rem;
  border: 0.5px;
  padding: 60px 0;
}

/* ======================================= index css end here =============================== */

/* =========================== blog css starts here =========================== */
.form_control,
.navStyle,
.search_input {
  position: relative;
}

.blog-card-img,
.blog-card-img img {
  object-fit: cover;
  object-position: center;
}

h2,
p {
  margin-top: 10px;
}

.linediv {
  background-color: var(--hr-clr);
}

/* .mAuto {
    margin: auto
} */

.snews {
  margin: 7rem auto auto;
  width: 80%;
}

.snews a {
  text-decoration: none;
  color: var(--black);
}

.blog-grid a:hover h2,
.news h1 {
  color: var(--secondary-clr);
}

.blog-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  margin: auto;
  gap: 20px;
}

.blog-card {
  margin-top: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
}

.blog-card-img {
  height: 200px;
  width: 100%;
}

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

.b-para1 {
  font-size: 18px;
}

.b-para2 {
  font-size: 16px;
  opacity: 0.6;
}

.linediv {
  background-color: var(--black);
  width: 100%;
  height: 1px;
  margin-top: 5px;
  opacity: 0.2;
}

h2 {
  font-size: 20px;
}

.news h1 {
  font-size: 30px;
}

/* =========================== blog css end here =========================== */

/* ============================= video css starts here ============================ */

/* video-container */
.heading h1 {
  font-size: 30px;
  color: var(--secondary-clr);
  margin-bottom: 10px;
}

.linediv {
  background-color: #ccc;
  width: 100%;
  height: 0.5px;
}
.video-container-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.video-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.video-card-images {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card a {
  color: #000;
  text-decoration: none;
}

.card-image {
  width: 100%;
  height: 15rem;
}

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

.card-play-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000068;
  transition: 0.5s;
}

.card-play-icon img {
  width: 20px;
}

.video-card-info h4 {
  font-size: 18px;
  margin: 10px 0;
}

.video-card-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.card-info-date {
  font-size: 14px;
  opacity: 0.6;
}

.video-card-info span {
  font-size: 14px;
}

.video-card:hover .video-card-info h4 {
  color: var(--secondary-clr);
}

.video-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.video-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

/* ================================= video detail page css starts here ================================= */
.video_detail {
  width: 80%;
  margin: 7rem auto auto auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}

.div_hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  opacity: 0.7;
  margin-bottom: 1rem;
}

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

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
}

.profile-icon .icon a {
  text-decoration: none;
}

.profile-icon .icon a img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

.like-comment-icon img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.home-trending-text {
  font-size: 20px;
}

.home-trending-text span {
  color: var(--secondary-clr) !important;
}

.home-trending-text i {
  color: var(--secondary-clr) !important;
}

.detail_grid_1 p span {
  color: #000;
}

.detail_grid_1 h3 {
  font-size: 30px;
  margin: 1rem 0;
}

.profile-details p {
  color: #000;
}

.Paragraph {
  margin-top: 1rem;
  background-color: #cbd5e7a3;
  padding: 1rem;
  border-radius: 10px;
}

.Paragraph input {
  display: none;
}

.more_para {
  color: #000 !important;
  font-size: 18px !important;
}

.more_para span {
  display: none;
}

#check_more:checked ~ .more_para span {
  display: block;
}

.more_btn {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
}

/* ====================================== comments container starts here ================================ */
.comments-container {
  margin-top: 1rem;
}

.user-input {
  display: flex;
  align-items: center;
  /* margin-left: 10px; */
  width: 100%;
}

.user-input input {
  width: 100%;
  border: 1px solid #000;
  border-right: 0;
  background-color: transparent;
  padding: 10px 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: 0;
}

.user-input input:hover {
  border: 1px solid var(--secondary-clr);
  border-right: 0;
}

.user-input input:focus {
  border: 1px solid var(--secondary-clr);
  font-weight: 600;
}

.user-input input:focus::placeholder {
  font-weight: 100;
}

.user-input button {
  background-color: var(--secondary-clr);
  border: 0;
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}
.user-comments {
  display: flex;
  margin-bottom: 1rem;
}

.user-comments .comment {
  margin-left: 10px;
}

.user-comments .comment p {
  margin-top: 5px;
}

.user-comments .user-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-shrink: 0;
}

.user-comments .user-img img {
  width: 100%;
}

.Up_next_container h6 {
  font-size: 25px;
  margin-bottom: 10px;
}

.Up_next::-webkit-scrollbar {
  display: none;
}

.up_next_card a {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
  text-decoration: none;
  color: #000;
  align-items: center;
}

.up_next_card a:hover .up-next-card-info h4 {
  color: var(--secondary-clr);
}

.card_images {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card_images .image {
  width: 100%;
  height: 150px;
}

.card_images .image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.card_images .play_icon {
  position: absolute;
  background-color: #00000068;
  border-radius: 50%;
  transition: 0.5s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_images .play_icon img {
  width: 10px;
}

.up_next_card a:hover .card_images .play_icon {
  background-color: var(--secondary-clr);
}

.up_next_card a:hover .card_images .play_icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

.up-next-card-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.up-next-card-info p {
  font-size: 14px;
  margin-bottom: 10px;
}

.up-next-card-info span {
  font-size: 14px;
}

/* ============================= video css ends here ============================ */

/* ============================= photo css starts here =============================================== */
.w100 {
  width: 100%;
}

/* .mAuto {
    margin: auto;
} */

.mTop5 {
  margin-top: 5rem;
}

.mTop7 {
  margin-top: 7rem;
}

.mBottom10 {
  margin-bottom: 10rem;
}
.card-content {
  width: 80%;
  margin: 7rem auto 0;
}
.card-content h3,
.primeClrFs30 {
  color: var(--secondary-clr);
  font-size: 30px;
}

.grid_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  cursor: pointer;
}

.grid_card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.grid_card_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.grid_card_img img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.grid_cards h4 {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.grid_cards p {
  font-size: 18px;
  margin-bottom: 10px;
}

.grid_cards span {
  font-size: 14px;
  opacity: 0.7;
}

.grid_card:hover h4 {
  color: var(--secondary-clr);
}

/* ==================== content css end here ====================== */

/* ======================================== modal css starts here ============================== */
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.modal-content {
  width: 50%;
  margin: auto;
}

/* The Close Button */
.close {
  color: #ffffff;
  position: fixed;
  top: 2rem;
  right: 4rem;
  font-size: 28px;
  font-weight: bold;
  z-index: 99;
}

.close:hover,
.close:focus {
  color: #dddddd;
  text-decoration: none;
  cursor: pointer;
}

/* Slider container */
.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slide-img-para {
  background-color: #ffffff;
  margin-top: 1rem;
  padding: 1rem;
}

.slide h3 {
  font-size: 25px;
}

.slide h4 {
  font-size: 25px;
  margin: 1rem 0;
}

.slide p {
  font-size: 20px;
}

.slide-img {
  width: 100%;
  /* height: 800px; */
}

.slide-img img {
  width: 100%;
  height: 100%;
}

/* Navigation buttons */
.slider-nav button {
  background: #ffffff;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 28px;
  cursor: pointer;
  padding: 10px 16px;
}

.slider-nav button:hover {
  background: #dddddd;
}

.slide_left {
  position: fixed;
  left: 2rem;
  top: 40%;
}

.slide_right {
  position: fixed;
  right: 2rem;
  top: 40%;
}

/* ============================= photo css end here =============================================== */

/* ========================= business css ============================ */

#business-container {
  width: 80%;
  margin: 110px auto auto auto;
}

#business-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 10px 0px 30px 0px;
}

.Grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.Grid4 a,
.video-container-grid a {
  text-decoration: none;
  color: #000;
}

.business-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.div-b-n-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 100%;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  position: relative;
}

.card-play-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000068;
  transition: 0.5s;
}

.card-play-icon img {
  width: 15px;
}

.business-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.business-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

.business-div1 h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 26px;
  opacity: 0.7;
}

.div1-date {
  font-size: 18px;
  opacity: 0.9;
}

/*business div2 */
.business-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 20px;
  margin-top: 30px;
}

.business-div2 a {
  text-decoration: none;
  color: #000;
}

.div-2-b-n-img {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-div2 h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div2-para {
  font-size: 20px;
  opacity: 0.7;
  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 18px;
  opacity: 0.9;
}

/* ===================== business css end ===================== */

/* ============================== entertainment css ======================== */

#entertainment-container {
  width: 80%;
  margin: 110px auto auto auto;
}

#entertainment-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 10px 0px 30px 0px;
}

.entm-div1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 20px;
}

.entm-div1 a {
  text-decoration: none;
  color: #000;
}

.entmt-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.entm-div1-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  object-position: center;
}

.entm-div1-images {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: relative;
}

.entm-div1-play-icon {
  position: absolute;
  width: 70px;
}

.entmt-card h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 16px;
  opacity: 0.7;
}

.div1-date {
  font-size: 18px;
  opacity: 0.9;
}

/*emtm-div2 */
.entm-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 20px;
  margin-top: 30px;
}

.entm-div2 a {
  text-decoration: none;
  color: #000;
}

.entm-div2-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  object-position: center;
}

.entm-div2-images {
  width: 100%;
  border-radius: 8px;
  position: relative;
  height: 100%;
}

.entm-div2-play-icon {
  position: absolute;
  width: 70px;
}

.entm-div2 h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div2-para {
  font-size: 16px;
  opacity: 0.7;

  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 18px;
  opacity: 0.9;
}

.entmt-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.entmt-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

/* entertainment css end */

/* life-style css */

#life-style-container {
  width: 80%;
  margin: 110px auto auto auto;
}

#life-style-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 10px 0px 30px 0px;
}

.life-style-div1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.life-style-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.life-style-div1 a {
  text-decoration: none;
  color: #000;
}

.l-s-div1-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.life-style-card h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 16px;
  opacity: 0.7;
  /* margin: 10px 0px 10px 0px; */
}

.div1-date {
  font-size: 18px;
  opacity: 0.9;
}

/*life style div2 */
.life-style-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  margin-top: 30px;
}

.life-style-div2 a {
  text-decoration: none;
  color: #000;
}

.l-s-div2-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-s-div2-images {
  width: 100%;
  border-radius: 5px;
  position: relative;
  height: 100%;
}

.l-s-div2-play-icon {
  position: absolute;
  width: 70px;
}

.life-style-card2 h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div2-para {
  font-size: 16px;
  opacity: 0.7;

  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 18px;
  opacity: 0.9;
}

#life-style-news-trending {
  width: 80%;
  margin: 10rem auto auto auto;
  display: flex;
}

/* life style-news */
.life-style-news-img-para {
  display: flex;
  align-items: center;
  margin: 0px 0px 20px 0px;
}

.life-style-news {
  width: 55%;
}

.life-style-news a:hover h1 {
  color: var(--secondary-clr);
}

.life-style-news a {
  text-decoration: none;
  color: #000;
}

.life-style-news-img {
  width: 30rem;
  height: 240px;
}

.life-style-news-heading {
  color: var(--secondary-clr);
  font-size: 30px;
}

.life-style-news-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 5px 0px 20px 0px;
}

.life-style-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.life-style-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

.life-style-news-img-para {
  align-items: center;
}

.life-style-news-heading-para {
  width: 60%;
}

.life-style-news-heading-para h1 {
  margin: 0px 0px 0px 10px;
  font-size: 20px;
}

.life-style-news-p-1 {
  font-size: 18px;
  margin: 10px 0px 0px 10px;
}

.life-style-news-p-2 {
  font-size: 16px;
  opacity: 0.7;
  margin: 10px 0px 0px 10px;
}

/* life-style css end */

/* politics css */

#politics-container {
  width: 80%;
  /* border: 2px solid red ; */
  margin: 110px auto auto auto;
}

#politics-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 10px 0px 30px 0px;
}

.politics-div1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.politics-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.politics-div1 a {
  text-decoration: none;
  color: #000;
}

.politics-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.politics-card h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 20px;
  opacity: 0.7;
  /* margin: 10px 0px 10px 0px; */
}

.div1-date {
  font-size: 18px;
  opacity: 0.9;
}

/*politics div2 */
.politics-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  margin-top: 30px;
}

.politics-div2 a {
  text-decoration: none;
  color: #000;
}

.politics-card-2-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div2-images {
  width: 100%;
  border-radius: 5px;
  position: relative;
  height: 100%;
}

.div2-play-icon {
  position: absolute;
  width: 70px;
}

.div2-para {
  font-size: 20px;
  opacity: 0.7;

  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 17px;
  opacity: 0.6;
}

.politics-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.politics-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

/* ======================= politics css end ================== */

/* ===================== technology css ================== */

#technology-container {
  width: 80%;
  margin: 110px auto auto auto;
}

#technology-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 10px 0px 30px 0px;
}

.technology-div1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.div-img-para {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.technology-div1 a {
  text-decoration: none;
  color: #000;
}

.tng-card {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-img-para h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 18px;
}

.div1-date {
  font-size: 16px;
  opacity: 0.6;
}

/*technology div2 */
.technology-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  margin-top: 30px;
}

.technology-div2 a {
  text-decoration: none;
  color: #000;
}

.tng-card-2 {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div2-para {
  font-size: 16px;
  opacity: 0.7;
  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 18px;
  opacity: 0.9;
}

.div-img-para:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.div-img-para:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

/* =================== technology css end ===================  */

/* ======================= world css =========================== */
#world-container {
  width: 80%;
  margin: 110px auto auto auto;
}

#world-container a:hover h1 {
  color: var(--secondary-clr);
}

.heading h1 {
  font-size: 30px;
  color: var(--secondary-clr);
}

.heading-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 5px 0px 16px 0px;
}

.world-div1 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.div-card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.world-div1 a {
  text-decoration: none;
  color: #000;
}

.card {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div-card h1 {
  font-size: 20px;
  margin-top: 10px;
}

.div1-para {
  font-size: 16px;
  margin: 10px 0px 10px 0px;
}

.div1-date {
  font-size: 14px;
  opacity: 0.6;
}

/*world div2 */
.world-div2 {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  margin-top: 30px;
}

.world-div2 a {
  text-decoration: none;
  color: #000;
}

.card-2 {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.div2-para {
  font-size: 18px;
  margin: 10px 0px 10px 0px;
}

.div2-date {
  font-size: 16px;
  opacity: 0.6;
}

.div-card:hover .card-play-icon {
  background-color: var(--secondary-clr);
}

.div-card:hover .card-play-icon img {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(8deg)
    brightness(102%) contrast(101%);
}

/* =========================== world css end here =========================== */

/* ============================ contact css ========================== */

#contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  width: 80%;
  margin: 110px auto auto auto;
  align-items: start;
  justify-content: space-between;
}

.ul-div {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
}

.section-1 ul hr {
  margin-bottom: 10px;
}

.section-1 ul li {
  list-style: none;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 15px;
}

.section-1 ul li a {
  font-size: 20px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  transition: all 0.3s;
}

.section-1 ul li a:hover {
  color: var(--secondary-clr);
  font-weight: bold;
}

.active-advertise a {
  color: var(--secondary-clr) !important;
  font-weight: bold;
}

/* ======================= scrool section here ======================= */

.scroll_section {
  min-height: 200px;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 2rem;
}

.scroll_section::-webkit-scrollbar {
  width: 15px;
}

.scroll_section::-webkit-scrollbar-track {
  background-color: #ffffff;
  border-radius: 5px;
}

.scroll_section::-webkit-scrollbar-thumb {
  background-color: var(--secondary-clr);
  border-radius: 5px;
}

.scroll_section::-webkit-scrollbar-button {
  display: none;
}

/* h1-contact */
.h1-contact {
  font-size: 19px;
  margin-bottom: 1rem;
}

.first-para {
  font-size: 20px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.h1-you-can-mail {
  font-size: 25px;
  opacity: 0.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

/* mumbai-office */
.mumbai-office {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #ffffff;
}

.mumbai-h1 {
  background-color: #9b979738;
  height: 50px;
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.mumbai-h1 h1 {
  font-size: 25px;
  margin-left: 20px;
}

.mumbai-para {
  margin-left: 20px;
}

.mumbai-para p {
  font-size: 20px;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* odisha-office */
.odisha-office {
  border: 1px solid #ccc;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: #ffffff;
}

.odisha-h1 {
  background-color: #9b979738;
  height: 50px;
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.odisha-h1 h1 {
  font-size: 25px;
  margin-left: 20px;
}

.odisha-para {
  margin-left: 20px;
}

.odisha-para p {
  font-size: 20px;
  margin-bottom: 20px;
  opacity: 0.6;
}

/* ====================== contact form css starts here ======================== */

.contact-form {
  width: 100%;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.contact-form input,
.contact-form textarea {
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  transition: border-color 0.3s ease, transform 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid var(--secondary-clr);
  font-weight: 600;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-weight: 300;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  font-family: "Anek Odia", sans-serif;
  font-optical-sizing: auto;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  background-color: var(--secondary-clr);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}
.column {
  display: flex;
  flex-direction: column;
}
.error {
  color: red;
}
/* =========================================== contact css end ===========================================  */

/* ========================================= trems-and-conditions css ========================================= */

#trems-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  width: 80%;
  margin: 110px auto auto auto;
  align-items: start;
  justify-content: space-between;
}

.trems-section-2 h3 {
  margin-bottom: 1rem;
}

.trems-section-2 p {
  margin: 1rem 0;
  line-height: 30px;
}

.trems-section-2 ul {
  padding: 1rem;
}

.trems-section-2 ul li {
  margin-bottom: 1rem;
  line-height: 30px;
  list-style-type: disc;
}

/* trems-and-conditions css end */

/* advertise css */

#advertise-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  width: 80%;
  margin: 110px auto auto auto;
  align-items: start;
  justify-content: space-between;
}

.advertise-h1 {
  font-size: 19px;
  margin-bottom: 1rem;
}

.adver-para {
  margin-bottom: 20px;
  font-size: 20px;
  opacity: 0.6;
}

/* boxs */
.box {
  width: 100%;
  /* height: 100px; */
  margin-bottom: 15px;
  border-left: 8px solid #d25353;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.advertise-para {
  padding: 30px;
}

.box p {
  font-size: 20px;
}

.box-para1 {
  margin-bottom: 7px;
  font-weight: bold;
}

/* advertise css end */

/* privacy-policy css */

#privacy-policy-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  width: 80%;
  margin: 110px auto auto auto;
  align-items: start;
  justify-content: space-between;
}

.section-2 h3 {
  margin-bottom: 1rem;
}

.section-2 p {
  margin: 1rem 0;
  line-height: 30px;
}

.section-2 ul {
  margin-bottom: 1rem;
  padding: 1rem;
}

.section-2 ul li {
  list-style-type: disc;
  line-height: 30px;
}

.section-2 ol {
  margin-bottom: 1rem;
  padding: 1.2rem;
}

.section-2 ol li {
  list-style-type: lower-alpha;
  line-height: 30px;
}

/* privacy-policy css end */

/*============================================= search css =====================================*/

/* ==== on navber ===== */
.cross {
  width: 20px;
  cursor: pointer;
}

.w80 {
  width: 80%;
}
.mT7Auto {
  margin: 7rem auto;
}
.mT9Auto {
  margin: 9rem auto;
}

/* .mAuto {
    margin: auto;
} */

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w100 {
  width: 100%;
}

.mTop1 {
  margin-top: 1rem;
}

.mTop2 {
  margin-top: 2rem;
}

.mTop8 {
  margin-top: 8rem;
}

.mTop12 {
  margin-top: 12rem;
}

.mBottom1 {
  margin-bottom: 1rem;
}

.search-logo {
  width: 80px;
  height: 80px;
}

.search-logo img {
  width: 100%;
  height: 100%;
}

.hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin-bottom: 30px;
  margin-top: 10px;
}

.search-container {
  display: flex;
  justify-content: space-between;
}

.back-icon {
  margin-right: 20px;
  position: relative;
  top: 24px;
}

.back-icon img {
  width: 23px;
}

.search-box {
  width: 100%;
  background: #ffffff;
  border-radius: 5px;
}

.row {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.row .clear-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.row .clear-btn img {
  width: 15px;
}

.row input {
  flex: 1;
  height: 50px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
}

.row input:focus {
  font-weight: 600;
}

.row input:focus::placeholder {
  font-weight: 100;
}

.searchbtn {
  background: transparent;
  border: 0;
  outline: 0;
  margin-right: 20px;
}

.fa-solid {
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
}

.color::placeholder {
  opacity: 0.6;
  font-size: 16px;
}

.result-box ul {
  border-top: 1px solid var(--hr-clr);
  padding: 10px 20px;
}

.result-box li {
  /* color: white; */
  list-style: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.result-box li:hover {
  background: #aca9a9be;
}

.result-box {
  max-width: 100%;
  overflow-y: scroll;
}

.results-span {
  font-size: 18px;
  opacity: 0.5;
}

.we-found {
  font-weight: 600;
  opacity: 0.6;
}

.we-found span {
  font-weight: 200;
  opacity: 0.6;
}

/* ==================== search result ================= */

/* ===================== dropdown and button ================= */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  background: #dce5ef;
  border: 1px solid #f0f4f7;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.dropdown-toggle .filter-icon {
  width: 18px;
  margin-right: 12px;
}

.dropdown-toggle .dropdown-icon {
  width: 10px;
  margin-left: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
  border-radius: 5px;
}

.dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.borderTB {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.borderL {
  border-left: 1px solid #ccc;
}

.borderR {
  border-right: 1px solid #ccc;
}

.rotate {
  transform: rotate(180deg);
}

.flex {
  display: flex;
}

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

.justify-SB {
  justify-content: space-between;
}

.grid {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 2rem;
}

.search-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  width: 100%;
}

.search-card a {
  display: flex;
  align-items: center;
}

.search-card:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #f4f3fe82;
}

.search-card:hover a h4 {
  color: var(--secondary-clr);
}

.search-card a {
  text-decoration: none;
  color: #000;
}

.search-card a h4 {
  font-size: 18px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.search-card a p {
  font-size: 16px;
  margin-bottom: 10px;
}

.search-card a span {
  font-size: 14px;
  opacity: 0.8;
}

.search-card-img {
  width: 13rem;
  height: 160px;
  margin-right: 1rem;
  object-fit: cover;
  object-position: center;
}

.search-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ========== search-trending ======== */
.search-trebding-para {
  width: 70%;
}

.search-trending-card:hover a h4 {
  color: var(--secondary-clr);
}

.search-trending a {
  text-decoration: none;
  color: #000;
}

.search-trending a h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.search-trending a p {
  font-size: 14px;
  margin-bottom: 8px;
}

.search-trending a span {
  font-size: 12px;
  opacity: 0.7;
}

.line {
  background-color: #000;
  height: 0.5px;
  opacity: 0.2;
  width: 100%;
}

.search-trending-img {
  width: 210px;
  height: 120px;
  margin-right: 10px;
  object-fit: cover;
  object-position: center;
}

.search-trending-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ============================================== search css end ========================================== */

/* ======================================= About page start here ========================================= */
.about {
  width: 60%;
  margin: auto;
  margin-top: 8rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.about h1 {
  font-size: 3rem;
}

.about h2 {
  font-size: 3rem;
  margin-top: 1rem;
}

.about h3 {
  font-size: 25px;
}

.about-first-para {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin: 1rem 0;
}

.visitor_para {
  font-size: 1.4rem;
  margin: 10px 0;
  text-align: center;
}

.about button {
  padding: 1rem 2rem;
  font-size: 16px;
  border-radius: 4px;
  border: 0;
  background-color: var(--secondary-clr);
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

.about button:hover {
  background-color: #7a73f3;
  cursor: pointer;
}

.demo-img {
  width: 800px;
  height: 600px;
}

.demo-img img {
  width: 100%;
  height: 100%;
}

.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.behind-box {
  display: flex;
}

.behiend-img {
  width: 300px;
  /* height: 300px; */
  margin-right: 1rem;
}

.behiend-img img {
  width: 100%;
  height: 100%;
}

.behiend-para {
  width: 50%;
}

.behiend-para h4 {
  font-size: 22px;
}

.behiend-para h5 {
  font-size: 16px;
  margin: 0.8rem 0;
}

.behiend-para p {
  font-size: 14px;
}

/* ================================================== About page end here ========================================= */

/* =========================================== details page css starts here ======================================== */
#container {
  width: 80%;
  margin: 160px auto 50px;
}

.heading {
  margin-bottom: 15px;
  width: 100%;
}

.heading p {
  font-size: 14px;
  color: var(--secondary-clr);
  margin-bottom: 10px;
}

#container .heading h1 {
  font-size: 32px;
  color: #000;
}

.wri-name,
.written-by {
  font-size: 20px;
}
.wri-name {
  margin: 0;
}
.heading-hr {
  width: 100%;
  height: 0.5px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.profile-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border: none;
}

.social-icon .icon-img,
.social-icon .like-comment {
  width: 30px;
  height: 30px;
}
.social-icon .icon-img img,
.social-icon .like-comment img {
  width: 100%;
  height: 100%;
}

.profile-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 15px;
}

.p-p,
.wri-name {
  margin-bottom: 10px;
}

.icon a {
  margin-left: 10px;
}

.written-by {
  margin-right: 10px;
}
.like-comment-icon,
.icon {
  display: flex;
  align-items: center;
}
.like-comment {
  margin-right: 10px;
}

.first-img,
.second-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.first-img img,
.second-img img {
  width: 100%;
  border-radius: 5px;
}
.maindiv {
  margin-top: 10px;
  display: flex;
  grid-template-columns: 1fr 1fr;
}
.first-heading-div {
  width: 60%;
}
.first-div {
  width: 60%;
}
.first-img-paras p,
.second-img-paras p {
  margin-bottom: 10px;
  font-size: 18px;
}

.second-img {
  margin-top: 20px;
}
.second-img img {
  width: 100%;
}
.second-div {
  width: 35%;
  margin-left: auto;
}

.business-news h1,
.tag-div h1 {
  font-size: 25px;
  color: var(--secondary-clr);
}

.tag-hr {
  width: 100%;
  height: 0.5px;
  margin: 10px 0 20px 0;
  background-color: var(--hr-clr);
}

.tags ul a li {
  display: inline-block;
  margin: 0 10px 10px 0;
  background-color: #e6e5fa;
  padding: 6px 10px;
  border-radius: 4px;
}

.tags ul a li {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
}

.advertise {
  background-color: rgba(0, 0, 0, 0.267);
  height: 300px;
  margin-top: 20px;
  width: 100%;
  position: relative;
}

.advertise p {
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 40px;
  left: 150px;
}

.related-news-img-para:hover .related-news-heading-para h1,
.top-stories h1,
.trending-img-para:hover .trending-p-1 {
  color: var(--secondary-clr);
}

.top-stories h1 {
  font-size: 25px;
  margin: 25px 0 10px;
}

.top-stories-hr {
  width: 100%;
  height: 0.5px;
  background-color: #ccc;
  margin: 0 0 20px;
}

.b-n-img,
.t-s-img {
  width: 100%;
  height: 300px;
}
.b-n-img img,
.t-s-img img {
  width: 100%;
}

.Divider,
.business-news-hr,
.t-s-img-para-hr {
  height: 0.5px;
  width: 100%;
  background-color: #ccc;
}

.t-s-img-para p {
  font-size: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.t-s-img-para-hr {
  margin: 15px 0;
  opacity: 0.6;
}

.business-news {
  margin-top: 30px;
}
.business-news a {
  text-decoration: none;
}
.business-news-hr {
  margin: 5px 0 20px;
}

.b-n-img-para p {
  font-size: 20px;
  color: #000;
  margin-top: 10px;
}

.Divider {
  margin-top: 10px;
  margin-bottom: 25px;
  opacity: 0.6;
}

/* =========================================== details page css end here ======================================== */

/* ======================================== pagination css starts here ==================================================== */
.related-trending {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  width: 100%;
}

.pagi-card .rl-td-heading {
  color: var(--secondary-clr);
  font-size: 30px;
  margin-bottom: 5px;
}

.related-trending a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}
.related-trending a:hover .trending-card-info h3 {
  color: var(--secondary-clr) !important;
}

.related-trending a:hover .related-card-info h3 {
  color: var(--secondary-clr) !important;
}

.div-hr {
  background-color: #ccc;
  width: 100%;
  height: 0.5px;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.related-card {
  margin-bottom: 1rem;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 5px;
}

.related-card-img {
  width: 20rem;
  height: 12rem;
  margin-right: 10px;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
}

.related-card-info {
  width: 60%;
}

.related-card-info h3 {
  font-size: 20px;
  color: #000 !important;
}

.related-card-info p {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.related-card-info span {
  font-size: 14px;
  opacity: 0.6;
}

.trending-card {
  margin-bottom: 1rem;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 5px;
}

.trending-card-img {
  width: 19rem;
  height: 9rem;
  margin-right: 10px;
}

.trending-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center;
}

.trending-card-info {
  width: 60%;
}

.trending-card-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000 !important;
}

.trending-card-info span {
  font-size: 14px;
  opacity: 0.6;
}

/* ============================ pagination css strat here ================== */

.pagination {
  text-align: center;
  margin: 60px 30px 60px;
  user-select: none;
}

.pagination li {
  display: inline-block;
  margin: 5px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
}

.pagination li:hover {
  background: var(--secondary-clr);
}

.pagination li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 45px;
}

.previous-page,
.next-page {
  background: var(--secondary-clr);
  width: 80px;
  border-radius: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}

.previous-page:hover {
  transform: translate(-5px);
}

.next-page:hover {
  transform: translate(5px);
}

.current-page,
.dots {
  background: #ccc;
  width: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.active {
  background: var(--secondary-clr);
}

.disable {
  background: #ccc;
}

/* ======================================== pagination css end here ==================================================== */

/* =========================== footer css starts here ======================= */
.w90 {
  width: 90%;
}

.footer-grid ul li a:hover::before,
.w100 {
  width: 100%;
}

.flex-Center,
.footer-icon,
.form-div form {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.justify-SB {
  justify-content: space-between;
}

.padTopBottom4 {
  padding: 4rem 0;
}

.padTop1 {
  padding-top: 1rem;
}

.z99 {
  z-index: 99;
  position: absolute;
}

.bglinear {
  background: linear-gradient(to top right, #00e1ff, #6d66ef);
}

.box-shadow {
  box-shadow: 9px 21px 55px rgba(0, 0, 0, 0.4);
}

.mTop12rem {
  margin-top: 12rem;
}

.mTop1 {
  margin-top: 1rem;
}

footer {
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 2rem;
  background: #fff;
}

.form-div {
  width: 80%;
  margin: auto;
}

.form-div h3 {
  font-size: 2rem;
}

.form-div p {
  font-size: 16px;
  color: #000;
}

.form-div form input {
  width: 250px;
  height: 40px;
  padding-left: 10px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: 0.5px solid #ccc;
  font-size: 18px;
}

.form-div form input::placeholder {
  opacity: 0.4;
  font-size: 18px;
  color: #000;
}

.form-div form input[type="email"]:focus::placeholder {
  font-weight: 100;
}

.form-div form input[type="email"]:focus {
  outline: 0;
  border: 0.5px solid #625ce1;
  font-weight: 600;
  opacity: 1;
}

.form-div form button {
  padding: 10px 20px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 0;
  font-size: 18px;
  background: #625ce1;
  color: #fff;
  cursor: pointer;
}

.footer-icon img {
  width: 25px;
  margin-right: 10px;
}

.footer_logo {
  width: 55px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  place-items: center;
  gap: 6rem;
  width: 80%;
  margin: auto;
}
.footer-line,
.footer-line-2 {
  background-color: #cccccc3d;
  width: 100%;
  height: 0.5px;
  margin: 2rem 0;
}

.footer-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}

.footer-grid ul li {
  list-style: none;
}

.footer-grid ul li a {
  text-decoration: none;
  color: #000;
  position: relative;
  font-weight: 400 !important;
}

.footer-grid ul li a::before {
  position: absolute;
  width: 0%;
  content: "";
  height: 1px;
  display: block;
  bottom: 0;
  left: 0;
  background-color: #625ce1;
  transition: width 0.4s;
}

.footer-grid ul li a:hover {
  color: #625ce1;
}

.footer-grid ul span {
  font-weight: 500;
  opacity: 0.6;
}

.grid-1 p {
  font-size: 18px;
  color: #000;
  margin-bottom: 1rem;
}
.copyright {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  font-size: 14px;
  font-weight: 400;
}
.copyright a {
  text-decoration: none;
  color: #625ce1;
  font-weight: 500;
}

.mTop4 {
  margin-top: 4rem;
}

/* =========================== footer css end here ======================= */

/* =============================== loader css starts here ================================= */
.loader {
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.5s;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}
.imgWH {
  width: 100%;
  height: 100%;
  position: relative;
}
.imgWH img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
.imgWH h3 {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  background-image: linear-gradient(
    to left bottom,
    rgba(0, 0, 0, 0.724),
    rgba(0, 0, 0, 0.366)
  );
  width: 100%;
  color: #fff;
}
/* =============================== loader css end here ================================= */

/* //News CSS// */
.mT10 {
  margin-top: 10px;
}
.relative li {
  padding: 8px 0 0 0;
}
.primeClrwithTextNone {
  text-decoration: none;
  color: var(--secondary-clr) !important;
}
.fs18 {
  font-size: 18px;
}
.opa7 {
  opacity: 0.7;
}
.br5 {
  border-radius: 5px;
}
.h100 {
  height: 100%;
}
.br5 {
  border-radius: 5px;
}
.newsCard {
  background-color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.newsCard img {
  width: 100%;
  height: 15rem;
  object-fit: cover; /*cover or contain*/
  object-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.newsCard h6 {
  padding: 8px 15px;
  color: var(--black);
  font-size: 1rem;
  font-weight: 500;
}
.mB1 {
  margin-bottom: 1rem;
}
.video_player video {
  width: 100%;
  height: 400%;
}
.video_player {
  width: 100%;
  height: 400px;
}
.videoContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  /* Initially hide the video */
  transform: translateY(20px);
  /* Initial position above */
  transition: opacity 1s ease, transform 1s ease;
  cursor: pointer;
}
.videoContainer video {
  border-radius: 5px;
}
.videoContainer.show {
  opacity: 1;
  transform: translateY(0);
}
.inputField {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.inputField label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.5;
}
.inputField input {
  width: 100%;
  padding: 12px 16px;
  border: 0.5px solid rgba(0, 0, 0, 0.4);
  outline: none;
  border-radius: 5px;
  margin-top: 8px;
  font-size: 16px;
}
.inputField input:focus {
  border-color: var(--secondary-clr);
}
.inputField input::placeholder {
  font-size: 14px;
}
.cmtBtn {
  width: 100%;
  background-color: var(--secondary-clr);
  border: 0;
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.mR1 {
  margin-right: 1rem;
}
.commentBox {
  margin-top: 2rem !important;
}
._Card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 5px;
  cursor: pointer;
}
._Card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
._Card ._content {
  padding: 1rem;
  width: 100%;
  height: 10rem;
}
._Card ._content p {
  opacity: 0.7;
}
._Card ._content p:last-child {
  font-size: 14px;
}
._Card:hover {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
._Card ._relative {
  position: relative;
}
._Card ._icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-clr);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  transition: 1s;
}
._Card:hover ._icon {
  display: block;
}
._Card ._icon img {
  width: 100%;
  height: 100%;
  padding: 12px;
}
