/*!
Theme Name: rafatnews
Theme URI: http://www.rafatnews.com/
Author: Genesis Web Techbnology
Author URI: https://www.genesiswtech.com/
Description: This is a Custom theme for Rafat News
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: rafatnews
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --primary--color: #023d8c;
  --secondary--color: #fb550a;
}

html {
  scroll-behavior: smooth;
}

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

a,
a:hover,
a:active {
  text-decoration: none;
}

body {
  font-family: "Mukta", sans-serif;
}

p {
  line-height: 1.5;
  color: #000309;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: "Mukta", sans-serif;
  color: #000309;
  font-weight: 500;
}

.site-branding {
  display: inline-block;
}

.custom-logo {
  padding: 15px 0;
  width: 200px;
}

.headerdate {
  text-align: right;
  font-weight: 600;
  margin-top: -10px;
  font-size: 14px;
}

/* .header--sidebar__overlay {
  background-color: rgba(0, 0, 0, 0.068);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 1026;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
} */

.header--sidebar__menu {
  position: fixed;
  z-index: 1029;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  background-color: #fff;
  font-size: 15px;
  line-height: 26px;
  color: #383838;
  overflow: hidden;
  transform: translateX(-500px);
  -webkit-transform: translateX(-500px);
  -moz-transform: translateX(-500px);
  -ms-transform: translateX(-500px);
  -o-transform: translateX(-500px);
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  display: flex;
  flex-direction: column;
}

.header--sidebar__shownav .header--sidebar__menu {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.header--sidebar__shownav .header--sidebar__overlay {
  transform: scaleX(100%);
  -webkit-transform: scaleX(100%);
  -moz-transform: scaleX(100%);
  -ms-transform: scaleX(100%);
  -o-transform: scaleX(100%);
}
.header--sidebar__menu > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header--sidebar__menu > div > ul > li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.header--sidebar__menu > div > ul > li > ul {
  display: none;
  list-style: none;
  background-color: #f3f3f3;
  padding: 0;
  margin: 10px 0 0 0;
}
.header--sidebar__menu > div > ul > li > ul > li a {
  padding: 10px;
  display: block;
  color: var(--primary--color);
  font-size: 16px;
  font-weight: 500;
}
.header--sidebar__menu > div > ul > li > a {
  color: var(--primary--color);
  font-size: 16px;
  font-weight: 500;
}

.header--sidebar__shownav .header--sidebar__menu > div > ul > li {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
}
.header--sidebar__shownav .header--sidebar__menu > div > ul > li > i {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: var(--primary--color);
  padding: 10px;
  top: 2px;
}

.header--sidebar__head {
  background: #eee;
  text-align: center;
  padding: 15px;
}

.header--sidebar__head .custom-logo {
  padding: 0;
}

.burger__menu > a {
  padding: 10px 0;
  font-size: 21px;
  color: #fff;
}

.main-navigation {
  margin-top: 10px;
  background: var(--primary--color);
}

.main-navigation > div > div {
  /* margin-right: auto; */
  display: flex;
  align-items: center;
}

.main-navigation > div > div > ul {
  margin: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-navigation > div > div > ul,
.main-navigation > div > div > ul > li {
  margin: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  display: flex;
  height: 100%;
  align-items: center;
}

.main-navigation > div > div > ul > li.current-menu-item,
.main-navigation > div > div > ul > li:hover {
  background: var(--secondary--color);

  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.main-navigation > div > div > ul > li {
  position: relative;
}

.main-navigation > div > div > ul > li > ul {
  margin: 0;
  padding: 10px 0 10px 7px;
  list-style: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  -moz-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  -o-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  top: 120%;
  left: 0;
  width: 200px;
  background: #fff;
  z-index: 2;
  box-shadow: 0px 5px 15px #00000030;
}

.main-navigation > div > div > ul > li:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  -webkit-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  -moz-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  -o-transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
  transition: 0.4s cubic-bezier(0.55, -0.01, 0.19, 0.98) 0s;
}

.main-navigation > div > div > ul > li > a,
.main-navigation > div > div > ul > li > ul > li > a {
  position: relative;
  color: #fff;
  display: block;
  font-weight: 500;
  height: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  margin: 0 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  padding: 15px 0;
}

.main-navigation > div > div > ul > li > ul > li > a {
  color: #111;
  font-size: 14px;
}

.main-navigation > div > div > ul > li > ul > li > a {
  padding: 5px 0px 5px 0;
  font-size: 17px;
}

.main-navigation .uk-container {
  position: relative;
}

.header-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.header-right img {
  width: 25px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* Breaking Section */

.breaking__news {
  text-align: center;
  margin-bottom: 35px;
}

.breaking__news:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid #dfdee8;
}

.breaking__news--title {
  font-family: "Mukta", sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px;
  margin: 0;
}

.subtitle {
  margin: 0;
  margin: 13px 0;
  font-size: 22px;
  color: #000000a3;
  font-family: "Mukta", sans-serif;
  font-weight: 500;
}

.breaking__news--title .title {
  color: #101010;
}

.title {
  color: #313131;
}

.title:hover {
  color: var(--secondary--color);
}

.breaking__news p {
  color: #000000a3;
  font-size: 22px;
  padding: 0 40px;
  line-height: 37px;
  margin-top: 15px;
}

.slug {
  background: var(--secondary--color);
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  color: #fff;
  padding: 7px 15px;
  font-weight: 600;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.news--author {
  margin-bottom: 15px;
}

.news--author img {
  margin-right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  vertical-align: middle;
}
.news--author a,
.news--author {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary--color);
}

.news--author {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}

.breaking__news .news--author {
  font-size: 17px;
}

.news--author span {
  color: #555;
  font-weight: bold;
}

.news--author span:last-child {
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid #c4c4c4;
  font-weight: 400;
  line-height: 100%;
  display: inline-block;
}

.section {
  padding-top: 50px;
}

.news__title--large {
  margin: 0;
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news__title--xlarge {
  font-size: 37px;
  margin-top: 8px;
  line-height: 1.4;
}

.news__title--med {
  font-size: 27px;
  margin: 0;
  margin: 8px 0 8px 0;
  line-height: 1.4;
}

.news__title--medium {
  font-size: 22px;
  margin: 0;
  margin: 12px 0 0 0;
  line-height: 1.4;
}

.news__title--small {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  margin-top: 12px;
}
.cat-head {
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cat-head::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #9f9f9f63;
  position: absolute;
  top: 43%;
  right: 0;
  z-index: 1;
  bottom: inherit;
}

.cat-name {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  padding: 0 20px;
  margin: 0;
  display: inline-block;
  border: 0;
  background: #fff;
  color: var(--primary--color);
  position: relative;
  z-index: 2;
  line-height: 100%;
}

.cat-name > a {
  color: var(--primary--color);
}

.overlay--news {
  position: relative;
}

.overlay--text {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 30px;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0.79), #00000069, transparent);
  width: 100%;
  text-align: center;
}

.overlay--text .news__title--small {
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}

.overlay--text a.title {
  color: #fff;
}

.overlay--text .news__title--medium {
  font-size: 30px;
  line-height: 1.2;
}

.overlay--news > a {
  display: block;
  width: 100%;
  height: 450px;
}

.overlay--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col--news {
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.col--news:first-child {
  padding-top: 0;
  border-top: none;
}

.col--news > a {
  display: block;
  width: 150px;
  height: 100px;
  margin-right: 15px;
}

.col--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col--news .news__title--small {
  flex: 1;
  margin: 0;
}

.main__news {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.main__news .row--news {
  flex: 45%;
}

.main__news .row--news > a {
  display: block;
  width: 100%;
  height: 150px;
}

.main__news .row--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.politics__news .overlay--text .news__title--medium {
  font-size: 25px;
}

.big-news > a {
  display: block;
  width: 100%;
  height: 450px;
}
.big-news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-news .news__title--large {
  margin-top: 8px;
}

.big-news p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.finance__section .row--news {
  margin-bottom: 15px;
}

.literature--news .col--news > a,
.list--news .col--news > a,
.edu-news .col--news > a,
.political-news-sidebar .col--news > a {
  width: 100px;
  height: 80px;
}

.literature--news .news__title--small,
.edu-news .news__title--small,
.list--news .news__title--small,
.political-news-sidebar .news__title--small {
  font-size: 18px;
}

.edu-news .row--news .news__title--small {
  font-size: 20px;
}
.edu-news .row--news {
  margin-bottom: 20px;
}

.political-news-sidebar .row--news > a {
  height: 150px;
  display: block;
  width: 100%;
}

.political-news-sidebar .row--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.political-news-sidebar .row--news .news__title--small {
  font-size: 20px;
}

.politics__news .overlay--news > a {
  height: 530px;
}

.bg-light {
  margin-top: 50px;
  padding: 50px 0;
  background: var(--primary--color);
}

.bg-light .cat-name {
  background: var(--primary--color);
}

.bg-light .cat-name > a {
  color: #fff;
}

.bg-light .title {
  color: #fff;
}

.bg-light .col--news {
  border-color: #eeeeee24;
}

.video__section .big-news > a {
  height: 494px;
  position: relative;
}

.video__section .big-news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__section .big-news > a::before {
  content: "\f167";
  font-family: "Font Awesome 6 Brands";
  position: absolute;
  left: 50%;
  bottom: 50%;
  color: red;
  line-height: 50%;
  width: 50px;
  font-size: 50px;
  background: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.video__section .row--news > a {
  display: block;
  height: 400px;
  width: 100%;
}

.video__section .row--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: #fff;
}

.patrapatrika__section .row--news > a {
  display: block;
  width: 100%;
  height: 175px;
}

.patrapatrika__section .row--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entertainment__section .edu-news .col--news > a {
  margin: 0;
}

.entertainment__section .edu-news > .col--news .news__title--small {
  order: -1;
  margin: 0;
  margin-right: 15px;
}

.site-footer {
  padding-top: 50px;
  margin-top: 30px;
  background-color: var(--primary--color);
}

.footerlogo strong {
  display: block;
  font-size: 20px;
  color: #fff;
  margin-top: 12px;
}

.footerlogo p {
  font-weight: 600;
  font-size: 17px;
  font-style: italic;
  margin-top: 15px;
  font-size: 17px;
  margin-bottom: 0;
  color: #fff;
  line-height: 1.5;
}

.footerlogo img {
  width: 150px;
}

.footer-text p {
  font-size: 16px;
  font-style: normal;
  line-height: 1.8;
  margin-top: 6px;
}

.footer-info {
  margin-bottom: 15px;
}

.uk-grid-divider > :not(.uk-first-column)::before {
  border-color: #eeeeee24;
}

.footer-info strong {
  display: block;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 500;
  margin: 0;
  margin-bottom: 10px;
}

.footer-info p {
  font-weight: 500;
  color: #fff;
  margin: 0;
  margin-bottom: 8px;
}

.footer-info ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-info h4 {
  color: #fff;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  margin: 0;
  margin-bottom: 8px;
}

.footer-info ul li a {
  font-family: mukta, sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.site-footer .header-socials > a {
  margin: 0;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}

.lastFooter {
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #eeeeee24;
}

.lastFooter ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.lastFooter ul > li {
  margin-right: 10px;
  border-right: 1px solid #1e1e1e;
  padding-right: 10px;
  line-height: 100%;
}

.lastFooter ul > li a {
  color: #fff;
  font-weight: 600;
  line-height: 100%;
}

.lastFooter ul > li:last-child {
  margin-right: 0;
  border-right: 0;
  padding-right: 0;
}

.lastFooter p {
  color: #fff;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.lastFooter p a {
  color: #fff;
}

.content-area {
  padding: 0 30px;
}

.content-area,
.content-area p,
.content-area div {
  transition: font-size 0.3s ease;
  font-size: 22px;
  text-align: justify;
  font-weight: 400;
  line-height: 1.75;
  color: #000309;
}

.content-area p,
.content-area div {
  margin: 25px 0 0 0;
}
.content-area figure {
  width: 100% !important;
}

.content-area figure img {
  width: 100%;
}

.content-area figcaption {
  text-align: center;
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  opacity: 0.8;
  line-height: 30px;
  display: block;
}

.content-area p img {
  width: 100%;
  margin-bottom: 15px;
}

.content-area blockquote.floatleft::before,
.content-area blockquote.floatright:before,
.content-area blockquote.floatleft::after,
.content-area blockquote.floatright:after {
  border: none;
}

.content-area blockquote::before {
  position: absolute;
  left: 0;
  top: 0;
}

.content-area blockquote::before,
.content-area blockquote::after {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 50px;
}

.content-area blockquote.floatright {
  margin-left: 0;
  float: right;
}

.content-area blockquote::after {
  content: "\f10e";
}

.content-area p em {
  color: var(--secondary--color);
}

.landing__caption {
  font-weight: bold;
  color: var(--primary--color);
  text-align: center;
  display: block;
  z-index: 111;
  font-size: 13px;
  background: #eee;
  padding: 7px;
}

.text-action {
  padding: 15px 0;
}

.text-action button {
  background: none;
  padding: 0;
  cursor: pointer;
  border: none;
  margin-right: 14px;
  background: none;
  border: 1px solid #3333334d;
  padding: 7px;
  width: 40px;
  height: 40px;
}

.content-area .highlighter,
.content-area .highlighter p {
  font-size: 1.48rem;
  line-height: 170%;
  color: var(--primary--color);
  font-weight: 600;
  display: block;
  font-style: italic;
}
.content-area .highlighter {
  background: #f1f1f1;
  padding: 28px;
}

.content-area blockquote.floatleft,
.content-area blockquote.floatright {
  max-width: 340px;
  margin: 0 30px 0 0;
  /* padding-right: 40px; */
  background: none;
  box-shadow: none;
  padding-right: 0;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.content-area blockquote {
  display: block;
  width: 100%;
  line-height: 1.68;
  font-size: 1.4rem;
  position: relative;
  border-bottom: none;
  margin-bottom: 27px;
  /* background: #ffffff0a; */
  font-weight: 600;
  padding-top: 40px;
}
.content-area blockquote.floatright,
.content-area blockquote.floatleft {
  padding-bottom: 10px;
  text-transform: justify;
}
.content-area blockquote,
.content-area blockquote p {
  text-align: center;
  color: var(--primary--color);
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0;
  padding-top: 40px;
}
.content-area blockquote.floatleft {
  float: left;
  margin-right: 30px;
  padding: 40px 40px 00px 0px;
}

.content-area blockquote.floatleft::before,
.content-area blockquote.floatleft::after,
.content-area blockquote.floatright::before,
.content-area blockquote.floatright::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 50px;
}
.content-area blockquote.floatleft::before,
.content-area blockquote.floatright::before {
  top: 0;
  left: 0;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.content-area blockquote.floatleft::after,
.content-area blockquote.floatright::after {
  bottom: 0;
  right: 0;
  left: inherit;
  transform: rotate(-360deg);
}
.content-area blockquote.floatright {
  margin: 0 0 0 30px;
  padding: 45px 0px 20px 0px;
}
.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4,
.content-area h5,
.content-area h6 {
  margin-top: 0;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.3;
}

.content-area h2 {
  font-size: 1.8rem;
}

.featured-img img {
  width: 100%;
}

.content-area h3 {
  font-size: 1.54rem;
}
.content-area ul,
.content-area ol {
  padding-left: 0px;
  list-style: none;
  padding-bottom: 20px;
}
.alignleft {
  padding-right: 30px;
  float: left;
}

.alignright {
  padding-left: 30px;
  float: right;
}

.aligncenter {
  text-align: center;
}

.comment-area {
  margin-top: 20px;
  padding: 30px;
  background: #eee;
}

.comment-area > span {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-family: "Noto Sans Devanagari", sans-serif;
  padding-top: 0;
  font-size: 35px;
  font-weight: bold;
  color: var(--primary--color);
  z-index: 1;
  position: relative;
  padding-right: 16px;
}

.comment-reply-title {
  font-size: 22px;
  display: none;
  font-weight: 600;
  color: #000;
}

#commentform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}

.comment-notes {
  font-size: 15px;
  display: none;
  color: #000;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent {
  margin-top: 21px;
}

#respond p label {
  width: 100%;
  color: #000000bf;
  font-weight: 600;
  font-size: 16px;
}

#respond textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  padding: 20px;
  margin: 5px 1px 3px 0;
  width: 100%;
  border: none;
  height: 150px;
  font-family: mukta, sans-serif;
  background: #fff;
  resize: none;
  color: #000;
  font-size: 17px;
  border: 1px solid #00000026;
  line-height: 1.8;
}

#respond input[type="text"],
#respond input[type="url"],
#respond input[type="email"] {
  background: #fff;
  height: 45px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  padding: 3px 20px;
  margin: 5px 1px 3px 0;
  font-family: poppins, sans-serif;
  width: 100%;
  border: none;
  color: #000;
  font-size: 15px;
  border: 1px solid #00000026;
  border-radius: 4px;
}

.comment-form-comment,
.comment-notes,
.comment-form-cookies-consent,
.form-submit {
  grid-column: span 3;
  margin-top: 0;
}

#respond #submit {
  border: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: var(--primary--color);
  font-weight: 600;
}

#respond #submit:hover {
  opacity: 0.8;
}

.comment-form-cookies-consent {
  display: none;
}

.comments-title {
  font-size: 18px;
  display: none;
  background: #036;
  padding: 14px 23px;
  color: #fff;
  margin: 0;
}

.comment-list {
  margin: 30px 0 30px 0;
  list-style: none;
}

.comment-list > li {
  padding-top: 30px;
  border-top: 1px solid #00000021;
  margin-top: 30px;
}

.comment-list > li:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.comment-list > li > article {
  position: relative;
}

.form-submit {
  margin-top: 30px;

  margin-bottom: 0;
}

.comment-list > li article footer .comment-author,
.comment-metadata {
  position: relative;
  padding-left: 69px;
  color: #000;
}

.fn {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 17px;
  color: #000;
  text-transform: capitalize;
}

.comment-list > li article footer .comment-author img {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.comment-list > li article footer time {
  font-size: 14px;
}

.comment-list > li article footer .comment-author a,
.comment-list > li article footer time {
  color: #000;
}

.comment-list > li article .comment-content {
  margin: 0px 0 0 58px;
  padding: 14px 0 0;
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  /* border-top: 1px solid #15151517; */
}

.comment-list > li article .comment-content p {
  color: #000;
}

.comment-list > li > article .reply {
  position: absolute;
  right: 0;
  top: 0;
}

.reply a {
  font-weight: 700;
  background: var(--primary--color);
  padding: 5px 9px;
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.comment-list > li ol {
  margin: 0 0 0 50px;
  padding: 0;
  list-style: none;
}

.comment-list > li ol li em {
  display: inline-block;
  margin-top: 20px;
}

.comment-awaiting-moderation {
  display: none;
}

.nav-links {
  margin: 25px 0;
  display: flex;
  justify-content: space-between;
}

.nav-links > div {
  padding: 5px 10px;
  background: var(--primary--color);
}

.nav-links > div a {
  color: #fff;
}

.nav-links > div:hover {
  color: #fff;
  background: var(--secondary--color);
}

.news-hastag ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-hastag ul li {
  display: inline-block;
  margin-left: 10px;
}

.news-hastag a {
  position: relative;
  display: inline-block;
  border: 1px solid #0000008f;
  padding: 7px 18px;
  text-align: center;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 13px;
  line-height: 18px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.news-hastag a:hover {
  background: var(--primary--color);
  color: #fff;
  border-color: var(--primary--color);
}

.post-author {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.post-author .news--author {
  margin: 0;
}

.post-author .author {
  margin: 0;
}

.post-author .author a {
  color: var(--primary--color);
  font-weight: bold;
}

.post-author span {
  text-align: center;
}

.author > div.uk-flex > div:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 2px solid #dfdee8;
  padding-top: 5px;
  padding-bottom: 5px;
}

.author > div.uk-flex > div:last-child span {
  font-size: 17px;
  text-transform: uppercase;
  vertical-align: middle;
  color: var(--primary--color);
  font-weight: bold;
}

.author > div.uk-flex > div:last-child span i {
  vertical-align: middle;
  color: #000;
  margin-right: 8px;
}

.post-author .author img {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  margin-right: 8px;
}

.category__container .col--news > a {
  width: 100px;
  height: 80px;
}

.category__container .col--news .news__title--small {
  font-size: 18px;
}

/* Modal Box */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 11111;
}

.modal-content {
  position: absolute;
  top: 100px;
  left: 50%;
  background-color: white;
  padding: 25px;
  width: 500px;
  max-width: 100%;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}

.close-button:hover {
  background-color: darkgray;
}

.show-modal {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  -webkit-transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  -moz-transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  -ms-transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  -o-transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 25px;
}

.modal-content form {
  position: relative;
}

.modal-content form .btn {
  border: none;
  margin-top: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 120px;
  background: var(--primary--color);
  padding: 0;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
}

.modal-content form input {
  font-family: "Mukta", sans-serif;
  max-width: 100%;
  height: 50px;
  width: 100%;
  border: 0 none;
  padding: 0 10px;
  background: #fff;
  color: #666;
  border: 1px solid #b6b6b6;
  transition-property: color, background-color, border;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  font-size: 20px;
  font-weight: 500;
}

.btn {
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  background: var(--secondary--color);
  text-transform: uppercase;
  padding: 10px 28px;
  vertical-align: middle;
  margin-top: 22px;
  display: inline-block;
  line-height: 24px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.btn:hover {
  background: var(--primary--color);
  color: #fff;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap .page-numbers {
  border: 1px solid #00000036;
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  vertical-align: middle;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  overflow: hidden;
  margin-right: 11px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.page-numbers:hover,
.page-numbers.current {
  border: 1px solid var(--primary--color);
  color: #fff;
  background: var(--primary--color);
}

.page-numbers.next,
.page-numbers.prev {
  padding-left: 20px;
  width: auto;
  padding-right: 13px;
  border: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding-right: 20px;
}

.page-numbers.next:hover,
.page-numbers.prev:hover {
  color: var(--primary--color);
  background: none;
}

/* Ads and RoadBlock */

.roadblock {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 0;
  background: #fff;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.roadblock-wrap {
  height: 100%;
  /* overflow: scroll; */
  /* height: 100%; */
  width: 100%;
  overflow: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  place-items: center;
}

.skip-ad {
  margin-bottom: 15px;
  background: var(--primary--color);
  text-align: center;
  padding: 6px 19px;
  color: #fff;
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 20px 6px 20px;
  border-radius: 22px;
  vertical-align: middle;
  display: inline-block;
}
.skip-ad:hover {
  color: #fff;
}

.roadblock-ad {
  overflow: hidden;
}

.roadblock-remove .roadblock {
  opacity: 0;

  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  visibility: hidden;
}
.aligncenter {
  text-align: center;
}
.roadblock__ad .container {
  width: 100%;
}

.alignright {
  text-align: right;
}

.roadblock__ad {
  text-align: center;
}

.sidebar-ads .gam-ad-position-wrap > div:first-child {
  margin-top: 0;
}

.ad-container .gam-each-ad {
  padding: 10px 0;
  border-top: 1px solid rgba(238, 238, 238, 0.911);
  border-bottom: 1px solid rgba(238, 238, 238, 0.911);
  /* padding-top: 15px; */
}

.gam-ad-position-wrap div {
  text-align: center;
  margin-bottom: 10px;
}
.gam-ad-position-wrap > div {
  margin-top: 20px;
}
.gam-ad-position-wrap div:last-child {
  margin-bottom: 0;
}

/* .video__section li .overlay--news::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #f00;
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
} */

.video__section li .overlay--news:hover::before {
  opacity: 1;
}

.uk-offcanvas-bar {
  padding: 0;
  background: #fff;
}

.uk-offcanvas-bar > div > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uk-offcanvas-bar > div > ul > li {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  transform: translateX(100px);
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.uk-offcanvas-bar > div > ul > li > ul {
  display: none;
  list-style: none;
  background-color: #f3f3f3;
  padding: 0;
  margin: 10px 0 0 0;
}
.uk-offcanvas-bar > div > ul > li > ul > li a {
  padding: 10px;
  display: block;
  color: var(--primary--color);
  font-size: 16px;
  font-weight: 500;
}
.uk-offcanvas-bar > div > ul > li > a {
  color: var(--primary--color);
  font-size: 16px;
  font-weight: 500;
}

.uk-offcanvas-bar > div > ul > li {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: relative;
}
.uk-offcanvas-bar > div > ul > li > i {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: var(--primary--color);
  padding: 10px;
  top: 2px;
}

.author > div.uk-flex > div:not(:last-child) {
  font-weight: 600;
  color: #111;
}

.author > div.uk-flex > div:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 2px solid #dfdee8;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.overlay--news > a.playBtn {
  width: 45px;
  height: 45px;
  line-height: 49px;
  text-align: center;
  background: #f00;
  opacity: 0.2;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.overlay--news > a.playBtn:hover {
  opacity: 1;
}

#video-wrap .uk-modal-body {
  padding: 15px;
}
