/*!
Theme Name: coloradopols
Theme URI: https://wordpress.org/
Author: Underscores.me
Author URI: https://wordpress.org/
Description: Description
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: coloradopols
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.

coloradopols is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> 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

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/* font-family: 'Poppins', sans-serif; */

body,
html {
  overflow-x: hidden;
  scrollbar-width:15px;
}
/* body,html{
    width: 100%;
} */
@font-face {
  font-family: "Droid Serif";
  src: url("fonts/DroidSerif-Bold.woff2") format("woff2"),
    url("fonts/DroidSerif-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Droid Serif";
  src: url("fonts/DroidSerif.woff2") format("woff2"),
    url("fonts/DroidSerif.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --btn-bg-color: #dcbe82;
  --btn-color: #002868;
  --red-color: #f71032;
  --blue-clr: #1e5bdc;
  --white-clr: #ffffff;
  --black-clr: #000000;
  --green-color: #1aa817;
  --light-sky-clr: #f1f6ff;
  --top-hdr-bg: #fffdf8;
  --poppins-fnt: "Poppins", sans-serif;
  --droid-regular: "Droid Serif";
  --droid-bold: "Droid Serif";
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--poppins-fnt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  color: var(--black-clr);
  font-size: 14px;
  line-height: 1.5;
  background-color: var(--top-hdr-bg);
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: #000;
  font-weight: bold;
  font-family: var(--droid-bold);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.main-heading {
  font-size: 42px;
}

h2,
.sub-head {
  font-size: 42px;
}

h3,
.item-title {
  font-size: 36px;
}

h4,
.item-title2 {
  font-size: 26px;
}

h5,
.item-sub-title {
  font-size: 18px;
}

h6,
.item-sub-title2 {
  font-size: 16px;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--btn-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--btn-bg-color);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  background: var(--btn-color);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  height: 51px;
  border: 1px solid var(--btn-color);
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background: transparent;
  color: var(--btn-color);
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
} 

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 458px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 23px;
  padding: 10px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: var(--white-clr);
  line-height: 1.2;
  position: relative;
  font-family: var(--poppins-fnt);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
}

/* .navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3b61dc;
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
} */

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: var(--btn-bg-color) !important;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: var(--top-hdr-bg);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: var(--btn-color);
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: var(--btn-bg-color);
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/
.navbar-nav > li.menu-item-has-children > a {
  padding-right: 17px;
}
.navbar-nav .clickD {
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url(images/barws.svg) center center no-repeat transparent;
  background-size: 9px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* common css start */
.cmn-gap {
  padding: 85px 0;
}

.cmn-btn {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 20px 30px;
  background: var(--btn-bg-color);
  color: var(--btn-color);
  border-radius: 10px;
  padding: 18px 30px;
}

/* common css end */

/* header start */
.top-hdr {
  background: var(--top-hdr-bg);
  padding: 0px 0;
}
.bottom-hdr {
  background: var(--btn-color);
  padding: 10px 0;
}
.hdr-rit-ul {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.hdr-rit-ul .cmn-li a {
  color: var(--white-clr);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hdr-rit-ul .cmn-li a i {
  width: 19px;
  min-width: 19px;
  margin-right: 15px;
}
.hdr-rit-ul .cmn-li a span {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hdr-rit-ul .cmn-li a i img {
  max-height: 19px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hdr-rit-ul {
  margin: 0 -18px;
}
.hdr-rit-ul .cmn-li {
  padding: 0 18px;
  position: relative;
}
.hdr-rit-ul .cmn-li:not(:last-child):after {
  position: absolute;
  content: "";
  height: calc(100% + 7px);
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hdr-rit-ul .cmn-li a:hover span {
  color: var(--btn-bg-color);
}
.hdr-rit-ul .cmn-li a:hover i img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}

.srch-cls a .search-close-icon {
  display: none;
}
.cmn-li a:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
.srch-cls a.src-open:hover .search-close-icon {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
.cmn-li a img {
  width: 19px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.srch-cls a.src-open .search-close-icon {
  display: block;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.srch-cls a.src-open .search-icon {
  display: none;
}
.search-wpr.open {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 99999;
}
.search-wpr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  right: 0;
  background: var(--light-sky-clr);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.search-wpr-in {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 15px;
}
.search-wpr-in form {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-wpr-in form input {
  width: calc(100% - 40px);
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--btn-color);
  border-right: 0;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 16px;
  background-color: var(--white-clr);
  font-family: var(--poppins-fnt);
}
.search-wpr-in form button[type="submit"],
.search-wpr-in form input[type="submit"] {
  width: 40px;
  height: 40px;
  border: 1px solid var(--btn-color);
  outline: none;
  padding: 0;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-image: url(images/srch.png);
  background-size: 19px;
  background-position: center;
  background-repeat: no-repeat;
}
.search-wpr-in form button[type="submit"]:hover,
.search-wpr-in form input[type="submit"]:hover {
  background-color: var(--btn-bg-color);
}
.search-wpr-in form button[type="submit"]:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.search-wpr-in button img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}
.hdr-rit-ul .cmn-li {
  line-height: 0;
}
.scroll-txt {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.top-hdr-main-areas {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hdr-bx,
.hdr-bx-lft {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hdr-bx-lft {
  padding-right: 15px;
}
.hdr-bx-rit {
  padding-left: 15px;
}
.hdr-bx-lft i {
  width: 115px;
  min-width: 115px;
  margin-right: 13px;
  height: 70px;
}
.hdr-bx-lft i a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.hdr-bx-lft-con {
  width: calc(100% - 105px);
}
.hdr-bx-lft-con span {
  display: block;
  color: var(--black-clr);
  font-family: var(--droid-regular);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.hdr-bx-lft-con span span {
  font-size: 15px;
}
.hdr-bx-lft-con a {
  color: var(--red-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  -webkit-text-decoration-line: underline !important;
  text-decoration-line: underline !important;
}
.hdr-bx {
  background: #fff;
  padding: 10px 10px 10px 13px;
  position: relative;
}
.hdr-bx::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  -webkit-transform: translate(-50%, -52%);
  -ms-transform: translate(-50%, -52%);
  transform: translate(-50%, -52%);
  width: 1px;
  height: 100%;
  background: #ebebeb;
}
.hdr-bx-rit-blk span {
  /* color: var(--blue-clr); */
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.hdr-bx-lft i a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.hdr-bx-rit-list {
    display: flex;
}
.hdr-bx-rit-blk {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px; */
  margin-right: 27px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: column;
}
.hdr-bx-lft-con a:hover {
  color: var(--btn-color);
}
.custom-btnSlider .slick-arrow:hover {
  border: 1px solid var(--btn-color);
}
.hdr-slider-divss {
  width: calc(100% - 458px);
}
.hdr-slider-divss {
  position: relative;
}
.hdr-bx-rit-blk:last-child {
  margin-bottom: 0;
}
.hdr-prcnt span img {
  width: 8px;
  margin-right: -8px;
  display: inline-block;
}
.hdr-bx-rit-list .hdr-bx-rit-blk:last-child {
  margin-bottom: 0;
}
.hdr-nm-txt {
  min-width: 125px;
  padding-right: 27px;
}
.custom-btnSlider .prev-arrows {
  background: url(images/tarws.svg) no-repeat rgba(255, 255, 255, 1);
  background-size: 10px;
  background-position: center;
  left: 0;
}
.custom-btnSlider .next-arrows {
  background: url(images/barws.svg) no-repeat rgba(255, 255, 255, 1);
  background-size: 10px;
  background-position: center;
  left: 0;
}
.custom-btnSlider .slick-arrow {
  border-radius: 100%;
  border: 1px solid rgba(217, 217, 217, 1);
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.custom-btnSlider .slick-arrow:last-child {
  margin-bottom: 0;
}
.custom-btnSlider {
  min-width: 39px;
  width: 39px;
  min-height: 100%;
  height: 100%;
  background: #f1f6ff;
  padding: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hdr-slider {
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 555px;
  margin-left: auto;
}
/* header end */

/* banner post start */
.bpb-blk a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  border: 2px solid #002868;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  color: var(--black-clr);
  padding: 10px;
  width: 100%;
}
.banpost-mdl {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bpb-blk {
  margin-bottom: 16px;
}
.bpb-blk:last-child {
  margin-bottom: 0;
}
.bpb-blk .ban-post-blkimg {
  margin-right: 28px;
  margin-bottom: 0;
  width: 195px;
  height: 148px;
  min-width: 195px;
}
.ban-post-blk .ban-post-blkimg img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.dt-head span {
  color: var(--black-clr);
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dt-head i {
  width: 18px;
  min-width: 18px;
  margin-right: 19px;
}
.dt-head i img {
  max-height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ban-post-blk-rit .item-sub-title {
  color: var(--btn-color);
  font-size: 18px;
  line-height: 1.1;
  font-family: var(--droid-bold);
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banpost-mdl {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 9px 0 8px;
}
.banpost-mdl span {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banpost-mdl-lft {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 22px;
}
.banpost-mdl-lft i {
  width: 18px;
  min-width: 18px;
  margin-right: 9px;
}
.banpost-mdl-lft i img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ban-post-blk-rit p {
  margin-bottom: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.dt-head {
  margin-bottom: 8px;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.more-dtls {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  border-radius: 10px;
  padding: 12px 18px;
  background: #002868;
  color: #fff;
  width: 122px;
 
}
.ban-post-blk a:hover .more-dtls, .more-dtls:hover {
  color: #002868 !important;
  background: #dcbe82;
}

.ban-post-blk a:hover .cat-post .more-dtls, .ban-post-blk .cat-post .more-dtls:hover{
  color: #dcbe82 !important;
  background: #002868 !important;
}
/*.more-dtls:hover {
  color: var(--btn-bg-color);
}*/
.hdng-itm .bpb-blk-lfts a .more-dtls {
  background: #dcbe82;
  color: #002868;
}
.hdng-itm .bpb-blk-lfts a:hover .more-dtls{
  background: #002868;
  color: #dcbe82 !important;
}
.ban-col-lft {
  width: 49%;
}
.ban-col-rit {
  width: 51%;
}

.ban-post-blk a:hover .dt-head span {
  color: var(--white-clr);
}
.ban-post-blk a:hover .item-sub-title {
  color: var(--btn-bg-color);
}
.ban-post-blk a:hover .banpost-mdl span {
  color: var(--white-clr);
}
.ban-post-blk a:hover .more-dtls {
  color: var(--btn-bg-color);
}
.ban-post-blk a:hover p {
  color: var(--white-clr);
}
.ban-post-blk a:hover i img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
.bpb-blk-lfts a {
  display: block;
  border-radius: 10px;
  border: 2px solid #002868;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  color: var(--black-clr);
  width: 100%;
}
.ban-post-blk a:hover {
  background: var(--btn-color);
}
.bpb-blk-lfts .ban-post-blk-rit {
  padding: 23px 30px 23px;
}
.bpb-blk-lfts .ban-post-blkimg {
  margin-bottom: 0;
}
.bpb-blk-lfts .ban-post-blkimg img {
  border-radius: 6px 6px 0 0;
}
.bpb-blk-lfts a .dt-head {
  margin-bottom: 16px;
}
.bpb-blk-lfts a .ban-post-blk-rit .item-sub-title {
  margin-bottom: 14px;
}
.bpb-blk-lfts a .ban-post-blk-rit .banpost-mdl {
  margin: 0 0 14px;
}
.bpb-blk-lfts a .ban-post-blk-rit p {
  margin-bottom: 10px;
}
.banner-post {
  padding-top: 41px;
  position: relative;
}
.banner-post-areas {
  padding-bottom: 58px;
  margin-bottom: 86px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.banner-post .rowspan {
  --bs-gutter-x: 27px;
}
.scroll-down {
  position: absolute;
  right: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  padding-bottom: 44px;
  z-index: 2;
  color: #5c5b70;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scroll-down span {
  width: 22px;
  min-width: 22px;
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.scroll-down span img {
  max-height: 31px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.scroll-down:hover {
  color: var(--btn-bg-color);
}
.scroll-down:hover span img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
/* banner post end */

/* recent post start */
.sec-head .sub-head {
  color: var(--btn-color);
  position: relative;
  padding-right: 270px;
  display: inline-block;
  line-height: 1;
}
.sec-head .sub-head::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 20px;
  width: 245px;
  height: 1px;
  background: var(--btn-color);
}
.recent-post-top {
  margin-bottom: 29px;
}
.sort-sec {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sort-sec .sort-txt {
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  min-width: 51px;
}
.recent-post-top {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sort-sec select {
  background: url(images/sort.svg) transparent no-repeat;
  background-size: 14px;
  height: 20px;
  background-position: right center;
  color: var(--btn-color);
  font-size: 14px;
  font-weight: 400;
  padding-left: 5px;
  cursor: pointer;
  padding-right: 15px;
}
.recent-bpb-blk a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  border: 2px solid #002868;
  background: var(--light-sky-clr);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  color: var(--black-clr);
  padding: 10px;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.recent-bpb-blk a .ban-post-blkimg {
  margin-left: 32px;
  margin-bottom: 0;
  width: 255px;
  height: 199px;
  min-width: 255px;
}
.recent-bpb-blk .dt-head {
  margin-bottom: 16px;
}
.recent-bpb-blk .banpost-mdl {
  margin: 16px 0;
}
.recent-bpb-blk {
  margin-bottom: 8px;
}
.recent-post-sec .banpost-mdl-lft i {
  margin-right: 19px;
}
.recent-bpb-blk:last-child {
  margin-bottom: 0;
}
.local-btn-grps {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.local-pols {
  background: var(--btn-bg-color);
  padding: 16px 11px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 52px;
}
.local-pols .sub-head {
  color: var(--btn-color);
  padding-bottom: 18px;
  margin-bottom: 17px;
  position: relative;
}
.local-pols .sub-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--btn-color);
}
.local-btn-grps .cmn-btn {
  background: var(--white-clr);
  border-radius: 5px;
  margin-right: 17px;
}
.local-btn-grps .cmn-btn:last-child {
  margin-right: 0;
}
.local-btn-grps .cmn-btn:hover {
  background: var(--btn-color);
  color: var(--white-clr);
}
.recent-post-rit .sec-head .sub-head {
  position: relative;
  display: inline-block;
  padding-right: 53px;
}
.recent-post-rit .sec-head .sub-head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 38px;
  height: 1px;
  background: var(--btn-color);
}
.recent-post-rit .sec-head {
  margin-bottom: 30px;
}
.top-users-ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 605px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 13px;
  scrollbar-color: #002868 #f1f6ff;
  scrollbar-width: thin;
}
.top-users-ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--light-sky-clr);
  padding: 16px;
  margin-bottom: 7px;
  position: relative;
  border-radius: 10px;
  width: 100%;
  color: var(--btn-color);
}
.top-users-ul li a:hover {
  background: var(--btn-color);
  color: var(--btn-bg-color);
}
.top-users-ul li:last-child {
  margin-bottom: 0;
}
.top-users-ul li i {
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 9px;
}
.top-users-ul li i img {
  max-height: 48px;
  border-radius: 100%;
}
.crcl-cls {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  position: absolute;
  right: 39px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.active-clr1 {
  background: var(--green-color);
}
.active-clr2 {
  background: var(--red-color);
}
.active-clr3 {
  background: var(--green-color);
}
.active-clr4 {
  background: var(--btn-bg-color);
}
.active-clr5 {
  background: var(--btn-bg-color);
}
.active-clr6 {
  background: var(--red-color);
}
.recent-post-rit {
  margin-top: 70px;
}
.recent-post-sec {
  position: relative;
}
.pbgs {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.5;
}
.recent-bpb-blk a:hover .ban-post-blk-rit i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/*  recent post end */

/* browse start */
.browse-input {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.browse-frm input[type="text"],
.browse-frm input[type="email"] {
  height: 51px;
  border: 0;
  border-bottom: 1px solid var(--white-clr);
  color: var(--white-clr);
  font-family: var(--poppins-fnt);
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  padding-right: 10px;
  margin-right: 19px;
}
.newslettr-sec .browse-frm input[type="text"],
.newslettr-sec .browse-frm input[type="email"] {
  margin-right: 30px;
}
.browse-frm input[type="submit"] {
  background: var(--btn-bg-color);
  color: var(--btn-color);
  height: 51px;
  font-family: var(--poppins-fnt);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
}
.browse-frm input[type="submit"]:hover {
  background: var(--white-clr);
  color: var(--btn-color);
}

.browse-frm input::-webkit-input-placeholder {
  text-transform: capitalize;
  color: var(--white-clr);
  opacity: 1;
}

.browse-frm input:-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--white-clr);
  opacity: 1;
}

.browse-frm input::-moz-placeholder {
  text-transform: capitalize;
  color: var(--white-clr);
  opacity: 1;
}

.browse-frm input:-moz-placeholder {
  text-transform: capitalize;
  color: var(--white-clr);
  opacity: 1;
}
.browse-sec {
  background: var(--btn-color);
  position: relative;
}
.browse-sec::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 12%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  -moz-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.browse-blk h2 {
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 67px;
}
.browse-frm {
  max-width: 726px;
  margin: 0 auto 67px;
}
.browse-uls {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  -moz-column-count: 2;
  -webkit-column-count: 2;
  column-count: 2;
}
.browse-uls li a {
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
  color: var(--black-clr);
  display: inline-block;
  width: 100%;
}
.browse-uls li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--black-clr);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.browsw-bx {
  background: var(--light-sky-clr);
  padding: 23px 20px 58px;
  border-radius: 10px;
}
.cntnr {
  position: relative;
  z-index: 1;
}
.browsw-bx .item-title2 {
  text-align: center;
  color: var(--btn-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 23px;
}
.browse-uls li a span img {
  -webkit-transform: rotate(-30.96deg);
  -ms-transform: rotate(-30.96deg);
  transform: rotate(-30.96deg);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 12px;
}
.browse-uls li a:hover {
  color: var(--btn-bg-color);
}
.browse-uls li a:hover::before {
  background: var(--btn-bg-color);
}
.browse-uls li a:hover span img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
/* browse end */

/* post about start */
/*04.12.2023*/
.newslettr-sec .browse-frm .mc4wp-form-fields{
	display: flex;
}
/*04.12.2023*/

/* easyresponsive tab */
h2.resp-accordion {
  cursor: pointer;
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

/* horizontal tab */
.post-abt-ul {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
}

.post-abt-ul li {
  background: transparent !important;
  border-radius: 5px;
  border: 1px solid var(--btn-color);
  padding: 17px;
  margin-right: 12px;
  color: var(--btn-color);
  font-family: var(--droid-regular);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.post-abt-ul li:last-child {
  margin-right: 0;
}

.post-abt-ul li.resp-tab-active,
.post-abt-ul li:hover {
  background-color: var(--btn-color) !important;
  color: var(--white-clr);
}
.post-abt-tab-top {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 37px;
}
.post-abt-tab-top h2 {
  color: var(--btn-color);
  margin-bottom: 0;
}

.post-abt-con .bpb-blk-lfts a {
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
}
.post-abt-div .rowspan {
  --bs-gutter-x: 30px;
}
.post-abt-div .bpb-blk-lfts a {
  background: rgba(220, 190, 130, 0.3);
}
.post-abt-div .bpb-blk-lfts a:hover {
  background: var(--btn-bg-color);
}
.post-abt-div .ban-post-blk a:hover .dt-head span,
.post-abt-div .ban-post-blk a:hover .banpost-mdl span,
.post-abt-div .ban-post-blk a:hover p {
  color: var(--black-clr);
}
.post-abt-div .ban-post-blk a:hover .item-sub-title {
  color: var(--btn-color);
}
.post-abt-div .ban-post-blk a:hover i img {
  -webkit-filter: none;
  filter: none;
}
.post-abt-div .ban-post-blk a:hover .more-dtls {
  color: var(--btn-color);
}
.vw-divs .cmn-btn {
  background: var(--btn-color);
  color: var(--white-clr);
}
.vw-divs .cmn-btn:hover {
  background: var(--black-clr);
  color: var(--white-clr);
}
.vw-divs {
  margin-top: 47px;
}
.post-abt-con {
  margin-bottom: 0 !important;
}
.easyresponsive-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 80px;
}
/* post about end */

/* recent comments start */
.comments-item {
  padding: 0 15px;
}
.comments-slider .slick-list {
  margin: 0 -15px;
}
.sechd2 .sub-head {
  padding-right: 180px;
}
.sechd2 .sub-head::after {
  width: 151px;
}
.sechd2 {
  margin-bottom: 22px;
}
.hdng-itm .bpb-blk-lfts a {
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.15);
  background: var(--btn-color);
  color: var(--white-clr);
}
.hdng-itm .dt-head span {
  color: var(--white-clr);
}
.hdng-itm .ban-post-blk-rit .item-sub-title,
.hdng-itm .ban-post-blk-rit .more-dtls {
  color: var(--btn-bg-color);
}
.hdng-itm .bpb-blk-lfts .ban-post-blk-rit {
  padding: 23px 16px 23px;
}
.hdng-itm .banpost-mdl-lft i img,
.hdng-itm .dt-head i img {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
.hdng-itm .bpb-blk-lfts a:hover {
  background: var(--black-clr);
}
.hdng-itm.bpb-blk-lfts .ban-post-blkimg img {
  border-radius: 10px 10px 0 0;
}

.sechd3 .sub-head {
  padding-right: 133px;
}
.sechd3 .sub-head::after {
  width: 103px;
  bottom: 21px;
  top: auto;
}
.sechd3 {
  margin-bottom: 22px;
}
.rcnt-com-uls {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 444px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 13px;
  scrollbar-color: #002868 #f1f6ff;
  scrollbar-width: thin;
}
.rcnt-com-uls li {
  background: var(--btn-bg-color);
  padding: 16px;
  border-radius: 5px;
  margin-bottom: 4px;
}
.rcnt-com-uls li:last-child {
  margin-bottom: 0;
}
.rcnt-com-uls li .item-sub-title {
  color: var(--btn-color);
  margin-bottom: 3px;
  font-weight: 700;
  font-family: var(--droid-bold);
  line-height: 1.2;
}
.rcnt-com-uls li .item-sub-title a {
  color: var(--btn-color);
}
.rcnt-com-uls li .item-sub-title a:hover {
  color: var(--black-clr);
}
.rcnt-com-uls li p:not(:last-child) {
  margin-bottom: 3px;
}
.rcnt-com-uls li p {
  color: var(--btn-color);
}
.slick-next:before,
.slick-prev:before {
  display: none;
}
.comments-slider .slick-prev {
  background: url(images/larw.svg) no-repeat;
  background-size: 10px;
  background-position: left 11px center;

  left: 0;
}
.comments-slider .slick-next {
  background: url(images/rarw.svg) no-repeat;
  background-size: 10px;
  background-position: left 7px center;
  left: 50px;
}
.comments-slider .slick-arrow {
  border-radius: 100%;
  border: 1px solid #002868;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: auto;
  bottom: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.comments-slider .slick-arrow:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(83%) sepia(30%)
    saturate(461%) hue-rotate(356deg) brightness(89%) contrast(93%);
  filter: brightness(0) saturate(100%) invert(83%) sepia(30%) saturate(461%)
    hue-rotate(356deg) brightness(89%) contrast(93%);
}
.comments-slider {
  padding-bottom: 56px;
}
/* recent comments end */

/* newsletter start */
.browse-blk p {
  text-align: center;
  color: var(--white-clr);
  margin-bottom: 55px;
}
.newslettr-sec .browse-blk h2 {
  margin-bottom: 32px;
}
.newslettr-sec .browse-frm {
  max-width: 957px;
}
.newslettr-sec {
  padding: 74px 0;
}
.newslettr-sec .browse-frm input[type="submit"] {
  min-width: 181px;
}
.newslettr-sec .browse-frm {
  margin-bottom: 0;
}
/* newsletter end */

.bglinebtm {
  margin-top: 18px;
}
.local-pols2 {
  margin-bottom: 23px;
  padding: 23px;
  text-align: left;
}
.local-pols2 .sub-head {
  padding-right: 78px;
  padding-bottom: 0;
  margin-bottom: 25px;
  line-height: 1;
  display: inline-block;
}
.details-sec .local-pols2 .sub-head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 64px;
  height: 1px;
  background: var(--btn-color);
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.local-pols2 .local-btn-grps {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.local-pols2 .local-btn-grps .cmn-btn:not(:last-child) {
  margin-right: 17px;
}
.dtls-sec-hd {
  margin-bottom: 41px;
}
/* .activcls span {
  color: var(--red-color);
} */
.dtls-sec-hd.sec-head .sub-head {
  padding-right: 200px;
}
.dtls-sec-hd .sub-head::after {
  width: 170px;
}
.hdng-itm .bpb-blk-lfts a:hover {
  background: var(--btn-bg-color);
}
.hdng-itm .bpb-blk-lfts a:hover .dt-head span,
.hdng-itm .ban-post-blk a:hover .banpost-mdl span,
.hdng-itm .ban-post-blk a:hover p {
  color: var(--btn-color);
}
.hdng-itm .bpb-blk-lfts a:hover .item-sub-title,
.hdng-itm .bpb-blk-lfts a:hover .more-dtls {
  color: var(--white-clr);
}
.hdng-itm .bpb-blk-lfts a:hover .dt-head i img,
.hdng-itm .bpb-blk-lfts a:hover .banpost-mdl-lft i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.rowspan-sub {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 35px;
}
.rec-cls {
  margin-bottom: 22px;
  padding-top: 8px;
}
.rowspan-sub .post-abt-div .ban-post-blk a {
  background: var(--btn-color);
}
.getrows .hdng-itm .bpb-blk-lfts a:hover .dt-head span,
.getrows .hdng-itm .bpb-blk-lfts a:hover .banpost-mdl span,
.getrows .hdng-itm .bpb-blk-lfts a:hover p {
  color: var(--black-clr);
}
.getrows .hdng-itm .bpb-blk-lfts a:hover .item-sub-title,
.getrows .hdng-itm .bpb-blk-lfts a:hover .more-dtls {
  color: var(--btn-color);
}
.getrows .hdng-itm .bpb-blk-lfts a:hover .dt-head i img,
.getrows .hdng-itm .bpb-blk-lfts a:hover .banpost-mdl-lft i img {
  -webkit-filter: none;
  filter: none;
}
.seo-bot .item-sub-title:hover {
  color: var(--black-clr);
}
.login-outer .main-heading {
  padding-right: 78px;
  position: relative;
  line-height: 1;
  display: inline-block;
}
.login-outer .main-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  width: 64px;
  height: 1px;
  background: var(--btn-color);
  left: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.senate-dtls .details-left-outer {
  margin-bottom: 54px;
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f6ff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--btn-color);
}
.comments-outer .sec-head .main-heading {
  color: var(--btn-color);
  position: relative;
  padding-right: 133px;
  display: inline-block;
  line-height: 1;
}
.comments-outer .sec-head .main-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 103px;
  height: 1px;
  background: var(--btn-color);
}
/* sh start 16/8/23*/

/* footer start */
.footer-sec {
  padding: 40px 0 0;
  color: #002868;
}
.footer-sec a:hover {
  color: var(--btn-bg-color);
}
.footer-sec ul {
  list-style-type: none;
  padding: 0;
}
.footer-logo {
  max-width: 458px;
  margin: 0 auto 32px;
}
.footer-logo a {
  display: inline-block;
}
.footer-sec a {
  color: #002868;
}
.ft-down-menu,
.ft-md,
.ft-menu {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ft-menu {
  margin-bottom: 32px;
}
.ft-menu a {
  font-size: 16px;
}
.ft-md li:not(:last-child) {
  margin-right: 30px;
}
.ft-menu li:not(:last-child) {
  margin-right: 47px;
}
.ft-down-menu li:not(:last-child) {
  margin-right: 34px;
}
.footer-top {
  padding-bottom: 40px;
}
.ft-md {
  margin-bottom: 0;
}
.ft-md a {
  font-size: 20px;
}
.ft-md a:hover {
  color: var(--btn-bg-color);
}
.ft-down-menu {
  margin-bottom: 0;
  padding-right: 15px;
}

/* footer-down */
.footer-down {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(10, 40, 104, 0.2);
}

.fot-down-wrap {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* footer-sec end */

/* details pages  start*/
.details-sec {
  padding: 40px 0 70px;
}
.details-row {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.details-left {
  width: 68%;
  padding-right: 30px;
}
.details-right {
  width: 32%;
}
.details-left-outer p {
  margin-bottom: 15px;
}
.details-left-outer p:last-child {
  margin-bottom: 0;
}
.det-subtitle {
  display: inline-block;
  font-size: 14px;
  position: relative;
  padding-left: 36px;
  margin-bottom: 9px;
}
.clock {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
}
.details-left-outer .main-heading {
  color: var(--btn-color);
  margin-bottom: 36px;
}
.colorad-sel {
  list-style-type: none;
  padding: 0;
  margin-bottom: 36px;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.colorad-sel li {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.colorad-sel li:not(:last-child) {
  margin-right: 44px;
}
.mess-icon {
  margin-right: 15px;
  max-width: 18px;
  width: 100%;
}
.seoen-outer {
  background: rgba(220, 190, 130, 0.3);
  border-radius: 10px;
  overflow: hidden;
}
.seoen-img {
  height: 243px;
  margin: 0;
}
.seoen-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.seo-bot {
  padding: 18px 20px;
}
.seo-bot .item-sub-title {
  color: var(--btn-color);
  font-family: var(--droid-regular);
}

.sub-outer {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
}
.subscribe-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.subscribe-menu li {
  position: relative;
  padding: 0 6px;
}
.subscribe-menu li:first-child {
  padding-left: 0;
}
.subscribe-menu li::after {
  position: absolute;
  content: "";
  height: 11px;
  width: 1px;
  background: #000000;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.subscribe-title {
  margin-right: 2px;
}
.subscribe-menu li:first-child {
  padding: 0;
}
.subscribe-menu li:first-child::after {
  display: none;
}
.welcom-img {
  margin: 0;
  padding: 0;
  margin-top: 25px;
}
.seoenser-outer p {
  margin-bottom: 13px;
}
.seoenser-outer p:last-child {
  margin-bottom: 0;
}
.seoenser-outer {
  margin-top: 27px;
}

.subscribe-md {
  list-style-type: none;
  padding: 0;
  margin: 18px 0 0;
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.subscribe-md li:not(:last-child) {
  margin-right: 20px;
}
.details-left-outer .subscribe-md a {
  color: var(--btn-color);
  font-size: 20px;
}
.details-left-outer .subscribe-md a:hover {
  color: var(--btn-bg-color);
}
.leave-outer .main-heading {
  color: var(--btn-color);
}
.form-img {
  margin: 0;
}
.comments-outer {
  margin: 50px 0 0;
}
.comment-img {
  margin: 0;
}
.comments-outer .main-heading {
  margin-bottom: 40px;
  font-size: 30px;
}
/* details pages end */
.login-outer {
  background: var(--light-sky-clr);
  border-radius: 10px;
  border: 2px solid var(--btn-color);
  padding: 30px 24px;
}
.form-outer .input-item:not(:last-child) {
  margin-bottom: 12px;
}
.form-outer .input-item:last-child {
  margin-top: 22px;
}
.form-outer input[type="text"],
.form-outer input[type="email"],
.form-outer input[type="password"] {
  border-radius: 10px;
  border: 1px solid #cfe3fd;
  background: #fff;
  height: 58px;
  font-size: 16px;
  color: #242424;
  padding-left: 26px;
  padding-right: 26px;
}
.form-outer input[type="text"]:focus,
.form-outer input[type="email"]:focus,
.form-outer input[type="password"]:focus {
  border-color: var(--btn-color);
  outline: none;
  box-shadow: none;
}
.form-outer input[type="submit"] {
  border-radius: 10px;
  background: var(--btn-color);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  height: 51px;
  border: 1px solid var(--btn-color);
}
.form-outer input[type="submit"]:hover {
  background: transparent;
  color: var(--btn-color);
}
.register-outer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.register-outer p {
  font-size: 16px;
  text-transform: capitalize;
}
.register-outer p:not(:last-child) {
  margin-bottom: 8px;
}
.register-outer a {
  color: #242424;
}
.register-outer a:hover {
  color: var(--btn-bg-color);
}
.login-outer .main-heading {
  color: var(--btn-color);
}
.form-outer input::-webkit-input-placeholder {
  opacity: 1;
  color: #242424;
}

.form-outer input:-ms-input-placeholder {
  opacity: 1;
  color: #242424;
}

.form-outer input::-moz-placeholder {
  opacity: 1;
  color: #242424;
}

.form-outer input:-moz-placeholder {
  opacity: 1;
  color: #242424;
}



.details-left-outer a:hover {
  color: blue!important;
  text-decoration:underline	
}
.details-left-outer {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  padding: 24px 15px 42px;
  margin-bottom: 96px;
}

.details-left-outer a {
  font-weight: 600;
  color:#2525bf!important;
  text-decoration: none!important
}
.seoenser-left-col {
  width: 54%;
  padding-right: 20px;
}
.seoenser-right-col {
  width: 46%;
}

/* big-page */
.big-item {
  border-radius: 10px;
  background: var(--btn-color);
  padding: 34px;
}
.big-top {
  display: -webkit-box;
  display: flex;

  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 57px;
}
.big-left {
  width: 251px;
}
.big-right {
  width: calc(100% - 251px);
  padding-left: 31px;
}
.big-item .big-right .item-sub-title {
  margin-bottom: 14px;
}
.big-item .item-sub-title {
  color: var(--btn-bg-color);
  margin-bottom: 17px;
}
.big-item {
  color: #fff;
}
.big-item b {
  font-weight: 600;
}
.note {
  text-transform: uppercase;
}
.big-item p:not(:last-child) {
  margin-bottom: 11px;
}
.blue-color {
  color: var(--blue-clr);
  font-weight: 600;
}
.red-color {
  color: var(--red-color);
  font-weight: 600;
}
.red-color-only {
  color: var(--red-color);
}
.big-item:not(:last-child) {
  margin-bottom: 9px;
}
.loding-outer {
  width: 43px;
  margin: 29px auto 0;
}

/* sh/16/8  end */

/* sh/16/8/3pm */

.inner-banner {
  position: relative;
  z-index: 1;
  height: 206px;
}
.inner-banner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  opacity: 30%;
  z-index: -1;
}
.inner-banner {
  display: grid;
  place-content: center;
}
.center-content h1 {
  color: #fff;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="password"],
.contact-form input[type="email"],
.contact-form select {
  background-color: #fff;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 10px;
  border: 1px solid var(--btn-color);
  height: 58px;
  padding-left: 26px;
  padding-right: 26px;
  outline: none !important;
  font-size: 16px;
  color: #242424;
}
.contact-form select {
  background-image: url("images/select-icon.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: right 24px center;
  padding-right: 48px;
}
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid var(--btn-color);
  background-color: #fff;
  font-size: 16px;
  height: 138px;
  padding-left: 26px;
  padding-right: 26px;
  vertical-align: middle;
}

.contact-form textarea::-webkit-input-placeholder,
.contact-form input::-webkit-input-placeholder {
  opacity: 1;
  color: #242424;
}
.contact-form textarea:-ms-input-placeholde,
.contact-form input:-ms-input-placeholder {
  opacity: 1;
  color: #242424;
}
.contact-form textarea::-moz-placeholder,
.contact-form input::-moz-placeholder {
  opacity: 1;
  color: #242424;
}
.contact-form textarea:-moz-placeholder,
.contact-form input:-moz-placeholder {
  opacity: 1;
  color: #242424;
}
.content-item:not(:last-child) {
  margin-bottom: 21px;
}
.contact-btn {
  text-align: center;
  margin-top: 43px;
}
.contact-row {
  --bs-gutter-x: 28px;
}
.contact-form {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.cmn-hd {
  text-align: center;
  margin-bottom: 34px;
}
.cmn-hd h2 {
  color: var(--btn-color);
}

/* sh end 16/8/23*/
.big-left {
  margin-bottom: 0;
}
.contact-form form {
  max-width: 1064px;
  margin: 0 auto;
}

/* custrom-accd start  */

.accorduin-hd .accordun-content {
  display: none;
}

.accordun-content {
  display: none;
  padding: 15px 0 18px;
  font-size: 16px;
  color: #242424;
  line-height: 1.7;
}
.fre-outer {
  --bs-gutter-x: 29px;
}
.fre-item:not(:last-child) {
  margin-bottom: 16px;
}
.accorduin-hd {
  min-height: 58px;
  padding: 14px 26px;
  padding-right: 40px;
  border-radius: 10px;
  background: #002868;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #002868;
  position: relative;
  cursor: pointer;
}
.accorduin-hd::after {
  position: absolute;
  content: "";
  background-image: url("images/acc-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px;
  width: 15px;
  height: 13px;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.fre-item.active .accorduin-hd::after {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.fre-item.active .accorduin-hd {
  border: 1px solid #cfe3fd;
  background: #dcbe82;
  color: #002868;
}
/* custrom-accd end  */

/* mc start 17/8/23 */
/* mc end 17/8/23 */
.rcnt-com-uls.big-height-uls {
  max-height: 1264px;
}

/* 22/8 */
.recent-outer {
  width: 100%;
}

.bpb-blk-lfts .ban-post-blkimg.big-post {
  height: 300px;
}
.details-left.bigling-full-width {
  width: 100%;
  padding-right: 0;
}
.refer-big .big-item {
  background: #fff;
  border: 1px solid var(--btn-color);
}
.refer-big .big-item .item-sub-title {
  color: var(--btn-color);
}
.refer-big .big-item {
  color: var(--btn-color);
}

/* 29/8/2023 start */
.recent-post-sec.old-home-page .dt-head {
  color: #000;
}
.recent-post-sec.old-home-page .dt-head span {
  padding-left: 6px;
}
.recent-post-sec.old-home-page .item-sub-title {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--droid-regular);
}
.recent-post-sec.old-home-page .banpost-mdl {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recent-post-sec.old-home-page .banpost-mdl-lft b {
  margin-right: 6px;
}

.old-home-wrp .ban-post-blkimg {
  float: right;
  width: 255px;
  margin-left: 15px;
  margin-bottom: 10px;
  max-height: 300px;
}

.old-styly {
  border-radius: 10px;
  border: 2px solid #002868;
  background: var(--light-sky-clr);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  color: var(--black-clr);
  padding: 10px;
  width: 100%;
}
.old-home-wrp p:not(:last-child) {
  margin-bottom: 15px;
}
.recent-post-sec.old-home-page .recent-post-rit .sub-head {
  padding-right: 133px;
}
.recent-post-sec.old-home-page .recent-post-rit .sub-head::after {
  width: 103px;
  bottom: 21px;
  top: auto;
}
.recent-post-sec.old-home-page .recent-post-rit {
  margin-top: 0;
}
.recent-post-sec.old-home-page .pbgs {
  height: 100%;
}
.recent-post-sec.old-home-page .recent-post-rit .sec-head {
  margin-bottom: 22px;
}
.post-dat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recent-post-sec.old-home-page .rcnt-com-uls a .item-sub-title,
.recent-post-sec.old-home-page .rcnt-com-uls a p {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.recent-post-sec.old-home-page .rcnt-com-uls a:hover p,
.recent-post-sec.old-home-page .rcnt-com-uls a:hover .item-sub-title {
  color: #fff;
}
.pg-wp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}
.pg-wp li:not(:last-child) {
  margin-right: 8px;
}
.pg-wp a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--btn-bg-color);
  color: #fff;
  -webkit-transition: all 0.4 ease-in-out;
  -o-transition: all 0.4 ease-in-out;
  transition: all 0.4 ease-in-out;
}
.pg-wp a:hover {
  background: var(--black-clr);
}
.pg-wp img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* 29/8/2023 end */

/* 29/09/2023 dm */

.banner-post .ban-post-rit .ban-post-blk a {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}

.banner-post .ban-post-rit .ban-post-blk .ban-post-blkimg {
  margin-right: 0;
  min-width: inherit;
  width: 100%;
  max-width: 195px;
  height: 100%;
}

.banner-post .ban-post-rit .ban-post-blk .ban-post-blk-rit {
  padding-left: 28px;
  width: calc(100% - 195px);
}

.banner-post .ban-post-rit .ban-post-blk {
  min-height: 187px;
  height: 100%;
}

.banner-post .ban-col-lft .ban-post-lft,
.banner-post .ban-col-lft .ban-post-blk,
.banner-post .ban-post-lft a {
  height: auto;
}



.post-abt-ul .submenu {
  position: relative;
  padding-right: 20px;
}

.post-abt-ul .submenu::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 5px;
  background: url(images/sort.svg) no-repeat center center;
  background-size: 10px;
  width: 10px;
  height: 10px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(24%) saturate(7486%)
    hue-rotate(207deg) brightness(93%) contrast(104%);
  transition: 0.5s ease-in-out;
}

.post-abt-ul .submenu.active {
  background: #002868 !important;
  color: #fff !important;
}

.post-abt-ul .submenu.active::after,
.post-abt-ul .submenu:hover::after {
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
}

.post-abt-ul .submenu .submenulist {
  position: absolute;
  top: 100%;
  right: 0;
  border: 0;
  background: #fff;
  padding-left: 0;
  width: 300px;
  padding: 10px;
  margin-top: 10px;
  list-style: none;
  display: none;
}

.post-abt-ul .submenu .submenulist.active {
  display: block;
}

.post-abt-ul .submenu .submenulist li {
  margin-right: 0;
  padding: 10px 15px;
  font-size: 15px;
  border: 0;
  border-radius: 0;
}

.post-abt-ul .submenu .submenulist li.active {
  background-color: var(--btn-color) !important;
  color: var(--white-clr);
}

.post-abt-ul li {
  padding: 13px;
  font-size: 16px;
}

.contact-form .gform_wrapper.gravity-theme .gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  grid-column-gap: inherit;
  grid-row-gap: inherit;
  width: auto;
}

.contact-form .cndiv {
  width: 50%;
  padding: 0 12px;
}

.contact-form .field_sublabel_below {
  margin-bottom: 21px;
}

.contact-form .gform_wrapper.gravity-theme .gfield_label {
  display: none;
}

.contact-form .gform_wrapper.gravity-theme input[type="text"],
.contact-form .gform_wrapper.gravity-theme input[type="email"],
.contact-form .gform_wrapper.gravity-theme input[type="tel"] {
  height: 58px;
  padding: 0 26px;
  outline: none !important;
  font-size: 16px;
  color: #242424;
}

.contact-form .gform_wrapper.gravity-theme select {
  background-image: url(images/select-icon.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: right 24px center;
  padding: 0 26px;
  padding-right: 48px;
}

.contact-form .gform_wrapper.gravity-theme .gfield textarea.large {
  border-radius: 10px;
  border: 1px solid var(--btn-color);
  background-color: #fff;
  font-size: 16px;
  height: 138px;
  padding-left: 26px;
  padding-right: 26px;
  vertical-align: middle;
}

.contact-form .gform_footer {
  margin-top: 21px !important;
  padding: 0 !important;
  justify-content: center;
}

.gform_validation_errors {
  max-width: 1064px;
  margin: 0 auto 8px auto;
}

.gform_confirmation_wrapper {
  padding: 20px;
  border: 1px solid #002868;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.gform_confirmation_wrapper .gform_confirmation_message {
  font-size: 20px;
  color: #002868;
  font-family: var(--droid-bold);
  font-weight: 700;
}

/* 29/09/2023 dm */

/* support start 3-10-23 */
div.asl_w {
  background-color: transparent !important;
  background-image: none !important;
}
div.asl_w .probox {
  background-color: transparent !important;
  background-image: none !important;
}
.browse-frm div.asl_w .probox {
  height: 53px !important;
}
.search-wpr-in div.asl_w .probox {
  height: 43px !important;
}
.search-wpr-in form {
  display: block;
}


.search-wpr-in #ajaxsearchlite1 .probox .proinput input,
.search-wpr-in div.asl_w .probox .proinput input {
  color: var(--black-clr) !important;
}
.search-wpr-in div.asl_w .probox .proinput input.orig {
  height: 40px !important;
  border: 1px solid var(--btn-color) !important;
  color: var(--black-clr) !important;
  font-family: var(--poppins-fnt);
  font-size: 14px;
  font-weight: 400;
  padding: 0 !important;
  padding-right: 0 !important;
  margin-right: 0 !important;
  padding-left: 15px !important;
  background: var(--white-clr) !important;
}
.browse-frm div.asl_w .probox .proinput input.orig {
  height: 51px !important;
  border-bottom: 1px solid #ffffff !important;
  color: var(--white-clr) !important;
  font-family: var(--poppins-fnt);
  font-size: 14px;
  font-weight: 400;
  padding: 0 !important;
  padding-right: 10px !important;
  margin-right: 19px !important;
}
.browse-frm div.asl_w .probox .proinput {
  padding-right: 10px;
  margin-right: 19px;
  padding-left: 0;
  margin-left: 0;
}
.search-wpr-in div.asl_w .probox .proinput {
  padding-right: 15px;
  margin-right: 0;
  padding-left: 0;
  margin-left: 0;
  color: var(--black-clr) !important;
}
.browse-frm div.asl_w .probox .promagnifier {
  background: var(--btn-bg-color);
  height: 51px !important;
  font-family: var(--poppins-fnt);
  border-radius: 10px;
  width: 50px;
}
.search-wpr-in div.asl_w .probox .promagnifier {
  background: var(--white-clr);
  height: 40px;
  font-family: var(--poppins-fnt);
  border-radius: 0;
  width: 40px;
  border: 1px solid var(--btn-color);
}

.browse-frm .promagnifier:hover{
  background: var(--white-clr);
}
.browse-frm .promagnifier:hover span svg path{
  fill: var(--btn-color);
}
.browse-frm .promagnifier span svg path {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bpb-blk a,
.bpb-blk-lfts a {
  background: var(--btn-bg-color);
}

/* support end 3-10-23 */

/* support start 4-10-23 */
.search-wpr-in div.asl_w .probox .promagnifier span svg path {
  fill: var(--black-clr);
}
.search-wpr-in div.asl_w .probox .promagnifier:hover {
  background: var(--btn-bg-color);
}

.banner-post .ban-post-rit .ban-post-blk {
  min-height: 187px;
}
.topnews-content{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 34px;
    margin-bottom: 20px;
}
/* .search-wpr-in .proclose{display: none !important;} */
.search-wpr-in form input::-webkit-input-placeholder {
  opacity: 1 !important;
  color: var(--black-clr) !important;
}

.search-wpr-in form input:-ms-input-placeholder {
  opacity: 1 !important;
  color: var(--black-clr) !important;
}

.search-wpr-in form input::-moz-placeholder {
  opacity: 1 !important;
  color: var(--black-clr) !important;
}

.search-wpr-in form input:-moz-placeholder {
  opacity: 1 !important;
  color: var(--black-clr) !important;
}
div.asl_m .probox .proloading,div.asl_m .probox .proclose {
  order: 10 !important;
    -webkit-order: 10 !important;
}
div.asl_w .probox .proinput input.autocomplete{height: auto;}
/* support end 4-10-23 */



/* support 12/10/23 */

.login-outer .form-outer .input-item input[type="text"], 
.login-outer .form-outer .input-item input[type="email"], 
.login-outer .form-outer .input-item input[type="password"]{
  background-color: #cfe3fd54;
  font-size: 16px;
}

.twitter-tweet.twitter-tweet-rendered{
  width: 50% !important;
  margin-right: 15px;
  float: left !important;
}

.details-left-outer figure{
  float: left !important;
  max-width: 50%;
  margin-right: 15px;
}

.details-left-outer figure:nth-child(2n){
  float: right !important;
  max-width: 50%;
  margin-left: 15px;
}

.swp_social_panel.swp_horizontal_panel:not(.swp_social_panelSide) .nc_tweetContainer{
  flex: inherit;
}

.swp_social_panel.swp_horizontal_panel{
  justify-content: flex-start;
  margin-top: 35px;
}

/* .swp_social_panel.swp_horizontal_panel  */


.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button:hover{
  flex: inherit !important;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button{
  background: transparent !important;
  border: none !important;
}

.swp_social_panel.swp_default_full_color .swp_share_button a{
  color: #002868 !important;
}

.swp_social_panel.swp_default_full_color .swp_share_button a:hover{
  color: #dcbe82 !important;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button:hover .iconFiller{
  width: inherit !important;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button .iconFiller .swp_share{
  font-size: 0 !important;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button .iconFiller i{
  font-size: 29px;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button:hover .iconFiller {
  width: auto !important;
  max-width: 30px;
}

.comments-area .comments-title{
  font-size: 21px;
}

.comments-area ol{
  padding-left: 0;
  list-style: none;
}

.comments-area ol li{
  margin-top: 25px;
}

.comments-area ol li.wp-unread-comment{
  background-color: transparent !important;
  position: relative;
}

.comments-area ol li.wp-unread-comment:before{
  position: absolute;
  right: 0;
  top: 0;
  background-color: #b1e5dc;
  height: 35px;
  width: 45px;
  font-size: 12px;
  color: var(--btn-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.comments-area ol li article.comment-body{
  padding: 20px 20px;
  background-color: #eef5ff;
  border-radius: 5px;
  padding-right: 45px;
}

.comments-area .comment-author img{
  height: 50px;
  width: 50px;
  border-radius: 100%;
  margin-right: 25px;
}

.comments-area .comment-author {
  margin-bottom: 15px;
}

.comments-area .fn{
  font-size: 25px;
  font-weight: 500;
}

.comments-area ol li article.comment-body .says {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
    background-color: #002a66;
    color: #fffdf8;
    margin-left: 10px;
}

.comments-area ol li article.comment-body a{
  color: var(--btn-color);
}

.comments-area ol li article.comment-body a:hover{
  color: var(--btn-bg-color);
}

.comments-area ol li article.comment-body .comment-metadata a{
  font-weight: 500;
}

.comments-area ol li article.comment-body .comment-metadata .comment-edit-link{
  height: 20px;
  width: 20px;
  background-image: url(images/edit-img.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 17px;
  font-size: 0;
  display: block;
  margin-left: 10px;
}

.comments-area ol li article.comment-body .comment-metadata{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.comments-area ol li article.comment-body .comment-content p:not(:last-child){
  margin-bottom: 7px;
}

.comments-area ol li article.comment-body .comment-content{
  margin-bottom: 10px;
}

.comments-area ol li article.comment-body .reply{
  font-weight: 700;
}

/*.comments-area ol li article.comment-body .edit-comment-admin-links-no-icon {
  display: none;
} */

.comment-respond{
  margin-top: 25px;
}

.comment-respond .AtD_proofread_button{
  display: none;
}

.comment-respond .aec_expand.cboxElement{
  display: none;
}

.comment-respond label{
  margin-bottom: 10px;
}

.comment-respond #aec_edit_options{
  display: none;
}

.twitter-tweet.twitter-tweet-rendered iframe{
  -webkit-text-stroke-width: 100% !important;
}

.details-sec.bigline-pg .details-left .ban-post-blk.bpb-blk-lfts .ban-post-blkimg img{
  width: 100%;
  min-height: 241px;
  max-height: 300px;
  object-fit: contain;
  object-position: top center;
}

page-id-43167 .details-sec.bigline-pg .details-left .ban-post-blk.bpb-blk-lfts .ban-post-blkimg img{
	object-fit:contain;
}

.post-abt-ul li.pactive{
  background-color: var(--btn-color) !important;
  color: var(--white-clr);
}

.post-about .post-abt-div .rowspan{
  --bs-gutter-x: 0;
  margin: -12px -12px;
}

.post-about .post-abt-div .rowgap{
  padding: 12px 12px;
}

.vw-divs .loding-outer{
  margin-top: 0;
  margin-bottom: 15px;
}

.vw-divs .loding-outer img{
  min-width: 55px;
}

.pge-account-lft ul{
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.pge-account-lft li a{
  display: block;
  width: 100%;
  padding: 10px 21px;
  font-size: 18px;
  font-weight: 600;
  color: var(--btn-color);
  background-color: var(--btn-bg-color);
  border-radius: 5px;
}

.pge-account-lft li:not(:last-child) a{
  margin-bottom: 10px;
}

.pge-account-lft li.active a{
  color: var(--btn-bg-color);
  background-color: var(--btn-color);
}

.pge-account-cont{
  padding-left: 45px;
}

.pge-account-heading{
  margin-bottom: 35px;
  text-align: center;
}

.pge-account .container-fluid{
  max-width: 1600px;
  padding: 0 65px;
}

.pge-account-lft{
  width: 355px;
}

.pge-account-rgt{
  width: calc(100% - 355px);
}


.pge-account-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.prsn-cls{
  position: relative;
}

.prsn-cls::before{
  content: "";
  position: absolute;
  top: 15px;
  right: 18px;
  background: url(images/sort.svg);
  background-size: 10px;
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
  transition: 0.5s ease-in-out;
}

.myacnt-drop{
  background: var(--top-hdr-bg);
  z-index: 1000;
  list-style: none;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 100%;
  transition: all 0.3s ease-in-out;
}

.hdr-rit-ul .cmn-li.prsn-cls .myacnt-drop li a{
  color: var(--btn-color);
    display: block;
    width: 100%;
    padding: 6px 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
}

.hdr-rit-ul .cmn-li.prsn-cls .myacnt-drop li a:hover{
  background: var(--btn-bg-color);
  color: #fff;
}

.myacnt-drop li:not(:last-child){
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.hdr-rit-ul .cmn-li.prsn-cls:hover .myacnt-drop{
  display: block;
  opacity: 1;
}

.hdr-rit-ul .cmn-li.prsn-cls{
  padding-top: 10px;
  padding-bottom: 10px;
}

.hdr-rit-ul .cmn-li.prsn-cls > a{
  padding-right: 17px;
}




/* end support 12/10/23 */

/* 31.10.23 start */

.input-item .error {
  font-size: 12px;
  display: inline-block;
  margin-top: 5px;
  color: #e40000;
}
.form-outer form .row {
  margin-top: -22px;
}
.input-item input[type="file"] {
  border-radius: 10px;
  border: 1px solid #cfe3fd;
  font-size: 16px;
  color: #242424;
  padding-right: 26px;
  appearance: none;
  background-color: #cfe3fd54;
}
.myaccountsection.form-outer .input-item {
  margin: 0;
}
.myaccountsection.form-outer form .row {
  margin-top: 0;
}
.myaccountsection form button[type="submit"] {
  border-radius: 10px;
  background: var(--btn-color);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  height: 51px;
  border: 1px solid var(--btn-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 30px;
  padding-right: 30px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.myaccountsection form button[type="submit"]:hover {
  background: transparent;
  color: var(--btn-color);
}
.myaccountsection .imgsec {
  max-width: 160px;
  width: 100%;
}
.myaccountsection .imgsec img {
  width: 100%;
}
.myaccountsection.listing-warp {
  background: var(--light-sky-clr);
  border-radius: 10px;
  border: 2px solid var(--btn-color);
  overflow: hidden;
}
.myaccountsection.listing-warp table thead th {
  background-color: var(--btn-color);
  color: var(--btn-bg-color);
}
.myaccountsection.listing-warp table tbody tr:nth-child(odd) td {
  background-color: rgba(220, 190, 130, 0.2);
}
.input-item textarea {
  border-radius: 10px;
  border: 1px solid #cfe3fd;
  background-color: #cfe3fd54;
  height: 120px;
  font-size: 16px;
  color: #242424;
  padding: 20px 26px;
  resize: none;
}
.errormessage p {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #c85252;
  color: #f54141;
  background: rgba(255, 0, 0, 0.1);
}

/* 31.10.23 end */


#force-load {
  height: 140px;
  text-align: center;
}
#force-load img {
  height: 63px;
  quotes: auto;
  margin-top: 37px;
}
#force-load.avail.removeHeight{
  height: auto;
}

/* 01.11.23 start */

.myaccountsection.listing-warp .dataTables_length {
  max-width: 200px;
  width: 100%;
  padding: 10px 15px;
}
.myaccountsection.listing-warp .dataTables_length label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--btn-color);
}
.myaccountsection.listing-warp .dataTables_length select {
  border: 1px solid var(--btn-color);
  height: auto;
  text-align: center;
  width: auto;
  margin: 0 10px;
}
.myaccountsection.listing-warp .dataTables_filter {
  max-width: 280px;
  width: 100%;
  padding: 10px 15px;
}
.myaccountsection.listing-warp .dataTables_filter label {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--btn-color);
}
.myaccountsection.listing-warp .dataTables_filter input[type="search"] {
  flex: 1;
  border: 1px solid var(--btn-color);
}
.myaccountsection.listing-warp .dataTables_filter input[type="search"]:focus {
  outline: none;
  box-shadow: none;
}
.myaccountsection.listing-warp .dataTables_info {
  padding-left: 15px;
}
.myaccountsection.listing-warp .dataTables_paginate {
  padding: 10px 15px;
}
.myaccountsection.listing-warp .paginate_button.current {
  width: 38px;
  height: 38px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-color);
  color: var(--btn-bg-color) !important;
  border-color: var(--btn-color);
  font-weight: bold;
}
.myaccountsection.listing-warp .paginate_button.current:hover {
  background-color: var(--btn-bg-color);
  border-color: var(--btn-bg-color);
  color: var(--btn-color) !important;
}
.hdr-bx-rit-blk p {
  margin-bottom: 0;
}
.hdr-bx-rit-blk p:not(:last-child) {
  margin-bottom: 16px;
}
.details-left .col-md-3>a {
  display: block;
  height: 100%;
}
.details-left .card {
  border: 2px solid #002868;
  background-color: var(--btn-bg-color);
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
  padding: 10px;
  height: 100%;
  transition: .5s all;
}
.details-left .card-body {
  padding: 0;
}
.details-left .card-body img {
  width: 100%;
  margin-bottom: 10px;
}
.userdtls-wrap {
  text-align: center;
}
.details-left  .card-title {
  transition: .5s all;
}
.details-left .card:hover {
  background-color: #002868;
}
.details-left .card:hover .card-title {
  color: var(--btn-bg-color) !important;
}
.details-left .page-numbers {
  padding: 25px 0 0 0;
  margin: 0;
  display: flex;
  list-style: none;
}
.details-left .page-numbers li:not(:last-child) {
  margin-right: 10px;
}

.details-left .page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--btn-color);
  border-radius: 50%;
  font-weight: 600;
  padding: 0;
}
.details-left .page-numbers .page-numbers:hover,
.details-left .page-numbers .page-numbers.current {
  background-color: var(--btn-color);
  color: var(--btn-bg-color);
}
/* 01.11.23 end */


/* support 3/11/23 */

.details-sec.senate-dtls .details-left-outer figure img{
  width: 100%;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button{
  flex: 0 !important;
}

.swp_social_panel.swp_horizontal_panel .nc_tweetContainer.swp_share_button .swp_share_link .spaceManWilly{
  display: flex;
  width: auto;
}

.swp_social_panel.swp_horizontal_panel .iconFiller{
  width: 30px !important;
}


/* hd-bx-css */
.hdr-bx{
  padding-right: 39px;
  min-height: 94px;
}

.hdr-bx-rit{
  width: 45%;
}

.hdr-bx-lft{
  width: 55%;
}

.hdr-bx-rit-blk p{
  line-height: 1;
}

.hdr-bx-rit-blk p:not(:last-child) {
  margin-bottom: 6px;
}

.hdr-bx-lft-con span{
  margin-bottom: 6px;
}

.hdr-bx-rit-blk p span{
  font-size: 12px !important;
}

/* end hd-bx-css */

.comments-area .comment-list .comment-author {
  padding-left: 75px;
  position: relative;
  padding-bottom: 15px;
}

.comments-area .comment-list .comment-author img{
  position: absolute;
  left: 0;
  top: 0;
}

/* end support 3/11/23 */

.ban-post-rit {
    display: flex;
    flex-direction: column;
   /* height: 100%;*/
}

/*13/11/2023 webdev*/

.comments-area ol > li > ol{
	padding-left: 30px;
}

.comment-content .edit-comment{ margin-bottom:10px; }

.edit-comment-admin-links-no-icon a{
	display:inline-block;
	position:relative;
	padding-left:20px;
	padding-top:0;
}

.edit-comment-admin-links-no-icon a span{
	display:inline-block;
	margin:0 !important;
}

.edit-comment-admin-links-no-icon .aec-icons{
	position:absolute;
	top:0;
	left:0;
	width:16px;
	height:16x;
	line-height:0;
}

.edit-comment-admin-links-no-icon .aec_anon_text{ 
 font-weight:700;
}
blockquote {
    background: #dfbd8629;
    padding: 10px;
}

.home-feat .topnews-content{
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
}

figcaption {
  background: #d4e1f5;
  padding: 5px;
  text-align: center;
  font-size: 12px;
}

/*13/11/2023 webdev*/

/* 21.11.23 css */
.page-template-diaries .hdng-itm .bpb-blk-lfts strong a,
.page-template-diaries .hdng-itm .bpb-blk-lfts p a{
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  background: transparent;
  color: #000000;
  border: 0;
}
.page-template-diaries .hdng-itm .bpb-blk-lfts a p{
	padding:0 15px 15px 15px;
}
.page-template-diaries .hdng-itm .bpb-blk-lfts a p span iframe {
	width: 40%;
	height:100%;
}
.page-template-diaries .hdng-itm .bpb-blk-lfts>a {
	margin-bottom: 20px;
}
.cke_editor_comment,
.comment-form-comment,
.comment-form-comment iframe{
	position: relative;
	z-index: 99;
}
/* 21.11.23 css */

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  /* .navbar-nav .clickD {
    display: none;
  } */

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (max-width: 1399px) {
  .scroll-down {
    right: 2%;
  }
  /* mc start 17/8/23 */
  /* mc end 17/8/23 */
  
}
@media (max-width: 1280px) {
  .scroll-down {
    right: 0;
  }
  /* mc start 17/8/23 */
  /* mc end 17/8/23 */
}
@media (max-width: 1199px) {
  /* mc start 17/8/23 */
  .navbar-brand {
    width: 330px;
  }
  .hdr-slider-divss {
    width: calc(100% - 345px);
  }
  .navbar-nav > li {
    padding: 5px 0;
  }
  .bottom-hdr {
    padding: 6px 0;
  }
  .hdr-bx {
    padding: 6px;
    flex-wrap: wrap;
  }
  .ban-col-lft {
    width: 40%;
  }
  .ban-col-rit {
    width: 60%;
  }
  .banner-post .rowspan {
    --bs-gutter-x: 22px;
  }
  .bpb-blk .ban-post-blkimg {
    margin-right: 15px;
    width: 180px;
    min-width: 180px;
  }
  .bpb-blk a {
    padding: 8px;
  }
  .bpb-blk {
    margin-bottom: 8px;
  }
  .banner-post-areas {
    padding-bottom: 41px;
    margin-bottom: 41px;
  }
  .recent-bpb-blk a .ban-post-blkimg {
    margin-left: 20px;
    width: 220px;
    min-width: 220px;
  }
  .sec-head .sub-head {
    padding-right: 160px;
  }
  .sec-head .sub-head::after {
    width: 120px;
    top: 14px;
  }
  .browse-frm {
    margin: 0 auto 40px;
  }
  .cmn-gap {
    padding: 45px 0;
  }
  .browse-blk h2 {
    margin-bottom: 20px;
  }
  .browsw-bx {
    padding: 20px 15px;
  }
  .post-abt-ul li {
    padding: 15px;
    margin-right: 8px;
    font-size: 15px;
  }
  .bpb-blk-lfts .ban-post-blk-rit {
    padding: 20px 15px;
  }
  .post-abt-div .rowspan {
    --bs-gutter-x: 20px;
  }
  .post-abt-tab-top {
    margin-bottom: 25px;
  }
  .easyresponsive-block {
    padding-bottom: 45px;
  }
  .hdng-itm .bpb-blk-lfts .ban-post-blk-rit {
    padding: 20px 15px;
  }
  .comments-item {
    padding: 0 10px;
  }
  .comments-slider .slick-list {
    margin: 0 -10px;
  }
  .ban-post-blk-rit .item-sub-title {
    font-size: 15px;
  }
  .newslettr-sec {
    padding: 45px 0;
  }
  .newslettr-sec .browse-blk h2 {
    margin-bottom: 20px;
  }
  .browse-blk p {
    margin-bottom: 30px;
  }
  .footer-logo {
    max-width: 300px;
    margin: 0 auto 25px;
  }
  .ft-menu li:not(:last-child) {
    margin-right: 35px;
  }
  .ft-menu {
    margin-bottom: 25px;
  }
  .footer-down {
    padding: 12px 0;
  }
  .sechd3 .sub-head {
    padding-right: 133px;
    font-size: 25px;
  }
  .sechd3 .sub-head::after {
    width: 100px;
    bottom: 14px;
    top: auto;
  }
  .dtls-sec-hd.sec-head .sub-head {
    padding-right: 160px;
  }
  .subjct-senate-rows .details-left {
    width: 70%;
    padding-right: 22px;
  }
  .subjct-senate-rows .details-right {
    width: 30%;
  }
  .subjct-senate-rows .rowspan-sub {
    --bs-gutter-x: 22px;
    --bs-gutter-y: 22px;
  }
  .dtls-sec-hd {
    margin-bottom: 26px;
  }
  .recent-post-rit .sec-head .sub-head::after {
    top: 14px;
  }
  .login-outer .main-heading::after {
    top: 14px;
  }
  .details-sec .local-pols2 .sub-head::after {
    top: 14px;
  }
  h1,
  .main-heading {
    font-size: 35px;
  }
  h2,
  .sub-head {
    font-size: 30px;
  }
  .custom-btnSlider {
    min-height: 80px;
  }
  .details-sec {
    padding: 40px 0 40px;
  }
  .rcnt-com-uls {
    max-height: 507px;
  }
  /* sh/17 start */
  .form-outer input[type="text"],
  .form-outer input[type="email"],
  .form-outer input[type="password"] {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .form-outer input[type="submit"] {
    height: 50px;
  }
  .details-left-outer .main-heading {
    margin-bottom: 29px;
  }
  .colorad-sel {
    margin-bottom: 28px;
  }

  .big-left {
    width: 220px;
  }
  .big-right {
    width: calc(100% - 220px);
    padding-left: 18px;
  }
  /* sh/17 end */
  /* mc end 17/8/23 */

  .details-left.bigling-full-width {
    width: 100%;
    padding-right: 0;
  }

  /* 29/09/2023 dm */

  .post-abt-ul li {
    padding: 10px;
    font-size: 13px;
  }

  .post-abt-ul .submenu::after {
    top: 10px;
  }

  /* 29/09/2023 dm */


  .pge-account-lft{
    width: 295px;
  }
  
  .pge-account-rgt{
    width: calc(100% - 295px);
  }

}

@media (max-width: 1024px) {
  /* navbar*/
  /* .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  } */

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  /* .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  } */
  .navbar-nav > li.menu-item-has-children {
    padding-right: 4px;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/

  /* mc start 17/8/23 */
  /* mc end 17/8/23 */
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--black-clr);
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px !important;
    -webkit-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    transform: rotate(0) !important;
    filter: brightness(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px !important;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    color: var(--black-clr);
  }

  .sub-menu > li > a {
    padding-left: 30px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: var(--top-hdr-bg);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    left: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden !important;
  }

  /* mc start 17/8/23 */
  .navbar-brand {
    width: 240px;
  }
  .hdr-slider-divss {
    width: calc(100% - 260px);
  }
  .hdr-bx-lft i {
    width: 60px;
    min-width: 60px;
    margin-right: 13px;
    height: auto;
  }
  .hdr-bx-lft-con {
    width: calc(100% - 60px);
  }
  .hdr-bx-lft-con span span {
    font-size: 13px;
  }
  .hdr-bx-rit-blk span {
    font-size: 13px !important;
  }
  .hdr-nm-txt {
    min-width: 70px;
    padding-right: 15px;
  }
  .hdr-bx-lft-con span {
    font-size: 13px;
  }
  .hdr-bx-rit {
    width: 48%;
    padding-left: 15px;
  }
  .hdr-bx-lft {
    width: 52%;
    padding-right: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hdr-bx-rit-blk p:not(:last-child) {
    margin-bottom: 10px;
}
  .custom-btnSlider {
    min-width: 30px;
    width: 30px;
    min-height: 71px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
  }
  .navbar-toggler {
    margin-left: 0;
  }
  .custom-btnSlider .slick-arrow {
    margin-bottom: 8px;
  }
  .stick:not(.open),
  .stick:not(.open):after,
  .stick:not(.open):before {
    background: var(--white-clr);
  }
  .banner-post-areas .ban-col-lft {
    width: 100%;
    margin-bottom: 20px;
  }
  .banner-post-areas .ban-col-rit {
    width: 100%;
  }
  .banner-post-areas .ban-post-rit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: -10px;
    flex-direction: inherit;
    height: inherit;
  }
  .ban-post-blk-rit .item-sub-title {
    font-size: 16px;
  }
  .banner-post-areas .ban-post-blk.bpb-blk {
    width: 50%;
    padding: 10px;
    margin-bottom: 0;
  }
  .banner-post-areas .banpost-mdl-lft {
    margin-right: 16px;
  }
  .banner-post-areas .bpb-blk a {
    display: block;
  }
  .banner-post-areas .bpb-blk .ban-post-blkimg {
    margin-right: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
    margin-bottom: 12px;
  }
  .browse-blk .rowspan {
    --bs-gutter-y: 20px;
  }
  .post-abt-div .rowspan {
    --bs-gutter-y: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .post-abt-ul {
    padding-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .post-abt-tab-top {
    display: block;
  }
  .post-abt-tab-top h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  .vw-divs {
    margin-top: 30px;
  }
  .recent-comments .rowspan {
    --bs-gutter-y: 30px;
  }
  .fot-down-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ft-down-menu {
    margin-bottom: 10px;
  }
  .footer-sec {
    padding: 35px 0 0;
  }
  .footer-top {
    padding-bottom: 35px;
  }
  .sechd3 .sub-head::after {
    bottom: 12px;
  }
  .recent-post-rit .sec-head .sub-head::after {
    top: 15px;
  }
  .hdr-bx-lft-con span {
    margin-bottom: 8px;
  }
  .hdr-bx-lft-con span span {
    margin-bottom: 8px;
  }
  .subjct-senate-rows .details-left {
    width: 100%;
    padding-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 40px;
  }
  .subjct-senate-rows .details-right {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .local-pols2 {
    text-align: center;
  }
  .local-pols2 .sub-head {
    padding-right: 0;
    padding-bottom: 15px;
  }
  .details-sec .local-pols2 .sub-head::after {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .local-pols2 .local-btn-grps {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .rcnt-com-uls {
    max-height: 317px;
  }
  .subjct-senate-rows .details-right {
    margin-bottom: 0;
  }
  h1,
  .main-heading {
    font-size: 30px;
  }
  .bglinebtm {
    margin-top: 30px;
  }
  .recent-post-rit {
    margin-top: 35px;
  }
  .recent-post-sec .local-pols {
    margin-bottom: 32px;
  }
  .ft-menu {
    margin-bottom: 20px;
  }
  .footer-logo {
    margin: 0 auto 20px;
  }

  /* sh/17 start */
  .details-left {
    width: 100%;
    padding-right: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .details-right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 50px;
  }
  .comments-outer .main-heading {
    margin-bottom: 30px;
  }
  .senate-dtls .details-left-outer {
    margin-bottom: 45px;
  }

  .fre-outer {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 16px;
  }
  .accordun-content {
    padding: 9px 0 5px;
  }
  .cmn-hd {
    margin-bottom: 30px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="password"],
  .contact-form input[type="email"],
  .contact-form select {
    height: 50px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .contact-form textarea {
    height: 117px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .content-item:not(:last-child) {
    margin-bottom: 18px;
  }
  .contact-btn {
    margin-top: 33px;
  }
  .big-top {
    margin-bottom: 34px;
  }

  .login-outer .main-heading {
    text-align: center;
    padding-right: 0;
    padding-bottom: 15px;
    display: block;
  }
  .login-outer .main-heading::after {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .register-outer {
    text-align: center;
  }
  .input-item input[type="submit"] {
    width: 100%;
  }
  /* sh/17 end */

  /* mc end 17/8/23 */

  /* push nav end */

  /* 29/8 start */
  .recent-post-sec.old-home-page .recent-post-rit .sub-head::after {
    bottom: 12px;
  }
  .old-home-row {
    --bs-gutter-y: 30px;
  }
  .recent-post-sec.old-home-page .sub-head br {
    display: none;
  }
  /* 29/8 end*/

  /* 29/09/2023 dm */

  .banner-post .ban-post-rit .ban-post-blk {
    height: auto;
  }

  .banner-post .ban-post-rit .ban-post-blk .ban-post-blk-rit {
    width: 100%;
    padding-left: 0;
  }

  .banner-post .ban-post-rit .ban-post-blk .ban-post-blkimg {
    width: 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .banner-post .ban-post-rit .ban-post-blk .ban-post-blkimg {
    height: 215px;
  }

  .contact-form .gform_wrapper.gravity-theme input[type="text"],
  .contact-form .gform_wrapper.gravity-theme input[type="email"],
  .contact-form .gform_wrapper.gravity-theme input[type="tel"] {
    height: 50px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-form .gform_wrapper.gravity-theme select {
    height: 50px;
    padding-left: 22px;
    padding-right: 48px;
  }

  .contact-form .gform_wrapper.gravity-theme .gfield textarea.large {
    height: 117px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .gform_wrapper.gravity-theme .gfield.gfield--width-full {
    margin-bottom: 18px;
  }

  .contact-form .gform_footer {
    margin-top: 15px !important;
  }

  /* 29/09/2023 dm */

  .pge-account-lft{
    width: 225px;
  }
  
  .pge-account-rgt{
    width: calc(100% - 225px);
  }

  .pge-account-cont {
    padding-left: 35px;
  }

  .pge-account .container-fluid {
    padding: 0 35px;
  }

  /* 31.10.23 start */

  .myaccountsection.listing-warp table {
    width: 700px;
  }
  .myaccountsection.listing-warp {
    overflow-x: auto;
  }
  .myaccountsection .imgsec {
    max-width: 120px;
}

  /* 31.10.23 end */


  /* 01.11.23 start */

  .myaccountsection.listing-warp .dataTables_length,
  .myaccountsection.listing-warp .dataTables_filter {
    padding: 10px;
  }
  .myaccountsection.listing-warp .dataTables_filter label,
  .myaccountsection.listing-warp .dataTables_length label {
    font-size: 14px;
  }
  .myaccountsection.listing-warp .dataTables_filter {
    max-width: 230px;
  }

  /* 01.11.23 end */

  /* support 3/11/23 */
/* hd-bx-css */
.hdr-bx::after{
  left: 49%;
}

.hdr-bx-rit-blk p:not(:last-child) {
  margin-bottom: 6px;
}

.hdr-bx-rit {
  width: 51%;
  padding-left: 10px;
}

.hdr-bx-lft {
  width: 49%;
  padding-right: 10px;
}

/* end hd-bx-css */
/* end support 3/11/23 */

}

@media (max-width: 767px) {
	.newslettr-sec .browse-frm .mc4wp-form-fields{
		flex-wrap: wrap;
	}
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  /* mc start 17/8/23 */
  /* .hdr-bx-rit {
    display: none;
  } */
  .hdr-slider-divss {
    margin-top: 10px;
  }
  .top-hdr-main-areas {
    flex-direction: column;
  }
  .hdr-slider-divss {
    width: 100%;
  }
  .hdr-bx-rit {
    padding-left: 71px;
  }
  /* .hdr-bx::after {
    display: none;
  } */
  /* .hdr-bx {
    display: block;
  } */
  /* .hdr-bx-lft {
    padding-right: 0;
  } */
  .hdr-bx {
    padding: 10px;
  }
  .hdr-bx-lft-con a {
    font-size: 13px;
  }
  .banner-post-areas .ban-post-blk.bpb-blk {
    width: 100%;
  }
  .recent-bpb-blk a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .recent-bpb-blk a .ban-post-blkimg {
    margin-left: 0;
    width: 100%;
    min-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .comments-slider {
    padding-bottom: 35px;
  }
  .newslettr-sec .browse-input {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .browse-input {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .browse-frm input[type="text"],
  .browse-frm input[type="email"] {
    width: 100%;
    margin-right: 0;
  }
  .browse-frm input[type="submit"] {
    min-width: auto;
    width: 100%;
    margin-top: 15px;
  }
  .browse-blk p {
    margin-bottom: 8px;
  }
  .browse-blk h2 {
    margin-bottom: 10px;
  }
  .newslettr-sec .browse-frm input[type="text"],
  .newslettr-sec .browse-frm input[type="email"] {
    margin-right: 0;
  }
  .ft-down-menu li:not(:last-child) {
    margin-right: 20px;
  }
  .ft-menu a {
    font-size: 14px;
  }
  h2,
  .sub-head {
    font-size: 26px;
  }
  .post-abt-con h2.resp-accordion {
    display: block;
    background: transparent !important;
    border-radius: 5px;
    border: 1px solid var(--btn-color) !important;
    padding: 17px;
    margin-right: 12px;
    color: var(--btn-color);
    font-family: var(--droid-regular);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
  }
  .post-abt-con h2.resp-accordion.resp-tab-active {
    background-color: var(--btn-color) !important;
    color: var(--white-clr);
  }
  .post-abt-ul {
    display: none;
  }
  .post-abt-div {
    padding-bottom: 30px;
  }
  .post-abt-con h2.resp-accordion:last-child {
    margin-bottom: 0;
  }
  .resp-arrow {
    background: url(images/barws.svg) no-repeat;
    background-size: 15px;
    background-position: center;
    position: absolute;
    right: 17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
  .post-abt-con h2.resp-accordion.resp-tab-active .resp-arrow {
    background: url(images/tarws.svg) no-repeat;
    background-size: 15px;
    background-position: center;
  }
  .custom-btnSlider {
    min-height: 78px;
  }
  h1,
  .main-heading {
    font-size: 28px;
  }
  .contact-btn input[type="submit"] {
    width: 100%;
  }
  /* sh/17 start */
  .seoenser-left-col {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 20px;
  }
  .seoenser-right-col {
    width: 100%;
  }
  .details-left-outer .main-heading {
    margin-bottom: 20px;
  }
  .colorad-sel {
    margin-bottom: 20px;
  }
  .seoenser-outer {
    margin-top: 23px;
  }
  .seoenser-right-col p br {
    display: none;
  }
  .welcom-img {
    text-align: center;
  }
  .subscribe-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .senate-dtls .details-left-outer {
    margin-bottom: 40px;
    padding: 24px 15px 30px;
  }
  .comments-outer {
    margin: 40px 0 0;
  }
  .comments-outer .main-heading {
    margin-bottom: 25px;
    font-size: 25px;
  }
  .details-sec {
    padding: 40px 0 50px;
  }
  .login-outer {
    padding: 25px 15px;
  }
  .form-outer input[type="submit"] {
    font-size: 15px;
  }
  .form-outer input[type="text"],
  .form-outer input[type="email"],
  .form-outer input[type="password"] {
    font-size: 15px;
  }
  .register-outer {
    margin-top: 24px;
  }
  .register-outer p:not(:last-child) {
    margin-bottom: 6px;
  }
  .contact-row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 14px;
  }
  .content-item:not(:last-child) {
    margin-bottom: 14px;
  }
  .big-item {
    padding: 24px;
  }
  .big-left {
    width: 140px;
  }
  .big-right {
    width: calc(100% - 140px);
    /* padding-left: 0; */
  }
  .big-item .big-right .item-sub-title {
    margin-bottom: 12px;
  }
  .big-item p:not(:last-child) {
    margin-bottom: 9px;
  }
  .big-item .item-sub-title {
    margin-bottom: 13px;
  }
  .details-right {
    margin-bottom: 35px;
  }

  /* sh/17 end */
  /* mc end 17/8/23 */
  .bpb-blk-lfts .ban-post-blkimg.big-post {
    height: inherit;
  }
  .top-hdr {
    background: var(--top-hdr-bg);
    padding: 10px 0;
  }

  /* 29/8 start */
  .old-home-wrp .ban-post-blkimg {
    width: 215px;
  }
  .ft-menu li:not(:last-child) {
    margin-right: 18px;
  }
  /* 29/8 end */

  /* 29/09/2023 dm */

  .banner-post .ban-post-rit .ban-post-blk .ban-post-blkimg {
    height: auto;
  }

  .contact-form .cndiv,
  .contact-form .cndiv {
    width: 100%;
  }

  .gform_wrapper.gravity-theme .gfield.gfield--width-full {
    margin-bottom: 14px;
  }

  .contact-form .gform_wrapper.gravity-theme .gform_footer input {
    width: 100% !important;
  }

  .post-abt-ul {
    display: flex !important;
    flex-wrap: wrap;
  }

  .post-abt-ul li {
    width: 47%;
    margin-bottom: 10px;
  }

  .post-abt-ul .submenu .submenulist li {
    width: 100%;
  }

  .post-abt-ul .submenu .submenulist {
    width: 100%;
  }

  .gform_confirmation_wrapper {
    padding: 15px;
  }

  .gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 16px;
  }

  /* 29/09/2023 dm */

  .details-sec.bigline-pg .details-left .ban-post-blk.bpb-blk-lfts .ban-post-blkimg img{
    max-height: inherit;
    min-height: auto;
  }

  .pge-account-lft{
    width: 100%;
    margin-bottom: 25px;
  }
  
  .pge-account-rgt{
    width: 100%;
  }

  .pge-account-cont {
    padding-left: 0;
  }

  /* 01.11.23 start */

  .myaccountsection.listing-warp .dataTables_filter {
    max-width: 250px;
  }
  .myaccountsection.listing-warp .dataTables_info {
    padding-left: 0;
  }
  .myaccountsection.listing-warp .dataTables_paginate {
    padding-top: 0;
    margin-top: 15px;
  }
  .myaccountsection.listing-warp > .dataTables_wrapper {
    width: 700px;
  }
  .details-left .page-numbers {
    justify-content: center;
  }

  /* 01.11.23 end */
}


@media (max-width: 640px) {
  /* 01.11.23 start */

  .myaccountsection.listing-warp .dataTables_length,
  .myaccountsection.listing-warp .dataTables_filter {
    max-width: 100%;
  }
  .myaccountsection.listing-warp .dataTables_length {
    padding-top: 0;
    margin-top: 15px;
  }
  .myaccountsection.listing-warp .dataTables_length {
    padding-bottom: 0;
  }
  .myaccountsection.listing-warp .dataTables_length label {
    justify-content: center;
  }

  /* 01.11.23 end */

/* support 3/11/23 */
/* hd-bx-css */

.hdr-bx {
  padding-right: 29px;
}

.hdr-bx::after {
  left: 47%;
}

.hdr-bx .hdr-bx-rit{
  padding-left: 10px;
}

  /* end hd-bx-css */
/* end support 3/11/23 */
}

@media (max-width: 575px) {
  /* mc start 17/8/23 */
  .hdr-bx-lft i {
    width: 40px;
    min-width: 40px;
    margin-right: 10px;
  }

  .navbar-brand {
    width: 75%;
  }
  /* .hdr-slider-divss {
    width: calc(100% - 200px);
  } */
  .scroll-down {
    display: none;
  }
  .ft-down-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ft-down-menu li {
    padding: 2px 0;
  }
  .ft-menu li:not(:last-child) {
    margin-right: 15px;
  }
  .sec-head .sub-head {
    padding-right: 60px;
  }
  h2,
  .sub-head {
    font-size: 23px;
  }
  .sec-head .sub-head::after {
    width: 32px;
    top: 12px;
  }
  .recent-post-rit .sec-head .sub-head::after {
    top: 12px;
  }
  .browse-uls {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  .dtls-sec-hd.sec-head .sub-head {
    padding-right: 60px;
  }
  .comments-outer .sec-head .main-heading {
    padding-right: 60px;
  }
  .comments-outer .sec-head .main-heading::after {
    width: 32px;
  }
  h5,
  .item-sub-title {
    font-size: 16px;
  }
  .hdr-bx-lft {
    width: 45%;
  }
  .hdr-bx-rit {
    width: 55%;
    padding-left: 37px;
  }
  .hdr-bx-rit-blk {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .rcnt-com-uls {
    max-height: 310px;
  }
  /* mc end 17/8/23 */
  /* sh/17 start */
  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="password"],
  .contact-form input[type="email"],
  .contact-form select {
    font-size: 15px;
  }
  .accordun-content {
    font-size: 15px;
  }
  .accorduin-hd {
    min-height: 50px;
    padding: 12px 20px;
    padding-right: 40px;
    font-size: 15px;
  }
  .big-left {
    width: 140px;
    margin: 0 auto 20px;
  }
  .big-right {
    width: 100%;
    padding-left: 0;
  }
  .big-top {
    margin-bottom: 28px;
  }
  .big-item {
    padding: 24px 16px;
    text-align: center;
  }

  .register-outer {
    text-align: center;
  }
  .input-item input[type="submit"] {
    width: 100%;
  }
  .form-outer input[type="submit"] {
    height: 46px;
  }
  .form-outer input[type="text"],
  .form-outer input[type="email"],
  .form-outer input[type="password"] {
    height: 46px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* sh/17 end */
  .recent-post-sec .banpost-mdl-lft i {
    margin-right: 13px;
  }

  /* 29/8 start*/
  .recent-post-sec.old-home-page .recent-post-rit .sub-head {
    padding-right: 60px;
  }
  .recent-post-sec.old-home-page .recent-post-rit .sub-head::after {
    width: 32px;
  }
  .recent-post-sec.old-home-page .item-sub-title {
    font-size: 16px;
  }
  .footer-sec ul {
    flex-wrap: wrap;
  }
  /* 29/8 end*/

/* support 12/10/23 */

.details-left-outer figure:nth-child(2n){
  width: 100% !important;
  max-width: 100%;
  float: none !important;
  margin: 0;
  margin-bottom: 15px;
}

.details-left-outer figure{
  width: 100% !important;
  max-width: 100%;
  float: none !important;
  margin: 0;
  margin-bottom: 15px;
}

.twitter-tweet.twitter-tweet-rendered{
  max-width: 100% !important;
  width: 100% !important;
}




.pge-account .container-fluid {
  padding: 0 15px;
}

.hdr-rit-ul .cmn-li{
  padding: 0 8px;
}

.hdr-rit-ul{
  margin: 0 -8px;
}

.hdr-rit-ul .cmn-li.prsn-cls{
  padding-right: 19px;
}



/* end support 12/10/23 */

/* 31.10.23 start */

.input-item textarea {
  height: 100px;
  padding: 15px;
}

/* 31.10.23 end */

/* support 3/11/23 */
/* hd-bx-css */

.hdr-bx::after {
  left: 43%;
}

  /* end hd-bx-css */
/* end support 3/11/23 */

/* 21.11.23 css */
.page-template-diaries .hdng-itm .bpb-blk-lfts a p span iframe {
    width: 100%;
    margin-bottom: 15px;
}
	
/* 21.11.23 css */

}

@media (max-width: 479px) {
  /* mc start 17/8/23 */
  /* .hdr-bx-lft-con {
    display: none;
  } */
  .ft-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ft-menu li {
    padding: 2px 0;
  }
  .sec-head {
    text-align: center;
  }
  .sec-head .sub-head {
    padding-right: 0;
    padding-bottom: 15px;
    text-align: center;
  }
  .sec-head .sub-head::after {
    width: 32px;
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
  }
  .recent-post-rit .sec-head .sub-head {
    padding-right: 0;
    padding-bottom: 15px;
    text-align: center;
  }
  .recent-post-rit .sec-head .sub-head::after {
    top: auto;
    bottom: 0;
  }
  .local-pols .sub-head {
    padding-bottom: 15px;
  }
  .comments-slider {
    padding-bottom: 45px;
  }
  .comments-slider .slick-next {
    left: auto;
    right: calc(50% - 40px);
  }
  .comments-slider .slick-prev {
    left: calc(50% - 40px);
  }
  .custom-btnSlider {
    min-height: 114px;
    padding: 5px;
  }
  .custom-btnSlider .slick-arrow {
    margin-bottom: 12px;
  }
  .custom-btnSlider .slick-arrow {
    width: 16px;
    height: 16px;
  }
  /* .hdr-slider-divss {
    width: 100px;
  } */
  .dtls-sec-hd.sec-head .sub-head {
    padding-right: 0;
  }
  .comments-outer .sec-head .main-heading {
    padding-right: 0;
    padding-bottom: 15px;
  }
  .comments-outer .sec-head .main-heading::after {
    right: auto;
    top: auto;
    width: 32px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .login-outer .main-heading::after {
    width: 32px;
  }
  .details-sec .local-pols2 .sub-head::after {
    width: 32px;
  }
  .recent-post-top {
    flex-direction: column;
  }
  .recent-post-top .sort-sec {
    margin-top: 15px;
  }
  .hdr-bx {
    flex-direction: column;
  }
  .hdr-bx-lft {
    width: 100%;
    padding-right: 0;
    padding-bottom: 5px;
  }
  .hdr-bx-rit {
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
  }
  .hdr-bx::after {
    width: 100%;
    height: 1px;
  }
  .hdr-bx-lft-con span span {
    display: inline-block;
    margin-bottom: 0;
  }
  .ft-menu a {
    font-size: 13px;
  }

  .hdr-bx-lft-con span {
    margin-bottom: 4px;
  }
  .hdr-bx-rit-blk {
    margin-bottom: 8px;
  }

  /* sh/17 start */
  .register-outer {
    margin-top: 19px;
  }
  .recent-post-top {
    display: block;
  }
  .recent-post-top .sort-sec {
    margin-top: 20px;
    min-width: 136px;
    max-width: 140px;
    margin-left: auto;
  }
  .recent-post-top {
    margin-bottom: 20px;
  }

  /* sh/17 end */
  /* mc end 17/8/23 */

  /* 29/8 start*/
  .recent-post-sec.old-home-page .recent-post-rit .sub-head {
    padding-right: 0px;
  }
  .recent-post-sec.old-home-page .recent-post-rit .sub-head::after {
    bottom: 0px;
    top: auto;
  }
  .recent-post-sec.old-home-page .banpost-mdl {
    flex-direction: column;
    align-items: flex-start;
  }
  .old-home-wrp .ban-post-blkimg {
    float: none;
    width: 100%;
    max-height: inherit;
    margin-left: 0;
  }
  .recent-post-sec.old-home-page .recent-bpb-blk .banpost-mdl {
    margin: 11px 0;
  }
  /* 29/8 end*/

/* support 12/10/23 */

  .comments-area .fn {
    font-size: 21px;
  }

  .comments-area ol li article.comment-body .says{
    font-size: 10px;
    padding: 3px 7px;
  }

  .comments-area .comment-author img{
    margin-right: 10px;
  }

  .comments-area ol li article.comment-body{
    padding-right: 35px;
  }
  .senate-dtls .details-left-outer{
    margin-bottom: 20px;
  }

  .comments-outer .sec-head .main-heading{
    margin-bottom: 10px;
  }

  .comments-area .comments-title {
    font-size: 19px;
    margin-bottom: 15px;
  }

  .comment-respond .comment-reply-title{
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  /* end support 12/10/23 */

  .pge-account-heading {
    margin-bottom: 25px;
  }

  /* support 3/11/23 */
/* hd-bx-css */

.hdr-bx::after{
  top: 52px;
  transform: translate(-47%, 0%);
}

.hdr-bx{
  min-height: 155px;
}

.comments-area ol li article.comment-body {
  padding-right: 47px;
}

  /* end hd-bx-css */

  .comments-area .comment-list .comment-author{
    padding-left: 60px;
  }
/* end support 3/11/23 */

}
@media (max-width: 360px) {
  .hdng-itm .bpb-blk-lfts .ban-post-blk-rit,
  .bpb-blk-lfts .ban-post-blk-rit {
    padding: 20px 10px;
  }
  .colorad-sel li:not(:last-child) {
    margin-right: 22px;
  }
  .banpost-mdl-lft {
    margin-right: 18px;
  }

  /*29/09/2023 dm*/

  .post-abt-ul li {
    width: 100%;
    margin-right: 0;
  }

  .comments-area .comment-author img {
    height: 35px;
    width: 35px;
    margin-right: 5px;
  }

  .comments-area ol li article.comment-body .says{
    margin-left: 3px;
    margin-top: 3px;
  }

  .comments-area ol li article.comment-body .comment-metadata{
    font-size: 12px;
  }

  .comments-area .comment-list .comment-author {
    padding-left: 40px;
    padding-bottom: 5px;
}

.comments-area .comment-author  .fn {
  font-size: 19px;
}



}

.pge-account-row.login-wrap {
    justify-content: center;
}

.pge-account-row .loginsection{
  max-width: 680px;
  width: 100%;
}
.pge-account-row .signupsection{
  max-width: 680px;
  width: 100%;
}
.tdimage{
  width: 150px;
}
#datatablediaries{
  margin-bottom: unset;
}

.page-id-194521 .lft_post{
margin:0 auto;
margin-top:15px	
}

@media(max-width:762px){
	.more-dtls{
	}
}
