* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Sans Devanagari", sans-serif;
}

body {
  background-color: white;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shine:hover::before, .shine:focus::before {
  animation: shine 0.85s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.title-box .title {
  position: relative;
  color: grey;
  margin-bottom: 1rem;
}
.title-box .title::after {
  content: "";
  animation: animeBorder1 3s infinite;
  height: 4px;
  border-radius: 10px;
  background-color: #ff0000;
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: -1;
}
.title-box .title::before {
  content: "";
  animation: animeBorder2 3s infinite;
  height: 4px;
  border-radius: 10px;
  background-color: #0063db;
  position: absolute;
  bottom: -20%;
  left: 0;
  z-index: -1;
}
@media (max-width: 556px) {
  .title-box .title::after {
    content: "";
    animation: animeBorder1 3s infinite;
    height: 4px;
    border-radius: 10px;
    background-color: #ff0000;
    position: absolute;
    bottom: -5%;
    left: 0;
    z-index: -1;
  }
  .title-box .title::before {
    content: "";
    animation: animeBorder2 3s infinite;
    height: 4px;
    border-radius: 10px;
    background-color: #0063db;
    position: absolute;
    bottom: -5%;
    left: 0;
    z-index: -1;
  }
}

.sticky-section {
  position: sticky;
  top: 100px;
}

.top-bar-section .top-bar {
  background-color: gainsboro;
}
.top-bar-section .top-bar .weather .weather-img-box {
  width: 30px;
}
.top-bar-section .top-bar .weather .weather-img-box .weather-icon {
  width: 50px;
}
.top-bar-section .top-bar .date-box {
  font-weight: 500;
}
.top-bar-section .top-bar .social-icon-box {
  width: 70%;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists li {
  margin: 0 10px;
  font-size: 1.1rem;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists li:nth-child(1) a {
  color: dodgerblue;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists li:nth-child(2) a {
  color: #C13584;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists li:nth-child(3) a {
  color: #FF0000;
}
.top-bar-section .top-bar .social-icon-box .social-icon-lists li:nth-child(4) a {
  color: rgb(165, 118, 0);
}
.top-bar-section .top-bar .button-box .button {
  background-color: #ff0000;
  margin: 0;
  color: #fff;
  outline: none;
  border: none;
  height: 40px;
  width: 100px;
  margin-right: 1rem;
  font-weight: bold;
}

.navigation-section .navbar {
  background-color: #fff !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.navigation-section .navbar .navbar-brand {
  font-size: 1.8rem;
}
.navigation-section .navbar .navbar-brand img {
  width: 150px;
}
.navigation-section .navbar .nav-link,
.navigation-section .navbar .dropdown-item {
  font-size: 1.2rem;
  color: grey;
  font-size: 500;
  transition: all 0.5s ease-in-out;
  border-radius: 100px;
  margin: 0 3px;
  text-align: center;
}
.navigation-section .navbar .nav-link:hover,
.navigation-section .navbar .dropdown-item:hover {
  color: #fff;
  background-color: #ff0000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.navigation-section .navbar .active {
  color: #fff;
  background-color: #ff0000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.navigation-section .navbar .dropdown-menu {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.breaking-news-section .breaking-news {
  border: 1px solid grey;
}
.breaking-news-section .breaking-news .title-box {
  padding-left: 1rem;
  color: #fff;
  background-color: #ff0000;
}
.breaking-news-section .breaking-news .title-box .title-m {
  font-size: 1.2rem;
  font-weight: 500;
}
.breaking-news-section .breaking-news .row {
  padding: 5px;
}
.breaking-news-section .breaking-news .breaking-news-box {
  position: relative;
  padding: 5px;
  border-right: 1px solid grey;
}
.breaking-news-section .breaking-news .breaking-news-box:nth-child(4) {
  border: none;
}
.breaking-news-section .breaking-news .breaking-news-box:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff0000;
  position: absolute;
  /* Add this line */
  z-index: -1;
  /* Add this line */
  top: 100%;
  opacity: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 10px 0 0px 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.breaking-news-section .breaking-news .breaking-news-box .news-title {
  text-align: justify;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: grey;
  font-weight: 500;
  cursor: pointer;
}
.breaking-news-section .breaking-news .breaking-news-box .news-title span {
  font-size: 3rem;
  display: block;
  margin-right: 5px;
}
.breaking-news-section .breaking-news .breaking-news-box:hover .news-title {
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.breaking-news-section .breaking-news .breaking-news-box:hover:before {
  opacity: 1;
  top: 0;
}

@keyframes animeBorder1 {
  0% {
    width: 100%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes animeBorder2 {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.full-image-section .full-image-boxes .full-image-box .title-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-image-section .full-image-boxes .full-image-box .title-button-box .title-button {
  border: none;
  outline: none;
  padding: 10px;
  color: #fff;
  background: #ff0000;
  font-size: 1.1rem;
  font-weight: 500;
}
.full-image-section .full-image-boxes .full-image-box .title-box .title {
  color: #3c3c3c;
  text-align: center;
  font-size: 3.5rem;
  transition: all 0.5s ease-in-out;
}
.full-image-section .full-image-boxes .full-image-box .title-box .title:hover {
  color: #ff0000;
}
.full-image-section .full-image-boxes .full-image-box .content .time-box {
  text-align: center;
}
.full-image-section .full-image-boxes .full-image-box .content .time-box .time {
  font-size: 1.3rem;
  color: grey;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-image-section .full-image-boxes .full-image-box .content .time-box .time span {
  color: #0063db;
  margin-right: 10px;
}
.full-image-section .full-image-boxes .full-image-box .content .image-box {
  height: 35rem;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  overflow: hidden;
}
.full-image-section .full-image-boxes .full-image-box .content .image-box img {
  height: 35rem;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.full-image-section .full-image-boxes .full-image-box .content .image-box:hover img {
  scale: 1.1;
}

.hero-content-section .hero-content .latest-news-boxes {
  padding: 0 10px;
}
.hero-content-section .hero-content .latest-news-boxes .title-box .title {
  position: relative;
  color: grey;
  margin-bottom: 1rem;
}
.hero-content-section .hero-content .latest-news-boxes .title-box .title::after {
  content: "";
  animation: animeBorder1 2s infinite;
  height: 4px;
  border-radius: 10px;
  background-color: #ff0000;
  position: absolute;
  bottom: -5%;
  left: 0;
  z-index: -1;
}
.hero-content-section .hero-content .latest-news-boxes .title-box .title::before {
  content: "";
  animation: animeBorder2 2s infinite;
  height: 4px;
  border-radius: 10px;
  background-color: #0063db;
  position: absolute;
  bottom: -5%;
  left: 0;
  z-index: -1;
}
.hero-content-section .hero-content .latest-news-boxes .latest-news-box .latest-news-lists {
  list-style: decimal;
  color: #0063db;
  font-size: 1.1rem;
  font-weight: 500;
}
.hero-content-section .hero-content .latest-news-boxes .latest-news-box .latest-news-lists .latest-news-list {
  margin: 5px 0;
  padding: 2px 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.hero-content-section .hero-content .latest-news-boxes .latest-news-box .latest-news-lists .latest-news-list .content {
  color: grey;
  text-align: justify;
}
.hero-content-section .hero-content .latest-news-boxes .latest-news-box .latest-news-lists .latest-news-list:hover {
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.hero-content-section .hero-content .latest-news-boxes .latest-news-box .latest-news-lists .latest-news-list:hover .content {
  transition: all 0.5s ease-in-out;
  color: #ff0000;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box {
  padding: 1px;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box .img-box {
  width: 100%;
  height: 5rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box .img-box img {
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box .link-title-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  text-align: justify;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.hero-content-section .hero-content .latest-news-boxes .leaderboard-image-box:hover img {
  scale: 1.1;
  transform: all 0.5s ease-in-out;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box {
  padding: 5px;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box .img-box {
  width: 100%;
  height: 14rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box .img-box img {
  height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box .link-title-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  text-align: justify;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box .link-title-box .content {
  color: grey;
  text-align: justify;
}
.hero-content-section .hero-content .image-news-boxes .leaderboard-image-box:hover img {
  scale: 1.1;
  transform: all 0.5s ease-in-out;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box {
  padding: 5px;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box .img-box {
  width: 100%;
  height: 10rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box .img-box img {
  height: 10rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box .link-title-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  text-align: justify;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box .link-title-box .content {
  color: grey;
  text-align: justify;
}
.hero-content-section .hero-content .image-news-boxes .rectangle-news-boxes .rectangle-news-box:hover img {
  scale: 1.1;
  transform: all 0.5s ease-in-out;
}

.second-category-section .second-category .secondary-leaderboard {
  background-color: rgb(255, 242, 216);
  border-radius: 10px;
  overflow: hidden;
}
.second-category-section .second-category .secondary-leaderboard .image-box {
  border-radius: 10px 0 0 10px;
  height: 23rem;
}
.second-category-section .second-category .secondary-leaderboard .image-box img {
  height: 23rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.second-category-section .second-category .secondary-leaderboard .link-title-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
}
.second-category-section .second-category .secondary-leaderboard .link-title-box .link-title:hover {
  color: #ff0000;
}
.second-category-section .second-category .secondary-leaderboard .content {
  color: grey;
  text-align: justify;
  font-weight: 500;
}
.second-category-section .second-category .secondary-leaderboard:hover img {
  scale: 1.1;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box {
  overflow: hidden;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box .image-box {
  height: 14rem;
  border-radius: 10px;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 14rem;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box .link-title-box .link-title {
  margin-top: 10px;
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 1.2rem;
  text-align: justify;
  padding: 5px;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.second-category-section .second-category .secondary-square-boxes .secondary-square-box:hover img {
  scale: 1.1;
}

.third-category-section .third-category .third-category-box1 {
  position: relative;
}
.third-category-section .third-category .third-category-box1 .image-box {
  height: 100%;
  height: 40rem;
  overflow: hidden;
  border-radius: 20px;
}
.third-category-section .third-category .third-category-box1 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 40rem;
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.5s ease-in-out;
}
.third-category-section .third-category .third-category-box1 .image-box:hover img {
  scale: 1.1;
}
.third-category-section .third-category .third-category-box1 .content {
  padding: 2rem 5px;
  position: absolute;
  bottom: 0;
  background-color: rgba(60, 60, 60, 0.4666666667);
  border-radius: 0 0 20px 20px;
}
.third-category-section .third-category .third-category-box1 .content .link-title {
  font-size: 1.7rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.third-category-section .third-category .third-category-box1 .content .link-title:hover {
  color: wheat;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box {
  overflow: hidden;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box .image-box {
  height: 14rem;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 14rem;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box .link-title-box .link-title {
  margin-top: 10px;
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 1.2rem;
  text-align: justify;
  padding: 5px;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.third-category-section .third-category .third-category-box2 .secondary-square-box:hover img {
  scale: 1.1;
}

.fourth-category-section .fourth-category .fourth-category-box1 {
  position: relative;
}
.fourth-category-section .fourth-category .fourth-category-box1 .image-box {
  height: 100%;
  height: 40rem;
  overflow: hidden;
  border-radius: 20px;
}
.fourth-category-section .fourth-category .fourth-category-box1 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 40rem;
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.5s ease-in-out;
}
.fourth-category-section .fourth-category .fourth-category-box1 .image-box:hover img {
  scale: 1.1;
}
.fourth-category-section .fourth-category .fourth-category-box1 .content {
  padding: 2rem 5px;
  position: absolute;
  bottom: 0;
  background-color: rgba(60, 60, 60, 0.4666666667);
  border-radius: 0 0 20px 20px;
}
.fourth-category-section .fourth-category .fourth-category-box1 .content .link-title {
  font-size: 1.7rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.fourth-category-section .fourth-category .fourth-category-box1 .content .link-title:hover {
  color: wheat;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box {
  padding: 1px;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box .img-box,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box .img-box {
  width: 100%;
  height: 7rem;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box .img-box img,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box .img-box img {
  height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box .link-title-box .link-title,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box .link-title-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  text-align: justify;
  font-size: 1.2rem;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box .link-title-box .link-title:hover,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.fourth-category-section .fourth-category .fourth-category-box2 .leaderboard-image-box:hover img,
.fourth-category-section .fourth-category .fourth-category-box3 .leaderboard-image-box:hover img {
  scale: 1.1;
  transform: all 0.5s ease-in-out;
}

.fifth-category-section .fifth-category .fifth-category-box1 {
  position: relative;
}
.fifth-category-section .fifth-category .fifth-category-box1 .image-box {
  height: 100%;
  height: 28rem;
  overflow: hidden;
  border-radius: 2px;
}
.fifth-category-section .fifth-category .fifth-category-box1 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 28rem;
  display: block;
  width: 100%;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.5s ease-in-out;
}
.fifth-category-section .fifth-category .fifth-category-box1 .image-box:hover img {
  scale: 1.1;
}
.fifth-category-section .fifth-category .fifth-category-box1 .content {
  padding: 2rem 5px;
  position: absolute;
  bottom: 0;
  background-color: rgba(60, 60, 60, 0.4666666667);
  border-radius: 0 0 2px 2px;
}
.fifth-category-section .fifth-category .fifth-category-box1 .content .link-title {
  font-size: 1.1rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.fifth-category-section .fifth-category .fifth-category-box1 .content .link-title:hover {
  color: wheat;
}

.sixth-category-section {
  background-color: rgba(254, 206, 117, 0.438);
}
.sixth-category-section .sixth-category .secondary-square-box {
  overflow: hidden;
}
.sixth-category-section .sixth-category .secondary-square-box .image-box {
  height: 14rem;
  border-radius: 10px;
}
.sixth-category-section .sixth-category .secondary-square-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 14rem;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.sixth-category-section .sixth-category .secondary-square-box .link-title-box .link-title {
  margin-top: 10px;
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 1.2rem;
  text-align: justify;
  padding: 5px;
}
.sixth-category-section .sixth-category .secondary-square-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.sixth-category-section .sixth-category .secondary-square-box:hover img {
  scale: 1.1;
}

footer {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
footer .box1 {
  border-right: 1px solid grey;
}
footer .box1 .info {
  color: grey;
}
footer .box1 .info-lists {
  font-size: 1.1rem;
  color: grey;
  font-weight: 500;
}
footer .box1 .info-lists .info-list {
  margin: 1rem 0;
}
footer .box1 .info-lists .link-box .link-title {
  color: #0063db;
  transition: 0.5s all ease-in-out;
}
footer .box1 .info-lists .link-box .link-title:hover {
  color: #ff0000;
}
footer .box1 .info-lists .link-box .link-title:hover span {
  transition: 0.5s all ease-in-out;
  margin-right: 5px;
  color: #0063db;
  transform: rotateY(45deg) scale(1.1);
  transition: all 0.5s ease-in-out;
}

.copyright-section .copyright-1 {
  background-color: #0063db;
}
.copyright-section .copyright-1 .footer-div1 .image-box {
  display: flex;
  justify-content: center;
  border-right: 1px #fff solid;
}
.copyright-section .copyright-1 .footer-div1 .image-box img {
  border-radius: 2px;
  width: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.copyright-section .copyright-1 .footer-div1 .content .text-content {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.copyright-section .copyright-1 .footer-div1 .lists .list {
  width: 2rem;
  height: 2rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.224);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.copyright-section .copyright-1 .footer-div1 .lists .list i {
  font-size: 1.1rem;
  color: #fff;
}
.copyright-section .copyright-2 {
  background-color: #ff0000;
}
.copyright-section .copyright-2 .text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
}
.copyright-section .copyright-2 .image-box img {
  background-color: #fff;
  margin-left: 10px;
  padding: 5px;
  border-radius: 3px;
  width: 130px;
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.headline-section .headline .image-box {
  border-radius: 20px;
  height: 25rem;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.headline-section .headline .image-box img {
  border-radius: 20px;
  height: 25rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.5s ease-in-out;
}
.headline-section .headline .text-box {
  padding: 1rem;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.headline-section .headline .text-box .link-title {
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 2rem;
}
.headline-section .headline .text-box .link-title:hover {
  color: #ff0000;
}
.headline-section .headline:hover img {
  scale: 1.1;
}

.category-section .category .secondary-square-box {
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border-radius: 10px;
}
.category-section .category .secondary-square-box .image-box {
  height: 14rem;
  border-radius: 10px;
}
.category-section .category .secondary-square-box .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 14rem;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.category-section .category .secondary-square-box .link-title-box .link-title {
  margin-top: 10px;
  color: #3c3c3c;
  transition: all 0.5s ease-in-out;
  font-size: 1.2rem;
  text-align: justify;
  padding: 5px;
}
.category-section .category .secondary-square-box .link-title-box .link-title:hover {
  color: #ff0000;
}
.category-section .category .secondary-square-box:hover img {
  scale: 1.1;
}

.pagination-section {
  padding: 20px;
  background-color: #f8f9fa;
}

.pagination {
  margin: 0;
  padding: 0;
}

.pagination .page-item {
  display: inline-block;
  margin-right: 5px;
}

.pagination .page-link {
  color: #fff;
  font-size: 1.4rem;
  background-color: #ff0000;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-weight: 300;
  box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.pagination .page-link:hover {
  background-color: #fff;
  color: #ff0000;
}

.pagination .page-item.active .page-link {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.pagination .page-item.disabled .page-link {
  background-color: #fff;
  color: #6c757d;
  border: 1px solid #dee2e6;
}

.pagination .page-item.disabled .page-link:hover {
  cursor: not-allowed;
  background-color: #fff;
}

.post-content-section .post-content .link-title {
  text-align: center;
  color: #ff0000;
  font-size: 3.5rem;
}
.post-content-section .post-content .time-box .time {
  color: #ff0000;
}
.post-content-section .post-content .time-box .time strong {
  color: #3c3c3c;
}
.post-content-section .post-content .social-links .lists {
  display: flex;
  justify-content: space-evenly;
}
.post-content-section .post-content .social-links .lists .list {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ff0000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.post-content-section .post-content .social-links .lists .list:hover {
  background: rgba(255, 0, 0, 0.5803921569);
}
.post-content-section .post-content .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-content-section .post-content .image-box img {
  border-radius: 20px;
  width: 75%;
}
@media (max-width: 556px) {
  .post-content-section .post-content .image-box img {
    width: 100%;
  }
}
.post-content-section .post-content .content .text {
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: justify;
}/*# sourceMappingURL=style.css.map */