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

@font-face {
  font-family: "SolaimanLipiNormal";
  src: url("fonts/solaimanlipi_20-04-07.eot");
  src: url("fonts/solaimanlipi_20-04-07.eot?#iefix") format("embedded-opentype"),
    url("fonts/solaimanlipi_20-04-07.woff") format("woff"),
    url("fonts/solaimanlipi_20-04-07.ttf") format("truetype"),
    url("fonts/solaimanlipi_20-04-07.svg#SolaimanLipiNormal") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "SolaimanLipiNormal", sans-serif;
  line-height: 150%;
}

/* --------------Header CSS Start --------------- */
/* Main navbar css  */
.navbar-nav .nav-item .nav-link:hover {
  background-color: red;
}
.navbar-nav .nav-item .nav-link {
  transition: all 0.3s ease;
}

span.navbar-toggler-icon {
    background-color: white !important;
}
/* --------------Header CSS End ---------------- */

/* --------------Footer CSS Start -------------- */
/* Bottom first menubar css  */
.bottom-first-menubar li a {
  transition: all 0.3s ease;
}
.bottom-first-menubar li a:hover {
  background-color: lightgrey;
}
.bottom-first-menubar li {
  color: gray;
}
.bottom-first-menubar li:first-child {
  list-style: none;
}

/* social icon css  */
.social-icon-hover li a {
  padding: 10px 13px;
  border-radius: 50%;
  color: black;
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-icon-hover li a:hover {
  background-color: lightgrey;
}

/* Footer Last part CSS  */

.footer-last-menubar li a {
  transition: all 0.3s ease;
}
.footer-last-menubar li a:hover {
  background-color: lightgrey;
}
.footer-last-menubar li {
  color: gray;
}
.footer-last-menubar li:first-child {
  list-style: none;
}

/* -------------Footer CSS End -------------- */

.hr-rule-color {
  color: red;
}

.hover-image {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.hover-card:hover .hover-image {
  opacity: 1;
}
.hover-card .card-body {
  /* position: relative; */
  /* z-index: 2; */
}

/* Bangladesh  */

.photo-hover a img:hover {
  transform: scale(1.5);
}

.photo-hover a img {
  transition: all 0.5s ease;
}

.heading-hover a {
  transition: all 0.3s ease;
}
.heading-hover a:hover {
  color: red !important;
}
.underline-hover a:hover {
  text-decoration: underline red !important;
}

.for-gradient-color {
  background: linear-gradient(
    to bottom,
    #000000 1%,
    rgba(255, 255, 255, 0.125) 100%
  );
  height: 100%;
}

.font-size-14px {
  font-size: 14px;
}

.bg-custom-white-transparent {
  background: rgba(0, 0, 0, 0.25) !important;
}

.lead-news-background {
  background-image: linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("https://picsum.photos/1900/700");
  height: 75vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.lead-news-specific-padding {
  padding-top: 15%;
}

.category-page-specific-padding {
  padding-top: 230px;
}

.z-index-99 {
  z-index: 99 !important;
}
.social-icon-link-hover li a:hover{
 background-color: rgb(221, 192, 192);
 color: white;
}
.social-icon-link-hover li a {
    width: 30px;
    height: 30px;
    border: 1px solid red;
    margin-right: 8px;
    border-radius: 50%;
    font-size: 16px;
    transform: 0.3s ease;
}



/* Swiper Slider CSS Start  */

.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      
      font-size: 18px;
      
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .custom-button-prev, .custom-button-next {
    width: 40px;
    height: 40px;
    background-color: silver;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: all 0.3s ease;
}
.custom-button-prev:hover{
  background-color: red;

}
.custom-button-next:hover{
  background-color: red;
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size,4px);
    left: 0;
    top: unset; 
    bottom: 0 !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #ff0000;
}
 