* {
  margin: 0;
  padding: 0;
  font-family: "Mukta", sans-serif;
  box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background-color: #2260bf;
  border-radius: 0.625rem;
  margin: block;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0.625rem;
  border: solid #fff;
  width: 100%;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #0081e4;
}

.sticky-section {
  position: sticky;
  top: 100px;
}

.card-h-xsmall {
  height: 7rem;
}

.card-h-small {
  height: 11rem;
}

.card-h-medium {
  height: 22rem;
}

.card-h-xmedium {
  height: 25rem;
}

.card-h-large {
  height: 28rem;
}

.card-h-xlarge {
  height: 33rem;
}

.title-box .title {
  font-size: 1.3rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.title-box .title:hover {
  color: #0081e4;
}
.title-box .title-text {
  font-size: 1.1rem;
  color: #222327;
}

.section-title {
  position: relative;
}
.section-title .cat-title-box {
  cursor: pointer;
}
.section-title .cat-title-box .cat-title {
  color: #fff;
  background-color: #2260bf;
  display: inline-block;
  padding: 10px 5px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.section-title .cat-title-box .cat-title::before {
  content: "";
  background-color: #ffa500;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: -10px;
}
.section-title .cat-title-box .cat-title:hover::before {
  top: 0px;
  transition: all 0.5s ease-in-out;
}
.section-title .link-box .link {
  background-color: #2260bf;
  padding: 1rem;
  font-size: 1rem;
  color: white;
  font-weight: 800;
  margin: auto;
  padding-top: 16px;
  -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  position: relative;
  transition: 0.5s ease-in-out all;
}
.section-title .link-box .link::before {
  content: "";
  background-color: #ffa500;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: -40px;
  top: 0;
  -webkit-clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%);
  transition: 0.5s ease-in-out all;
}
.section-title .link-box .link:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.section-title .link-box .link:hover::before {
  transition: 0.5s ease-in-out all;
  left: 3px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.section-title::before {
  content: "";
  background-color: rgba(128, 128, 128, 0.562);
  width: 97%;
  height: 2px;
  position: absolute;
  z-index: -1;
  top: 43%;
}

.image-box {
  overflow: hidden;
  display: flex;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.image-box .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  object-position: center;
  transition: all 0.5s ease-in-out;
}
.image-box:hover .image {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.social-media-icons .ul li:nth-child(1) i:hover {
  color: #3b5998;
}
.social-media-icons .ul li:nth-child(2) i:hover {
  color: #c32aa3;
}
.social-media-icons .ul li:nth-child(3) i:hover {
  color: #ff0000;
}
.social-media-icons .ul li:nth-child(4) i:hover {
  color: #fff;
}
.social-media-icons .ul li a {
  font-size: 15px;
}
.social-media-icons .ul li a i {
  color: #fff;
  transition: 0.4s all ease;
}
.social-media-icons .ul li a i:hover {
  color: #f90808;
  transform: translate(0, -3px);
}

.nav-link2 {
  position: relative;
}
.nav-link2:hover::after {
  width: 100%;
}
.nav-link2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 3px;
  background-color: #4db2ec;
  transform: translate3d(0, 0, 0);
  transition: width 0.5s ease;
}
.nav-link2 .nav-link1 {
  color: #fff;
}
.nav-link2 .nav-link1:hover {
  color: #fff;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navigation {
  background: #2260bf;
}
.navigation .dropdown-menu {
  background-color: #d10c0c;
}
.navigation .dropdown-menu .dropdown-item:hover {
  background-color: #2260bf;
}

.category .category-title {
  margin: 0 0 6px 0;
  background: linear-gradient(166deg, #0081e4 0%, #ffa500 100%);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center !important;
  width: 100%;
  color: #fff;
  margin-right: 5px;
  padding: 3px 6px 4px;
  display: inline-block;
  transition: 0.3s all ease-out;
}
.category .category-title:hover {
  background-color: #0081e4;
  transform: scale(1.1, 1.1);
}

.top-navbar .temperature {
  color: #fff;
}
.top-navbar .date-card h6 {
  color: #fff;
}
.top-navbar .social-media-icons .ul li:nth-child(1) i:hover {
  color: #3b5998;
}
.top-navbar .social-media-icons .ul li:nth-child(2) i:hover {
  color: #c32aa3;
}
.top-navbar .social-media-icons .ul li:nth-child(3) i:hover {
  color: #ff0000;
}
.top-navbar .social-media-icons .ul li:nth-child(4) i:hover {
  color: #fff;
}
.top-navbar .social-media-icons .ul li a {
  font-size: 15px;
}
.top-navbar .social-media-icons .ul li a i {
  color: #fff;
  transition: 0.4s all ease;
}
.top-navbar .social-media-icons .ul li a i:hover {
  color: #f90808;
  transform: translate(0, -3px);
}

#breaking_news .news {
  background-color: #ffa500;
  position: relative;
  padding: 5px 15px;
  border-radius: 50px;
}
#breaking_news .news::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5px;
  left: -5px;
  background-color: #2260bf;
  height: 100%;
  width: 100%;
  border-radius: 50px;
}
#breaking_news .news .tajakhabar {
  width: 5rem;
  font-size: 1.2rem;
  color: #fff;
}
#breaking_news .news .tajakhabar span {
  color: #333232;
  font-weight: 600;
}
#breaking_news .news-scroll a {
  color: #2260bf;
  font-size: 1.2rem;
  font-weight: 600;
}
#breaking_news .news-scroll a:hover {
  text-decoration: underline;
  color: #0081e4;
}
@media (max-width: 556px) {
  #breaking_news .tajakhabar {
    width: 7rem !important;
  }
  #breaking_news .news {
    padding: 5px 0 0 10px;
  }
}

.latest-news-section .latest-news .title-box {
  text-align: center;
}
.latest-news-section .latest-news .title-box .title {
  color: #2260bf;
  font-size: 3rem;
}
.latest-news-section .latest-news .title-box .title:hover {
  color: #0081e4;
  transition: all 0.1s ease-in-out;
}
.latest-news-section .latest-news .title-box .title-text {
  color: #0081e4;
  font-size: 1.8rem;
  font-weight: 600;
}
.latest-news-section .latest-news .info-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.latest-news-section .latest-news .info-box .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.latest-news-section .latest-news .info-box .profile .profile-image-box img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.latest-news-section .latest-news .info-box .profile .name-box .name {
  color: #333232;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.latest-news-section .latest-news .info-box .time-box .time {
  color: #333232;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.latest-news-section .latest-news .image-box {
  padding: 0 2rem;
  height: 30rem;
  border-radius: 4rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  box-shadow: none;
}
.latest-news-section .latest-news .image-box .image {
  width: 90%;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  object-position: center;
  transition: all 0.5s ease-in-out;
}
.latest-news-section .latest-news .image-box:hover .image {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 556px) {
  .latest-news-section .image-box {
    padding: 0 !important;
  }
  .latest-news-section .image-box .image {
    height: 25rem !important;
  }
}

.main-news-section .main-news .image-box {
  width: 100%;
  height: 15rem;
  border-radius: 20px;
}
.main-news-section .main-news .image-box .image {
  height: 14.5rem;
}
.main-news-section .main-news .info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-news-section .main-news .info-box .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.main-news-section .main-news .info-box .profile .profile-image-box img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.main-news-section .main-news .info-box .profile .name-box .name {
  color: #333232;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}
.main-news-section .main-news .info-box .time-box .time {
  color: #333232;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}
.main-news-section .main-news .title-box .title {
  font-size: 1.3rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.main-news-section .main-news .title-box .title:hover {
  color: #0081e4;
}
.main-news-section .main-news .title-box .title-text {
  font-size: 1.1rem;
  color: #222327;
}

.card-1-section .card-1 .content-1 .section-title {
  position: relative;
}
.card-1-section .card-1 .content-1 .section-title .cat-title-box .cat-title {
  color: #fff;
  background-color: #2260bf;
  text-align: center;
  display: block;
  padding: 10px 5px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.card-1-section .card-1 .content-1 .section-title .cat-title-box .cat-title::before {
  content: "";
  background-color: #ffa500;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: -5px;
  left: 10px;
}
.card-1-section .card-1 .content-1 .image-box .image {
  border-radius: 10px 0 10px 10px;
  height: 9rem;
}
.card-1-section .card-1 .content-2 .news-box .news-1 .image-box {
  height: 15rem;
  width: 100%;
  border-radius: 20px;
}
.card-1-section .card-1 .content-2 .news-box .news-1 .image-box .image {
  width: 100%;
  height: 15rem;
}
.card-1-section .card-1 .content-2 .news-box .news-1 .title-box .title {
  font-size: 1.5rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.card-1-section .card-1 .content-2 .news-box .news-1 .title-box .title:hover {
  color: #0081e4;
}
.card-1-section .card-1 .content-2 .news-box .news-1 .title-box .title-text {
  font-size: 1.1rem;
  color: #222327;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .image-box {
  width: 100%;
  height: 10rem;
  border-radius: 20px;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .image-box .image {
  height: 10rem;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .info-box .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .info-box .profile .profile-image-box img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .info-box .profile .name-box .name {
  color: #333232;
  font-weight: 600;
  font-size: 0.7rem;
  margin: 0;
  padding: 0;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .info-box .time-box .time {
  color: #333232;
  font-weight: 600;
  font-size: 0.7rem;
  margin: 0;
  padding: 0;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .title-box .title {
  font-size: 1.1rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .title-box .title:hover {
  color: #0081e4;
}
.card-1-section .card-1 .content-2 .news-box .news-2 .title-box .title-text {
  font-size: 1rem;
  color: #222327;
}

.card-2-section .card-2 .content-1 .image-box {
  border-radius: 20px;
  height: 18rem;
}
.card-2-section .card-2 .content-1 .image-box .image {
  height: 18rem;
}
.card-2-section .card-2 .content-1 .title-box .title {
  font-size: 1.8rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.card-2-section .card-2 .content-1 .title-box .title:hover {
  color: #0081e4;
}
.card-2-section .card-2 .content-1 .title-box .title-text {
  font-size: 1.3rem;
  color: #222327;
}

.card-3-section .card-3 .image-box {
  height: 8rem;
  border-radius: 10px;
}
.card-3-section .card-3 .image-box .image {
  height: 8rem;
}

.card-4-section .card-4 .content-1 .image-box {
  border-radius: 20px;
  height: 13rem;
}
.card-4-section .card-4 .content-1 .image-box .image {
  height: 18rem;
}
.card-4-section .card-4 .content-1 .title-box .title {
  font-size: 1.5rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.card-4-section .card-4 .content-1 .title-box .title:hover {
  color: #0081e4;
}

.card-5-section .card-5 .content-1 .image-box {
  border-radius: 20px;
  height: 18rem;
}
.card-5-section .card-5 .content-1 .image-box .image {
  height: 18rem;
}
.card-5-section .card-5 .content-1 .title-box .title {
  font-size: 1.5rem;
  color: #2260bf;
  transition: all 0.5s ease-in-out;
}
.card-5-section .card-5 .content-1 .title-box .title:hover {
  color: #0081e4;
}

.footer-section {
  background-color: #2260bf;
}
.footer-section .footer .content-1 .image-box {
  box-shadow: none;
  border-radius: 0 0 20px 20px;
}
.footer-section .footer .content-1 .image-box .image {
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  width: 80%;
}
.footer-section .footer .content-1 .text-box {
  color: #fff;
  text-align: center;
}
.footer-section .footer .content-1 .text-box .heading {
  font-size: 2.2rem;
}
.footer-section .footer .content-1 .text-box .post,
.footer-section .footer .content-1 .text-box .name {
  font-size: 1.2rem;
  text-align: center;
}
.footer-section .footer .content-1 .text-box .post i,
.footer-section .footer .content-1 .text-box .name i {
  color: #ffa500;
}
.footer-section .footer .content-1 .text-box .social-media-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer-section .footer .content-1 .text-box .social-media-box .social-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.footer-section .footer .content-1 .text-box .social-media-box .social-icon i {
  font-size: 1.2rem;
  color: #ffa500;
}
.footer-section .footer .content-1 .text-box .social-media-box .social-icon:hover {
  transform: translateY(-10px);
}
.footer-section .footer .content-1 .text-box .social-media-box .social-icon:hover i {
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.footer-section .footer .content-2 .text-box {
  text-align: center;
}
.footer-section .footer .content-2 .text-box .foot-title {
  color: #ffa500;
  font-size: 2rem;
}
.footer-section .footer .content-2 .text-box p {
  font-size: 1.1rem;
  color: #fff;
}
.footer-section .footer .content-2 .text-box .address {
  font-size: 1.8rem;
}
.footer-section .footer .content-3 .text-box {
  text-align: center;
}
.footer-section .footer .content-3 .text-box .foot-title {
  color: #ffa500;
  font-size: 2rem;
}
.footer-section .footer .content-3 .text-box .button-box .news {
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  color: #fff;
  background-color: #fd7e14;
  border-radius: 5px;
}
.footer-section .footer .content-3 .text-box .button-box .news:hover {
  color: #fd7e14;
  background-color: #fff;
}
.footer-section .footer-credits {
  background-color: #fff;
}
.footer-section .footer-credits .credit-1 {
  color: #2260bf;
}
.footer-section .footer-credits .credit-1 span {
  color: #fd7e14;
}
.footer-section .footer-credits .credit-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2260bf;
}
.footer-section .footer-credits .credit-2 img {
  margin-left: 5px;
  width: 70px;
}

.category-section .category .content .content-box .image-box {
  height: 15rem;
  border-radius: 20px;
}
.category-section .category .content .content-box .image-box .image {
  height: 15rem;
}
.category-section .category .content .content-box .title-box a {
  text-decoration: none;
}
.category-section .category .content .content-box .title-box a .title {
  font-size: 1.4rem;
}
.category-section .category .content .content-box .time-box .time {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222327;
}

.pagination {
  justify-content: center;
  margin-top: 20px;
}
.pagination .page-item {
  display: inline-block;
  margin-right: 5px;
}
.pagination .page-item:last-child {
  margin-right: 0;
}
.pagination .page-item.disabled .page-link {
  background-color: #ddd;
  color: #555;
  cursor: not-allowed;
}
.pagination .page-item:not(.disabled):hover .page-link {
  background-color: #ffa500;
  border-color: #ffa500;
  color: #fff;
}
.pagination .page-item .page-link {
  padding: 10px 15px;
  border: 1px solid #2260bf;
  background-color: #2260bf;
  color: #fff;
  border-radius: 5px;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link:focus {
  background-color: #ffa500;
  border-color: #ffa500;
  color: #fff;
}

.post-section .post .content .post-content .post-title {
  color: #2260bf;
  text-align: center;
}
.post-section .post .content .post-content .info-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.post-section .post .content .post-content .info-box .profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.post-section .post .content .post-content .info-box .profile .profile-image-box img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.post-section .post .content .post-content .info-box .profile .name-box .name {
  color: #333232;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.post-section .post .content .post-content .info-box .time-box .time {
  color: #333232;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  padding: 0;
}
.post-section .post .content .post-content .post-text {
  font-size: 1.3rem;
  line-height: 1.6;
}
.post-section .post .content .content-1 .section-title {
  position: relative;
}
.post-section .post .content .content-1 .section-title .cat-title-box .cat-title {
  color: #fff;
  background-color: #2260bf;
  text-align: center;
  display: block;
  padding: 10px 5px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
.post-section .post .content .content-1 .section-title .cat-title-box .cat-title::before {
  content: "";
  background-color: #ffa500;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: -5px;
  left: 10px;
}
.post-section .post .content .content-1 .image-box .image {
  border-radius: 10px 0 10px 10px;
  height: 9rem;
}/*# sourceMappingURL=style.css.map */