@charset "UTF-8";
:root {
  --font-primary: "Mukta", sans-serif;
  --clr-body: #ffffff;
  --clr-light: #fdffc4;
  --clr-dark: #00332a;
  --clr-black: #505050;
  --clr-primary: #0684c7;
  --clr-secondary: #bb2126;
  --clr-header: #0684c7;
  --clr-header-link: #000000;
  --clr-header-link-active: #70c9ff;
  --clr-light-blue: #f0faff;
  --clr-bluish: #2260bf;
  --clr-secondary: #c3fcf2;
  --clr-accent: #ff7750;
  --clr-green: #728146;
  --clr-link: #100f0f;
  --clr-link2: #2260bf;
  --clr-link-hover: #0b4a8b;
  --clr-nav-link: #102c57;
  --clr-nav-link-hover: #ffffff;
  --clr-link-dark: #505050;
  --border-radius: 0.75rem;
  --border-radius-hard: 1rem;
  --box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  --border-color: #EBEBEB;
  --clr-wash: #f0faff;
  --clr-gray: #eef3fa;
  --clr-gray-wash: rgba(34,96,191,.24);
  --clr-border: rgba(0,0,0,.14);
  --clr-desc: rgba(0,0,0,.6);
  --clr-overlay: #f4f6f8;
  --clr-input-field: rgba(0,0,0,.04);
  --clr-btn-active: rgba(34,96,191,.1);
  --clr-body-lite: #f4f6f8;
  --clr-black-white: #ffffff;
  --clr-social-bg: rgba(0,0,0,.06);
  --clr-social-color: #2260bf;
  --clr-shadow: rgb(0 0 0 / 14%) 0 0 24px;
  --clr-post-bg: #f4f6f8;
  --clr-post-bg-blue: #2260bf;
  --clr-more: #2260bf;
  --btn-active-bg: #2260bf;
  --btn-active-clr: #ffffff;
  --btn-inactive-bg: rgba(34,96,191,.1);
  --btn-inactive-clr: rgba(0,0,0,.68);
  --foreground: var(--clr-dark);
  --background: var(--clr-light);
  --footer: #D4D4D4;
  --footer-info: #e0e9f6;
  --ff-title: "Playfair Display", serif;
  --ff-body: "Assistant", sans-serif;
}

.darkmode {
  --clr-body: #2b2b2b;
  --clr-light: #fdffc4;
  --clr-dark: #2b2b2b;
  --clr-black: #ffffff;
  --clr-primary: #294774;
  --clr-secondary: #bb2126;
  --clr-header: #121212;
  --clr-header-link: #ffffff;
  --clr-header-link-active: #70c9ff;
  --clr-bluish: #2260bf;
  --clr-secondary: #00100d;
  --clr-accent: #ff7750;
  --clr-green: #222617;
  --clr-link: #d9d9d9;
  --clr-link2: #d9d9d9;
  --clr-link-hover: #3d81ab;
  --clr-nav-link: #ffffff;
  --clr-nav-link-hover: #ffffff;
  --clr-link-dark: #d9d9d9;
  --border-color: #EBEBEB;
  --clr-wash: #121212;
  --clr-gray: rgb(168 180 197);
  --clr-gray-wash: rgb(90 99 104);
  --clr-border: #494545;
  --clr-desc: #787777;
  --clr-overlay: #6c757d;
  --clr-input-field: rgb(18 18 18);
  --clr-body-lite: #1c1b1b;
  --clr-black-white: #1c1b1b;
  --clr-social-bg: rgb(168 180 197);
  --clr-social-color: #2260bf;
  --clr-shadow: #2b2b2b;
  --clr-post-bg: #121212;
  --clr-post-bg-blue: #0a172c;
  --clr-more: #3d81ab;
  --btn-active-bg: #1c3864;
  --btn-active-clr: #ffffff;
  --btn-inactive-bg: #646464;
  --btn-inactive-clr: #121212;
  --foreground: var(--clr-light);
  --background: var(--clr-dark);
  --footer: #151414;
  --footer-info: #202020;
}

.dark-mode-toggle {
  color: var(--background);
  padding: 10px;
  background: var(--foreground) !important;
  cursor: pointer;
  border: 0;
  outline: 0;
}

body {
  background-image: url(../../assets/imgs/fade-bg.png);
  background-size: 100% 800px;
  background-repeat: no-repeat;
  background-position: center top;
  color: #000;
  transition: margin-left 0.5s;
}

body.darkmode {
  background: var(--background) !important;
}

body.blur {
  filter: blur(0.8px);
}

html.fadeLayerz, body.fadeLayerz {
  overflow: hidden;
}

body.fadeLayerz:before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
}

body.fadeLayer:before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
}

.blur {
  filter: blur(0.8px);
}

body, p {
  font-family: var(--font-primary);
  line-height: 24px;
  font-size: 14px;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  color: #1c1c1c;
  font-weight: 700;
  font-family: var(--font-primary);
}

h1 {
  font-size: 36px;
  line-height: 48px;
}

h2 {
  font-size: 24px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
  line-height: 28px;
}

h5 {
  font-size: 14px;
  line-height: 24px;
}

.alert .icon {
  margin-right: 15px;
}

.fw-normal, .fw-400 {
  font-weight: 400;
}

.fw-bold {
  font-weight: bolder;
}

.border-bottom {
  border-bottom: 1px solid;
}
.border-bottom.orange {
  border-color: orange !important;
}

.text-main-color {
  color: var(--clr-primary) !important;
}

.mtext-left {
  text-align: left;
}

.mtext-right {
  text-align: right;
}

.rounded-2 {
  border-radius: 20px !important;
}

.border-right-1 {
  border-right: 1px solid var(--clr-border);
}

.border-right-2 {
  border-right: 2px solid var(--clr-border);
}

.center {
  text-align: center;
}

.img-400 {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb-xxs {
  width: 80px !important;
  height: 60px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.text-secondary {
  color: var(--clr-secondary) !important;
}

/*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../../assets/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff2"), url("../../assets/fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47") format("woff");
}
.bi::before,
[class^=bi-]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-123::before {
  content: "\f67f";
}

.bi-alarm-fill::before {
  content: "\f101";
}

.bi-alarm::before {
  content: "\f102";
}

.bi-align-bottom::before {
  content: "\f103";
}

.bi-align-center::before {
  content: "\f104";
}

.bi-align-end::before {
  content: "\f105";
}

.bi-align-middle::before {
  content: "\f106";
}

.bi-align-start::before {
  content: "\f107";
}

.bi-align-top::before {
  content: "\f108";
}

.bi-alt::before {
  content: "\f109";
}

.bi-app-indicator::before {
  content: "\f10a";
}

.bi-app::before {
  content: "\f10b";
}

.bi-archive-fill::before {
  content: "\f10c";
}

.bi-archive::before {
  content: "\f10d";
}

.bi-arrow-90deg-down::before {
  content: "\f10e";
}

.bi-arrow-90deg-left::before {
  content: "\f10f";
}

.bi-arrow-90deg-right::before {
  content: "\f110";
}

.bi-arrow-90deg-up::before {
  content: "\f111";
}

.bi-arrow-bar-down::before {
  content: "\f112";
}

.bi-arrow-bar-left::before {
  content: "\f113";
}

.bi-arrow-bar-right::before {
  content: "\f114";
}

.bi-arrow-bar-up::before {
  content: "\f115";
}

.bi-arrow-clockwise::before {
  content: "\f116";
}

.bi-arrow-counterclockwise::before {
  content: "\f117";
}

.bi-arrow-down-circle-fill::before {
  content: "\f118";
}

.bi-arrow-down-circle::before {
  content: "\f119";
}

.bi-arrow-down-left-circle-fill::before {
  content: "\f11a";
}

.bi-arrow-down-left-circle::before {
  content: "\f11b";
}

.bi-arrow-down-left-square-fill::before {
  content: "\f11c";
}

.bi-arrow-down-left-square::before {
  content: "\f11d";
}

.bi-arrow-down-left::before {
  content: "\f11e";
}

.bi-arrow-down-right-circle-fill::before {
  content: "\f11f";
}

.bi-arrow-down-right-circle::before {
  content: "\f120";
}

.bi-arrow-down-right-square-fill::before {
  content: "\f121";
}

.bi-arrow-down-right-square::before {
  content: "\f122";
}

.bi-arrow-down-right::before {
  content: "\f123";
}

.bi-arrow-down-short::before {
  content: "\f124";
}

.bi-arrow-down-square-fill::before {
  content: "\f125";
}

.bi-arrow-down-square::before {
  content: "\f126";
}

.bi-arrow-down-up::before {
  content: "\f127";
}

.bi-arrow-down::before {
  content: "\f128";
}

.bi-arrow-left-circle-fill::before {
  content: "\f129";
}

.bi-arrow-left-circle::before {
  content: "\f12a";
}

.bi-arrow-left-right::before {
  content: "\f12b";
}

.bi-arrow-left-short::before {
  content: "\f12c";
}

.bi-arrow-left-square-fill::before {
  content: "\f12d";
}

.bi-arrow-left-square::before {
  content: "\f12e";
}

.bi-arrow-left::before {
  content: "\f12f";
}

.bi-arrow-repeat::before {
  content: "\f130";
}

.bi-arrow-return-left::before {
  content: "\f131";
}

.bi-arrow-return-right::before {
  content: "\f132";
}

.bi-arrow-right-circle-fill::before {
  content: "\f133";
}

.bi-arrow-right-circle::before {
  content: "\f134";
}

.bi-arrow-right-short::before {
  content: "\f135";
}

.bi-arrow-right-square-fill::before {
  content: "\f136";
}

.bi-arrow-right-square::before {
  content: "\f137";
}

.bi-arrow-right::before {
  content: "\f138";
}

.bi-arrow-up-circle-fill::before {
  content: "\f139";
}

.bi-arrow-up-circle::before {
  content: "\f13a";
}

.bi-arrow-up-left-circle-fill::before {
  content: "\f13b";
}

.bi-arrow-up-left-circle::before {
  content: "\f13c";
}

.bi-arrow-up-left-square-fill::before {
  content: "\f13d";
}

.bi-arrow-up-left-square::before {
  content: "\f13e";
}

.bi-arrow-up-left::before {
  content: "\f13f";
}

.bi-arrow-up-right-circle-fill::before {
  content: "\f140";
}

.bi-arrow-up-right-circle::before {
  content: "\f141";
}

.bi-arrow-up-right-square-fill::before {
  content: "\f142";
}

.bi-arrow-up-right-square::before {
  content: "\f143";
}

.bi-arrow-up-right::before {
  content: "\f144";
}

.bi-arrow-up-short::before {
  content: "\f145";
}

.bi-arrow-up-square-fill::before {
  content: "\f146";
}

.bi-arrow-up-square::before {
  content: "\f147";
}

.bi-arrow-up::before {
  content: "\f148";
}

.bi-arrows-angle-contract::before {
  content: "\f149";
}

.bi-arrows-angle-expand::before {
  content: "\f14a";
}

.bi-arrows-collapse::before {
  content: "\f14b";
}

.bi-arrows-expand::before {
  content: "\f14c";
}

.bi-arrows-fullscreen::before {
  content: "\f14d";
}

.bi-arrows-move::before {
  content: "\f14e";
}

.bi-aspect-ratio-fill::before {
  content: "\f14f";
}

.bi-aspect-ratio::before {
  content: "\f150";
}

.bi-asterisk::before {
  content: "\f151";
}

.bi-at::before {
  content: "\f152";
}

.bi-award-fill::before {
  content: "\f153";
}

.bi-award::before {
  content: "\f154";
}

.bi-back::before {
  content: "\f155";
}

.bi-backspace-fill::before {
  content: "\f156";
}

.bi-backspace-reverse-fill::before {
  content: "\f157";
}

.bi-backspace-reverse::before {
  content: "\f158";
}

.bi-backspace::before {
  content: "\f159";
}

.bi-badge-3d-fill::before {
  content: "\f15a";
}

.bi-badge-3d::before {
  content: "\f15b";
}

.bi-badge-4k-fill::before {
  content: "\f15c";
}

.bi-badge-4k::before {
  content: "\f15d";
}

.bi-badge-8k-fill::before {
  content: "\f15e";
}

.bi-badge-8k::before {
  content: "\f15f";
}

.bi-badge-ad-fill::before {
  content: "\f160";
}

.bi-badge-ad::before {
  content: "\f161";
}

.bi-badge-ar-fill::before {
  content: "\f162";
}

.bi-badge-ar::before {
  content: "\f163";
}

.bi-badge-cc-fill::before {
  content: "\f164";
}

.bi-badge-cc::before {
  content: "\f165";
}

.bi-badge-hd-fill::before {
  content: "\f166";
}

.bi-badge-hd::before {
  content: "\f167";
}

.bi-badge-tm-fill::before {
  content: "\f168";
}

.bi-badge-tm::before {
  content: "\f169";
}

.bi-badge-vo-fill::before {
  content: "\f16a";
}

.bi-badge-vo::before {
  content: "\f16b";
}

.bi-badge-vr-fill::before {
  content: "\f16c";
}

.bi-badge-vr::before {
  content: "\f16d";
}

.bi-badge-wc-fill::before {
  content: "\f16e";
}

.bi-badge-wc::before {
  content: "\f16f";
}

.bi-bag-check-fill::before {
  content: "\f170";
}

.bi-bag-check::before {
  content: "\f171";
}

.bi-bag-dash-fill::before {
  content: "\f172";
}

.bi-bag-dash::before {
  content: "\f173";
}

.bi-bag-fill::before {
  content: "\f174";
}

.bi-bag-plus-fill::before {
  content: "\f175";
}

.bi-bag-plus::before {
  content: "\f176";
}

.bi-bag-x-fill::before {
  content: "\f177";
}

.bi-bag-x::before {
  content: "\f178";
}

.bi-bag::before {
  content: "\f179";
}

.bi-bar-chart-fill::before {
  content: "\f17a";
}

.bi-bar-chart-line-fill::before {
  content: "\f17b";
}

.bi-bar-chart-line::before {
  content: "\f17c";
}

.bi-bar-chart-steps::before {
  content: "\f17d";
}

.bi-bar-chart::before {
  content: "\f17e";
}

.bi-basket-fill::before {
  content: "\f17f";
}

.bi-basket::before {
  content: "\f180";
}

.bi-basket2-fill::before {
  content: "\f181";
}

.bi-basket2::before {
  content: "\f182";
}

.bi-basket3-fill::before {
  content: "\f183";
}

.bi-basket3::before {
  content: "\f184";
}

.bi-battery-charging::before {
  content: "\f185";
}

.bi-battery-full::before {
  content: "\f186";
}

.bi-battery-half::before {
  content: "\f187";
}

.bi-battery::before {
  content: "\f188";
}

.bi-bell-fill::before {
  content: "\f189";
}

.bi-bell::before {
  content: "\f18a";
}

.bi-bezier::before {
  content: "\f18b";
}

.bi-bezier2::before {
  content: "\f18c";
}

.bi-bicycle::before {
  content: "\f18d";
}

.bi-binoculars-fill::before {
  content: "\f18e";
}

.bi-binoculars::before {
  content: "\f18f";
}

.bi-blockquote-left::before {
  content: "\f190";
}

.bi-blockquote-right::before {
  content: "\f191";
}

.bi-book-fill::before {
  content: "\f192";
}

.bi-book-half::before {
  content: "\f193";
}

.bi-book::before {
  content: "\f194";
}

.bi-bookmark-check-fill::before {
  content: "\f195";
}

.bi-bookmark-check::before {
  content: "\f196";
}

.bi-bookmark-dash-fill::before {
  content: "\f197";
}

.bi-bookmark-dash::before {
  content: "\f198";
}

.bi-bookmark-fill::before {
  content: "\f199";
}

.bi-bookmark-heart-fill::before {
  content: "\f19a";
}

.bi-bookmark-heart::before {
  content: "\f19b";
}

.bi-bookmark-plus-fill::before {
  content: "\f19c";
}

.bi-bookmark-plus::before {
  content: "\f19d";
}

.bi-bookmark-star-fill::before {
  content: "\f19e";
}

.bi-bookmark-star::before {
  content: "\f19f";
}

.bi-bookmark-x-fill::before {
  content: "\f1a0";
}

.bi-bookmark-x::before {
  content: "\f1a1";
}

.bi-bookmark::before {
  content: "\f1a2";
}

.bi-bookmarks-fill::before {
  content: "\f1a3";
}

.bi-bookmarks::before {
  content: "\f1a4";
}

.bi-bookshelf::before {
  content: "\f1a5";
}

.bi-bootstrap-fill::before {
  content: "\f1a6";
}

.bi-bootstrap-reboot::before {
  content: "\f1a7";
}

.bi-bootstrap::before {
  content: "\f1a8";
}

.bi-border-all::before {
  content: "\f1a9";
}

.bi-border-bottom::before {
  content: "\f1aa";
}

.bi-border-center::before {
  content: "\f1ab";
}

.bi-border-inner::before {
  content: "\f1ac";
}

.bi-border-left::before {
  content: "\f1ad";
}

.bi-border-middle::before {
  content: "\f1ae";
}

.bi-border-outer::before {
  content: "\f1af";
}

.bi-border-right::before {
  content: "\f1b0";
}

.bi-border-style::before {
  content: "\f1b1";
}

.bi-border-top::before {
  content: "\f1b2";
}

.bi-border-width::before {
  content: "\f1b3";
}

.bi-border::before {
  content: "\f1b4";
}

.bi-bounding-box-circles::before {
  content: "\f1b5";
}

.bi-bounding-box::before {
  content: "\f1b6";
}

.bi-box-arrow-down-left::before {
  content: "\f1b7";
}

.bi-box-arrow-down-right::before {
  content: "\f1b8";
}

.bi-box-arrow-down::before {
  content: "\f1b9";
}

.bi-box-arrow-in-down-left::before {
  content: "\f1ba";
}

.bi-box-arrow-in-down-right::before {
  content: "\f1bb";
}

.bi-box-arrow-in-down::before {
  content: "\f1bc";
}

.bi-box-arrow-in-left::before {
  content: "\f1bd";
}

.bi-box-arrow-in-right::before {
  content: "\f1be";
}

.bi-box-arrow-in-up-left::before {
  content: "\f1bf";
}

.bi-box-arrow-in-up-right::before {
  content: "\f1c0";
}

.bi-box-arrow-in-up::before {
  content: "\f1c1";
}

.bi-box-arrow-left::before {
  content: "\f1c2";
}

.bi-box-arrow-right::before {
  content: "\f1c3";
}

.bi-box-arrow-up-left::before {
  content: "\f1c4";
}

.bi-box-arrow-up-right::before {
  content: "\f1c5";
}

.bi-box-arrow-up::before {
  content: "\f1c6";
}

.bi-box-seam::before {
  content: "\f1c7";
}

.bi-box::before {
  content: "\f1c8";
}

.bi-braces::before {
  content: "\f1c9";
}

.bi-bricks::before {
  content: "\f1ca";
}

.bi-briefcase-fill::before {
  content: "\f1cb";
}

.bi-briefcase::before {
  content: "\f1cc";
}

.bi-brightness-alt-high-fill::before {
  content: "\f1cd";
}

.bi-brightness-alt-high::before {
  content: "\f1ce";
}

.bi-brightness-alt-low-fill::before {
  content: "\f1cf";
}

.bi-brightness-alt-low::before {
  content: "\f1d0";
}

.bi-brightness-high-fill::before {
  content: "\f1d1";
}

.bi-brightness-high::before {
  content: "\f1d2";
}

.bi-brightness-low-fill::before {
  content: "\f1d3";
}

.bi-brightness-low::before {
  content: "\f1d4";
}

.bi-broadcast-pin::before {
  content: "\f1d5";
}

.bi-broadcast::before {
  content: "\f1d6";
}

.bi-brush-fill::before {
  content: "\f1d7";
}

.bi-brush::before {
  content: "\f1d8";
}

.bi-bucket-fill::before {
  content: "\f1d9";
}

.bi-bucket::before {
  content: "\f1da";
}

.bi-bug-fill::before {
  content: "\f1db";
}

.bi-bug::before {
  content: "\f1dc";
}

.bi-building::before {
  content: "\f1dd";
}

.bi-bullseye::before {
  content: "\f1de";
}

.bi-calculator-fill::before {
  content: "\f1df";
}

.bi-calculator::before {
  content: "\f1e0";
}

.bi-calendar-check-fill::before {
  content: "\f1e1";
}

.bi-calendar-check::before {
  content: "\f1e2";
}

.bi-calendar-date-fill::before {
  content: "\f1e3";
}

.bi-calendar-date::before {
  content: "\f1e4";
}

.bi-calendar-day-fill::before {
  content: "\f1e5";
}

.bi-calendar-day::before {
  content: "\f1e6";
}

.bi-calendar-event-fill::before {
  content: "\f1e7";
}

.bi-calendar-event::before {
  content: "\f1e8";
}

.bi-calendar-fill::before {
  content: "\f1e9";
}

.bi-calendar-minus-fill::before {
  content: "\f1ea";
}

.bi-calendar-minus::before {
  content: "\f1eb";
}

.bi-calendar-month-fill::before {
  content: "\f1ec";
}

.bi-calendar-month::before {
  content: "\f1ed";
}

.bi-calendar-plus-fill::before {
  content: "\f1ee";
}

.bi-calendar-plus::before {
  content: "\f1ef";
}

.bi-calendar-range-fill::before {
  content: "\f1f0";
}

.bi-calendar-range::before {
  content: "\f1f1";
}

.bi-calendar-week-fill::before {
  content: "\f1f2";
}

.bi-calendar-week::before {
  content: "\f1f3";
}

.bi-calendar-x-fill::before {
  content: "\f1f4";
}

.bi-calendar-x::before {
  content: "\f1f5";
}

.bi-calendar::before {
  content: "\f1f6";
}

.bi-calendar2-check-fill::before {
  content: "\f1f7";
}

.bi-calendar2-check::before {
  content: "\f1f8";
}

.bi-calendar2-date-fill::before {
  content: "\f1f9";
}

.bi-calendar2-date::before {
  content: "\f1fa";
}

.bi-calendar2-day-fill::before {
  content: "\f1fb";
}

.bi-calendar2-day::before {
  content: "\f1fc";
}

.bi-calendar2-event-fill::before {
  content: "\f1fd";
}

.bi-calendar2-event::before {
  content: "\f1fe";
}

.bi-calendar2-fill::before {
  content: "\f1ff";
}

.bi-calendar2-minus-fill::before {
  content: "\f200";
}

.bi-calendar2-minus::before {
  content: "\f201";
}

.bi-calendar2-month-fill::before {
  content: "\f202";
}

.bi-calendar2-month::before {
  content: "\f203";
}

.bi-calendar2-plus-fill::before {
  content: "\f204";
}

.bi-calendar2-plus::before {
  content: "\f205";
}

.bi-calendar2-range-fill::before {
  content: "\f206";
}

.bi-calendar2-range::before {
  content: "\f207";
}

.bi-calendar2-week-fill::before {
  content: "\f208";
}

.bi-calendar2-week::before {
  content: "\f209";
}

.bi-calendar2-x-fill::before {
  content: "\f20a";
}

.bi-calendar2-x::before {
  content: "\f20b";
}

.bi-calendar2::before {
  content: "\f20c";
}

.bi-calendar3-event-fill::before {
  content: "\f20d";
}

.bi-calendar3-event::before {
  content: "\f20e";
}

.bi-calendar3-fill::before {
  content: "\f20f";
}

.bi-calendar3-range-fill::before {
  content: "\f210";
}

.bi-calendar3-range::before {
  content: "\f211";
}

.bi-calendar3-week-fill::before {
  content: "\f212";
}

.bi-calendar3-week::before {
  content: "\f213";
}

.bi-calendar3::before {
  content: "\f214";
}

.bi-calendar4-event::before {
  content: "\f215";
}

.bi-calendar4-range::before {
  content: "\f216";
}

.bi-calendar4-week::before {
  content: "\f217";
}

.bi-calendar4::before {
  content: "\f218";
}

.bi-camera-fill::before {
  content: "\f219";
}

.bi-camera-reels-fill::before {
  content: "\f21a";
}

.bi-camera-reels::before {
  content: "\f21b";
}

.bi-camera-video-fill::before {
  content: "\f21c";
}

.bi-camera-video-off-fill::before {
  content: "\f21d";
}

.bi-camera-video-off::before {
  content: "\f21e";
}

.bi-camera-video::before {
  content: "\f21f";
}

.bi-camera::before {
  content: "\f220";
}

.bi-camera2::before {
  content: "\f221";
}

.bi-capslock-fill::before {
  content: "\f222";
}

.bi-capslock::before {
  content: "\f223";
}

.bi-card-checklist::before {
  content: "\f224";
}

.bi-card-heading::before {
  content: "\f225";
}

.bi-card-image::before {
  content: "\f226";
}

.bi-card-list::before {
  content: "\f227";
}

.bi-card-text::before {
  content: "\f228";
}

.bi-caret-down-fill::before {
  content: "\f229";
}

.bi-caret-down-square-fill::before {
  content: "\f22a";
}

.bi-caret-down-square::before {
  content: "\f22b";
}

.bi-caret-down::before {
  content: "\f22c";
}

.bi-caret-left-fill::before {
  content: "\f22d";
}

.bi-caret-left-square-fill::before {
  content: "\f22e";
}

.bi-caret-left-square::before {
  content: "\f22f";
}

.bi-caret-left::before {
  content: "\f230";
}

.bi-caret-right-fill::before {
  content: "\f231";
}

.bi-caret-right-square-fill::before {
  content: "\f232";
}

.bi-caret-right-square::before {
  content: "\f233";
}

.bi-caret-right::before {
  content: "\f234";
}

.bi-caret-up-fill::before {
  content: "\f235";
}

.bi-caret-up-square-fill::before {
  content: "\f236";
}

.bi-caret-up-square::before {
  content: "\f237";
}

.bi-caret-up::before {
  content: "\f238";
}

.bi-cart-check-fill::before {
  content: "\f239";
}

.bi-cart-check::before {
  content: "\f23a";
}

.bi-cart-dash-fill::before {
  content: "\f23b";
}

.bi-cart-dash::before {
  content: "\f23c";
}

.bi-cart-fill::before {
  content: "\f23d";
}

.bi-cart-plus-fill::before {
  content: "\f23e";
}

.bi-cart-plus::before {
  content: "\f23f";
}

.bi-cart-x-fill::before {
  content: "\f240";
}

.bi-cart-x::before {
  content: "\f241";
}

.bi-cart::before {
  content: "\f242";
}

.bi-cart2::before {
  content: "\f243";
}

.bi-cart3::before {
  content: "\f244";
}

.bi-cart4::before {
  content: "\f245";
}

.bi-cash-stack::before {
  content: "\f246";
}

.bi-cash::before {
  content: "\f247";
}

.bi-cast::before {
  content: "\f248";
}

.bi-chat-dots-fill::before {
  content: "\f249";
}

.bi-chat-dots::before {
  content: "\f24a";
}

.bi-chat-fill::before {
  content: "\f24b";
}

.bi-chat-left-dots-fill::before {
  content: "\f24c";
}

.bi-chat-left-dots::before {
  content: "\f24d";
}

.bi-chat-left-fill::before {
  content: "\f24e";
}

.bi-chat-left-quote-fill::before {
  content: "\f24f";
}

.bi-chat-left-quote::before {
  content: "\f250";
}

.bi-chat-left-text-fill::before {
  content: "\f251";
}

.bi-chat-left-text::before {
  content: "\f252";
}

.bi-chat-left::before {
  content: "\f253";
}

.bi-chat-quote-fill::before {
  content: "\f254";
}

.bi-chat-quote::before {
  content: "\f255";
}

.bi-chat-right-dots-fill::before {
  content: "\f256";
}

.bi-chat-right-dots::before {
  content: "\f257";
}

.bi-chat-right-fill::before {
  content: "\f258";
}

.bi-chat-right-quote-fill::before {
  content: "\f259";
}

.bi-chat-right-quote::before {
  content: "\f25a";
}

.bi-chat-right-text-fill::before {
  content: "\f25b";
}

.bi-chat-right-text::before {
  content: "\f25c";
}

.bi-chat-right::before {
  content: "\f25d";
}

.bi-chat-square-dots-fill::before {
  content: "\f25e";
}

.bi-chat-square-dots::before {
  content: "\f25f";
}

.bi-chat-square-fill::before {
  content: "\f260";
}

.bi-chat-square-quote-fill::before {
  content: "\f261";
}

.bi-chat-square-quote::before {
  content: "\f262";
}

.bi-chat-square-text-fill::before {
  content: "\f263";
}

.bi-chat-square-text::before {
  content: "\f264";
}

.bi-chat-square::before {
  content: "\f265";
}

.bi-chat-text-fill::before {
  content: "\f266";
}

.bi-chat-text::before {
  content: "\f267";
}

.bi-chat::before {
  content: "\f268";
}

.bi-check-all::before {
  content: "\f269";
}

.bi-check-circle-fill::before {
  content: "\f26a";
}

.bi-check-circle::before {
  content: "\f26b";
}

.bi-check-square-fill::before {
  content: "\f26c";
}

.bi-check-square::before {
  content: "\f26d";
}

.bi-check::before {
  content: "\f26e";
}

.bi-check2-all::before {
  content: "\f26f";
}

.bi-check2-circle::before {
  content: "\f270";
}

.bi-check2-square::before {
  content: "\f271";
}

.bi-check2::before {
  content: "\f272";
}

.bi-chevron-bar-contract::before {
  content: "\f273";
}

.bi-chevron-bar-down::before {
  content: "\f274";
}

.bi-chevron-bar-expand::before {
  content: "\f275";
}

.bi-chevron-bar-left::before {
  content: "\f276";
}

.bi-chevron-bar-right::before {
  content: "\f277";
}

.bi-chevron-bar-up::before {
  content: "\f278";
}

.bi-chevron-compact-down::before {
  content: "\f279";
}

.bi-chevron-compact-left::before {
  content: "\f27a";
}

.bi-chevron-compact-right::before {
  content: "\f27b";
}

.bi-chevron-compact-up::before {
  content: "\f27c";
}

.bi-chevron-contract::before {
  content: "\f27d";
}

.bi-chevron-double-down::before {
  content: "\f27e";
}

.bi-chevron-double-left::before {
  content: "\f27f";
}

.bi-chevron-double-right::before {
  content: "\f280";
}

.bi-chevron-double-up::before {
  content: "\f281";
}

.bi-chevron-down::before {
  content: "\f282";
}

.bi-chevron-expand::before {
  content: "\f283";
}

.bi-chevron-left::before {
  content: "\f284";
}

.bi-chevron-right::before {
  content: "\f285";
}

.bi-chevron-up::before {
  content: "\f286";
}

.bi-circle-fill::before {
  content: "\f287";
}

.bi-circle-half::before {
  content: "\f288";
}

.bi-circle-square::before {
  content: "\f289";
}

.bi-circle::before {
  content: "\f28a";
}

.bi-clipboard-check::before {
  content: "\f28b";
}

.bi-clipboard-data::before {
  content: "\f28c";
}

.bi-clipboard-minus::before {
  content: "\f28d";
}

.bi-clipboard-plus::before {
  content: "\f28e";
}

.bi-clipboard-x::before {
  content: "\f28f";
}

.bi-clipboard::before {
  content: "\f290";
}

.bi-clock-fill::before {
  content: "\f291";
}

.bi-clock-history::before {
  content: "\f292";
}

.bi-clock::before {
  content: "\f293";
}

.bi-cloud-arrow-down-fill::before {
  content: "\f294";
}

.bi-cloud-arrow-down::before {
  content: "\f295";
}

.bi-cloud-arrow-up-fill::before {
  content: "\f296";
}

.bi-cloud-arrow-up::before {
  content: "\f297";
}

.bi-cloud-check-fill::before {
  content: "\f298";
}

.bi-cloud-check::before {
  content: "\f299";
}

.bi-cloud-download-fill::before {
  content: "\f29a";
}

.bi-cloud-download::before {
  content: "\f29b";
}

.bi-cloud-drizzle-fill::before {
  content: "\f29c";
}

.bi-cloud-drizzle::before {
  content: "\f29d";
}

.bi-cloud-fill::before {
  content: "\f29e";
}

.bi-cloud-fog-fill::before {
  content: "\f29f";
}

.bi-cloud-fog::before {
  content: "\f2a0";
}

.bi-cloud-fog2-fill::before {
  content: "\f2a1";
}

.bi-cloud-fog2::before {
  content: "\f2a2";
}

.bi-cloud-hail-fill::before {
  content: "\f2a3";
}

.bi-cloud-hail::before {
  content: "\f2a4";
}

.bi-cloud-haze-fill::before {
  content: "\f2a6";
}

.bi-cloud-haze::before {
  content: "\f2a7";
}

.bi-cloud-haze2-fill::before {
  content: "\f2a8";
}

.bi-cloud-lightning-fill::before {
  content: "\f2a9";
}

.bi-cloud-lightning-rain-fill::before {
  content: "\f2aa";
}

.bi-cloud-lightning-rain::before {
  content: "\f2ab";
}

.bi-cloud-lightning::before {
  content: "\f2ac";
}

.bi-cloud-minus-fill::before {
  content: "\f2ad";
}

.bi-cloud-minus::before {
  content: "\f2ae";
}

.bi-cloud-moon-fill::before {
  content: "\f2af";
}

.bi-cloud-moon::before {
  content: "\f2b0";
}

.bi-cloud-plus-fill::before {
  content: "\f2b1";
}

.bi-cloud-plus::before {
  content: "\f2b2";
}

.bi-cloud-rain-fill::before {
  content: "\f2b3";
}

.bi-cloud-rain-heavy-fill::before {
  content: "\f2b4";
}

.bi-cloud-rain-heavy::before {
  content: "\f2b5";
}

.bi-cloud-rain::before {
  content: "\f2b6";
}

.bi-cloud-slash-fill::before {
  content: "\f2b7";
}

.bi-cloud-slash::before {
  content: "\f2b8";
}

.bi-cloud-sleet-fill::before {
  content: "\f2b9";
}

.bi-cloud-sleet::before {
  content: "\f2ba";
}

.bi-cloud-snow-fill::before {
  content: "\f2bb";
}

.bi-cloud-snow::before {
  content: "\f2bc";
}

.bi-cloud-sun-fill::before {
  content: "\f2bd";
}

.bi-cloud-sun::before {
  content: "\f2be";
}

.bi-cloud-upload-fill::before {
  content: "\f2bf";
}

.bi-cloud-upload::before {
  content: "\f2c0";
}

.bi-cloud::before {
  content: "\f2c1";
}

.bi-clouds-fill::before {
  content: "\f2c2";
}

.bi-clouds::before {
  content: "\f2c3";
}

.bi-cloudy-fill::before {
  content: "\f2c4";
}

.bi-cloudy::before {
  content: "\f2c5";
}

.bi-code-slash::before {
  content: "\f2c6";
}

.bi-code-square::before {
  content: "\f2c7";
}

.bi-code::before {
  content: "\f2c8";
}

.bi-collection-fill::before {
  content: "\f2c9";
}

.bi-collection-play-fill::before {
  content: "\f2ca";
}

.bi-collection-play::before {
  content: "\f2cb";
}

.bi-collection::before {
  content: "\f2cc";
}

.bi-columns-gap::before {
  content: "\f2cd";
}

.bi-columns::before {
  content: "\f2ce";
}

.bi-command::before {
  content: "\f2cf";
}

.bi-compass-fill::before {
  content: "\f2d0";
}

.bi-compass::before {
  content: "\f2d1";
}

.bi-cone-striped::before {
  content: "\f2d2";
}

.bi-cone::before {
  content: "\f2d3";
}

.bi-controller::before {
  content: "\f2d4";
}

.bi-cpu-fill::before {
  content: "\f2d5";
}

.bi-cpu::before {
  content: "\f2d6";
}

.bi-credit-card-2-back-fill::before {
  content: "\f2d7";
}

.bi-credit-card-2-back::before {
  content: "\f2d8";
}

.bi-credit-card-2-front-fill::before {
  content: "\f2d9";
}

.bi-credit-card-2-front::before {
  content: "\f2da";
}

.bi-credit-card-fill::before {
  content: "\f2db";
}

.bi-credit-card::before {
  content: "\f2dc";
}

.bi-crop::before {
  content: "\f2dd";
}

.bi-cup-fill::before {
  content: "\f2de";
}

.bi-cup-straw::before {
  content: "\f2df";
}

.bi-cup::before {
  content: "\f2e0";
}

.bi-cursor-fill::before {
  content: "\f2e1";
}

.bi-cursor-text::before {
  content: "\f2e2";
}

.bi-cursor::before {
  content: "\f2e3";
}

.bi-dash-circle-dotted::before {
  content: "\f2e4";
}

.bi-dash-circle-fill::before {
  content: "\f2e5";
}

.bi-dash-circle::before {
  content: "\f2e6";
}

.bi-dash-square-dotted::before {
  content: "\f2e7";
}

.bi-dash-square-fill::before {
  content: "\f2e8";
}

.bi-dash-square::before {
  content: "\f2e9";
}

.bi-dash::before {
  content: "\f2ea";
}

.bi-diagram-2-fill::before {
  content: "\f2eb";
}

.bi-diagram-2::before {
  content: "\f2ec";
}

.bi-diagram-3-fill::before {
  content: "\f2ed";
}

.bi-diagram-3::before {
  content: "\f2ee";
}

.bi-diamond-fill::before {
  content: "\f2ef";
}

.bi-diamond-half::before {
  content: "\f2f0";
}

.bi-diamond::before {
  content: "\f2f1";
}

.bi-dice-1-fill::before {
  content: "\f2f2";
}

.bi-dice-1::before {
  content: "\f2f3";
}

.bi-dice-2-fill::before {
  content: "\f2f4";
}

.bi-dice-2::before {
  content: "\f2f5";
}

.bi-dice-3-fill::before {
  content: "\f2f6";
}

.bi-dice-3::before {
  content: "\f2f7";
}

.bi-dice-4-fill::before {
  content: "\f2f8";
}

.bi-dice-4::before {
  content: "\f2f9";
}

.bi-dice-5-fill::before {
  content: "\f2fa";
}

.bi-dice-5::before {
  content: "\f2fb";
}

.bi-dice-6-fill::before {
  content: "\f2fc";
}

.bi-dice-6::before {
  content: "\f2fd";
}

.bi-disc-fill::before {
  content: "\f2fe";
}

.bi-disc::before {
  content: "\f2ff";
}

.bi-discord::before {
  content: "\f300";
}

.bi-display-fill::before {
  content: "\f301";
}

.bi-display::before {
  content: "\f302";
}

.bi-distribute-horizontal::before {
  content: "\f303";
}

.bi-distribute-vertical::before {
  content: "\f304";
}

.bi-door-closed-fill::before {
  content: "\f305";
}

.bi-door-closed::before {
  content: "\f306";
}

.bi-door-open-fill::before {
  content: "\f307";
}

.bi-door-open::before {
  content: "\f308";
}

.bi-dot::before {
  content: "\f309";
}

.bi-download::before {
  content: "\f30a";
}

.bi-droplet-fill::before {
  content: "\f30b";
}

.bi-droplet-half::before {
  content: "\f30c";
}

.bi-droplet::before {
  content: "\f30d";
}

.bi-earbuds::before {
  content: "\f30e";
}

.bi-easel-fill::before {
  content: "\f30f";
}

.bi-easel::before {
  content: "\f310";
}

.bi-egg-fill::before {
  content: "\f311";
}

.bi-egg-fried::before {
  content: "\f312";
}

.bi-egg::before {
  content: "\f313";
}

.bi-eject-fill::before {
  content: "\f314";
}

.bi-eject::before {
  content: "\f315";
}

.bi-emoji-angry-fill::before {
  content: "\f316";
}

.bi-emoji-angry::before {
  content: "\f317";
}

.bi-emoji-dizzy-fill::before {
  content: "\f318";
}

.bi-emoji-dizzy::before {
  content: "\f319";
}

.bi-emoji-expressionless-fill::before {
  content: "\f31a";
}

.bi-emoji-expressionless::before {
  content: "\f31b";
}

.bi-emoji-frown-fill::before {
  content: "\f31c";
}

.bi-emoji-frown::before {
  content: "\f31d";
}

.bi-emoji-heart-eyes-fill::before {
  content: "\f31e";
}

.bi-emoji-heart-eyes::before {
  content: "\f31f";
}

.bi-emoji-laughing-fill::before {
  content: "\f320";
}

.bi-emoji-laughing::before {
  content: "\f321";
}

.bi-emoji-neutral-fill::before {
  content: "\f322";
}

.bi-emoji-neutral::before {
  content: "\f323";
}

.bi-emoji-smile-fill::before {
  content: "\f324";
}

.bi-emoji-smile-upside-down-fill::before {
  content: "\f325";
}

.bi-emoji-smile-upside-down::before {
  content: "\f326";
}

.bi-emoji-smile::before {
  content: "\f327";
}

.bi-emoji-sunglasses-fill::before {
  content: "\f328";
}

.bi-emoji-sunglasses::before {
  content: "\f329";
}

.bi-emoji-wink-fill::before {
  content: "\f32a";
}

.bi-emoji-wink::before {
  content: "\f32b";
}

.bi-envelope-fill::before {
  content: "\f32c";
}

.bi-envelope-open-fill::before {
  content: "\f32d";
}

.bi-envelope-open::before {
  content: "\f32e";
}

.bi-envelope::before {
  content: "\f32f";
}

.bi-eraser-fill::before {
  content: "\f330";
}

.bi-eraser::before {
  content: "\f331";
}

.bi-exclamation-circle-fill::before {
  content: "\f332";
}

.bi-exclamation-circle::before {
  content: "\f333";
}

.bi-exclamation-diamond-fill::before {
  content: "\f334";
}

.bi-exclamation-diamond::before {
  content: "\f335";
}

.bi-exclamation-octagon-fill::before {
  content: "\f336";
}

.bi-exclamation-octagon::before {
  content: "\f337";
}

.bi-exclamation-square-fill::before {
  content: "\f338";
}

.bi-exclamation-square::before {
  content: "\f339";
}

.bi-exclamation-triangle-fill::before {
  content: "\f33a";
}

.bi-exclamation-triangle::before {
  content: "\f33b";
}

.bi-exclamation::before {
  content: "\f33c";
}

.bi-exclude::before {
  content: "\f33d";
}

.bi-eye-fill::before {
  content: "\f33e";
}

.bi-eye-slash-fill::before {
  content: "\f33f";
}

.bi-eye-slash::before {
  content: "\f340";
}

.bi-eye::before {
  content: "\f341";
}

.bi-eyedropper::before {
  content: "\f342";
}

.bi-eyeglasses::before {
  content: "\f343";
}

.bi-facebook::before {
  content: "\f344";
}

.bi-file-arrow-down-fill::before {
  content: "\f345";
}

.bi-file-arrow-down::before {
  content: "\f346";
}

.bi-file-arrow-up-fill::before {
  content: "\f347";
}

.bi-file-arrow-up::before {
  content: "\f348";
}

.bi-file-bar-graph-fill::before {
  content: "\f349";
}

.bi-file-bar-graph::before {
  content: "\f34a";
}

.bi-file-binary-fill::before {
  content: "\f34b";
}

.bi-file-binary::before {
  content: "\f34c";
}

.bi-file-break-fill::before {
  content: "\f34d";
}

.bi-file-break::before {
  content: "\f34e";
}

.bi-file-check-fill::before {
  content: "\f34f";
}

.bi-file-check::before {
  content: "\f350";
}

.bi-file-code-fill::before {
  content: "\f351";
}

.bi-file-code::before {
  content: "\f352";
}

.bi-file-diff-fill::before {
  content: "\f353";
}

.bi-file-diff::before {
  content: "\f354";
}

.bi-file-earmark-arrow-down-fill::before {
  content: "\f355";
}

.bi-file-earmark-arrow-down::before {
  content: "\f356";
}

.bi-file-earmark-arrow-up-fill::before {
  content: "\f357";
}

.bi-file-earmark-arrow-up::before {
  content: "\f358";
}

.bi-file-earmark-bar-graph-fill::before {
  content: "\f359";
}

.bi-file-earmark-bar-graph::before {
  content: "\f35a";
}

.bi-file-earmark-binary-fill::before {
  content: "\f35b";
}

.bi-file-earmark-binary::before {
  content: "\f35c";
}

.bi-file-earmark-break-fill::before {
  content: "\f35d";
}

.bi-file-earmark-break::before {
  content: "\f35e";
}

.bi-file-earmark-check-fill::before {
  content: "\f35f";
}

.bi-file-earmark-check::before {
  content: "\f360";
}

.bi-file-earmark-code-fill::before {
  content: "\f361";
}

.bi-file-earmark-code::before {
  content: "\f362";
}

.bi-file-earmark-diff-fill::before {
  content: "\f363";
}

.bi-file-earmark-diff::before {
  content: "\f364";
}

.bi-file-earmark-easel-fill::before {
  content: "\f365";
}

.bi-file-earmark-easel::before {
  content: "\f366";
}

.bi-file-earmark-excel-fill::before {
  content: "\f367";
}

.bi-file-earmark-excel::before {
  content: "\f368";
}

.bi-file-earmark-fill::before {
  content: "\f369";
}

.bi-file-earmark-font-fill::before {
  content: "\f36a";
}

.bi-file-earmark-font::before {
  content: "\f36b";
}

.bi-file-earmark-image-fill::before {
  content: "\f36c";
}

.bi-file-earmark-image::before {
  content: "\f36d";
}

.bi-file-earmark-lock-fill::before {
  content: "\f36e";
}

.bi-file-earmark-lock::before {
  content: "\f36f";
}

.bi-file-earmark-lock2-fill::before {
  content: "\f370";
}

.bi-file-earmark-lock2::before {
  content: "\f371";
}

.bi-file-earmark-medical-fill::before {
  content: "\f372";
}

.bi-file-earmark-medical::before {
  content: "\f373";
}

.bi-file-earmark-minus-fill::before {
  content: "\f374";
}

.bi-file-earmark-minus::before {
  content: "\f375";
}

.bi-file-earmark-music-fill::before {
  content: "\f376";
}

.bi-file-earmark-music::before {
  content: "\f377";
}

.bi-file-earmark-person-fill::before {
  content: "\f378";
}

.bi-file-earmark-person::before {
  content: "\f379";
}

.bi-file-earmark-play-fill::before {
  content: "\f37a";
}

.bi-file-earmark-play::before {
  content: "\f37b";
}

.bi-file-earmark-plus-fill::before {
  content: "\f37c";
}

.bi-file-earmark-plus::before {
  content: "\f37d";
}

.bi-file-earmark-post-fill::before {
  content: "\f37e";
}

.bi-file-earmark-post::before {
  content: "\f37f";
}

.bi-file-earmark-ppt-fill::before {
  content: "\f380";
}

.bi-file-earmark-ppt::before {
  content: "\f381";
}

.bi-file-earmark-richtext-fill::before {
  content: "\f382";
}

.bi-file-earmark-richtext::before {
  content: "\f383";
}

.bi-file-earmark-ruled-fill::before {
  content: "\f384";
}

.bi-file-earmark-ruled::before {
  content: "\f385";
}

.bi-file-earmark-slides-fill::before {
  content: "\f386";
}

.bi-file-earmark-slides::before {
  content: "\f387";
}

.bi-file-earmark-spreadsheet-fill::before {
  content: "\f388";
}

.bi-file-earmark-spreadsheet::before {
  content: "\f389";
}

.bi-file-earmark-text-fill::before {
  content: "\f38a";
}

.bi-file-earmark-text::before {
  content: "\f38b";
}

.bi-file-earmark-word-fill::before {
  content: "\f38c";
}

.bi-file-earmark-word::before {
  content: "\f38d";
}

.bi-file-earmark-x-fill::before {
  content: "\f38e";
}

.bi-file-earmark-x::before {
  content: "\f38f";
}

.bi-file-earmark-zip-fill::before {
  content: "\f390";
}

.bi-file-earmark-zip::before {
  content: "\f391";
}

.bi-file-earmark::before {
  content: "\f392";
}

.bi-file-easel-fill::before {
  content: "\f393";
}

.bi-file-easel::before {
  content: "\f394";
}

.bi-file-excel-fill::before {
  content: "\f395";
}

.bi-file-excel::before {
  content: "\f396";
}

.bi-file-fill::before {
  content: "\f397";
}

.bi-file-font-fill::before {
  content: "\f398";
}

.bi-file-font::before {
  content: "\f399";
}

.bi-file-image-fill::before {
  content: "\f39a";
}

.bi-file-image::before {
  content: "\f39b";
}

.bi-file-lock-fill::before {
  content: "\f39c";
}

.bi-file-lock::before {
  content: "\f39d";
}

.bi-file-lock2-fill::before {
  content: "\f39e";
}

.bi-file-lock2::before {
  content: "\f39f";
}

.bi-file-medical-fill::before {
  content: "\f3a0";
}

.bi-file-medical::before {
  content: "\f3a1";
}

.bi-file-minus-fill::before {
  content: "\f3a2";
}

.bi-file-minus::before {
  content: "\f3a3";
}

.bi-file-music-fill::before {
  content: "\f3a4";
}

.bi-file-music::before {
  content: "\f3a5";
}

.bi-file-person-fill::before {
  content: "\f3a6";
}

.bi-file-person::before {
  content: "\f3a7";
}

.bi-file-play-fill::before {
  content: "\f3a8";
}

.bi-file-play::before {
  content: "\f3a9";
}

.bi-file-plus-fill::before {
  content: "\f3aa";
}

.bi-file-plus::before {
  content: "\f3ab";
}

.bi-file-post-fill::before {
  content: "\f3ac";
}

.bi-file-post::before {
  content: "\f3ad";
}

.bi-file-ppt-fill::before {
  content: "\f3ae";
}

.bi-file-ppt::before {
  content: "\f3af";
}

.bi-file-richtext-fill::before {
  content: "\f3b0";
}

.bi-file-richtext::before {
  content: "\f3b1";
}

.bi-file-ruled-fill::before {
  content: "\f3b2";
}

.bi-file-ruled::before {
  content: "\f3b3";
}

.bi-file-slides-fill::before {
  content: "\f3b4";
}

.bi-file-slides::before {
  content: "\f3b5";
}

.bi-file-spreadsheet-fill::before {
  content: "\f3b6";
}

.bi-file-spreadsheet::before {
  content: "\f3b7";
}

.bi-file-text-fill::before {
  content: "\f3b8";
}

.bi-file-text::before {
  content: "\f3b9";
}

.bi-file-word-fill::before {
  content: "\f3ba";
}

.bi-file-word::before {
  content: "\f3bb";
}

.bi-file-x-fill::before {
  content: "\f3bc";
}

.bi-file-x::before {
  content: "\f3bd";
}

.bi-file-zip-fill::before {
  content: "\f3be";
}

.bi-file-zip::before {
  content: "\f3bf";
}

.bi-file::before {
  content: "\f3c0";
}

.bi-files-alt::before {
  content: "\f3c1";
}

.bi-files::before {
  content: "\f3c2";
}

.bi-film::before {
  content: "\f3c3";
}

.bi-filter-circle-fill::before {
  content: "\f3c4";
}

.bi-filter-circle::before {
  content: "\f3c5";
}

.bi-filter-left::before {
  content: "\f3c6";
}

.bi-filter-right::before {
  content: "\f3c7";
}

.bi-filter-square-fill::before {
  content: "\f3c8";
}

.bi-filter-square::before {
  content: "\f3c9";
}

.bi-filter::before {
  content: "\f3ca";
}

.bi-flag-fill::before {
  content: "\f3cb";
}

.bi-flag::before {
  content: "\f3cc";
}

.bi-flower1::before {
  content: "\f3cd";
}

.bi-flower2::before {
  content: "\f3ce";
}

.bi-flower3::before {
  content: "\f3cf";
}

.bi-folder-check::before {
  content: "\f3d0";
}

.bi-folder-fill::before {
  content: "\f3d1";
}

.bi-folder-minus::before {
  content: "\f3d2";
}

.bi-folder-plus::before {
  content: "\f3d3";
}

.bi-folder-symlink-fill::before {
  content: "\f3d4";
}

.bi-folder-symlink::before {
  content: "\f3d5";
}

.bi-folder-x::before {
  content: "\f3d6";
}

.bi-folder::before {
  content: "\f3d7";
}

.bi-folder2-open::before {
  content: "\f3d8";
}

.bi-folder2::before {
  content: "\f3d9";
}

.bi-fonts::before {
  content: "\f3da";
}

.bi-forward-fill::before {
  content: "\f3db";
}

.bi-forward::before {
  content: "\f3dc";
}

.bi-front::before {
  content: "\f3dd";
}

.bi-fullscreen-exit::before {
  content: "\f3de";
}

.bi-fullscreen::before {
  content: "\f3df";
}

.bi-funnel-fill::before {
  content: "\f3e0";
}

.bi-funnel::before {
  content: "\f3e1";
}

.bi-gear-fill::before {
  content: "\f3e2";
}

.bi-gear-wide-connected::before {
  content: "\f3e3";
}

.bi-gear-wide::before {
  content: "\f3e4";
}

.bi-gear::before {
  content: "\f3e5";
}

.bi-gem::before {
  content: "\f3e6";
}

.bi-geo-alt-fill::before {
  content: "\f3e7";
}

.bi-geo-alt::before {
  content: "\f3e8";
}

.bi-geo-fill::before {
  content: "\f3e9";
}

.bi-geo::before {
  content: "\f3ea";
}

.bi-gift-fill::before {
  content: "\f3eb";
}

.bi-gift::before {
  content: "\f3ec";
}

.bi-github::before {
  content: "\f3ed";
}

.bi-globe::before {
  content: "\f3ee";
}

.bi-globe2::before {
  content: "\f3ef";
}

.bi-google::before {
  content: "\f3f0";
}

.bi-graph-down::before {
  content: "\f3f1";
}

.bi-graph-up::before {
  content: "\f3f2";
}

.bi-grid-1x2-fill::before {
  content: "\f3f3";
}

.bi-grid-1x2::before {
  content: "\f3f4";
}

.bi-grid-3x2-gap-fill::before {
  content: "\f3f5";
}

.bi-grid-3x2-gap::before {
  content: "\f3f6";
}

.bi-grid-3x2::before {
  content: "\f3f7";
}

.bi-grid-3x3-gap-fill::before {
  content: "\f3f8";
}

.bi-grid-3x3-gap::before {
  content: "\f3f9";
}

.bi-grid-3x3::before {
  content: "\f3fa";
}

.bi-grid-fill::before {
  content: "\f3fb";
}

.bi-grid::before {
  content: "\f3fc";
}

.bi-grip-horizontal::before {
  content: "\f3fd";
}

.bi-grip-vertical::before {
  content: "\f3fe";
}

.bi-hammer::before {
  content: "\f3ff";
}

.bi-hand-index-fill::before {
  content: "\f400";
}

.bi-hand-index-thumb-fill::before {
  content: "\f401";
}

.bi-hand-index-thumb::before {
  content: "\f402";
}

.bi-hand-index::before {
  content: "\f403";
}

.bi-hand-thumbs-down-fill::before {
  content: "\f404";
}

.bi-hand-thumbs-down::before {
  content: "\f405";
}

.bi-hand-thumbs-up-fill::before {
  content: "\f406";
}

.bi-hand-thumbs-up::before {
  content: "\f407";
}

.bi-handbag-fill::before {
  content: "\f408";
}

.bi-handbag::before {
  content: "\f409";
}

.bi-hash::before {
  content: "\f40a";
}

.bi-hdd-fill::before {
  content: "\f40b";
}

.bi-hdd-network-fill::before {
  content: "\f40c";
}

.bi-hdd-network::before {
  content: "\f40d";
}

.bi-hdd-rack-fill::before {
  content: "\f40e";
}

.bi-hdd-rack::before {
  content: "\f40f";
}

.bi-hdd-stack-fill::before {
  content: "\f410";
}

.bi-hdd-stack::before {
  content: "\f411";
}

.bi-hdd::before {
  content: "\f412";
}

.bi-headphones::before {
  content: "\f413";
}

.bi-headset::before {
  content: "\f414";
}

.bi-heart-fill::before {
  content: "\f415";
}

.bi-heart-half::before {
  content: "\f416";
}

.bi-heart::before {
  content: "\f417";
}

.bi-heptagon-fill::before {
  content: "\f418";
}

.bi-heptagon-half::before {
  content: "\f419";
}

.bi-heptagon::before {
  content: "\f41a";
}

.bi-hexagon-fill::before {
  content: "\f41b";
}

.bi-hexagon-half::before {
  content: "\f41c";
}

.bi-hexagon::before {
  content: "\f41d";
}

.bi-hourglass-bottom::before {
  content: "\f41e";
}

.bi-hourglass-split::before {
  content: "\f41f";
}

.bi-hourglass-top::before {
  content: "\f420";
}

.bi-hourglass::before {
  content: "\f421";
}

.bi-house-door-fill::before {
  content: "\f422";
}

.bi-house-door::before {
  content: "\f423";
}

.bi-house-fill::before {
  content: "\f424";
}

.bi-house::before {
  content: "\f425";
}

.bi-hr::before {
  content: "\f426";
}

.bi-hurricane::before {
  content: "\f427";
}

.bi-image-alt::before {
  content: "\f428";
}

.bi-image-fill::before {
  content: "\f429";
}

.bi-image::before {
  content: "\f42a";
}

.bi-images::before {
  content: "\f42b";
}

.bi-inbox-fill::before {
  content: "\f42c";
}

.bi-inbox::before {
  content: "\f42d";
}

.bi-inboxes-fill::before {
  content: "\f42e";
}

.bi-inboxes::before {
  content: "\f42f";
}

.bi-info-circle-fill::before {
  content: "\f430";
}

.bi-info-circle::before {
  content: "\f431";
}

.bi-info-square-fill::before {
  content: "\f432";
}

.bi-info-square::before {
  content: "\f433";
}

.bi-info::before {
  content: "\f434";
}

.bi-input-cursor-text::before {
  content: "\f435";
}

.bi-input-cursor::before {
  content: "\f436";
}

.bi-instagram::before {
  content: "\f437";
}

.bi-intersect::before {
  content: "\f438";
}

.bi-journal-album::before {
  content: "\f439";
}

.bi-journal-arrow-down::before {
  content: "\f43a";
}

.bi-journal-arrow-up::before {
  content: "\f43b";
}

.bi-journal-bookmark-fill::before {
  content: "\f43c";
}

.bi-journal-bookmark::before {
  content: "\f43d";
}

.bi-journal-check::before {
  content: "\f43e";
}

.bi-journal-code::before {
  content: "\f43f";
}

.bi-journal-medical::before {
  content: "\f440";
}

.bi-journal-minus::before {
  content: "\f441";
}

.bi-journal-plus::before {
  content: "\f442";
}

.bi-journal-richtext::before {
  content: "\f443";
}

.bi-journal-text::before {
  content: "\f444";
}

.bi-journal-x::before {
  content: "\f445";
}

.bi-journal::before {
  content: "\f446";
}

.bi-journals::before {
  content: "\f447";
}

.bi-joystick::before {
  content: "\f448";
}

.bi-justify-left::before {
  content: "\f449";
}

.bi-justify-right::before {
  content: "\f44a";
}

.bi-justify::before {
  content: "\f44b";
}

.bi-kanban-fill::before {
  content: "\f44c";
}

.bi-kanban::before {
  content: "\f44d";
}

.bi-key-fill::before {
  content: "\f44e";
}

.bi-key::before {
  content: "\f44f";
}

.bi-keyboard-fill::before {
  content: "\f450";
}

.bi-keyboard::before {
  content: "\f451";
}

.bi-ladder::before {
  content: "\f452";
}

.bi-lamp-fill::before {
  content: "\f453";
}

.bi-lamp::before {
  content: "\f454";
}

.bi-laptop-fill::before {
  content: "\f455";
}

.bi-laptop::before {
  content: "\f456";
}

.bi-layer-backward::before {
  content: "\f457";
}

.bi-layer-forward::before {
  content: "\f458";
}

.bi-layers-fill::before {
  content: "\f459";
}

.bi-layers-half::before {
  content: "\f45a";
}

.bi-layers::before {
  content: "\f45b";
}

.bi-layout-sidebar-inset-reverse::before {
  content: "\f45c";
}

.bi-layout-sidebar-inset::before {
  content: "\f45d";
}

.bi-layout-sidebar-reverse::before {
  content: "\f45e";
}

.bi-layout-sidebar::before {
  content: "\f45f";
}

.bi-layout-split::before {
  content: "\f460";
}

.bi-layout-text-sidebar-reverse::before {
  content: "\f461";
}

.bi-layout-text-sidebar::before {
  content: "\f462";
}

.bi-layout-text-window-reverse::before {
  content: "\f463";
}

.bi-layout-text-window::before {
  content: "\f464";
}

.bi-layout-three-columns::before {
  content: "\f465";
}

.bi-layout-wtf::before {
  content: "\f466";
}

.bi-life-preserver::before {
  content: "\f467";
}

.bi-lightbulb-fill::before {
  content: "\f468";
}

.bi-lightbulb-off-fill::before {
  content: "\f469";
}

.bi-lightbulb-off::before {
  content: "\f46a";
}

.bi-lightbulb::before {
  content: "\f46b";
}

.bi-lightning-charge-fill::before {
  content: "\f46c";
}

.bi-lightning-charge::before {
  content: "\f46d";
}

.bi-lightning-fill::before {
  content: "\f46e";
}

.bi-lightning::before {
  content: "\f46f";
}

.bi-link-45deg::before {
  content: "\f470";
}

.bi-link::before {
  content: "\f471";
}

.bi-linkedin::before {
  content: "\f472";
}

.bi-list-check::before {
  content: "\f473";
}

.bi-list-nested::before {
  content: "\f474";
}

.bi-list-ol::before {
  content: "\f475";
}

.bi-list-stars::before {
  content: "\f476";
}

.bi-list-task::before {
  content: "\f477";
}

.bi-list-ul::before {
  content: "\f478";
}

.bi-list::before {
  content: "\f479";
}

.bi-lock-fill::before {
  content: "\f47a";
}

.bi-lock::before {
  content: "\f47b";
}

.bi-mailbox::before {
  content: "\f47c";
}

.bi-mailbox2::before {
  content: "\f47d";
}

.bi-map-fill::before {
  content: "\f47e";
}

.bi-map::before {
  content: "\f47f";
}

.bi-markdown-fill::before {
  content: "\f480";
}

.bi-markdown::before {
  content: "\f481";
}

.bi-mask::before {
  content: "\f482";
}

.bi-megaphone-fill::before {
  content: "\f483";
}

.bi-megaphone::before {
  content: "\f484";
}

.bi-menu-app-fill::before {
  content: "\f485";
}

.bi-menu-app::before {
  content: "\f486";
}

.bi-menu-button-fill::before {
  content: "\f487";
}

.bi-menu-button-wide-fill::before {
  content: "\f488";
}

.bi-menu-button-wide::before {
  content: "\f489";
}

.bi-menu-button::before {
  content: "\f48a";
}

.bi-menu-down::before {
  content: "\f48b";
}

.bi-menu-up::before {
  content: "\f48c";
}

.bi-mic-fill::before {
  content: "\f48d";
}

.bi-mic-mute-fill::before {
  content: "\f48e";
}

.bi-mic-mute::before {
  content: "\f48f";
}

.bi-mic::before {
  content: "\f490";
}

.bi-minecart-loaded::before {
  content: "\f491";
}

.bi-minecart::before {
  content: "\f492";
}

.bi-moisture::before {
  content: "\f493";
}

.bi-moon-fill::before {
  content: "\f494";
}

.bi-moon-stars-fill::before {
  content: "\f495";
}

.bi-moon-stars::before {
  content: "\f496";
}

.bi-moon::before {
  content: "\f497";
}

.bi-mouse-fill::before {
  content: "\f498";
}

.bi-mouse::before {
  content: "\f499";
}

.bi-mouse2-fill::before {
  content: "\f49a";
}

.bi-mouse2::before {
  content: "\f49b";
}

.bi-mouse3-fill::before {
  content: "\f49c";
}

.bi-mouse3::before {
  content: "\f49d";
}

.bi-music-note-beamed::before {
  content: "\f49e";
}

.bi-music-note-list::before {
  content: "\f49f";
}

.bi-music-note::before {
  content: "\f4a0";
}

.bi-music-player-fill::before {
  content: "\f4a1";
}

.bi-music-player::before {
  content: "\f4a2";
}

.bi-newspaper::before {
  content: "\f4a3";
}

.bi-node-minus-fill::before {
  content: "\f4a4";
}

.bi-node-minus::before {
  content: "\f4a5";
}

.bi-node-plus-fill::before {
  content: "\f4a6";
}

.bi-node-plus::before {
  content: "\f4a7";
}

.bi-nut-fill::before {
  content: "\f4a8";
}

.bi-nut::before {
  content: "\f4a9";
}

.bi-octagon-fill::before {
  content: "\f4aa";
}

.bi-octagon-half::before {
  content: "\f4ab";
}

.bi-octagon::before {
  content: "\f4ac";
}

.bi-option::before {
  content: "\f4ad";
}

.bi-outlet::before {
  content: "\f4ae";
}

.bi-paint-bucket::before {
  content: "\f4af";
}

.bi-palette-fill::before {
  content: "\f4b0";
}

.bi-palette::before {
  content: "\f4b1";
}

.bi-palette2::before {
  content: "\f4b2";
}

.bi-paperclip::before {
  content: "\f4b3";
}

.bi-paragraph::before {
  content: "\f4b4";
}

.bi-patch-check-fill::before {
  content: "\f4b5";
}

.bi-patch-check::before {
  content: "\f4b6";
}

.bi-patch-exclamation-fill::before {
  content: "\f4b7";
}

.bi-patch-exclamation::before {
  content: "\f4b8";
}

.bi-patch-minus-fill::before {
  content: "\f4b9";
}

.bi-patch-minus::before {
  content: "\f4ba";
}

.bi-patch-plus-fill::before {
  content: "\f4bb";
}

.bi-patch-plus::before {
  content: "\f4bc";
}

.bi-patch-question-fill::before {
  content: "\f4bd";
}

.bi-patch-question::before {
  content: "\f4be";
}

.bi-pause-btn-fill::before {
  content: "\f4bf";
}

.bi-pause-btn::before {
  content: "\f4c0";
}

.bi-pause-circle-fill::before {
  content: "\f4c1";
}

.bi-pause-circle::before {
  content: "\f4c2";
}

.bi-pause-fill::before {
  content: "\f4c3";
}

.bi-pause::before {
  content: "\f4c4";
}

.bi-peace-fill::before {
  content: "\f4c5";
}

.bi-peace::before {
  content: "\f4c6";
}

.bi-pen-fill::before {
  content: "\f4c7";
}

.bi-pen::before {
  content: "\f4c8";
}

.bi-pencil-fill::before {
  content: "\f4c9";
}

.bi-pencil-square::before {
  content: "\f4ca";
}

.bi-pencil::before {
  content: "\f4cb";
}

.bi-pentagon-fill::before {
  content: "\f4cc";
}

.bi-pentagon-half::before {
  content: "\f4cd";
}

.bi-pentagon::before {
  content: "\f4ce";
}

.bi-people-fill::before {
  content: "\f4cf";
}

.bi-people::before {
  content: "\f4d0";
}

.bi-percent::before {
  content: "\f4d1";
}

.bi-person-badge-fill::before {
  content: "\f4d2";
}

.bi-person-badge::before {
  content: "\f4d3";
}

.bi-person-bounding-box::before {
  content: "\f4d4";
}

.bi-person-check-fill::before {
  content: "\f4d5";
}

.bi-person-check::before {
  content: "\f4d6";
}

.bi-person-circle::before {
  content: "\f4d7";
}

.bi-person-dash-fill::before {
  content: "\f4d8";
}

.bi-person-dash::before {
  content: "\f4d9";
}

.bi-person-fill::before {
  content: "\f4da";
}

.bi-person-lines-fill::before {
  content: "\f4db";
}

.bi-person-plus-fill::before {
  content: "\f4dc";
}

.bi-person-plus::before {
  content: "\f4dd";
}

.bi-person-square::before {
  content: "\f4de";
}

.bi-person-x-fill::before {
  content: "\f4df";
}

.bi-person-x::before {
  content: "\f4e0";
}

.bi-person::before {
  content: "\f4e1";
}

.bi-phone-fill::before {
  content: "\f4e2";
}

.bi-phone-landscape-fill::before {
  content: "\f4e3";
}

.bi-phone-landscape::before {
  content: "\f4e4";
}

.bi-phone-vibrate-fill::before {
  content: "\f4e5";
}

.bi-phone-vibrate::before {
  content: "\f4e6";
}

.bi-phone::before {
  content: "\f4e7";
}

.bi-pie-chart-fill::before {
  content: "\f4e8";
}

.bi-pie-chart::before {
  content: "\f4e9";
}

.bi-pin-angle-fill::before {
  content: "\f4ea";
}

.bi-pin-angle::before {
  content: "\f4eb";
}

.bi-pin-fill::before {
  content: "\f4ec";
}

.bi-pin::before {
  content: "\f4ed";
}

.bi-pip-fill::before {
  content: "\f4ee";
}

.bi-pip::before {
  content: "\f4ef";
}

.bi-play-btn-fill::before {
  content: "\f4f0";
}

.bi-play-btn::before {
  content: "\f4f1";
}

.bi-play-circle-fill::before {
  content: "\f4f2";
}

.bi-play-circle::before {
  content: "\f4f3";
}

.bi-play-fill::before {
  content: "\f4f4";
}

.bi-play::before {
  content: "\f4f5";
}

.bi-plug-fill::before {
  content: "\f4f6";
}

.bi-plug::before {
  content: "\f4f7";
}

.bi-plus-circle-dotted::before {
  content: "\f4f8";
}

.bi-plus-circle-fill::before {
  content: "\f4f9";
}

.bi-plus-circle::before {
  content: "\f4fa";
}

.bi-plus-square-dotted::before {
  content: "\f4fb";
}

.bi-plus-square-fill::before {
  content: "\f4fc";
}

.bi-plus-square::before {
  content: "\f4fd";
}

.bi-plus::before {
  content: "\f4fe";
}

.bi-power::before {
  content: "\f4ff";
}

.bi-printer-fill::before {
  content: "\f500";
}

.bi-printer::before {
  content: "\f501";
}

.bi-puzzle-fill::before {
  content: "\f502";
}

.bi-puzzle::before {
  content: "\f503";
}

.bi-question-circle-fill::before {
  content: "\f504";
}

.bi-question-circle::before {
  content: "\f505";
}

.bi-question-diamond-fill::before {
  content: "\f506";
}

.bi-question-diamond::before {
  content: "\f507";
}

.bi-question-octagon-fill::before {
  content: "\f508";
}

.bi-question-octagon::before {
  content: "\f509";
}

.bi-question-square-fill::before {
  content: "\f50a";
}

.bi-question-square::before {
  content: "\f50b";
}

.bi-question::before {
  content: "\f50c";
}

.bi-rainbow::before {
  content: "\f50d";
}

.bi-receipt-cutoff::before {
  content: "\f50e";
}

.bi-receipt::before {
  content: "\f50f";
}

.bi-reception-0::before {
  content: "\f510";
}

.bi-reception-1::before {
  content: "\f511";
}

.bi-reception-2::before {
  content: "\f512";
}

.bi-reception-3::before {
  content: "\f513";
}

.bi-reception-4::before {
  content: "\f514";
}

.bi-record-btn-fill::before {
  content: "\f515";
}

.bi-record-btn::before {
  content: "\f516";
}

.bi-record-circle-fill::before {
  content: "\f517";
}

.bi-record-circle::before {
  content: "\f518";
}

.bi-record-fill::before {
  content: "\f519";
}

.bi-record::before {
  content: "\f51a";
}

.bi-record2-fill::before {
  content: "\f51b";
}

.bi-record2::before {
  content: "\f51c";
}

.bi-reply-all-fill::before {
  content: "\f51d";
}

.bi-reply-all::before {
  content: "\f51e";
}

.bi-reply-fill::before {
  content: "\f51f";
}

.bi-reply::before {
  content: "\f520";
}

.bi-rss-fill::before {
  content: "\f521";
}

.bi-rss::before {
  content: "\f522";
}

.bi-rulers::before {
  content: "\f523";
}

.bi-save-fill::before {
  content: "\f524";
}

.bi-save::before {
  content: "\f525";
}

.bi-save2-fill::before {
  content: "\f526";
}

.bi-save2::before {
  content: "\f527";
}

.bi-scissors::before {
  content: "\f528";
}

.bi-screwdriver::before {
  content: "\f529";
}

.bi-search::before {
  content: "\f52a";
}

.bi-segmented-nav::before {
  content: "\f52b";
}

.bi-server::before {
  content: "\f52c";
}

.bi-share-fill::before {
  content: "\f52d";
}

.bi-share::before {
  content: "\f52e";
}

.bi-shield-check::before {
  content: "\f52f";
}

.bi-shield-exclamation::before {
  content: "\f530";
}

.bi-shield-fill-check::before {
  content: "\f531";
}

.bi-shield-fill-exclamation::before {
  content: "\f532";
}

.bi-shield-fill-minus::before {
  content: "\f533";
}

.bi-shield-fill-plus::before {
  content: "\f534";
}

.bi-shield-fill-x::before {
  content: "\f535";
}

.bi-shield-fill::before {
  content: "\f536";
}

.bi-shield-lock-fill::before {
  content: "\f537";
}

.bi-shield-lock::before {
  content: "\f538";
}

.bi-shield-minus::before {
  content: "\f539";
}

.bi-shield-plus::before {
  content: "\f53a";
}

.bi-shield-shaded::before {
  content: "\f53b";
}

.bi-shield-slash-fill::before {
  content: "\f53c";
}

.bi-shield-slash::before {
  content: "\f53d";
}

.bi-shield-x::before {
  content: "\f53e";
}

.bi-shield::before {
  content: "\f53f";
}

.bi-shift-fill::before {
  content: "\f540";
}

.bi-shift::before {
  content: "\f541";
}

.bi-shop-window::before {
  content: "\f542";
}

.bi-shop::before {
  content: "\f543";
}

.bi-shuffle::before {
  content: "\f544";
}

.bi-signpost-2-fill::before {
  content: "\f545";
}

.bi-signpost-2::before {
  content: "\f546";
}

.bi-signpost-fill::before {
  content: "\f547";
}

.bi-signpost-split-fill::before {
  content: "\f548";
}

.bi-signpost-split::before {
  content: "\f549";
}

.bi-signpost::before {
  content: "\f54a";
}

.bi-sim-fill::before {
  content: "\f54b";
}

.bi-sim::before {
  content: "\f54c";
}

.bi-skip-backward-btn-fill::before {
  content: "\f54d";
}

.bi-skip-backward-btn::before {
  content: "\f54e";
}

.bi-skip-backward-circle-fill::before {
  content: "\f54f";
}

.bi-skip-backward-circle::before {
  content: "\f550";
}

.bi-skip-backward-fill::before {
  content: "\f551";
}

.bi-skip-backward::before {
  content: "\f552";
}

.bi-skip-end-btn-fill::before {
  content: "\f553";
}

.bi-skip-end-btn::before {
  content: "\f554";
}

.bi-skip-end-circle-fill::before {
  content: "\f555";
}

.bi-skip-end-circle::before {
  content: "\f556";
}

.bi-skip-end-fill::before {
  content: "\f557";
}

.bi-skip-end::before {
  content: "\f558";
}

.bi-skip-forward-btn-fill::before {
  content: "\f559";
}

.bi-skip-forward-btn::before {
  content: "\f55a";
}

.bi-skip-forward-circle-fill::before {
  content: "\f55b";
}

.bi-skip-forward-circle::before {
  content: "\f55c";
}

.bi-skip-forward-fill::before {
  content: "\f55d";
}

.bi-skip-forward::before {
  content: "\f55e";
}

.bi-skip-start-btn-fill::before {
  content: "\f55f";
}

.bi-skip-start-btn::before {
  content: "\f560";
}

.bi-skip-start-circle-fill::before {
  content: "\f561";
}

.bi-skip-start-circle::before {
  content: "\f562";
}

.bi-skip-start-fill::before {
  content: "\f563";
}

.bi-skip-start::before {
  content: "\f564";
}

.bi-slack::before {
  content: "\f565";
}

.bi-slash-circle-fill::before {
  content: "\f566";
}

.bi-slash-circle::before {
  content: "\f567";
}

.bi-slash-square-fill::before {
  content: "\f568";
}

.bi-slash-square::before {
  content: "\f569";
}

.bi-slash::before {
  content: "\f56a";
}

.bi-sliders::before {
  content: "\f56b";
}

.bi-smartwatch::before {
  content: "\f56c";
}

.bi-snow::before {
  content: "\f56d";
}

.bi-snow2::before {
  content: "\f56e";
}

.bi-snow3::before {
  content: "\f56f";
}

.bi-sort-alpha-down-alt::before {
  content: "\f570";
}

.bi-sort-alpha-down::before {
  content: "\f571";
}

.bi-sort-alpha-up-alt::before {
  content: "\f572";
}

.bi-sort-alpha-up::before {
  content: "\f573";
}

.bi-sort-down-alt::before {
  content: "\f574";
}

.bi-sort-down::before {
  content: "\f575";
}

.bi-sort-numeric-down-alt::before {
  content: "\f576";
}

.bi-sort-numeric-down::before {
  content: "\f577";
}

.bi-sort-numeric-up-alt::before {
  content: "\f578";
}

.bi-sort-numeric-up::before {
  content: "\f579";
}

.bi-sort-up-alt::before {
  content: "\f57a";
}

.bi-sort-up::before {
  content: "\f57b";
}

.bi-soundwave::before {
  content: "\f57c";
}

.bi-speaker-fill::before {
  content: "\f57d";
}

.bi-speaker::before {
  content: "\f57e";
}

.bi-speedometer::before {
  content: "\f57f";
}

.bi-speedometer2::before {
  content: "\f580";
}

.bi-spellcheck::before {
  content: "\f581";
}

.bi-square-fill::before {
  content: "\f582";
}

.bi-square-half::before {
  content: "\f583";
}

.bi-square::before {
  content: "\f584";
}

.bi-stack::before {
  content: "\f585";
}

.bi-star-fill::before {
  content: "\f586";
}

.bi-star-half::before {
  content: "\f587";
}

.bi-star::before {
  content: "\f588";
}

.bi-stars::before {
  content: "\f589";
}

.bi-stickies-fill::before {
  content: "\f58a";
}

.bi-stickies::before {
  content: "\f58b";
}

.bi-sticky-fill::before {
  content: "\f58c";
}

.bi-sticky::before {
  content: "\f58d";
}

.bi-stop-btn-fill::before {
  content: "\f58e";
}

.bi-stop-btn::before {
  content: "\f58f";
}

.bi-stop-circle-fill::before {
  content: "\f590";
}

.bi-stop-circle::before {
  content: "\f591";
}

.bi-stop-fill::before {
  content: "\f592";
}

.bi-stop::before {
  content: "\f593";
}

.bi-stoplights-fill::before {
  content: "\f594";
}

.bi-stoplights::before {
  content: "\f595";
}

.bi-stopwatch-fill::before {
  content: "\f596";
}

.bi-stopwatch::before {
  content: "\f597";
}

.bi-subtract::before {
  content: "\f598";
}

.bi-suit-club-fill::before {
  content: "\f599";
}

.bi-suit-club::before {
  content: "\f59a";
}

.bi-suit-diamond-fill::before {
  content: "\f59b";
}

.bi-suit-diamond::before {
  content: "\f59c";
}

.bi-suit-heart-fill::before {
  content: "\f59d";
}

.bi-suit-heart::before {
  content: "\f59e";
}

.bi-suit-spade-fill::before {
  content: "\f59f";
}

.bi-suit-spade::before {
  content: "\f5a0";
}

.bi-sun-fill::before {
  content: "\f5a1";
}

.bi-sun::before {
  content: "\f5a2";
}

.bi-sunglasses::before {
  content: "\f5a3";
}

.bi-sunrise-fill::before {
  content: "\f5a4";
}

.bi-sunrise::before {
  content: "\f5a5";
}

.bi-sunset-fill::before {
  content: "\f5a6";
}

.bi-sunset::before {
  content: "\f5a7";
}

.bi-symmetry-horizontal::before {
  content: "\f5a8";
}

.bi-symmetry-vertical::before {
  content: "\f5a9";
}

.bi-table::before {
  content: "\f5aa";
}

.bi-tablet-fill::before {
  content: "\f5ab";
}

.bi-tablet-landscape-fill::before {
  content: "\f5ac";
}

.bi-tablet-landscape::before {
  content: "\f5ad";
}

.bi-tablet::before {
  content: "\f5ae";
}

.bi-tag-fill::before {
  content: "\f5af";
}

.bi-tag::before {
  content: "\f5b0";
}

.bi-tags-fill::before {
  content: "\f5b1";
}

.bi-tags::before {
  content: "\f5b2";
}

.bi-telegram::before {
  content: "\f5b3";
}

.bi-telephone-fill::before {
  content: "\f5b4";
}

.bi-telephone-forward-fill::before {
  content: "\f5b5";
}

.bi-telephone-forward::before {
  content: "\f5b6";
}

.bi-telephone-inbound-fill::before {
  content: "\f5b7";
}

.bi-telephone-inbound::before {
  content: "\f5b8";
}

.bi-telephone-minus-fill::before {
  content: "\f5b9";
}

.bi-telephone-minus::before {
  content: "\f5ba";
}

.bi-telephone-outbound-fill::before {
  content: "\f5bb";
}

.bi-telephone-outbound::before {
  content: "\f5bc";
}

.bi-telephone-plus-fill::before {
  content: "\f5bd";
}

.bi-telephone-plus::before {
  content: "\f5be";
}

.bi-telephone-x-fill::before {
  content: "\f5bf";
}

.bi-telephone-x::before {
  content: "\f5c0";
}

.bi-telephone::before {
  content: "\f5c1";
}

.bi-terminal-fill::before {
  content: "\f5c2";
}

.bi-terminal::before {
  content: "\f5c3";
}

.bi-text-center::before {
  content: "\f5c4";
}

.bi-text-indent-left::before {
  content: "\f5c5";
}

.bi-text-indent-right::before {
  content: "\f5c6";
}

.bi-text-left::before {
  content: "\f5c7";
}

.bi-text-paragraph::before {
  content: "\f5c8";
}

.bi-text-right::before {
  content: "\f5c9";
}

.bi-textarea-resize::before {
  content: "\f5ca";
}

.bi-textarea-t::before {
  content: "\f5cb";
}

.bi-textarea::before {
  content: "\f5cc";
}

.bi-thermometer-half::before {
  content: "\f5cd";
}

.bi-thermometer-high::before {
  content: "\f5ce";
}

.bi-thermometer-low::before {
  content: "\f5cf";
}

.bi-thermometer-snow::before {
  content: "\f5d0";
}

.bi-thermometer-sun::before {
  content: "\f5d1";
}

.bi-thermometer::before {
  content: "\f5d2";
}

.bi-three-dots-vertical::before {
  content: "\f5d3";
}

.bi-three-dots::before {
  content: "\f5d4";
}

.bi-toggle-off::before {
  content: "\f5d5";
}

.bi-toggle-on::before {
  content: "\f5d6";
}

.bi-toggle2-off::before {
  content: "\f5d7";
}

.bi-toggle2-on::before {
  content: "\f5d8";
}

.bi-toggles::before {
  content: "\f5d9";
}

.bi-toggles2::before {
  content: "\f5da";
}

.bi-tools::before {
  content: "\f5db";
}

.bi-tornado::before {
  content: "\f5dc";
}

.bi-trash-fill::before {
  content: "\f5dd";
}

.bi-trash::before {
  content: "\f5de";
}

.bi-trash2-fill::before {
  content: "\f5df";
}

.bi-trash2::before {
  content: "\f5e0";
}

.bi-tree-fill::before {
  content: "\f5e1";
}

.bi-tree::before {
  content: "\f5e2";
}

.bi-triangle-fill::before {
  content: "\f5e3";
}

.bi-triangle-half::before {
  content: "\f5e4";
}

.bi-triangle::before {
  content: "\f5e5";
}

.bi-trophy-fill::before {
  content: "\f5e6";
}

.bi-trophy::before {
  content: "\f5e7";
}

.bi-tropical-storm::before {
  content: "\f5e8";
}

.bi-truck-flatbed::before {
  content: "\f5e9";
}

.bi-truck::before {
  content: "\f5ea";
}

.bi-tsunami::before {
  content: "\f5eb";
}

.bi-tv-fill::before {
  content: "\f5ec";
}

.bi-tv::before {
  content: "\f5ed";
}

.bi-twitch::before {
  content: "\f5ee";
}

.bi-twitter::before {
  content: "\f5ef";
}

.bi-type-bold::before {
  content: "\f5f0";
}

.bi-type-h1::before {
  content: "\f5f1";
}

.bi-type-h2::before {
  content: "\f5f2";
}

.bi-type-h3::before {
  content: "\f5f3";
}

.bi-type-italic::before {
  content: "\f5f4";
}

.bi-type-strikethrough::before {
  content: "\f5f5";
}

.bi-type-underline::before {
  content: "\f5f6";
}

.bi-type::before {
  content: "\f5f7";
}

.bi-ui-checks-grid::before {
  content: "\f5f8";
}

.bi-ui-checks::before {
  content: "\f5f9";
}

.bi-ui-radios-grid::before {
  content: "\f5fa";
}

.bi-ui-radios::before {
  content: "\f5fb";
}

.bi-umbrella-fill::before {
  content: "\f5fc";
}

.bi-umbrella::before {
  content: "\f5fd";
}

.bi-union::before {
  content: "\f5fe";
}

.bi-unlock-fill::before {
  content: "\f5ff";
}

.bi-unlock::before {
  content: "\f600";
}

.bi-upc-scan::before {
  content: "\f601";
}

.bi-upc::before {
  content: "\f602";
}

.bi-upload::before {
  content: "\f603";
}

.bi-vector-pen::before {
  content: "\f604";
}

.bi-view-list::before {
  content: "\f605";
}

.bi-view-stacked::before {
  content: "\f606";
}

.bi-vinyl-fill::before {
  content: "\f607";
}

.bi-vinyl::before {
  content: "\f608";
}

.bi-voicemail::before {
  content: "\f609";
}

.bi-volume-down-fill::before {
  content: "\f60a";
}

.bi-volume-down::before {
  content: "\f60b";
}

.bi-volume-mute-fill::before {
  content: "\f60c";
}

.bi-volume-mute::before {
  content: "\f60d";
}

.bi-volume-off-fill::before {
  content: "\f60e";
}

.bi-volume-off::before {
  content: "\f60f";
}

.bi-volume-up-fill::before {
  content: "\f610";
}

.bi-volume-up::before {
  content: "\f611";
}

.bi-vr::before {
  content: "\f612";
}

.bi-wallet-fill::before {
  content: "\f613";
}

.bi-wallet::before {
  content: "\f614";
}

.bi-wallet2::before {
  content: "\f615";
}

.bi-watch::before {
  content: "\f616";
}

.bi-water::before {
  content: "\f617";
}

.bi-whatsapp::before {
  content: "\f618";
}

.bi-wifi-1::before {
  content: "\f619";
}

.bi-wifi-2::before {
  content: "\f61a";
}

.bi-wifi-off::before {
  content: "\f61b";
}

.bi-wifi::before {
  content: "\f61c";
}

.bi-wind::before {
  content: "\f61d";
}

.bi-window-dock::before {
  content: "\f61e";
}

.bi-window-sidebar::before {
  content: "\f61f";
}

.bi-window::before {
  content: "\f620";
}

.bi-wrench::before {
  content: "\f621";
}

.bi-x-circle-fill::before {
  content: "\f622";
}

.bi-x-circle::before {
  content: "\f623";
}

.bi-x-diamond-fill::before {
  content: "\f624";
}

.bi-x-diamond::before {
  content: "\f625";
}

.bi-x-octagon-fill::before {
  content: "\f626";
}

.bi-x-octagon::before {
  content: "\f627";
}

.bi-x-square-fill::before {
  content: "\f628";
}

.bi-x-square::before {
  content: "\f629";
}

.bi-x::before {
  content: "\f62a";
}

.bi-youtube::before {
  content: "\f62b";
}

.bi-zoom-in::before {
  content: "\f62c";
}

.bi-zoom-out::before {
  content: "\f62d";
}

.bi-bank::before {
  content: "\f62e";
}

.bi-bank2::before {
  content: "\f62f";
}

.bi-bell-slash-fill::before {
  content: "\f630";
}

.bi-bell-slash::before {
  content: "\f631";
}

.bi-cash-coin::before {
  content: "\f632";
}

.bi-check-lg::before {
  content: "\f633";
}

.bi-coin::before {
  content: "\f634";
}

.bi-currency-bitcoin::before {
  content: "\f635";
}

.bi-currency-dollar::before {
  content: "\f636";
}

.bi-currency-euro::before {
  content: "\f637";
}

.bi-currency-exchange::before {
  content: "\f638";
}

.bi-currency-pound::before {
  content: "\f639";
}

.bi-currency-yen::before {
  content: "\f63a";
}

.bi-dash-lg::before {
  content: "\f63b";
}

.bi-exclamation-lg::before {
  content: "\f63c";
}

.bi-file-earmark-pdf-fill::before {
  content: "\f63d";
}

.bi-file-earmark-pdf::before {
  content: "\f63e";
}

.bi-file-pdf-fill::before {
  content: "\f63f";
}

.bi-file-pdf::before {
  content: "\f640";
}

.bi-gender-ambiguous::before {
  content: "\f641";
}

.bi-gender-female::before {
  content: "\f642";
}

.bi-gender-male::before {
  content: "\f643";
}

.bi-gender-trans::before {
  content: "\f644";
}

.bi-headset-vr::before {
  content: "\f645";
}

.bi-info-lg::before {
  content: "\f646";
}

.bi-mastodon::before {
  content: "\f647";
}

.bi-messenger::before {
  content: "\f648";
}

.bi-piggy-bank-fill::before {
  content: "\f649";
}

.bi-piggy-bank::before {
  content: "\f64a";
}

.bi-pin-map-fill::before {
  content: "\f64b";
}

.bi-pin-map::before {
  content: "\f64c";
}

.bi-plus-lg::before {
  content: "\f64d";
}

.bi-question-lg::before {
  content: "\f64e";
}

.bi-recycle::before {
  content: "\f64f";
}

.bi-reddit::before {
  content: "\f650";
}

.bi-safe-fill::before {
  content: "\f651";
}

.bi-safe2-fill::before {
  content: "\f652";
}

.bi-safe2::before {
  content: "\f653";
}

.bi-sd-card-fill::before {
  content: "\f654";
}

.bi-sd-card::before {
  content: "\f655";
}

.bi-skype::before {
  content: "\f656";
}

.bi-slash-lg::before {
  content: "\f657";
}

.bi-translate::before {
  content: "\f658";
}

.bi-x-lg::before {
  content: "\f659";
}

.bi-safe::before {
  content: "\f65a";
}

.bi-apple::before {
  content: "\f65b";
}

.bi-microsoft::before {
  content: "\f65d";
}

.bi-windows::before {
  content: "\f65e";
}

.bi-behance::before {
  content: "\f65c";
}

.bi-dribbble::before {
  content: "\f65f";
}

.bi-line::before {
  content: "\f660";
}

.bi-medium::before {
  content: "\f661";
}

.bi-paypal::before {
  content: "\f662";
}

.bi-pinterest::before {
  content: "\f663";
}

.bi-signal::before {
  content: "\f664";
}

.bi-snapchat::before {
  content: "\f665";
}

.bi-spotify::before {
  content: "\f666";
}

.bi-stack-overflow::before {
  content: "\f667";
}

.bi-strava::before {
  content: "\f668";
}

.bi-wordpress::before {
  content: "\f669";
}

.bi-vimeo::before {
  content: "\f66a";
}

.bi-activity::before {
  content: "\f66b";
}

.bi-easel2-fill::before {
  content: "\f66c";
}

.bi-easel2::before {
  content: "\f66d";
}

.bi-easel3-fill::before {
  content: "\f66e";
}

.bi-easel3::before {
  content: "\f66f";
}

.bi-fan::before {
  content: "\f670";
}

.bi-fingerprint::before {
  content: "\f671";
}

.bi-graph-down-arrow::before {
  content: "\f672";
}

.bi-graph-up-arrow::before {
  content: "\f673";
}

.bi-hypnotize::before {
  content: "\f674";
}

.bi-magic::before {
  content: "\f675";
}

.bi-person-rolodex::before {
  content: "\f676";
}

.bi-person-video::before {
  content: "\f677";
}

.bi-person-video2::before {
  content: "\f678";
}

.bi-person-video3::before {
  content: "\f679";
}

.bi-person-workspace::before {
  content: "\f67a";
}

.bi-radioactive::before {
  content: "\f67b";
}

.bi-webcam-fill::before {
  content: "\f67c";
}

.bi-webcam::before {
  content: "\f67d";
}

.bi-yin-yang::before {
  content: "\f67e";
}

.bi-bandaid-fill::before {
  content: "\f680";
}

.bi-bandaid::before {
  content: "\f681";
}

.bi-bluetooth::before {
  content: "\f682";
}

.bi-body-text::before {
  content: "\f683";
}

.bi-boombox::before {
  content: "\f684";
}

.bi-boxes::before {
  content: "\f685";
}

.bi-dpad-fill::before {
  content: "\f686";
}

.bi-dpad::before {
  content: "\f687";
}

.bi-ear-fill::before {
  content: "\f688";
}

.bi-ear::before {
  content: "\f689";
}

.bi-envelope-check-fill::before {
  content: "\f68b";
}

.bi-envelope-check::before {
  content: "\f68c";
}

.bi-envelope-dash-fill::before {
  content: "\f68e";
}

.bi-envelope-dash::before {
  content: "\f68f";
}

.bi-envelope-exclamation-fill::before {
  content: "\f691";
}

.bi-envelope-exclamation::before {
  content: "\f692";
}

.bi-envelope-plus-fill::before {
  content: "\f693";
}

.bi-envelope-plus::before {
  content: "\f694";
}

.bi-envelope-slash-fill::before {
  content: "\f696";
}

.bi-envelope-slash::before {
  content: "\f697";
}

.bi-envelope-x-fill::before {
  content: "\f699";
}

.bi-envelope-x::before {
  content: "\f69a";
}

.bi-explicit-fill::before {
  content: "\f69b";
}

.bi-explicit::before {
  content: "\f69c";
}

.bi-git::before {
  content: "\f69d";
}

.bi-infinity::before {
  content: "\f69e";
}

.bi-list-columns-reverse::before {
  content: "\f69f";
}

.bi-list-columns::before {
  content: "\f6a0";
}

.bi-meta::before {
  content: "\f6a1";
}

.bi-nintendo-switch::before {
  content: "\f6a4";
}

.bi-pc-display-horizontal::before {
  content: "\f6a5";
}

.bi-pc-display::before {
  content: "\f6a6";
}

.bi-pc-horizontal::before {
  content: "\f6a7";
}

.bi-pc::before {
  content: "\f6a8";
}

.bi-playstation::before {
  content: "\f6a9";
}

.bi-plus-slash-minus::before {
  content: "\f6aa";
}

.bi-projector-fill::before {
  content: "\f6ab";
}

.bi-projector::before {
  content: "\f6ac";
}

.bi-qr-code-scan::before {
  content: "\f6ad";
}

.bi-qr-code::before {
  content: "\f6ae";
}

.bi-quora::before {
  content: "\f6af";
}

.bi-quote::before {
  content: "\f6b0";
}

.bi-robot::before {
  content: "\f6b1";
}

.bi-send-check-fill::before {
  content: "\f6b2";
}

.bi-send-check::before {
  content: "\f6b3";
}

.bi-send-dash-fill::before {
  content: "\f6b4";
}

.bi-send-dash::before {
  content: "\f6b5";
}

.bi-send-exclamation-fill::before {
  content: "\f6b7";
}

.bi-send-exclamation::before {
  content: "\f6b8";
}

.bi-send-fill::before {
  content: "\f6b9";
}

.bi-send-plus-fill::before {
  content: "\f6ba";
}

.bi-send-plus::before {
  content: "\f6bb";
}

.bi-send-slash-fill::before {
  content: "\f6bc";
}

.bi-send-slash::before {
  content: "\f6bd";
}

.bi-send-x-fill::before {
  content: "\f6be";
}

.bi-send-x::before {
  content: "\f6bf";
}

.bi-send::before {
  content: "\f6c0";
}

.bi-steam::before {
  content: "\f6c1";
}

.bi-terminal-dash::before {
  content: "\f6c3";
}

.bi-terminal-plus::before {
  content: "\f6c4";
}

.bi-terminal-split::before {
  content: "\f6c5";
}

.bi-ticket-detailed-fill::before {
  content: "\f6c6";
}

.bi-ticket-detailed::before {
  content: "\f6c7";
}

.bi-ticket-fill::before {
  content: "\f6c8";
}

.bi-ticket-perforated-fill::before {
  content: "\f6c9";
}

.bi-ticket-perforated::before {
  content: "\f6ca";
}

.bi-ticket::before {
  content: "\f6cb";
}

.bi-tiktok::before {
  content: "\f6cc";
}

.bi-window-dash::before {
  content: "\f6cd";
}

.bi-window-desktop::before {
  content: "\f6ce";
}

.bi-window-fullscreen::before {
  content: "\f6cf";
}

.bi-window-plus::before {
  content: "\f6d0";
}

.bi-window-split::before {
  content: "\f6d1";
}

.bi-window-stack::before {
  content: "\f6d2";
}

.bi-window-x::before {
  content: "\f6d3";
}

.bi-xbox::before {
  content: "\f6d4";
}

.bi-ethernet::before {
  content: "\f6d5";
}

.bi-hdmi-fill::before {
  content: "\f6d6";
}

.bi-hdmi::before {
  content: "\f6d7";
}

.bi-usb-c-fill::before {
  content: "\f6d8";
}

.bi-usb-c::before {
  content: "\f6d9";
}

.bi-usb-fill::before {
  content: "\f6da";
}

.bi-usb-plug-fill::before {
  content: "\f6db";
}

.bi-usb-plug::before {
  content: "\f6dc";
}

.bi-usb-symbol::before {
  content: "\f6dd";
}

.bi-usb::before {
  content: "\f6de";
}

.bi-boombox-fill::before {
  content: "\f6df";
}

.bi-displayport::before {
  content: "\f6e1";
}

.bi-gpu-card::before {
  content: "\f6e2";
}

.bi-memory::before {
  content: "\f6e3";
}

.bi-modem-fill::before {
  content: "\f6e4";
}

.bi-modem::before {
  content: "\f6e5";
}

.bi-motherboard-fill::before {
  content: "\f6e6";
}

.bi-motherboard::before {
  content: "\f6e7";
}

.bi-optical-audio-fill::before {
  content: "\f6e8";
}

.bi-optical-audio::before {
  content: "\f6e9";
}

.bi-pci-card::before {
  content: "\f6ea";
}

.bi-router-fill::before {
  content: "\f6eb";
}

.bi-router::before {
  content: "\f6ec";
}

.bi-thunderbolt-fill::before {
  content: "\f6ef";
}

.bi-thunderbolt::before {
  content: "\f6f0";
}

.bi-usb-drive-fill::before {
  content: "\f6f1";
}

.bi-usb-drive::before {
  content: "\f6f2";
}

.bi-usb-micro-fill::before {
  content: "\f6f3";
}

.bi-usb-micro::before {
  content: "\f6f4";
}

.bi-usb-mini-fill::before {
  content: "\f6f5";
}

.bi-usb-mini::before {
  content: "\f6f6";
}

.bi-cloud-haze2::before {
  content: "\f6f7";
}

.bi-device-hdd-fill::before {
  content: "\f6f8";
}

.bi-device-hdd::before {
  content: "\f6f9";
}

.bi-device-ssd-fill::before {
  content: "\f6fa";
}

.bi-device-ssd::before {
  content: "\f6fb";
}

.bi-displayport-fill::before {
  content: "\f6fc";
}

.bi-mortarboard-fill::before {
  content: "\f6fd";
}

.bi-mortarboard::before {
  content: "\f6fe";
}

.bi-terminal-x::before {
  content: "\f6ff";
}

.bi-arrow-through-heart-fill::before {
  content: "\f700";
}

.bi-arrow-through-heart::before {
  content: "\f701";
}

.bi-badge-sd-fill::before {
  content: "\f702";
}

.bi-badge-sd::before {
  content: "\f703";
}

.bi-bag-heart-fill::before {
  content: "\f704";
}

.bi-bag-heart::before {
  content: "\f705";
}

.bi-balloon-fill::before {
  content: "\f706";
}

.bi-balloon-heart-fill::before {
  content: "\f707";
}

.bi-balloon-heart::before {
  content: "\f708";
}

.bi-balloon::before {
  content: "\f709";
}

.bi-box2-fill::before {
  content: "\f70a";
}

.bi-box2-heart-fill::before {
  content: "\f70b";
}

.bi-box2-heart::before {
  content: "\f70c";
}

.bi-box2::before {
  content: "\f70d";
}

.bi-braces-asterisk::before {
  content: "\f70e";
}

.bi-calendar-heart-fill::before {
  content: "\f70f";
}

.bi-calendar-heart::before {
  content: "\f710";
}

.bi-calendar2-heart-fill::before {
  content: "\f711";
}

.bi-calendar2-heart::before {
  content: "\f712";
}

.bi-chat-heart-fill::before {
  content: "\f713";
}

.bi-chat-heart::before {
  content: "\f714";
}

.bi-chat-left-heart-fill::before {
  content: "\f715";
}

.bi-chat-left-heart::before {
  content: "\f716";
}

.bi-chat-right-heart-fill::before {
  content: "\f717";
}

.bi-chat-right-heart::before {
  content: "\f718";
}

.bi-chat-square-heart-fill::before {
  content: "\f719";
}

.bi-chat-square-heart::before {
  content: "\f71a";
}

.bi-clipboard-check-fill::before {
  content: "\f71b";
}

.bi-clipboard-data-fill::before {
  content: "\f71c";
}

.bi-clipboard-fill::before {
  content: "\f71d";
}

.bi-clipboard-heart-fill::before {
  content: "\f71e";
}

.bi-clipboard-heart::before {
  content: "\f71f";
}

.bi-clipboard-minus-fill::before {
  content: "\f720";
}

.bi-clipboard-plus-fill::before {
  content: "\f721";
}

.bi-clipboard-pulse::before {
  content: "\f722";
}

.bi-clipboard-x-fill::before {
  content: "\f723";
}

.bi-clipboard2-check-fill::before {
  content: "\f724";
}

.bi-clipboard2-check::before {
  content: "\f725";
}

.bi-clipboard2-data-fill::before {
  content: "\f726";
}

.bi-clipboard2-data::before {
  content: "\f727";
}

.bi-clipboard2-fill::before {
  content: "\f728";
}

.bi-clipboard2-heart-fill::before {
  content: "\f729";
}

.bi-clipboard2-heart::before {
  content: "\f72a";
}

.bi-clipboard2-minus-fill::before {
  content: "\f72b";
}

.bi-clipboard2-minus::before {
  content: "\f72c";
}

.bi-clipboard2-plus-fill::before {
  content: "\f72d";
}

.bi-clipboard2-plus::before {
  content: "\f72e";
}

.bi-clipboard2-pulse-fill::before {
  content: "\f72f";
}

.bi-clipboard2-pulse::before {
  content: "\f730";
}

.bi-clipboard2-x-fill::before {
  content: "\f731";
}

.bi-clipboard2-x::before {
  content: "\f732";
}

.bi-clipboard2::before {
  content: "\f733";
}

.bi-emoji-kiss-fill::before {
  content: "\f734";
}

.bi-emoji-kiss::before {
  content: "\f735";
}

.bi-envelope-heart-fill::before {
  content: "\f736";
}

.bi-envelope-heart::before {
  content: "\f737";
}

.bi-envelope-open-heart-fill::before {
  content: "\f738";
}

.bi-envelope-open-heart::before {
  content: "\f739";
}

.bi-envelope-paper-fill::before {
  content: "\f73a";
}

.bi-envelope-paper-heart-fill::before {
  content: "\f73b";
}

.bi-envelope-paper-heart::before {
  content: "\f73c";
}

.bi-envelope-paper::before {
  content: "\f73d";
}

.bi-filetype-aac::before {
  content: "\f73e";
}

.bi-filetype-ai::before {
  content: "\f73f";
}

.bi-filetype-bmp::before {
  content: "\f740";
}

.bi-filetype-cs::before {
  content: "\f741";
}

.bi-filetype-css::before {
  content: "\f742";
}

.bi-filetype-csv::before {
  content: "\f743";
}

.bi-filetype-doc::before {
  content: "\f744";
}

.bi-filetype-docx::before {
  content: "\f745";
}

.bi-filetype-exe::before {
  content: "\f746";
}

.bi-filetype-gif::before {
  content: "\f747";
}

.bi-filetype-heic::before {
  content: "\f748";
}

.bi-filetype-html::before {
  content: "\f749";
}

.bi-filetype-java::before {
  content: "\f74a";
}

.bi-filetype-jpg::before {
  content: "\f74b";
}

.bi-filetype-js::before {
  content: "\f74c";
}

.bi-filetype-jsx::before {
  content: "\f74d";
}

.bi-filetype-key::before {
  content: "\f74e";
}

.bi-filetype-m4p::before {
  content: "\f74f";
}

.bi-filetype-md::before {
  content: "\f750";
}

.bi-filetype-mdx::before {
  content: "\f751";
}

.bi-filetype-mov::before {
  content: "\f752";
}

.bi-filetype-mp3::before {
  content: "\f753";
}

.bi-filetype-mp4::before {
  content: "\f754";
}

.bi-filetype-otf::before {
  content: "\f755";
}

.bi-filetype-pdf::before {
  content: "\f756";
}

.bi-filetype-php::before {
  content: "\f757";
}

.bi-filetype-png::before {
  content: "\f758";
}

.bi-filetype-ppt::before {
  content: "\f75a";
}

.bi-filetype-psd::before {
  content: "\f75b";
}

.bi-filetype-py::before {
  content: "\f75c";
}

.bi-filetype-raw::before {
  content: "\f75d";
}

.bi-filetype-rb::before {
  content: "\f75e";
}

.bi-filetype-sass::before {
  content: "\f75f";
}

.bi-filetype-scss::before {
  content: "\f760";
}

.bi-filetype-sh::before {
  content: "\f761";
}

.bi-filetype-svg::before {
  content: "\f762";
}

.bi-filetype-tiff::before {
  content: "\f763";
}

.bi-filetype-tsx::before {
  content: "\f764";
}

.bi-filetype-ttf::before {
  content: "\f765";
}

.bi-filetype-txt::before {
  content: "\f766";
}

.bi-filetype-wav::before {
  content: "\f767";
}

.bi-filetype-woff::before {
  content: "\f768";
}

.bi-filetype-xls::before {
  content: "\f76a";
}

.bi-filetype-xml::before {
  content: "\f76b";
}

.bi-filetype-yml::before {
  content: "\f76c";
}

.bi-heart-arrow::before {
  content: "\f76d";
}

.bi-heart-pulse-fill::before {
  content: "\f76e";
}

.bi-heart-pulse::before {
  content: "\f76f";
}

.bi-heartbreak-fill::before {
  content: "\f770";
}

.bi-heartbreak::before {
  content: "\f771";
}

.bi-hearts::before {
  content: "\f772";
}

.bi-hospital-fill::before {
  content: "\f773";
}

.bi-hospital::before {
  content: "\f774";
}

.bi-house-heart-fill::before {
  content: "\f775";
}

.bi-house-heart::before {
  content: "\f776";
}

.bi-incognito::before {
  content: "\f777";
}

.bi-magnet-fill::before {
  content: "\f778";
}

.bi-magnet::before {
  content: "\f779";
}

.bi-person-heart::before {
  content: "\f77a";
}

.bi-person-hearts::before {
  content: "\f77b";
}

.bi-phone-flip::before {
  content: "\f77c";
}

.bi-plugin::before {
  content: "\f77d";
}

.bi-postage-fill::before {
  content: "\f77e";
}

.bi-postage-heart-fill::before {
  content: "\f77f";
}

.bi-postage-heart::before {
  content: "\f780";
}

.bi-postage::before {
  content: "\f781";
}

.bi-postcard-fill::before {
  content: "\f782";
}

.bi-postcard-heart-fill::before {
  content: "\f783";
}

.bi-postcard-heart::before {
  content: "\f784";
}

.bi-postcard::before {
  content: "\f785";
}

.bi-search-heart-fill::before {
  content: "\f786";
}

.bi-search-heart::before {
  content: "\f787";
}

.bi-sliders2-vertical::before {
  content: "\f788";
}

.bi-sliders2::before {
  content: "\f789";
}

.bi-trash3-fill::before {
  content: "\f78a";
}

.bi-trash3::before {
  content: "\f78b";
}

.bi-valentine::before {
  content: "\f78c";
}

.bi-valentine2::before {
  content: "\f78d";
}

.bi-wrench-adjustable-circle-fill::before {
  content: "\f78e";
}

.bi-wrench-adjustable-circle::before {
  content: "\f78f";
}

.bi-wrench-adjustable::before {
  content: "\f790";
}

.bi-filetype-json::before {
  content: "\f791";
}

.bi-filetype-pptx::before {
  content: "\f792";
}

.bi-filetype-xlsx::before {
  content: "\f793";
}

.bi-1-circle-fill::before {
  content: "\f796";
}

.bi-1-circle::before {
  content: "\f797";
}

.bi-1-square-fill::before {
  content: "\f798";
}

.bi-1-square::before {
  content: "\f799";
}

.bi-2-circle-fill::before {
  content: "\f79c";
}

.bi-2-circle::before {
  content: "\f79d";
}

.bi-2-square-fill::before {
  content: "\f79e";
}

.bi-2-square::before {
  content: "\f79f";
}

.bi-3-circle-fill::before {
  content: "\f7a2";
}

.bi-3-circle::before {
  content: "\f7a3";
}

.bi-3-square-fill::before {
  content: "\f7a4";
}

.bi-3-square::before {
  content: "\f7a5";
}

.bi-4-circle-fill::before {
  content: "\f7a8";
}

.bi-4-circle::before {
  content: "\f7a9";
}

.bi-4-square-fill::before {
  content: "\f7aa";
}

.bi-4-square::before {
  content: "\f7ab";
}

.bi-5-circle-fill::before {
  content: "\f7ae";
}

.bi-5-circle::before {
  content: "\f7af";
}

.bi-5-square-fill::before {
  content: "\f7b0";
}

.bi-5-square::before {
  content: "\f7b1";
}

.bi-6-circle-fill::before {
  content: "\f7b4";
}

.bi-6-circle::before {
  content: "\f7b5";
}

.bi-6-square-fill::before {
  content: "\f7b6";
}

.bi-6-square::before {
  content: "\f7b7";
}

.bi-7-circle-fill::before {
  content: "\f7ba";
}

.bi-7-circle::before {
  content: "\f7bb";
}

.bi-7-square-fill::before {
  content: "\f7bc";
}

.bi-7-square::before {
  content: "\f7bd";
}

.bi-8-circle-fill::before {
  content: "\f7c0";
}

.bi-8-circle::before {
  content: "\f7c1";
}

.bi-8-square-fill::before {
  content: "\f7c2";
}

.bi-8-square::before {
  content: "\f7c3";
}

.bi-9-circle-fill::before {
  content: "\f7c6";
}

.bi-9-circle::before {
  content: "\f7c7";
}

.bi-9-square-fill::before {
  content: "\f7c8";
}

.bi-9-square::before {
  content: "\f7c9";
}

.bi-airplane-engines-fill::before {
  content: "\f7ca";
}

.bi-airplane-engines::before {
  content: "\f7cb";
}

.bi-airplane-fill::before {
  content: "\f7cc";
}

.bi-airplane::before {
  content: "\f7cd";
}

.bi-alexa::before {
  content: "\f7ce";
}

.bi-alipay::before {
  content: "\f7cf";
}

.bi-android::before {
  content: "\f7d0";
}

.bi-android2::before {
  content: "\f7d1";
}

.bi-box-fill::before {
  content: "\f7d2";
}

.bi-box-seam-fill::before {
  content: "\f7d3";
}

.bi-browser-chrome::before {
  content: "\f7d4";
}

.bi-browser-edge::before {
  content: "\f7d5";
}

.bi-browser-firefox::before {
  content: "\f7d6";
}

.bi-browser-safari::before {
  content: "\f7d7";
}

.bi-c-circle-fill::before {
  content: "\f7da";
}

.bi-c-circle::before {
  content: "\f7db";
}

.bi-c-square-fill::before {
  content: "\f7dc";
}

.bi-c-square::before {
  content: "\f7dd";
}

.bi-capsule-pill::before {
  content: "\f7de";
}

.bi-capsule::before {
  content: "\f7df";
}

.bi-car-front-fill::before {
  content: "\f7e0";
}

.bi-car-front::before {
  content: "\f7e1";
}

.bi-cassette-fill::before {
  content: "\f7e2";
}

.bi-cassette::before {
  content: "\f7e3";
}

.bi-cc-circle-fill::before {
  content: "\f7e6";
}

.bi-cc-circle::before {
  content: "\f7e7";
}

.bi-cc-square-fill::before {
  content: "\f7e8";
}

.bi-cc-square::before {
  content: "\f7e9";
}

.bi-cup-hot-fill::before {
  content: "\f7ea";
}

.bi-cup-hot::before {
  content: "\f7eb";
}

.bi-currency-rupee::before {
  content: "\f7ec";
}

.bi-dropbox::before {
  content: "\f7ed";
}

.bi-escape::before {
  content: "\f7ee";
}

.bi-fast-forward-btn-fill::before {
  content: "\f7ef";
}

.bi-fast-forward-btn::before {
  content: "\f7f0";
}

.bi-fast-forward-circle-fill::before {
  content: "\f7f1";
}

.bi-fast-forward-circle::before {
  content: "\f7f2";
}

.bi-fast-forward-fill::before {
  content: "\f7f3";
}

.bi-fast-forward::before {
  content: "\f7f4";
}

.bi-filetype-sql::before {
  content: "\f7f5";
}

.bi-fire::before {
  content: "\f7f6";
}

.bi-google-play::before {
  content: "\f7f7";
}

.bi-h-circle-fill::before {
  content: "\f7fa";
}

.bi-h-circle::before {
  content: "\f7fb";
}

.bi-h-square-fill::before {
  content: "\f7fc";
}

.bi-h-square::before {
  content: "\f7fd";
}

.bi-indent::before {
  content: "\f7fe";
}

.bi-lungs-fill::before {
  content: "\f7ff";
}

.bi-lungs::before {
  content: "\f800";
}

.bi-microsoft-teams::before {
  content: "\f801";
}

.bi-p-circle-fill::before {
  content: "\f804";
}

.bi-p-circle::before {
  content: "\f805";
}

.bi-p-square-fill::before {
  content: "\f806";
}

.bi-p-square::before {
  content: "\f807";
}

.bi-pass-fill::before {
  content: "\f808";
}

.bi-pass::before {
  content: "\f809";
}

.bi-prescription::before {
  content: "\f80a";
}

.bi-prescription2::before {
  content: "\f80b";
}

.bi-r-circle-fill::before {
  content: "\f80e";
}

.bi-r-circle::before {
  content: "\f80f";
}

.bi-r-square-fill::before {
  content: "\f810";
}

.bi-r-square::before {
  content: "\f811";
}

.bi-repeat-1::before {
  content: "\f812";
}

.bi-repeat::before {
  content: "\f813";
}

.bi-rewind-btn-fill::before {
  content: "\f814";
}

.bi-rewind-btn::before {
  content: "\f815";
}

.bi-rewind-circle-fill::before {
  content: "\f816";
}

.bi-rewind-circle::before {
  content: "\f817";
}

.bi-rewind-fill::before {
  content: "\f818";
}

.bi-rewind::before {
  content: "\f819";
}

.bi-train-freight-front-fill::before {
  content: "\f81a";
}

.bi-train-freight-front::before {
  content: "\f81b";
}

.bi-train-front-fill::before {
  content: "\f81c";
}

.bi-train-front::before {
  content: "\f81d";
}

.bi-train-lightrail-front-fill::before {
  content: "\f81e";
}

.bi-train-lightrail-front::before {
  content: "\f81f";
}

.bi-truck-front-fill::before {
  content: "\f820";
}

.bi-truck-front::before {
  content: "\f821";
}

.bi-ubuntu::before {
  content: "\f822";
}

.bi-unindent::before {
  content: "\f823";
}

.bi-unity::before {
  content: "\f824";
}

.bi-universal-access-circle::before {
  content: "\f825";
}

.bi-universal-access::before {
  content: "\f826";
}

.bi-virus::before {
  content: "\f827";
}

.bi-virus2::before {
  content: "\f828";
}

.bi-wechat::before {
  content: "\f829";
}

.bi-yelp::before {
  content: "\f82a";
}

.bi-sign-stop-fill::before {
  content: "\f82b";
}

.bi-sign-stop-lights-fill::before {
  content: "\f82c";
}

.bi-sign-stop-lights::before {
  content: "\f82d";
}

.bi-sign-stop::before {
  content: "\f82e";
}

.bi-sign-turn-left-fill::before {
  content: "\f82f";
}

.bi-sign-turn-left::before {
  content: "\f830";
}

.bi-sign-turn-right-fill::before {
  content: "\f831";
}

.bi-sign-turn-right::before {
  content: "\f832";
}

.bi-sign-turn-slight-left-fill::before {
  content: "\f833";
}

.bi-sign-turn-slight-left::before {
  content: "\f834";
}

.bi-sign-turn-slight-right-fill::before {
  content: "\f835";
}

.bi-sign-turn-slight-right::before {
  content: "\f836";
}

.bi-sign-yield-fill::before {
  content: "\f837";
}

.bi-sign-yield::before {
  content: "\f838";
}

.bi-ev-station-fill::before {
  content: "\f839";
}

.bi-ev-station::before {
  content: "\f83a";
}

.bi-fuel-pump-diesel-fill::before {
  content: "\f83b";
}

.bi-fuel-pump-diesel::before {
  content: "\f83c";
}

.bi-fuel-pump-fill::before {
  content: "\f83d";
}

.bi-fuel-pump::before {
  content: "\f83e";
}

.bi-0-circle-fill::before {
  content: "\f83f";
}

.bi-0-circle::before {
  content: "\f840";
}

.bi-0-square-fill::before {
  content: "\f841";
}

.bi-0-square::before {
  content: "\f842";
}

.bi-rocket-fill::before {
  content: "\f843";
}

.bi-rocket-takeoff-fill::before {
  content: "\f844";
}

.bi-rocket-takeoff::before {
  content: "\f845";
}

.bi-rocket::before {
  content: "\f846";
}

.bi-stripe::before {
  content: "\f847";
}

.bi-subscript::before {
  content: "\f848";
}

.bi-superscript::before {
  content: "\f849";
}

.bi-trello::before {
  content: "\f84a";
}

.bi-envelope-at-fill::before {
  content: "\f84b";
}

.bi-envelope-at::before {
  content: "\f84c";
}

.bi-regex::before {
  content: "\f84d";
}

.bi-text-wrap::before {
  content: "\f84e";
}

.bi-sign-dead-end-fill::before {
  content: "\f84f";
}

.bi-sign-dead-end::before {
  content: "\f850";
}

.bi-sign-do-not-enter-fill::before {
  content: "\f851";
}

.bi-sign-do-not-enter::before {
  content: "\f852";
}

.bi-sign-intersection-fill::before {
  content: "\f853";
}

.bi-sign-intersection-side-fill::before {
  content: "\f854";
}

.bi-sign-intersection-side::before {
  content: "\f855";
}

.bi-sign-intersection-t-fill::before {
  content: "\f856";
}

.bi-sign-intersection-t::before {
  content: "\f857";
}

.bi-sign-intersection-y-fill::before {
  content: "\f858";
}

.bi-sign-intersection-y::before {
  content: "\f859";
}

.bi-sign-intersection::before {
  content: "\f85a";
}

.bi-sign-merge-left-fill::before {
  content: "\f85b";
}

.bi-sign-merge-left::before {
  content: "\f85c";
}

.bi-sign-merge-right-fill::before {
  content: "\f85d";
}

.bi-sign-merge-right::before {
  content: "\f85e";
}

.bi-sign-no-left-turn-fill::before {
  content: "\f85f";
}

.bi-sign-no-left-turn::before {
  content: "\f860";
}

.bi-sign-no-parking-fill::before {
  content: "\f861";
}

.bi-sign-no-parking::before {
  content: "\f862";
}

.bi-sign-no-right-turn-fill::before {
  content: "\f863";
}

.bi-sign-no-right-turn::before {
  content: "\f864";
}

.bi-sign-railroad-fill::before {
  content: "\f865";
}

.bi-sign-railroad::before {
  content: "\f866";
}

.bi-building-add::before {
  content: "\f867";
}

.bi-building-check::before {
  content: "\f868";
}

.bi-building-dash::before {
  content: "\f869";
}

.bi-building-down::before {
  content: "\f86a";
}

.bi-building-exclamation::before {
  content: "\f86b";
}

.bi-building-fill-add::before {
  content: "\f86c";
}

.bi-building-fill-check::before {
  content: "\f86d";
}

.bi-building-fill-dash::before {
  content: "\f86e";
}

.bi-building-fill-down::before {
  content: "\f86f";
}

.bi-building-fill-exclamation::before {
  content: "\f870";
}

.bi-building-fill-gear::before {
  content: "\f871";
}

.bi-building-fill-lock::before {
  content: "\f872";
}

.bi-building-fill-slash::before {
  content: "\f873";
}

.bi-building-fill-up::before {
  content: "\f874";
}

.bi-building-fill-x::before {
  content: "\f875";
}

.bi-building-fill::before {
  content: "\f876";
}

.bi-building-gear::before {
  content: "\f877";
}

.bi-building-lock::before {
  content: "\f878";
}

.bi-building-slash::before {
  content: "\f879";
}

.bi-building-up::before {
  content: "\f87a";
}

.bi-building-x::before {
  content: "\f87b";
}

.bi-buildings-fill::before {
  content: "\f87c";
}

.bi-buildings::before {
  content: "\f87d";
}

.bi-bus-front-fill::before {
  content: "\f87e";
}

.bi-bus-front::before {
  content: "\f87f";
}

.bi-ev-front-fill::before {
  content: "\f880";
}

.bi-ev-front::before {
  content: "\f881";
}

.bi-globe-americas::before {
  content: "\f882";
}

.bi-globe-asia-australia::before {
  content: "\f883";
}

.bi-globe-central-south-asia::before {
  content: "\f884";
}

.bi-globe-europe-africa::before {
  content: "\f885";
}

.bi-house-add-fill::before {
  content: "\f886";
}

.bi-house-add::before {
  content: "\f887";
}

.bi-house-check-fill::before {
  content: "\f888";
}

.bi-house-check::before {
  content: "\f889";
}

.bi-house-dash-fill::before {
  content: "\f88a";
}

.bi-house-dash::before {
  content: "\f88b";
}

.bi-house-down-fill::before {
  content: "\f88c";
}

.bi-house-down::before {
  content: "\f88d";
}

.bi-house-exclamation-fill::before {
  content: "\f88e";
}

.bi-house-exclamation::before {
  content: "\f88f";
}

.bi-house-gear-fill::before {
  content: "\f890";
}

.bi-house-gear::before {
  content: "\f891";
}

.bi-house-lock-fill::before {
  content: "\f892";
}

.bi-house-lock::before {
  content: "\f893";
}

.bi-house-slash-fill::before {
  content: "\f894";
}

.bi-house-slash::before {
  content: "\f895";
}

.bi-house-up-fill::before {
  content: "\f896";
}

.bi-house-up::before {
  content: "\f897";
}

.bi-house-x-fill::before {
  content: "\f898";
}

.bi-house-x::before {
  content: "\f899";
}

.bi-person-add::before {
  content: "\f89a";
}

.bi-person-down::before {
  content: "\f89b";
}

.bi-person-exclamation::before {
  content: "\f89c";
}

.bi-person-fill-add::before {
  content: "\f89d";
}

.bi-person-fill-check::before {
  content: "\f89e";
}

.bi-person-fill-dash::before {
  content: "\f89f";
}

.bi-person-fill-down::before {
  content: "\f8a0";
}

.bi-person-fill-exclamation::before {
  content: "\f8a1";
}

.bi-person-fill-gear::before {
  content: "\f8a2";
}

.bi-person-fill-lock::before {
  content: "\f8a3";
}

.bi-person-fill-slash::before {
  content: "\f8a4";
}

.bi-person-fill-up::before {
  content: "\f8a5";
}

.bi-person-fill-x::before {
  content: "\f8a6";
}

.bi-person-gear::before {
  content: "\f8a7";
}

.bi-person-lock::before {
  content: "\f8a8";
}

.bi-person-slash::before {
  content: "\f8a9";
}

.bi-person-up::before {
  content: "\f8aa";
}

.bi-scooter::before {
  content: "\f8ab";
}

.bi-taxi-front-fill::before {
  content: "\f8ac";
}

.bi-taxi-front::before {
  content: "\f8ad";
}

.bi-amd::before {
  content: "\f8ae";
}

.bi-database-add::before {
  content: "\f8af";
}

.bi-database-check::before {
  content: "\f8b0";
}

.bi-database-dash::before {
  content: "\f8b1";
}

.bi-database-down::before {
  content: "\f8b2";
}

.bi-database-exclamation::before {
  content: "\f8b3";
}

.bi-database-fill-add::before {
  content: "\f8b4";
}

.bi-database-fill-check::before {
  content: "\f8b5";
}

.bi-database-fill-dash::before {
  content: "\f8b6";
}

.bi-database-fill-down::before {
  content: "\f8b7";
}

.bi-database-fill-exclamation::before {
  content: "\f8b8";
}

.bi-database-fill-gear::before {
  content: "\f8b9";
}

.bi-database-fill-lock::before {
  content: "\f8ba";
}

.bi-database-fill-slash::before {
  content: "\f8bb";
}

.bi-database-fill-up::before {
  content: "\f8bc";
}

.bi-database-fill-x::before {
  content: "\f8bd";
}

.bi-database-fill::before {
  content: "\f8be";
}

.bi-database-gear::before {
  content: "\f8bf";
}

.bi-database-lock::before {
  content: "\f8c0";
}

.bi-database-slash::before {
  content: "\f8c1";
}

.bi-database-up::before {
  content: "\f8c2";
}

.bi-database-x::before {
  content: "\f8c3";
}

.bi-database::before {
  content: "\f8c4";
}

.bi-houses-fill::before {
  content: "\f8c5";
}

.bi-houses::before {
  content: "\f8c6";
}

.bi-nvidia::before {
  content: "\f8c7";
}

.bi-person-vcard-fill::before {
  content: "\f8c8";
}

.bi-person-vcard::before {
  content: "\f8c9";
}

.bi-sina-weibo::before {
  content: "\f8ca";
}

.bi-tencent-qq::before {
  content: "\f8cb";
}

.bi-wikipedia::before {
  content: "\f8cc";
}

.bi-alphabet-uppercase::before {
  content: "\f2a5";
}

.bi-alphabet::before {
  content: "\f68a";
}

.bi-amazon::before {
  content: "\f68d";
}

.bi-arrows-collapse-vertical::before {
  content: "\f690";
}

.bi-arrows-expand-vertical::before {
  content: "\f695";
}

.bi-arrows-vertical::before {
  content: "\f698";
}

.bi-arrows::before {
  content: "\f6a2";
}

.bi-ban-fill::before {
  content: "\f6a3";
}

.bi-ban::before {
  content: "\f6b6";
}

.bi-bing::before {
  content: "\f6c2";
}

.bi-cake::before {
  content: "\f6e0";
}

.bi-cake2::before {
  content: "\f6ed";
}

.bi-cookie::before {
  content: "\f6ee";
}

.bi-copy::before {
  content: "\f759";
}

.bi-crosshair::before {
  content: "\f769";
}

.bi-crosshair2::before {
  content: "\f794";
}

.bi-emoji-astonished-fill::before {
  content: "\f795";
}

.bi-emoji-astonished::before {
  content: "\f79a";
}

.bi-emoji-grimace-fill::before {
  content: "\f79b";
}

.bi-emoji-grimace::before {
  content: "\f7a0";
}

.bi-emoji-grin-fill::before {
  content: "\f7a1";
}

.bi-emoji-grin::before {
  content: "\f7a6";
}

.bi-emoji-surprise-fill::before {
  content: "\f7a7";
}

.bi-emoji-surprise::before {
  content: "\f7ac";
}

.bi-emoji-tear-fill::before {
  content: "\f7ad";
}

.bi-emoji-tear::before {
  content: "\f7b2";
}

.bi-envelope-arrow-down-fill::before {
  content: "\f7b3";
}

.bi-envelope-arrow-down::before {
  content: "\f7b8";
}

.bi-envelope-arrow-up-fill::before {
  content: "\f7b9";
}

.bi-envelope-arrow-up::before {
  content: "\f7be";
}

.bi-feather::before {
  content: "\f7bf";
}

.bi-feather2::before {
  content: "\f7c4";
}

.bi-floppy-fill::before {
  content: "\f7c5";
}

.bi-floppy::before {
  content: "\f7d8";
}

.bi-floppy2-fill::before {
  content: "\f7d9";
}

.bi-floppy2::before {
  content: "\f7e4";
}

.bi-gitlab::before {
  content: "\f7e5";
}

.bi-highlighter::before {
  content: "\f7f8";
}

.bi-marker-tip::before {
  content: "\f802";
}

.bi-nvme-fill::before {
  content: "\f803";
}

.bi-nvme::before {
  content: "\f80c";
}

.bi-opencollective::before {
  content: "\f80d";
}

.bi-pci-card-network::before {
  content: "\f8cd";
}

.bi-pci-card-sound::before {
  content: "\f8ce";
}

.bi-radar::before {
  content: "\f8cf";
}

.bi-send-arrow-down-fill::before {
  content: "\f8d0";
}

.bi-send-arrow-down::before {
  content: "\f8d1";
}

.bi-send-arrow-up-fill::before {
  content: "\f8d2";
}

.bi-send-arrow-up::before {
  content: "\f8d3";
}

.bi-sim-slash-fill::before {
  content: "\f8d4";
}

.bi-sim-slash::before {
  content: "\f8d5";
}

.bi-sourceforge::before {
  content: "\f8d6";
}

.bi-substack::before {
  content: "\f8d7";
}

.bi-threads-fill::before {
  content: "\f8d8";
}

.bi-threads::before {
  content: "\f8d9";
}

.bi-transparency::before {
  content: "\f8da";
}

.bi-twitter-x::before {
  content: "\f8db";
}

.bi-type-h4::before {
  content: "\f8dc";
}

.bi-type-h5::before {
  content: "\f8dd";
}

.bi-type-h6::before {
  content: "\f8de";
}

.bi-backpack-fill::before {
  content: "\f8df";
}

.bi-backpack::before {
  content: "\f8e0";
}

.bi-backpack2-fill::before {
  content: "\f8e1";
}

.bi-backpack2::before {
  content: "\f8e2";
}

.bi-backpack3-fill::before {
  content: "\f8e3";
}

.bi-backpack3::before {
  content: "\f8e4";
}

.bi-backpack4-fill::before {
  content: "\f8e5";
}

.bi-backpack4::before {
  content: "\f8e6";
}

.bi-brilliance::before {
  content: "\f8e7";
}

.bi-cake-fill::before {
  content: "\f8e8";
}

.bi-cake2-fill::before {
  content: "\f8e9";
}

.bi-duffle-fill::before {
  content: "\f8ea";
}

.bi-duffle::before {
  content: "\f8eb";
}

.bi-exposure::before {
  content: "\f8ec";
}

.bi-gender-neuter::before {
  content: "\f8ed";
}

.bi-highlights::before {
  content: "\f8ee";
}

.bi-luggage-fill::before {
  content: "\f8ef";
}

.bi-luggage::before {
  content: "\f8f0";
}

.bi-mailbox-flag::before {
  content: "\f8f1";
}

.bi-mailbox2-flag::before {
  content: "\f8f2";
}

.bi-noise-reduction::before {
  content: "\f8f3";
}

.bi-passport-fill::before {
  content: "\f8f4";
}

.bi-passport::before {
  content: "\f8f5";
}

.bi-person-arms-up::before {
  content: "\f8f6";
}

.bi-person-raised-hand::before {
  content: "\f8f7";
}

.bi-person-standing-dress::before {
  content: "\f8f8";
}

.bi-person-standing::before {
  content: "\f8f9";
}

.bi-person-walking::before {
  content: "\f8fa";
}

.bi-person-wheelchair::before {
  content: "\f8fb";
}

.bi-shadows::before {
  content: "\f8fc";
}

.bi-suitcase-fill::before {
  content: "\f8fd";
}

.bi-suitcase-lg-fill::before {
  content: "\f8fe";
}

.bi-suitcase-lg::before {
  content: "\f8ff";
}

.bi-suitcase::before {
  content: "豈";
}

.bi-suitcase2-fill::before {
  content: "更";
}

.bi-suitcase2::before {
  content: "車";
}

.bi-vignette::before {
  content: "賈";
}

html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
}

.body-inner {
  position: relative;
  overflow: hidden;
}

a:link, a:visited {
  text-decoration: none;
}

a {
  color: #0e5dae;
  transition: all ease 0.4s;
}

a:hover {
  text-decoration: none;
  color: #000;
}

a.read-more {
  color: #0e5dae;
  font-weight: 700;
  text-transform: uppercase;
}

a.read-more:hover {
  color: #222;
}

section,
.section-padding {
  padding: 50px 0;
  position: relative;
}

.no-padding {
  padding: 0;
}

.p-top-0 {
  padding-top: 0;
}

.p-bottom-0 {
  padding-bottom: 0;
}

.m-top-0 {
  margin-top: 0 !important;
}

.m-bottom-0 {
  margin-bottom: 0;
}

.media > .pull-left {
  margin-right: 20px;
}

img.banner {
  display: inline-block;
}

.on__mobile {
  display: none !important;
}

.gap-10 {
  clear: both;
  height: 10px;
}

.gap-20 {
  clear: both;
  height: 20px;
}

.gap-30 {
  clear: both;
  height: 30px;
}

.gap-40 {
  clear: both;
  height: 40px;
}

.gap-50 {
  clear: both;
  height: 50px;
}

.gap-60 {
  clear: both;
  height: 60px;
}

.gap-70 {
  clear: both;
  height: 70px;
}

.gap-80 {
  clear: both;
  height: 80px;
}

.mrb-30 {
  margin-bottom: 30px;
}

.mrb-80 {
  margin-bottom: -80px;
}

.mrt-0 {
  margin-top: 0 !important;
}

.pab {
  padding-bottom: 0;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mt-1 {
  margin-top: 1px;
}

.mr-1 {
  margin-right: 1px;
}

.ml-1 {
  margin-left: 1px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mt-2 {
  margin-top: 2px;
}

.mr-2 {
  margin-right: 2px;
}

.ml-2 {
  margin-left: 2px;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mt-3 {
  margin-top: 3px;
}

.mr-3 {
  margin-right: 3px;
}

.ml-3 {
  margin-left: 3px;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mt-4 {
  margin-top: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.ml-4 {
  margin-left: 4px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mt-5 {
  margin-top: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mt-6 {
  margin-top: 6px;
}

.mr-6 {
  margin-right: 6px;
}

.ml-6 {
  margin-left: 6px;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mt-7 {
  margin-top: 7px;
}

.mr-7 {
  margin-right: 7px;
}

.ml-7 {
  margin-left: 7px;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mt-8 {
  margin-top: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mt-9 {
  margin-top: 9px;
}

.mr-9 {
  margin-right: 9px;
}

.ml-9 {
  margin-left: 9px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mb-11 {
  margin-bottom: 11px !important;
}

.mt-11 {
  margin-top: 11px;
}

.mr-11 {
  margin-right: 11px;
}

.ml-11 {
  margin-left: 11px;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mt-12 {
  margin-top: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.mt-13 {
  margin-top: 13px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-13 {
  margin-right: 13px;
}

.ml-13 {
  margin-left: 13px;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mt-14 {
  margin-top: 14px;
}

.mr-14 {
  margin-right: 14px;
}

.ml-14 {
  margin-left: 14px;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mb-17 {
  margin-bottom: 17px !important;
}

.mt-17 {
  margin-top: 17px;
}

.mr-17 {
  margin-right: 17px;
}

.ml-17 {
  margin-left: 17px;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mt-18 {
  margin-top: 18px;
}

.mr-18 {
  margin-right: 18px;
}

.ml-18 {
  margin-left: 18px;
}

.mb-19 {
  margin-bottom: 19px !important;
}

.mt-19 {
  margin-top: 19px;
}

.mr-19 {
  margin-right: 19px;
}

.ml-19 {
  margin-left: 19px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

@media (max-width: 991px) {
  .res-margin {
    margin-bottom: 15px;
  }
  .mb-1 {
    margin-bottom: 0px;
  }
  .mr-1 {
    margin-right: 0px;
  }
  .ml-1 {
    margin-left: 0px;
  }
  .mb-2 {
    margin-bottom: 0px;
  }
  .mr-2 {
    margin-right: 0px;
  }
  .ml-2 {
    margin-left: 0px;
  }
  .mb-3 {
    margin-bottom: 0px;
  }
  .mr-3 {
    margin-right: 0px;
  }
  .ml-3 {
    margin-left: 0px;
  }
  .mb-4 {
    margin-bottom: 0px;
  }
  .mr-4 {
    margin-right: 0px;
  }
  .ml-4 {
    margin-left: 0px;
  }
  .mb-5 {
    margin-bottom: 0px;
  }
  .mr-5 {
    margin-right: 0px;
  }
  .ml-5 {
    margin-left: 0px;
  }
  .mb-6 {
    margin-bottom: 0px;
  }
  .mr-6 {
    margin-right: 0px;
  }
  .ml-6 {
    margin-left: 0px;
  }
  .mb-7 {
    margin-bottom: 0px;
  }
  .mr-7 {
    margin-right: 0px;
  }
  .ml-7 {
    margin-left: 0px;
  }
  .mb-8 {
    margin-bottom: 0px;
  }
  .mr-8 {
    margin-right: 0px;
  }
  .ml-8 {
    margin-left: 0px;
  }
  .mb-9 {
    margin-bottom: 0px;
  }
  .mr-9 {
    margin-right: 0px;
  }
  .ml-9 {
    margin-left: 0px;
  }
  .mb-10 {
    margin-bottom: 0px;
  }
  .mr-10 {
    margin-right: 0px;
  }
  .ml-10 {
    margin-left: 0px;
  }
  .mb-11 {
    margin-bottom: 0px;
  }
  .mr-11 {
    margin-right: 0px;
  }
  .ml-11 {
    margin-left: 0px;
  }
  .mb-12 {
    margin-bottom: 0px;
  }
  .mr-12 {
    margin-right: 0px;
  }
  .ml-12 {
    margin-left: 0px;
  }
  .mb-13 {
    margin-bottom: 0px;
  }
  .mr-13 {
    margin-right: 0px;
  }
  .ml-13 {
    margin-left: 0px;
  }
  .mb-14 {
    margin-bottom: 0px;
  }
  .mr-14 {
    margin-right: 0px;
  }
  .ml-14 {
    margin-left: 0px;
  }
  .mb-15 {
    margin-bottom: 0px;
  }
  .mr-15 {
    margin-right: 0px;
  }
  .ml-15 {
    margin-left: 0px;
  }
  .mb-16 {
    margin-bottom: 0px;
  }
  .mr-16 {
    margin-right: 0px;
  }
  .ml-16 {
    margin-left: 0px;
  }
  .mb-17 {
    margin-bottom: 0px;
  }
  .mr-17 {
    margin-right: 0px;
  }
  .ml-17 {
    margin-left: 0px;
  }
  .mb-18 {
    margin-bottom: 0px;
  }
  .mr-18 {
    margin-right: 0px;
  }
  .ml-18 {
    margin-left: 0px;
  }
  .mb-19 {
    margin-bottom: 0px;
  }
  .mr-19 {
    margin-right: 0px;
  }
  .ml-19 {
    margin-left: 0px;
  }
  .mb-20 {
    margin-bottom: 0px;
  }
  .mb-30 {
    margin-bottom: 0px;
  }
  .mr-20 {
    margin-right: 0px;
  }
  .ml-20 {
    margin-left: 0px;
  }
}
.no-bd {
  border: none !important;
}

.ts-gutter-10 {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}

.ts-gutter-10 > div {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.ts-gutter-20 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}

.ts-gutter-20 > div {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.ts-gutter-30 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}

.ts-gutter-30 > div {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.ts-gutter-40 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.ts-gutter-40 > div {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.ts-gutter-50 {
  margin-top: -25px !important;
  margin-bottom: -25px !important;
}

.ts-gutter-50 > div {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.ts-gutter-60 {
  margin-top: -30px !important;
  margin-bottom: -30px !important;
}

.ts-gutter-60 > div {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

a:focus {
  outline: 0;
}

img.pull-left {
  margin-right: 20px;
  margin-bottom: 20px;
}

img.pull-right {
  margin-left: 20px;
  margin-bottom: 20px;
}

ol, ul {
  margin-bottom: 20px;
}

.unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-padding {
  padding: 60px;
}

.solid-bg {
  background: #f9f9f9;
}

.bg-dark {
  background: #222;
}

.solid-row {
  background: #f0f0f0;
}

/* Dropcap */
.dropcap {
  font-size: 44px;
  line-height: 50px;
  float: left;
  margin: 0 12px 0 0;
  position: relative;
  text-transform: uppercase;
}

/* Video responsive */
.embed-responsive {
  padding-bottom: 56.25%;
  position: relative;
  display: block;
  height: 0;
  overflow: hidden;
}

body iframe {
  width: 100% !important;
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Input form */
.form-control {
  box-shadow: none;
  border: 1px solid #dadada;
  padding: 5px 20px;
  height: 40px;
  background: none;
  color: #959595;
  font-size: 12px;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #0e5dae;
}

.form-control.input-msg {
  height: 50px;
}

hr {
  background-color: #e7e7e7;
  border: 0;
  height: 1px;
  margin: 40px 0;
}

blockquote {
  position: relative;
  padding: 45px 20px 30px;
  border: 0;
  margin: 50px 0 0px;
  font-size: 18px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
  font-style: italic;
}

blockquote p {
  font-size: 18px;
}

blockquote::before {
  position: absolute;
  content: "\f10e";
  font-family: "FontAwesome";
  font-size: 24px;
  padding: 8px 15px;
  top: -10px;
  left: 50%;
  margin-left: -44px;
  color: #000;
}

blockquote.pull-left {
  padding-left: 15px;
  padding-right: 0;
  text-align: left;
  border-left: 5px solid #eee;
  border-right: 0;
}

cite {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  position: relative;
  margin-left: 40px;
  margin-right: 40px;
  display: inline-block;
  line-height: 24px;
}

cite::before, cite::after {
  position: absolute;
  top: 0;
  width: 30px;
  height: 1px;
  background: #6c757d;
  content: "";
  bottom: 0;
  margin: 10px 0 13px -40px;
}

cite::after {
  left: auto;
  right: 0;
  margin: 10px -40px 13px 0px;
}

.thumb-fullwidth img {
  width: 100%;
}

/* Button */
.btn {
  background: #0e5dae;
  color: #fff;
  padding: 10px 30px;
}

.btn:focus {
  box-shadow: none;
  background-color: #0e5dae;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.btn-primary,
.btn-dark {
  border: 0;
  border-radius: 0;
  padding: 12px 25px 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: 350ms;
}

.btn-white.btn-primary {
  background: #fff;
  color: #0e5dae;
}

.btn-primary {
  background: #0e5dae;
}

.btn-dark {
  background: #242427;
}

.btn-primary:hover,
.btn-dark:hover,
.btn-white.btn-primary:hover, .btn:foucs {
  background: #272d33;
  color: #fff;
}

.general-btn {
  clear: both;
  margin-top: 50px;
}

/* Ul, Ol */
ul, li {
  list-style: none;
}

.list-round,
.list-arrow,
.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-round li {
  line-height: 28px;
}

.list-round li:before {
  font-family: "FontAwesome";
  content: "\f138";
  margin-right: 10px;
  color: #0e5dae;
  font-size: 12px;
}

ul.list-arrow {
  padding: 0;
}

ul.list-arrow li:before {
  font-family: "FontAwesome";
  content: "\f105";
  margin-right: 10px;
  color: #0e5dae;
  font-size: 16px;
}

ul.list-check li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  margin-right: 10px;
  color: #0e5dae;
  font-size: 14px;
}

/* Bootstrap */
.nav-tabs > li > a.active,
.nav-tabs > li > a.active:focus,
.nav-tabs > li > a.active:hover,
.nav-tabs > li > a:hover,
.nav-tabs > li > a {
  border: 0;
  background: none;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background: none;
}

a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

/* ================================================
 // Common styles
 ================================================== */
@media (min-width: 992px) {
  .pad-0 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .pad-r {
    padding-right: 2px;
  }
  .pad-r-small {
    padding-right: 1.5px;
  }
  .pad-r-0 {
    padding-right: 0;
  }
  .pad-l {
    padding-left: 2px;
  }
  .pad-l-small {
    padding-left: 1.5px;
  }
  .pad-l-0 {
    padding-left: 0;
  }
}
/*-- Block title --*/
.block-title {
  letter-spacing: 0.64px;
  color: var(--clr-primary);
  line-height: 25px;
  font-family: var(--font-primary);
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 12px 0;
}

.post__tag {
  display: inline-block;
  background: red;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 5px 10px;
  padding: 1px 18px;
}

.post-subtitle {
  font-size: 20px;
  font-style: italic;
  line-height: 180%;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
  margin: -15px 0px 0px;
}

.post__divider_line {
  border-bottom: 1px solid var(--clr-border);
}

.block-title .title-angle-shap {
  display: inline-block;
  padding: 0 0 0 5px;
  position: relative;
}

.block-title .title-angle-shap::after, .block-title .title-angle-shap::before {
  /*
  position: absolute;
  top: 0;
  content: '';
  background: #e11b22;
  left: 0;
  */
}

.block-title .title-angle-shap::before {
  width: 3px;
  height: 12px;
}

.block-title .title-angle-shap::after {
  width: 12px;
  height: 3px;
}

.text-light .block-title .title-angle-shap {
  color: #fff;
}

.text-light .block-title .title-angle-shap::after, .text-light .block-title .title-angle-shap::before {
  background: #fff;
}

.block-title-bright {
  color: #fff;
}

.block-title-dark {
  color: #000;
}

.block-title-dark .title-angle-shap::after, .block-title-dark .title-angle-shap::before {
  background: #000;
}

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

.block-title-light .title-angle-shap::after, .block-title-light .title-angle-shap::before {
  background: #fff;
}

.block-title-tech {
  color: #007bff;
}

.block-title-tech .title-angle-shap::after, .block-title-tech .title-angle-shap::before {
  background: #007bff;
}

/* Post title */
.post-title {
  /*
  font-size: 18px;
  line-height: 24px;
  margin: 12px 0 10px;
  font-weight: 600;
  */
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  line-height: 130% !important;
  transition: all 0.3s ease;
}

.post-title a {
  color: var(--clr-link);
}

.post-title a:hover {
  color: var(--clr-link-hover);
}

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

.text-light .post-title a:hover {
  color: #0e5dae;
}

.post-title.title-xl {
  font-size: 65px;
  font-weight: 600;
  line-height: 45px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.post-title.title-lg {
  font-size: 30px;
  line-height: 40px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.post-title.title-md {
  font-size: 22px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.post-title.title-sm {
  font-size: 16px;
  line-height: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.post-title.title-ok {
  font-size: 18px;
  line-height: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.grid-category .post-cat:not(:first-child) {
  margin-left: 3px;
}

.post-cat {
  position: relative;
  font-size: 10px;
  padding: 0 10px;
  background: #1c1c1c;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  border-radius: 5px;
}

.post-cat a {
  color: #fff;
}

.post-cat:hover {
  color: #fff;
}

.post-meta ul {
  padding: 0;
  margin-bottom: 0;
}

.post-meta li {
  font-size: 12px;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  margin-right: 24px;
}

.post-meta li a {
  color: inherit;
}

.post-meta li a .icon, .post-meta li a .fa {
  margin-right: 5px;
}

.post-meta li a.view .icon {
  color: #0e5dae;
}

.post-meta .post-author a {
  color: #999999;
  font-weight: 700;
}

.post-meta .post-author a:hover {
  color: #0e5dae;
}

.post-meta .post-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.post-meta span {
  color: #a3a3a3;
  margin-top: 10px;
  font-size: 14px;
  margin-right: 8px;
  padding-right: 10px;
  line-height: 12px;
  display: inline-block;
}

.post-meta span.post-date {
  border-right: 0;
}

.post-meta span.post-date i {
  color: #a3a3a3;
  padding-right: 5px;
}

span.post-comment {
  border-right: 0;
  line-height: 24px;
  margin-right: 0;
  padding-right: 0;
}

span.post-comment span {
  border-right: 0;
  line-height: 100%;
}

span.post-comment span i {
  margin-right: 5px;
}

/* Category Color */
.food {
  background: #bc8a61;
}

.food-color {
  background: transparent;
  color: #bc8a61;
}

.food-color:hover {
  color: #bc8a61;
}

.fashion {
  background: #da1793;
}

.fashion-color {
  background: transparent;
  color: #da1793;
}

.fashion-color:hover {
  color: #da1793;
}

.lifestyle {
  background: #ea8f00;
}

.lifestyle-color {
  background: transparent;
  color: #ea8f00;
}

.lifestyle-color:hover {
  color: #ea8f00;
}

.health {
  background: #6741dc;
}

.health-color {
  background: transparent;
  color: #6741dc;
}

.health-color:hover {
  color: #6741dc;
}

.sports {
  background: #4ca80b;
}

.sports-color {
  background: transparent;
  color: #4ca80b;
}

.sports-color:hover {
  color: #4ca80b;
}

.tech {
  background: #007bff;
}

.tech-color {
  background: transparent;
  color: #007bff;
}

.tech-color:hover {
  color: #007bff;
}

.travel {
  background: #f3670a;
}

.travel-color {
  background: transparent;
  color: #f3670a;
}

.travel-color:hover {
  color: #f3670a;
}

.video-icon {
  text-align: center;
  color: #fff;
  font-size: 20px;
  z-index: 1;
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  display: inline-block;
  margin: 0 auto;
  border-radius: 100%;
  border: 5px solid #fff;
  right: 0;
  /* top: -430px; */
  /* top: 0; */
  bottom: 300px;
  margin: auto;
  padding: 8px 8px;
}

.image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.owl-carousel .owl-dots {
  position: absolute;
  left: 50px;
  top: 50%;
  padding: 0;
  text-align: left;
  width: 20px;
  transform: translateY(-50%);
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.owl-carousel .owl-dots .owl-dot span {
  border-radius: 50%;
  background: #d3d3d3;
  display: inline-block;
  text-align: center;
  transition: all ease 0.5s;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #e11b22;
  border-color: #e11b22;
  height: 20px;
  border-radius: 10px;
}

.owl-carousel.dot-style2 .owl-dots {
  padding: 0;
  position: absolute;
  right: 0;
  top: -30px;
  display: inline-block;
  text-align: right;
  width: 100%;
  left: auto;
}

.owl-carousel.dot-style2 .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 5px;
}

.owl-carousel.dot-style2 .owl-dots .owl-dot.active span {
  width: 20px;
}

.owl-carousel .owl-nav i {
  font-size: 20px;
  color: #fff;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 54px;
  transition: all ease 500ms;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  background: #0e5dae;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
}

.owl-carousel .owl-nav .owl-prev {
  background: #0e5dae;
  left: -25px;
  right: auto;
}

.owl-carousel .owl-nav .owl-next {
  right: -25px;
}

@media (min-width: 1200px) {
  .owl-carousel.h2-feature-slider .owl-dots {
    top: 35%;
  }
}
.grid-cat {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.load-more-btn {
  position: relative;
}

.load-more-btn::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #eaeaea;
  height: 1px;
  content: "";
  margin: auto;
}

.load-more-btn .btn {
  padding: 10px 55px;
  background: #fff;
  border: 1px solid #eaeaea;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
  color: #000;
}

.load-more-btn .btn:hover {
  color: #0e5dae;
}

.ts-social-list {
  padding: 0;
}

.ts-social-list li {
  display: inline-block;
  width: 49%;
  margin-bottom: 5px;
}

.ts-social-list li.ts-facebook a .tsicon {
  background: #3b5998;
}

.ts-social-list li.ts-twitter a .tsicon {
  background: #1da1f2;
}

.ts-social-list li.ts-youtube a .tsicon {
  background: #ff0000;
}

.ts-social-list li.ts-rss a .tsicon {
  background: #f26522;
}

.ts-social-list li.ts-vk a .tsicon {
  background: #1ab7ea;
}

.ts-social-list li.ts-linkedin a .tsicon {
  background: #0077b5;
}

.ts-social-list a {
  display: flex;
  padding: 10px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}

.ts-social-list a .count {
  font-size: 13px;
  color: #222;
}

.ts-social-list a .count span {
  display: block;
  line-height: 0.8;
}

.ts-social-list .tsicon {
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  padding: 9px 0;
  background: #000;
  margin-right: 20px;
}

.ts-social-list.style2 li a {
  background: #3b5998;
  color: #fff;
}

.ts-social-list.style2 li a .tsicon {
  background: rgba(55, 55, 55, 0.3);
}

.ts-social-list.style2 li a .count {
  color: #fff;
}

.ts-social-list.style2 li.ts-facebook a {
  background: #3b5998;
}

.ts-social-list.style2 li.ts-twitter a {
  background: #1da1f2;
}

.ts-social-list.style2 li.ts-youtube a {
  background: #ff0000;
}

.ts-social-list.style2 li.ts-rss a {
  background: #f26522;
}

.ts-social {
  padding: 0;
}

.ts-social li {
  display: inline-block;
}

.ts-social li a {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  margin: 0 35px 0 0;
}

.ts-social li a:hover {
  color: #0e5dae;
}

@media (max-width: 1024px) {
  .footer__copyright .container {
    margin-bottom: 70px;
  }
  .backto {
    bottom: 75px !important;
  }
}
.backto {
  position: fixed;
  right: 55px;
  bottom: 15px;
  z-index: 10;
  background: #0e5dae;
  border-radius: 50%;
  color: #979797;
  cursor: pointer;
  height: 44px;
  text-align: center;
  width: 44px;
  display: block;
  padding: 12px 0;
  transition: all 0.3s;
  margin-left: auto;
}

.backto a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.backto .icon {
  font-family: "iconfont" !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.backto:hover {
  background: #c93b00;
}

.breadcrumb {
  background: transparent;
  padding: 25px 0 25px;
  margin-bottom: 0;
}

.breadcrumb li {
  padding-right: 0;
  color: var(--clr-link-dark);
}

.breadcrumb li a {
  padding: 0 9px;
  color: inherit;
}

.breadcrumb li a:hover {
  color: #0e5dae;
}

.breadcrumb li:last-child i {
  padding-right: 10px;
}

.ts-pagination {
  padding: 0;
  margin-top: 20px;
}

.ts-pagination li {
  display: inline-block;
}

.ts-pagination li span, .ts-pagination li a {
  background: #0e5dae;
  padding: 0px 15px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all ease 0.3s;
}

.ts-pagination li span, .ts-pagination li a:hover {
  background: #0e5dae;
}

.ts-pagination li span.current {
  color: #fff;
  background: #0e5dae;
  box-shadow: 0px 5px 15px 0px rgba(252, 74, 0, 0.25);
}

/* ===================
// 404 page
======================*/
.error-page .error-code h2 {
  display: block;
  font-size: 200px;
  line-height: 200px;
  color: #303030;
  margin-bottom: 20px;
}

/* Header */
/* TOP Header
================================================== */
.top__header {
  padding: 10px 0 5px;
  margin: 0;
  height: 45px;
  background-color: #D4D0CE;
}

.top__header ul.top__ul {
  display: block;
  padding: 0;
}

.top__header ul.top__ul a {
  color: #fafafa;
}

.top__header ul.top__ul li {
  display: inline-block;
  padding-right: 15px;
}

.top__header .social__icons a {
  color: #FFF;
  fill: #FFF;
  padding-right: 10px;
}

.top__header .social__icons {
  margin-top: 0;
}

.top__header .social__icons .icon {
  background: #FC2705;
  margin: 0;
  border: none;
  border-radius: 50px;
  overflow: visible;
  font-size: 12px;
  color: inherit;
  text-transform: none;
  padding: 4px;
  display: inline-block;
  fill: currentcolor;
  line-height: 0;
}

.left__header ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  grid-gap: var(--md-gap);
}

.left__header ul li {
  position: relative;
}

.left__header ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  width: 1px;
  height: 100%;
  background: var(--clr-border);
}

.left__header ul li::last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-1 * var(1rem));
  width: 1px;
  height: 100%;
  background: green;
}

.actionBTN {
  min-width: 1.5rem;
  height: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  cursor: pointer;
  border: none !important;
  outline: none !important;
}

.actionBTN::before {
  content: "";
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 2px;
  background: var(--clr-header);
  transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out;
}

.actionBTN::after {
  content: "";
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 2px;
  background: var(--clr-header);
  transition: top 0.2s ease-in-out 0.4s, transform 0.4s ease-in-out;
}

.actionBTN.white {
  top: -7px;
  display: inline-block;
  margin-right: 10px;
}

.actionBTN.white::before, .actionBTN.white::after {
  background-color: #ffffff !important;
}

.left__header ul li p {
  color: #898989;
  margin-left: 40px;
  margin-top: 15px;
  font-family: poppins, globalFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.right__header {
  text-align: right;
}

.link__button a {
  display: inline-block;
  margin-left: 5px;
  background-color: var(--clr-primary);
  color: var(--clr-body-lite);
  border: 1px solid var(--clr-header);
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 600;
}

.link__button.no-padding a {
  padding: 0 !important;
}

.link__button a i, .link__button a svg {
  fill: var(--clr-body-lite);
  color: var(--clr-body-lite);
}

.link__button a.no-bg {
  background: none !important;
}

.link__button a.no-bg svg {
  fill: var(--clr-primary);
}

.link__button a.circle {
  width: 38px;
  height: 38px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center !important;
}

.link__button a i.md {
  font-size: 22px !important;
}

.link__button a svg.md {
  margin-top: -5px;
  width: 24px;
  height: 24px;
}

.link__button a svg {
  width: 20px;
  height: 20px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center !important;
}

.link__button a:hover {
  color: var(--clr-body-lite);
  cursor: pointer;
}

/* Trending Bar
================================================== */
.trending-bar {
  padding: 10px 0 5px;
  background: #f5f5f5;
}

.trending-title {
  background: transparent;
  color: #222;
  margin-right: 5px;
  border-right: 1px solid #dedbdb;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  margin: 3px 15px 0 0;
  padding-right: 10px;
  font-weight: 700;
  float: left;
}

.trending-title .tsicon {
  color: #01256C;
}

.owl-carousel.owl-theme.trending-slide .owl-nav {
  display: none;
}

.trending-slide .post-title.title-small {
  font-weight: 400;
  margin: 0;
  font-family: var(--font-primary);
}

/* Trending light */
.trending-light {
  color: #1c1c1c;
}

.trending-light .trending-slide .post-title {
  font-size: 13px;
  font-weight: 400;
  color: #777;
}

.trending-light .owl-carousel.owl-theme.trending-slide .owl-nav > div:hover {
  background: #333;
  color: #fff;
}

/* Top Bar
================================================== */
.top-bar {
  padding: 8px 0;
  border-bottom: 4px solid #dedede;
  color: #a3a3a3;
  font-size: 13px;
}

/* Date */
.ts-date {
  display: inline-block;
  padding-right: 10px;
  line-height: 12px;
  color: 0;
  font-size: 13px;
  border-right: none;
  padding-right: 0;
}

.ts-date i {
  margin-right: 5px;
}

/* Top nav */
.top-nav {
  display: inline-block;
}

.top-nav li {
  display: inline-block;
  line-height: 12px;
  padding-left: 12px;
}

.top-nav li a {
  background: none;
  color: #000;
  padding: 0;
  line-height: 100%;
}

.top-nav li a:hover {
  color: #01256C;
}

/* Top social */
.top-social {
  display: inline-block;
  margin-right: -5px;
  background: #F7210C;
}

.top-social ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.top-social ul li {
  display: inline-block;
  padding: 0;
}

.top-social ul li a {
  color: #fff;
  font-size: 14px;
  transition: 400ms;
  padding: 0 10px;
  line-height: 70px;
}

.top-social ul li a:hover {
  color: #fff;
}

.nav-search {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  width: 65px;
  height: auto;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
}

/* Top bar border */
.top-bar-border {
  padding: 8px 20px 8px;
  border-bottom: 1px solid #ddd;
}

.top-bar-border ul.top-info {
  color: #7c7c7c;
  font-weight: 400;
}

.top-bar-border .top-social li a {
  color: #7c7c7c;
}

.top-bar-border ul.top-info li i {
  color: #01256C;
}

/* Header */
/* Trending Bar
================================================== */
.trending-bar {
  padding: 10px 0 5px;
  background: #f5f5f5;
}

.trending-title {
  background: transparent;
  color: #222;
  margin-right: 5px;
  border-right: 1px solid #dedbdb;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  margin: 3px 15px 0 0;
  padding-right: 10px;
  font-weight: 700;
  float: left;
}

.trending-title .tsicon {
  color: #0e5dae;
}

.owl-carousel.owl-theme.trending-slide .owl-nav {
  display: none;
}

.trending-slide .post-title.title-small {
  font-weight: 400;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* Trending light */
.trending-light {
  color: #1c1c1c;
}

.trending-light .trending-slide .post-title {
  font-size: 13px;
  font-weight: 400;
  color: #777;
}

.trending-light .owl-carousel.owl-theme.trending-slide .owl-nav > div:hover {
  background: #333;
  color: #fff;
}

/* Top Bar
================================================== */
.top-bar {
  padding: 8px 0;
  border-bottom: 1px solid #dedede;
  color: #a3a3a3;
  font-size: 13px;
}

/* Date */
.ts-date {
  display: inline-block;
  padding-right: 10px;
  line-height: 12px;
  color: #777;
  font-size: 13px;
  border-right: none;
  padding-right: 0;
}

.ts-date i {
  margin-right: 5px;
}

/* Top nav */
.top-nav {
  display: inline-block;
}

.top-nav li {
  display: inline-block;
  line-height: 12px;
  padding-left: 12px;
}

.top-nav li a {
  background: none;
  color: #a3a3a3;
  padding: 0;
  line-height: 100%;
}

.top-nav li a:hover {
  color: #0e5dae;
}

/* Top social */
.top-social {
  display: inline-block;
  margin-right: -5px;
  background: rgba(255, 255, 255, 0.05);
}

.top-social ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.top-social ul li {
  display: inline-block;
  padding: 0;
}

.top-social ul li a {
  color: #fff;
  font-size: 14px;
  transition: 400ms;
  padding: 0 10px;
  line-height: 70px;
}

.top-social ul li a:hover {
  color: #fff;
}

.nav-search {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  width: 65px;
  height: auto;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
}

/* Top bar border */
.top-bar-border {
  padding: 8px 20px 8px;
  border-bottom: 1px solid #ddd;
}

.top-bar-border ul.top-info {
  color: #7c7c7c;
  font-weight: 400;
}

.top-bar-border .top-social li a {
  color: #7c7c7c;
}

.top-bar-border ul.top-info li i {
  color: #0e5dae;
}

/* =================================================
 // Header Default
================================================== */
.header {
  padding: 20px 0 0;
  position: static;
  top: auto;
}

.header .dark__for__mobile {
  display: none;
  position: fixed;
  top: 28px;
  left: 15px;
}

.header .dark__for__mobile svg {
  margin-top: 8px;
}

.header .slide__for__mobile {
  display: none;
  position: fixed;
  top: 28px;
  right: 15px;
}

.header .slide__for__mobile .icon__trigger > span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: red;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.header-top-social {
  margin: 0;
}

.header-top-social li a {
  color: #000;
  font-size: 14px;
  margin-right: 20px;
}

.header-search .form-group {
  position: relative;
}

.header-search .form-group .input-search {
  font-size: 13px;
  color: #333333;
  border: 1px solid #dddddd;
  border-width: 0 0 1px 0;
  width: 100%;
}

.header-search .form-group .input-search::-moz-placeholder {
  color: #ddd;
  opacity: 1;
}

.header-search .form-group .input-search::placeholder {
  color: #ddd;
  opacity: 1;
}

.header-search .form-group .search-btn {
  background: transparent;
  border: none;
  position: absolute;
  right: 10px;
  top: 5px;
  color: #999999;
}

.header-search .form-group .search-btn:focus {
  outline-style: none;
}

@media (min-width: 992px) {
  .is-ts-sticky.sticky {
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .is-ts-sticky.sticky.fade_down_effect {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 0.1s;
  }
}
/* =================================================
 // MOBILE Header Portion
================================================== */
.mobile__header {
  display: none !important;
  position: sticky;
  top: 0;
  background-color: var(--clr-body-lite);
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.14) 0 0 24px;
}

.mobile__header .container {
  display: flex;
  padding: 0 15px;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile__header .header__left {
  display: block;
  margin: 5px 0;
  color: var(--clr-link);
  border: 1px solid var(--clr-link);
  font-size: 20px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  max-width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.mobile__header .header__left svg {
  width: 22px;
  margin-top: -4px;
}

.mobile__header .header__center {
  text-align: right;
  padding-right: 0;
}

.mobile__header .header__center img {
  max-width: 268px;
  vertical-align: top;
}

.mobile__header .header__center .date {
  color: var(--clr-link);
  font-size: 19px;
  opacity: 0.88;
}

.mobile__header .header__right {
  display: inline-block;
  width: 28px;
  margin-left: 0;
  margin-top: 8px;
  cursor: pointer;
  margin-left: 18px;
}

.mobile__header .header__right svg {
  width: 35px;
  fill: var(--clr-link);
}

.mobile__header .header__right span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fafafa;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.mobile__header .header__right:hover > span:nth-child(3) {
  width: 80%;
}

.mobile__header .header__right:hover > span:nth-child(2) {
  width: 30%;
}

@media (max-width: 1024px) {
  .mobile__header {
    display: block !important;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 998;
    padding: 15px 0 10px;
    border: none;
  }
  .banner__ads {
    display: center !important;
  }
  .text__block .highlight a {
    font-size: 40px;
    font-weight: 700 !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .sandesh__section__title {
    padding: 0 0px !important;
  }
  .author__box .author__img {
    width: 25px !important;
    height: 25px !important;
    max-width: 25px !important;
  }
  .author__box label {
    font-size: 12px !important;
  }
  .post__time, .post__comments, .post__date {
    font-size: 0.8em !important;
  }
  .post__hasDes p {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .mobile__header .header__center img {
    max-width: 240px;
  }
  .mobile__header .header__center .date {
    display: block;
    font-size: 11px;
    text-align: center;
  }
  .mobile__header .header__left {
    margin: 5px 0;
    height: 34px;
    width: 34px;
    line-height: 34px;
    font-size: 18px;
  }
  .mobile__header .header__right svg {
    width: 30px;
    color: var(--clr-link);
  }
  .post-overaly-style {
    min-height: 350px !important;
    border-radius: 0px !important;
  }
  .post-block-style.interactive {
    padding: 0 0 20px !important;
    border-bottom: 1px solid var(--clr-border);
  }
  .list-post-block .list-post .post-block-style .post-thumb {
    margin-bottom: 0px !important;
  }
}
/*-- Logo --*/
.text- .logo {
  /* padding: 28px 0; */
}

.logo img {
  max-width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
  transition: all 300ms ease-in-out;
}

.logo .date {
  color: var(--clr-link);
  text-align: right;
  font-size: 15px;
}

/* header right */
.header-right {
  float: right;
}

/* Logo center */
.header.text-center {
  padding: 10px 0;
}

.text-center {
  text-align: center !important;
}

/*-- Search start --*/
ul.top-info-box > li.nav-search {
  cursor: pointer;
  padding-left: 30px;
  margin-left: 30px;
}

ul.top-info-box > li.nav-search:before {
  position: absolute;
  content: "";
  background: #ddd;
  left: 0;
  width: 1px;
  height: 40px;
  top: 50%;
  margin-top: -10px;
}

ul.top-info-box > li.nav-search i {
  font-size: 20px;
  top: 10px;
  position: relative;
  cursor: pointer;
  color: #999;
}

/* Main navigation */
.site-nav-inner {
  position: relative;
}

.main-nav {
  background: #0e5dae;
  min-height: 50px;
}

.navbar {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  padding-top: 0px;
  padding-bottom: 0px;
}

.navbar-toggler {
  color: #fff;
  padding: 8px 15px;
  background: #e74907;
  position: absolute;
  top: -55px;
  z-index: 9;
}

.navbar-toggler-icon {
  width: 25px;
}

.navbar-toggle .i-bar {
  background: #fff;
}

.navbar-collapse {
  padding-left: 0;
}

ul.navbar-nav > li {
  float: left;
  padding: 0;
  position: relative;
}

ul.navbar-nav > li.active {
  background: #093d73;
}

ul.navbar-nav > li > a {
  padding: 0 15px;
  line-height: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  transition: 350ms;
  padding: 10px 22px;
}

ul.navbar-nav > li > a i {
  font-weight: 700;
}

ul.navbar-nav > li > a:hover, ul.navbar-nav > li > a:focus {
  background: none;
}

ul.navbar-nav > li:hover a::before, ul.navbar-nav > li.active a::before {
  border-color: #0e5dae;
  opacity: 1;
  transform: scale(1) translateZ(0);
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background: transparent;
  border: 0;
}

/* Dropdown */
ul.navbar-nav > li.mega-dropdown {
  position: static;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
  border-radius: 0;
}

.dropdown-submenu > a:after {
  display: block;
  content: "\f105";
  font-family: FontAwesome;
  float: right;
  margin-top: 3px;
  margin-right: -5px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  text-align: left;
  background: #fff;
  z-index: 100;
  min-width: 230px;
  border-radius: 0;
  border: 0;
  border: 0;
  box-shadow: 0px 3px 3px 2px rgba(0, 0, 0, 0.15);
  margin-top: 0;
  padding: 0;
}

.navbar-nav > li > .dropdown-menu {
  border-top: 1px solid #dedede;
}

.navbar-nav > li > .dropdown-menu.mega-menu-content {
  border-top: 0;
}

.dropdown-menu-large {
  min-width: 400px;
}

.dropdown-menu-large > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dropdown-menu-large > li > ul > li > a {
  padding-left: 0;
}

.dropdown-menu-large > li > ul > li.active > a {
  color: #0e5dae;
}

.navbar-nav > li > .dropdown-menu > a {
  background: none;
}

.dropdown-menu li a {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  padding: 15px 25px 15px 25px;
  border-bottom: 1px solid #e5e5e5;
  color: #333333;
  background: #f4f4f4;
  text-transform: uppercase;
}

.dropdown-menu li:last-child > a {
  border-bottom: 0;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > .dropdown-menu > .active > a {
  background: none;
  color: #0e5dae;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background: #0e5dae;
  color: #fff;
}

@media (min-width: 767px) {
  ul.nav li.dropdown .dropdown-menu li.dropdown-submenu .dropdown-menu {
    left: 100%;
    top: 0;
    display: none;
  }
  ul.nav li.dropdown .dropdown-menu li.dropdown-submenu:hover .dropdown-menu {
    display: block;
  }
}
.mega-menu-content {
  width: 1110px;
  padding: 0;
}

.mega-menu-content-inner {
  padding: 20px 10px;
}

.mega-menu-content .row {
  margin: 0;
}

/*-- Dark bg style --*/
.main-nav.dark-bg > .container > .row {
  border: 0;
  background: #272727;
  margin-left: 0;
  margin-right: 0;
}

.dark-bg .navbar-toggler {
  margin-left: 6px;
}

.main-nav.dark-bg ul.navbar-nav > li > a {
  color: #fff;
}

.main-nav.dark-bg ul.navbar-nav > li > a:before {
  border: 0;
}

.main-nav.dark-bg ul.navbar-nav > li.active,
.main-nav.dark-bg ul.navbar-nav > li:hover {
  background: #0e5dae;
}

.main-nav.dark-bg .nav-search i {
  color: #fff;
}

.main-nav {
  position: relative;
  padding: 0 15px;
}

/* ===================
// Hheader Search 
======================= */
.main-nav > .container,
.search-area {
  position: relative;
}

.search-area {
  min-height: 70px;
  padding-right: 0;
}

.nav-search {
  display: inline-block;
  position: relative;
  cursor: pointer;
  top: 0;
  right: 0;
}

.nav-search a {
  color: #fff;
  display: block;
}

.modal-searchPanel .ts-search-group {
  position: relative;
}

.modal-searchPanel .ts-search-group input:not([type=submit]) {
  height: 70px;
  background-color: transparent;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  padding: 0 30px;
}

.modal-searchPanel .ts-search-group .search-button {
  background-color: transparent;
  border: 0px;
  padding: 0;
  color: #fff;
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 70px;
  border-radius: 0 50px 50px 0;
}

/* magnific pop up modal */
.mfp-bg.xs-promo-popup {
  background-color: rgba(0, 0, 0, 0.87);
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
  animation: menu-animation 0.8s ease-out forwards;
}

/* animation keyframes list */
@keyframes menu-animation {
  0% {
    opacity: 0;
    transform: scale(0.04) translateY(300%);
  }
  40% {
    transform: scale(0.04) translateY(0);
    transition: ease-out;
  }
  40% {
    transform: scale(0.04) translateY(0);
  }
  60% {
    opacity: 1;
    transform: scale(0.02) translateY(0px);
  }
  61% {
    opacity: 1;
    transform: scale(0.04) translateY(0px);
  }
  99.9% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    opacity: 1;
    transform: scale(2) translateY(0px);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
/* Styles for dialog window */
.xs-promo-popup .modal-content {
  background-color: transparent;
  padding: 0px;
  border: 0px;
}

.xs-promo-popup .mfp-close {
  color: #fff;
  opacity: 0;
  transition: all 1s ease 0.8s;
  transform: translateY(-500px);
}

.xs-promo-popup.mfp-ready .mfp-close {
  opacity: 1;
  transform: translateY(0);
}

.ts-search-form .form-control {
  height: 60px;
  border-radius: 36px;
  font-size: 18px;
}

.ts-search-form.modal-searchPanel .xs-search-panel {
  margin: 0;
}

/* at start */
.xs-promo-popup.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 1s ease 0.8s;
  transform: translateY(-500px);
}

/* animate in */
.xs-promo-popup.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: translateY(0);
}

/* ===================
// Menu tab
======================= */
.menu-tab .nav.nav-tabs {
  border-right: 1px solid #dedede;
  padding: 20px 0;
  padding-right: 0;
  min-height: 250px;
  margin-top: 0;
}

.menu-tab .nav.nav-tabs > li > a {
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 400;
  padding: 14px 16px 14px 30px;
  background: #fff;
  text-transform: initial;
  font-size: 14px;
}

.menu-tab .nav.nav-tabs > li > a.active {
  background: #dedede;
  margin-right: -1px;
  border: 1px solid #dedede;
  border-right: 0;
  color: #0e5dae;
  cursor: pointer;
}

.menu-tab .tab-content > .tab-pane {
  padding: 25px 0;
  min-height: 250px;
}

.menu-tab .tab-content > .tab-pane .col-md-3 {
  padding-right: 10px;
  padding-left: 10px;
}

/* Header with Menu
================================================== */
.header.header-menu {
  padding: 0;
}

.header.header-menu .logo {
  padding: 12px 0;
}

.header.header-menu > .container > .row {
  border-bottom: 1px solid #dedede;
  margin-left: 0;
  margin-right: 0;
}

.header.header-menu ul.navbar-nav > li > a {
  line-height: 70px;
}

.header.header-menu ul.navbar-nav > li.mega-dropdown,
.site-nav-inner {
  position: static;
  width: 100%;
}

.header.header-menu .mega-menu-content {
  min-width: 1145px;
  left: -43%;
}

.nav-social-wrap {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}

.navbar {
  position: absolute;
  top: 70px;
  width: 100%;
  background: #f8f8f8;
  z-index: 9;
  padding: 0;
}

@media (min-width: 992px) {
  .navbar {
    position: static;
    top: 70px;
    width: 100%;
    background: transparent;
  }
  ul.navbar-nav > li > a {
    color: #fff;
    padding: 0 22px;
  }
  .header.header-menu ul.navbar-nav > li.mega-dropdown,
  .site-nav-inner {
    position: static;
    width: 100%;
  }
}
/* Master css */
.post-block-style {
  position: relative;
  overflow: hidden;
}

.post-block-style .post-thumb {
  border-radius: var(--border-radius);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.post-block-style .post-thumb.rounded {
  border-radius: 50% !important;
}

.post-block-style .post-thumb img.height-200 {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-block-style .post-thumb img {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

.post-block-style .post-thumb img.img-fluid {
  -o-object-fit: cover;
     object-fit: cover;
}

.post-block-style:hover .post-thumb img.no__transform {
  transform: scale(1);
}

.overlay-post-content .post-content {
  padding: 20px 20px 18px;
  position: absolute;
  bottom: 0;
  z-index: 9;
}

/* Feature Post */
.featured-slider .item {
  min-height: 640px;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}

.featured-slider .item .featured-post .post-content {
  padding: 40px 40px 35px 45px;
}

.featured-slider .item .featured-post .post-title a {
  color: #fff;
}

.post-overaly-style {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  min-height: 350px;
  background-position: center center;
  background-size: cover;
  transition: all ease 0.4s;
}

.post-overaly-style::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
  transition: all 0.4s ease;
}

.post-overaly-style.post-sm {
  min-height: 225px;
}

.post-overaly-style.post-md {
  min-height: 400px;
  margin-bottom: -5px;
}

.post-overaly-style.post-extra-md {
  min-height: 430px;
  margin-bottom: -5px;
}

.post-overaly-style.post-lg {
  min-height: 490px;
}

.post-overaly-style:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}

.post-overaly-style .post-thumb {
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.post-overaly-style .post-thumb img {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
}

.post-overaly-style .post-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  z-index: 1;
}

.post-overaly-style .post-content .post-title a {
  color: #fff;
}

.post-overaly-style .post-content .post-title a:hover {
  color: #fff;
}

.post-overaly-style:hover .post-thumb img {
  transform: scale(1.15);
}

.post-overaly-style.overlay-primary::after {
  background: linear-gradient(180deg, rgba(252, 74, 0, 0.89) 0%, rgba(252, 74, 0, 0.89) 100%);
  opacity: 0.9;
}

.post-overaly-style.overlay-primary:hover::after {
  opacity: 0.7;
}

.trending-slider .post-md {
  min-height: 310px;
  margin-bottom: 0;
}

.featured-tab {
  position: relative;
}

.featured-tab .nav-tabs {
  border: 0;
  position: absolute;
  top: -5px;
  right: 0;
}

.featured-tab .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.featured-tab .nav-tabs .nav-link {
  padding: 0 7px;
  border: none;
  position: relative;
  font-size: 17px;
  display: inline-block;
  color: #495057;
  font-weight: 700;
  font-family: var(--font-primary);
}

.featured-tab .nav-tabs .nav-link.active {
  background: transparent;
}

.featured-tab .nav-tabs .nav-link.active .tab-head > span.tab-text-title {
  color: #0e5dae;
  background: transparent;
  border: none;
}

.featured-tab .nav-tabs .nav-link.active:before {
  position: absolute;
  content: "";
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: 0dae;
  top: -5px;
  bottom: 0;
  margin: auto;
}

.featured-tab .nav-tabs .nav-link .tab-head > span.tab-text-title {
  font-size: 17px;
}

.featured-tab .tab-content {
  border-top: 0;
  padding: 0;
  overflow: hidden;
}

.featured-tab .tab-content > .active {
  display: block;
}

.list-post-block .list-post {
  padding: 0;
}
.list-post-block .list-post.with-border li {
  padding: 20px 0;
}
.list-post-block .list-post.with-border li:not(:last-child) {
  border-bottom: 1px solid #e9e9e9;
}
.list-post-block .list-post.with-border .post-thumb {
  margin: 0 !important;
}

.list-post-block .list-post .post-block-style .post-thumb {
  width: 130px;
  height: 85px;
  margin-bottom: 30px;
  margin-right: 25px;
}

.list-post-block .list-post .post-block-style .post-thumb img {
  width: 100%;
  border-radius: 5px !important;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-ok {
  height: 90px;
  overflow: hidden;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-ok img {
  max-width: 100%;
  height: 100%;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-lg {
  width: 180px;
  height: 130px;
  overflow: hidden;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-lg img {
  max-width: 100%;
  height: 100%;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-xs {
  height: 75px;
  overflow: hidden;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-xs img {
  max-width: 100%;
  height: 100%;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-md {
  height: 96px;
  overflow: hidden;
}

.list-post-block .list-post .post-block-style .post-thumb.thumb-md img {
  max-width: 100%;
  height: 100%;
}

.list-post-block .list-post .post-block-style .grid-category .post-cat {
  text-transform: uppercase;
  padding-left: 0;
}

.list-post-block .list-post .post-block-style .post-content .post-title {
  margin: 5px 0;
  line-height: 17px;
}

.list-post-block .list-post li:last-child .post-block-style .post-thumb {
  margin-bottom: 0;
}

.list-post-block .list-post li:last-child .post-block-style .post-thumb.thumb-md {
  height: 100px;
}

.block.style2 {
  background: #000;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.block.style2 .post-block-style .post-title:not(.title-md) {
  line-height: 1.1;
}

.block-slider {
  background: #f7f7f7;
  padding-bottom: 80px;
}

.block-slider .owl-carousel .owl-dots {
  top: auto;
  bottom: -47px;
  text-align: center;
  height: 20px;
}

.ts-category-list {
  padding: 0;
}

.ts-category-list li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
}

.ts-category-list li a {
  padding: 20px;
  color: #fff;
  align-items: center;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  min-height: 100px;
  transition: all ease 0.5s;
}

.ts-category-list li a::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.ts-category-list li a span {
  position: relative;
  white-space: nowrap;
}

.ts-category-list li a span.bar {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  width: 100%;
  margin: 0 65px 0 25px;
}

.ts-category-list li a:hover {
  transform: scale(1.05);
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ts-category-list-sm li a {
  min-height: 91px;
}

.trending-slider.full-width .post-overaly-style {
  border-radius: 0;
}

.trending-slider.full-width .post-overaly-style::after {
  border-radius: 0;
}

.post-tab .nav-tabs .nav-item:not(:first-child) {
  /*
  margin-left: 20px;
  */
}

.post-tab .nav-tabs .nav-item .nav-link {
  text-transform: uppercase;
  color: #d3d3d3;
}

.post-tab .nav-tabs .nav-item .nav-link::after, .post-tab .nav-tabs .nav-item .nav-link::before {
  /*
  position: absolute;
  top: 0;
  content: '';
  background: #0e5dae;
  left: 0;
  opacity: 1;
  */
}

.card {
  width: 100%;
  display: inline-block;
  background: #fff;
  color: #666;
  border: none;
  border-radius: 0px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.post-tab .nav-tabs .nav-item .nav-link::before {
  /*
  opacity: 1;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 12px;
  background: #d3d3d3;
  */
}

.post-tab .nav-tabs .nav-item .nav-link.active::before {
  /*
   background: #0e5dae;
   border-radius: 0;
   height: 12px;
   top: -6px;
  */
}

.post-tab .nav-tabs .nav-item .nav-link.active::after {
  /*
  background: #0e5dae;
  border-radius: 0;
  height: 3px;
  width: 12px;
  */
}

.post-tab .list-post .post-block-style:hover .post-thumb img {
  transform: scale(1);
}

.post-tab .list-post .post-block-style .post-thumb {
  position: relative;
  border-radius: 50%;
  overflow: initial;
  width: 85px;
  height: 85px;
}

.post-tab .list-post .post-block-style .post-thumb img {
  border-radius: 50%;
  height: 100%;
}

.post-tab .list-post .post-block-style .post-thumb .tab-post-count {
  position: absolute;
  top: 0;
  left: 12px;
  background: #d81a21;
  display: block;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 11px;
  text-align: center;
  line-height: 18px;
  border: 2px solid #fff;
}

/*==================================================
//  commment list
 ================================================== */
.ts-comments-row {
  position: relative;
  margin-bottom: 50px;
}

.ts-comments-row:last-child {
  margin-bottom: 0;
}

.ts-author {
  color: #777777;
}

.ts-author a {
  color: #777777;
}

.ts-author a:hover {
  color: #0e5dae;
}

.ts-author-comments {
  position: relative;
}

.ts-author-comments::after {
  position: absolute;
  content: "";
  left: 36px;
  bottom: 20%;
  width: 1px;
  z-index: -1;
  height: 60%;
  background: #eaeaea;
}

.ts-author-thumb {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.ts-author-thumb img {
  width: 100%;
}

.ts-author-media {
  background: #fff;
  padding: 20px 0;
}

.ts-author-content {
  padding: 30px;
  border: 1px solid #eaeaea;
  position: relative;
}

.ts-author-content::after {
  position: absolute;
  content: "";
  left: -9px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateY(-100%) rotate(45deg);
  border: 1px solid #ddd;
  border-width: 0 0px 1px 1px;
}

.ts-author-content::before {
  position: absolute;
  content: "\e943";
  left: 20px;
  top: -10px;
  font-size: 20px;
  font-family: "iconfont";
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
}

.ts-author-content .comment {
  margin-bottom: 12px;
}

.ts-author-content .comment a {
  font-weight: 500;
  font-style: italic;
  color: #222222;
  line-height: 20px;
}

.newsletter-area {
  background: linear-gradient(20deg, #f84270 0%, #fe803b 100%);
  padding: 40px 0;
}

.newsletter-area .email-form-group {
  position: relative;
}

.newsletter-area .email-form-group .news-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 17px;
}

.newsletter-area .newsletter-email {
  background: transparent;
  height: 48px;
  color: #fff;
  border: none;
  width: 100%;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

.newsletter-area .newsletter-email:focus {
  outline-style: none;
}

.newsletter-area .newsletter-email::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.newsletter-area .newsletter-email::placeholder {
  color: #fff;
  opacity: 1;
}

.newsletter-area .newsletter-submit {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 40px;
  border-radius: 5px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: #222;
  border: none;
  color: #fff;
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.newsletter-area .newsletter-submit:focus {
  outline-style: none;
}

.newsletter-area .newsletter-submit:hover {
  background: #0e5dae;
}

/* FOOTER STYLE */
.ts-footer {
  background: #C6C6C6;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFFFFF;
  font-size: 20px;
  position: center;
}

.ts-footer ul {
  padding: 0;
}

.ts-footer-info {
  padding: 0;
  margin-bottom: 40px;
}

.ts-footer .card {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: inline-block;
  background: #fff;
  color: #666;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem #040C85 !important;
}

.textwidget {
  color: #000;
}

.ts-footer-info li {
  color: black;
  list-style: none;
  display: flex;
  margin-bottom: 15px;
}

.ts-footer-info li i {
  margin-right: 15px;
  font-size: 18px;
}

.ts-footer .widget-title {
  font-size: 30px;
  font-weight: 900;
  background: #D33900;
  color: #fafafa;
  border-bottom: 3px solid #000;
  line-height: 1.4;
  padding-left: 0;
  padding-right: 0;
  position: center;
  text-align: center;
  justify-content: center;
}

.contact-icon {
  position: absolute;
}

.contact-icon i {
  font-size: 36px;
  top: -5px;
  position: relative;
  color: #000;
}

.contact-info {
  margin-left: 75px;
  color: #000;
}

.contact-info h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 0;
}

.ts-footer .footer-widtet {
  padding: 25px 25px;
}

.ts-footer .footer-widtet p {
  display: inline-block;
  width: 100%;
  line-height: 32px;
  margin: 5;
  color: #fafafa;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer-widtet p b, .ts-footer .footer-widtet p strong {
  font-size: 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer__one img {
  max-width: 100%;
  height: auto;
  padding: 20px 20px;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer__one p {
  /* padding-top: 30px; */
}

.ts-footer li {
  padding: 5px 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer li a {
  color: #666;
  font-size: 20px;
  padding: 25px 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer li a:hover {
  color: #333;
  text-decoration: underline;
}

.ts-footer li a:before {
  content: "\f105";
  font-family: FontAwesome;
  display: inline-block;
  /* color: #fff; */
  font-size: 20px;
  vertical-align: middle;
  margin: 0px 0px 0px -10px;
  position: absolute;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-thumb {
  width: 65px;
  height: 65px;
  margin-right: 1px;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-thumb img {
  height: 100%;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-content .post-title a {
  color: #fff;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-content .post-title a:hover {
  color: #0e5dae;
}

.copyright {
  padding: 15px;
  text-align: center;
  color: #f8f9fa !important;
  font-size: 0.875rem;
  line-height: 1.5;
}

.copyright a {
  color: #ffc107 !important;
}

.copyright a {
  opacity: 0.9;
}

.ts-copyright {
  border-top: 3px solid #fafafa;
  background: #01479B;
  padding: 12px;
  color: #fafafa;
}

.ts-copyright p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fafafa;
}

.ts-copyright a {
  color: #fafafa;
  font-weight: bolder;
}

.sidebar-widget:not(:last-child) {
  margin-bottom: 50px;
}

.sidebar-widget .nav-tabs {
  left: 0;
  right: auto;
}

.single-post .post-meta {
  padding: 15px 0;
}

.single-post .post-meta .post-cat {
  color: #fff;
}

.single-post .post-meta .post-author img {
  margin-right: 10px;
}

.single-post p {
  font-size: 22px;
  line-height: 170% !important;
  font-weight: 400;
  margin: 0 0 1.04em;
  text-align: justify;
}

.single-post p img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-post .post-meta li {
  color: #777;
  margin-bottom: 10px;
}

.single-post .post-meta li a:hover {
  color: #0e5dae;
}

.single-post .post-meta li.social-share {
  position: absolute;
  margin-left: 50px;
  right: 0;
}

.single-post .post-meta li.social-share .shareicon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0e5dae;
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  padding: 10px 0;
  font-size: 12px;
}

.single-post .post-meta li.social-share .social-list {
  position: absolute;
  right: 30px;
  top: -8px;
  padding: 0;
  z-index: 1;
  background: #f7f7f7;
  min-width: 200px;
  padding: 12px 18px;
  display: none;
  text-align: center;
}

.single-post .post-meta li.social-share .social-list li {
  margin-bottom: 0;
}

.single-post .post-meta li.social-share:hover .social-list {
  display: block;
}

.single-post .post-content-area ul li {
  list-style: inside;
  margin-bottom: 10px;
}

.single-post img.float-left {
  margin-right: 30px;
  margin-bottom: 30px;
}

.single-post .gallery-img {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 30px;
  clear: both;
}

.single-post .gallery-img img {
  float: left;
  width: 20%;
}

.single-post .post-footer {
  padding: 10px 0;
}

.single-post .tag-lists span {
  padding: 4px 13px;
  background: #0e5dae;
  color: #fff;
  border-radius: 35px;
  margin-right: 6px;
  display: inline-block;
}

.single-post .tag-lists a {
  border: 1px solid #aaaaaa;
  color: #aaaaaa;
  display: inline-block;
  font-size: 14px;
  padding: 4px 13px;
  margin-left: 3px;
  margin-bottom: 10px;
  border-radius: 36px;
  transition: 0.3s;
}

.single-post .tag-lists a:not(:first-child) {
  margin-left: 6px;
}

.single-post .tag-lists a:hover {
  color: #fff;
  background: #0e5dae;
  border-color: #0e5dae;
}

.single-post .post-navigation {
  padding: 30px 0;
}

.single-post .post-navigation .post-next,
.single-post .post-navigation .post-previous {
  width: 50%;
  position: relative;
}

.single-post .post-navigation .post-next a:hover span,
.single-post .post-navigation .post-previous a:hover span {
  color: #0e5dae;
}

.single-post .post-navigation .post-previous {
  padding-left: 120px;
  padding-right: 30px;
  border-right: 1px solid #e7e7e7;
}

.single-post .post-navigation .post-previous img {
  left: 0;
}

.single-post .post-navigation .post-next {
  text-align: right;
  padding-right: 120px;
  padding-left: 30px;
}

.single-post .post-navigation .post-next img {
  right: 0;
  left: auto;
}

.single-post .post-navigation a {
  color: var(--clr-black);
}

.single-post .post-navigation a p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 20px;
}

.single-post .post-navigation a span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  color: var(--clr-black);
}

.single-post .post-navigation img {
  position: absolute;
  top: 0;
  width: 100px;
  height: 70px;
  border-radius: 5px;
}

.author-box {
  margin-top: 20px;
  padding: 30px 0 5px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.author-box .author-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.author-box .author-info {
  margin-left: 20px;
}

.author-box .author-info h3 {
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.author-box .author-url a {
  color: #000;
}

.author-box .author-url a:hover {
  color: #0e5dae;
}

.author-box .author-counter span {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 2px 8px;
}

.author-box .author-social {
  padding-bottom: 20px;
}

.author-box .author-social a {
  color: #999;
  margin-left: 10px;
}

.entry-header {
  margin-bottom: 30px;
}

.post-video {
  position: relative;
  margin-bottom: 35px;
}

.post-video::before {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.85) 100%);
}

.post-video img {
  width: 100%;
  border-radius: 5px;
}

.post-video-content {
  padding: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.post-video-content h3 a {
  color: #fff;
}

.post-video-content .ts-play-btn {
  position: relative;
  top: 0;
  left: 0;
  right: auto;
  font-size: 20px;
  width: 60px;
  height: 60px;
  border: 1px solid #92999a;
  border-radius: 50%;
  padding: 18px 0;
  display: block;
  text-align: center;
  font-size: 15px;
  background: rgba(0, 0, 0, 0.25);
  float: left;
  color: #fff;
  margin-right: 20px;
}

.comments-list .comment {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

#comment-submit {
  background: #0e5dae;
  color: #FFF;
  border: 0px;
  margin-left: 15px;
  outline: 0px;
  padding: 5px 30px;
}

.comments-form {
  background: #f4f8fb;
  padding: 25px;
}

.comments-list .comment .comment-avatar {
  width: 54px;
  height: 54px;
  margin-right: 0px;
}

.comments-list .comment .comment-body {
  margin-left: 80px;
}

.comments-list .comment .comment-body .comment-author {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 600;
  font-size: 18px;
  color: #303030;
}

.comments-list .comment .comment-body .comment-date {
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 300;
  font-size: 12px;
  color: #333;
}

.comments-list .comment .comment-body .comment-content {
  margin: 15px 0;
}

.comments-list .comment .comment-body .comment-content p {
  font-size: 16px !important;
}

.transing-slide-style2:hover .owl-nav .owl-prev,
.transing-slide-style2:hover .owl-nav .owl-next {
  opacity: 1;
}

/* =====================
// Contact page
======================== */
.contact-info h4 {
  font-weight: 600;
}

/*# OLD HEADER NAVIGATION LAYOUT */
.header__nav {
  background: #0e5dae;
  z-index: 1111111111;
}

.header__nav.sticky__header {
  left: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  /*
  transform: translateY(0px);
     transition: all 1s ease 0s;
  */
  width: 100%;
  z-index: 111;
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.header__nav .nav__wrap {
  background: #0e5dae;
  height: 46px;
  margin-left: 0px;
}

.header__nav .nav__wrap .sticky__logo.hide {
  display: none;
}

.header__nav .nav__wrap .sticky__logo .date__note {
  position: absolute;
  top: 46px;
  left: 24px;
  color: #fff;
  white-space: nowrap;
  padding: 5px;
  background: rgba(0, 0, 0, 0.8);
  line-height: 13px;
  font-size: 11px;
}

.header__nav .nav__wrap .sticky__logo img {
  /* height: 46px; */
  height: 30px;
  margin: 7px 6px;
  border-radius: 3px;
}

.header__nav .sidebar__collapse {
  background: #0d56a0;
  cursor: pointer;
  padding: 10px 18px;
  font-size: 20px;
}

.header__nav ul.nav-menu li {
  display: inline-block;
  margin-right: -4px;
}

.header__nav ul.nav-menu li a {
  padding: 11px 18px;
  font-family: var(--font-primary);
  font-size: 22px;
  display: inline-block;
  color: #FFF;
}

.header__nav ul.nav-menu li a:hover {
  background: #093d73;
}

.header__nav ul.nav-menu li.current-menu-item {
  background: #093d73;
}

.header__nav .right__ {
  text-align: right;
}

.header__nav .right__ li {
  font-family: var(--font-primary);
  display: inline-block;
  margin-top: 11px;
  margin-right: -4px;
  text-align: right;
}

.header__nav .right__ .icon__ {
  cursor: pointer;
  padding: 13px 18px 14px;
  font-size: 16px;
}

.header__nav .right__ .icon__.search__ {
  background: #3074b9;
}

.header__nav .right__ .icon__.search__:before {
  content: "";
}

.header__nav .right__ .icon__.recent__:before {
  content: "";
}

.header__nav .right__ .icon__.popular__:before {
  content: "";
}

.header__nav .right__ .icon__.search__:hover:before, .header__nav .right__ .icon__.recent__:hover:before, .header__nav .right__ .icon__.popular__:hover:before {
  transition: margin-left 0.5s;
  display: block;
}

.header__nav .right__ .icon__:before {
  display: none;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  line-height: 13px;
  font-size: 11px;
  padding: 8px 11px;
  position: absolute;
  top: 46px;
  margin-left: 0px;
  white-space: nowrap;
  word-break: keep-all;
  -webkit-animation: slide 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide 0.5s forwards;
  animation-delay: 2s;
}
@keyframes slide {
  100% {
    left: 0;
  }
}
.header__nav .right__ .icon__.recent__ {
  background: #0b4a8b;
}

.header__nav .right__ .icon__.popular__ {
  background: #093d73;
}

.header__nav .right__ .icon__.popular__ i {
  color: #f4a100;
}

.header__nav .right__ .icon__.popular__ i span {
  font-size: 15px;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.header__nav .right__ .icon__.english__ {
  background: #e11b22;
  position: relative;
  padding: 14px 10px 14px;
  color: #FFF;
  font-size: 15px;
}

.header__nav .right__ .icon__ i {
  color: #FFF;
}

.trending__ {
  background: #FFF;
  box-shadow: 0 5px 5px #eee;
  /* border-bottom: 1px solid #CCC; */
  line-height: 0.5em;
  margin-top: 0px;
}

.trending__ .title__label {
  position: relative;
  padding: 0 1.6em;
  line-height: 3.1em;
  font-weight: 700;
  color: #FFF;
  font-size: 0.9em;
  background-color: #e11b22;
  float: left;
  font-size: 15px;
}

.trending__ .title__label::after {
  content: "";
  position: absolute;
  top: 13px;
  right: -21px;
  border-color: transparent transparent transparent #e11b22;
  border-style: solid;
  border-width: 0.7em;
}

/* 

.trending__ .title__label::before {
	content: "";
    background: #FFF;
    height: 100%;
    position: absolute;
    left: -15px;
    top: 0px;
    width: 30px;
    -webkit-clip-path: polygon(0 0,50% 0,100% 100%,50% 100%);
    clip-path: polygon(0 0,50% 0,100% 100%,50% 100%);
}

.trending__ .title__label::after {
	content: "";
    background-color: #e11b22;
    height: 100%;
    position: absolute;
    right: -15px;
    top: 0px;
    width: 30px;
    -webkit-clip-path: polygon(0 0,50% 0,100% 100%,50% 100%);
    clip-path: polygon(0 0,50% 0,100% 100%,50% 100%);
}

*/
.trending__ .trending__list {
  float: right;
  width: 80%;
  position: relative;
  left: -140px;
  margin-top: 19px;
}

.trending__ .trending__list ul li {
  position: relative;
  padding-left: 0.8em;
  margin-right: 2em;
  display: inline-block;
}

.trending__ .trending__list ul li a {
  color: #000;
  font-weight: 400;
  font-size: 15px;
}

.trending__ .trending__list ul li a:hover {
  color: #0e5dae;
}

.trending__ .trending__list ul li::after {
  content: "#";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.24);
  font-weight: 400;
}

.hide {
  display: none;
}

.color-white {
  color: #FFFFFF;
}

.color-red {
  color: red;
}

a.link-white {
  color: #FFF;
}

a.link-white:hover {
  color: #0e5dae;
}

.title__only {
  font-size: 45px;
  margin: 0px 0 30px;
}

.prl-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.trending__num {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #711345;
  font-weight: 700;
  height: 40px;
  width: 40px;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px;
}

.trending__num span {
  font-size: 30px;
  position: relative;
  top: 8px;
  color: #2260bf;
}

.gallery__image {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #e11b22;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 9;
}

.nav-link.active .sabai__ {
  background: var(--clr-primary);
  color: var(--clr-secondary);
  border-radius: 50px;
}

.sabai__ {
  border-right: 1px solid #EEE;
  color: var(--clr-link);
  padding: 0 15px;
  font-weight: 600;
  font-family: var(--font-primary);
  font-size: 18px;
  position: relative;
  border: 0;
  top: 20px;
}

.sabai__:hover {
  color: #0e5dae;
}

.sabai__.bri__ght {
  border: 2px solid #fff;
  color: #fff;
}

.search__box {
  position: absolute;
  width: 100%;
  padding: 20px 20px 20px;
  background: #f4f8fb !important;
  z-index: 1;
}

.search__box .close__search {
  cursor: pointer;
}

.search__box .close__search i {
  margin-top: 5px;
  font-size: 20px;
}

.recent__box {
  position: absolute;
  width: 100%;
  height: 380px;
  overflow-y: auto;
  padding: 20px 0px 10px;
  background: #fff !important;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.34);
  z-index: 1 !important;
}

.popular__box {
  position: absolute;
  width: 100%;
  height: 480px;
  overflow-y: auto;
  padding: 20px 0px 10px;
  background: #fff !important;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.34);
  z-index: 1 !important;
}

.close__btn {
  float: right;
  margin-top: -5px;
  background: #d81a21;
  color: #FFF;
  padding: 5px 10px;
  cursor: pointer;
}

input[type=text]:active {
  border: 2px solid #205389;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check {
  padding-left: 0;
  position: relative;
}

.no-calendar-icon::after, .no-keyword-icon::after {
  content: "\e00d";
  color: #d6d6d6;
  font-family: "iconfont";
  line-height: 22px;
  position: absolute;
  margin-top: -11px;
  pointer-events: none;
  right: 17px;
  top: 50%;
}

.no-keyword-icon::after {
  content: "A";
}

@media (max-width: 767px) {
  .text__block {
    margin-left: -15px;
    margin-right: -15px;
    padding: 1.5rem 20px !important;
  }
  .post__hasImg img {
    width: 60% !important;
  }
  .post__hasDes {
    display: none;
  }
  .container.sandesh__feed {
    /*	
    width: 100% !important;
    padding-left: 0 !important; 
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    */
  }
}
.text__block {
  text-align: center;
  position: relative;
  padding: 3rem 7rem;
  box-shadow: var(--box-shadow);
  border-radius: 20px;
  margin: 25px 0;
}

.divi__derbefore {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: var(--clr-border);
}

.text__block .context {
  display: inline-block;
  padding-left: 1rem;
}

.text__block .context::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.45rem;
  height: 100%;
  background: var(--clr-primary);
  border-radius: 50px;
}

.context {
  display: block;
  position: relative;
  margin-bottom: 30px;
  color: var(--clr-primary) !important;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-left: var(--sm-gap);
}

.post__header__container > .context {
  margin-bottom: 25px !important;
}

.text__block .highlight {
  width: 100%;
  letter-spacing: -2px;
  font-weight: 300;
  margin: 0 0 30px 0;
}

.text__block .highlight a {
  color: var(--clr-link-dark);
  text-decoration: none;
  line-height: 150%;
  font-family: var(--font-primary);
  font-weight: 700;
}

.text__block .highlight a:hover {
  color: var(--clr-link-hover);
}

.title__large {
  font-size: 54px;
  font-weight: 900;
  color: #0e5dae;
}

.author__box, .post__time, .post__comments, .post__date {
  display: inline-flex;
  display: -webkit-inline-flex;
  align-items: center;
  margin-right: 1.1em;
}

.author__box a {
  font-size: 18px;
  font-weight: 500;
  color: var(--clr-link-dark);
  cursor: pointer;
}

.post__info label, .post__info span {
  color: rgba(0, 0, 0, 0.5);
}

.author__box label {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 5px;
  vertical-align: top;
}

a.color-white {
  color: #FFFFFF;
}

.author__box .author__img {
  max-width: 2.5rem;
  height: 2.5rem;
  max-width: 45px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-right: 1em;
}

.author__box .author__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__time, .post__comments, .post__date {
  color: var(--clr-link-dark);
  font-size: 0.95em;
  font-weight: 500;
}

.post__time i, .post__comments i, .post__date i {
  margin-right: 0.4em;
  font-size: 1.4em;
}

.post__hasImg {
  margin: 30px -15px;
}

.post__hasImg img {
  max-height: 600px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}

.post__hasDes p {
  margin: 40px auto 0px;
  font-size: 24px;
  color: var(--clr-desc);
  text-align: center;
  line-height: 150%;
  position: relative;
}

.quick__update {
  color: #fff;
  background-color: #fda04e;
  vertical-align: middle;
  line-height: 44px;
  padding: 0 15px 0 8px;
  border-radius: 50px;
  display: block;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.quick__update svg {
  width: 28px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
}

.quick__update:hover {
  background-color: rgba(253, 160, 78, 0.14);
  color: #fda04e;
}

.quick__update:hover svg {
  fill: #fda04e;
}

@media (max-width: 915px) {
  .quick__update {
    margin: 15px 15px 0px;
  }
}
.bg-white {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow__ {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px;
  padding: 0;
}

.shadow__only {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px;
}

.lr-p-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.height-70-auto {
  height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.height-90-auto {
  height: 90px;
}

.height-100-auto {
  height: 100px;
}

.height-127-auto {
  height: 127px;
}

@media (max-width: 1336px) {
  .relative__post img {
    height: 220px !important;
  }
}
@media (max-width: 1280px) {
  .relative__post img {
    height: 180px !important;
  }
}
@media (max-width: 992px) {
  .relative__post img {
    height: 200px !important;
  }
}
.relative__post .post-content p {
  font-weight: 500;
  font-size: 18px;
  color: #505050;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.relative__post img {
  width: 100%;
  height: 220px;
}

.relative__post.list__view img {
  width: 150px;
  height: 100px;
}

.show__list, .show__grid {
  cursor: pointer;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100vh;
  z-index: 11111;
  background: #0e5dae;
  color: #fff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 55px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #7386D5;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

#dismiss:hover {
  background: #fff;
  color: #7386D5;
}

.overlay {
  position: fixed;
  cursor: pointer;
  top: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #0d56a0;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  color: #FFF;
  padding: 10px 20px;
  font-size: 1.1em;
  display: block;
  font-weight: 700;
}

#sidebar ul li a:hover {
  color: #7386D5;
  background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded=true] {
  color: #fff;
  background: #6d7fcc;
}

a[data-toggle=collapse] {
  position: relative;
}

a[aria-expanded=false]::before, a[aria-expanded=true]::before {
  content: "\e259";
  display: block;
  position: absolute;
  right: 20px;
  font-family: "Glyphicons Halflings";
  font-size: 0.6em;
}

a[aria-expanded=true]::before {
  content: "\e260";
}

@media (max-width: 1125px) {
  #desktop__only {
    display: none;
  }
  .header__nav ul.nav-menu li a {
    font-size: 15px;
  }
  .trending__list {
    margin-right: -40px;
  }
}
@media (max-width: 991px) {
  #desktop__only {
    display: none;
  }
  .trending__ {
    display: none;
  }
  #desktop__only {
    display: none;
  }
  .header__nav .sidebar__collapse {
    background: none;
    margin-left: -15px;
  }
  .recent__box, .popular__box {
    height: 95vh;
  }
  .mbl__mb__30 {
    margin-bottom: 30px;
  }
  .sidebar__ads {
    display: center;
  }
  .post-title.title-xl {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .featured-tab .comments__section.nav-tabs {
    margin: 10px 0;
    position: relative;
  }
  .res__posts_gapper {
    margin-bottom: 55px;
  }
  .res__posts__filters {
    margin-top: 53px;
    position: absolute;
    float: left;
    left: 0px;
  }
}
@media (max-width: 576px) {
  .header__nav .right__ li {
    background: red;
    position: relative;
    top: -44px;
  }
  .header__nav .right__ .english__ {
    padding-bottom: 9px;
  }
}
.play__video {
  position: absolute;
  width: 60px;
  height: 60px;
  padding-top: 0px;
  font-size: 35px;
  color: #FFF;
  cursor: pointer;
  bottom: 280px;
  margin-left: 100px;
  text-align: center;
}

@media (max-width: 450px) and (min-width: 1px) {
  .text__block {
    padding: 1.5rem 20px 0.5rem !important;
  }
  .text__block .highlight {
    line-height: 20px;
    margin: 0 !important;
  }
  .highlight a.title__large {
    line-height: 20px;
    font-size: 20px !important;
    font-weight: 500;
  }
  .post__hasImg {
    margin: 10px -15px;
  }
  .sandesh__trending .container .trending__wrap > a {
    padding: 0.1rem 0.5rem !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 2px !important;
  }
}
@media (max-width: 767px) and (min-width: 1px) {
  .highlight a.title__large {
    line-height: 114%;
    font-size: 35px;
    font-weight: 700;
  }
}
.posts__banner__ads, .banner__ads {
  margin: 20px 0 20px;
  padding-top: 20px;
  text-align: center;
}

.posts__banner__ads img, .banner__ads img {
  margin-bottom: 20px;
}

.sidebar__ads img {
  margin-bottom: 15px;
  width: 100%;
}

.top__advertisement {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  width: 100%;
  transition: 3s;
  background-color: var(--clr-body);
}

.top__advertisement img {
  width: 100% !important;
  height: 50vh !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.top__advertisement .content span {
  color: var(--clr-link) !important;
}

.top__advertisement .container .row {
  text-align: center;
  justify-content: center;
}

.top__advertisement .container .row .content .image {
  max-width: 100%;
  height: auto;
}

.top__advertisement .close__top__ads {
  position: absolute;
  right: 10px;
  margin-top: -60px;
}

.top__advertisement .close__top__ads .skip__ads {
  border: 2px solid #e11b22;
  text-transform: uppercase;
  line-height: 44px;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 20px;
  color: #e11b22;
  border-radius: 50px;
}

.top__advertisement .close__top__ads .skip__ads:hover {
  transition: 0.3s;
  background-color: #e11b22;
  color: #FFF;
  cursor: pointer;
}

@media (max-width: 992px) {
  .top__advertisement .container .row {
    margin-top: 50px;
  }
  .search__box input {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .top__advertisement .container .row {
    margin-top: 120px;
  }
  .top__advertisement .close__top__ads {
    top: 20px;
  }
  .top__advertisement .close__top__ads .skip__ads {
    padding: 0px 20px;
  }
  .top__header__ads {
    display: none;
  }
  iframe {
    width: 100%;
  }
}
.at4-jumboshare table {
  float: right;
}

.share__this {
  float: left;
}

.at4-count, .at4-title {
  float: left;
}

.at4-count > span:last-child, .at4-title > span:last-child {
  font-size: 34px !important;
  line-height: 54px !important;
  color: #0e5dae !important;
}

.at4-title {
  font-size: 14px !important;
}

.at4-title {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.68) !important;
  float: left;
  padding-top: 24px;
  padding-left: 8px;
}

.at4-jumboshare .at4-count-container {
  display: table-cell;
  text-align: center;
  min-width: 10px !important;
  vertical-align: middle;
  border-right: none !important;
  padding-right: 0 !important;
}

.at4-jumboshare .at4-count {
  line-height: 34px !important;
}

.at-icon-wrapper .at-label {
  display: none;
}

.at-svc-facebook, .at-svc-messenger, .at-svc-twitter {
  padding-right: 35px !important;
}

.post__comment__count__box {
  display: inline-block;
  float: right;
  margin-top: 4px;
  background: #3074b9;
  color: #FFFFFF;
  padding: 3px 20px;
  border-radius: 3px;
  font-size: 16px;
}

.post__comment__count__box .count {
  position: relative;
  top: 2px;
  font-size: 28px;
}

@media (max-width: 991px) {
  .at4-jumboshare table {
    float: left;
    margin: 8px 0;
  }
}
@media (max-width: 500px) {
  .post__comment__count__box {
    float: none;
    margin: 8px 0;
  }
  .at-svc-facebook, .at-svc-messenger, .at-svc-twitter {
    padding-right: 10px !important;
  }
}
.ndc-chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 0.3em;
  left: 0.15em;
  position: relative;
  top: 5px;
  transform: rotate(-45deg);
  vertical-align: top;
  width: 0.3em;
  border-color: #fff;
  box-sizing: initial;
}

.ndc-chevron.ndc-right:before {
  left: -1px;
  transform: rotate(45deg);
}

.ndc-chevron.ndc-left:before {
  left: 1px;
  transform: rotate(-135deg);
}

div#ndp-nepali-box {
  font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
  border: 1px solid #a6c9e2;
  background-color: #fdfefe;
  position: absolute;
  top: -999px;
  z-index: 9999;
  padding: 1px;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

div#ndp-table-div {
  margin: 0;
}

div#ndp-table-div table {
  border-spacing: 2px;
  border-collapse: separate;
}

div#ndp-nepali-box td.ndp-date {
  padding: 2px;
  border: 1px solid #c5dbec;
  background: #dfeffc;
  color: #2e6e9e;
}

div#ndp-nepali-box td.ndp-selected {
  border: 1px solid #fad42e;
  background: #fbec88;
  color: #363636;
  text-align: center;
}

div#ndp-nepali-box td.ndp-current {
  padding: 2px;
  border: 1px solid #fed22f;
  background: #f5f8f9;
  text-align: center;
  font-weight: 700;
}

div#ndp-nepali-box td.ndp-current a {
  color: #e17009;
  display: block;
}

div#ndp-nepali-box td.ndp-date a {
  display: block;
  color: #1c94c4;
  text-decoration: none;
  width: 20px;
}

a.ndp-disabled {
  color: #ccc !important;
}

div#ndp-nepali-box td.ndp-current:hover, div#ndp-nepali-box td.ndp-date:hover {
  border: 1px solid #fed22f;
  opacity: 0.8;
}

div#ndp-nepali-box td.ndp-date a:hover {
  color: #1c94c4;
}

div#ndp-nepali-box table, div#ndp-nepali-box td, div#ndp-nepali-box tr {
  font-size: 12px;
  height: 19px;
  line-height: 19px;
  border-collapse: separate;
  border-spacing: 2px;
}

div#ndp-nepali-box a {
  text-decoration: none;
}

.ndp-days th, .ndp-header, div#ndp-nepali-box td.ndp-date a {
  text-align: center;
  font-weight: 700;
}

.ndp-header {
  border: 1px solid #4297d7;
  background: #87b6d9;
  color: #fff;
  font-size: 13px;
  padding: 2px;
  line-height: 20px;
  margin: 2px;
}

.ndp-next:hover, .ndp-prev:hover {
  background: #fed22f;
}

.ndp-next, .ndp-prev {
  position: absolute;
  top: 8px;
  width: 1.3em;
  height: 1.3em;
  background: #247ac4;
  border-radius: 50%;
}

.ndp-prev {
  left: 7px;
}

.ndp-next {
  right: 7px;
}

#currentMonth #ndp-month-select, #currentMonth #ndp-year-select {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  padding: 2px 1px 0;
  height: 22px;
}

.ndp-corner-all, .ndp-corner-left, .ndp-corner-tl, .ndp-corner-top {
  border-top-left-radius: 5px;
}

.ndp-corner-all, .ndp-corner-right, .ndp-corner-top, .ndp-corner-tr {
  border-top-right-radius: 5px;
}

.ndp-corner-all, .ndp-corner-bl, .ndp-corner-bottom, .ndp-corner-left {
  border-bottom-left-radius: 5px;
}

.ndp-corner-all, .ndp-corner-bottom, .ndp-corner-br, .ndp-corner-right {
  border-bottom-right-radius: 5px;
}

.sandesh__navigation {
  position: sticky !important;
  top: -1px !important;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.14) 0 0 18px;
  line-height: 35px;
  height: 50px;
}

.sandesh__navigation {
  background-color: var(--clr-header);
  color: #fff;
  position: relative;
}

.sandesh__navigation .date__note {
  position: fixed;
  top: 57px;
  margin-left: -45px;
  color: #ffffff;
  white-space: nowrap;
  padding: 10px 25px;
  background: var(--clr-primary);
  line-height: 10px;
  font-weight: 500;
  border-radius: 50px;
}

.sandesh__navigation .sticky__logo {
  padding: 10px 25px 10px 0;
  position: absolute;
  top: -12px;
  left: -200%;
}

.sandesh__navigation .sticky__logo img {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
}

.sandesh__navigation .sticky__logo.reveal {
  position: relative;
  left: 0px;
  animation: slideDown 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
  transform-origin: top;
}

.sandesh__navigation ul {
  display: flex;
  margin-left: -40px;
}

.sandesh__navigation .container {
  position: relative;
  align-items: center;
}

.ok-container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.flx {
  display: flex;
}

.sandesh__navigation ul li:hover > a, .sandesh__navigation ul li.current-menu-item a {
  color: var(--clr-header-link-active);
}

.sandesh__navigation ul li:first-child a {
  padding-left: 0;
}

.sandesh__navigation ul li:hover .mega__menu {
  display: block;
  opacity: 1;
  top: 75%;
  pointer-events: auto;
}

.sandesh__navigation ul li a {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--clr-header-link);
  display: block;
  padding: 6px 20px 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sandesh__navigation ul li.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}

.sandesh__navigation ul li.menu-item-has-children:before {
  position: absolute;
  top: 8px;
  right: 15px;
  font-family: fontAwesome;
  content: "\f107";
  vertical-align: baseline;
  font-style: normal;
  color: #FFFFFF;
}

.sandesh__navigation ul li .sub-menu {
  visibility: hidden;
  display: block;
  position: absolute;
  background: var(--clr-primary);
  margin: 0;
  margin-top: -1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: 0.3s linear;
  z-index: 5;
  padding: 15px 0;
  border-radius: 0 0 5px 5px;
  padding: 0;
  width: 250px;
  z-index: 1;
}

.sandesh__navigation ul li .sub-menu li {
  display: block !important;
  width: 100%;
}

.sandesh__navigation ul li .sub-menu li a {
  display: block;
  color: var(--clr-header-link);
  padding: 10px 15px !important;
  font-size: 20px;
}

.sandesh__navigation ul li .sub-menu li a:hover {
  background-color: var(--clr-primary);
  color: var(--clr-header-link-active) !important;
}

.sandesh__navigation ul li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transition: 0.3s linear;
}

.sandesh__navigation .ok-container {
  position: relative;
  align-items: center;
}

.flx-wrp {
  flex-wrap: wrap;
}

.sticky__nav {
  display: none !important;
}

.sticky__nav.reveal {
  display: block !important;
}

.sandesh__navigation .activity__container {
  margin-top: -23px;
  margin-left: auto;
  transition: all 0.3s ease;
}

.activity__container {
  margin-left: auto;
  align-self: center;
  display: flex;
  align-items: center;
}

.icon__latest {
  background-color: rgba(253, 160, 78, 0.1215686275) !important;
}

.icon__latest:hover {
  background: #fda04e !important;
}

.icon__trending, .icon__latest, .icon__dark__toggle {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: rgba(34, 96, 191, 0.0588235294);
  border-radius: 50%;
  text-align: center;
  padding-top: 1px;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.activity__container .icon__trigger {
  display: inline-block;
  width: 28px;
  margin-top: 5px;
  margin-left: 18px;
  cursor: pointer;
}

.activity__container .icon__trigger > span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.activity__container .icon__trigger:hover > span:nth-child(2) {
  width: 30%;
}

.activity__container .icon__trigger:hover > span:nth-child(3) {
  width: 80%;
}

.sandesh__navigation .activity__container .icon__trending svg, .sandesh__navigation .activity__container .icon__latest svg {
  fill: #fff;
  width: 28px;
}

.icon__latest svg {
  fill: #fda04e;
  width: 28px;
  height: 28px;
}

.icon__trending svg, .icon__latest svg {
  fill: #2260bf;
  height: 24px;
  width: 24px;
  transition: all 0.3s ease;
}

.sandesh__navigation .activity__container .icon__trending {
  margin-right: 15px;
}

.search__results.container {
  max-width: 800px;
}

.search__results {
  padding: 20px;
}

.error__404 {
  text-align: center;
}

.error__404 h1 {
  margin-top: 15px;
  font-weight: 700;
  color: var(--clr-link);
}

.error__404 img {
  margin-top: 10px !important;
  margin: 60px auto;
  max-width: 65%;
  width: auto;
}

.thought {
  padding-bottom: 18px !important;
  margin-bottom: 22px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
  padding: 0;
  box-shadow: none;
  background-color: transparent;
  border-radius: 0;
}

.thought .wrapper {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.thought .wrapper a {
  display: flex;
  position: relative;
}

.thought .wrapper .content {
  flex: 2;
  padding-left: 75px;
  position: relative;
}

.thought .wrapper .content .image__wrapper {
  position: absolute;
  left: 0;
}

.thought .wrapper .content .image__wrapper .image {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: solid 2px #fff;
  overflow: hidden;
}

.thought .wrapper .content .image__wrapper .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thought .wrapper .content .title {
  margin: 0;
  color: var(--clr-link);
  line-height: 1.3;
  font-size: 19px;
  font-weight: 600;
}

.thought .wrapper .content .meta__wrapper {
  display: flex;
  align-items: center;
}

.thought .wrapper .content .meta__wrapper .meta {
  margin: 0;
  color: var(--clr-desc);
  font-size: 14px;
}

.thought .wrapper .content .meta__wrapper .meta span {
  vertical-align: middle;
  display: inline-block;
  font-weight: 500;
  color: var(--clr-desc);
  margin-top: 5px;
  font-size: 14px;
}

.interview {
  margin-bottom: 15px;
}
.interview a {
  display: flex;
  position: relative;
}

.interview .quotes__image {
  margin-bottom: 0;
  margin-right: 15px;
}

.interview .quotes__image img {
  max-width: 20px;
}

.interview .interview__thumb {
  min-width: 134px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0;
  width: 100%;
  max-width: 150px;
  height: 100px;
}

.interview .content {
  flex: 2;
  padding-left: 18px;
  align-self: center;
}

.interview .content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--clr-link);
  line-height: 1.3;
}
.interview .content h2:hover {
  color: var(--clr-link-hover);
}

@media (max-width: 1200px) {
  .sandesh__navigation ul li a {
    padding: 6px 10px 12px;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .interview .interview__thumb {
    width: 100px;
    max-width: 100px;
    height: 90px;
    min-width: 120px;
  }
  .interview .content h2 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .footer__style__one .middle__part {
    padding: 25px 15px !important;
  }
  .footer__style__one .middle__part::before {
    border: 0 !important;
  }
  .footer__style__one .extra {
    margin: 25px 0px !important;
  }
}
@media (max-width: 768px) {
  .footer__style__one .right__part {
    padding-top: 15px;
    padding-left: 15px !important;
  }
  .footer__style__one .extra .wrap {
    display: block !important;
  }
  .footer__style__one .extra .wrap b {
    margin-right: 0 !important;
    font-size: 17px !important;
    text-align: left !important;
    border-right: none !important;
    padding-bottom: 20px !important;
    padding-left: 10px !important;
    border-bottom: 1px solid var(--clr-primary) !important;
    display: block !important;
    margin-bottom: 20px !important;
  }
  .footer__style__one .extra .content p {
    margin-left: 10px !important;
    line-height: 1.9 !important;
  }
  .interview {
    border-right: none;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .interview .quotes__image {
    display: none;
  }
  .interview .interview__thumb {
    max-width: 108px;
    height: 75px;
  }
}
.sticky__sidebar {
  position: sticky;
  top: 90px;
}

@media (max-width: 1024px) {
  .search__menu {
    max-width: 100% !important;
    height: 100% !important;
  }
}
@media (max-width: 1024px) {
  .sandesh__navigation {
    display: none !important;
  }
  .sandesh__search {
    display: none !important;
  }
  .mobres {
    margin-top: 25px;
  }
  .copyright {
    margin-bottom: 60px !important;
  }
}
.sandesh__container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.sandesh__trending {
  padding: 5px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #f1f1f1;
}

.sandesh__trending .container .trending__wrap {
  overflow-x: auto;
  display: flex;
  margin-right: 50px;
}

.sandesh__trending .container .trending__wrap > a {
  display: inline-block;
  background-color: transparent;
  color: #534c4c;
  font-size: 14px;
  padding: 6px 15px 2px 42px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin: 0 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sandesh__trending a .corner__rounded {
  position: absolute;
  top: 3px;
  left: 4px;
  height: 29px;
  width: 29px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #2260bf;
}

.sandesh__trending a .corner__rounded > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sandesh__trending .sandesh__search {
  margin-left: auto;
}

.sandesh__search {
  position: relative;
}

.sandesh__top__search {
  max-width: 250px;
  min-width: 250px;
  display: flex;
  align-items: center;
  align-self: center;
  border: 1px solid #f1f1f1;
  border-radius: 68px;
  padding: 3px 15px;
  margin-left: auto;
}

.sandesh__top__search > input {
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 15px;
  color: #000;
}
.sandesh__top__search > input::-moz-placeholder {
  color: #534c4c;
}
.sandesh__top__search > input::placeholder {
  color: #534c4c;
}
.sandesh__top__search > input:focus {
  outline: none;
  border: none;
}

.sandesh__top__search .sandesh__search__trig {
  max-width: 18px;
  text-align: right;
  cursor: pointer;
}

.sandesh__top__search .sandesh__search__trig img {
  max-width: 15px;
  vertical-align: middle;
}

@media (max-width: 1084px) {
  .latest__slide .sandesh__container h2, .vegitable__slide .sandesh__container h2 {
    margin: 0 0 38px !important;
  }
  .sandesh__container {
    width: 95%;
    padding: 0px 20px !important;
  }
}
@media (min-width: 811px) and (max-width: 1084px) {
  .sandesh__trending .container {
    overflow-x: visible;
  }
  .sandesh__trending .container {
    overflow-x: auto;
  }
  .sandesh__top__search {
    min-width: 250px;
  }
}
.image__bg {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.single__block {
  position: relative;
  margin-top: -20rem;
}

.single__block .wrap {
  background: var(--clr-black-white);
  padding: 2rem;
}

.single__post {
  background: var(--clr-body);
  position: relative;
  margin-top: -20rem 0;
  padding: 2rem;
}

.single__post .left__sticky .comments {
  margin-top: 24px;
  text-align: center;
  cursor: pointer;
}

.left__sticky.on__mobile {
  display: none !important;
}

.single__post .left__sticky .comments img {
  max-width: 48px;
  margin-bottom: 10px;
}

.single__post .left__sticky .comments .comment__number {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-decoration: none;
  color: var(--clr-black);
}

.single__post .left__sticky .comments .comment__number > span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.68;
  color: inherit;
  display: block;
}

.single__post .left__sticky .social__share {
  margin-top: 22px;
}

.social__share .st-btn {
  display: block !important;
  height: 40px !important;
  margin: 5px auto !important;
  text-align: center !important;
  border-radius: 50% !important;
  width: 40px !important;
}

.single__post .middle {
  flex: 2;
  margin-top: 10px;
  padding-left: 24px;
}

.single__post .post__header__container {
  background-color: var(--clr-body);
  position: sticky;
  z-index: 48;
  transition: all 0.3s ease;
}

.single__post .left__container {
  background-color: var(--clr-body);
  position: sticky;
  top: 90px !important;
}

.single__post .post__header__container.stick__heading .title {
  padding-top: 20px;
  font-size: 34px;
  margin-bottom: 15px;
}

.single__post .middle .title {
  color: var(--clr-black);
  margin: 0;
  font-family: var(--font-primary);
  font-size: 65px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.single__post .middle .subtitle {
  color: var(--clr-link);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 0;
  padding-bottom: 10px;
}

.single__post .post__header__container .title__below__ads {
  text-align: left;
  margin-bottom: 0px;
}

.single__post .post__header__container.stick__heading .post__author, .single__post .post__header__container.stick__heading .title__below__ads {
  display: none;
}

.single__post .post__author {
  display: flex;
  margin: 15px 0px 15px 0;
  color: var(--clr-black);
  align-items: center;
}

.single__post .post__author .author__wrapper {
  display: inline-flex;
  position: relative;
  margin-right: 18px;
}

.single__post .post__author .author__wrapper .author {
  margin-right: 10px;
}

.single__post .post__author .author__wrapper .author::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1rem;
  width: 1px;
  height: 100%;
  background: #e6e6e6;
}

.single__post .post__author .author__wrapper .author .author__icon {
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  max-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.single__post .post__author .author__wrapper .author span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}

.single__post .post__author .author__wrapper .author .author__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single__post .post__author .author__wrapper .author span:first-child {
  margin-right: 10px;
}

.single__post .post__author .post__hour {
  color: #505050;
  font-size: 18px;
  font-weight: 500;
  margin-right: 24px;
  padding-left: 15px;
}

.single__post .post__author .post__hour img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
}

.single__post .author__wrapper .post__hour span {
  vertical-align: middle;
  display: inline-block;
  font-weight: 500;
}

.single__post .post__header__container.stick__heading .subtitle {
  display: none;
}

.post__content {
  color: var(--clr-black);
  font-size: 22px;
  margin: 0 0 28px;
  font-weight: 400;
  line-height: 1.8;
}

.post__content img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 20px 0;
}

.post__tags {
  padding: 0 0 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--clr-border);
}

.post__tags > a {
  display: inline-block;
  line-height: 28px;
  padding: 0 20px;
  text-decoration: none;
  color: var(--clr-bluish);
  border-radius: 68px;
  font-size: 13px;
  background-color: var(--clr-gray);
}

.post__reactions {
  margin-top: 28px;
  padding: 24px 15px 15px;
  text-align: center;
  color: var(--clr-link);
  margin-bottom: 28px;
  border-radius: 4px;
}

.post__reactions h1 {
  font-size: 25px;
  margin: 0 0 15px;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--clr-primary);
}

.posts__comment {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  background-color: var(--clr-primary);
  padding: 20px 20px 15px;
  color: #fff;
  border-radius: 4px 4px 0 0;
}

.posts__comment h3 {
  font-size: 30px;
  margin: 0;
  font-weight: 800;
  color: var(--clr-header-link);
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
  line-height: 1;
}

.posts__comment .post__menus {
  margin-left: auto;
  position: relative;
}

.posts__comment .post__menus span {
  display: inline-block;
  font-size: 18px;
  color: var(--clr-wash);
  border: 1px solid #fff;
  padding: 5px 20px;
  border-radius: 54px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 5px;
  font-weight: 700;
}

.posts__comment .post__menus span.active {
  color: var(--clr-primary);
  background-color: #fff;
}

@media (max-width: 1024px) {
  .single__post .middle .title {
    font-size: 50px;
  }
  .single__post .left__sticky {
    width: 100%;
    display: flex;
    padding: 0;
    margin: 5px 0 10px 0;
  }
  .single__post .left__container {
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .single__post .middle {
    width: 100%;
    flex: auto;
    padding: 0;
  }
  .single__post .left__sticky .comments {
    display: flex;
    margin-top: 0;
  }
  .single__post .left__sticky .comments img {
    height: 48px;
    width: 48px;
    max-width: 48px;
  }
  .single__post .left__sticky .comments .comment__number {
    display: inline-block;
    position: relative;
    margin: -5px 20px;
  }
  .single__post .left__sticky .social__share {
    margin-left: auto;
    margin-top: 0px;
  }
  .social__share .st-btn {
    display: inline-block !important;
    margin-left: 10px !important;
  }
  .st-total {
    position: relative;
    top: 0px;
  }
  .posts__banner__ads {
    display: none;
  }
  .single__post .post__author {
    margin: 15px 0px 15px 0;
  }
  .on__mobile {
    display: block !important;
  }
  .header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--clr-body);
    padding: 10px 0 0;
  }
  .header .header-right {
    display: none !important;
  }
  .header .sticky__mobile .logo .date {
    text-align: center !important;
  }
  .header .dark__for__mobile, .header .slide__for__mobile {
    display: block !important;
  }
}
@media (min-width: 811px) and (max-width: 1084px) {
  .single__post .post__header__container {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .archive__title {
    font-size: 30px !important;
    margin-bottom: 3px;
  }
  .single__post .left__sticky {
    display: none !important;
  }
  .single__post .left__sticky.on__mobile {
    margin: 15px 0 0 !important;
    display: block !important;
  }
  .single__post .post__header__container {
    position: static !important;
  }
  .single__post .left__sticky.on__mobile .comments img {
    max-width: 28px;
    height: 26px;
  }
  .single__post .left__sticky.on__mobile .comments .comment__number {
    font-size: 30px;
    margin: -3px 10px;
  }
  .social__share .st-btn {
    height: 30px !important;
    line-height: 30px !important;
    width: 30px !important;
    padding: 0 !important;
    margin: 0 3px !important;
  }
  .social__share .st-btn img {
    position: relative !important;
    top: 5px !important;
  }
  .st-total {
    position: relative !important;
    top: -7px !important;
  }
  .single__post .middle .title {
    font-size: 40px;
    letter-spacing: -0.4px;
    margin-top: -10px;
    line-height: 1.2;
  }
  .single__post .post__author {
    justify-content: flex-start;
  }
  .single__post .post__author .author__wrapper {
    margin: 0;
  }
  .single__post .post__author .author__wrapper .author {
    font-size: 12px;
  }
  .single__post .post__author .author__wrapper .author span:first-child {
    height: 30px;
    width: 30px;
  }
  .single__post .post__author .post__hour {
    margin: 0 0 0 8px;
    font-size: 12px;
  }
  .post__content {
    font-size: 20px;
  }
}
.section__trending {
  padding-bottom: 0;
  padding-top: 20px;
}

.section__trending h2 {
  margin: 0 0 30px;
  line-height: 1;
  font-size: 45px;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
}

.section__trending .wrapper {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(12, 1fr);
}

.section__trending .wrapper .items {
  position: relative;
  grid-column: span 4;
  margin-bottom: 0;
  padding-left: 80px;
}

.section__trending .wrapper .items .count {
  position: absolute;
  top: 0;
  left: 0;
  height: 58px;
  width: 58px;
  border-radius: 50px;
  text-align: center;
  line-height: 58px;
  font-weight: 700;
  font-size: 28px;
  transition: all 0.3s ease;
  background-color: #2260bf;
  color: #fff;
}

.section__trending .wrapper .items:hover .count {
  background-color: #b2dbf9 !important;
  color: var(--clr-link) !important;
}

.section__trending .wrapper .items .cards {
  display: block;
}

.section__trending .wrapper .items .cards .content h3 {
  font-size: 19px;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--clr-link);
  text-decoration: none;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .section__trending .wrapper {
    display: block !important;
  }
  .section__trending .wrapper .items {
    padding-bottom: 15px;
    margin-bottom: 15px;
    min-height: 80px;
    padding-right: 20px;
    padding-left: 98px;
  }
  .single-post p {
    font-size: 20px;
  }
}
.author__info {
  margin: 35px 0 30px;
}

.author__info .title {
  margin: 0 0 40px;
  text-align: left;
  font-size: 30px !important;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--clr-primary) !important;
  position: relative;
}

.author__info .title:before {
  content: "";
  height: 4px;
  width: 40px;
  background-color: var(--clr-primary);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.author__info .author {
  box-shadow: rgba(34, 96, 191, 0.08) 0 0 18px;
  background-color: var(--clr-black-white);
  border-radius: 4px;
  padding: 20px;
  font-weight: 500;
  font-size: 28px;
  position: relative;
  margin: 35px 0 0;
}

.author__info .author .wrap {
  display: flex;
  flex-wrap: wrap;
}

.author__info .author .wrap .profile {
  height: 50px;
  width: 70px;
  max-width: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
  border: solid 5px #fff;
  box-shadow: rgba(34, 96, 191, 0.08) 0 0 18px;
}

.author__info .author .wrap .profile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__info .author .wrap .profile img {
  width: 100% !important;
}

.author__info .author .wrap .information {
  flex: 2;
  text-align: left;
}

.author__info .author .wrap .information h5 {
  margin: 0 0 15px;
  color: var(--clr-black);
}

.author__info .author .wrap .information p {
  margin: 0 0 28px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.6;
  font-weight: 400;
}

.author__info .author .wrap .information .link {
  display: flex;
}

.author__info .author .wrap .information .link a {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}

.author__info .author .wrap .information .link a span {
  font-size: 14px;
  display: inline-block;
  background-color: #e6eef7;
  border-radius: 48px;
  line-height: 28px;
  padding: 0 15px;
  transition: all 0.3s ease;
  color: #2260bf;
}

.author__info .author .wrap .information .link .social {
  margin-left: auto;
}

.author__info .author .wrap .information .link .social a {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}

.author__info .author .wrap .information .link .social a i {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-color: var(--clr-social-bg);
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  color: #000;
  transition: all 0.3s ease;
}

.author__info .author .wrap .information .link a span:hover, .author__info .author .wrap .information .link .social a:hover i {
  background-color: #2260bf;
  color: #fff;
}

@media (max-width: 992px) {
  .container {
    max-width: 880px !important;
  }
}
@media (max-width: 767px) {
  .author__info .author .wrap {
    display: block !important;
  }
  .author__info .author .wrap .profile {
    margin: 0 auto 15px;
  }
  .author__info .author .wrap .information, .author__info {
    text-align: center;
  }
  .author__info .author .wrap .information p {
    font-size: 16px;
  }
  .author__info .author .wrap .information {
    display: block;
  }
}
.post__flexible.modern__layout {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px !important;
}

.post__flexible.gradient {
  background: linear-gradient(180deg, #f2f9ff 0%, #fff9f9 100%);
}

.modern__layout.feed .post__wrap {
  position: relative;
  max-width: 50%;
  min-width: 50%;
}

.modern__layout .post__wrap .quotes__image {
  position: absolute;
  left: -1px;
  bottom: 0px;
  transform: rotate(180deg);
  height: 80px;
  width: 80px;
  background: #f2f9ff;
  border-radius: 0 10px 0 10px;
  text-align: center;
  line-height: 40px;
}

.modern__layout .post__wrap .quotes__image img {
  display: inline-block;
  max-width: 38px;
  margin-top: 16px;
  vertical-align: top;
}

.post__flexible.blue .post__title__wrap h4 a, .post__flexible.blue .post__title__wrap p {
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.modern__layout {
  background: linear-gradient(251deg, rgba(242, 249, 255, 0.68) 1.69%, rgba(254, 236, 236, 0.68) 99.37%);
}

.flx {
  display: flex;
}

.post__flexible a {
  text-decoration: none;
}

.post__flexible.modern__layout .post__wrap a img {
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.post__flexible a .flexible__post__thumb {
  height: 254px;
  width: 100%;
}

.modern__layout .post__wrap a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 0 0 4px;
}

.post__flexible a .flexible__post__thumb {
  border-radius: 4px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modern__layout .post__title__wrap {
  flex: 2;
}

.category__list {
  display: inline-block;
  background: var(--clr-primary);
  margin: 15px 5px;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  cursor: pointer;
}

.category__list a, .category__list a:hover {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
}

.modern__layout .post__title__wrap {
  align-self: center;
  padding: 60px;
}

.modern__layout .post__title__wrap h4, .ok-interview-spot .post__title__wrap h4 a {
  line-height: 1.3;
}

.modern__layout .post__title__wrap h4 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.modern__layout .post__title__wrap h4 a {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.354;
  color: var(--clr-link);
  transition: all 0.3s ease;
}
.modern__layout .post__title__wrap h4 a:hover {
  color: var(--clr-primary) !important;
}

.post__flexible a {
  text-decoration: none;
}

.modern__layout .post__title__wrap p {
  color: rgba(0, 0, 0, 0.83);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

.modern__layout .post__wrap {
  flex: 1;
  max-width: 60%;
  min-width: 60%;
}

.modern__layout .post__wrap a {
  display: block;
  height: 100%;
}

.sticky__sidebar__ads {
  position: sticky;
  top: 90px;
  z-index: 7;
}

.trending__sidebar {
  position: sticky;
  top: 98px;
}

.trending__sidebar ul {
  padding: 0px;
}

.trending__sidebar h2 {
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--clr-link);
  font-size: 34px;
  padding-bottom: 15px;
}

.trending__sidebar ul li {
  position: relative;
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px;
}

.trending__sidebar ul li .list__wrapper a {
  display: flex;
  position: static;
}

.trending__sidebar ul li .list__wrapper a span.count {
  font-size: 54px;
  font-weight: 500;
  color: rgba(34, 96, 191, 0.24);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0.72;
}

.trending__sidebar ul li .list__wrapper a img {
  width: 115px;
  min-width: 90px;
  max-width: 90px;
  height: 68px;
  margin-bottom: 0;
  order: 2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.trending__sidebar ul li .list__wrapper a .title {
  order: 1;
  flex: 2;
  padding-right: 15px;
}

.trending__sidebar ul li .list__wrapper a .title h2 {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 19px;
  color: var(--clr-link);
  line-height: 1.3;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .trending__sidebar {
    position: static !important;
    top: 0px;
  }
  .trending__sidebar ul {
    display: flex;
    flex-wrap: wrap;
  }
  .trending__sidebar ul li {
    flex: 0 0 50%;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.intersec {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}

.intersec.small {
  height: auto;
  min-height: 270px !important;
}

.intersec.medium {
  min-height: 420px;
}

.intersec.ok {
  min-height: 350px;
}

.intersec.small .title__wrap h2 {
  font-size: 24px;
}

.intersec a:before {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.99), rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68), transparent, transparent, transparent, rgba(0, 0, 0, 0.6));
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

.intersec img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
  border-radius: 4px;
  margin-bottom: 20px;
}

.intersec .title__wrap {
  position: absolute;
  width: 100%;
  padding: 40px;
  z-index: 5;
  left: 0;
  bottom: 0;
  text-align: center;
}

.intersec .title__wrap h2 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  text-shadow: none;
}

.post__layout2 {
  margin-bottom: 28px;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.post__layout2 .wrapper {
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.post__layout2 .wrapper a {
  display: flex;
  position: relative;
}

.post__layout2 .wrapper a:hover h2 {
  color: #e5a72e;
}

.post__layout2 .wrapper img {
  width: 90px;
  max-width: 90px;
  min-width: 90px;
  height: 68px;
  margin-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__layout2 .wrapper.thumb__medium img {
  width: 150px;
  max-width: 150px;
  min-width: 150px;
  height: 100px;
  margin-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__layout2 .wrapper .content {
  flex: 2;
  padding-left: 18px;
}

.post__layout2 .wrapper .content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-primary);
  line-height: 1.3;
  text-decoration: none;
}

.post__layout2.common .wrapper {
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.post__layout2.common .wrapper .content h2 {
  color: var(--clr-link);
}

.text__left {
  text-align: left !important;
}

.play__icon {
  height: 60px;
  width: 60px;
  min-width: 60px;
  background-color: #e11b22;
  text-align: center;
  line-height: 60px;
  margin-right: 24px;
  border-radius: 4px;
}

.play__icon svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: #fff;
  vertical-align: middle;
}

.video__duration {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
  opacity: 0.68;
}

.video__duration svg {
  height: 18px;
  width: 18px;
  fill: #e11b22;
}

.simple__list__post {
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.simple__list__post a {
  display: flex;
  position: relative;
}

.simple__list__post a h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--clr-link);
  line-height: 1.3;
}

@media (max-width: 1023px) {
  .mbl-mt-10 {
    margin-top: 10px !important;
  }
  .mbl-mt-20 {
    margin-top: 20px !important;
  }
  .mbl-mt-30 {
    margin-top: 30px !important;
  }
  .post__layout2 {
    margin-top: 25px;
  }
  .post__layout2.common {
    margin-top: 0px !important;
  }
}
@media (max-width: 767px) {
  .mbl-mb-20 {
    margin-bottom: 20px !important;
  }
  .mbl-mt-30 {
    margin-top: 0 !important;
  }
  .intersec {
    min-height: 225px !important;
    margin-bottom: 30px;
  }
  .intersec .title__wrap h2 {
    font-size: 20px !important;
  }
}
@media (min-width: 1023px) {
  .modern__layout .post__wrap {
    flex: 1;
    max-width: 60%;
    min-width: 60%;
  }
  .modern__layout .post__wrap {
    height: auto;
    min-height: 354px;
  }
}
@media (min-width: 811px) and (max-width: 1084px) {
  .modern__layout .post__title__wrap {
    padding: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .modern__layout .post__title__wrap {
    padding: 50px;
  }
  .modern__layout .post__wrap {
    min-width: 315px;
    max-width: 315px;
  }
}
@media (min-width: 811px) and (max-width: 1084px) {
  .modern__layout .post__wrap {
    min-width: 280px;
    max-width: 280px;
  }
}
.all__categories {
  background-color: #161a25;
  color: #fff;
}

.mega__menu {
  font-family: var(--font-primary);
  opacity: 1;
  display: none;
  position: absolute;
  top: 90px;
  right: -30px;
  left: -30px;
  padding: 40px 0;
  z-index: 99;
  color: rgba(0, 0, 0, 0.88);
  width: calc(100% + 60px);
  background-color: #fff;
  box-shadow: rgba(34, 96, 191, 0.24) 0 0 48px;
  pointer-events: none;
}

.all__categories div.flx > div {
  flex: 1;
}

.all__categories .mega__newpost {
  padding: 0 8px;
}

.all__categories .mega__newpost a {
  padding: 0;
}

.mega__menu .mega__newpost a .mega__thumb, .all__categories .mega__newpost a .mega__thumb {
  border-radius: 4px;
  height: 120px;
  width: 100%;
}

.mega__newpost a .mega__thumb {
  border-radius: 4px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu .mega__tag {
  font-size: 12px;
}

.mega__tag.red {
  background-color: #e11b22;
}

.mega__tag {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  padding: 3px 8px 1px;
  border-radius: 3px;
}

.all__categories .mega__newpost a {
  padding: 0;
}

.all__categories .mega__newpost a h2.mega__text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.mega__newpost a h2.mega__text {
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  margin: 0;
  line-height: 1.4;
  font-size: 22px;
}

.all__categories .mega__newpost h2 {
  font-size: 18px;
  line-height: 1.3;
  margin: 10px 0 0;
}

.comment__panel__wrap {
  display: block;
  position: relative;
  z-index: 999;
}

.comment__panel__wrap .comment__overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 99999;
  cursor: pointer;
}

.comment__slide {
  position: fixed;
  top: 0;
  right: -250%;
  z-index: 999999;
  background: var(--clr-body);
  width: 100%;
  height: 100%;
  max-width: 408px;
  padding: 0;
}

.comment__slide.open__slide {
  left: 0;
  animation: slideSidebar 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
  transform-origin: left;
  transition: all 0.3s ease-in-out;
}

.comment__slide .head {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  background-color: var(--clr-primary);
}

.comment__slide .head h3 {
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 0;
  color: var(--clr-header-link);
  line-height: 1;
}

.comment__slide .head h3 span {
  display: inline-block;
  margin-left: 10px;
  background-color: var(--clr-wash);
  color: var(--clr-primary);
  font-size: 15px;
  padding: 0 10px;
  line-height: 30px;
  vertical-align: top;
  border-radius: 50px;
}

.comment__slide .head .close {
  width: 35px;
  height: 35px;
  background: #FFFFFF;
  border-radius: 50px;
  border: 1px solid var(--clr-primary);
  text-align: center;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--clr-primary);
  font-size: 35px;
  transform: rotate(45deg);
  cursor: pointer;
}

.comment__slide .section {
  height: 100%;
  max-height: calc(100% - 180px);
  overflow-y: auto;
}

.comment__slide .section .each {
  margin: 0;
  padding: 15px 0 10px 25px;
}

.comment__slide .section .each:first-child {
  padding-top: 0;
}

.comment__slide .section .each:last-child {
  border-bottom: 0;
}

.comment__slide .each .user img {
  max-width: 50px;
  width: 50px;
  min-width: 50px;
  margin-right: 20px;
  align-self: center;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.comment__slide .each .user h3 {
  margin: 0;
}

.comment__slide .each .user h3 a {
  text-decoration: none;
  color: var(--clr-primary);
  font-size: 20px;
}

.comment__slide .each .date {
  font-size: 13px;
  color: var(--clr-desc);
}

.comment__slide .each .comment__text {
  margin: 10px 0 0;
  color: var(--clr-desc);
  font-size: 18px;
  opacity: 0.85;
}

.comment__slide .show__comments {
  padding: 15px 20px 20px;
}

.comment__slide .show__comments a {
  display: block;
  background-color: var(--clr-primary);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.comment__info, .comment-reply-title, .required-field-message {
  margin: 20px 0;
  color: var(--clr-black);
  text-align: center;
  font-weight: 500;
}

.comment__form {
  display: none;
}

.comment__form .name, .comment__form .email {
  font-size: 15px;
  padding: 15px;
  border-radius: 4px;
  background-color: var(--clr-input-field);
  display: block;
  margin-bottom: 15px;
  border: none;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
}

.comment__form textarea {
  font-size: 20px;
  padding: 15px;
  border-radius: 4px;
  background-color: var(--clr-input-field);
  display: block;
  margin-bottom: 15px;
  border: none;
  resize: none;
  height: 150px;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
}

.comment__form textarea:focus {
  background-color: var(--clr-input-field);
  color: var(--clr-link);
  outline: 2px solid #1c1c1c;
}

.comment__form label {
  color: var(--clr-primary);
}

.comment__form .give__comment {
  text-align: left;
  display: flex;
}

.comment__form button, #comment__submit {
  display: inline-block;
  background-color: var(--clr-primary);
  color: #fff;
  padding: 8px 55px;
  line-height: 30px;
  text-align: center;
  border-radius: 50px;
  border: none;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.comment__form button:hover {
  opacity: 0.86;
}

.comment__form.active {
  display: block !important;
}

.all__comments.active {
  display: block !important;
}

.all__comments {
  display: none;
  height: 100%;
  max-height: calc(100% - 80px);
  margin-top: -24px;
  margin-bottom: 30px;
  overflow-y: auto;
}

.all__comments .section {
  display: flex;
  background: var(--clr-wash);
  padding: 20px 20px;
  padding-bottom: 0px;
}

.all__comments .section .user {
  height: 44px;
  width: 44px;
  max-width: 44px;
  min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.all__comments .section .user img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.all__comments .section .content {
  width: 100%;
  flex: 2;
  margin-left: 28px;
}

.all__comments .section .content .title {
  align-items: center;
}

.all__comments .section .content .title a {
  display: block;
  color: var(--clr-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

.all__comments .section .content .title .name {
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 0;
}

.all__comments .section .content .title .date {
  font-size: 12px;
  color: #6a6a6a;
  display: inline-block;
  margin-left: 5px;
  margin-top: -10px;
}

.all__comments .section .content p {
  margin-top: -5px;
  font-size: 18px !important;
  font-weight: 300;
  line-height: 1.6 !important;
  color: var(--clr-desc);
  padding-right: 40px;
  margin-bottom: 12px;
}

.en__edition {
  margin-top: -25px;
  margin-left: 10px;
  display: inline-block;
  line-height: 38px;
  text-align: center;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-header);
  background-color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.en__edition:hover {
  opacity: 0.9;
}

.most__commented__posts {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
}

.most__commented__posts a {
  display: flex;
  position: relative;
}

.most__commented__posts a .counter {
  position: relative;
  max-width: 64px;
  min-width: 64px;
  height: 48px;
  align-self: flex-start;
  border-radius: 3px;
  background-color: #2260bf;
  padding: 12px 15px 8px;
  text-align: center;
  font-weight: 800;
  font-family: var(--font-primary);
  font-size: 18px;
  color: #fff;
  box-shadow: rgba(34, 96, 191, 0.14) 0 0 28px;
}

.most__commented__posts a .counter:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  border-style: solid;
  border-color: transparent transparent transparent #2260bf;
  border-width: 24px;
}

.most__commented__posts a .content {
  padding-left: 18px;
  flex: 2;
}

.most__commented__posts a .content h2 {
  font-weight: 600;
  font-size: 19px;
  margin: 0;
  color: var(--clr-link);
  line-height: 1.3;
}

.author__info__bio {
  background-color: var(--clr-wash);
  border-bottom: solid 1px var(--clr-border);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.author__info__bio .author__image {
  height: 94px;
  width: 94px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  background-color: #2260bf;
  border: solid 8px #fff;
  outline: solid 1px rgba(0, 0, 0, 0.08);
}

.author__info__bio .author__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__info__bio h3 {
  font-size: 24px;
  margin: 0 0 20px;
  color: var(--clr-link2);
}

.author__info__bio p {
  color: var(--clr-desc);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.68;
}

.author__info__bio .author__social a i {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-color: var(--clr-social-bg);
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  color: #000;
  transition: all 0.3s ease;
}

.list__heading {
  color: var(--clr-link);
  font-size: 48px;
  padding-bottom: 25px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.14);
  margin: 0 0 30px;
  position: relative;
  font-family: var(--font-primary);
  font-weight: 600;
  flex: 0 0 100%;
}

.list__post:not(:last-child) {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.list__post a {
  display: flex;
  position: relative;
}

.list__post a img {
  min-width: 188px;
  max-width: 188px;
  height: 148px;
  margin-bottom: 0;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

.list__post a .wrap {
  flex: 2;
  padding-left: 24px;
}

.list__post a .wrap h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: var(--clr-link);
  line-height: 1.3;
  transition: all 0.3s ease;
  text-decoration: none;
}

.list__post a .wrap p {
  color: var(--clr-desc);
  margin: 10px 0;
}

.list__post a .wrap .meta {
  display: flex;
  margin-top: 15px;
  font-weight: 700;
  color: var(--clr-desc);
  flex-wrap: wrap;
}

.list__post a .wrap .date {
  margin-top: 0;
  margin-right: 24px;
  color: var(--clr-desc);
  font-size: 14px;
}

.list__post a .wrap .date span {
  color: var(--clr-desc);
  margin-top: 10px;
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  font-weight: 500;
}

.list__post a .wrap .comment {
  margin-top: 10px;
  margin-right: 24px;
}

.list__post a .wrap .comment > img {
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  margin-right: 5px !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

.list__post a .wrap .comment span {
  color: var(--clr-link2);
  font-size: 18px;
  font-weight: 700;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 767px) {
  .list__post a .wrap .meta, .list__post a .wrap p {
    display: none !important;
  }
  .list__post a img {
    min-width: 108px;
    max-width: 108px;
    height: 75px;
  }
  .list__post a .wrap h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  .list__heading {
    font-size: 30px;
    margin-bottom: 24px;
    padding: 0 15px 15px 0;
  }
}
/*.footer-widget p {
    margin-bottom: 27px;
}
.animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #007bff; }

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite; }

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

.animate-border.border-white:after {
  border-color: #fff; }

.animate-border.border-yellow:after {
  border-color: #F5B02E; }

.animate-border.border-orange:after {
  border-right-color: #007bff;
  border-left-color: #007bff; }

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF; }

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8; }

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%;
  }
  50% {
    width: 90%;
  }
  100% {
    width: 10%;
  }
}
@keyframes primary-long {
  0% {
    width: 80%;
  }
  50% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
/* FOOTER STYLE ONE START */
.footer__style__one {
  padding: 35px 5px 0 0;
  margin-top: 30px;
  background: #fff;
  border-top: #ccc solid 1px;
}

.footer__style__one .about {
  border-bottom: 1px solid rgba(204, 204, 204, 0.4509803922);
  padding-bottom: 20px;
}

.footer__style__one .about img {
  width: 250px;
  margin-bottom: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__style__one .about p {
  line-height: 1.8;
  margin: 0;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6196078431);
}

.footer__style__one .social .wrapper {
  margin-top: 15px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4509803922);
  padding-bottom: 20px;
}

.footer__style__one .social .wrapper .social__icon {
  display: inline-block;
  background: var(--clr-primary);
  color: #FFFFFF;
  text-align: center;
  margin-right: 14px;
  padding: 2px 0px;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  line-height: 33px;
}

.footer__style__one .social .wrapper .social__icon svg {
  fill: #FFFFFF;
  color: #FFFFFF;
}

.footer__style__one .app {
  padding-top: 20px;
}

.footer__style__one .app a {
  display: inline-block;
  margin-right: 12px;
}

.footer__style__one .app img {
  width: 100%;
  max-width: 120px;
  height: auto;
  box-sizing: border-box;
}

.footer__style__one .app h4 {
  margin: 0;
  color: var(--link-color);
  font-size: 20px;
  padding-bottom: 17px;
  font-family: poppins, sans-serif;
}

.footer__style__one .app .wrapper {
  align-items: center;
}

.footer__style__one .middle__part {
  padding-left: 40px;
}

.footer__style__one .middle__part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}

.footer__style__one .quick__link h4, .footer__style__one .main__link h4, .footer__style__one .widget-title {
  margin: 0;
  color: var(--clr-primary);
  font-size: 20px;
  padding-bottom: 17px;
}

.footer__style__one .quick__link ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__style__one .quick__link ul li {
  display: block;
  line-height: 1.2rem;
  font-weight: 400;
}

.footer__style__one .quick__link ul li:first-child a {
  padding-top: 0;
}

.footer__style__one .quick__link ul li a {
  color: rgba(0, 0, 0, 0.4901960784);
  font-size: 16px;
  display: block;
  opacity: 0.9;
  padding-bottom: 8px;
  font-weight: 600;
}

.footer__style__one .quick__link ul li {
  display: block;
}

.footer__style__one .right__part {
  padding-left: 30px;
}

.footer__style__one .right__part::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}

.footer__style__one .right__part .list {
  display: inline-grid;
  margin-bottom: 25px;
  width: 32%;
  font-weight: 600;
  font-size: 18px;
}

.footer__style__one .right__part .list span {
  display: block;
  color: rgba(0, 0, 0, 0.6196078431);
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 8px;
}

.footer__style__one .extra {
  background: var(--clr-wash);
  border-radius: 18px;
  color: var(--clr-black);
  margin: 25px;
  padding: 20px 15px 15px;
}

.footer__style__one .extra .wrap {
  display: flex;
  align-items: center;
}

.footer__style__one .extra .content {
  flex: 2;
}

.footer__style__one .extra .content p {
  margin-left: 25px;
  display: block;
  margin-bottom: 12px;
  font-weight: 400;
  font-family: poppins, sans-serif;
  text-transform: capitalize;
  line-height: 1.8;
  font-size: 16px;
}

.footer__style__one .extra .wrap b {
  padding-right: 25px;
  text-align: center;
  font-family: poppins, sans-serif;
  display: inline-block;
  font-size: 20px;
  flex: 1;
  border-right: 1px solid var(--clr-primary);
}

.footer__copyright {
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 10px;
  background: #f1f1f1;
}

.footer__copyright p {
  color: #333;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.footer__copyright a {
  color: var(--clr-primary) !important;
  font-weight: 600;
}

.footer__copyright a:hover {
  opacity: 0.9;
}

.dk-footer {
  padding: 75px 0 75px;
  background-color: var(--footer);
  position: relative;
  border-top: solid 1px rgba(34, 96, 191, 0.08);
  z-index: 2;
}

.dk-footer .contact-us {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 80px;
}

.dk-footer .contact-us .contact-info {
  margin-left: 50px;
}

.dk-footer .contact-us.contact-us-last {
  margin-left: -80px;
}

.dk-footer .contact-icon i {
  font-size: 24px;
  top: -15px;
  position: relative;
  color: #007bff !important;
}

.dk-footer-box-info {
  position: relative;
  border-radius: 50px 50px 0px 0px;
  top: -122px;
  background-color: var(--clr-header);
  padding: 35px;
  z-index: 2;
}

.dk-footer-box-info .footer-social-link h3 {
  color: #FCFCFC;
  font-size: 18px;
  margin-bottom: 25px;
}

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

.dk-footer-box-info .footer-social-link li {
  display: inline-block;
}

.dk-footer-box-info .footer-social-link a i {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  background: #000;
  margin-right: 5px;
  color: #fff;
}

.dk-footer-box-info .footer-social-link a i.fa-facebook {
  background-color: #3B5998;
}

.dk-footer-box-info .footer-social-link a i.fa-twitter {
  background-color: #55ACEE;
}

.dk-footer-box-info .footer-social-link a i.fa-google-plus {
  background-color: #DD4B39;
}

.dk-footer-box-info .footer-social-link a i.fa-youtube-play {
  background-color: #DD4B39;
}

.dk-footer-box-info .footer-social-link a i.fa-linkedin {
  background-color: #0976B4;
}

.dk-footer-box-info .footer-social-link a i.fa-instagram {
  background-color: #B7242A;
}

.dk-footer-box-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.footer-info-text {
  margin: 26px 0 32px;
  color: #fafafa;
  font-size: 18px;
}

.footer-left-widget {
  padding-left: 80px;
}

.footer-widget .section-heading {
  margin-bottom: 35px;
}

.footer-widget h3 {
  font-size: 24px;
  color: var(--clr-link);
  position: relative;
  margin-bottom: 15px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.footer-widget ul {
  width: 50%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget li {
  margin-botto: 18px;
}

.footer-widget p {
  margin-bottom: 27px;
  color: #fafafa;
}

.footer-widget a {
  color: var(--clr-link);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
}

.footer-widget a:hover {
  color: var(--clr-link-hover);
}

.footer-widget:after {
  content: "";
  display: block;
  clear: both;
}

.dk-footer-form {
  position: relative;
}

.dk-footer-form input[type=email] {
  padding: 14px 28px;
  border-radius: 50px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
}

.dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::placeholder {
  color: #878787;
  font-size: 14px;
}

.dk-footer-form button[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 24px 12px 17px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 1px solid #007bff;
  background: #007bff;
  color: #fff;
}

.dk-footer-form button:hover {
  cursor: pointer;
}

.footer-awarad p {
  color: var(--clr-link);
  font-weight: 500;
  margin-left: 20px;
  padding-top: 15px;
}

/* ==========================

    Contact

=============================*/
/*.contact-us {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.contact-icon {
  position: absolute; }
  .contact-icon i {
    font-size: 36px;
    top: -5px;
    position: relative;
    color: #fafafa; }

.contact-info {
  margin-left: 75px;
  color: #fafafa; }
  .contact-info h3 {
    font-size: 20px;
    color: #fafafa;
    margin-bottom: 0; }

.copyright {
  padding: 28px 0;
  margin-top: 55px;
  background-color: #02316D; }
  .copyright span,
  .copyright a {
    color: #878787;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear; }
  .copyright a:hover {
    color:#007bff; }

.copyright-menu ul {
  text-align: right;
  margin: 0; }

.copyright-menu li {
  display: inline-block;
  padding-left: 20px; }
@media (max-width: 1024px) {
	.footer-awarad {
		margin-top: 200px;
	}
	.dk-footer .contact-us, .footer-left-widget, .dk-footer .contact-us.contact-us-last {
		margin-left: 0 !important;
		padding-left: 0 !important;
	}
	.footer-widget {
		display: block !important;
	}
}
*/
.back-to-top {
  position: relative;
  z-index: 2;
}

.back-to-top .btn-dark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--clr-primary);
  color: #FFFFFF;
  display: none;
  z-index: 999;
  transition: all 0.3s linear;
}

.back-to-top .btn-dark:hover {
  cursor: pointer;
  opacity: 0.9;
}

/*==================================================
//  commment list
 ================================================== */
.ts-comments-row {
  position: relative;
  margin-bottom: 50px;
}

.ts-comments-row:last-child {
  margin-bottom: 0;
}

.ts-author {
  color: #777777;
}

.ts-author a {
  color: #777777;
}

.ts-author a:hover {
  color: #0e5dae;
}

.ts-author-comments {
  position: relative;
}

.ts-author-comments::after {
  position: absolute;
  content: "";
  left: 36px;
  bottom: 20%;
  width: 1px;
  z-index: -1;
  height: 60%;
  background: #eaeaea;
}

.ts-author-thumb {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.ts-author-thumb img {
  width: 100%;
}

.ts-author-media {
  background: #fff;
  padding: 20px 0;
}

.ts-author-content {
  padding: 30px;
  border: 1px solid #eaeaea;
  position: relative;
}

.ts-author-content::after {
  position: absolute;
  content: "";
  left: -9px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateY(-100%) rotate(45deg);
  border: 1px solid #ddd;
  border-width: 0 0px 1px 1px;
}

.ts-author-content::before {
  position: absolute;
  content: "\e943";
  left: 20px;
  top: -10px;
  font-size: 20px;
  font-family: "iconfont";
  background: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
}

.ts-author-content .comment {
  margin-bottom: 12px;
}

.ts-author-content .comment a {
  font-weight: 500;
  font-style: italic;
  color: #222222;
  line-height: 20px;
}

.newsletter-area {
  background: linear-gradient(20deg, #f84270 0%, #fe803b 100%);
  padding: 40px 0;
}

.newsletter-area .email-form-group {
  position: relative;
}

.newsletter-area .email-form-group .news-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: #fff;
  font-size: 17px;
}

.newsletter-area .newsletter-email {
  background: transparent;
  height: 48px;
  color: #fff;
  border: none;
  width: 100%;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

.newsletter-area .newsletter-email:focus {
  outline-style: none;
}

.newsletter-area .newsletter-email::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.newsletter-area .newsletter-email::placeholder {
  color: #fff;
  opacity: 1;
}

.newsletter-area .newsletter-submit {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 40px;
  border-radius: 5px;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: #222;
  border: none;
  color: #fff;
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.newsletter-area .newsletter-submit:focus {
  outline-style: none;
}

.newsletter-area .newsletter-submit:hover {
  background: #0e5dae;
}

/* FOOTER STYLE */
.ts-footer {
  background: #C6C6C6;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFFFFF;
  font-size: 20px;
  position: center;
}

.ts-footer ul {
  padding: 0;
}

.ts-footer-info {
  padding: 0;
  margin-bottom: 40px;
}

.ts-footer .card {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: inline-block;
  background: #fff;
  color: #666;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem #040C85 !important;
}

.textwidget {
  color: #000;
}

.ts-footer-info li {
  color: black;
  list-style: none;
  display: flex;
  margin-bottom: 15px;
}

.ts-footer-info li i {
  margin-right: 15px;
  font-size: 18px;
}

.ts-footer .widget-title {
  font-size: 30px;
  font-weight: 900;
  background: #D33900;
  color: #fafafa;
  border-bottom: 3px solid #000;
  line-height: 1.4;
  padding-left: 0;
  padding-right: 0;
  position: center;
  text-align: center;
  justify-content: center;
}

.contact-icon {
  position: absolute;
  margin: 25px 0px;
}

.contact-icon i {
  font-size: 36px;
  top: -5px;
  position: relative;
  color: #000;
}

.contact-info {
  margin-left: 75px;
  color: var(--clr-link);
}

.contact-info h3 {
  font-size: 20px;
  color: var(--clr-link);
  margin-bottom: 0;
}

.ts-footer .footer-widtet {
  padding: 25px 25px;
}

.ts-footer .footer-widtet p {
  display: inline-block;
  width: 100%;
  line-height: 32px;
  margin: 5;
  color: #fafafa;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer-widtet p b, .ts-footer .footer-widtet p strong {
  font-size: 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer__one img {
  max-width: 100%;
  height: auto;
  padding: 20px 20px;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer__one p {
  /* padding-top: 30px; */
}

.ts-footer li {
  padding: 5px 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer li a {
  color: #666;
  font-size: 20px;
  padding: 25px 25px;
  text-align: center;
  justify-content: center;
}

.ts-footer li a:hover {
  color: #333;
  text-decoration: underline;
}

.ts-footer li a:before {
  content: "\f105";
  font-family: FontAwesome;
  display: inline-block;
  /* color: #fff; */
  font-size: 20px;
  vertical-align: middle;
  margin: 0px 0px 0px -10px;
  position: absolute;
  text-align: center;
  justify-content: center;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-thumb {
  width: 65px;
  height: 65px;
  margin-right: 1px;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-thumb img {
  height: 100%;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-content .post-title a {
  color: #fff;
}

.ts-footer .footer-widtet.post-widget .post-block-style .post-content .post-title a:hover {
  color: #0e5dae;
}

.ts-copyright {
  border-top: 3px solid #fafafa;
  background: #01479B;
  padding: 12px;
  color: #fafafa;
}

.ts-copyright p {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fafafa;
}

.ts-copyright a {
  color: #fafafa;
  font-weight: bolder;
}

/** Header */
header {
  background-color: #FFFFFF;
}
header.top-header-nav {
  background-color: none !important;
  padding: 0.5rem 0;
}
header.top-header-nav .nav-col:first-child {
  gap: 1.5rem;
}
header.top-header-nav .nav-col span, header.top-header-nav .nav-col a {
  color: var(--clr-primary);
}
header.top-header-nav .nav-col .unicode {
  margin-right: 20px;
}
header.top-header-nav .nav-col .nav-icons {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
}
header.top-header-nav .nav-col .nav-icons a {
  background-color: var(--clr-primary);
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin-right: 5px;
  border-radius: 50px;
  text-align: center;
  align-items: center;
  border: 0;
  color: #FFFFFF;
}
header.top-header-nav .nav-col .nav-icons a:hover {
  background-color: #019c93;
}
header.top-header {
  background-color: var(--clr-secondary) !important;
}
header.top-header .column .row {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
header.top-header .column .row a {
  display: flex;
  flex: 1;
}
header.top-header .column .col {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  flex: 1;
}
header.top-header .column .col span {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
}
header.top-header .column .col ul {
  margin: 0;
  padding: 0;
}
header.top-header .column .col ul li label {
  margin: 0;
}
header.top-header .column .col ul li:hover a {
  background-color: transparent;
}
header.top-header .column .col ul li ul {
  padding: 10px 0;
  background-color: var(--clr-secondary);
}
header.top-header .column .socials span {
  display: inline-block;
  margin-right: 10px;
}
header.top-header .column .socials span i {
  color: #FFF;
}
header.top-header .column .slash {
  position: absolute;
  top: -40px;
  right: 8px;
  width: 5px;
  height: 100px;
  transform: skew(25deg);
  rotate: 60deg;
  background: #c7e1eb;
}
header.top-header .top-mobile-toggler {
  display: none;
  background-color: var(--clr-secondary);
  padding: 5px 10px;
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
}
header.top-header .top-mobile-toggler:hover {
  color: #FFFFFF !important;
}
header.top-header .top-mobile-toggler .date {
  position: relative;
  top: 5px;
}

.mobile-logo-above-ads {
  display: none;
}

nav.site-nav {
  position: sticky;
  top: 0;
  background-color: var(--clr-header);
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  z-index: 100;
  width: 100%;
}
nav.site-nav .mobile-banner-ads {
  display: none;
}
nav.site-nav .nav-toggler {
  min-width: 1.5rem;
  height: 1.5rem;
  position: relative;
  display: flex;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  background: 0 0;
  color: #FFF;
  cursor: pointer;
  border: none !important;
  outline: none !important;
}
nav.site-nav .site-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
nav.site-nav .site-navigation .mob-search {
  position: relative;
  display: none;
  min-width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
nav.site-nav .site-navigation .mob-search svg {
  fill: var(--clr-primary);
}
nav.site-nav .site-navigation .mobile-logo {
  display: none;
  padding: 20px 0 5px;
  flex-grow: 1;
  text-align: center;
}
nav.site-nav .site-navigation .mobile-logo img {
  width: 350px;
}
nav.site-nav .site-navigation .mobile-logo .mob-search-icon {
  position: absolute;
  top: 60px;
  left: 30px;
}
nav.site-nav .site-navigation .mobile-logo .mob-search-icon i, nav.site-nav .site-navigation .mobile-logo .mob-search-icon svg {
  font-size: 25px;
  width: 25px;
  fill: var(--clr-primary);
  color: var(--clr-primary);
}
nav.site-nav .site-navigation .mobile-logo .date {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #FFF;
}
nav.site-nav .site-navigation .left-nav {
  flex-grow: 1;
}
nav.site-nav .site-navigation .right-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
}
nav.site-nav .site-navigation .right-nav a svg, nav.site-nav .site-navigation .right-nav a i {
  color: #FFFFFF;
  fill: #FFFFFF;
}
nav.site-nav .site-navigation .right-nav a.filled {
  background: var(--clr-secondary);
}
nav.site-nav .site-navigation .trigger-btn {
  background: var(--clr-secondary);
  height: 35px;
  width: 35px;
  line-height: 35px;
  margin-right: 5px;
  border-radius: 50px;
  text-align: center;
  align-items: center;
  border: 0;
  color: #FFFFFF;
}
nav.site-nav .site-navigation .trigger-btn.secondary {
  background-color: var(--clr-secondary);
}
nav.site-nav .site-navigation .trigger-btn svg {
  position: relative;
  top: -1px;
}
nav.site-nav .sticky-logo {
  position: relative;
  display: none;
}
nav.site-nav .sticky-logo.reveal {
  display: block;
  animation: slideDown 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
  transform-origin: top;
}
nav.site-nav .sticky-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-left: 0px;
  border: 10px;
  border-radius: var(--border-radius);
}
nav.site-nav .sticky-logo .date__note {
  position: absolute;
  top: 55px;
  left: 0px;
  color: #fff;
  white-space: nowrap;
  padding: 5px 20px;
  background: var(--clr-primary);
  border: 1px solid var(--clr-secondary);
  border-radius: 50px;
  line-height: 13px;
  font-size: 12px;
}

.sticky-buttons {
  position: absolute;
  top: 150%;
  right: 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
.sticky-buttons.reveal {
  right: 30px;
  opacity: 1;
  visibility: visible;
}
.sticky-buttons button {
  display: flex;
  border: none;
  background: var(--clr-primary);
  color: #FFF;
  font-size: 18px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  border-radius: 100%;
  display: block;
  margin-bottom: 8px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.sticky-buttons button svg {
  position: relative;
  top: -2px;
  width: 20px;
  height: 20px;
}

.main-header {
  background: var(--clr-primary);
  position: sticky;
  top: 0;
  z-index: 10;
}
.main-header .nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.main-header .nav-bar .navlink {
  display: block;
  padding: 0.5rem 1rem;
}
.main-header .nav-bar .action-button {
  display: block;
  cursor: pointer;
  padding-right: 0.5rem;
}
.main-header .nav-bar .action-button svg {
  fill: var(--header-color);
  color: var(--header-color);
}
.main-header .nav-bar .navbar-left {
  flex-grow: 1;
  align-items: center;
}
.main-header .nav-bar ul {
  position: relative;
  flex-direction: row;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.main-header .nav-bar ul li.menu-item-has-children {
  position: relative;
}
.main-header .nav-bar ul li.menu-item-has-children:hover .submenu {
  display: block;
  visibility: visible;
  opacity: 1;
}
.main-header .nav-bar ul li a {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--primary-font);
  color: var(--header-color);
  font-size: 17px;
  line-height: 40px;
  font-weight: 700;
}
.main-header .nav-bar ul li a:hover {
  background-color: var(--header-hover-color);
}
.main-header .nav-bar ul li .submenu {
  display: none;
  position: absolute;
  top: 0;
  margin-top: 39px;
  background: #FFFFFF;
  width: 200px;
  transition: all 0.2s ease-in-out;
  transform: translateY(1rem);
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  box-shadow: 0 0.4rem 2.2rem 0 rgba(27, 30, 36, 0.1);
}
.main-header .nav-bar ul li .submenu li a {
  padding: 1px 1rem;
  color: #101010;
  font-family: var(--primary-font);
  font-size: 15px;
}
.main-header .nav-bar .navbar-right {
  display: flex;
  flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
}
.main-header .nav-bar .navbar-right a {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  line-height: 40px;
  font-weight: 700;
}
.main-header .nav-bar .navbar-right a:hover {
  background: var(--header-hover-color);
}
.main-header .nav-bar .navbar-right a.filled {
  background: #2b2b2b;
}
.main-header .nav-bar .navbar-right a svg {
  margin-top: -5px;
  fill: #FFFFFF;
}

.site-menu {
  display: flex !important;
  padding: 0;
  margin-bottom: 0;
}
.site-menu li {
  display: inline-block;
}
.site-menu li.current-menu-item a {
  background-color: var(--clr-secondary);
  color: var(--clr-header-link-active);
}
.site-menu li a {
  display: inline-block;
  padding: 15px 15px;
  text-decoration: none !important;
  color: var(--clr-header-link);
  font-size: 17px;
  font-weight: 700;
}
.site-menu li a:hover {
  background-color: var(--clr-secondary);
  color: var(--clr-header-link-active);
}
.site-menu .menu-item-has-children {
  position: relative;
}
.site-menu .menu-item-has-children a {
  position: relative;
  padding-right: 30px;
}
.site-menu .menu-item-has-children a::before {
  position: absolute;
  content: "\f107";
  font-size: 14px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-family: "FontAwesome";
}
.site-menu .menu-item-has-children .sub-menu {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  z-index: 999;
  position: absolute;
  text-align: left;
  padding: 5px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.2s 0s;
}
.site-menu .menu-item-has-children .sub-menu a {
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  transition: 0s all;
  color: #000000;
}
.site-menu .menu-item-has-children .sub-menu a::before {
  content: "";
}
.site-menu .menu-item-has-children .sub-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}
.site-menu .menu-item-has-children .sub-menu li a {
  padding: 5px 20px;
  display: block;
}
.site-menu .menu-item-has-children .sub-menu li a:hover {
  color: var(--clr-header-link-active);
}
.site-menu .menu-item-has-children .sub-menu li.menu-item-has-children a::before {
  content: "\f105";
  right: 20px;
}
.site-menu .menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu, .site-menu .menu-item-has-children .sub-menu li.menu-item-has-children ul {
  left: 100%;
  top: 0;
}
.site-menu .menu-item-has-children .sub-menu li.menu-item-has-children .sub-menu a::before, .site-menu .menu-item-has-children .sub-menu li.menu-item-has-children ul a::before {
  content: "";
}
.site-menu .menu-item-has-children .sub-menu .active {
  color: #ff6363 !important;
}

.site-menu .menu-item-has-children:hover > a, .site-menu .menu-item-has-children:focus > a, .site-menu .menu-item-has-children:active > a {
  color: var(--clr-header-link-active);
}

.site-menu .menu-item-has-children:hover > .sub-menu, .site-menu .menu-item-has-children:focus > .sub-menu, .site-menu .menu-item-has-children:active > .sub-menu {
  transition-delay: 0s;
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

.trending-ads img {
  margin: 20px 0 10px;
  width: 100%;
}

.below-menu-ad .ads.banner-ads {
  margin: 0 !important;
}

.in-paragraph {
  margin: 15px 0;
}
.in-paragraph img {
  width: 100%;
  margin: 15px 0;
  border-radius: var(--border-radius);
  -o-object-fit: cover;
     object-fit: cover;
}

.in__between_ads {
  position: relative;
  float: none;
  width: 100%;
  margin-bottom: 30px;
  justify-content: center;
  text-align: center;
  border-top: solid 1px var(--clr-border);
  border-bottom: solid 1px var(--clr-border);
  padding: 50px 0 30px;
}

.in__between_ads .row {
  justify-content: center;
  text-align: center;
}

.in__between_ads .row .col-lg-4 {
  margin-bottom: 10px;
}

.in__between_ads img {
  width: auto;
  max-height: 300px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.in__between_ads::before {
  content: "-विज्ञापन-";
  font-size: 16px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  color: #999;
  position: absolute;
  margin-top: -35px;
  left: 0px;
}

.ads.banner-ads {
  margin: 15px 0;
  text-align: center;
}
.ads.banner-ads img {
  margin: 10px 0;
  width: 100%;
  border-radius: var(--border-radius);
}
.ads.sidebar-ads img {
  margin: 10px 0;
  width: 100%;
  border-radius: var(--border-radius);
}
.ads.in-between {
  margin: 5px 0;
}
.ads.in-between img {
  width: 100%;
  min-height: 200px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.cube-container-ads {
  position: fixed;
  bottom: 10%;
  right: 50px;
  perspective: 800px;
  z-index: 10;
}
.cube-container-ads .cube-ads {
  width: 220px;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 25s infinite;
}
.cube-container-ads .cube-ads .the-ads {
  padding: 0;
}
.cube-container-ads .cube-ads .the-ads img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cube-container-ads .cube-ads .side-ads {
  width: 100%;
  height: auto;
  position: absolute;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Ensure the image is behind the close button */
}
.cube-container-ads .cube-ads .front-ads {
  transform: translateZ(110px);
}
.cube-container-ads .cube-ads .right-ads {
  transform: rotateY(90deg) translateZ(110px);
}
.cube-container-ads .cube-ads .back-ads {
  transform: rotateY(180deg) translateZ(110px);
}
.cube-container-ads .cube-ads .left-ads {
  transform: rotateY(-90deg) translateZ(110px);
}
.cube-container-ads .close-button-ads {
  position: absolute;
  top: -80px;
  left: 50%;
  font-size: 25px;
  cursor: pointer;
  background-color: var(--clr-primary);
  color: #FFF;
  border: none;
  border-radius: 50%;
  padding: 5px 5px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.cube-container-ads .close-button-ads:hover {
  background-color: red;
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(270deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@media only screen and (max-width: 991px) {
  .cube-container-ads {
    display: none;
    position: fixed;
    bottom: 15%;
    right: 20px;
    perspective: 800px;
    z-index: 10;
  }
  .cube-container-ads .cube-ads {
    width: 120px;
    height: 120px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 30s infinite;
  }
  .cube-container-ads .cube-ads .the-ads img {
    max-width: 100%;
    height: 100px !important;
  }
  .cube-container-ads .cube-ads .side-ads {
    width: 100%;
    height: auto;
    position: absolute;
    background-color: #f5f5f5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1; /* Ensure the image is behind the close button */
  }
  .cube-container-ads .cube-ads .front-ads {
    transform: translateZ(60px);
  }
  .cube-container-ads .cube-ads .right-ads {
    transform: rotateY(90deg) translateZ(60px);
  }
  .cube-container-ads .cube-ads .back-ads {
    transform: rotateY(180deg) translateZ(60px);
  }
  .cube-container-ads .cube-ads .left-ads {
    transform: rotateY(-90deg) translateZ(60px);
  }
  .cube-container-ads .close-button-ads {
    top: -60px;
    left: 50%;
  }
}
.live-hrs-update {
  margin-top: 10px;
}
.live-hrs-update .left-col .post-overaly-style {
  min-height: 490px;
  border-radius: var(--border-radius-hard);
}
.live-hrs-update .right-col {
  background: #415074;
  max-height: 490px;
  padding: 20px;
  border-radius: 10px;
  overflow-y: auto;
}

.ai-summary {
  position: relative;
  max-width: 48rem;
  width: 100%;
  margin-top: 25px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  overflow: hidden;
}
.ai-summary::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 70px;
  bottom: 20px;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.0014 0.231861C18.9568 0.553085 18.7337 1.38291 18.5999 1.74429C18.4661 2.09674 18.1537 2.73919 17.9708 3.02918C17.4622 3.83671 16.6369 4.58177 15.8383 4.94314C15.4412 5.12606 14.7987 5.29113 14.3749 5.32683C14.1831 5.34467 14.0403 5.37144 14.0492 5.38929C14.0581 5.40713 14.2143 5.4339 14.3928 5.44729C15.0664 5.50528 15.8427 5.77743 16.4272 6.15665C17.6541 6.95971 18.5687 8.43645 18.9568 10.2701C19.0594 10.7564 19.0594 10.7609 19.0907 10.5601C19.1085 10.4486 19.1754 10.1586 19.2379 9.91319C19.7733 7.75831 21.0046 6.24588 22.7 5.67036C23.0836 5.54098 23.6458 5.42944 23.9402 5.42944C24.2793 5.42498 24.1544 5.35359 23.7662 5.32683C23.0569 5.26883 22.2181 4.97437 21.5801 4.55054C20.9511 4.13562 20.3131 3.39056 19.8803 2.57412C19.519 1.89152 19.3539 1.39184 19.0773 0.187247L19.0371 0.00878906L19.0014 0.231861Z' fill='black'/%3E%3Cpath d='M36.2666 5.60797C36.0034 7.72716 35.2673 10.9528 34.5044 13.3084C32.6306 19.1217 30.1455 23.7259 26.7861 27.6029C26.099 28.397 24.359 30.1102 23.5872 30.7571C20.9996 32.9075 18.4744 34.4021 15.4763 35.5309C12.3801 36.6998 8.78862 37.3734 5.46039 37.4136C4.32718 37.427 4.30487 37.427 4.29149 37.5207C4.27811 37.6143 4.28703 37.6143 5.23732 37.6143C9.07862 37.6099 13.3973 38.5245 16.9308 40.0815C24.0289 43.2179 29.6057 49.339 33.1169 57.8514C34.5177 61.2466 35.6331 65.1548 36.1551 68.5143C36.338 69.6966 36.3246 69.6386 36.4094 69.6207C36.4674 69.6118 36.5031 69.4646 36.5879 68.8935C36.9358 66.4709 37.6452 63.5665 38.5241 60.9521C40.5407 54.9515 43.4049 50.0305 47.0901 46.2472C51.9441 41.2549 57.9091 38.4263 65.0608 37.7303C65.9174 37.6456 67.3272 37.5697 68.0187 37.5697C68.4738 37.5697 68.5184 37.5608 68.5184 37.4894C68.5184 37.4091 68.447 37.4047 67.3495 37.3779C65.6988 37.3377 64.396 37.2217 62.7631 36.9496C54.7861 35.6245 48.1921 31.2925 43.4362 24.2434C40.4425 19.8043 38.0914 13.9955 36.918 8.11976C36.7351 7.19624 36.4674 5.59905 36.4674 5.42059C36.4674 5.39828 36.4272 5.37598 36.3826 5.37598C36.3112 5.37598 36.2934 5.42059 36.2666 5.60797Z' fill='black'/%3E%3Cpath d='M4.29614 5.83084C4.09092 6.83466 3.55554 7.78049 2.87294 8.36493C2.43126 8.73969 1.56574 9.10107 1.10621 9.10107C1.02591 9.10107 0.958984 9.11892 0.958984 9.14569C0.958984 9.16799 1.02591 9.1903 1.10621 9.1903C1.48097 9.1903 2.20819 9.45352 2.64095 9.74352C2.9131 9.92644 3.35924 10.3904 3.57339 10.7161C3.91692 11.2336 4.26491 12.0947 4.33629 12.639C4.37199 12.9022 4.41214 12.8665 4.48352 12.4918C4.65752 11.5816 5.12597 10.6804 5.71934 10.1004C6.21902 9.60968 6.94624 9.26168 7.58869 9.19922C7.74484 9.18584 7.87422 9.15907 7.87422 9.14122C7.87422 9.12338 7.74484 9.09661 7.58869 9.08323C7.01762 9.02969 6.3484 8.73523 5.85318 8.32032C5.57658 8.08386 5.14382 7.52172 4.94751 7.12911C4.76013 6.75882 4.49245 5.98252 4.45675 5.69253C4.43891 5.58099 4.41214 5.4873 4.39875 5.4873C4.38091 5.4873 4.33629 5.64345 4.29614 5.83084Z' fill='black'/%3E%3Cpath d='M15.7807 13.5629C15.4104 15.7223 14.478 17.7968 13.2421 19.2022C11.8368 20.8038 9.82022 21.7184 7.58504 21.7809C7.41104 21.7854 7.35751 21.7943 7.46012 21.8032C7.55827 21.8077 7.87057 21.8389 8.15164 21.8657C10.7036 22.0977 12.7068 23.3469 14.1478 25.6043C14.8483 26.6974 15.5086 28.4686 15.7629 29.9319C15.803 30.1639 15.8432 30.3602 15.8521 30.3692C15.861 30.3781 15.8878 30.2353 15.919 30.0569C16.3072 27.6611 17.4582 25.2965 18.9082 23.9313C20.3091 22.6152 21.8349 21.9772 23.9674 21.821L24.4582 21.7854L23.9005 21.7541C21.8393 21.6426 20.2198 20.9377 18.8279 19.5546C18.1765 18.9077 17.8731 18.5196 17.4314 17.7701C16.7399 16.6056 16.0841 14.7764 15.9279 13.5718C15.8744 13.2194 15.8342 13.2149 15.7807 13.5629Z' fill='black'/%3E%3C/svg%3E");
  opacity: 0.2;
}
.ai-summary .news-header {
  background: linear-gradient(to right, var(--clr-secondary), var(--clr-primary));
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.ai-summary .news-header .news-header-title {
  display: flex;
  align-items: center;
}
.ai-summary .news-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: #FFF;
}
.ai-summary .sparkle-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  color: #fff;
}
.ai-summary .info-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.ai-summary .info-icon::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: 125%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}
.ai-summary .info-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 118%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9;
}
.ai-summary .info-icon:hover::before, .ai-summary .info-icon:hover::after {
  opacity: 1;
  visibility: visible;
}
.ai-summary .news-content-area {
  padding: 1rem 1.5rem;
}
.ai-summary .news-subtitle {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}
.ai-summary .news-subtitle span {
  font-weight: 500;
  color: #343a40;
}
.ai-summary .news-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.ai-summary .news-list .news-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #343a40;
  font-size: 1rem;
  line-height: 1.6;
}
.ai-summary .news-list .news-list-item:last-child {
  margin-bottom: 0;
}
.ai-summary .news-list .news-list-item .bullet {
  margin-right: 1rem;
  color: var(--clr-secondary);
  font-size: 1.25rem;
  line-height: 1;
}

.breaking-news {
  font-family: var(--primary-font);
  text-align: center;
  margin-bottom: 30px;
  padding: 2rem;
  border-radius: var(--border-radius-hard);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  transition: all 0.2s ease-in-out;
}
.breaking-news:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.breaking-news .title {
  font-size: 65px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.breaking-news .title a {
  color: var(--clr-link);
}
.breaking-news .title a:hover {
  color: var(--clr-link-hover);
}
.breaking-news .image {
  width: 100%;
  height: auto;
  max-height: 550px;
  margin: 20px 0;
  padding: 0 100px;
  border-radius: var(--border-radius-hard);
}
.breaking-news .image img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-hard);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.breaking-news .live-video {
  margin-bottom: 10px;
}
.breaking-news .custom-figure .photo-caption {
  margin-top: -10px !important;
}
.breaking-news .photo-caption {
  margin-top: -20px;
  padding: 10px;
  text-align: center;
  font-style: italic;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  opacity: 0.68;
}
.breaking-news .heading {
  display: inline-block;
  margin: 10px 0 20px;
  font-weight: 400;
  color: #fff;
  background-color: #e11b22;
  padding: 2px 14px 0;
  font-size: 14px;
  border-radius: var(--border-radius);
}
.breaking-news .sub-heading {
  color: rgba(0, 0, 0, 0.6588235294);
  margin-top: 15px;
  line-height: 40px;
  font-size: 1.5rem;
}
.breaking-news .info {
  margin: 25px 0;
}
.breaking-news .info a {
  color: var(--gray-dark-color);
  font-weight: 500;
  font-size: 15px;
}
.breaking-news .info .author, .breaking-news .info .time, .breaking-news .info .comment {
  display: inline-block;
  color: #858585;
  font-weight: 400;
  font-size: 15px;
}
.breaking-news .info .author .count, .breaking-news .info .time .count, .breaking-news .info .comment .count {
  position: relative;
  top: -2px;
}
.breaking-news .info .author:not(:first-child)::before, .breaking-news .info .time:not(:first-child)::before, .breaking-news .info .comment:not(:first-child)::before {
  content: "•";
  color: inherit;
  padding: 0 0.35rem;
  opacity: 0.8;
}
.breaking-news .info .author i, .breaking-news .info .time i, .breaking-news .info .comment i {
  padding-right: 5px;
}
.breaking-news .author {
  color: #444 !important;
}
.breaking-news .author:hover {
  color: var(--clr-primary);
}
.breaking-news .author img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  padding: 2px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--clr-primary);
}
.breaking-news .description {
  color: #5f5f5f;
  margin-top: 15px;
  padding: 0 40px;
  line-height: 30px;
  font-size: 20px;
}

.sidebar-posts {
  padding: 10px 0;
}
.sidebar-posts .title {
  margin: 10px 0;
  color: var(--link-color);
  font-size: 30px;
  font-weight: 500;
}
.sidebar-posts .title i {
  font-size: 22px;
  position: relative;
  top: -2px;
}
.sidebar-posts ul {
  margin: 0;
  padding: 0;
}
.sidebar-posts ul li {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0 10px 20px;
}
.sidebar-posts ul li:first-child {
  border-top: none;
}
.sidebar-posts ul li:last-child {
  border-bottom: none;
}
.sidebar-posts .latest li::before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  border: 2px solid var(--clr-primary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sidebar-posts .latest li a {
  font-weight: 530;
  font-size: 20px;
  line-height: 1.58;
  color: #2f3038;
}
.sidebar-posts .latest li a:hover {
  color: var(--clr-primary);
}
.sidebar-posts .trending li {
  padding: 12px 0 12px 0;
}
.sidebar-posts .trending li a {
  display: flex;
  position: relative;
  padding-left: 55px;
  min-height: 40px;
}
.sidebar-posts .trending li a:hover h3 {
  color: var(--clr-primary);
}
.sidebar-posts .trending li a .count {
  position: absolute;
  left: 0;
  top: 5px;
  width: 35px;
  height: 35px;
  background: var(--clr-secondary);
  color: #fff;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  border-radius: 100%;
}
.sidebar-posts .trending li a h3 {
  margin: 0;
  line-height: 1.45;
  font-size: 19px;
  font-weight: 600;
}

.sidebar-news {
  background: #eaeaea;
}
.sidebar-news .news-list {
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 10px 10px;
  align-items: center;
  justify-items: center;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.sidebar-news .news-list:nth-child(1) {
  position: relative;
  display: block;
  padding: 0;
}
.sidebar-news .news-list:nth-child(1) .title {
  position: absolute;
  bottom: -10px;
  height: auto;
  background: linear-gradient(to bottom, transparent, var(--clr-secondary));
  line-height: 20px;
  padding: 20px 15px;
}
.sidebar-news .news-list:nth-child(1) .title a {
  color: #fff;
  max-height: 50px;
  font-size: 20px;
  overflow: hidden;
}
.sidebar-news .news-list:nth-child(1) .count {
  position: absolute;
  bottom: 80px;
  z-index: 5;
}
.sidebar-news .news-list img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1.1s ease-in;
  vertical-align: bottom;
}
.sidebar-news .count {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: #fff;
  text-align: center;
  align-items: center;
  font-size: 17px;
  box-shadow: 2px 2px 0 var(--clr-secondary);
}
.sidebar-news .count::before {
  content: "";
  position: absolute;
  border-left: 0 solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #009449;
  bottom: -10px;
  margin-left: 0;
  left: 0;
  z-index: 9;
}
.sidebar-news .title {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  line-height: 1.3em;
  margin-top: 5px;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 700;
  overflow: hidden;
}
.sidebar-news .title a {
  max-height: 50px;
  line-height: 1.5;
  color: var(--clr-primary);
  overflow: hidden;
}
.sidebar-news .title a:hover {
  color: var(--clr-secondary);
}

.news-shadow {
  background: #eaeaea;
  margin-bottom: 30px;
}
.news-shadow .news-list {
  display: grid;
  grid-template-columns: 1fr 4fr;
  padding: 10px 10px;
  align-items: center;
  justify-items: center;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}
.news-shadow .news-list:nth-child(1) {
  position: relative;
  display: block;
  padding: 0;
}
.news-shadow .news-list:nth-child(1) .title {
  position: absolute;
  bottom: -10px;
  height: auto;
  background: linear-gradient(to bottom, transparent, var(--clr-secondary));
  line-height: 20px;
  padding: 20px 15px;
}
.news-shadow .news-list:nth-child(1) .title a {
  color: #fff;
  font-size: 30px;
  overflow: hidden;
}
.news-shadow .news-list:nth-child(1) .count {
  position: absolute;
  bottom: 80px;
  z-index: 5;
}
.news-shadow .news-list img {
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1.1s ease-in;
  vertical-align: bottom;
}
.news-shadow .count {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: #fff;
  text-align: center;
  align-items: center;
  font-size: 17px;
  box-shadow: 2px 2px 0 var(--clr-secondary);
}
.news-shadow .count::before {
  content: "";
  position: absolute;
  border-left: 0 solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #009449;
  bottom: -10px;
  margin-left: 0;
  left: 0;
  z-index: 9;
}
.news-shadow .title {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  line-height: 1.3em;
  margin-top: 5px;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 700;
  overflow: hidden;
}
.news-shadow .title a {
  color: var(--clr-primary);
  overflow: hidden;
  line-height: 35px;
}
.news-shadow .title a:hover {
  color: var(--clr-secondary);
}

.bg-green {
  padding: 40px 0 10px;
  background: #2f5a3a url(../icons/board.svg) no-repeat left top;
  background-size: cover;
}
.bg-green .section-title h3 {
  background: #356241 !important;
  color: #fff !important;
}
.bg-green .more {
  background: rgba(0, 0, 0, 0) !important;
  color: #fff !important;
}

.photo-gallery {
  padding: 40px 0 40px;
  background: #3f6bb1 url(../icons/board.svg) no-repeat left top;
  background-size: cover;
}
.photo-gallery .section-title h3 {
  background: #3f6bb1 !important;
  color: #fff !important;
}
.photo-gallery .more {
  background: #3f6bb1 !important;
  color: #fff !important;
}
.photo-gallery .photo-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  z-index: 9;
}

.video-gallery {
  padding: 40px 0 60px;
  background: #323131 url(../icons/board.svg) no-repeat left top;
  background-size: cover;
}
.video-gallery .video-container {
  padding: 0 50px;
}
.video-gallery .section-title h3 {
  background: none !important;
  color: #fff !important;
}
.video-gallery .more {
  background: #323131 !important;
  color: #fff !important;
}
.video-gallery .photo-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--clr-primary);
  font-size: 25px;
  line-height: 42px;
  text-align: center;
  z-index: 9;
}

.section-by-category {
  margin-bottom: 30px;
}
.section-by-category .section-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-by-category .section-category .category {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.section-by-category .section-category .category li {
  display: inline-block !important;
}
.section-by-category .section-category .category li:not(:last-child) {
  margin-right: 10px;
}
.section-by-category .section-category .category li a {
  display: inline-block;
  height: 35px;
  line-height: 35px;
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-color);
  padding: 0 20px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  outline: 0;
  transition: all 0.1s ease-in-out;
}
.section-by-category .section-category .category li a:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
  color: var(--clr-primary);
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  border: 1px solid var(--clr-primary);
}

.title__block1 {
  width: 100%;
  height: auto;
  margin-bottom: 7px;
  padding: 0px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.title__block1 a {
  border-bottom: 4px var(--clr-secondary) solid;
  line-height: normal;
  color: hsl(0, 0%, 100%);
  font-size: 32px;
  font-weight: 600;
}

/* Section Title */
.section-title-two {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  background-color: #5982ff;
  padding-right: 0.75rem;
}
.section-title-two.colored {
  background-color: hsla(0, 0%, 100%, 0.2) !important;
}
.section-title-two.colored .title {
  background-color: hsla(0, 0%, 100%, 0.2) !important;
}
.section-title-two.colored .contain .box {
  background-color: hsl(220, 8.22%, 28.63%) !important;
}
.section-title-two .contain {
  position: relative;
}
.section-title-two .contain .box {
  position: absolute;
  right: -1px;
  bottom: 0;
  height: 3.2rem;
  width: 2.5rem;
  background-color: #5982ff;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.section-title-two .contain .title {
  background-color: var(--clr-primary);
  color: #FFFFFF;
  padding: 10px 50px 1px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  border-left: 8px solid var(--clr-secondary);
}
.section-title-two .contain .title h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #FFFFFF;
}
.section-title-two .all {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 16px;
}
.section-title-two .all:hover {
  color: hsl(0, 0%, 100%);
}

.bahas {
  background-color: #FFF;
}
.bahas .post-block-style {
  margin: 20px 10px 10px;
  border-bottom: 1px solid var(--border-color);
}
.bahas .post-block-style .post-thumb {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
}
.bahas .post-block-style .post-thumb img {
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bahas .post-author {
  color: #252525;
  font-size: 14px;
  font-weight: 500;
}

.thought-card {
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
.thought-card .list-post-block {
  margin: 10px 0;
  padding: 10px 20px 0px;
}
.thought-card .list-post-block .post-thumb {
  margin-bottom: 10px !important;
}
.thought-card .list-post-block .list-post li {
  padding: 15px 0 10px 0;
  border-top: 1px solid #EEE;
}
.thought-card .list-post-block .list-post li:first-child {
  border-top: 0;
}

.section-title {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 0 27px 0;
  justify-content: space-between;
}
.section-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  width: 100%;
  height: 1px;
  background: #DDD;
  opacity: 0.3;
}
.section-title h3 {
  position: relative;
  margin: 0 0 0;
  background: #fff;
  color: var(--clr-primary);
  font-family: "Rajdhani", sans-serif;
  padding-right: 13px;
  line-height: 1;
  font-size: 27px;
  font-weight: 600;
  align-items: center;
}
.section-title h3 a {
  color: inherit;
  border-bottom: 5px solid var(--clr-secondary);
}

.more {
  position: relative;
  display: inline-block;
  background: #fff;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 13px;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
}
.more:hover {
  color: var(--clr-primary);
}
.more:hover i {
  transform: translate3d(8px, -8px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0);
  transform-style: preserve-3d;
}
.more i {
  display: inline-block;
  margin-left: 8px;
  transition: 0.3s ease;
}

.section__title {
  flex: 0 0 100%;
}
.section__title.with__border h2 {
  font-size: 27px;
  border-bottom: solid 2px rgba(0, 0, 0, 0.14);
  padding-bottom: 14px;
  line-height: 1.3;
}
.section__title .anker {
  position: relative;
  background-color: var(--clr-primary);
  color: #FFF;
  padding: 10px 50px 10px 30px;
}
.section__title .anker:hover {
  color: var(--clr-secondary);
}
.section__title .anker::before, .section__title .anker::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}
.section__title .anker::before {
  border-style: solid;
  border-width: 0 30px 46px 0;
  border-color: var(--clr-primary) transparent var(--clr-primary) transparent;
  top: -1px;
  right: -30px;
}
.section__title .anker::after {
  top: 0;
  right: -32px;
  width: 10px;
  height: 45px;
  transform: skew(33deg);
  background: var(--clr-secondary);
}
.section__title .slash {
  position: relative;
}
.section__title .slash::before, .section__title .slash::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}
.section__title .slash::after {
  top: -23px;
  right: -40px;
  width: 10px;
  height: 46px;
  transform: skew(33deg);
  background: var(--clr-primary);
}
.section__title h2 {
  margin: 0 0 30px;
  line-height: 1;
  font-size: 25px;
  font-weight: 600;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
}
.section__title h2 .flow-wrap {
  position: relative;
  width: 60%;
  top: 9px;
  display: flex;
  margin-left: auto;
  margin-right: 50px;
}
.section__title h2 .flow-wrap::before, .section__title h2 .flow-wrap::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
}
.section__title h2 .flow-wrap::before {
  border-style: solid;
  border-width: 0 30px 48px 0;
  border-color: var(--clr-primary) var(--clr-primary) transparent transparent;
  top: 0;
  left: -30px;
}
.section__title h2 .flow-wrap::after {
  border-style: solid;
  border-width: 0 30px 49px 0;
  border-color: var(--clr-primary) transparent var(--clr-primary) transparent;
  top: -1px;
  right: -30px;
}
.section__title h2 .flow-wrap .slash {
  position: relative;
}
.section__title h2 .flow-wrap .slash::before, .section__title h2 .flow-wrap .slash::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0px;
}
.section__title h2 .flow-wrap .slash::before {
  right: -38px;
  width: 10px;
  height: 46px;
  transform: skew(33deg);
  background: var(--clr-primary);
}
.section__title h2 .flow-wrap .slash::after {
  right: -31px;
  width: 8px;
  height: 46px;
  transform: skew(33deg);
  background: var(--clr-secondary);
}
.section__title h2 .title__category__menu {
  padding: 15px 20px 15px 0px;
  background-color: var(--clr-primary);
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}
.section__title h2 .title__category__menu li {
  flex: 1;
  padding: 0 15px;
}
.section__title h2 .title__category__menu li a {
  font-weight: 600;
  font-family: "EK Mukta";
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: block;
  color: #FFF;
}
.section__title h2 .title__category__menu li a:hover {
  color: var(--clr-secondary);
}
.section__title h2 .section__more {
  vertical-align: middle;
  line-height: 37px;
  transition: all 0.3s ease;
  margin-left: auto;
}
.section__title h2 .section__more i {
  transition: all 0.3s ease;
}
.section__title h2 .section__more:hover {
  background-color: var(--clr-primary);
  color: #fff;
}
.section__title h2 .section__more:hover i {
  transform: rotate(360deg);
}
.section__title.colorful h2 {
  color: #ffffff;
}
.section__title.colorful h2 .section__more {
  background-color: #fff;
  color: #e11b22;
}
.section__title.colorful h2 .section__more:hover {
  background-color: #fff;
  color: #e11b22;
}
.section__title.colorful h2 .title__category__menu li {
  border-right: solid 1px rgba(255, 255, 255, 0.18);
}
.section__title.colorful h2 .title__category__menu li a {
  color: #ffffff;
}
.section__title.red h2 {
  color: #e11b22;
}
.section__title.red h2 .section__more {
  color: #e11b22;
  background-color: rgba(255, 255, 255, 0.1);
}
.section__title.red h2 .section__more:hover {
  background-color: #e11b22;
  color: #fff;
}
.section__title .section__more {
  order: 3;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  font-size: 16px;
  color: var(--clr-primary);
  background-color: rgba(34, 96, 191, 0.08);
  display: inline-block;
  margin-left: auto;
}
.section__title .section__more i {
  transition: all 0.3s ease;
}
.section__title .section__pradesh {
  margin-left: auto;
  align-self: center;
}
.section__title .section__pradesh a {
  height: 34px;
  width: 50px;
  line-height: 34px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  background-color: rgba(34, 96, 191, 0.14);
  border: solid 1px var(--clr-wash);
  color: var(--clr-primary);
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  font-family: "EK Mukta";
  margin: 0 4px;
}
.section__title .section__pradesh a:hover {
  background-color: #2260bf;
  color: #fff;
  border-color: #2260bf;
}

.news-card {
  background: #FFF;
  padding: 20px;
  border-radius: var(--border-radius-hard);
  box-shadow: var(--box-shadow);
}

.ui-light-box {
  background: #f3f4f6;
  padding: 20px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.ui-box-border {
  margin-bottom: 15px;
  padding: 0 20px;
  border-radius: var(--border-radius-hard);
  box-shadow: var(--box-shadow);
}
.ui-box-border:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.ui-box-white {
  background: #FFF;
  margin-bottom: 15px;
  padding: 20px 20px;
  border-radius: var(--border-radius-hard);
}

.tab-pane.loading {
  opacity: 0.3;
}

.lds-dual-ring {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.lds-dual-ring.loading {
  visibility: visible;
  opacity: 1;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid;
  border-color: var(--primary-color) transparent var(--primary-color) transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.one-thumb-layout:after {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(to left, var(--border-color) 0%, transparent 100%);
}
.one-thumb-layout .post-title {
  text-align: center;
}

.autopana {
  background: #e9f5ff;
  margin-top: 120px;
  padding: 30px;
}
.autopana .grid-box {
  margin-top: -150px;
  margin-bottom: 30px;
}
.autopana .grid-box .post-block-style {
  text-align: center;
}
.autopana .grid-box .post-block-style .post-thumb {
  position: relative;
  height: 250px;
}
.autopana .grid-box .post-block-style .author-name {
  display: block;
  position: relative;
  margin-top: 35px;
  margin-bottom: 30px;
  padding-bottom: 5px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
}
.autopana .grid-box .post-block-style .author-name::after {
  content: "";
  width: 80px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background: #d13938;
  transform: translate(-50%);
}
.autopana .grid-box .post-block-style .description {
  display: block;
  font-size: 20px;
  color: #222;
  line-height: 34px;
}
.autopana .second {
  margin: 0 -30px;
}
.autopana .second .list-post li {
  padding: 30px 30px 10px 30px;
  border-top: 1px solid #ddd;
}
.autopana .second .list-post li .author-name {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}
.autopana .second .list-post li:hover .post-title {
  color: var(--clr-primary) !important;
}

.samachar {
  background: rgba(222, 226, 230, 0.3294117647);
  border-bottom: 1px solid #ccc;
  height: 105px;
  overflow: hidden;
  float: left;
  margin-bottom: 10px;
  padding: 7px 0;
  width: 100%;
}
.samachar .image.full-image {
  position: absolute;
  overflow: hidden !important;
}
.samachar .image.full-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
  height: 80px;
  transition: 2s;
}
.samachar .content {
  padding: 0px 0 0 115px;
  width: 95%;
  float: left;
}
.samachar .content h4 {
  margin: 0;
  line-height: 25px;
  font-weight: bold;
  font-size: 20px;
}
.samachar .content h4 a {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.samachar .content h4 a:hover {
  color: var(--clr-primary);
}

.news-block .post-title a {
  color: #000000;
}
.news-block .post-title a:hover {
  color: var(--clr-primary);
}

.news-grid {
  text-align: center;
}
.news-grid.stock {
  margin-bottom: 50px;
}
.news-grid.stock .behind img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-grid .behind {
  position: relative;
  opacity: 0.75;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.news-grid .behind img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgb(190, 190, 190);
}
.news-grid .behind:hover {
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  z-index: 5;
}
.news-grid .author {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--clr-secondary);
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -40px;
  z-index: 1;
}
.news-grid .content {
  position: relative;
  width: 90%;
  height: auto;
  background-color: #c7e1eb;
  margin-top: -50px;
  border-radius: 50px;
  z-index: 2;
}
.news-grid .content .info {
  padding: 20px 25px;
}
.news-grid .content .info .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}
.news-grid .content .info .meta {
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}
.news-grid .content .info .meta .writer {
  font-size: 14px;
  color: var(--clr-secondary);
  font-weight: 700;
}
.news-grid .content .info .meta .writer i {
  margin-right: 10px;
}
.news-grid .content .info .meta .date {
  margin-left: 15px;
  color: #000;
  opacity: 0.8;
  font-size: 14px;
  font-weight: 700;
}

#most-readed .owl-item .thumbnail {
  display: inline-block !important;
  width: 80% !important;
  height: 180px !important;
  margin-top: -130px !important;
}
#most-readed .owl-item .content {
  border-radius: 30px !important;
}
#most-readed .owl-item .content .info {
  padding: 20px 20px 5px !important;
}
#most-readed .owl-item .content .count {
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 32px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: var(--clr-secondary);
  color: #FFF;
  font-size: 20px;
}

section.world-economy {
  background-color: #d4edd4;
}
section.economic-indicator {
  background: linear-gradient(90deg, var(--clr-secondary) 0%, var(--clr-primary) 100%);
}
section.economic-indicator .value span {
  display: inline-block;
  background: #FFFFFF;
  padding: 3px 10px;
  color: var(--clr-secondary);
  font-size: 18px;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
}
section.economic-indicator .title {
  margin: 10px 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}
section.economic-indicator .owl-carousel {
  padding-left: 35px;
  padding-right: 35px;
}
section.economic-indicator .owl-carousel .owl-nav {
  color: #fff;
  position: static;
  bottom: -20px;
}
section.economic-indicator .owl-carousel .owl-nav .owl-next, section.economic-indicator .owl-carousel .owl-nav .owl-prev {
  background: none !important;
  font-size: 24px;
  margin-left: 16px;
  height: 45px;
  width: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 100%;
  transition: all 0.1s ease-in-out;
  font-weight: 600;
  color: #fff;
  opacity: 1 !important;
}
section.economic-indicator .owl-carousel .owl-nav .owl-next.disabled, section.economic-indicator .owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.3 !important;
}
section.economic-indicator .owl-carousel .owl-nav .owl-prev {
  left: -30px;
}
section.economic-indicator .owl-carousel .owl-nav .owl-next {
  right: -5px;
}
section.economic-indicator .owl-carousel .owl-item .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #2b4a33;
  border-radius: 20px;
}
section.video {
  background-color: #000000;
}
section.video .thumbnail {
  display: inline-block !important;
  width: 80% !important;
  height: 180px !important;
  margin-top: -200px !important;
}
section.video .content {
  border-radius: 30px !important;
}
section.video .content .info {
  padding: 0px 20px 5px !important;
}
section.video .content .icon {
  position: relative;
  top: -70px;
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 50%;
  background-color: var(--clr-secondary);
  margin: 0 auto;
  text-align: center;
  z-index: 100;
}
section.video .content .icon i {
  font-size: 30px;
  color: #FFF;
}

.grid-two {
  text-align: center;
  margin-top: 180px;
}
.grid-two.small {
  margin-top: 70px;
}
.grid-two.small .thumbnail {
  height: 120px;
  margin-top: -70px;
}
.grid-two.small .content {
  border-radius: 30px;
}
.grid-two.small .content .info {
  padding: 10px 20px 0;
}
.grid-two.small .content .info .title {
  font-size: 16px;
}
.grid-two.small .content .info .meta {
  margin-top: 10px;
}
.grid-two.medium {
  margin-top: 130px;
}
.grid-two.medium .thumbnail {
  height: 180px;
  margin-top: -130px;
}
.grid-two.medium .content {
  border-radius: 30px;
}
.grid-two.medium .content .info {
  padding: 10px 20px 0;
}
.grid-two.medium .content .info .title {
  font-size: 20px;
}
.grid-two.medium .content .info .meta {
  margin-top: 10px;
}
.grid-two a {
  display: block;
}
.grid-two .thumbnail {
  position: relative;
  width: 80%;
  height: 250px;
  border-radius: 5px;
  border: 2px solid #ddd;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -180px;
  z-index: 1;
}
.grid-two .thumbnail:hover {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  cursor: pointer;
}
.grid-two .content {
  position: relative;
  width: 100%;
  margin-top: 0;
  height: auto;
  background-color: #c7e1eb;
  border-radius: 50px;
  z-index: 2;
}
.grid-two .content .info {
  padding: 30px 25px;
}
.grid-two .content .info .title {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}
.grid-two .content .info .title.title-lg {
  font-size: 30px;
  line-height: 40px;
}
.grid-two .content .info .meta {
  margin-top: 25px;
  padding: 15px 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}
.grid-two .content .info .meta .writer {
  display: inline-block;
  font-size: 14px;
  color: var(--clr-secondary);
  font-weight: 700;
}
.grid-two .content .info .meta .writer i {
  margin-right: 10px;
}
.grid-two .content .info .meta .date {
  margin-left: 15px;
  color: #000;
  opacity: 0.8;
  font-size: 14px;
  font-weight: 700;
}

.large-grid .thumbnail {
  position: relative;
  width: 70%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
  border: 2px solid var(--clr-secondary);
  z-index: 1;
}
.large-grid .thumbnail:hover {
  z-index: 20;
}
.large-grid .content {
  position: relative;
  width: 55%;
  height: 300px;
  margin-left: 45%;
  margin-top: -325px;
  background-color: #c7e1eb;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px;
  border: 2px solid #bbb;
  text-align: center;
  padding: 30px 40px;
  z-index: 1;
}
.large-grid .content .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
  color: #000;
}
.large-grid .content .title:hover {
  color: var(--clr-primary);
}
.large-grid .content .desc {
  color: rgb(106, 104, 104);
  line-height: 20px;
  font-weight: 700;
  text-align: left;
}
.large-grid .content .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 0 20px;
  border-top: 2px solid #575656;
  margin-top: 20px;
  transition: all 0.1s ease-in-out;
}
.large-grid .content .info .left {
  display: flex;
  align-items: center;
}
.large-grid .content .info .left .author {
  display: flex;
  position: relative;
  margin-right: 0;
  font-size: 15px;
  vertical-align: inherit;
  justify-content: center;
  align-items: center;
  color: #100f0f;
  vertical-align: middle;
  font-weight: 600;
}
.large-grid .content .info .left .author a {
  color: var(--clr-secondary);
}
.large-grid .content .info .left .author img {
  padding: 3px;
  background: #fff;
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 100%;
  border: 1px solid #FFFFFF;
  box-shadow: 2px 2px #9f9c9c;
}
.large-grid .content .info .left .author .name {
  position: relative;
  display: inline-block;
  padding-right: 9px;
  color: var(--black-gray-color);
  font-weight: 600;
  vertical-align: middle;
}
.large-grid .content .info .date {
  margin-left: 15px;
  color: rgb(106, 104, 104);
  font-size: 14px;
  font-weight: 700;
}

.lagani-bises {
  background: #c7e1eb;
  margin-top: 50px;
  border-radius: 30px;
}
.lagani-bises li {
  border-top: 1px solid #eee;
}

.post-block-style {
  font-family: "Ek Mukta", sans-serif;
}
.post-block-style .author, .post-block-style .time {
  display: inline-block;
  color: #333;
  font-weight: 400;
  font-size: 15px;
}
.post-block-style .author + .author::before, .post-block-style .author + .time::before, .post-block-style .time + .author::before, .post-block-style .time + .time::before {
  content: "•";
  color: inherit;
  padding: 0 0.35rem;
  opacity: 0.8;
}
.post-block-style .author .count, .post-block-style .time .count {
  position: relative;
  top: -2px;
}
.post-block-style .author i, .post-block-style .time i {
  padding-right: 5px;
}
.post-block-style .author a {
  color: #333;
}
.post-block-style .author img {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  padding: 2px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  vertical-align: middle;
}
.post-block-style.bichar {
  margin: 35px 0 25px 0;
  padding: 0 10px;
}
.post-block-style.bichar .main-title {
  display: block;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 32px;
  color: var(--clr-link);
}
.post-block-style.bichar .main-title:hover {
  color: var(--clr-primary);
}
.post-block-style.bichar .author-img img {
  width: 102px !important;
  height: 102px !important;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-block-style.bichar .author-name {
  display: block;
  margin-top: 15px;
  padding-bottom: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 400;
}
.post-block-style.bichar .author-name::after {
  content: "";
  width: 80px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 5px;
  background: #d13938;
  transform: translate(-50%);
}

.sticky-sidebar, .sticky-sidebar-ads {
  position: sticky;
  top: 90px;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.politics {
  padding: 30px 0 30px;
}
.politics .category {
  background: none !important;
}
.politics .category:hover li a {
  box-shadow: unset !important;
}
.politics .section-title h3 {
  background: #f2f8ff;
}
.politics .pana-carousel {
  display: flex;
  height: 550px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.politics .pana-carousel a {
  color: #000000;
}
.politics .pana-carousel a:hover {
  opacity: 0.8;
}
.politics .pana-carousel p {
  margin-top: 0;
  padding-top: 9px;
  line-height: 1.56;
  color: #3f3f3f;
  font-size: 18px;
  font-weight: 300;
}
.politics .owl-carousel .owl-nav {
  color: #fff;
  position: absolute;
  bottom: 50px;
  left: 110px;
}
.politics .owl-carousel .owl-nav .owl-next, .politics .owl-carousel .owl-nav .owl-prev {
  background: var(--clr-primary) !important;
  font-size: 24px;
  margin-left: 16px;
  border: 1px solid #fff;
  height: 45px;
  width: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 100%;
  transition: all 0.1s ease-in-out;
  font-weight: 600;
  color: #fff;
  opacity: 1 !important;
}
.politics .owl-carousel .owl-nav .owl-next.disabled, .politics .owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.3 !important;
}
.politics .owl-carousel .owl-nav .owl-prev {
  left: -90px;
  right: 0;
}
.politics .owl-carousel .owl-item .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #DDD;
  border-radius: 10px;
}

.paana {
  padding: 30px 0 30px;
}
.paana .pana-carousel {
  display: flex;
  height: 550px;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.paana .pana-carousel a {
  color: #FFF;
}
.paana .pana-carousel a:hover {
  opacity: 0.8;
}
.paana .pana-carousel p {
  margin-top: 0;
  padding-top: 9px;
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 300;
}
.paana .owl-carousel .owl-nav {
  color: #fff;
  position: absolute;
  bottom: 50px;
  right: 50px;
}
.paana .owl-carousel .owl-nav .owl-next, .paana .owl-carousel .owl-nav .owl-prev {
  background: none !important;
  font-size: 24px;
  margin-left: 16px;
  border: 1px solid #fff;
  height: 45px;
  width: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 100%;
  transition: all 0.1s ease-in-out;
  font-weight: 600;
  color: #fff;
  opacity: 1 !important;
}
.paana .owl-carousel .owl-nav .owl-next.disabled, .paana .owl-carousel .owl-nav .owl-prev.disabled {
  opacity: 0.3 !important;
}
.paana .owl-carousel .owl-nav .owl-prev {
  left: -90px;
  right: 0;
}
.paana .owl-carousel .owl-item .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #2b4a33;
  border-radius: 20px;
}

/** Multimedia */
.multimedia {
  margin-top: 500px;
  background: #2f0908 url(../icons/multimedia.png);
  background-size: cover;
}
.multimedia .top-section {
  position: relative;
  top: -500px;
  margin-bottom: -460px;
}
.multimedia .big-thumb {
  background-color: #FFF;
  border-radius: 20px;
}

.market-tab {
  background-color: #FFF;
  color: #000;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  border: none !important;
  border-radius: 0 !important;
}
.market-tab.active {
  background-color: var(--clr-primary) !important;
  color: #FFF !important;
}

.market-table tr {
  background-color: #FFF;
  text-transform: capitalize;
}
.market-table tr .open {
  background-color: var(--clr-primary);
  color: #FFF;
}
.market-table tr .closed {
  background-color: var(--clr-secondary);
  color: #FFF;
}

.wp-block-image img {
  border-radius: var(--border-radius);
}

.archive {
  padding: 0;
}
.archive .archive-logo {
  padding-top: 20px;
  text-align: center;
  border-bottom: 2px solid var(--clr-primary);
}
.archive .archive-logo img {
  width: 120px;
}

.archive-page .post-block-style {
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}
.archive-page .post-block-style .post-thumb {
  border-radius: 0;
}

.category-selector {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.category {
  padding: 10px;
  background-color: #ddd;
  cursor: pointer;
}

.category-buttons {
  margin-bottom: 10px;
}

.button {
  margin-right: 5px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  font-size: 18px;
}
.button.gainer-button {
  background-color: #377656;
  color: #FFF;
}
.button.loser-button {
  background-color: #c6736a;
  color: #FFF;
}
.button.loser-button.active {
  background-color: var(--clr-secondary) !important;
}

.todays-market-nav-tabs {
  border: none !important;
}

.todays-market-tab {
  background-color: #FFF;
  color: #000;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  border: none !important;
}
.todays-market-tab.active {
  background-color: var(--clr-primary) !important;
  color: #FFF !important;
}

.transaction-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.transaction-table th,
.transaction-table td {
  padding: 10px;
  border: 1px solid var(--clr-border);
  text-align: center;
  font-size: 16px;
}

.market-data {
  color: green;
}
.market-data.loser {
  color: red;
}

.archive .breadcrumb li {
  color: var(--clr-primary);
  font-size: 20px;
  font-weight: 600;
}
.archive .breadcrumb li a {
  color: var(--clr-primary);
}

.post__info {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0 10px 0;
  transition: all 0.1s ease-in-out;
  border-top: 1px solid #b7b6b6;
  border-bottom: 1px solid #b7b6b6;
}
.post__info .left {
  display: flex;
  align-items: center;
}
.post__info .left div {
  display: flex;
  position: relative;
  margin-right: 0;
  font-size: 15px;
  vertical-align: inherit;
  justify-content: center;
  align-items: center;
  color: #100f0f;
  vertical-align: middle;
  font-weight: 600;
}
.post__info .left div:not(:last-child) {
  margin-right: 15px;
}
.post__info .left .author img {
  padding: 3px;
  background: #fff;
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border-radius: 100%;
  border: 1px solid var(--clr-primary);
}
.post__info .left .author span {
  margin: 0;
  line-height: 1;
  font-size: 16px;
}
.post__info .left .author a {
  position: relative;
  display: inline-block;
  padding-right: 9px;
  color: var(--black-gray-color);
  font-weight: 600;
  vertical-align: middle;
}
.post__info .left .author a:hover {
  color: var(--primary-color);
}
.post__info .left .date {
  padding: 0 15px 0 15px;
  margin: 0 15px 0 15px;
  border-top: none;
  border-bottom: none;
  color: var(--black-gray-color);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
}
.post__info .left .date span {
  margin-left: 10px;
  line-height: 1;
}
.post__info .right {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}
.post__info .right .comment a {
  color: var(--black-gray-color);
}
.post__info .right .comment a i {
  display: inline-block;
  padding-top: 0;
  line-height: 1;
  vertical-align: middle;
  font-size: 20px;
}
.post__info .right .comment a:hover {
  color: var(--primary-color);
}
.post__info .right .size-filter {
  text-align: center;
}
.post__info .right button {
  border: none;
  outline: none;
  padding: 3px 10px;
  font-size: 16px;
  border: 1px solid var(--clr-primary);
  background: none;
  color: var(--clr-primary);
  transition: all 0.3s ease-in-out;
}
.post__info .right button svg {
  fill: var(--clr-primary);
}
.post__info .right button:hover {
  background: var(--clr-primary);
  color: #FFF;
}
.post__info .right button:hover svg {
  fill: #FFF;
}

.single-post {
  padding: 0;
}
.single-post iframe {
  margin: 10px 0;
  width: 100%;
  height: 400px;
  border-radius: 5px;
}
.single-post .pdf {
  width: 100%;
  height: 800px;
}
.single-post .banner-ads {
  margin: 20px 0;
}
.single-post .banner-ads img {
  width: 100%;
}
.single-post .post-header {
  margin-bottom: 20px;
  padding: 20px 0 0;
  z-index: 1;
}
.single-post .post-header.stick {
  position: sticky;
  top: 50px;
  background-color: #FFFFFF;
  padding-bottom: 12px;
  border-bottom: 1px solid #EEE;
  z-index: 10;
}
.single-post .post-header.stick .heading, .single-post .post-header.stick .sub-heading {
  display: none !important;
}
.single-post .post-header.stick .title {
  font-size: 34px;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.single-post .post-header .heading {
  display: inline-block;
  margin: 10px 0 20px;
  font-weight: 500;
  color: #fff;
  background-color: #e11b22;
  padding: 2px 14px 0;
  border-radius: var(--border-radius);
  font-size: 14px;
}
.single-post .post-header .sub-heading {
  color: #010101;
  margin: 15px 0 0 0;
  line-height: 40px;
  font-size: 1.75rem;
  font-size: 1.75rem;
}
.single-post .post-header .title {
  margin: 10px 0;
  color: #000000;
  line-height: 1.2;
  font-size: 63px;
  font-weight: 600;
}
.single-post .post-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 10px 20px;
  transition: all 0.1s ease-in-out;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.single-post .post-info .left {
  display: flex;
  align-items: center;
}
.single-post .post-info .left div {
  display: flex;
  position: relative;
  margin-right: 0;
  font-size: 15px;
  vertical-align: inherit;
  justify-content: center;
  align-items: center;
  color: #100f0f;
  vertical-align: middle;
  font-weight: 600;
}
.single-post .post-info .left div:not(:last-child) {
  margin-right: 15px;
}
.single-post .post-info .left .author img {
  padding: 3px;
  background: #fff;
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border-radius: 100%;
  border: 1px solid var(--clr-primary);
}
.single-post .post-info .left .author span {
  margin: 0;
  line-height: 1;
  font-size: 16px;
}
.single-post .post-info .left .author a {
  position: relative;
  display: inline-block;
  padding-right: 9px;
  color: var(--black-gray-color);
  font-weight: 600;
  vertical-align: middle;
}
.single-post .post-info .left .author a:hover {
  color: var(--primary-color);
}
.single-post .post-info .left .date {
  padding: 0 15px 0 15px;
  margin: 0 15px 0 15px;
  border-top: none;
  border-bottom: none;
  color: var(--black-gray-color);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
}
.single-post .post-info .left .date span {
  margin-left: 10px;
  line-height: 1;
}
.single-post .post-info .right {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}
.single-post .post-info .right .comment a {
  color: var(--black-gray-color);
}
.single-post .post-info .right .comment a i {
  display: inline-block;
  padding-top: 0;
  line-height: 1;
  vertical-align: middle;
  font-size: 20px;
}
.single-post .post-info .right .comment a:hover {
  color: var(--primary-color);
}
.single-post .post-info .right button {
  border: none;
  outline: none;
  padding: 3px 10px;
  font-size: 16px;
  border: 1px solid var(--clr-primary);
  border-radius: 50px;
  background: none;
  color: var(--clr-primary);
  transition: all 0.3s ease-in-out;
}
.single-post .post-info .right button svg {
  fill: var(--clr-primary);
}
.single-post .post-info .right button:hover {
  background: var(--clr-primary);
  color: #FFF;
}
.single-post .post-info .right button:hover svg {
  fill: #FFF;
}
.single-post .post-info .right .share .share-total {
  display: inline-block;
  margin-right: 15px;
}
.single-post .post-info .right .share .share-total span {
  font-size: 20px;
  line-height: 22px;
  display: block;
  padding: 0;
}
.single-post .post-info .right .share .share-total .shares {
  font-size: 12px;
  line-height: 12px;
}
.single-post .post-info .right .share .sharethis-inline-share-buttons {
  display: inline !important;
}
.single-post .post-thumbnail {
  position: relative;
  width: 100%;
}
.single-post .post-thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  max-height: 550px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.single-post .post-thumbnail .photo-caption {
  margin-top: -10px;
  padding: 0 0 10px;
  color: #000;
  text-align: center;
  font-size: 14px !important;
  opacity: 0.68;
  font-style: italic;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.single-post .post-container {
  display: flex;
}
.single-post .post-container .left-sticky {
  flex: 1;
  max-width: 200px;
  min-width: 180px;
  margin-top: 15px;
  margin-right: 20px;
  display: block;
  text-align: center;
  border: none;
}
.single-post .post-container .left-sticky.stick .content {
  top: 170px;
  transition: all 0.3s ease-in-out;
}
.single-post .post-container .left-sticky .content {
  position: sticky;
  top: 80px;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}
.single-post .post-container .left-sticky .content .author {
  display: block;
  margin: 0;
  padding: 0;
}
.single-post .post-container .left-sticky .content .author .profile {
  margin: 0 0 10px;
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: solid 1px #1476da;
  overflow: hidden;
  padding: 2px;
}
.single-post .post-container .left-sticky .content .author .info {
  font-size: 16px !important;
  line-height: 1.3;
}
.single-post .post-container .left-sticky .content .author .info a {
  display: block;
  color: var(--link-color);
  font-size: 18px;
  font-weight: 500;
}
.single-post .post-container .left-sticky .content .author .info a:hover {
  color: var(--link-hover-color);
}
.single-post .post-container .left-sticky .content .author .info .date {
  font-size: 12px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.2;
}
.single-post .post-container .left-sticky .content .author .info .date:after {
  content: "";
  display: block;
  height: 3px;
  width: 10px;
  margin: 10px auto;
  border-radius: 50px;
  background: var(--border-color);
}
.single-post .post-container .left-sticky .size-filter-vertical {
  border: 1px solid var(--clr-primary);
  padding: 5px;
  display: table;
  margin-top: 5px;
  margin: 0 auto;
  margin-bottom: 10px;
  border-radius: 100px;
}
.single-post .post-container .left-sticky .size-filter-vertical a {
  display: block;
  width: 26px;
  height: 26px;
  display: table;
  background: none;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  color: #333;
  text-decoration: none;
  border-top: 1px solid var(--clr-primary);
  cursor: pointer;
}
.single-post .post-container .left-sticky .size-filter-vertical a:first-child {
  border-top: none;
}
.single-post .post-container .left-sticky .share-count .share-vertical {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.single-post .post-container .left-sticky .share-count .share-vertical .share-total {
  display: inline-block;
  margin: 15px 0;
}
.single-post .post-container .left-sticky .share-count .share-vertical .share-total span {
  font-size: 20px;
  line-height: 22px;
  display: block;
  padding: 0;
}
.single-post .post-container .left-sticky .share-count .share-vertical .share-total .shares {
  font-size: 12px;
  line-height: 12px;
}
.single-post .post-container .left-sticky .share-count .share-vertical .st-total {
  color: #555;
  display: inline-block;
  font-weight: 600;
  line-height: 15px;
  margin-right: 0;
  max-width: 80px;
  padding: 4px 8px;
  text-align: center;
}
.single-post .post-container .left-sticky .share-count .share-vertical .st-btn {
  display: block !important;
  width: 40px;
  height: 40px !important;
  line-height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 0;
  border-radius: 100% !important;
  margin-bottom: 10px !important;
}
.single-post .post-container .left-sticky .share-count .share-vertical .st-btn img {
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
  top: 9px !important;
  vertical-align: top;
}
.single-post .post-container .left-sticky .share-count .share-vertical::after {
  content: "";
  display: block;
  height: 3px;
  width: 10px;
  margin: 5px auto 15px;
  border-radius: 50px;
  background: var(--border-color);
}
.single-post .post-container .single-post-content {
  max-width: 908px;
}
.single-post .post-container .single-post-content .post-content .details, .single-post .post-container .single-post-content .post-content p {
  margin: 15px 0 15px;
  line-height: 1.8;
  font-size: 22px;
  font-weight: 400;
}
.single-post .post-container .single-post-content .post-content .tags {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  grid-gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 20px;
}
.single-post .post-container .single-post-content .post-content .tags a {
  display: inline-block;
  padding: 4px 20px;
  background-color: #f2f4f7;
  color: var(--link-color);
  border-radius: 68px;
  transition: all 0.3s ease;
  line-height: 28px;
}
.single-post .post-container .single-post-content .post-content .tags a:hover {
  color: var(--primary-color);
}
.single-post .post-container .single-post-content .post-content .hot-topics {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
  border: solid 1px #f3f3f3;
}
.single-post .post-container .single-post-content .post-content .hot-topics h4 {
  padding: 0;
  margin: 0 0 10px;
  font-family: var(--default-font);
  line-height: 1;
  color: var(--primary-color);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
.single-post .post-container .single-post-content .post-content .hot-topics .topics {
  background-color: #fff;
  padding: 18px 0;
}
.single-post .post-container .single-post-content .post-content .wp-block-image {
  position: relative;
}
.single-post .post-container .single-post-content .post-content .wp-block-image .wp-element-caption {
  padding: 0 0 10px;
  color: #000;
  text-align: center;
  font-size: 14px !important;
  opacity: 0.68;
  font-style: italic;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.single-post .sticky-sidebar {
  position: sticky;
  top: 170px;
}
.single-post .comments h3 {
  color: var(--link-color);
}
.single-post .comments .section {
  background: #f5f5f5;
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}
.single-post .about-author {
  position: relative;
  background-color: hsla(0, 0%, 100%, 0.5);
  margin: 25px 0;
  padding: 25px;
  font-weight: 500;
  font-size: 28px;
  border-radius: 4px;
  box-shadow: rgba(34, 96, 191, 0.08) 0 0 18px;
}
.single-post .about-author .title {
  color: var(--link-color);
  margin: 0;
}
.single-post .about-author .wrap {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
}
.single-post .about-author .wrap .profile img {
  width: 100% !important;
  padding: 5px;
  border: 1px solid var(--clr-primary);
  height: 65px;
  width: 65px;
  max-width: 65px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}
.single-post .about-author .wrap .information {
  flex: 2;
  margin-left: -15px;
  text-align: left;
}
.single-post .about-author .wrap .information .name {
  margin: 0 0 15px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}
.single-post .about-author .wrap .information p {
  margin: -10px 0 15px;
  font-size: 16px !important;
  line-height: 1.3 !important;
  opacity: 0.6;
  font-weight: 400;
}
.single-post .about-author .wrap .information .link {
  display: flex;
}
.single-post .about-author .wrap .information .link a {
  font-size: 14px;
  display: inline-block;
  background-color: hsla(0, 0%, 100%, 0.5);
  border-radius: 48px;
  line-height: 28px;
  padding: 0 15px;
  transition: all 0.3s ease;
  color: var(--clr-primary);
}
.single-post .about-author .wrap .information .link a:hover {
  background-color: var(--clr-primary);
  color: #FFF;
}
.single-post .about-author .wrap .information .link .social {
  margin-left: auto;
}
.single-post .about-author .wrap .information .link .social a {
  display: inline-block;
  font-size: 18px;
  margin-right: 10px;
}
.single-post .about-author .wrap .information .link .social a i {
  display: inline-block;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background-color: var(--clr-social-bg);
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  color: #000;
  transition: all 0.3s ease;
}
.single-post .about-author-v2 {
  background: #f5f5f5;
  margin: 0;
  padding: 20px 15px 15px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}
.single-post .about-author-v2 .author-header {
  display: flex;
  gap: 0.7em;
}
.single-post .about-author-v2 .author-header img {
  margin: 0;
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post .about-author-v2 .author-header .author-body {
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
}
.single-post .about-author-v2 .author-header .author-body .author-title {
  display: block;
  margin-top: 5px;
  line-height: 22px;
  font-weight: 700;
  font-size: 16px;
}
.single-post .about-author-v2 .author-header .author-body .author-title a {
  display: inline-block;
  color: #333;
}
.single-post .about-author-v2 .author-header .author-body .author-title .social-icons {
  float: right;
  margin-top: -3px;
}
.single-post .about-author-v2 .author-header .author-body .author-title .social-icons a {
  margin-right: 5px;
}
.single-post .about-author-v2 .author-header .author-body .author-title .social-icons .sns-icon {
  width: 24px;
  height: 24px;
  text-align: center;
  background: #999;
  color: #fff;
  border-radius: 50px;
  line-height: 24px;
  font-size: 14px;
}
.single-post .about-author-v2 .author-header .author-body .author-title .social-icons .sns-icon:hover {
  background: #666666;
}
.single-post .about-author-v2 .author-header .author-description {
  display: block;
  color: #6b6969;
  font-size: 14px;
  font-style: italic;
  line-height: 20px;
}
.single-post .about-author-v2 .content-box .author-posts {
  background: #fff;
  margin-top: 20px;
  border-radius: 15px;
}
.single-post .about-author-v2 .content-box .author-posts .heading {
  padding: 5px 15px 5px 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-secondary);
}
.single-post .about-author-v2 .content-box .author-posts .news-item {
  padding: 5px 18px;
  line-height: 1.5rem;
  border-top: 1px solid #ddd;
}
.single-post .about-author-v2 .content-box .author-posts .news-item:nth-of-type(2) {
  border-top: 1px solid #ddd;
}
.single-post .about-author-v2 .content-box .author-posts .news-item a {
  display: block;
  width: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 1.2rem;
}
.single-post .about-author-v2 .content-box .author-posts .news-item a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #666;
  font-size: 16px;
}
.single-post .about-author-v2 .content-box .author-posts .news-item a:hover {
  color: var(--clr-primary);
}

.notice-title {
  margin: 10px 0;
  line-height: 20px;
}
.notice-title a {
  font-size: 18px;
}

.download-pdf {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 30px;
  background-color: var(--clr-primary);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
}
.download-pdf:hover {
  background-color: red;
  color: #FFF;
}

.single-page iframe {
  height: 700px !important;
  border: none !important;
  border-radius: 20px;
}

.main-menu {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 999999;
  top: 0;
  height: 100%;
  background: linear-gradient(-180deg, var(--clr-secondary) 40%, var(--clr-primary) 60%);
  padding: 20px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0px 2px 3px rgba(245, 134, 52, 0.2588235294);
}
.main-menu.open {
  display: block;
  animation: 0.3s slide-left;
  transform-origin: right;
}
.main-menu .menu-header {
  position: relative;
}
.main-menu .menu-header::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--clr-primary);
}
.main-menu .menu-header h3 {
  border-radius: 20px 20px 0 0;
  margin: 0;
  font-size: 25px;
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  line-height: 1;
  background-color: var(--clr-primary);
  color: #FFF;
  font-weight: 800;
}
.main-menu .menu-header .menu-close {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 45px;
  right: -10px;
  top: -10px;
  text-align: center;
  background: var(--clr-primary);
  color: #ffffff;
  font-size: 35px;
  border-radius: 50%;
  cursor: pointer;
}
.main-menu .menu-content ul {
  margin: 10px 0;
  padding: 0;
}
.main-menu .menu-content ul li a {
  float: left;
  width: 45%;
  margin-top: 10px;
  margin-left: 10px;
  background: #ffffff;
  color: #000;
  padding: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--clr-primary);
  border-radius: 50px;
}
.main-menu .menu-content ul li a:hover {
  background-color: var(--clr-secondary);
  color: #FFF;
}

.slide-menu {
  position: fixed;
  display: block;
  top: 0;
  left: -500px;
  bottom: 0;
  float: left;
  background: var(--clr-body-lite);
  width: 350px;
  height: 100%;
  transition: all 0.1 ease-in-out;
  border-right: 1px solid #dddddd;
  z-index: 10000;
}
.slide-menu.open {
  display: block;
  left: 0;
  animation: 0.3s slide-left;
  transform-origin: left;
}
.slide-menu .menu-header {
  position: relative;
}
.slide-menu .menu-header .logo img {
  max-width: 320px;
  padding: 15px 20px;
}
.slide-menu .menu-header .menu-close {
  position: absolute;
  width: 45px;
  height: 40px;
  line-height: 45px;
  right: -5px;
  top: 0;
  text-align: center;
  background: var(--clr-primary);
  color: #ffffff;
  font-size: 30px;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  cursor: pointer;
}
.slide-menu .menu-header .menu-search {
  display: block;
  position: relative;
  background-color: var(--clr-body);
  padding: 12px 25px;
  border-radius: 25px 25px 0 0;
}
.slide-menu .menu-header .menu-search input {
  font-family: Mukta, sans-serif;
  padding: 0 35px 0 0;
  font-size: 17px;
  outline: 0;
  transition: 0.3s ease;
  width: 100%;
  border: none;
  background: var(--clr-body);
}
.slide-menu .menu-header .menu-search input[type=submit] {
  width: auto;
  position: absolute;
  top: 12px;
  cursor: pointer;
  border: none;
  right: 20px;
  background-color: rgba(241, 241, 241, 0.4784313725);
  background: url(../icons/icon-search.png);
  padding: 0;
  width: 20px;
  font-size: 0;
  height: 36px;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.slide-menu .menu-content .nav-pills {
  width: 100%;
  height: auto;
  margin: 0px;
  padding: 10px 5px;
  background: var(--clr-primary);
  overflow: auto;
}
.slide-menu .menu-content .nav-pills li {
  float: left;
  width: 25%;
  margin: 0px;
  padding: 0;
}
.slide-menu .menu-content .nav-pills li a {
  padding: 5px 0;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
}
.slide-menu .menu-content .nav-pills li a.active {
  background-color: hsla(0, 0%, 100%, 0.2);
  font-weight: 800;
}
.slide-menu .menu-content .tab-content {
  max-height: 800px;
  overflow: auto;
}
.slide-menu .menu-content .tab-content .list-post-block {
  height: auto;
  margin: 10px 0;
  padding: 0px 20px 170px;
  overflow: auto;
}
.slide-menu .menu-content .tab-content .list-post-block .post-thumb {
  margin: 10px 20px 10px 0;
}
.slide-menu .menu-content .tab-content .list-post-block .list-post li {
  border-top: 1px solid #EEE;
}
.slide-menu .menu-content .tab-content .list-post-block .list-post li:first-child {
  border-top: 0;
}
.slide-menu .menu-content .tools-tab li:nth-child(1) a {
  background-color: #FFBF00;
}
.slide-menu .menu-content .tools-tab li:nth-child(2) a {
  background-color: #FF7F50 !important;
}
.slide-menu .menu-content .tools-tab li:nth-child(3) a {
  background-color: #DE3163;
}
.slide-menu .menu-content .tools-tab li:nth-child(4) a {
  background-color: #9FE2BF;
}
.slide-menu .menu-content .tools-tab li:nth-child(5) a {
  background-color: #40E0D0;
}
.slide-menu .menu-content .tools-tab li a {
  color: #FFF !important;
}
.slide-menu .menu-content .tools-tab li a i {
  padding-right: 10px;
}

.slide__menu.open__slide {
  animation: 0.3s slide-left;
  transform-origin: right;
}
.slide__menu .collpses {
  margin: 0;
}
.slide__menu .slide-search {
  display: block;
  position: relative;
  background-color: #f6fafe;
  padding: 10px 15px;
}
.slide__menu .slide-search input {
  font-family: Mukta, sans-serif;
  padding: 0 35px 0 0;
  font-size: 17px;
  outline: 0;
  transition: 0.3s ease;
  width: 100%;
  border: none;
  background: 0 0;
}
.slide__menu .slide-search input[type=submit] {
  width: auto;
  position: absolute;
  top: 12px;
  cursor: pointer;
  border: none;
  right: 12px;
  background-color: rgba(241, 241, 241, 0.4784313725);
  background: url(../icons/icon-search.png);
  padding: 0;
  width: 20px;
  font-size: 0;
  height: 36px;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.slide__menu .sidebar-content {
  background: #FFFFFF;
  max-height: calc(100% - 0px);
  height: calc(100% - 0px);
  /* overflow-y: auto; */
  position: relative;
}
.slide__menu .sidebar-content .sidebar-logo {
  background-color: var(--clr-primary);
  padding: 20px 0 15px 0;
  text-align: center;
}
.slide__menu .sidebar-content .sidebar-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 250px;
}
.slide__menu .sidebar-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.slide__menu .sidebar-content ul a {
  text-decoration: none;
}
.slide__menu .sidebar-content .sidebar-menu {
  height: 77vh;
  min-height: calc(100vh - 150px);
  overflow-y: auto;
  padding-bottom: 10px;
}
.slide__menu .sidebar-content .sidebar-menu ul li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  position: relative;
  padding: 8px 30px 8px 20px;
  color: rgba(0, 0, 0, 0.8784313725);
  font-family: "Ek Mukta", sans-serif !important;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.slide__menu .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--clr-primary);
}
.slide__menu .sidebar-content .sidebar-menu ul li a i {
  font-size: 20px;
}
.slide__menu .sidebar-content .sidebar-menu ul li:first-child {
  border-top: none !important;
}
.slide__menu .sidebar-content .sidebar-menu ul li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.slide__menu .sidebar-content .sidebar-menu ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children a::after {
  position: absolute;
  right: 15px;
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f107";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children.active a {
  color: var(--clr-primary);
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children.active a:after {
  transform: rotate(180deg);
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu {
  display: none;
  background: #fff;
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu li {
  padding: 0;
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu li a {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8901960784);
  opacity: 0.75;
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu li a:hover {
  color: var(--clr-primary);
  opacity: 1;
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu li a::after {
  content: "";
}
.slide__menu .sidebar-content .sidebar-menu ul li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}

.search__menu .collpses {
  color: #333 !important;
  border: none !important;
  font-size: 40px !important;
  margin: 10px !important;
}

.slide__menu.open__slide, .search__menu.open__slide {
  display: block !important;
  left: 0;
  top: 0;
}

/***** Global Slide *****/
.slide-right, .slide-left {
  width: 100%;
}

.search__menu.open__slide {
  animation: slideDown 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
  transform-origin: top;
}

.slide__menu, .search__menu {
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
  background: var(--clr-light-blue);
  color: #2260bf;
  width: 100%;
  height: 100%;
  max-width: 300px;
  box-shadow: rgba(34, 96, 191, 0.24) 0 0 48px;
  display: none;
  flex-direction: column;
  transition: all 0.3s ease;
}

.slide__menu .collpses, .oum-popup-close, .search__menu .collpses {
  width: 35px;
  height: 35px;
  padding: 5px;
  border-radius: 50px;
  border: 1px solid var(--clr-primary);
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 35px;
  transform: rotate(45deg);
  cursor: pointer;
}

.slide__menu .slide__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  grid-gap: var(--md-gap);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.slide__menu .slide__tabs {
  border: 0 !important;
  grid-column: span 1;
  position: relative;
  margin-bottom: 1rem;
  position: sticky;
  top: 0;
}

.slide__menu .slide__tabs ul {
  display: flex;
  flex-direction: column;
  flex-wrap: unset !important;
  grid-gap: 0.5rem;
}

.slide__menu .slide__tabs ul li {
  width: 100%;
  border: 0;
}

.slide__menu .slide__tabs ul li a {
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  background: #FFFFFF;
  border: 1px solid var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 1rem;
  color: var(--clr-primary);
  font-size: 18px;
  font-weight: 500;
}

.slide__menu .slide__tabs ul li a.active {
  background-color: var(--clr-primary);
}

.slide__menu .slide__tabs ul li a.active::before {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 0;
  transition-delay: 100ms;
}

.slide__menu .slide__tabs ul li a.active span {
  color: #FFFFFF;
}

.slide__menu .slide__tabs ul li a span {
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.slide__menu .slide__tabs ul li a span img {
  width: 2rem;
  aspect-ratio: 1;
  margin-bottom: 0.5rem;
}

.slide__menu .slide__content {
  margin-left: 40px;
  grid-column: span 3;
}

.slide__menu .slide__content .wrap {
  transform: translateX(-20%);
  transform-origin: left;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slide__menu .slide__content .wrap ul {
  display: flex;
  flex-direction: column;
  flex-wrap: unset !important;
  grid-gap: 0.5rem;
}

.slide__menu .slide__content .wrap ul li {
  padding: 5px 0;
}

.slide__menu .slide__content .wrap ul li a {
  display: flex;
  font-size: 25px;
  color: var(--clr-link-dark);
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.slide__menu__items li {
  border-bottom: 1px solid var(--clr-body-lite);
}

.slide__menu__items ul li:hover {
  color: var(--clr-nav-link-hover) !important;
}

.slide__menu .slide__menu__items ul li:hover a {
  color: var(--clr-link-hover);
}

.slide__menu .slide__menu__items ul li > img {
  height: 35px;
  width: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
  margin-right: 15px;
  padding-right: 30px !important;
  border-radius: 50%;
}

.slide__menu .edition__switch {
  position: absolute;
  bottom: -20px;
  right: 0;
  padding: 0;
  margin-left: 0;
}

.edition__switch {
  margin: 40px !important;
  align-self: center;
  padding-left: 15px;
  padding-right: 0;
}

.slide__menu .slide__menu__items .edition__switch > a {
  display: block;
  color: #FFFFFF;
}

.slide__menu .edition__switch > a {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.slide__menu .slide__menu__items a {
  font-family: "Ek Mukta" !important;
  color: var(--clr-link);
  display: block;
  vertical-align: top;
  margin-top: 9px;
  font-size: 20px;
  font-family: "EK Mukta";
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 5;
  line-height: 1;
  flex: 2;
}

.edition__switch a {
  padding: 6px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: var(--clr-primary);
  color: #fff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: solid 1px transparent;
  font-family: "EK Mukta" !important;
}

.edition__switch a > span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.edition__switch a > span:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
}

.search__menu {
  position: fixed;
  top: -450px;
  bottom: 0;
  z-index: 999;
  background-color: var(--clr-body-lite);
  color: #2260bf;
  width: 100%;
  height: 30vh;
  max-width: 100%;
  box-shadow: var(--clr-shadow);
  padding: 70px 20px;
  display: none;
  flex-direction: column;
  transition: all 0.3s ease;
}

.mobile__search__form {
  position: relative;
  max-width: 500px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  align-self: center;
  padding: 5px 20px;
  border: 2px solid var(--clr-primary);
  border-radius: 50px;
}

.mobile__search__form > input {
  background: none;
  height: 45px;
  min-width: 400px;
  padding: 0;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: var(--text-dark-color);
  border: none;
}

.mobile__search__form .mobile__search__holder {
  position: absolute;
  right: 0;
  max-width: 18px;
  margin: 0px 25px;
  text-align: right;
  cursor: pointer;
}

.mobile__search__form .mobile__search__holder img {
  max-width: 15px;
  margin-right: 20px;
  vertical-align: middle;
}

.trending__slide.reveal-right-drawer, .latest__slide.reveal-right-drawer, .vegitable__slide.reveal-right-drawer {
  background: linear-gradient(180deg, #f2f9ff 0%, #fff9f9 100%);
  border: none;
  border-radius: 0 0 50px 50px;
  visibility: visible !important;
  top: 0;
}

.vegitable__slide .vegitable-content {
  height: calc(100vh - 160px);
}
.vegitable__slide .vegitable-content iframe {
  width: 100% !important;
  height: 100%;
}

.trending__slide, .latest__slide, .vegitable__slide {
  visibility: hidden !important;
  position: fixed;
  top: -200%;
  left: 0;
  z-index: 999;
  background-color: #f4f6f8;
  color: #2260bf;
  width: 100%;
  height: auto;
  max-width: 100%;
  box-shadow: rgba(34, 96, 191, 0.24) 0 0 48px;
  padding: 50px 60px 60px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.sandesh__container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.trending__slide .sandesh__container > h2, .latest__slide .sandesh__container > h2, .vegitable__slide .sandesh__container > h2 {
  color: #000000;
  font-family: "EK Mukta";
  font-size: 48px;
  margin: 15px 40px 38px;
  font-weight: 600;
  display: flex;
  width: auto;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: solid 1px rgba(0, 128, 1, 0.2);
  position: relative;
}

.trending__slide .sandesh__container > h2:before, .latest__slide .sandesh__container > h2:before, .vegitable__slide .sandesh__container > h2:before {
  content: "";
  height: 4px;
  width: 150px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-color: var(--clr-primary);
}

.close__draw {
  font-size: 24px;
  font-weight: 500;
  transform: rotate(45deg);
  display: inline-block;
  cursor: pointer;
  line-height: 28px;
  width: 30px;
  text-align: center;
  margin-left: auto;
  height: 30px;
  border-radius: 50%;
  border: solid 1px #000;
  color: #000;
}

.latest__slide ul {
  max-height: 100%;
  overflow-y: auto;
}

.trending__slide ul, .latest__slide ul {
  counter-reset: trending;
  max-height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0px -20px;
  padding: 0px;
}

.trending__slide ul li, .latest__slide ul li {
  position: relative;
  flex: 0 0 33.33%;
  padding: 0 40px 28px;
  border-right: solid 1px rgba(0, 128, 1, 0.2);
}

.latest__slide ul li:nth-child(3n) {
  border-right: none !important;
}

.post__rtl a {
  display: flex;
  position: relative;
}

.slide__news a {
  text-decoration: none;
}

.latest__slide .slide__news a .sandesh__post__thumb {
  margin-bottom: 0;
}

.latest__slide .post__rtl a .sandesh__post__thumb {
  width: 90px;
  min-width: 90px;
  height: 70px;
}

.post__rtl a .sandesh__post__thumb {
  border-radius: 4px;
  width: 115px;
  max-width: 115px;
  min-width: 115px;
  height: 88px;
  order: 2;
}

.slide__news a .sandesh__post__thumb {
  border-radius: 4px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.post__rtl a .slide__news__wrap {
  order: 1;
  flex: 2;
  padding-right: 20px;
}

.latest__slide .post__rtl a .slide__news__wrap h2 {
  font-size: 22px;
  font-weight: 600;
}

.post__rtl a .slide__news__wrap h2 {
  margin: 0;
  font-size: 19px;
  color: #23252d;
  line-height: 1.3;
}

.slide__news a h2.title__text {
  font-family: "EK Mukta";
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--clr-link);
  text-decoration: none;
  margin: 0;
  line-height: 1.4;
  font-size: 22px;
}

.slide__news__wrap > div {
  font-weight: 700;
  color: #d42325;
}

.title__info {
  display: none;
}

.title__info {
  display: flex;
  flex-wrap: wrap;
}

.slide__news a .slide__news-hour {
  color: rgba(0, 0, 0, 0.48);
  margin-top: 10px;
  font-size: 14px;
}

.title__info > div {
  margin-right: 24px;
}

.trending__number__count {
  font-size: 60px;
  font-weight: 200;
  color: rgba(0, 128, 1, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0.72;
}

.post__rtl2 a {
  padding-left: 50px;
}

@media (max-width: 767px) {
  .trending__slide ul, .latest__slide ul {
    overflow-y: auto;
    height: calc(100vh - 160px);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .trending__slide ul li, .latest__slide ul li {
    flex: 0 0 50%;
    padding: 0 20px 30px 0;
    border: none;
  }
  .trending__slide .container > h2, .latest__slide .container > h2 {
    margin: -20px 0px 15px 10px !important;
  }
  .trending__slide, .latest__slide, .vegitable__slide {
    padding: 50px 10px 100px 10px !important;
  }
}
@media (max-width: 767px) {
  .hide__mobile, .header .left__header ul li::before {
    display: none !important;
  }
}
@media (max-width: 767px) and (max-width: 500px) {
  .logo img {
    max-width: 100%;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .trending__slide ul li, .latest__slide ul li {
    flex: 0 0 100%;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
  }
  .trending__slide .container > h2, .latest__slide .container > h2 {
    margin: -20px 0px 15px 10px !important;
  }
  .trending__slide, .latest__slide, .vegitable__slide {
    padding: 50px 10px 100px 10px !important;
  }
}
@media (min-width: 768px) {
  .trending__slide, .latest__slide {
    flex-direction: row;
    width: 100vw;
    animation: slideDown 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) alternate;
    transform-origin: top;
  }
}
.bs-canvas-overlay {
  opacity: 0.85;
  z-index: 1100;
}

.bs-canvas {
  top: 0;
  z-index: 1110;
  overflow-x: hidden;
  overflow-y: auto;
  width: 330px;
  transition: margin 0.3s ease-out;
  -webkit-transition: margin 0.3s ease-out;
  -moz-transition: margin 0.3s ease-out;
  -ms-transition: margin 0.3s ease-out;
}

.bs-canvas-left {
  left: 0;
  margin-left: -330px;
}

.bs-canvas-right {
  right: 0;
  margin-right: -330px;
}

.sidebar-menu::-webkit-scrollbar {
  width: 5px;
  background: #f6f6f6;
}

.sidebar-menu::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 50px;
}

.trending__wrap::-webkit-scrollbar {
  height: 5px;
  background: #f6f6f6;
}

.trending__wrap::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 50px;
}

::-webkit-scrollbar {
  width: 8px;
  background: #f6f6f6;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-primary);
  border-radius: 0.5rem;
}

@keyframes slideSidebar {
  0% {
    transform: scaleX(0);
    opacity: 0;
    animation-delay: 700ms;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes slide-right {
  from {
    margin-right: -30%;
  }
  to {
    margin-right: 0%;
  }
}
@keyframes slide-left {
  from {
    margin-left: -30%;
  }
  to {
    margin-left: 0%;
  }
}
footer.footer-style-one {
  background-color: #f5f5f5;
  padding: 50px 0 0;
}
footer.footer-style-one .footer-logo {
  margin-bottom: 20px;
}
footer.footer-style-one .footer-logo img {
  width: 80%;
}
footer.footer-style-one .heading {
  color: var(--clr-primary);
  font-size: 22px;
  font-weight: 500;
}
footer.footer-style-one .footer-content {
  font-family: "Ek Mukta", sans-serif;
  margin: 10px 0;
}
footer.footer-style-one .footer-content .name {
  font-size: 22px;
  font-weight: 500;
}
footer.footer-style-one .footer-content .field label {
  display: block;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 500;
}
footer.footer-style-one .footer-content .field span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}
footer.footer-style-one .footer-content.teams label {
  color: #949494;
  margin: 0;
  font-size: 15px;
}
footer.footer-style-one .footer-content.teams span {
  color: #34302d;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 900;
}
footer.footer-style-one .footer-content.links ul {
  padding: 0 15px;
}
footer.footer-style-one .footer-content.links ul li {
  padding: 5px 0;
  list-style-type: disc;
}
footer.footer-style-one .footer-content.links ul li a {
  color: #34302d;
  font-size: 18px;
  font-weight: 500;
}
footer.footer-style-one .footer-content.links ul li a:hover {
  color: var(--clr-primary);
}
footer.footer-style-two {
  padding: 2rem 0;
  background: rgb(221, 238, 221);
}
footer.footer-style-two ul {
  margin: 0;
  padding: 0;
}
footer.footer-style-two ul li a {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
}
footer.footer-style-two .widgettitle, footer.footer-style-two .wp-block-heading {
  padding-bottom: 0 !important;
  color: var(--link-color) !important;
  font-size: 1.2rem;
  font-weight: 600;
}
footer.footer-style-two .first .footer-logo img {
  width: 83.333333%;
}
footer.footer-style-two .first .description {
  margin-top: 1.25rem;
  font-size: 1rem;
}
footer.footer-style-two .second {
  padding-left: 1rem;
  text-align: center;
}
footer.footer-style-two .second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  border-right: 2px solid hsla(0, 0%, 100%, 0.5);
}
footer.footer-style-two .second .content {
  font-size: 1rem;
}
footer.footer-style-two .second .content i {
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50px;
  background: #FFFFFF;
  color: #000000;
  font-size: 15px;
}
footer.footer-style-two .second .content p {
  margin: 5px 0;
  font-size: 1rem;
}
footer.footer-style-two .third {
  padding-left: 1rem;
  text-align: center;
}
footer.footer-style-two .third::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  border-right: 2px solid hsla(0, 0%, 100%, 0.5);
}
footer.footer-style-two .fourth {
  padding-left: 1rem;
  text-align: center;
}
footer.footer-style-two .fourth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  border-right: 2px solid hsla(0, 0%, 100%, 0.5);
}
footer.footer-style-two .fourth .socials .icons a {
  margin-left: 0.75rem;
  margin-right: 0.25rem;
  display: inline-flex;
  height: 2.2rem;
  width: 2.2rem;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid hsla(0, 0%, 100%, 0.9);
  background: hsla(0, 0%, 100%, 0.6);
  color: #000;
}
footer.footer-style-two .fourth .socials .icons a:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
footer.footer-bottom-two {
  background-color: var(--clr-primary);
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 1rem;
}
footer.footer-bottom-two a {
  color: #FFF;
}
footer.footer-style-three {
  padding: 0 0 0;
}
footer.footer-style-three .footer-screen {
  background-color: #96d0cc;
  margin-bottom: 30px;
  padding: 10px 0;
  font-size: 0.95rem;
  text-align: center;
  border-bottom: 3px solid var(--clr-primary);
}
footer.footer-style-three .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer.footer-style-three .footer-left .footer-logo {
  margin-bottom: 20px;
}
footer.footer-style-three .footer-left .footer-logo img {
  width: 90%;
}
footer.footer-style-three .footer-left .footer-icons {
  margin-bottom: 10px;
}
footer.footer-style-three .footer-left .footer-icons .icons {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
}
footer.footer-style-three .footer-left .footer-icons .icons a {
  height: 40px;
  width: 40px;
  line-height: 37px;
  margin-right: 5px;
  border: 1px solid var(--clr-secondary);
  border-radius: 50px;
  text-align: center;
  align-items: center;
  color: var(--clr-secondary);
}
footer.footer-style-three .footer-left .footer-icons .icons a:hover {
  background-color: var(--clr-primary);
  color: #FFF;
}
footer.footer-style-three .footer-right .heading-block {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--clr-secondary);
  text-align: center;
}
footer.footer-style-three .footer-right .heading-block h1, footer.footer-style-three .footer-right .heading-block p {
  margin: 0;
  color: var(--clr-primary);
}
footer.footer-style-three .footer-right .heading-block p {
  font-size: 18px;
}
footer.footer-style-three .footer-right .list-block {
  padding: 10px 0;
  font-size: 1.2rem;
}
footer.footer-style-three .footer-right .list-block ul {
  padding: 0;
}
footer.footer-style-three .footer-right .list-block ul li {
  display: block;
  padding: 8px 0;
}
footer.footer-style-three .footer-right .list-block ul li i {
  padding-right: 10px;
}
footer .widgettitle, footer .wp-block-heading {
  padding-bottom: 10px;
  color: var(--link-color) !important;
}
footer .footer-bottom {
  background: var(--clr-primary);
  color: #fff;
  margin-top: 20px;
}
footer .footer-bottom .bottom-copyright {
  display: flex;
  align-items: center;
}
footer .footer-bottom .bottom-copyright img {
  height: 100px;
}
footer .footer-bottom .bottom-copyright .text {
  color: #FFFFFF;
  font-size: 17px;
  margin: 0 20px;
}
footer .footer-bottom .bottom-copyright .site-credit {
  position: relative;
  text-transform: capitalize;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
}
footer .footer-bottom .bottom-copyright .site-credit::before {
  position: absolute;
  display: block;
  content: "";
  height: 10px;
  width: 3px;
  top: 10px;
  margin: 0 -10px;
  border-radius: 50px;
  background: hsla(0, 0%, 100%, 0.3);
}
footer .footer-bottom .bottom-copyright .site-credit a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
}
footer .footer-bottom .bottom-copyright .site-credit img {
  word-break: 130px;
  max-width: 100%;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  margin-left: 5px;
  border-radius: 0px;
}
footer .footer-bottom .bottom-socials {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: right;
}
footer .footer-bottom .bottom-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.3);
  color: #FFFFFF;
  font-size: 25px;
  line-height: 43px;
  text-align: center;
  margin-right: 10px;
}
footer .footer-bottom .bottom-socials a:hover {
  background-color: #FFFFFF;
  color: var(--clr-primary);
}

.footer-menu {
  display: none;
  position: fixed;
  z-index: 998;
  left: 0;
  bottom: 0;
  background-color: #FFFFFF;
  width: 100%;
  box-shadow: var(--clr-shadow);
}
.footer-menu .flx {
  display: flex;
}
.footer-menu .flx a {
  display: block;
  padding: 10px 10px;
  color: #000;
  flex: 1 1 auto;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.footer-menu .flx a svg {
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: top;
  fill: #000 !important;
}
.footer-menu .flx a span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}
.footer-menu .menu-trigger {
  display: flex;
  position: relative;
  top: -30px;
  flex: 0 !important;
  background: var(--clr-primary);
  width: 70px;
  height: 70px;
  line-height: 50px;
  padding: 10px !important;
  border: 5px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
}
.footer-menu .menu-trigger svg {
  fill: #FFF;
}
.footer-menu .icon__trigger {
  width: 28px;
  margin-top: 10px;
  text-align: center;
  cursor: pointer;
}
.footer-menu .icon__trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2260bf;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.footer-menu .icon__trigger:hover span:nth-child(2) {
  width: 30%;
}
.footer-menu .icon__trigger:hover span:nth-child(3) {
  width: 80%;
}
.footer-menu .footer__sticky__ads img {
  border-radius: 0;
  height: auto;
  width: 100%;
}

/** Responsive */
@media (max-width: 1200px) {
  .site-nav .right-nav a {
    font-size: 14px !important;
  }
  .site-nav .site-menu li a {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 14px !important;
  }
  .site-nav .site-menu .menu-item-has-children a {
    padding-right: 20px !important;
  }
  .site-nav .site-menu .menu-item-has-children a::before {
    right: 7px !important;
  }
  .section__title .flow-wrap {
    width: 50% !important;
  }
}
@media (max-width: 1024px) {
  .header {
    display: none !important;
  }
  .top-header-nav {
    display: none !important;
  }
  .mobile-logo-above-ads {
    display: block !important;
  }
  .hidden-header-icon {
    display: none !important;
  }
  .sandesh__trending {
    display: none;
  }
  .top-header .top-mobile-toggler {
    display: block !important;
  }
  .top-header .top-header-toggle {
    display: none;
  }
  .top-header .top-header-toggle.show {
    display: block !important;
  }
  .top-header .column .slash {
    display: none !important;
  }
  .top-header .column .row, .top-header .column .col, .top-header .column a {
    display: block !important;
  }
  .top-header .column .col {
    padding: 5px 10px;
  }
  .top-header .column .col .socials {
    margin: -10px 0 10px;
  }
  .top-header .column ul li.menu-item-has-children a::before {
    content: "" !important;
  }
  .top-header .column ul li a {
    padding: 0;
    padding-right: 120px;
  }
  .top-header .column ul li a.label {
    display: none !important;
  }
  .top-header .column ul li ul {
    position: relative !important;
    top: -15px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .top-header .column ul li ul li {
    display: block !important;
  }
  .top-header .column ul li ul li a {
    padding: 5px 0 !important;
    color: #FFF !important;
  }
  .sticky-buttons {
    display: none;
  }
  .site-nav {
    padding: 0;
    border-bottom: 1px solid var(--clr-secondary);
    border-top: none !important;
  }
  .site-nav .mobile-banner-ads {
    display: block !important;
  }
  .site-nav .mobile-banner-ads .banner-ads {
    margin: 0 0 20px;
  }
  .site-nav .mobile-banner-ads .banner-ads img {
    margin: 0;
  }
  .site-nav .site-navigation .mobile-logo {
    display: block !important;
  }
  .site-nav .site-navigation .left-nav {
    display: none !important;
  }
  .site-nav .site-navigation .right-nav .trigger-btn {
    display: none !important;
  }
  .site-nav .site-navigation .right-nav a {
    line-height: 45px !important;
    padding: 0 0.7rem !important;
    border-radius: 50%;
    order: 1px solid var(--clr-primary) !important;
    color: var(--clr-primary) !important;
  }
  .site-nav .site-navigation .right-nav a svg, .site-nav .site-navigation .right-nav a i {
    color: var(--clr-primary) !important;
    fill: var(--clr-primary) !important;
  }
  .site-nav .site-navigation .right-nav a.english-switcher {
    display: none !important;
    color: #FFF !important;
    font-size: 8px !important;
  }
  .site-nav .site-navigation .trigger-btn.mbl-trigger {
    background: none !important;
  }
  .site-nav .nav-toggler::before, .site-nav .nav-toggler:after {
    background-color: var(--clr-primary) !important;
  }
  .breaking-news .title {
    font-size: 35px;
  }
  .breaking-news .heading {
    font-size: 15px;
  }
  .breaking-news .sub-heading {
    margin: 0;
    font-size: 20px;
  }
  .breaking-news .info {
    margin: 15px 0;
  }
  .breaking-news .image {
    height: 400px;
    padding: 0 30px !important;
  }
  .breaking-news .live-video iframe {
    height: 300px !important;
  }
  .breaking-news .description {
    font-size: 18px;
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
  }
  .single-post .post-header {
    margin-bottom: 0;
    padding: 0;
  }
  .single-post .post-thumbnail {
    margin-bottom: -20px;
  }
  .single-post .post-thumbnail .photo-caption {
    margin-bottom: 15px;
  }
  .single-post .post-content p {
    margin: 15px 0 0 !important;
    font-size: 20px !important;
  }
  .post-block-style.one-thumb-layout .post-thumb.large {
    margin-bottom: 20px !important;
  }
  .post-block-style.one-thumb-layout:after {
    background: var(--border-color) !important;
  }
  .post-block-style.one-thumb-layout .post-title {
    font-size: 20px !important;
    text-align: left !important;
  }
  .post-block-style.one-thumb-layout .post-content {
    margin: 0 !important;
  }
  .section__title h2 {
    display: block;
  }
  .section__title h2 .flow-wrap {
    display: block;
    width: 100% !important;
  }
  .section__title h2 .flow-wrap::before, .section__title h2 .flow-wrap::after {
    border: none !important;
    content: "" !important;
  }
  .section__title h2 .flow-wrap .title__category__menu {
    margin: 0 !important;
  }
  .section__title .anker {
    display: block;
    width: 70%;
  }
  .section__title .anker::before {
    order: none !important;
  }
  .section__title .slash::before, .section__title .slash::after {
    top: -35px;
  }
  .grid-two {
    margin-bottom: 20px !important;
  }
  .grid-two .thumbnail {
    width: 100% !important;
    border-radius: 20px !important;
  }
  .grid-two .content {
    height: auto !important;
    border-radius: 20px !important;
  }
  .grid-two .content .title {
    font-size: 18px !important;
    line-height: 25px !important;
  }
  .grid-two .content .info {
    padding: 10px 20px 0;
  }
  .news-grid {
    margin-bottom: 20px !important;
  }
  .news-grid a img {
    border-radius: 20px;
  }
  .news-grid .content {
    width: 100%;
    border-radius: 20px !important;
  }
  .news-grid .content .title {
    font-size: 18px !important;
    line-height: 25px;
  }
  .large-grid {
    margin-top: 30px !important;
    margin-bottom: -40px !important;
    border-radius: 20px;
  }
  .large-grid .thumbnail {
    width: 100% !important;
    border-radius: 20px;
  }
  .large-grid .content {
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-top: -120px !important;
    border-radius: 20px;
  }
  .large-grid .content .title {
    font-size: 18px;
    line-height: 25px;
  }
  .sidebar-ads {
    display: none !important;
  }
  .section-by-category .section-category {
    display: block !important;
  }
  .section-by-category .section-category .category {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .section-by-category .more {
    margin: 15px 0 !important;
  }
  .single-post .post-header.stick {
    position: static !important;
    background-color: transparent !important;
    padding-bottom: 0 !important;
    z-index: 1111111;
  }
  .single-post .post-header.stick .heading, .single-post .post-header.stick .sub-heading {
    display: block !important;
  }
  .single-post .post-header.stick .title {
    font-size: 63px;
  }
  .footer-menu {
    display: block !important;
  }
  .section__title h2 {
    flex-wrap: wrap !important;
    font-size: 25px !important;
    margin: 0 0px 15px !important;
  }
  .section__title h2 .title__category__menu {
    display: flex !important;
    flex-wrap: nowrap;
    order: 3;
    margin: 10px 0 10px -55px !important;
    flex: 0 0 100%;
    margin-left: 30px;
  }
  .section__title h2 .anker {
    width: 100% !important;
  }
  .section__title h2 .anker::before, .section__title h2 .anker::after {
    width: 0 !important;
    height: 0 !important;
    border: none !important;
  }
  .section__title h2 .slash {
    display: none !important;
  }
  .footer__style__one .footer-bottom {
    margin-bottom: 130px;
    padding-bottom: 60px;
  }
  footer.footer-style-two .first {
    text-align: center;
  }
  footer.footer-style-two .first .footer-logo img {
    width: 150px;
  }
  footer.footer-style-two .second, footer.footer-style-two .third, footer.footer-style-two .fourth {
    margin-top: 30px;
  }
  footer.footer-style-two .second:before, footer.footer-style-two .third:before, footer.footer-style-two .fourth:before {
    border: none;
  }
  footer.footer-bottom-two {
    padding-bottom: 70px;
  }
  footer.footer-bottom-two .mtext-right, footer.footer-bottom-two .mtext-left {
    text-align: center !important;
  }
  .border-right-2 {
    border-right: 0;
  }
}
@media (max-width: 991px) {
  .mobile-hidden {
    display: none !important;
  }
  header.top-header .slash {
    border: none !important;
  }
  nav .site-navigation .mob-search {
    display: flex !important;
  }
  .sticky-logo {
    display: none !important;
  }
  .single-post .post-info {
    border-radius: var(--border-radius-hard) !important;
  }
  .rajnitipana.owl-carousel {
    margin-bottom: 25px !important;
  }
  .single-post iframe {
    height: 300px !important;
  }
  .single-post .pdf {
    display: block !important;
    height: 400px !important;
  }
  .single-post .post-header .title {
    font-size: 30px !important;
  }
  .single-post .post-header .heading {
    padding: 5px 10px;
    font-size: 14px;
  }
  .single-post .post-header .sub-heading {
    font-size: 20px !important;
  }
  .single-post .post-info {
    display: block !important;
  }
  .single-post .post-info div:nth-child(2n) {
    border: none !important;
  }
  .single-post .post-info .right {
    display: block !important;
    margin: 15px 0 0px;
  }
  .single-post .post-info .right .share {
    margin: 30px 0;
    text-align: left !important;
  }
  .single-post .left-sticky {
    display: none !important;
  }
  .ads.banner-ads {
    margin: 10px 0 !important;
  }
  .ads.banner-ads img {
    margin: 0 !important;
  }
  footer.footer-style-one {
    padding: 20px 0 0;
  }
  footer.footer-style-one .footer-logo img {
    width: 250px !important;
  }
  footer.footer-style-three .footer-left {
    margin-bottom: 20px;
    text-align: center;
  }
  footer.footer-style-three .footer-left .footer-logo {
    margin-bottom: 20px;
  }
  footer.footer-style-three .footer-left .footer-logo img {
    width: 40%;
  }
  footer.footer-style-three .footer-right .heading-block h1 {
    font-size: 20px;
  }
  footer.footer-style-three .footer-right .heading-block p {
    font-size: 16px;
  }
  footer.footer-style-three .footer-right .list-block {
    text-align: center;
    font-size: 1rem;
  }
  footer .bottom-copyright {
    display: block !important;
    padding: 20px 0 15px;
    text-align: center !important;
  }
  footer .bottom-copyright .copyright-logo {
    display: none !important;
  }
  footer .bottom-socials {
    display: block !important;
    text-align: center !important;
    padding-bottom: 100px !important;
  }
  footer .bottom-socials a {
    display: inline-block !important;
  }
  footer .site-credit {
    padding: 10px 0;
  }
  footer .site-credit::before {
    content: none !important;
  }
  .footer__style__one .site-credit {
    text-align: center !important;
    margin: -10px 0 15px !important;
  }
}
@media (max-width: 767px) {
  .live-hrs-update .left-col .post-overaly-style {
    min-height: 290px !important;
  }
  .site-nav .site-navigation .mobile-logo img {
    width: 250px !important;
  }
  .ai-summary .news-header h3 {
    font-size: 1rem;
  }
  .breaking-news .image {
    height: auto !important;
  }
  .modern__layout {
    display: block;
  }
  .modern__layout .post__wrap {
    height: auto;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .modern__layout .post__wrap img {
    margin: 0;
  }
  .modern__layout .post__title__wrap h4 {
    line-height: 20px !important;
  }
  .modern__layout .post__title__wrap h4 a {
    font-size: 20px !important;
  }
  .post__title__wrap > p, .ok-bises-type-2 p {
    display: none;
  }
  .modern__layout .post__title__wrap {
    padding: 20px;
  }
  .modern__layout .post__wrap .quotes__image {
    bottom: 5px;
  }
  .modern__layout.quotes .post__title__wrap {
    text-align: center;
  }
  .top__advertisement img {
    width: 100% !important;
    height: auto !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .autopana .post-title.title-lg {
    font-size: 25px !important;
  }
  .autopana .second .post-block-style {
    display: block !important;
  }
  .autopana .second .post-block-style .post-thumb {
    width: 100% !important;
    height: auto !important;
  }
  .autopana .second .post-block-style .post-content {
    margin: 10px 0;
  }
  .autopana .second .post-block-style .post-content .author-name {
    display: none !important;
  }
  .multimedia .top-section .post-title {
    font-size: 25px !important;
  }
  .multimedia .top-section .post-thumb img {
    height: auto !important;
  }
  .section__pradesh {
    display: flex !important;
    flex-wrap: nowrap;
    order: 3;
    margin: 10px 0 10px 0px !important;
    flex: 0 0 100%;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .footer__style__one .footer-content.links .content {
    text-align: left;
  }
  .section-title-two .title {
    padding-left: 20px !important;
  }
  .section-title-two .title h1 {
    font-size: 1rem !important;
  }
}
@media (max-width: 639px) {
  .about-author .title {
    font-size: 22px !important;
  }
}
@media (max-width: 515px) {
  .breaking-news .live-video iframe {
    height: 200px !important;
  }
}
@media (max-width: 410px) {
  .site-nav .site-navigation .mobile-logo img {
    width: 150px !important;
  }
  footer.footer-style-one .footer-logo img {
    width: 150px !important;
  }
}
@media (max-width: 310px) {
  .site-nav .site-navigation .mobile-logo img {
    width: 100px !important;
  }
}/*# sourceMappingURL=style.css.map */